Slimstat Analytics - Version 3.5.4

Version Description

  • [Note] Update your free and premium add-ons to the latest version available!
  • [New] When Convert IP Addresses is enabled, hostnames are shown along with IP addresses, not instead of (thank you, Simas)
  • [New] Added a new switch to turn 'Debug Mode' on (under Settings > Advanced)
  • [New] Consolidated report functions to use the new DB API filter format
  • [Update] Browscap has been updated to version 5023, released on Feb 2, 2014
  • [Fix] Various bugs related to date filters
  • [Fix] Layout of our modal window (ip lookup) was being overwritten by other plugins (thank you, charlieusa)
  • [Fix] Compatibility issue with WP SlimStat Shortcodes and 'strtotime' filter (our DB API is growing!)
  • [Fix] Close button had disappeared from modal window (ip lookup service)
  • [Fix] Added Seychelles to the list of known Countries
  • [Fix] Bug in displaying the correct time range with some timezones
  • [Fix] Removed 'Save Options' button on Maintenance page
Download this release

Release Info

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

Code changes from version 3.5.3 to 3.5.4

admin/config/addons.php CHANGED
@@ -29,7 +29,7 @@ if (!is_array($list_addons)){
29
  <h2><?php _e('Add-ons','wp-slimstat') ?></h2>
30
  <p><?php _e('Add-ons extend the functionality of WP SlimStat in many interesting ways. We offer both free and premium (paid) extensions. Each add-on can be installed as a separate plugin, which will receive regular updates via the WordPress Plugins panel. In order to be notified when a new version of a premium add-on is available, please enter the <strong>license key</strong> you received when you purchased it.','wp-slimstat') ?></p>
31
 
32
- <form action="<?php echo wp_slimstat_admin::$view_url ?>addons" method="post" id="form-slimstat-options-tab-addons">
33
  <table class="wp-list-table widefat plugins slimstat-addons" cellspacing="0">
34
  <thead>
35
  <tr>
29
  <h2><?php _e('Add-ons','wp-slimstat') ?></h2>
30
  <p><?php _e('Add-ons extend the functionality of WP SlimStat in many interesting ways. We offer both free and premium (paid) extensions. Each add-on can be installed as a separate plugin, which will receive regular updates via the WordPress Plugins panel. In order to be notified when a new version of a premium add-on is available, please enter the <strong>license key</strong> you received when you purchased it.','wp-slimstat') ?></p>
31
 
32
+ <form method="post" id="form-slimstat-options-tab-addons">
33
  <table class="wp-list-table widefat plugins slimstat-addons" cellspacing="0">
34
  <thead>
35
  <tr>
admin/config/index.php CHANGED
@@ -213,6 +213,7 @@ switch ($config_tabs[$current_tab-1]){
213
  'extensions_to_track' => array('description' => __('Extensions to Track','wp-slimstat'), 'type' => 'textarea', 'long_description' => __("List all the file extensions that you want to be treated as Downloads. Please note that links pointing to external resources (i.e. PDFs on a different website) are considered Downloads and not Outbound Links (and tracked as such), if their extension matches one of the ones listed here below.",'wp-slimstat')),
214
 
215
  'advanced_misc_header' => array('description' => __('Miscellaneous','wp-slimstat'), 'type' => 'section_header'),
 
216
  'ip_lookup_service' => array('description' => __('IP Lookup','wp-slimstat'), 'type' => 'text', 'long_description' => __('Customize the Geolocation service to be used in the reports.','wp-slimstat')),
217
  'custom_css' => array('description' => __('Custom CSS','wp-slimstat'), 'type' => 'textarea', 'long_description' => __("Paste here your custom stylesheet to personalize the way your reports look. <a href='http://wordpress.org/plugins/wp-slimstat/faq/' target='_blank'>Check the FAQ</a> for more information on how to use this setting.",'wp-slimstat')),
218
  'enable_ads_network' => array('description' => __('Enable UAN','wp-slimstat'), 'type' => 'yesno', 'long_description' => __("Send anonymous data about unknown user agents to our server for analysis. This allows us to contribute to the <a href='http://browscap.org/' target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of WP SlimStat's browser detection functionality.",'wp-slimstat'))
213
  'extensions_to_track' => array('description' => __('Extensions to Track','wp-slimstat'), 'type' => 'textarea', 'long_description' => __("List all the file extensions that you want to be treated as Downloads. Please note that links pointing to external resources (i.e. PDFs on a different website) are considered Downloads and not Outbound Links (and tracked as such), if their extension matches one of the ones listed here below.",'wp-slimstat')),
214
 
215
  'advanced_misc_header' => array('description' => __('Miscellaneous','wp-slimstat'), 'type' => 'section_header'),
216
+ 'show_sql_debug' => array('description' => __('Debug Mode','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Display the SQL queries used to retrieve the data.','wp-slimstat')),
217
  'ip_lookup_service' => array('description' => __('IP Lookup','wp-slimstat'), 'type' => 'text', 'long_description' => __('Customize the Geolocation service to be used in the reports.','wp-slimstat')),
218
  'custom_css' => array('description' => __('Custom CSS','wp-slimstat'), 'type' => 'textarea', 'long_description' => __("Paste here your custom stylesheet to personalize the way your reports look. <a href='http://wordpress.org/plugins/wp-slimstat/faq/' target='_blank'>Check the FAQ</a> for more information on how to use this setting.",'wp-slimstat')),
219
  'enable_ads_network' => array('description' => __('Enable UAN','wp-slimstat'), 'type' => 'yesno', 'long_description' => __("Send anonymous data about unknown user agents to our server for analysis. This allows us to contribute to the <a href='http://browscap.org/' target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of WP SlimStat's browser detection functionality.",'wp-slimstat'))
admin/css/slimstat.css CHANGED
@@ -17,6 +17,9 @@
17
  }
18
 
19
  /* Filters */
 
 
 
20
  #slimstat-filters-form{
21
  background-color: #e0e0e0;
22
  margin-top: 10px;
@@ -102,7 +105,7 @@
102
  #slimstat-remove-all-filters{
103
  position: absolute;
104
  right: 5px;
105
- top: 5px;
106
  }
107
 
108
  /* Reports: Container */
@@ -237,6 +240,12 @@
237
  display: none;
238
  }
239
 
 
 
 
 
 
 
240
  /* Single Report: Color Coded Entries */
241
  [id^=slim_] .header.is-search-engine, .is-search-engine{
242
  background-color:#c1e751;
@@ -299,27 +308,45 @@
299
  z-index: 100 !important;
300
  }
301
  .ui-dialog.slimstat{
 
 
 
302
  width: 80% !important;
303
  z-index: 105 !important;
304
  }
305
  .ui-dialog.slimstat .ui-dialog-titlebar{
306
- background-color: #4b8df8;
307
- border-bottom: 0;
 
308
  color: #fff;
 
309
  font-size: 1.3em;
310
  font-weight: normal;
311
  height: 22px;
312
  line-height: 1.3em;
313
  margin: 0;
314
- padding: 7px 10px 5px;
315
  }
316
  .ui-dialog.slimstat .ui-dialog-titlebar-close{
317
- display: none;
 
 
 
 
 
 
 
 
 
 
 
 
318
  }
319
  #slimstat-modal-dialog{
320
  background-color: #fff;
321
  display: none;
322
- width: 70%;
 
323
  }
324
 
325
  /* Single Report: Right Now */
17
  }
18
 
19
  /* Filters */
20
+ #slimstat-filters-post{
21
+ display: none;
22
+ }
23
  #slimstat-filters-form{
24
  background-color: #e0e0e0;
25
  margin-top: 10px;
105
  #slimstat-remove-all-filters{
106
  position: absolute;
107
  right: 5px;
108
+ top: 4px;
109
  }
110
 
111
  /* Reports: Container */
240
  display: none;
241
  }
242
 
243
+ /* Single Report: Debug Message */
244
+ .slimstat .debug{
245
+ background-color: #555;
246
+ color: #eee;
247
+ }
248
+
249
  /* Single Report: Color Coded Entries */
250
  [id^=slim_] .header.is-search-engine, .is-search-engine{
251
  background-color:#c1e751;
308
  z-index: 100 !important;
309
  }
310
  .ui-dialog.slimstat{
311
+ border: 0;
312
+ border-radius: 0;
313
+ padding: 0;
314
  width: 80% !important;
315
  z-index: 105 !important;
316
  }
317
  .ui-dialog.slimstat .ui-dialog-titlebar{
318
+ background: #4b8df8;
319
+ border: 0;
320
+ border-radius: 0;
321
  color: #fff;
322
+ font-family: 'Open Sans', sans-serif;
323
  font-size: 1.3em;
324
  font-weight: normal;
325
  height: 22px;
326
  line-height: 1.3em;
327
  margin: 0;
328
+ padding: 5px 10px;
329
  }
330
  .ui-dialog.slimstat .ui-dialog-titlebar-close{
331
+ background-color: transparent;
332
+ border: 0;
333
+ color: #fff;
334
+ float: right;
335
+ line-height: 1em;
336
+ padding: 0;
337
+ }
338
+ .ui-dialog.slimstat .ui-dialog-titlebar-close:before{
339
+ content:'\e803';
340
+ font-family: slimstat;
341
+ }
342
+ .ui-dialog .ui-dialog-content{
343
+ clear: both;
344
  }
345
  #slimstat-modal-dialog{
346
  background-color: #fff;
347
  display: none;
348
+ padding: 0;
349
+ width: auto;
350
  }
351
 
352
  /* Single Report: Right Now */
admin/js/slimstat.admin.js CHANGED
@@ -7,7 +7,6 @@ var SlimStatAdmin = {
7
 
8
  // Private variables
9
  _chart_options: {
10
- colors: ['#bbcc44', '#21759b', '#ccc', '#999', '#02c907'],
11
  grid: {
12
  backgroundColor: '#ffffff',
13
  borderWidth: 0,
@@ -35,7 +34,7 @@ var SlimStatAdmin = {
35
  add_post_filters: function(report_id, href){
36
  filters_parsed = [];
37
  filters_to_add = href.split('&');
38
- jQuery('#slimstat-filters-form').attr('action', filters_to_add[0]);
39
 
40
  for (i in filters_to_add){
41
  if (filters_to_add[i].indexOf('fs\%5B') != 0) continue;
@@ -48,8 +47,9 @@ var SlimStatAdmin = {
48
  if (filter_components[0].indexOf('[day]') > 0) jQuery('#slimstat-filter-day').val(0);
49
  if (filter_components[0].indexOf('[month]') > 0) jQuery('#slimstat-filter-month').val(0);
50
  if (filter_components[0].indexOf('[year]') > 0) jQuery('#slimstat-filter-year').val('');
 
51
 
52
- jQuery('<input>').attr('type', 'hidden').attr('name', filter_components[0]).attr('class', 'slimstat-post-filter slimstat-new-filter '+report_id).val(filter_components[1].replace('+', ' ')).appendTo('#slimstat-filters-form');
53
  filters_parsed[filter_components[0]] = filter_components[1];
54
  }
55
  return filters_parsed;
@@ -85,6 +85,7 @@ var SlimStatAdmin = {
85
  }
86
 
87
  // Calculate the remaining options
 
88
  SlimStatAdmin._chart_options.xaxis = {
89
  ticks: (SlimStatAdmin.ticks[0][1].indexOf('/') > 0 && SlimStatAdmin.ticks.length > 16) ? [] : SlimStatAdmin.ticks,
90
  tickDecimals: 0,
@@ -251,21 +252,24 @@ jQuery(function(){
251
 
252
 
253
  jQuery('a.slimstat-remove-filter').click(function(e){
254
- filter_to_remove = decodeURIComponent(jQuery(this).attr('href')).split('&');
255
- jQuery('#slimstat-filters-form').attr('action', filter_to_remove[0]);
 
 
256
  jQuery('.slimstat-new-filter').remove();
257
 
258
- if (filter_to_remove[1].length == 0) return true;
259
-
260
- e.preventDefault();
261
- filter_components = filter_to_remove[1].split('=');
262
- jQuery('input[name="'+filter_components[0].replace('[', '\\[').replace(']', '\\]')+'"]').remove();
263
-
264
- // Reset dropdowns, if needed
265
- if (filter_components[0].indexOf('[day]') > 0) jQuery('#slimstat-filter-day').val(0);
266
- if (filter_components[0].indexOf('[month]') > 0) jQuery('#slimstat-filter-month').val(0);
267
- if (filter_components[0].indexOf('[year]') > 0) jQuery('#slimstat-filter-year').val('');
268
- jQuery('#slimstat-filters-form').submit();
 
269
  return false;
270
  });
271
 
@@ -284,9 +288,13 @@ jQuery(function(){
284
 
285
  // New stuff
286
  jQuery(function(){
287
- // Filters: add form if not defined (Dashboard Widgets)
288
- if (!jQuery('#slimstat-filters-form').length){
289
- jQuery('<form/>').attr('method', 'post').attr('id', 'slimstat-filters-form').appendTo('body');
 
 
 
 
290
  }
291
 
292
  // Filters: Lock value input field based on operator drop down selection
@@ -340,7 +348,7 @@ jQuery(function(){
340
  // Send filters as post requests
341
  jQuery(document).on('click', '.slimstat-filter-link, #toplevel_page_wp-slim-view-1 li a, #wp-admin-bar-slimstat-header li a', function(e){
342
  e.preventDefault();
343
- if (!jQuery('#slimstat-filters-form').length){
344
  return true;
345
  }
346
 
@@ -348,7 +356,7 @@ jQuery(function(){
348
  jQuery('.empty-on-submit').val(0);
349
 
350
  SlimStatAdmin.add_post_filters('p0', jQuery(this).attr('href'));
351
- jQuery('#slimstat-filters-form').submit();
352
  return false;
353
  });
354
 
@@ -480,6 +488,7 @@ jQuery(function(){
480
  jQuery('#slimstat-modal-dialog').dialog({
481
  autoOpen: false,
482
  closeOnEscape: true,
 
483
  draggable: true,
484
  height: 415,
485
  modal: true,
@@ -496,7 +505,10 @@ jQuery(function(){
496
  // Modal Window / Overlay: Whois
497
  jQuery(document).on('click', '.whois', function(e){
498
  e.preventDefault();
499
- jQuery('#slimstat-modal-dialog').dialog('option', 'title', jQuery(this).attr('title')).html('<iframe id="ip2location" src="'+jQuery(this).attr('href')+'" width="100%" height="92%"></iframe>').parent().addClass('slimstat');
 
 
 
500
  jQuery('#slimstat-modal-dialog').dialog('open');
501
  });
502
 
7
 
8
  // Private variables
9
  _chart_options: {
 
10
  grid: {
11
  backgroundColor: '#ffffff',
12
  borderWidth: 0,
34
  add_post_filters: function(report_id, href){
35
  filters_parsed = [];
36
  filters_to_add = href.split('&');
37
+ jQuery('#slimstat-filters-form-hidden').attr('action', filters_to_add[0]);
38
 
39
  for (i in filters_to_add){
40
  if (filters_to_add[i].indexOf('fs\%5B') != 0) continue;
47
  if (filter_components[0].indexOf('[day]') > 0) jQuery('#slimstat-filter-day').val(0);
48
  if (filter_components[0].indexOf('[month]') > 0) jQuery('#slimstat-filter-month').val(0);
49
  if (filter_components[0].indexOf('[year]') > 0) jQuery('#slimstat-filter-year').val('');
50
+ if (filter_components[0].indexOf('[interval]') > 0) jQuery('#slimstat-filter-interval').val('');
51
 
52
+ jQuery('<input>').attr('type', 'hidden').attr('name', filter_components[0]).attr('class', 'slimstat-post-filter slimstat-new-filter '+report_id).val(filter_components[1].replace('+', ' ')).appendTo('#slimstat-filters-form-hidden');
53
  filters_parsed[filter_components[0]] = filter_components[1];
54
  }
55
  return filters_parsed;
85
  }
86
 
87
  // Calculate the remaining options
88
+ SlimStatAdmin._chart_options.colors = (SlimStatAdmin.chart_data.length == 4)?['#ccc', '#999', '#bbcc44', '#21759b', '#02c907']:['#bbcc44', '#21759b', '#02c907'],
89
  SlimStatAdmin._chart_options.xaxis = {
90
  ticks: (SlimStatAdmin.ticks[0][1].indexOf('/') > 0 && SlimStatAdmin.ticks.length > 16) ? [] : SlimStatAdmin.ticks,
91
  tickDecimals: 0,
252
 
253
 
254
  jQuery('a.slimstat-remove-filter').click(function(e){
255
+ e.preventDefault();
256
+
257
+ filters_to_remove = decodeURIComponent(jQuery(this).attr('href')).split('&');
258
+ jQuery('#slimstat-filters-form-hidden').attr('action', filters_to_remove[0]);
259
  jQuery('.slimstat-new-filter').remove();
260
 
261
+ for (i in filters_to_remove){
262
+ filter_components = filters_to_remove[i].split('=');
263
+ jQuery('input[name="'+filter_components[0].replace('[', '\\[').replace(']', '\\]')+'"]').remove();
264
+
265
+ // Reset dropdowns, if needed
266
+ if (filter_components[0].indexOf('[day]') > 0) jQuery('#slimstat-filter-day').val(0);
267
+ if (filter_components[0].indexOf('[month]') > 0) jQuery('#slimstat-filter-month').val(0);
268
+ if (filter_components[0].indexOf('[year]') > 0) jQuery('#slimstat-filter-year').val('');
269
+ if (filter_components[0].indexOf('[interval]') > 0) jQuery('#slimstat-filter-interval').val('');
270
+ }
271
+
272
+ jQuery('#slimstat-filters-form-hidden').submit();
273
  return false;
274
  });
275
 
288
 
289
  // New stuff
290
  jQuery(function(){
291
+ // Filters: add hidden form
292
+ if (!jQuery('#slimstat-filters-form-hidden').length){
293
+ jQuery('<form id="slimstat-filters-form-hidden" method="post"/>').appendTo('body');
294
+ jQuery('.slimstat-post-filter').each(function(){
295
+ console.log(jQuery(this).clone());
296
+ jQuery(this).clone().appendTo('#slimstat-filters-form-hidden');
297
+ });
298
  }
299
 
300
  // Filters: Lock value input field based on operator drop down selection
348
  // Send filters as post requests
349
  jQuery(document).on('click', '.slimstat-filter-link, #toplevel_page_wp-slim-view-1 li a, #wp-admin-bar-slimstat-header li a', function(e){
350
  e.preventDefault();
351
+ if (!jQuery('#slimstat-filters-form-hidden').length){
352
  return true;
353
  }
354
 
356
  jQuery('.empty-on-submit').val(0);
357
 
358
  SlimStatAdmin.add_post_filters('p0', jQuery(this).attr('href'));
359
+ jQuery('#slimstat-filters-form-hidden').submit();
360
  return false;
361
  });
362
 
488
  jQuery('#slimstat-modal-dialog').dialog({
489
  autoOpen: false,
490
  closeOnEscape: true,
491
+ closeText: '',
492
  draggable: true,
493
  height: 415,
494
  modal: true,
505
  // Modal Window / Overlay: Whois
506
  jQuery(document).on('click', '.whois', function(e){
507
  e.preventDefault();
508
+ jQuery('#slimstat-modal-dialog').dialog({
509
+ dialogClass: 'slimstat',
510
+ title: jQuery(this).attr('title')
511
+ }).html('<iframe id="ip2location" src="'+jQuery(this).attr('href')+'" width="100%" height="92%"></iframe>');
512
  jQuery('#slimstat-modal-dialog').dialog('open');
513
  });
514
 
admin/lang/wp-slimstat-en_US.mo CHANGED
Binary file
admin/lang/wp-slimstat-en_US.po CHANGED
@@ -1,110 +1,114 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
- "POT-Creation-Date: 2013-12-30 22:22-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"
8
  "Language: en_US\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.5.5\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-Bookmarks: 332,-1,-1,-1,-1,-1,-1,-1,-1,-1\n"
16
  "X-Poedit-SearchPath-0: ../..\n"
17
 
18
- #: ../../wp-slimstat.php:1175 ../../admin/wp-slimstat-admin.php:396
19
- #: ../../admin/view/wp-slimstat-reports.php:32
20
  msgid "Right Now"
21
  msgstr ""
22
 
23
- #: ../../wp-slimstat.php:1176 ../../admin/wp-slimstat-admin.php:397
24
- #: ../../admin/wp-slimstat-admin.php:414
25
- #: ../../admin/view/wp-slimstat-reports.php:33
26
  msgid "Overview"
27
  msgstr ""
28
 
29
- #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:398
30
- #: ../../admin/wp-slimstat-admin.php:415
31
- #: ../../admin/view/wp-slimstat-reports.php:34
32
  msgid "Visitors"
33
  msgstr ""
34
 
35
- #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:399
36
- #: ../../admin/wp-slimstat-admin.php:416
37
- #: ../../admin/view/wp-slimstat-reports.php:35
38
  msgid "Content"
39
  msgstr ""
40
 
41
- #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:400
42
- #: ../../admin/wp-slimstat-admin.php:417 ../../admin/view/index.php:160
43
- #: ../../admin/view/wp-slimstat-reports.php:36
44
  msgid "Traffic Sources"
45
  msgstr ""
46
 
47
- #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:401
48
- #: ../../admin/wp-slimstat-admin.php:418
49
- #: ../../admin/view/wp-slimstat-reports.php:37
50
- #: ../../admin/view/wp-slimstat-reports.php:142
51
  msgid "World Map"
52
  msgstr ""
53
 
54
- #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:402
55
- #: ../../admin/wp-slimstat-admin.php:419
56
- #: ../../admin/view/wp-slimstat-reports.php:38
57
  msgid "Custom Reports"
58
  msgstr ""
59
 
60
- #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:403
61
- #: ../../admin/wp-slimstat-admin.php:420 ../../admin/config/addons.php:29
62
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:228
63
  msgid "Add-ons"
64
  msgstr ""
65
 
66
- #: ../../wp-slimstat.php:1185 ../../admin/wp-slimstat-admin.php:449
67
- #: ../../admin/wp-slimstat-admin.php:452 ../../admin/wp-slimstat-admin.php:496
68
- #: ../../admin/wp-slimstat-admin.php:499 ../../admin/config/index.php:14
69
- #: ../../admin/config/index.php:134
70
  msgid "Settings"
71
  msgstr ""
72
 
73
- #: ../../admin/wp-slimstat-admin.php:395 ../../admin/wp-slimstat-admin.php:407
74
- #: ../../admin/wp-slimstat-admin.php:410
75
  msgid "SlimStat"
76
  msgstr ""
77
 
78
- #: ../../admin/wp-slimstat-admin.php:513
79
  msgid "Pageviews in the last 365 days"
80
  msgstr ""
81
 
82
- #: ../../admin/wp-slimstat-admin.php:537
83
  msgid "Show on screen"
84
  msgstr ""
85
 
86
- #: ../../admin/wp-slimstat-admin.php:584
 
 
 
 
87
  msgid "There was an error updating the following options:"
88
  msgstr ""
89
 
90
- #: ../../admin/wp-slimstat-admin.php:587
91
  msgid "Your settings have been successfully updated."
92
  msgstr ""
93
 
94
- #: ../../admin/wp-slimstat-admin.php:610
95
  msgid "Save Changes"
96
  msgstr ""
97
 
98
- #: ../../admin/wp-slimstat-admin.php:629
99
  msgid "Yes"
100
  msgstr ""
101
 
102
- #: ../../admin/wp-slimstat-admin.php:630
103
- #: ../../admin/view/wp-slimstat-reports.php:656
104
  msgid "No"
105
  msgstr ""
106
 
107
- #: ../../admin/wp-slimstat-admin.php:670
108
  msgid ""
109
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
110
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
@@ -112,48 +116,48 @@ msgid ""
112
  "FAQs</a> for more information."
113
  msgstr ""
114
 
115
- #: ../../admin/wp-slimstat-admin.php:690
116
  msgid "Definitions"
117
  msgstr ""
118
 
119
- #: ../../admin/wp-slimstat-admin.php:693
120
  msgid "Pageview"
121
  msgstr ""
122
 
123
- #: ../../admin/wp-slimstat-admin.php:693
124
  msgid ""
125
  "A request to load a single HTML file (\"page\"). This should be contrasted "
126
  "with a \"hit\", which refers to a request for any file from a web server. WP "
127
  "SlimStat logs a pageview each time the tracking code is executed"
128
  msgstr ""
129
 
130
- #: ../../admin/wp-slimstat-admin.php:694
131
  msgid "(Human) Visit"
132
  msgstr ""
133
 
134
- #: ../../admin/wp-slimstat-admin.php:694
135
  msgid ""
136
  "A period of interaction between a visitor's browser and your website, ending "
137
  "when the browser is closed or when the user has been inactive on that site "
138
  "for 30 minutes"
139
  msgstr ""
140
 
141
- #: ../../admin/wp-slimstat-admin.php:695 ../../admin/view/index.php:132
142
- #: ../../admin/view/right-now.php:148
143
  msgid "Known Visitor"
144
  msgstr ""
145
 
146
- #: ../../admin/wp-slimstat-admin.php:695
147
  msgid ""
148
  "Any user who has left a comment on your blog, and is thus identified by "
149
  "Wordpress as a returning visitor"
150
  msgstr ""
151
 
152
- #: ../../admin/wp-slimstat-admin.php:696
153
  msgid "Unique IP"
154
  msgstr ""
155
 
156
- #: ../../admin/wp-slimstat-admin.php:696
157
  msgid ""
158
  "Used to differentiate between multiple requests to download a file from one "
159
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -161,253 +165,251 @@ msgid ""
161
  "from, it is useful, but not perfect"
162
  msgstr ""
163
 
164
- #: ../../admin/wp-slimstat-admin.php:697 ../../admin/wp-slimstat-admin.php:739
165
- #: ../../admin/view/right-now.php:98
166
- #: ../../admin/view/wp-slimstat-reports.php:64
167
  msgid "Originating IP"
168
  msgstr ""
169
 
170
- #: ../../admin/wp-slimstat-admin.php:697
171
  msgid ""
172
  "the originating IP address of a client connecting to a web server through an "
173
  "HTTP proxy or load balancer"
174
  msgstr ""
175
 
176
- #: ../../admin/wp-slimstat-admin.php:698
177
  msgid "Direct Traffic"
178
  msgstr ""
179
 
180
- #: ../../admin/wp-slimstat-admin.php:698
181
  msgid ""
182
  "All those people showing up to your Web site by typing in the URL of your "
183
  "Web site coming or from a bookmark; some people also call this \"default "
184
  "traffic\" or \"ambient traffic\""
185
  msgstr ""
186
 
187
- #: ../../admin/wp-slimstat-admin.php:699
188
  msgid "Search Engine"
189
  msgstr ""
190
 
191
- #: ../../admin/wp-slimstat-admin.php:699
192
  msgid ""
193
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
194
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
195
  msgstr ""
196
 
197
- #: ../../admin/wp-slimstat-admin.php:700 ../../admin/wp-slimstat-admin.php:716
198
- #: ../../admin/view/right-now.php:127
199
- #: ../../admin/view/wp-slimstat-reports.php:45
200
  msgid "Search Terms"
201
  msgstr ""
202
 
203
- #: ../../admin/wp-slimstat-admin.php:700 ../../admin/wp-slimstat-admin.php:716
204
  msgid "Keywords used by your visitors to find your website on a search engine"
205
  msgstr ""
206
 
207
- #: ../../admin/wp-slimstat-admin.php:701
208
  msgid "SERP"
209
  msgstr ""
210
 
211
- #: ../../admin/wp-slimstat-admin.php:701
212
  msgid ""
213
  "Short for search engine results page, the Web page that a search engine "
214
  "returns with the results of its search. The value shown represents your rank "
215
  "(or position) within that list of results"
216
  msgstr ""
217
 
218
- #: ../../admin/wp-slimstat-admin.php:702
219
- #: ../../admin/view/wp-slimstat-reports.php:57
220
  msgid "User Agent"
221
  msgstr ""
222
 
223
- #: ../../admin/wp-slimstat-admin.php:702
224
  msgid ""
225
  "Any program used for accessing a website; this includes browsers, robots, "
226
  "spiders and any other program that was used to retrieve information from the "
227
  "site"
228
  msgstr ""
229
 
230
- #: ../../admin/wp-slimstat-admin.php:703
231
- #: ../../admin/view/wp-slimstat-reports.php:61
232
  msgid "Outbound Link"
233
  msgstr ""
234
 
235
- #: ../../admin/wp-slimstat-admin.php:703
236
  msgid ""
237
  "A link from one domain to another is said to be outbound from its source "
238
  "anchor and inbound to its target. This report lists all the links to other "
239
  "websites followed by your visitors."
240
  msgstr ""
241
 
242
- #: ../../admin/wp-slimstat-admin.php:710
243
  msgid "Basic Filters"
244
  msgstr ""
245
 
246
- #: ../../admin/wp-slimstat-admin.php:713
247
- #: ../../admin/view/wp-slimstat-reports.php:42
248
  msgid "Browser"
249
  msgstr ""
250
 
251
- #: ../../admin/wp-slimstat-admin.php:713
252
  msgid "User agent (Firefox, Chrome, ...)"
253
  msgstr ""
254
 
255
- #: ../../admin/wp-slimstat-admin.php:714
256
- #: ../../admin/view/wp-slimstat-reports.php:43
257
- #: ../../admin/view/wp-slimstat-reports.php:482
258
  msgid "Country Code"
259
  msgstr ""
260
 
261
- #: ../../admin/wp-slimstat-admin.php:714
262
  msgid "2-letter code (us, ru, de, it, ...)"
263
  msgstr ""
264
 
265
- #: ../../admin/wp-slimstat-admin.php:715
266
  msgid "IP"
267
  msgstr ""
268
 
269
- #: ../../admin/wp-slimstat-admin.php:715
270
  msgid "Visitor's public IP address"
271
  msgstr ""
272
 
273
- #: ../../admin/wp-slimstat-admin.php:717
274
- #: ../../admin/view/wp-slimstat-reports.php:46
275
- #: ../../admin/view/wp-slimstat-reports.php:494
276
  msgid "Language Code"
277
  msgstr ""
278
 
279
- #: ../../admin/wp-slimstat-admin.php:717
280
  msgid ""
281
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
282
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
283
  "column) for more information"
284
  msgstr ""
285
 
286
- #: ../../admin/wp-slimstat-admin.php:718
287
- #: ../../admin/view/wp-slimstat-reports.php:47
288
  msgid "Operating System"
289
  msgstr ""
290
 
291
- #: ../../admin/wp-slimstat-admin.php:718
292
  msgid ""
293
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
294
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
295
  "manual page</a> for more information"
296
  msgstr ""
297
 
298
- #: ../../admin/wp-slimstat-admin.php:719
299
- #: ../../admin/view/wp-slimstat-reports.php:48
300
  msgid "Permalink"
301
  msgstr ""
302
 
303
- #: ../../admin/wp-slimstat-admin.php:719
304
  msgid "URL accessed on your site"
305
  msgstr ""
306
 
307
- #: ../../admin/wp-slimstat-admin.php:720
308
- #: ../../admin/view/wp-slimstat-reports.php:50
309
  msgid "Referer"
310
  msgstr ""
311
 
312
- #: ../../admin/wp-slimstat-admin.php:720
313
  msgid "Complete address of the referrer page"
314
  msgstr ""
315
 
316
- #: ../../admin/wp-slimstat-admin.php:721
317
- #: ../../admin/view/wp-slimstat-reports.php:51
318
  msgid "Visitor's Name"
319
  msgstr ""
320
 
321
- #: ../../admin/wp-slimstat-admin.php:721
322
  msgid ""
323
  "Visitors' names according to the cookie set by Wordpress after they leave a "
324
  "comment"
325
  msgstr ""
326
 
327
- #: ../../admin/wp-slimstat-admin.php:729
328
  msgid "Advanced Filters"
329
  msgstr ""
330
 
331
- #: ../../admin/wp-slimstat-admin.php:732
332
- #: ../../admin/view/wp-slimstat-reports.php:55
333
  msgid "Browser Version"
334
  msgstr ""
335
 
336
- #: ../../admin/wp-slimstat-admin.php:732
337
  msgid "user agent version (9.0, 11, ...)"
338
  msgstr ""
339
 
340
- #: ../../admin/wp-slimstat-admin.php:733
341
- #: ../../admin/view/wp-slimstat-reports.php:56
342
  msgid "Browser Type"
343
  msgstr ""
344
 
345
- #: ../../admin/wp-slimstat-admin.php:733
346
  msgid ""
347
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
348
  "all others"
349
  msgstr ""
350
 
351
- #: ../../admin/wp-slimstat-admin.php:734
352
- #: ../../admin/view/wp-slimstat-reports.php:58
353
  msgid "Color Depth"
354
  msgstr ""
355
 
356
- #: ../../admin/wp-slimstat-admin.php:734
357
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
358
  msgstr ""
359
 
360
- #: ../../admin/wp-slimstat-admin.php:735
361
- #: ../../admin/view/wp-slimstat-reports.php:59
362
  msgid "CSS Version"
363
  msgstr ""
364
 
365
- #: ../../admin/wp-slimstat-admin.php:735
366
  msgid ""
367
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
368
  "values)"
369
  msgstr ""
370
 
371
- #: ../../admin/wp-slimstat-admin.php:736
372
- #: ../../admin/view/wp-slimstat-reports.php:60
373
  msgid "Pageview Attributes"
374
  msgstr ""
375
 
376
- #: ../../admin/wp-slimstat-admin.php:736
377
  msgid ""
378
  "this field is set to <em>[pre]</em> if the resource has been accessed "
379
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
380
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
381
  msgstr ""
382
 
383
- #: ../../admin/wp-slimstat-admin.php:737
384
- #: ../../admin/view/wp-slimstat-reports.php:62
385
  msgid "Post Author"
386
  msgstr ""
387
 
388
- #: ../../admin/wp-slimstat-admin.php:737
389
  msgid "author associated to that post/page when the resource was accessed"
390
  msgstr ""
391
 
392
- #: ../../admin/wp-slimstat-admin.php:738
393
- #: ../../admin/view/wp-slimstat-reports.php:63
394
  msgid "Post Category ID"
395
  msgstr ""
396
 
397
- #: ../../admin/wp-slimstat-admin.php:738
398
  msgid "ID of the category/term associated to the resource, when available"
399
  msgstr ""
400
 
401
- #: ../../admin/wp-slimstat-admin.php:739
402
  msgid "visitor's originating IP address, if available"
403
  msgstr ""
404
 
405
- #: ../../admin/wp-slimstat-admin.php:740
406
- #: ../../admin/view/wp-slimstat-reports.php:65
407
  msgid "Resource Content Type"
408
  msgstr ""
409
 
410
- #: ../../admin/wp-slimstat-admin.php:740
411
  msgid ""
412
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
413
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -416,48 +418,48 @@ msgid ""
416
  "information"
417
  msgstr ""
418
 
419
- #: ../../admin/wp-slimstat-admin.php:741
420
- #: ../../admin/view/wp-slimstat-reports.php:67
421
  msgid "Screen Resolution"
422
  msgstr ""
423
 
424
- #: ../../admin/wp-slimstat-admin.php:741
425
  msgid "viewport width and height (1024x768, 800x600, ...)"
426
  msgstr ""
427
 
428
- #: ../../admin/wp-slimstat-admin.php:742
429
- #: ../../admin/view/wp-slimstat-reports.php:68
430
  msgid "Visit ID"
431
  msgstr ""
432
 
433
- #: ../../admin/wp-slimstat-admin.php:742
434
  msgid ""
435
  "generally used in conjunction with <em>is not empty</em>, identifies human "
436
  "visitors"
437
  msgstr ""
438
 
439
- #: ../../admin/wp-slimstat-admin.php:743
440
  msgid "Date Filters"
441
  msgstr ""
442
 
443
- #: ../../admin/wp-slimstat-admin.php:743
444
  msgid ""
445
  "you can specify the timeframe by entering a number in the <em>interval</em> "
446
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
447
  "year=blank, interval=-1 will set a year-to-date filter)"
448
  msgstr ""
449
 
450
- #: ../../admin/wp-slimstat-admin.php:744
451
  msgid "SERP Position"
452
  msgstr ""
453
 
454
- #: ../../admin/wp-slimstat-admin.php:744
455
  msgid ""
456
  "set the filter to Referer contains cd=N&, where N is the position you are "
457
  "looking for"
458
  msgstr ""
459
 
460
- #: ../../admin/wp-slimstat-admin.php:753
461
  msgid ""
462
  " And for keeping an eye on your visitors with <a href=\"http://slimstat."
463
  "getused.to.it/\">WP SlimStat</a>."
@@ -493,23 +495,23 @@ msgstr ""
493
  msgid "Description"
494
  msgstr ""
495
 
496
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:17
497
  msgid "General"
498
  msgstr ""
499
 
500
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:43
501
  msgid "Views"
502
  msgstr ""
503
 
504
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:63
505
  msgid "Filters"
506
  msgstr ""
507
 
508
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:127
509
  msgid "Permissions"
510
  msgstr ""
511
 
512
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:204
513
  msgid "Advanced"
514
  msgstr ""
515
 
@@ -517,44 +519,44 @@ msgstr ""
517
  msgid "Maintenance"
518
  msgstr ""
519
 
520
- #: ../../admin/config/index.php:19 ../../admin/config/index.php:206
521
  msgid "Tracker"
522
  msgstr ""
523
 
524
- #: ../../admin/config/index.php:20
525
  msgid "Enable Tracking"
526
  msgstr ""
527
 
528
- #: ../../admin/config/index.php:20
529
  msgid ""
530
  "Turn the tracker on or off, but keep the reports accessible (which you would "
531
  "not have, if you just disabled the plugin)."
532
  msgstr ""
533
 
534
- #: ../../admin/config/index.php:21
535
  msgid "Monitor Admin Pages"
536
  msgstr ""
537
 
538
- #: ../../admin/config/index.php:21
539
  msgid "Enable this option to track your users' activity within the admin."
540
  msgstr ""
541
 
542
- #: ../../admin/config/index.php:22
543
  msgid "Enable Spy Mode"
544
  msgstr ""
545
 
546
- #: ../../admin/config/index.php:22
547
  msgid ""
548
  "Collect information about screen resolutions, outbound links, downloads, "
549
  "etc. If Tracking Mode is set to Javascript, this data will be tracked "
550
  "regardless of which value you set for this option."
551
  msgstr ""
552
 
553
- #: ../../admin/config/index.php:23
554
  msgid "Tracking Mode"
555
  msgstr ""
556
 
557
- #: ../../admin/config/index.php:23
558
  msgid ""
559
  "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
560
  "Total Cache, WP SuperCache, HyperCache, etc). WP SlimStat will behave pretty "
@@ -563,217 +565,217 @@ msgid ""
563
  "spammers, search engines and other crawlers</strong> will not be tracked."
564
  msgstr ""
565
 
566
- #: ../../admin/config/index.php:23
567
  msgid "Javascript"
568
  msgstr ""
569
 
570
- #: ../../admin/config/index.php:23
571
  msgid "Server-side"
572
  msgstr ""
573
 
574
- #: ../../admin/config/index.php:25
575
  msgid "WordPress Integration"
576
  msgstr ""
577
 
578
- #: ../../admin/config/index.php:26
579
  msgid "Menu Position"
580
  msgstr ""
581
 
582
- #: ../../admin/config/index.php:26
583
  msgid ""
584
  "Choose between a standalone admin menu for WP SlimStat or a drop down in the "
585
  "admin bar (if visible)."
586
  msgstr ""
587
 
588
- #: ../../admin/config/index.php:26
589
  msgid "Side Menu"
590
  msgstr ""
591
 
592
- #: ../../admin/config/index.php:26
593
  msgid "Admin Bar"
594
  msgstr ""
595
 
596
- #: ../../admin/config/index.php:27
597
  msgid "Add Stats to Posts"
598
  msgstr ""
599
 
600
- #: ../../admin/config/index.php:27
601
  msgid ""
602
  "Add a new column to the Edit Posts screen, with the number of hits per post."
603
  msgstr ""
604
 
605
- #: ../../admin/config/index.php:29
606
  msgid "Database"
607
  msgstr ""
608
 
609
- #: ../../admin/config/index.php:30
610
  msgid "Retain data for"
611
  msgstr ""
612
 
613
- #: ../../admin/config/index.php:30
614
  msgid ""
615
  "Delete log entries older than the number of days specified here above. Enter "
616
  "<strong>0</strong> (number zero) if you want to preserve your data "
617
  "regardless of its age."
618
  msgstr ""
619
 
620
- #: ../../admin/config/index.php:30
621
  msgid "Next clean-up on"
622
  msgstr ""
623
 
624
- #: ../../admin/config/index.php:30
625
  #, php-format
626
  msgid "Entries logged on or before %s will be permanently deleted."
627
  msgstr ""
628
 
629
- #: ../../admin/config/index.php:30 ../../admin/view/index.php:76
630
- #: ../../admin/view/wp-slimstat-reports.php:75
631
- #: ../../admin/view/wp-slimstat-reports.php:656
632
  msgid "days"
633
  msgstr ""
634
 
635
- #: ../../admin/config/index.php:45
636
  msgid "Data and Formats"
637
  msgstr ""
638
 
639
- #: ../../admin/config/index.php:46
640
  msgid "Convert IP Addresses"
641
  msgstr ""
642
 
643
- #: ../../admin/config/index.php:46
644
  msgid "Display provider names instead of IP addresses."
645
  msgstr ""
646
 
647
- #: ../../admin/config/index.php:47
648
  msgid "Number Format"
649
  msgstr ""
650
 
651
- #: ../../admin/config/index.php:47
652
  msgid ""
653
  "Choose the number format you want to use for your reports, European or "
654
  "American."
655
  msgstr ""
656
 
657
- #: ../../admin/config/index.php:48
658
  msgid "Show Display Name"
659
  msgstr ""
660
 
661
- #: ../../admin/config/index.php:48
662
  msgid ""
663
  "By default, users are listed by their usernames. Use this option to "
664
  "visualize their display names instead."
665
  msgstr ""
666
 
667
- #: ../../admin/config/index.php:49
668
  msgid "Show User Agent"
669
  msgstr ""
670
 
671
- #: ../../admin/config/index.php:49
672
  msgid ""
673
  "Choose if you want to see the browser name or a complete user agent string "
674
  "when hovering on browser icons."
675
  msgstr ""
676
 
677
- #: ../../admin/config/index.php:50
678
  msgid "Show Titles"
679
  msgstr ""
680
 
681
- #: ../../admin/config/index.php:50
682
  msgid ""
683
  "WP SlimStat converts your permalinks into post and page titles. Disable this "
684
  "feature if you need to see the URL in your reports."
685
  msgstr ""
686
 
687
- #: ../../admin/config/index.php:52
688
  msgid "Functionality"
689
  msgstr ""
690
 
691
- #: ../../admin/config/index.php:53
692
  msgid "Asynchronous Views"
693
  msgstr ""
694
 
695
- #: ../../admin/config/index.php:53
696
  msgid ""
697
  "Load all the reports dynamically. It makes the reports render faster, but it "
698
  "increases the load on your server."
699
  msgstr ""
700
 
701
- #: ../../admin/config/index.php:54
702
  msgid "Expand Details"
703
  msgstr ""
704
 
705
- #: ../../admin/config/index.php:54
706
  msgid "Expand each row's details by default, insted of on mousehover."
707
  msgstr ""
708
 
709
- #: ../../admin/config/index.php:55 ../../admin/config/index.php:59
710
  msgid "Rows to Display"
711
  msgstr ""
712
 
713
- #: ../../admin/config/index.php:55
714
  msgid "Specify the number of items in each report."
715
  msgstr ""
716
 
717
- #: ../../admin/config/index.php:57
718
  msgid "Right Now Screen"
719
  msgstr ""
720
 
721
- #: ../../admin/config/index.php:58
722
  msgid "Live Stream"
723
  msgstr ""
724
 
725
- #: ../../admin/config/index.php:58
726
  msgid ""
727
  "Enable the Live view, which refreshes the Right Now screen every X seconds. "
728
  "Enter <strong>0</strong> (number zero) to disable this functionality."
729
  msgstr ""
730
 
731
- #: ../../admin/config/index.php:58 ../../admin/config/index.php:209
732
  msgid "seconds"
733
  msgstr ""
734
 
735
- #: ../../admin/config/index.php:59
736
  msgid "Specify the number of items in Right Now."
737
  msgstr ""
738
 
739
- #: ../../admin/config/index.php:60
740
  msgid "Right Now Extended"
741
  msgstr ""
742
 
743
- #: ../../admin/config/index.php:60
744
  msgid ""
745
  "Choose if you want to see outbound links listed under Right Now. It might "
746
  "slow down the rendering of this report."
747
  msgstr ""
748
 
749
- #: ../../admin/config/index.php:65
750
  msgid "Visitors and Known Users"
751
  msgstr ""
752
 
753
- #: ../../admin/config/index.php:66
754
  msgid "Track Registered Users"
755
  msgstr ""
756
 
757
- #: ../../admin/config/index.php:66
758
  msgid "Enable this option to track logged in users."
759
  msgstr ""
760
 
761
- #: ../../admin/config/index.php:67
762
  msgid "Blacklist by Username"
763
  msgstr ""
764
 
765
- #: ../../admin/config/index.php:67
766
  msgid ""
767
  "List all the usernames you don't want to track, separated by commas. Please "
768
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
769
  "sensitive."
770
  msgstr ""
771
 
772
- #: ../../admin/config/index.php:68
773
  msgid "Blacklist by IP Address"
774
  msgstr ""
775
 
776
- #: ../../admin/config/index.php:68
777
  msgid ""
778
  "List all the IP addresses you don't want to track, separated by commas. Each "
779
  "network <strong>must</strong> be defined using the <a href='http://en."
@@ -782,26 +784,26 @@ msgid ""
782
  "SlimStat may not track pageviews properly."
783
  msgstr ""
784
 
785
- #: ../../admin/config/index.php:69
786
  msgid "Blacklist by Capability"
787
  msgstr ""
788
 
789
- #: ../../admin/config/index.php:69
790
  msgid ""
791
  "Users having at least one of the <a href='http://codex.wordpress.org/"
792
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
793
  "will not be tracked. Capabilities are case-insensitive."
794
  msgstr ""
795
 
796
- #: ../../admin/config/index.php:71
797
  msgid "Profiling"
798
  msgstr ""
799
 
800
- #: ../../admin/config/index.php:72
801
  msgid "Ignore Spammers"
802
  msgstr ""
803
 
804
- #: ../../admin/config/index.php:72
805
  msgid ""
806
  "Enable this option if you don't want to track visits from users identified "
807
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -809,11 +811,11 @@ msgid ""
809
  "database."
810
  msgstr ""
811
 
812
- #: ../../admin/config/index.php:73
813
  msgid "Permalinks"
814
  msgstr ""
815
 
816
- #: ../../admin/config/index.php:73
817
  msgid ""
818
  "List all the URLs on your website that you don't want to track, separated by "
819
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -824,21 +826,21 @@ msgid ""
824
  "case-insensitive."
825
  msgstr ""
826
 
827
- #: ../../admin/config/index.php:74
828
  msgid "Countries"
829
  msgstr ""
830
 
831
- #: ../../admin/config/index.php:74
832
  msgid ""
833
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
834
  "track, separated by commas."
835
  msgstr ""
836
 
837
- #: ../../admin/config/index.php:75
838
  msgid "User Agents"
839
  msgstr ""
840
 
841
- #: ../../admin/config/index.php:75
842
  msgid ""
843
  "Browsers (user agents) you don't want to track, separated by commas. You can "
844
  "specify the browser's version adding a slash after the name (i.e. "
@@ -848,11 +850,11 @@ msgid ""
848
  "code> will match IE/7.0 and IE/8.0. Strings are case-insensitive."
849
  msgstr ""
850
 
851
- #: ../../admin/config/index.php:76
852
  msgid "Referring Sites"
853
  msgstr ""
854
 
855
- #: ../../admin/config/index.php:76
856
  msgid ""
857
  "Referring URLs that you don't want to track, separated by commas: "
858
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -862,79 +864,79 @@ msgid ""
862
  "https://)."
863
  msgstr ""
864
 
865
- #: ../../admin/config/index.php:78 ../../admin/config/index.php:214
866
  msgid "Miscellaneous"
867
  msgstr ""
868
 
869
- #: ../../admin/config/index.php:79
870
  msgid "Enable Privacy Mode"
871
  msgstr ""
872
 
873
- #: ../../admin/config/index.php:79
874
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
875
  msgstr ""
876
 
877
- #: ../../admin/config/index.php:80
878
  msgid "Ignore Prefetch Requests"
879
  msgstr ""
880
 
881
- #: ../../admin/config/index.php:80
882
  msgid ""
883
  "Prevent WP SlimStat from tracking pageviews generated by Firefox's <a "
884
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
885
  "target='_blank'>Link Prefetching functionality</a>."
886
  msgstr ""
887
 
888
- #: ../../admin/config/index.php:96
889
  msgid "Ignore users (username not found)"
890
  msgstr ""
891
 
892
- #: ../../admin/config/index.php:119
893
  msgid ""
894
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
895
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
896
  msgstr ""
897
 
898
- #: ../../admin/config/index.php:129
899
  msgid "Reports"
900
  msgstr ""
901
 
902
- #: ../../admin/config/index.php:130
903
  msgid "Restrict Authors"
904
  msgstr ""
905
 
906
- #: ../../admin/config/index.php:130
907
  msgid ""
908
  "Enable this option if you want your authours to only see stats related to "
909
  "their own content."
910
  msgstr ""
911
 
912
- #: ../../admin/config/index.php:131 ../../admin/config/index.php:135
913
  msgid "Capability"
914
  msgstr ""
915
 
916
- #: ../../admin/config/index.php:131
917
  msgid ""
918
  "Specify the minimum <a href='http://codex.wordpress.org/"
919
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
920
- "reports (default: <code>read</code>). If this field is empty, <strong>all "
921
- "your users</strong> (including subscribers) will have access to the reports, "
922
- "unless a 'Read access' whitelist has been specified here below. In this "
923
- "case, the list has precedence over the capability."
924
  msgstr ""
925
 
926
- #: ../../admin/config/index.php:132 ../../admin/config/index.php:136
927
  msgid "Whitelist"
928
  msgstr ""
929
 
930
- #: ../../admin/config/index.php:132
931
  msgid ""
932
  "List all the users who should have access to the reports, separated by "
933
  "commas. Administrators are implicitly allowed, so you don't need to list "
934
  "them in here. Usernames are case sensitive."
935
  msgstr ""
936
 
937
- #: ../../admin/config/index.php:135
938
  msgid ""
939
  "Specify the minimum <a href='http://codex.wordpress.org/"
940
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
@@ -942,82 +944,82 @@ msgid ""
942
  "below can be used to override this option for specific users."
943
  msgstr ""
944
 
945
- #: ../../admin/config/index.php:136
946
  msgid ""
947
  "List all the users who can edit these options, separated by commas. Please "
948
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
949
  "not forget to include yourself! Usernames are case sensitive."
950
  msgstr ""
951
 
952
- #: ../../admin/config/index.php:152
953
  msgid "Read access: username not found"
954
  msgstr ""
955
 
956
- #: ../../admin/config/index.php:165 ../../admin/config/index.php:196
957
  msgid ""
958
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
959
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
960
  "information"
961
  msgstr ""
962
 
963
- #: ../../admin/config/index.php:183
964
  msgid "Config access: username not found"
965
  msgstr ""
966
 
967
- #: ../../admin/config/index.php:207
968
  msgid "Detect Smoothing"
969
  msgstr ""
970
 
971
- #: ../../admin/config/index.php:207
972
  msgid ""
973
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
974
  "This option required Spy Mode to be enabled."
975
  msgstr ""
976
 
977
- #: ../../admin/config/index.php:208
978
  msgid "Track Outbound Clicks"
979
  msgstr ""
980
 
981
- #: ../../admin/config/index.php:208
982
  msgid ""
983
  "Track when your visitors click on link to external websites. This option "
984
  "required Spy Mode to be enabled."
985
  msgstr ""
986
 
987
- #: ../../admin/config/index.php:209
988
  msgid "Session Duration"
989
  msgstr ""
990
 
991
- #: ../../admin/config/index.php:209
992
  msgid ""
993
- "How many seconds should a human session on your site last? Google Analytics "
994
- "sets it to 1800 seconds."
995
  msgstr ""
996
 
997
- #: ../../admin/config/index.php:210
998
  msgid "Extend Session"
999
  msgstr ""
1000
 
1001
- #: ../../admin/config/index.php:210
1002
  msgid "Extend the duration of a session each time the user visits a new page."
1003
  msgstr ""
1004
 
1005
- #: ../../admin/config/index.php:211
1006
  msgid "Enable CDN"
1007
  msgstr ""
1008
 
1009
- #: ../../admin/config/index.php:211
1010
  msgid ""
1011
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
1012
  "by serving our tracking code from their fast and reliable network (free "
1013
  "service)."
1014
  msgstr ""
1015
 
1016
- #: ../../admin/config/index.php:212
1017
  msgid "Extensions to Track"
1018
  msgstr ""
1019
 
1020
- #: ../../admin/config/index.php:212
1021
  msgid ""
1022
  "List all the file extensions that you want to be treated as Downloads. "
1023
  "Please note that links pointing to external resources (i.e. PDFs on a "
@@ -1026,37 +1028,24 @@ msgid ""
1026
  "below."
1027
  msgstr ""
1028
 
1029
- #: ../../admin/config/index.php:215
1030
  msgid "IP Lookup"
1031
  msgstr ""
1032
 
1033
- #: ../../admin/config/index.php:215
1034
  msgid "Customize the Geolocation service to be used in the reports."
1035
  msgstr ""
1036
 
1037
- #: ../../admin/config/index.php:216
1038
  msgid "Custom CSS"
1039
  msgstr ""
1040
 
1041
- #: ../../admin/config/index.php:216
1042
  msgid ""
1043
  "Paste here your custom stylesheet to personalize the way your reports look. "
1044
  "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1045
  "target='_blank'>Check the FAQ</a> for more information on how to use this "
1046
- "functionality."
1047
- msgstr ""
1048
-
1049
- #: ../../admin/config/index.php:217
1050
- msgid "Chart Annotations"
1051
- msgstr ""
1052
-
1053
- #: ../../admin/config/index.php:217
1054
- msgid ""
1055
- "Add <em>markings</em> to each chart by specifying a date and its description "
1056
- "in the field below. Useful to keep track of special events and correlate "
1057
- "them to your analytics. Please use the following format:<code>YYYY MM DD HH:"
1058
- "mm=Description 1,YYYY MM DD HH:mm=Description 2</code>. For example: 2012 12 "
1059
- "31 23:55=New Year's Eve."
1060
  msgstr ""
1061
 
1062
  #: ../../admin/config/index.php:218
@@ -1065,10 +1054,10 @@ msgstr ""
1065
 
1066
  #: ../../admin/config/index.php:218
1067
  msgid ""
1068
- "Collect data about unknown user agents, and send it anonymously to our "
1069
- "server for analysis. This allows us to contribute to the <a href='http://"
1070
- "browscap.co/' target='_blank'>BrowsCap opensource project</a>, and improve "
1071
- "the accuracy of SlimStat's browser detection functionality."
1072
  msgstr ""
1073
 
1074
  #: ../../admin/config/maintenance.php:20
@@ -1176,7 +1165,7 @@ msgid "is not empty"
1176
  msgstr ""
1177
 
1178
  #: ../../admin/config/maintenance.php:138 ../../admin/view/index.php:32
1179
- #: ../../admin/view/index.php:77
1180
  msgid "Apply"
1181
  msgstr ""
1182
 
@@ -2668,7 +2657,7 @@ msgid "l-zu-za"
2668
  msgstr "Zulu (South Africa)"
2669
 
2670
  #: ../../admin/lang/dynamic_strings.php:298
2671
- #: ../../admin/view/wp-slimstat-reports.php:495
2672
  msgid "l-"
2673
  msgstr "Unknown"
2674
 
@@ -2686,51 +2675,55 @@ msgstr "Unknown"
2686
  msgid "c-xy"
2687
  msgstr "Local IP"
2688
 
2689
- #: ../../admin/view/index.php:47 ../../admin/view/wp-slimstat-reports.php:680
2690
  msgid "Today"
2691
  msgstr ""
2692
 
2693
- #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:681
2694
  msgid "Yesterday"
2695
  msgstr ""
2696
 
2697
- #: ../../admin/view/index.php:49
2698
- msgid "Last 7 Days"
2699
- msgstr ""
2700
-
2701
  #: ../../admin/view/index.php:50
2702
- msgid "Last 30 Days"
2703
  msgstr ""
2704
 
2705
  #: ../../admin/view/index.php:51
2706
- msgid "Last 90 Days"
2707
  msgstr ""
2708
 
2709
  #: ../../admin/view/index.php:52
2710
- msgid "This Year"
2711
  msgstr ""
2712
 
2713
  #: ../../admin/view/index.php:53
 
 
 
 
2714
  msgid "Date Range"
2715
  msgstr ""
2716
 
2717
- #: ../../admin/view/index.php:55 ../../admin/view/wp-slimstat-reports.php:72
2718
  msgid "Day"
2719
  msgstr ""
2720
 
2721
- #: ../../admin/view/index.php:65 ../../admin/view/wp-slimstat-reports.php:73
2722
  msgid "Month"
2723
  msgstr ""
2724
 
2725
- #: ../../admin/view/index.php:74 ../../admin/view/wp-slimstat-reports.php:74
2726
  msgid "Year"
2727
  msgstr ""
2728
 
2729
- #: ../../admin/view/index.php:109
 
 
 
 
2730
  msgid "Your report here"
2731
  msgstr ""
2732
 
2733
- #: ../../admin/view/index.php:111
2734
  msgid ""
2735
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
2736
  "Just write a new plugin that retrieves the desired information from the "
@@ -2739,54 +2732,54 @@ msgid ""
2739
  "slimstat?forum_id=10\" target=\"_blank\">support forum</a>."
2740
  msgstr ""
2741
 
2742
- #: ../../admin/view/index.php:125 ../../admin/view/wp-slimstat-reports.php:671
2743
- #: ../../admin/view/wp-slimstat-reports.php:774
2744
- #: ../../admin/view/wp-slimstat-reports.php:1040
2745
  msgid "Pageviews"
2746
  msgstr ""
2747
 
2748
- #: ../../admin/view/index.php:128
2749
  msgid ""
2750
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2751
  "WP SlimStat leverages this information to identify returning visitors. "
2752
  "Please note that visitors also include registered users."
2753
  msgstr ""
2754
 
2755
- #: ../../admin/view/index.php:132
2756
  msgid "Take a sneak peek at what human visitors are doing on your website."
2757
  msgstr ""
2758
 
2759
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
2760
- #: ../../admin/view/index.php:176 ../../admin/view/right-now.php:146
2761
  msgid "Color codes"
2762
  msgstr ""
2763
 
2764
- #: ../../admin/view/index.php:132
2765
  msgid "From a search result page"
2766
  msgstr ""
2767
 
2768
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
2769
- #: ../../admin/view/index.php:176
2770
  msgid "Known Users"
2771
  msgstr ""
2772
 
2773
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
2774
- #: ../../admin/view/index.php:176
2775
  msgid "Other Humans"
2776
  msgstr ""
2777
 
2778
- #: ../../admin/view/index.php:136
2779
  msgid "Keywords used by your visitors to find your website on a search engine."
2780
  msgstr ""
2781
 
2782
- #: ../../admin/view/index.php:139
2783
  msgid ""
2784
  "WP SlimStat retrieves live information from Alexa, Facebook and Google, to "
2785
  "measures your site's rankings. Values are updated every 12 hours. Filters "
2786
  "set above don't apply to this report."
2787
  msgstr ""
2788
 
2789
- #: ../../admin/view/index.php:142
2790
  msgid ""
2791
  "We have teamed up with HackerNinja.com to offer you a free website security "
2792
  "scan. By clicking on Start Free Scan, your website will be analyzed to "
@@ -2794,11 +2787,11 @@ msgid ""
2794
  "information is being sent to HackerNinja."
2795
  msgstr ""
2796
 
2797
- #: ../../admin/view/index.php:145
2798
  msgid "Human Visits"
2799
  msgstr ""
2800
 
2801
- #: ../../admin/view/index.php:148
2802
  msgid ""
2803
  "Internet Service Provider: a company which provides other companies or "
2804
  "individuals with access to the Internet. Your DSL or cable internet service "
@@ -2806,52 +2799,52 @@ msgid ""
2806
  "by setting the corresponding filter under Settings > SlimStat > Filters."
2807
  msgstr ""
2808
 
2809
- #: ../../admin/view/index.php:151
2810
  msgid ""
2811
  "You can configure WP SlimStat to ignore a specific Country by setting the "
2812
  "corresponding filter under Settings > SlimStat > Filters."
2813
  msgstr ""
2814
 
2815
- #: ../../admin/view/index.php:154
2816
  msgid ""
2817
  "This report shows you what user agent families (no version considered) are "
2818
  "popular among your visitors."
2819
  msgstr ""
2820
 
2821
- #: ../../admin/view/index.php:157
2822
  msgid ""
2823
  "This report shows you what operating system families (no version considered) "
2824
  "are popular among your visitors."
2825
  msgstr ""
2826
 
2827
- #: ../../admin/view/index.php:163
2828
  msgid "Average Pageviews per Visit"
2829
  msgstr ""
2830
 
2831
- #: ../../admin/view/index.php:166
2832
  msgid ""
2833
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
2834
  "left your site from the entrance (landing) page."
2835
  msgstr ""
2836
 
2837
- #: ../../admin/view/index.php:169
2838
  msgid "Searches performed using Wordpress' built-in search functionality."
2839
  msgstr ""
2840
 
2841
- #: ../../admin/view/index.php:173
2842
  msgid ""
2843
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
2844
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
2845
  "link has an ID attribute associated to it."
2846
  msgstr ""
2847
 
2848
- #: ../../admin/view/index.php:176
2849
  msgid ""
2850
  "This report lists any <em>event</em> occurred on your website. Please refer "
2851
  "to the FAQ for more information on how to leverage this functionality."
2852
  msgstr ""
2853
 
2854
- #: ../../admin/view/index.php:179
2855
  msgid ""
2856
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2857
  "this report is not affected by the filters set here above."
@@ -2874,620 +2867,631 @@ msgid "Syndication Reader"
2874
  msgstr ""
2875
 
2876
  #: ../../admin/view/right-now.php:28
2877
- #: ../../admin/view/wp-slimstat-reports.php:438
2878
- #: ../../admin/view/wp-slimstat-reports.php:583
2879
  msgid "No data to display"
2880
  msgstr ""
2881
 
2882
  # Unknown
2883
- #: ../../admin/view/right-now.php:53
2884
- #: ../../admin/view/wp-slimstat-reports.php:483
2885
- #: ../../admin/view/wp-slimstat-reports.php:621
2886
- #: ../../admin/view/wp-slimstat-reports.php:928
2887
  msgid "c-"
2888
  msgstr "Unknown"
2889
 
2890
- #: ../../admin/view/right-now.php:119
2891
- #: ../../admin/view/wp-slimstat-reports.php:537
2892
- #: ../../admin/view/wp-slimstat-reports.php:541
2893
- #: ../../admin/view/wp-slimstat-reports.php:603
2894
- #: ../../admin/view/wp-slimstat-reports.php:641
2895
  msgid "Open this URL in a new window"
2896
  msgstr ""
2897
 
2898
- #: ../../admin/view/right-now.php:122
2899
  msgid "Local search results page"
2900
  msgstr ""
2901
 
2902
- #: ../../admin/view/right-now.php:129
2903
  msgid "Open this referrer in a new window"
2904
  msgstr ""
2905
 
2906
- #: ../../admin/view/right-now.php:130
2907
  msgid "Open this outbound link in a new window"
2908
  msgstr ""
2909
 
2910
- #: ../../admin/view/right-now.php:131
2911
  msgid "Date and Time"
2912
  msgstr ""
2913
 
2914
- #: ../../admin/view/right-now.php:132
2915
  msgid "Content Type"
2916
  msgstr ""
2917
 
2918
- #: ../../admin/view/right-now.php:147
2919
  msgid "Visit with keywords"
2920
  msgstr ""
2921
 
2922
- #: ../../admin/view/right-now.php:149
2923
  msgid "Known User"
2924
  msgstr ""
2925
 
2926
- #: ../../admin/view/right-now.php:150
2927
  msgid "Human Visitor"
2928
  msgstr ""
2929
 
2930
- #: ../../admin/view/right-now.php:151
2931
  msgid "Bot or Crawler"
2932
  msgstr ""
2933
 
2934
- #: ../../admin/view/wp-slimstat-reports.php:44
2935
  msgid "IP Address"
2936
  msgstr ""
2937
 
2938
- #: ../../admin/view/wp-slimstat-reports.php:49
2939
  msgid "Domain"
2940
  msgstr ""
2941
 
2942
- #: ../../admin/view/wp-slimstat-reports.php:53
2943
  msgid "-- Advanced filters --"
2944
  msgstr ""
2945
 
2946
- #: ../../admin/view/wp-slimstat-reports.php:54
2947
- #: ../../admin/view/wp-slimstat-reports.php:99
2948
  msgid "Browser Capabilities"
2949
  msgstr ""
2950
 
2951
- #: ../../admin/view/wp-slimstat-reports.php:66
2952
  msgid "Resource ID"
2953
  msgstr ""
2954
 
2955
- #: ../../admin/view/wp-slimstat-reports.php:71
2956
  msgid "Hour"
2957
  msgstr ""
2958
 
2959
- #: ../../admin/view/wp-slimstat-reports.php:78
 
 
 
 
 
 
 
 
 
 
 
 
2960
  msgid "Pageviews (chart)"
2961
  msgstr ""
2962
 
2963
- #: ../../admin/view/wp-slimstat-reports.php:79
2964
  msgid "About WP SlimStat"
2965
  msgstr ""
2966
 
2967
- #: ../../admin/view/wp-slimstat-reports.php:80
2968
- #: ../../admin/view/wp-slimstat-reports.php:93
2969
  msgid "At a Glance"
2970
  msgstr ""
2971
 
2972
- #: ../../admin/view/wp-slimstat-reports.php:81
2973
  msgid "Currently Online"
2974
  msgstr ""
2975
 
2976
- #: ../../admin/view/wp-slimstat-reports.php:82
2977
- #: ../../admin/view/wp-slimstat-reports.php:117
2978
  msgid "Spy View"
2979
  msgstr ""
2980
 
2981
- #: ../../admin/view/wp-slimstat-reports.php:83
2982
- #: ../../admin/view/wp-slimstat-reports.php:118
2983
  msgid "Recent Search Terms"
2984
  msgstr ""
2985
 
2986
- #: ../../admin/view/wp-slimstat-reports.php:84
2987
  msgid "Top Pages"
2988
  msgstr ""
2989
 
2990
- #: ../../admin/view/wp-slimstat-reports.php:85
2991
- #: ../../admin/view/wp-slimstat-reports.php:115
2992
  msgid "Top Traffic Sources"
2993
  msgstr ""
2994
 
2995
- #: ../../admin/view/wp-slimstat-reports.php:86
2996
  msgid "Top Known Visitors"
2997
  msgstr ""
2998
 
2999
- #: ../../admin/view/wp-slimstat-reports.php:87
3000
- #: ../../admin/view/wp-slimstat-reports.php:113
3001
- #: ../../admin/view/wp-slimstat-reports.php:133
3002
  msgid "Top Search Terms"
3003
  msgstr ""
3004
 
3005
- #: ../../admin/view/wp-slimstat-reports.php:88
3006
- #: ../../admin/view/wp-slimstat-reports.php:100
3007
- #: ../../admin/view/wp-slimstat-reports.php:114
3008
  msgid "Top Countries"
3009
  msgstr ""
3010
 
3011
- #: ../../admin/view/wp-slimstat-reports.php:89
3012
  msgid "Rankings"
3013
  msgstr ""
3014
 
3015
- #: ../../admin/view/wp-slimstat-reports.php:90
3016
  msgid "Security Scan"
3017
  msgstr ""
3018
 
3019
- #: ../../admin/view/wp-slimstat-reports.php:91
3020
  msgid "Top Language Families"
3021
  msgstr ""
3022
 
3023
- #: ../../admin/view/wp-slimstat-reports.php:92
3024
  msgid "Human Visits (chart)"
3025
  msgstr ""
3026
 
3027
- #: ../../admin/view/wp-slimstat-reports.php:94
3028
  msgid "Top Languages"
3029
  msgstr ""
3030
 
3031
- #: ../../admin/view/wp-slimstat-reports.php:95
3032
  msgid "Top Browsers"
3033
  msgstr ""
3034
 
3035
- #: ../../admin/view/wp-slimstat-reports.php:96
3036
  msgid "Top Service Providers"
3037
  msgstr ""
3038
 
3039
- #: ../../admin/view/wp-slimstat-reports.php:97
3040
  msgid "Top Operating Systems"
3041
  msgstr ""
3042
 
3043
- #: ../../admin/view/wp-slimstat-reports.php:98
3044
  msgid "Top Screen Resolutions"
3045
  msgstr ""
3046
 
3047
- #: ../../admin/view/wp-slimstat-reports.php:101
3048
  msgid "Visit Duration"
3049
  msgstr ""
3050
 
3051
- #: ../../admin/view/wp-slimstat-reports.php:102
3052
- #: ../../admin/view/wp-slimstat-reports.php:119
3053
  msgid "Recent Countries"
3054
  msgstr ""
3055
 
3056
- #: ../../admin/view/wp-slimstat-reports.php:103
3057
  msgid "Recent Screen Resolutions"
3058
  msgstr ""
3059
 
3060
- #: ../../admin/view/wp-slimstat-reports.php:104
3061
  msgid "Recent Operating Systems"
3062
  msgstr ""
3063
 
3064
- #: ../../admin/view/wp-slimstat-reports.php:105
3065
  msgid "Recent Browsers"
3066
  msgstr ""
3067
 
3068
- #: ../../admin/view/wp-slimstat-reports.php:106
3069
  msgid "Recent Languages"
3070
  msgstr ""
3071
 
3072
- #: ../../admin/view/wp-slimstat-reports.php:107
3073
  msgid "Top Browser Families"
3074
  msgstr ""
3075
 
3076
- #: ../../admin/view/wp-slimstat-reports.php:108
3077
  msgid "Top OS Families"
3078
  msgstr ""
3079
 
3080
- #: ../../admin/view/wp-slimstat-reports.php:109
3081
  msgid "Recent Users"
3082
  msgstr ""
3083
 
3084
- #: ../../admin/view/wp-slimstat-reports.php:110
3085
  msgid "Top Users"
3086
  msgstr ""
3087
 
3088
- #: ../../admin/view/wp-slimstat-reports.php:111
3089
  msgid "Traffic Sources (chart)"
3090
  msgstr ""
3091
 
3092
- #: ../../admin/view/wp-slimstat-reports.php:112
3093
  msgid "Summary"
3094
  msgstr ""
3095
 
3096
- #: ../../admin/view/wp-slimstat-reports.php:116
3097
  msgid "Top Referring Search Engines"
3098
  msgstr ""
3099
 
3100
- #: ../../admin/view/wp-slimstat-reports.php:120
3101
- #: ../../admin/view/wp-slimstat-reports.php:136
3102
  msgid "Top Landing Pages"
3103
  msgstr ""
3104
 
3105
- #: ../../admin/view/wp-slimstat-reports.php:121
3106
  msgid "Average Pageviews per Visit (chart)"
3107
  msgstr ""
3108
 
3109
- #: ../../admin/view/wp-slimstat-reports.php:122
3110
  msgid "Recent Posts"
3111
  msgstr ""
3112
 
3113
- #: ../../admin/view/wp-slimstat-reports.php:123
3114
  msgid "Recent Bounce Pages"
3115
  msgstr ""
3116
 
3117
- #: ../../admin/view/wp-slimstat-reports.php:124
3118
  msgid "Recent Feeds"
3119
  msgstr ""
3120
 
3121
- #: ../../admin/view/wp-slimstat-reports.php:125
3122
  msgid "Recent Pages Not Found"
3123
  msgstr ""
3124
 
3125
- #: ../../admin/view/wp-slimstat-reports.php:126
3126
  msgid "Recent Internal Searches"
3127
  msgstr ""
3128
 
3129
- #: ../../admin/view/wp-slimstat-reports.php:127
3130
  msgid "Top Categories"
3131
  msgstr ""
3132
 
3133
- #: ../../admin/view/wp-slimstat-reports.php:128
3134
  msgid "Recent Outbound Links"
3135
  msgstr ""
3136
 
3137
- #: ../../admin/view/wp-slimstat-reports.php:129
3138
  msgid "Recent Events"
3139
  msgstr ""
3140
 
3141
- #: ../../admin/view/wp-slimstat-reports.php:130
3142
  msgid "Top Posts"
3143
  msgstr ""
3144
 
3145
- #: ../../admin/view/wp-slimstat-reports.php:131
3146
  msgid "Top Feeds"
3147
  msgstr ""
3148
 
3149
- #: ../../admin/view/wp-slimstat-reports.php:132
3150
  msgid "Top Internal Searches"
3151
  msgstr ""
3152
 
3153
- #: ../../admin/view/wp-slimstat-reports.php:134
3154
  msgid "Recent Categories"
3155
  msgstr ""
3156
 
3157
- #: ../../admin/view/wp-slimstat-reports.php:135
3158
  msgid "Top Pages Not Found"
3159
  msgstr ""
3160
 
3161
- #: ../../admin/view/wp-slimstat-reports.php:137
3162
  msgid "Top Authors"
3163
  msgstr ""
3164
 
3165
- #: ../../admin/view/wp-slimstat-reports.php:138
3166
  msgid "Top Tags"
3167
  msgstr ""
3168
 
3169
- #: ../../admin/view/wp-slimstat-reports.php:139
3170
  msgid "Recent Downloads"
3171
  msgstr ""
3172
 
3173
- #: ../../admin/view/wp-slimstat-reports.php:140
3174
  msgid "Top Outbound Links and Downloads"
3175
  msgstr ""
3176
 
3177
- #: ../../admin/view/wp-slimstat-reports.php:141
3178
  msgid "Your Website"
3179
  msgstr ""
3180
 
3181
- #: ../../admin/view/wp-slimstat-reports.php:143
3182
  msgid "Activity Log"
3183
  msgstr ""
3184
 
3185
- #: ../../admin/view/wp-slimstat-reports.php:241
3186
  msgid "Chart controls"
3187
  msgstr ""
3188
 
3189
- #: ../../admin/view/wp-slimstat-reports.php:241
3190
  msgid "Use your mouse wheel to zoom in and out"
3191
  msgstr ""
3192
 
3193
- #: ../../admin/view/wp-slimstat-reports.php:241
3194
  msgid "While zooming in, drag the chart to move to a different area"
3195
  msgstr ""
3196
 
3197
- #: ../../admin/view/wp-slimstat-reports.php:241
3198
  msgid "Double click on an empty region to reset the zoom level"
3199
  msgstr ""
3200
 
3201
- #: ../../admin/view/wp-slimstat-reports.php:242
3202
  msgid ""
3203
  "Click on a data point to display the activity chart for each hour of that day"
3204
  msgstr ""
3205
 
3206
- #: ../../admin/view/wp-slimstat-reports.php:274
3207
  msgid "src"
3208
  msgstr ""
3209
 
3210
- #: ../../admin/view/wp-slimstat-reports.php:275
3211
  msgid "serp"
3212
  msgstr ""
3213
 
3214
- #: ../../admin/view/wp-slimstat-reports.php:280
3215
  msgid "Go to the corresponding search engine result page"
3216
  msgstr ""
3217
 
3218
- #: ../../admin/view/wp-slimstat-reports.php:283
3219
  msgid "Go to the referring page"
3220
  msgstr ""
3221
 
3222
- #: ../../admin/view/wp-slimstat-reports.php:302
3223
  msgid "Remove filter for"
3224
  msgstr ""
3225
 
3226
- #: ../../admin/view/wp-slimstat-reports.php:309
3227
  msgid "Reset All"
3228
  msgstr ""
3229
 
3230
- #: ../../admin/view/wp-slimstat-reports.php:312
3231
  msgid "Current filters:"
3232
  msgstr ""
3233
 
3234
- #: ../../admin/view/wp-slimstat-reports.php:316
3235
  msgid "Refresh"
3236
  msgstr ""
3237
 
3238
- #: ../../admin/view/wp-slimstat-reports.php:353
3239
  #, php-format
3240
  msgid "Results %s - %s of %s"
3241
  msgstr ""
3242
 
3243
- #: ../../admin/view/wp-slimstat-reports.php:355
3244
  msgid "Refresh in"
3245
  msgstr ""
3246
 
3247
- #: ../../admin/view/wp-slimstat-reports.php:377
3248
- #: ../../admin/view/wp-slimstat-reports.php:389
3249
  #, php-format
3250
  msgid "Daily %s"
3251
  msgstr ""
3252
 
3253
- #: ../../admin/view/wp-slimstat-reports.php:380
3254
  #, php-format
3255
  msgid "%s Minute by Minute"
3256
  msgstr ""
3257
 
3258
- #: ../../admin/view/wp-slimstat-reports.php:383
3259
  #, php-format
3260
  msgid "Hourly %s"
3261
  msgstr ""
3262
 
3263
- #: ../../admin/view/wp-slimstat-reports.php:386
3264
  #, php-format
3265
  msgid "Monthly %s"
3266
  msgstr ""
3267
 
3268
- #: ../../admin/view/wp-slimstat-reports.php:465
3269
  msgid "Category ID"
3270
  msgstr ""
3271
 
3272
- #: ../../admin/view/wp-slimstat-reports.php:498
3273
  msgid "OS Code"
3274
  msgstr ""
3275
 
3276
- #: ../../admin/view/wp-slimstat-reports.php:508
3277
  msgid "Referrer"
3278
  msgstr ""
3279
 
3280
- #: ../../admin/view/wp-slimstat-reports.php:532
3281
- #: ../../admin/view/wp-slimstat-reports.php:709
3282
- #: ../../admin/view/wp-slimstat-reports.php:718
3283
- #: ../../admin/view/wp-slimstat-reports.php:724
3284
- #: ../../admin/view/wp-slimstat-reports.php:730
3285
- #: ../../admin/view/wp-slimstat-reports.php:736
3286
- #: ../../admin/view/wp-slimstat-reports.php:742
3287
- #: ../../admin/view/wp-slimstat-reports.php:748
3288
- #: ../../admin/view/wp-slimstat-reports.php:754
3289
  msgid "Hits"
3290
  msgstr ""
3291
 
3292
- #: ../../admin/view/wp-slimstat-reports.php:600
3293
  msgid "Search for"
3294
  msgstr ""
3295
 
3296
- #: ../../admin/view/wp-slimstat-reports.php:631
3297
- #: ../../admin/view/wp-slimstat-reports.php:641
3298
  msgid "Source"
3299
  msgstr ""
3300
 
3301
- #: ../../admin/view/wp-slimstat-reports.php:633
3302
  msgid "Keywords"
3303
  msgstr ""
3304
 
3305
- #: ../../admin/view/wp-slimstat-reports.php:641
3306
  #, php-format
3307
  msgid "Filter results where resource equals %s"
3308
  msgstr ""
3309
 
3310
- #: ../../admin/view/wp-slimstat-reports.php:651
3311
  msgid "Total Pageviews"
3312
  msgstr ""
3313
 
3314
- #: ../../admin/view/wp-slimstat-reports.php:652
3315
  msgid "DB Size"
3316
  msgstr ""
3317
 
3318
- #: ../../admin/view/wp-slimstat-reports.php:653
3319
  msgid "Tracking Active"
3320
  msgstr ""
3321
 
3322
- #: ../../admin/view/wp-slimstat-reports.php:654
3323
  msgid "Javascript Mode"
3324
  msgstr ""
3325
 
3326
- #: ../../admin/view/wp-slimstat-reports.php:655
3327
  msgid "Tracking Browser Caps"
3328
  msgstr ""
3329
 
3330
- #: ../../admin/view/wp-slimstat-reports.php:656
3331
  msgid "Auto purge"
3332
  msgstr ""
3333
 
3334
- #: ../../admin/view/wp-slimstat-reports.php:657
3335
  msgid "Oldest pageview"
3336
  msgstr ""
3337
 
3338
- #: ../../admin/view/wp-slimstat-reports.php:657
3339
  msgid "No visits"
3340
  msgstr ""
3341
 
3342
- #: ../../admin/view/wp-slimstat-reports.php:670
3343
- #: ../../admin/view/wp-slimstat-reports.php:773
3344
  msgid ""
3345
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
3346
  "time the tracking code is executed."
3347
  msgstr ""
3348
 
3349
- #: ../../admin/view/wp-slimstat-reports.php:672
3350
  msgid "How many pages have been visited on average during the current period."
3351
  msgstr ""
3352
 
3353
- #: ../../admin/view/wp-slimstat-reports.php:673
3354
- #: ../../admin/view/wp-slimstat-reports.php:1053
3355
- msgid "Avg Pageviews"
3356
  msgstr ""
3357
 
3358
- #: ../../admin/view/wp-slimstat-reports.php:674
3359
  msgid ""
3360
  "Visitors who landed on your site after searching for a keyword on Google, "
3361
  "Yahoo, etc."
3362
  msgstr ""
3363
 
3364
- #: ../../admin/view/wp-slimstat-reports.php:675
3365
  msgid "From Search Results"
3366
  msgstr ""
3367
 
3368
- #: ../../admin/view/wp-slimstat-reports.php:676
3369
  msgid ""
3370
  "Used to differentiate between multiple requests to download a file from one "
3371
  "internet address (IP) and requests originating from many distinct addresses"
3372
  msgstr ""
3373
 
3374
- #: ../../admin/view/wp-slimstat-reports.php:677
3375
- #: ../../admin/view/wp-slimstat-reports.php:693
3376
- #: ../../admin/view/wp-slimstat-reports.php:1040
3377
- #: ../../admin/view/wp-slimstat-reports.php:1044
3378
- #: ../../admin/view/wp-slimstat-reports.php:1048
3379
  msgid "Unique IPs"
3380
  msgstr ""
3381
 
3382
- #: ../../admin/view/wp-slimstat-reports.php:678
3383
  msgid "Last 5 minutes"
3384
  msgstr ""
3385
 
3386
- #: ../../admin/view/wp-slimstat-reports.php:679
3387
  msgid "Last 30 minutes"
3388
  msgstr ""
3389
 
3390
- #: ../../admin/view/wp-slimstat-reports.php:690
3391
  msgid ""
3392
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3393
  "multiple times if they perform multiple visits."
3394
  msgstr ""
3395
 
3396
- #: ../../admin/view/wp-slimstat-reports.php:691
3397
  msgid "Human visits"
3398
  msgstr ""
3399
 
3400
- #: ../../admin/view/wp-slimstat-reports.php:692
3401
  msgid "It includes only traffic generated by human visitors."
3402
  msgstr ""
3403
 
3404
- #: ../../admin/view/wp-slimstat-reports.php:694
3405
- #: ../../admin/view/wp-slimstat-reports.php:785
3406
  msgid ""
3407
  "Percentage of single-page visits, i.e. visits in which the person left your "
3408
  "site from the entrance page."
3409
  msgstr ""
3410
 
3411
- #: ../../admin/view/wp-slimstat-reports.php:695
3412
  msgid "Bounce rate"
3413
  msgstr ""
3414
 
3415
- #: ../../admin/view/wp-slimstat-reports.php:696
3416
  msgid "Visitors who had previously left a comment on your blog."
3417
  msgstr ""
3418
 
3419
- #: ../../admin/view/wp-slimstat-reports.php:697
3420
  msgid "Known visitors"
3421
  msgstr ""
3422
 
3423
- #: ../../admin/view/wp-slimstat-reports.php:698
3424
  msgid "Human users who visited your site only once."
3425
  msgstr ""
3426
 
3427
- #: ../../admin/view/wp-slimstat-reports.php:699
3428
  msgid "New visitors"
3429
  msgstr ""
3430
 
3431
- #: ../../admin/view/wp-slimstat-reports.php:700
3432
  msgid "Bots"
3433
  msgstr ""
3434
 
3435
- #: ../../admin/view/wp-slimstat-reports.php:701
3436
  msgid "Pages per visit"
3437
  msgstr ""
3438
 
3439
- #: ../../admin/view/wp-slimstat-reports.php:702
3440
- #: ../../admin/view/wp-slimstat-reports.php:1053
3441
  msgid "Longest visit"
3442
  msgstr ""
3443
 
3444
- #: ../../admin/view/wp-slimstat-reports.php:702
3445
  msgid "hits"
3446
  msgstr ""
3447
 
3448
- #: ../../admin/view/wp-slimstat-reports.php:720
3449
  msgid "0 - 30 seconds"
3450
  msgstr ""
3451
 
3452
- #: ../../admin/view/wp-slimstat-reports.php:726
3453
  msgid "31 - 60 seconds"
3454
  msgstr ""
3455
 
3456
- #: ../../admin/view/wp-slimstat-reports.php:732
3457
  msgid "1 - 3 minutes"
3458
  msgstr ""
3459
 
3460
- #: ../../admin/view/wp-slimstat-reports.php:738
3461
  msgid "3 - 5 minutes"
3462
  msgstr ""
3463
 
3464
- #: ../../admin/view/wp-slimstat-reports.php:744
3465
  msgid "5 - 7 minutes"
3466
  msgstr ""
3467
 
3468
- #: ../../admin/view/wp-slimstat-reports.php:750
3469
  msgid "7 - 10 minutes"
3470
  msgstr ""
3471
 
3472
- #: ../../admin/view/wp-slimstat-reports.php:756
3473
  msgid "More than 10 minutes"
3474
  msgstr ""
3475
 
3476
- #: ../../admin/view/wp-slimstat-reports.php:765
3477
  msgid "Average time on site"
3478
  msgstr ""
3479
 
3480
- #: ../../admin/view/wp-slimstat-reports.php:775
3481
  msgid ""
3482
  "A referrer (or referring site) is the site that a visitor previously visited "
3483
  "before following a link to your site."
3484
  msgstr ""
3485
 
3486
- #: ../../admin/view/wp-slimstat-reports.php:776
3487
  msgid "Unique Referrers"
3488
  msgstr ""
3489
 
3490
- #: ../../admin/view/wp-slimstat-reports.php:777
3491
  msgid ""
3492
  "Visitors who visited the site by typing the URL directly into their browser. "
3493
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -3495,21 +3499,21 @@ msgid ""
3495
  "documents that don't include tracking variables."
3496
  msgstr ""
3497
 
3498
- #: ../../admin/view/wp-slimstat-reports.php:778
3499
  msgid "Direct Pageviews"
3500
  msgstr ""
3501
 
3502
- #: ../../admin/view/wp-slimstat-reports.php:779
3503
  msgid ""
3504
  "Visitors who came to your site via searches on Google or some other search "
3505
  "engine."
3506
  msgstr ""
3507
 
3508
- #: ../../admin/view/wp-slimstat-reports.php:780
3509
  msgid "From a search result"
3510
  msgstr ""
3511
 
3512
- #: ../../admin/view/wp-slimstat-reports.php:781
3513
  msgid ""
3514
  "The first page that a user views during a session. This is also known as the "
3515
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -3517,1261 +3521,1269 @@ msgid ""
3517
  "a landing page."
3518
  msgstr ""
3519
 
3520
- #: ../../admin/view/wp-slimstat-reports.php:782
3521
  msgid "Unique Landing Pages"
3522
  msgstr ""
3523
 
3524
- #: ../../admin/view/wp-slimstat-reports.php:783
3525
  msgid "Number of single-page visits to your site over the selected period."
3526
  msgstr ""
3527
 
3528
- #: ../../admin/view/wp-slimstat-reports.php:784
3529
  msgid "Bounce Pages"
3530
  msgstr ""
3531
 
3532
- #: ../../admin/view/wp-slimstat-reports.php:786
3533
  msgid "New Visitors Rate"
3534
  msgstr ""
3535
 
3536
- #: ../../admin/view/wp-slimstat-reports.php:787
3537
  msgid ""
3538
  "Visitors who visited the site in the last 5 minutes coming from a search "
3539
  "engine."
3540
  msgstr ""
3541
 
3542
- #: ../../admin/view/wp-slimstat-reports.php:788
3543
  msgid "Currently from search engines"
3544
  msgstr ""
3545
 
3546
- #: ../../admin/view/wp-slimstat-reports.php:856
3547
  msgid "Number of pages in your site included in Google's index."
3548
  msgstr ""
3549
 
3550
- #: ../../admin/view/wp-slimstat-reports.php:857
3551
  msgid "Google Index"
3552
  msgstr ""
3553
 
3554
- #: ../../admin/view/wp-slimstat-reports.php:858
3555
  msgid "Number of pages, according to Google, that link back to your site."
3556
  msgstr ""
3557
 
3558
- #: ../../admin/view/wp-slimstat-reports.php:859
3559
  msgid "Google Backlinks"
3560
  msgstr ""
3561
 
3562
- #: ../../admin/view/wp-slimstat-reports.php:860
3563
  msgid ""
3564
  "How many times the Facebook Like button has been approximately clicked on "
3565
  "your site."
3566
  msgstr ""
3567
 
3568
- #: ../../admin/view/wp-slimstat-reports.php:861
3569
  msgid "Facebook Likes"
3570
  msgstr ""
3571
 
3572
- #: ../../admin/view/wp-slimstat-reports.php:862
3573
  msgid ""
3574
  "How many times your site has been shared by someone on the social network."
3575
  msgstr ""
3576
 
3577
- #: ../../admin/view/wp-slimstat-reports.php:863
3578
  msgid "Facebook Shares"
3579
  msgstr ""
3580
 
3581
- #: ../../admin/view/wp-slimstat-reports.php:864
3582
  msgid "How many times links to your website have been clicked on Facebook."
3583
  msgstr ""
3584
 
3585
- #: ../../admin/view/wp-slimstat-reports.php:865
3586
  msgid "Facebook Clicks"
3587
  msgstr ""
3588
 
3589
- #: ../../admin/view/wp-slimstat-reports.php:866
3590
  msgid ""
3591
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3592
  "traffic data."
3593
  msgstr ""
3594
 
3595
- #: ../../admin/view/wp-slimstat-reports.php:867
3596
  msgid "Alexa World Rank"
3597
  msgstr ""
3598
 
3599
- #: ../../admin/view/wp-slimstat-reports.php:868
3600
  msgid "Alexa Country Rank"
3601
  msgstr ""
3602
 
3603
- #: ../../admin/view/wp-slimstat-reports.php:869
3604
  msgid "Alexa Popularity"
3605
  msgstr ""
3606
 
3607
- #: ../../admin/view/wp-slimstat-reports.php:882
3608
  msgid "Bing Test"
3609
  msgstr ""
3610
 
3611
- #: ../../admin/view/wp-slimstat-reports.php:883
3612
  msgid "AntiVirus Scan"
3613
  msgstr ""
3614
 
3615
- #: ../../admin/view/wp-slimstat-reports.php:884
3616
  msgid "Google Bot Test"
3617
  msgstr ""
3618
 
3619
- #: ../../admin/view/wp-slimstat-reports.php:885
3620
  msgid "Scan for Hostile Strings"
3621
  msgstr ""
3622
 
3623
- #: ../../admin/view/wp-slimstat-reports.php:886
3624
  msgid "Generic Web Bot test"
3625
  msgstr ""
3626
 
3627
- #: ../../admin/view/wp-slimstat-reports.php:887
3628
  msgid "Google Safe Browsing List"
3629
  msgstr ""
3630
 
3631
- #: ../../admin/view/wp-slimstat-reports.php:888
3632
  msgid "Hostile External Links"
3633
  msgstr ""
3634
 
3635
- #: ../../admin/view/wp-slimstat-reports.php:889
3636
  msgid "Other Treats"
3637
  msgstr ""
3638
 
3639
- #: ../../admin/view/wp-slimstat-reports.php:902
3640
  msgid "Passed"
3641
  msgstr ""
3642
 
3643
- #: ../../admin/view/wp-slimstat-reports.php:902
3644
  msgid "At Risk"
3645
  msgstr ""
3646
 
3647
- #: ../../admin/view/wp-slimstat-reports.php:905
3648
  msgid "Timed Out"
3649
  msgstr ""
3650
 
3651
  # Unknown
3652
- #: ../../admin/view/wp-slimstat-reports.php:919
3653
  msgid "c-xx"
3654
  msgstr "Unknown"
3655
 
3656
  # Afghanistan
3657
- #: ../../admin/view/wp-slimstat-reports.php:919
3658
  msgid "c-af"
3659
  msgstr "Afghanistan"
3660
 
3661
  # Åland Islands
3662
- #: ../../admin/view/wp-slimstat-reports.php:919
3663
  msgid "c-ax"
3664
  msgstr "Aland Islands"
3665
 
3666
  # Albania
3667
- #: ../../admin/view/wp-slimstat-reports.php:919
3668
  msgid "c-al"
3669
  msgstr "Albania"
3670
 
3671
  # Algeria
3672
- #: ../../admin/view/wp-slimstat-reports.php:919
3673
  msgid "c-dz"
3674
  msgstr "Algeria"
3675
 
3676
  # Andorra
3677
- #: ../../admin/view/wp-slimstat-reports.php:919
3678
  msgid "c-ad"
3679
  msgstr "Andorra"
3680
 
3681
  # Angola
3682
- #: ../../admin/view/wp-slimstat-reports.php:919
3683
  msgid "c-ao"
3684
  msgstr "Angola"
3685
 
3686
  # Anguilla
3687
- #: ../../admin/view/wp-slimstat-reports.php:919
3688
  msgid "c-ai"
3689
  msgstr "Anguilla"
3690
 
3691
  # Antigua and Barbuda
3692
- #: ../../admin/view/wp-slimstat-reports.php:919
3693
  msgid "c-ag"
3694
  msgstr "Antigua and Barbuda"
3695
 
3696
  # Argentina
3697
- #: ../../admin/view/wp-slimstat-reports.php:919
3698
  msgid "c-ar"
3699
  msgstr "Argentina"
3700
 
3701
  # Armenia
3702
- #: ../../admin/view/wp-slimstat-reports.php:919
3703
  msgid "c-am"
3704
  msgstr "Armenia"
3705
 
3706
  # Aruba
3707
- #: ../../admin/view/wp-slimstat-reports.php:919
3708
  msgid "c-aw"
3709
  msgstr "Aruba"
3710
 
3711
  # Australia
3712
- #: ../../admin/view/wp-slimstat-reports.php:919
3713
  msgid "c-au"
3714
  msgstr "Australia"
3715
 
3716
  # Austria
3717
- #: ../../admin/view/wp-slimstat-reports.php:919
3718
  msgid "c-at"
3719
  msgstr "Austria"
3720
 
3721
  # Azerbaijan
3722
- #: ../../admin/view/wp-slimstat-reports.php:919
3723
  msgid "c-az"
3724
  msgstr "Azerbaijan"
3725
 
3726
  # Bahamas
3727
- #: ../../admin/view/wp-slimstat-reports.php:919
3728
  msgid "c-bs"
3729
  msgstr "Bahamas"
3730
 
3731
  # Bahrain
3732
- #: ../../admin/view/wp-slimstat-reports.php:919
3733
  msgid "c-bh"
3734
  msgstr "Bahrain"
3735
 
3736
  # Bangladesh
3737
- #: ../../admin/view/wp-slimstat-reports.php:919
3738
  msgid "c-bd"
3739
  msgstr "Bangladesh"
3740
 
3741
  # Barbados
3742
- #: ../../admin/view/wp-slimstat-reports.php:919
3743
  msgid "c-bb"
3744
  msgstr "Barbados"
3745
 
3746
  # Belarus
3747
- #: ../../admin/view/wp-slimstat-reports.php:919
3748
  msgid "c-by"
3749
  msgstr "Belarus"
3750
 
3751
  # Belgium
3752
- #: ../../admin/view/wp-slimstat-reports.php:919
3753
  msgid "c-be"
3754
  msgstr "Belgium"
3755
 
3756
  # Belize
3757
- #: ../../admin/view/wp-slimstat-reports.php:919
3758
  msgid "c-bz"
3759
  msgstr "Belize"
3760
 
3761
  # Benin
3762
- #: ../../admin/view/wp-slimstat-reports.php:919
3763
  msgid "c-bj"
3764
  msgstr "Benin"
3765
 
3766
  # Bermuda
3767
- #: ../../admin/view/wp-slimstat-reports.php:919
3768
  msgid "c-bm"
3769
  msgstr "Bermuda"
3770
 
3771
  # Bhutan
3772
- #: ../../admin/view/wp-slimstat-reports.php:919
3773
  msgid "c-bt"
3774
  msgstr "Bhutan"
3775
 
3776
  # Bolivia
3777
- #: ../../admin/view/wp-slimstat-reports.php:919
3778
  msgid "c-bo"
3779
  msgstr "Bolivia"
3780
 
3781
  # Bosnia and Herzegovina
3782
- #: ../../admin/view/wp-slimstat-reports.php:919
3783
  msgid "c-ba"
3784
  msgstr "Bosnia and Herzegovina"
3785
 
3786
  # Botswana
3787
- #: ../../admin/view/wp-slimstat-reports.php:919
3788
  msgid "c-bw"
3789
  msgstr "Botswana"
3790
 
3791
  # Brazil
3792
- #: ../../admin/view/wp-slimstat-reports.php:919
3793
  msgid "c-br"
3794
  msgstr "Brazil"
3795
 
3796
  # Brunei Darussalam
3797
- #: ../../admin/view/wp-slimstat-reports.php:919
3798
  msgid "c-bn"
3799
  msgstr "Brunei Darussalam"
3800
 
3801
  # Bulgaria
3802
- #: ../../admin/view/wp-slimstat-reports.php:919
3803
  msgid "c-bg"
3804
  msgstr "Bulgaria"
3805
 
3806
  # Burkina Faso
3807
- #: ../../admin/view/wp-slimstat-reports.php:919
3808
  msgid "c-bf"
3809
  msgstr "Burkina Faso"
3810
 
3811
  # Burundi
3812
- #: ../../admin/view/wp-slimstat-reports.php:919
3813
  msgid "c-bi"
3814
  msgstr "Burundi"
3815
 
3816
  # Cambodia
3817
- #: ../../admin/view/wp-slimstat-reports.php:919
3818
  msgid "c-kh"
3819
  msgstr "Cambodia"
3820
 
3821
  # Cameroon
3822
- #: ../../admin/view/wp-slimstat-reports.php:919
3823
  msgid "c-cm"
3824
  msgstr "Cameroon"
3825
 
3826
  # Canada
3827
- #: ../../admin/view/wp-slimstat-reports.php:919
3828
  msgid "c-ca"
3829
  msgstr "Canada"
3830
 
3831
  # Cape Verde
3832
- #: ../../admin/view/wp-slimstat-reports.php:919
3833
  msgid "c-cv"
3834
  msgstr "Cape Verde"
3835
 
3836
  # Cayman Islands
3837
- #: ../../admin/view/wp-slimstat-reports.php:919
3838
  msgid "c-ky"
3839
  msgstr "Cayman Islands"
3840
 
3841
  # Central African Republic
3842
- #: ../../admin/view/wp-slimstat-reports.php:919
3843
  msgid "c-cf"
3844
  msgstr "Central African Republic"
3845
 
3846
  # Chad
3847
- #: ../../admin/view/wp-slimstat-reports.php:919
3848
  msgid "c-td"
3849
  msgstr "Chad"
3850
 
3851
  # Chile
3852
- #: ../../admin/view/wp-slimstat-reports.php:919
3853
  msgid "c-cl"
3854
  msgstr "Chile"
3855
 
3856
  # China
3857
- #: ../../admin/view/wp-slimstat-reports.php:919
3858
  msgid "c-cn"
3859
  msgstr "China"
3860
 
3861
  # Colombia
3862
- #: ../../admin/view/wp-slimstat-reports.php:919
3863
  msgid "c-co"
3864
  msgstr "Colombia"
3865
 
3866
  # Comoros
3867
- #: ../../admin/view/wp-slimstat-reports.php:919
3868
  msgid "c-km"
3869
  msgstr "Comoros"
3870
 
3871
  # Congo
3872
- #: ../../admin/view/wp-slimstat-reports.php:919
3873
  msgid "c-cg"
3874
  msgstr "Congo"
3875
 
3876
  # The Democratic Republic of the Congo
3877
- #: ../../admin/view/wp-slimstat-reports.php:919
3878
  msgid "c-cd"
3879
  msgstr "The Democratic Republic of the Congo"
3880
 
3881
  # Costa Rica
3882
- #: ../../admin/view/wp-slimstat-reports.php:919
3883
  msgid "c-cr"
3884
  msgstr "Costa Rica"
3885
 
3886
  # Côte d'Ivoire
3887
- #: ../../admin/view/wp-slimstat-reports.php:919
3888
  msgid "c-ci"
3889
  msgstr "Côte d'Ivoire"
3890
 
3891
  # Croatia
3892
- #: ../../admin/view/wp-slimstat-reports.php:919
3893
  msgid "c-hr"
3894
  msgstr "Croatia"
3895
 
3896
  # Cuba
3897
- #: ../../admin/view/wp-slimstat-reports.php:919
3898
  msgid "c-cu"
3899
  msgstr "Cuba"
3900
 
3901
  # Cyprus
3902
- #: ../../admin/view/wp-slimstat-reports.php:919
3903
  msgid "c-cy"
3904
  msgstr "Cyprus"
3905
 
3906
  # Czech Republic
3907
- #: ../../admin/view/wp-slimstat-reports.php:919
3908
  msgid "c-cz"
3909
  msgstr "Czech Republic"
3910
 
3911
  # Denmark
3912
- #: ../../admin/view/wp-slimstat-reports.php:919
3913
  msgid "c-dk"
3914
  msgstr "Denmark"
3915
 
3916
  # Djibouti
3917
- #: ../../admin/view/wp-slimstat-reports.php:919
3918
  msgid "c-dj"
3919
  msgstr "Djibouti"
3920
 
3921
  # Dominica
3922
- #: ../../admin/view/wp-slimstat-reports.php:919
3923
  msgid "c-dm"
3924
  msgstr "Dominica"
3925
 
3926
  # Dominican Republic
3927
- #: ../../admin/view/wp-slimstat-reports.php:919
3928
  msgid "c-do"
3929
  msgstr "Dominican Republic"
3930
 
3931
  # Ecuador
3932
- #: ../../admin/view/wp-slimstat-reports.php:919
3933
  msgid "c-ec"
3934
  msgstr "Ecuador"
3935
 
3936
  # Egypt
3937
- #: ../../admin/view/wp-slimstat-reports.php:919
3938
  msgid "c-eg"
3939
  msgstr "Egypt"
3940
 
3941
  # El Salvador
3942
- #: ../../admin/view/wp-slimstat-reports.php:919
3943
  msgid "c-sv"
3944
  msgstr "El Salvador"
3945
 
3946
  # Equatorial Guinea
3947
- #: ../../admin/view/wp-slimstat-reports.php:919
3948
  msgid "c-gq"
3949
  msgstr "Equatorial Guinea"
3950
 
3951
  # Eritrea
3952
- #: ../../admin/view/wp-slimstat-reports.php:919
3953
  msgid "c-er"
3954
  msgstr "Eritrea"
3955
 
3956
  # Estonia
3957
- #: ../../admin/view/wp-slimstat-reports.php:919
3958
  msgid "c-ee"
3959
  msgstr "Estonia"
3960
 
3961
  # Ethiopia
3962
- #: ../../admin/view/wp-slimstat-reports.php:919
3963
  msgid "c-et"
3964
  msgstr "Ethiopia"
3965
 
3966
  # Faroe Islands
3967
- #: ../../admin/view/wp-slimstat-reports.php:919
3968
  msgid "c-fo"
3969
  msgstr "Faroe Islands"
3970
 
3971
  # Falkland Islands (Malvinas)
3972
- #: ../../admin/view/wp-slimstat-reports.php:919
3973
  msgid "c-fk"
3974
  msgstr "Falkland Islands (Malvinas)"
3975
 
3976
  # Fiji
3977
- #: ../../admin/view/wp-slimstat-reports.php:919
3978
  msgid "c-fj"
3979
  msgstr "Fiji"
3980
 
3981
  # Finland
3982
- #: ../../admin/view/wp-slimstat-reports.php:919
3983
  msgid "c-fi"
3984
  msgstr "Finland"
3985
 
3986
  # France
3987
- #: ../../admin/view/wp-slimstat-reports.php:919
3988
  msgid "c-fr"
3989
  msgstr "France"
3990
 
3991
  # French Guiana
3992
- #: ../../admin/view/wp-slimstat-reports.php:919
3993
  msgid "c-gf"
3994
  msgstr "French Guiana"
3995
 
3996
  # Gabon
3997
- #: ../../admin/view/wp-slimstat-reports.php:919
3998
  msgid "c-ga"
3999
  msgstr "Gabon"
4000
 
4001
  # Gambia
4002
- #: ../../admin/view/wp-slimstat-reports.php:919
4003
  msgid "c-gm"
4004
  msgstr "Gambia"
4005
 
4006
  # Georgia
4007
- #: ../../admin/view/wp-slimstat-reports.php:919
4008
  msgid "c-ge"
4009
  msgstr "Georgia"
4010
 
4011
  # Germany
4012
- #: ../../admin/view/wp-slimstat-reports.php:919
4013
  msgid "c-de"
4014
  msgstr "Germany"
4015
 
4016
  # Ghana
4017
- #: ../../admin/view/wp-slimstat-reports.php:919
4018
  msgid "c-gh"
4019
  msgstr "Ghana"
4020
 
4021
  # Greece
4022
- #: ../../admin/view/wp-slimstat-reports.php:919
4023
  msgid "c-gr"
4024
  msgstr "Greece"
4025
 
4026
  # Greenland
4027
- #: ../../admin/view/wp-slimstat-reports.php:919
4028
  msgid "c-gl"
4029
  msgstr "Greenland"
4030
 
4031
  # Grenada
4032
- #: ../../admin/view/wp-slimstat-reports.php:919
4033
  msgid "c-gd"
4034
  msgstr "Grenada"
4035
 
4036
  # Guadeloupe
4037
- #: ../../admin/view/wp-slimstat-reports.php:919
4038
  msgid "c-gp"
4039
  msgstr "Guadeloupe"
4040
 
4041
  # Guatemala
4042
- #: ../../admin/view/wp-slimstat-reports.php:919
4043
  msgid "c-gt"
4044
  msgstr "Guatemala"
4045
 
4046
  # Guinea
4047
- #: ../../admin/view/wp-slimstat-reports.php:919
4048
  msgid "c-gn"
4049
  msgstr "Guinea"
4050
 
4051
  # Guinea-Bissau
4052
- #: ../../admin/view/wp-slimstat-reports.php:919
4053
  msgid "c-gw"
4054
  msgstr "Guinea-Bissau"
4055
 
4056
  # Guyana
4057
- #: ../../admin/view/wp-slimstat-reports.php:919
4058
  msgid "c-gy"
4059
  msgstr "Guyana"
4060
 
4061
  # Haiti
4062
- #: ../../admin/view/wp-slimstat-reports.php:919
4063
  msgid "c-ht"
4064
  msgstr "Haiti"
4065
 
4066
  # Honduras
4067
- #: ../../admin/view/wp-slimstat-reports.php:919
4068
  msgid "c-hn"
4069
  msgstr "Honduras"
4070
 
4071
  # Hong Kong
4072
- #: ../../admin/view/wp-slimstat-reports.php:919
4073
  msgid "c-hk"
4074
  msgstr "Hong Kong"
4075
 
4076
  # Hungary
4077
- #: ../../admin/view/wp-slimstat-reports.php:919
4078
  msgid "c-hu"
4079
  msgstr "Hungary"
4080
 
4081
  # Iceland
4082
- #: ../../admin/view/wp-slimstat-reports.php:919
4083
  msgid "c-is"
4084
  msgstr "Iceland"
4085
 
4086
  # India
4087
- #: ../../admin/view/wp-slimstat-reports.php:919
4088
  msgid "c-in"
4089
  msgstr "India"
4090
 
4091
  # Indonesia
4092
- #: ../../admin/view/wp-slimstat-reports.php:919
4093
  msgid "c-id"
4094
  msgstr "Indonesia"
4095
 
4096
  # Islamic Republic of Iran
4097
- #: ../../admin/view/wp-slimstat-reports.php:919
4098
  msgid "c-ir"
4099
  msgstr "Islamic Republic of Iran"
4100
 
4101
  # Iraq
4102
- #: ../../admin/view/wp-slimstat-reports.php:919
4103
  msgid "c-iq"
4104
  msgstr "Iraq"
4105
 
4106
  # Ireland
4107
- #: ../../admin/view/wp-slimstat-reports.php:919
4108
  msgid "c-ie"
4109
  msgstr "Ireland"
4110
 
4111
  # Israel
4112
- #: ../../admin/view/wp-slimstat-reports.php:919
4113
  msgid "c-il"
4114
  msgstr "Israel"
4115
 
4116
  # Italy
4117
- #: ../../admin/view/wp-slimstat-reports.php:919
4118
  msgid "c-it"
4119
  msgstr "Italy"
4120
 
4121
  # Jamaica
4122
- #: ../../admin/view/wp-slimstat-reports.php:919
4123
  msgid "c-jm"
4124
  msgstr "Jamaica"
4125
 
4126
  # Japan
4127
- #: ../../admin/view/wp-slimstat-reports.php:919
4128
  msgid "c-jp"
4129
  msgstr "Japan"
4130
 
4131
  # Jordan
4132
- #: ../../admin/view/wp-slimstat-reports.php:919
4133
  msgid "c-jo"
4134
  msgstr "Jordan"
4135
 
4136
  # Kazakhstan
4137
- #: ../../admin/view/wp-slimstat-reports.php:919
4138
  msgid "c-kz"
4139
  msgstr "Kazakhstan"
4140
 
4141
  # Kenya
4142
- #: ../../admin/view/wp-slimstat-reports.php:919
4143
  msgid "c-ke"
4144
  msgstr "Kenya"
4145
 
4146
  # Nauru
4147
- #: ../../admin/view/wp-slimstat-reports.php:919
4148
  msgid "c-nr"
4149
  msgstr "Nauru"
4150
 
4151
  # Democratic People's Republic of Korea
4152
- #: ../../admin/view/wp-slimstat-reports.php:919
4153
  msgid "c-kp"
4154
  msgstr "Democratic People's Republic of Korea"
4155
 
4156
  # Republic of Korea
4157
- #: ../../admin/view/wp-slimstat-reports.php:919
4158
  msgid "c-kr"
4159
  msgstr "Republic of Korea"
4160
 
4161
- #: ../../admin/view/wp-slimstat-reports.php:919
4162
  msgid "c-kv"
4163
  msgstr "Kosovo"
4164
 
4165
  # Kuwait
4166
- #: ../../admin/view/wp-slimstat-reports.php:919
4167
  msgid "c-kw"
4168
  msgstr "Kuwait"
4169
 
4170
  # Kyrgyzstan
4171
- #: ../../admin/view/wp-slimstat-reports.php:919
4172
  msgid "c-kg"
4173
  msgstr "Kyrgyzstan"
4174
 
4175
  # Lao People's Democratic Republic
4176
- #: ../../admin/view/wp-slimstat-reports.php:919
4177
  msgid "c-la"
4178
  msgstr "Lao People's Democratic Republic"
4179
 
4180
  # Latvia
4181
- #: ../../admin/view/wp-slimstat-reports.php:919
4182
  msgid "c-lv"
4183
  msgstr "Latvia"
4184
 
4185
  # Lebanon
4186
- #: ../../admin/view/wp-slimstat-reports.php:919
4187
  msgid "c-lb"
4188
  msgstr "Lebanon"
4189
 
4190
  # Lesotho
4191
- #: ../../admin/view/wp-slimstat-reports.php:919
4192
  msgid "c-ls"
4193
  msgstr "Lesotho"
4194
 
4195
  # Liberia
4196
- #: ../../admin/view/wp-slimstat-reports.php:919
4197
  msgid "c-lr"
4198
  msgstr "Liberia"
4199
 
4200
  # Libyan Arab Jamahiriya
4201
- #: ../../admin/view/wp-slimstat-reports.php:919
4202
  msgid "c-ly"
4203
  msgstr "Libyan Arab Jamahiriya"
4204
 
4205
  # Liechtenstein
4206
- #: ../../admin/view/wp-slimstat-reports.php:919
4207
  msgid "c-li"
4208
  msgstr "Liechtenstein"
4209
 
4210
  # Lithuania
4211
- #: ../../admin/view/wp-slimstat-reports.php:919
4212
  msgid "c-lt"
4213
  msgstr "Lithuania"
4214
 
4215
  # Luxembourg
4216
- #: ../../admin/view/wp-slimstat-reports.php:919
4217
  msgid "c-lu"
4218
  msgstr "Luxembourg"
4219
 
4220
  # The Former Yugoslav Republic of Macedonia
4221
- #: ../../admin/view/wp-slimstat-reports.php:919
4222
  msgid "c-mk"
4223
  msgstr "The Former Yugoslav Republic of Macedonia"
4224
 
4225
  # Madagascar
4226
- #: ../../admin/view/wp-slimstat-reports.php:919
4227
  msgid "c-mg"
4228
  msgstr "Madagascar"
4229
 
4230
  # Malawi
4231
- #: ../../admin/view/wp-slimstat-reports.php:919
4232
  msgid "c-mw"
4233
  msgstr "Malawi"
4234
 
4235
  # Malaysia
4236
- #: ../../admin/view/wp-slimstat-reports.php:919
4237
  msgid "c-my"
4238
  msgstr "Malaysia"
4239
 
4240
  # Mali
4241
- #: ../../admin/view/wp-slimstat-reports.php:919
4242
  msgid "c-ml"
4243
  msgstr "Mali"
4244
 
4245
  # Malta
4246
- #: ../../admin/view/wp-slimstat-reports.php:919
4247
  msgid "c-mt"
4248
  msgstr "Malta"
4249
 
4250
  # Martinique
4251
- #: ../../admin/view/wp-slimstat-reports.php:919
4252
  msgid "c-mq"
4253
  msgstr "Martinique"
4254
 
4255
  # Mauritania
4256
- #: ../../admin/view/wp-slimstat-reports.php:919
4257
  msgid "c-mr"
4258
  msgstr "Mauritania"
4259
 
4260
  # Mauritius
4261
- #: ../../admin/view/wp-slimstat-reports.php:919
4262
  msgid "c-mu"
4263
  msgstr "Mauritius"
4264
 
4265
  # Mexico
4266
- #: ../../admin/view/wp-slimstat-reports.php:919
4267
  msgid "c-mx"
4268
  msgstr "Mexico"
4269
 
4270
  # Moldova
4271
- #: ../../admin/view/wp-slimstat-reports.php:919
4272
  msgid "c-md"
4273
  msgstr "Moldova"
4274
 
4275
  # Mongolia
4276
- #: ../../admin/view/wp-slimstat-reports.php:919
4277
  msgid "c-mn"
4278
  msgstr "Mongolia"
4279
 
4280
  # Montenegro
4281
- #: ../../admin/view/wp-slimstat-reports.php:919
4282
  msgid "c-me"
4283
  msgstr "Montenegro"
4284
 
4285
  # Montserrat
4286
- #: ../../admin/view/wp-slimstat-reports.php:919
4287
  msgid "c-ms"
4288
  msgstr "Montserrat"
4289
 
4290
  # Morocco
4291
- #: ../../admin/view/wp-slimstat-reports.php:919
4292
  msgid "c-ma"
4293
  msgstr "Morocco"
4294
 
4295
  # Mozambique
4296
- #: ../../admin/view/wp-slimstat-reports.php:919
4297
  msgid "c-mz"
4298
  msgstr "Mozambique"
4299
 
4300
  # Myanmar
4301
- #: ../../admin/view/wp-slimstat-reports.php:919
4302
  msgid "c-mm"
4303
  msgstr "Myanmar"
4304
 
4305
  # Namibia
4306
- #: ../../admin/view/wp-slimstat-reports.php:919
4307
  msgid "c-na"
4308
  msgstr "Namibia"
4309
 
4310
  # Nepal
4311
- #: ../../admin/view/wp-slimstat-reports.php:919
4312
  msgid "c-np"
4313
  msgstr "Nepal"
4314
 
4315
  # Netherlands
4316
- #: ../../admin/view/wp-slimstat-reports.php:919
4317
  msgid "c-nl"
4318
  msgstr "Netherlands"
4319
 
4320
  # New Caledonia
4321
- #: ../../admin/view/wp-slimstat-reports.php:919
4322
  msgid "c-nc"
4323
  msgstr "New Caledonia"
4324
 
4325
  # New Zealand
4326
- #: ../../admin/view/wp-slimstat-reports.php:919
4327
  msgid "c-nz"
4328
  msgstr "New Zealand"
4329
 
4330
  # Nicaragua
4331
- #: ../../admin/view/wp-slimstat-reports.php:919
4332
  msgid "c-ni"
4333
  msgstr "Nicaragua"
4334
 
4335
  # Niger
4336
- #: ../../admin/view/wp-slimstat-reports.php:919
4337
  msgid "c-ne"
4338
  msgstr "Niger"
4339
 
4340
  # Nigeria
4341
- #: ../../admin/view/wp-slimstat-reports.php:919
4342
  msgid "c-ng"
4343
  msgstr "Nigeria"
4344
 
4345
  # Norway
4346
- #: ../../admin/view/wp-slimstat-reports.php:919
4347
  msgid "c-no"
4348
  msgstr "Norway"
4349
 
4350
  # Oman
4351
- #: ../../admin/view/wp-slimstat-reports.php:919
4352
  msgid "c-om"
4353
  msgstr "Oman"
4354
 
4355
  # Pakistan
4356
- #: ../../admin/view/wp-slimstat-reports.php:919
4357
  msgid "c-pk"
4358
  msgstr "Pakistan"
4359
 
4360
  # Palau
4361
- #: ../../admin/view/wp-slimstat-reports.php:919
4362
  msgid "c-pw"
4363
  msgstr "Palau"
4364
 
4365
  # Occupied Palestinian Territory
4366
- #: ../../admin/view/wp-slimstat-reports.php:919
4367
  msgid "c-ps"
4368
  msgstr "Occupied Palestinian Territory"
4369
 
4370
  # Panama
4371
- #: ../../admin/view/wp-slimstat-reports.php:919
4372
  msgid "c-pa"
4373
  msgstr "Panama"
4374
 
4375
  # Papua New Guinea
4376
- #: ../../admin/view/wp-slimstat-reports.php:919
4377
  msgid "c-pg"
4378
  msgstr "Papua New Guinea"
4379
 
4380
  # Paraguay
4381
- #: ../../admin/view/wp-slimstat-reports.php:919
4382
  msgid "c-py"
4383
  msgstr "Paraguay"
4384
 
4385
  # Peru
4386
- #: ../../admin/view/wp-slimstat-reports.php:919
4387
  msgid "c-pe"
4388
  msgstr "Peru"
4389
 
4390
  # Philippines
4391
- #: ../../admin/view/wp-slimstat-reports.php:919
4392
  msgid "c-ph"
4393
  msgstr "Philippines"
4394
 
4395
  # Poland
4396
- #: ../../admin/view/wp-slimstat-reports.php:919
4397
  msgid "c-pl"
4398
  msgstr "Poland"
4399
 
4400
  # Portugal
4401
- #: ../../admin/view/wp-slimstat-reports.php:919
4402
  msgid "c-pt"
4403
  msgstr "Portugal"
4404
 
4405
  # Puerto Rico
4406
- #: ../../admin/view/wp-slimstat-reports.php:919
4407
  msgid "c-pr"
4408
  msgstr "Puerto Rico"
4409
 
4410
  # Qatar
4411
- #: ../../admin/view/wp-slimstat-reports.php:919
4412
  msgid "c-qa"
4413
  msgstr "Qatar"
4414
 
4415
  # Réunion
4416
- #: ../../admin/view/wp-slimstat-reports.php:919
4417
  msgid "c-re"
4418
  msgstr "Réunion"
4419
 
4420
  # Romania
4421
- #: ../../admin/view/wp-slimstat-reports.php:919
4422
  msgid "c-ro"
4423
  msgstr "Romania"
4424
 
4425
  # Russian Federation
4426
- #: ../../admin/view/wp-slimstat-reports.php:919
4427
  msgid "c-ru"
4428
  msgstr "Russian Federation"
4429
 
4430
  # Rwanda
4431
- #: ../../admin/view/wp-slimstat-reports.php:919
4432
  msgid "c-rw"
4433
  msgstr "Rwanda"
4434
 
4435
  # Saint Kitts and Nevis
4436
- #: ../../admin/view/wp-slimstat-reports.php:919
4437
  msgid "c-kn"
4438
  msgstr "Saint Kitts and Nevis"
4439
 
4440
  # Saint Lucia
4441
- #: ../../admin/view/wp-slimstat-reports.php:919
4442
  msgid "c-lc"
4443
  msgstr "Saint Lucia"
4444
 
4445
  # Saint Martin
4446
- #: ../../admin/view/wp-slimstat-reports.php:919
4447
  msgid "c-mf"
4448
  msgstr "Saint Martin"
4449
 
4450
  # Saint Vincent and the Grenadines
4451
- #: ../../admin/view/wp-slimstat-reports.php:919
4452
  msgid "c-vc"
4453
  msgstr "Saint Vincent and the Grenadines"
4454
 
4455
  # Samoa
4456
- #: ../../admin/view/wp-slimstat-reports.php:919
4457
  msgid "c-ws"
4458
  msgstr "Samoa"
4459
 
4460
  # Sao Tome and Principe
4461
- #: ../../admin/view/wp-slimstat-reports.php:919
4462
  msgid "c-st"
4463
  msgstr "Sao Tome and Principe"
4464
 
4465
  # Saudi Arabia
4466
- #: ../../admin/view/wp-slimstat-reports.php:919
4467
  msgid "c-sa"
4468
  msgstr "Saudi Arabia"
4469
 
4470
  # Senegal
4471
- #: ../../admin/view/wp-slimstat-reports.php:919
4472
  msgid "c-sn"
4473
  msgstr "Senegal"
4474
 
4475
  # Serbia
4476
- #: ../../admin/view/wp-slimstat-reports.php:919
4477
  msgid "c-rs"
4478
  msgstr "Serbia"
4479
 
4480
  # Sierra Leone
4481
- #: ../../admin/view/wp-slimstat-reports.php:919
4482
  msgid "c-sl"
4483
  msgstr "Sierra Leone"
4484
 
4485
  # Singapore
4486
- #: ../../admin/view/wp-slimstat-reports.php:919
4487
  msgid "c-sg"
4488
  msgstr "Singapore"
4489
 
4490
  # Slovakia
4491
- #: ../../admin/view/wp-slimstat-reports.php:919
4492
  msgid "c-sk"
4493
  msgstr "Slovakia"
4494
 
4495
  # Slovenia
4496
- #: ../../admin/view/wp-slimstat-reports.php:919
4497
  msgid "c-si"
4498
  msgstr "Slovenia"
4499
 
4500
  # Solomon Islands
4501
- #: ../../admin/view/wp-slimstat-reports.php:919
4502
  msgid "c-sb"
4503
  msgstr "Solomon Islands"
4504
 
4505
  # Somalia
4506
- #: ../../admin/view/wp-slimstat-reports.php:919
4507
  msgid "c-so"
4508
  msgstr "Somalia"
4509
 
4510
  # South Africa
4511
- #: ../../admin/view/wp-slimstat-reports.php:919
4512
  msgid "c-za"
4513
  msgstr "South Africa"
4514
 
4515
  # South Georgia and the South Sandwich Islands
4516
- #: ../../admin/view/wp-slimstat-reports.php:919
4517
  msgid "c-gs"
4518
  msgstr "South Georgia and the South Sandwich Islands"
4519
 
4520
  # Spain
4521
- #: ../../admin/view/wp-slimstat-reports.php:919
4522
  msgid "c-es"
4523
  msgstr "Spain"
4524
 
4525
  # Sri Lanka
4526
- #: ../../admin/view/wp-slimstat-reports.php:919
4527
  msgid "c-lk"
4528
  msgstr "Sri Lanka"
4529
 
 
 
 
 
4530
  # Sudan
4531
- #: ../../admin/view/wp-slimstat-reports.php:919
4532
  msgid "c-sd"
4533
  msgstr "Sudan"
4534
 
4535
- #: ../../admin/view/wp-slimstat-reports.php:919
4536
  msgid "c-ss"
4537
  msgstr "South Sudan"
4538
 
4539
  # Suriname
4540
- #: ../../admin/view/wp-slimstat-reports.php:919
4541
  msgid "c-sr"
4542
  msgstr "Suriname"
4543
 
4544
  # Svalbard and Jan Mayen
4545
- #: ../../admin/view/wp-slimstat-reports.php:919
4546
  msgid "c-sj"
4547
  msgstr "Svalbard and Jan Mayen"
4548
 
4549
  # Swaziland
4550
- #: ../../admin/view/wp-slimstat-reports.php:919
4551
  msgid "c-sz"
4552
  msgstr "Swaziland"
4553
 
4554
  # Sweden
4555
- #: ../../admin/view/wp-slimstat-reports.php:919
4556
  msgid "c-se"
4557
  msgstr "Sweden"
4558
 
4559
  # Switzerland
4560
- #: ../../admin/view/wp-slimstat-reports.php:919
4561
  msgid "c-ch"
4562
  msgstr "Switzerland"
4563
 
4564
  # Syrian Arab Republic
4565
- #: ../../admin/view/wp-slimstat-reports.php:919
4566
  msgid "c-sy"
4567
  msgstr "Syrian Arab Republic"
4568
 
4569
  # Taiwan, Province of China
4570
- #: ../../admin/view/wp-slimstat-reports.php:919
4571
  msgid "c-tw"
4572
  msgstr "Taiwan"
4573
 
4574
  # Tajikistan
4575
- #: ../../admin/view/wp-slimstat-reports.php:919
4576
  msgid "c-tj"
4577
  msgstr "Tajikistan"
4578
 
4579
  # United Republic of Tanzania
4580
- #: ../../admin/view/wp-slimstat-reports.php:919
4581
  msgid "c-tz"
4582
  msgstr "United Republic of Tanzania"
4583
 
4584
  # Thailand
4585
- #: ../../admin/view/wp-slimstat-reports.php:919
4586
  msgid "c-th"
4587
  msgstr "Thailand"
4588
 
4589
  # Timor-Leste
4590
- #: ../../admin/view/wp-slimstat-reports.php:919
4591
  msgid "c-tl"
4592
  msgstr "Timor-Leste"
4593
 
4594
  # Togo
4595
- #: ../../admin/view/wp-slimstat-reports.php:919
4596
  msgid "c-tg"
4597
  msgstr "Togo"
4598
 
4599
  # Tonga
4600
- #: ../../admin/view/wp-slimstat-reports.php:919
4601
  msgid "c-to"
4602
  msgstr "Tonga"
4603
 
4604
  # Trinidad and Tobago
4605
- #: ../../admin/view/wp-slimstat-reports.php:919
4606
  msgid "c-tt"
4607
  msgstr "Trinidad and Tobago"
4608
 
4609
  # Tunisia
4610
- #: ../../admin/view/wp-slimstat-reports.php:919
4611
  msgid "c-tn"
4612
  msgstr "Tunisia"
4613
 
4614
  # Turkey
4615
- #: ../../admin/view/wp-slimstat-reports.php:919
4616
  msgid "c-tr"
4617
  msgstr "Turkey"
4618
 
4619
  # Turkmenistan
4620
- #: ../../admin/view/wp-slimstat-reports.php:919
4621
  msgid "c-tm"
4622
  msgstr "Turkmenistan"
4623
 
4624
  # Turks and Caicos Islands
4625
- #: ../../admin/view/wp-slimstat-reports.php:919
4626
  msgid "c-tc"
4627
  msgstr "Turks and Caicos Islands"
4628
 
4629
  # Uganda
4630
- #: ../../admin/view/wp-slimstat-reports.php:919
4631
  msgid "c-ug"
4632
  msgstr "Uganda"
4633
 
4634
  # Ukraine
4635
- #: ../../admin/view/wp-slimstat-reports.php:919
4636
  msgid "c-ua"
4637
  msgstr "Ukraine"
4638
 
4639
  # United Arab Emirates
4640
- #: ../../admin/view/wp-slimstat-reports.php:919
4641
  msgid "c-ae"
4642
  msgstr "United Arab Emirates"
4643
 
4644
  # United Kingdom
4645
- #: ../../admin/view/wp-slimstat-reports.php:919
4646
  msgid "c-gb"
4647
  msgstr "United Kingdom"
4648
 
4649
  # United States
4650
- #: ../../admin/view/wp-slimstat-reports.php:919
4651
  msgid "c-us"
4652
  msgstr "United States"
4653
 
4654
  # Uruguay
4655
- #: ../../admin/view/wp-slimstat-reports.php:919
4656
  msgid "c-uy"
4657
  msgstr "Uruguay"
4658
 
4659
  # Uzbekistan
4660
- #: ../../admin/view/wp-slimstat-reports.php:919
4661
  msgid "c-uz"
4662
  msgstr "Uzbekistan"
4663
 
4664
  # Vanuatu
4665
- #: ../../admin/view/wp-slimstat-reports.php:919
4666
  msgid "c-vu"
4667
  msgstr "Vanuatu"
4668
 
4669
  # Venezuela
4670
- #: ../../admin/view/wp-slimstat-reports.php:919
4671
  msgid "c-ve"
4672
  msgstr "Venezuela"
4673
 
4674
  # Viet Nam
4675
- #: ../../admin/view/wp-slimstat-reports.php:919
4676
  msgid "c-vn"
4677
  msgstr "Viet Nam"
4678
 
4679
  # British Virgin Islands
4680
- #: ../../admin/view/wp-slimstat-reports.php:919
4681
  msgid "c-vg"
4682
  msgstr "British Virgin Islands"
4683
 
4684
  # U.S. Virgin Islands
4685
- #: ../../admin/view/wp-slimstat-reports.php:919
4686
  msgid "c-vi"
4687
  msgstr "U.S. Virgin Islands"
4688
 
4689
  # Western Sahara
4690
- #: ../../admin/view/wp-slimstat-reports.php:919
4691
  msgid "c-eh"
4692
  msgstr "Western Sahara"
4693
 
4694
  # Yemen
4695
- #: ../../admin/view/wp-slimstat-reports.php:919
4696
  msgid "c-ye"
4697
  msgstr "Yemen"
4698
 
4699
  # Zambia
4700
- #: ../../admin/view/wp-slimstat-reports.php:919
4701
  msgid "c-zm"
4702
  msgstr "Zambia"
4703
 
4704
  # Zimbabwe
4705
- #: ../../admin/view/wp-slimstat-reports.php:919
4706
  msgid "c-zw"
4707
  msgstr "Zimbabwe"
4708
 
4709
  # Guernsey
4710
- #: ../../admin/view/wp-slimstat-reports.php:919
4711
  msgid "c-gg"
4712
  msgstr "Guernsey"
4713
 
4714
  # Jersey
4715
- #: ../../admin/view/wp-slimstat-reports.php:919
4716
  msgid "c-je"
4717
  msgstr "Jersey"
4718
 
4719
  # Isle of Man
4720
- #: ../../admin/view/wp-slimstat-reports.php:919
4721
  msgid "c-im"
4722
  msgstr "Isle of Man"
4723
 
4724
  # Maldives
4725
- #: ../../admin/view/wp-slimstat-reports.php:919
4726
  msgid "c-mv"
4727
  msgstr "Maldives"
4728
 
4729
- #: ../../admin/view/wp-slimstat-reports.php:920
4730
  msgid "c-eu"
4731
  msgstr ""
4732
 
4733
- #: ../../admin/view/wp-slimstat-reports.php:1008
4734
  msgid ""
4735
  "This value includes not only posts, but also custom post types, regardless "
4736
  "of their status"
4737
  msgstr ""
4738
 
4739
- #: ../../admin/view/wp-slimstat-reports.php:1009
4740
  msgid "Content Items"
4741
  msgstr ""
4742
 
4743
- #: ../../admin/view/wp-slimstat-reports.php:1010
4744
  msgid "Total Comments"
4745
  msgstr ""
4746
 
4747
- #: ../../admin/view/wp-slimstat-reports.php:1011
4748
  msgid "Pingbacks"
4749
  msgstr ""
4750
 
4751
- #: ../../admin/view/wp-slimstat-reports.php:1012
4752
  msgid "Trackbacks"
4753
  msgstr ""
4754
 
4755
- #: ../../admin/view/wp-slimstat-reports.php:1013
4756
  msgid "Longest Post (ID)"
4757
  msgstr ""
4758
 
4759
- #: ../../admin/view/wp-slimstat-reports.php:1014
4760
  msgid "Longest Comment (ID)"
4761
  msgstr ""
4762
 
4763
- #: ../../admin/view/wp-slimstat-reports.php:1015
4764
  msgid "Avg Comments Per Post"
4765
  msgstr ""
4766
 
4767
- #: ../../admin/view/wp-slimstat-reports.php:1016
4768
  msgid "Avg Posts Per Day"
4769
  msgstr ""
4770
 
4771
- #: ../../admin/view/wp-slimstat-reports.php:1044
4772
  msgid "Visits"
4773
  msgstr ""
4774
 
4775
- #: ../../admin/view/wp-slimstat-reports.php:1048
4776
  msgid "Domains"
4777
  msgstr ""
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
+ "POT-Creation-Date: 2014-01-29 21:31-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"
8
  "Language: en_US\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-Bookmarks: 332,-1,-1,-1,-1,-1,-1,-1,-1,-1\n"
16
  "X-Poedit-SearchPath-0: ../..\n"
17
 
18
+ #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:402
19
+ #: ../../admin/view/wp-slimstat-reports.php:31
20
  msgid "Right Now"
21
  msgstr ""
22
 
23
+ #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:403
24
+ #: ../../admin/wp-slimstat-admin.php:420
25
+ #: ../../admin/view/wp-slimstat-reports.php:32
26
  msgid "Overview"
27
  msgstr ""
28
 
29
+ #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:404
30
+ #: ../../admin/wp-slimstat-admin.php:421
31
+ #: ../../admin/view/wp-slimstat-reports.php:33
32
  msgid "Visitors"
33
  msgstr ""
34
 
35
+ #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:405
36
+ #: ../../admin/wp-slimstat-admin.php:422
37
+ #: ../../admin/view/wp-slimstat-reports.php:34
38
  msgid "Content"
39
  msgstr ""
40
 
41
+ #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:406
42
+ #: ../../admin/wp-slimstat-admin.php:423 ../../admin/view/index.php:168
43
+ #: ../../admin/view/wp-slimstat-reports.php:35
44
  msgid "Traffic Sources"
45
  msgstr ""
46
 
47
+ #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:407
48
+ #: ../../admin/wp-slimstat-admin.php:424
49
+ #: ../../admin/view/wp-slimstat-reports.php:36
50
+ #: ../../admin/view/wp-slimstat-reports.php:105
51
  msgid "World Map"
52
  msgstr ""
53
 
54
+ #: ../../wp-slimstat.php:1183 ../../admin/wp-slimstat-admin.php:408
55
+ #: ../../admin/wp-slimstat-admin.php:425
56
+ #: ../../admin/view/wp-slimstat-reports.php:37
57
  msgid "Custom Reports"
58
  msgstr ""
59
 
60
+ #: ../../wp-slimstat.php:1184 ../../admin/wp-slimstat-admin.php:409
61
+ #: ../../admin/wp-slimstat-admin.php:426 ../../admin/config/addons.php:29
62
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:228
63
  msgid "Add-ons"
64
  msgstr ""
65
 
66
+ #: ../../wp-slimstat.php:1187 ../../admin/wp-slimstat-admin.php:455
67
+ #: ../../admin/wp-slimstat-admin.php:458 ../../admin/wp-slimstat-admin.php:502
68
+ #: ../../admin/wp-slimstat-admin.php:505 ../../admin/config/index.php:14
69
+ #: ../../admin/config/index.php:135
70
  msgid "Settings"
71
  msgstr ""
72
 
73
+ #: ../../admin/wp-slimstat-admin.php:401 ../../admin/wp-slimstat-admin.php:413
74
+ #: ../../admin/wp-slimstat-admin.php:416
75
  msgid "SlimStat"
76
  msgstr ""
77
 
78
+ #: ../../admin/wp-slimstat-admin.php:519
79
  msgid "Pageviews in the last 365 days"
80
  msgstr ""
81
 
82
+ #: ../../admin/wp-slimstat-admin.php:543
83
  msgid "Show on screen"
84
  msgstr ""
85
 
86
+ #: ../../admin/wp-slimstat-admin.php:571
87
+ msgid "Hide this notice"
88
+ msgstr ""
89
+
90
+ #: ../../admin/wp-slimstat-admin.php:598
91
  msgid "There was an error updating the following options:"
92
  msgstr ""
93
 
94
+ #: ../../admin/wp-slimstat-admin.php:601
95
  msgid "Your settings have been successfully updated."
96
  msgstr ""
97
 
98
+ #: ../../admin/wp-slimstat-admin.php:624
99
  msgid "Save Changes"
100
  msgstr ""
101
 
102
+ #: ../../admin/wp-slimstat-admin.php:643
103
  msgid "Yes"
104
  msgstr ""
105
 
106
+ #: ../../admin/wp-slimstat-admin.php:644
107
+ #: ../../admin/view/wp-slimstat-reports.php:747
108
  msgid "No"
109
  msgstr ""
110
 
111
+ #: ../../admin/wp-slimstat-admin.php:684
112
  msgid ""
113
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
114
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
116
  "FAQs</a> for more information."
117
  msgstr ""
118
 
119
+ #: ../../admin/wp-slimstat-admin.php:704
120
  msgid "Definitions"
121
  msgstr ""
122
 
123
+ #: ../../admin/wp-slimstat-admin.php:707
124
  msgid "Pageview"
125
  msgstr ""
126
 
127
+ #: ../../admin/wp-slimstat-admin.php:707
128
  msgid ""
129
  "A request to load a single HTML file (\"page\"). This should be contrasted "
130
  "with a \"hit\", which refers to a request for any file from a web server. WP "
131
  "SlimStat logs a pageview each time the tracking code is executed"
132
  msgstr ""
133
 
134
+ #: ../../admin/wp-slimstat-admin.php:708
135
  msgid "(Human) Visit"
136
  msgstr ""
137
 
138
+ #: ../../admin/wp-slimstat-admin.php:708
139
  msgid ""
140
  "A period of interaction between a visitor's browser and your website, ending "
141
  "when the browser is closed or when the user has been inactive on that site "
142
  "for 30 minutes"
143
  msgstr ""
144
 
145
+ #: ../../admin/wp-slimstat-admin.php:709 ../../admin/view/index.php:140
146
+ #: ../../admin/view/right-now.php:149
147
  msgid "Known Visitor"
148
  msgstr ""
149
 
150
+ #: ../../admin/wp-slimstat-admin.php:709
151
  msgid ""
152
  "Any user who has left a comment on your blog, and is thus identified by "
153
  "Wordpress as a returning visitor"
154
  msgstr ""
155
 
156
+ #: ../../admin/wp-slimstat-admin.php:710
157
  msgid "Unique IP"
158
  msgstr ""
159
 
160
+ #: ../../admin/wp-slimstat-admin.php:710
161
  msgid ""
162
  "Used to differentiate between multiple requests to download a file from one "
163
  "internet address (IP) and requests originating from many distinct addresses; "
165
  "from, it is useful, but not perfect"
166
  msgstr ""
167
 
168
+ #: ../../admin/wp-slimstat-admin.php:711 ../../admin/wp-slimstat-admin.php:753
169
+ #: ../../admin/view/right-now.php:99 ../../admin/view/wp-slimstat-db.php:79
 
170
  msgid "Originating IP"
171
  msgstr ""
172
 
173
+ #: ../../admin/wp-slimstat-admin.php:711
174
  msgid ""
175
  "the originating IP address of a client connecting to a web server through an "
176
  "HTTP proxy or load balancer"
177
  msgstr ""
178
 
179
+ #: ../../admin/wp-slimstat-admin.php:712
180
  msgid "Direct Traffic"
181
  msgstr ""
182
 
183
+ #: ../../admin/wp-slimstat-admin.php:712
184
  msgid ""
185
  "All those people showing up to your Web site by typing in the URL of your "
186
  "Web site coming or from a bookmark; some people also call this \"default "
187
  "traffic\" or \"ambient traffic\""
188
  msgstr ""
189
 
190
+ #: ../../admin/wp-slimstat-admin.php:713
191
  msgid "Search Engine"
192
  msgstr ""
193
 
194
+ #: ../../admin/wp-slimstat-admin.php:713
195
  msgid ""
196
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
197
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
198
  msgstr ""
199
 
200
+ #: ../../admin/wp-slimstat-admin.php:714 ../../admin/wp-slimstat-admin.php:730
201
+ #: ../../admin/view/right-now.php:128 ../../admin/view/wp-slimstat-db.php:60
 
202
  msgid "Search Terms"
203
  msgstr ""
204
 
205
+ #: ../../admin/wp-slimstat-admin.php:714 ../../admin/wp-slimstat-admin.php:730
206
  msgid "Keywords used by your visitors to find your website on a search engine"
207
  msgstr ""
208
 
209
+ #: ../../admin/wp-slimstat-admin.php:715
210
  msgid "SERP"
211
  msgstr ""
212
 
213
+ #: ../../admin/wp-slimstat-admin.php:715
214
  msgid ""
215
  "Short for search engine results page, the Web page that a search engine "
216
  "returns with the results of its search. The value shown represents your rank "
217
  "(or position) within that list of results"
218
  msgstr ""
219
 
220
+ #: ../../admin/wp-slimstat-admin.php:716
221
+ #: ../../admin/view/wp-slimstat-db.php:72
222
  msgid "User Agent"
223
  msgstr ""
224
 
225
+ #: ../../admin/wp-slimstat-admin.php:716
226
  msgid ""
227
  "Any program used for accessing a website; this includes browsers, robots, "
228
  "spiders and any other program that was used to retrieve information from the "
229
  "site"
230
  msgstr ""
231
 
232
+ #: ../../admin/wp-slimstat-admin.php:717
233
+ #: ../../admin/view/wp-slimstat-db.php:76
234
  msgid "Outbound Link"
235
  msgstr ""
236
 
237
+ #: ../../admin/wp-slimstat-admin.php:717
238
  msgid ""
239
  "A link from one domain to another is said to be outbound from its source "
240
  "anchor and inbound to its target. This report lists all the links to other "
241
  "websites followed by your visitors."
242
  msgstr ""
243
 
244
+ #: ../../admin/wp-slimstat-admin.php:724
245
  msgid "Basic Filters"
246
  msgstr ""
247
 
248
+ #: ../../admin/wp-slimstat-admin.php:727
249
+ #: ../../admin/view/wp-slimstat-db.php:57
250
  msgid "Browser"
251
  msgstr ""
252
 
253
+ #: ../../admin/wp-slimstat-admin.php:727
254
  msgid "User agent (Firefox, Chrome, ...)"
255
  msgstr ""
256
 
257
+ #: ../../admin/wp-slimstat-admin.php:728
258
+ #: ../../admin/view/wp-slimstat-db.php:58
259
+ #: ../../admin/view/wp-slimstat-reports.php:469
260
  msgid "Country Code"
261
  msgstr ""
262
 
263
+ #: ../../admin/wp-slimstat-admin.php:728
264
  msgid "2-letter code (us, ru, de, it, ...)"
265
  msgstr ""
266
 
267
+ #: ../../admin/wp-slimstat-admin.php:729
268
  msgid "IP"
269
  msgstr ""
270
 
271
+ #: ../../admin/wp-slimstat-admin.php:729
272
  msgid "Visitor's public IP address"
273
  msgstr ""
274
 
275
+ #: ../../admin/wp-slimstat-admin.php:731
276
+ #: ../../admin/view/wp-slimstat-db.php:61
277
+ #: ../../admin/view/wp-slimstat-reports.php:481
278
  msgid "Language Code"
279
  msgstr ""
280
 
281
+ #: ../../admin/wp-slimstat-admin.php:731
282
  msgid ""
283
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
284
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
285
  "column) for more information"
286
  msgstr ""
287
 
288
+ #: ../../admin/wp-slimstat-admin.php:732
289
+ #: ../../admin/view/wp-slimstat-db.php:62
290
  msgid "Operating System"
291
  msgstr ""
292
 
293
+ #: ../../admin/wp-slimstat-admin.php:732
294
  msgid ""
295
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
296
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
297
  "manual page</a> for more information"
298
  msgstr ""
299
 
300
+ #: ../../admin/wp-slimstat-admin.php:733
301
+ #: ../../admin/view/wp-slimstat-db.php:63
302
  msgid "Permalink"
303
  msgstr ""
304
 
305
+ #: ../../admin/wp-slimstat-admin.php:733
306
  msgid "URL accessed on your site"
307
  msgstr ""
308
 
309
+ #: ../../admin/wp-slimstat-admin.php:734
310
+ #: ../../admin/view/wp-slimstat-db.php:65
311
  msgid "Referer"
312
  msgstr ""
313
 
314
+ #: ../../admin/wp-slimstat-admin.php:734
315
  msgid "Complete address of the referrer page"
316
  msgstr ""
317
 
318
+ #: ../../admin/wp-slimstat-admin.php:735
319
+ #: ../../admin/view/wp-slimstat-db.php:66
320
  msgid "Visitor's Name"
321
  msgstr ""
322
 
323
+ #: ../../admin/wp-slimstat-admin.php:735
324
  msgid ""
325
  "Visitors' names according to the cookie set by Wordpress after they leave a "
326
  "comment"
327
  msgstr ""
328
 
329
+ #: ../../admin/wp-slimstat-admin.php:743
330
  msgid "Advanced Filters"
331
  msgstr ""
332
 
333
+ #: ../../admin/wp-slimstat-admin.php:746
334
+ #: ../../admin/view/wp-slimstat-db.php:70
335
  msgid "Browser Version"
336
  msgstr ""
337
 
338
+ #: ../../admin/wp-slimstat-admin.php:746
339
  msgid "user agent version (9.0, 11, ...)"
340
  msgstr ""
341
 
342
+ #: ../../admin/wp-slimstat-admin.php:747
343
+ #: ../../admin/view/wp-slimstat-db.php:71
344
  msgid "Browser Type"
345
  msgstr ""
346
 
347
+ #: ../../admin/wp-slimstat-admin.php:747
348
  msgid ""
349
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
350
  "all others"
351
  msgstr ""
352
 
353
+ #: ../../admin/wp-slimstat-admin.php:748
354
+ #: ../../admin/view/wp-slimstat-db.php:73
355
  msgid "Color Depth"
356
  msgstr ""
357
 
358
+ #: ../../admin/wp-slimstat-admin.php:748
359
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
360
  msgstr ""
361
 
362
+ #: ../../admin/wp-slimstat-admin.php:749
363
+ #: ../../admin/view/wp-slimstat-db.php:74
364
  msgid "CSS Version"
365
  msgstr ""
366
 
367
+ #: ../../admin/wp-slimstat-admin.php:749
368
  msgid ""
369
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
370
  "values)"
371
  msgstr ""
372
 
373
+ #: ../../admin/wp-slimstat-admin.php:750
374
+ #: ../../admin/view/wp-slimstat-db.php:75
375
  msgid "Pageview Attributes"
376
  msgstr ""
377
 
378
+ #: ../../admin/wp-slimstat-admin.php:750
379
  msgid ""
380
  "this field is set to <em>[pre]</em> if the resource has been accessed "
381
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
382
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
383
  msgstr ""
384
 
385
+ #: ../../admin/wp-slimstat-admin.php:751
386
+ #: ../../admin/view/wp-slimstat-db.php:77
387
  msgid "Post Author"
388
  msgstr ""
389
 
390
+ #: ../../admin/wp-slimstat-admin.php:751
391
  msgid "author associated to that post/page when the resource was accessed"
392
  msgstr ""
393
 
394
+ #: ../../admin/wp-slimstat-admin.php:752
395
+ #: ../../admin/view/wp-slimstat-db.php:78
396
  msgid "Post Category ID"
397
  msgstr ""
398
 
399
+ #: ../../admin/wp-slimstat-admin.php:752
400
  msgid "ID of the category/term associated to the resource, when available"
401
  msgstr ""
402
 
403
+ #: ../../admin/wp-slimstat-admin.php:753
404
  msgid "visitor's originating IP address, if available"
405
  msgstr ""
406
 
407
+ #: ../../admin/wp-slimstat-admin.php:754
408
+ #: ../../admin/view/wp-slimstat-db.php:80
409
  msgid "Resource Content Type"
410
  msgstr ""
411
 
412
+ #: ../../admin/wp-slimstat-admin.php:754
413
  msgid ""
414
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
415
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
418
  "information"
419
  msgstr ""
420
 
421
+ #: ../../admin/wp-slimstat-admin.php:755
422
+ #: ../../admin/view/wp-slimstat-db.php:82
423
  msgid "Screen Resolution"
424
  msgstr ""
425
 
426
+ #: ../../admin/wp-slimstat-admin.php:755
427
  msgid "viewport width and height (1024x768, 800x600, ...)"
428
  msgstr ""
429
 
430
+ #: ../../admin/wp-slimstat-admin.php:756
431
+ #: ../../admin/view/wp-slimstat-db.php:83
432
  msgid "Visit ID"
433
  msgstr ""
434
 
435
+ #: ../../admin/wp-slimstat-admin.php:756
436
  msgid ""
437
  "generally used in conjunction with <em>is not empty</em>, identifies human "
438
  "visitors"
439
  msgstr ""
440
 
441
+ #: ../../admin/wp-slimstat-admin.php:757
442
  msgid "Date Filters"
443
  msgstr ""
444
 
445
+ #: ../../admin/wp-slimstat-admin.php:757
446
  msgid ""
447
  "you can specify the timeframe by entering a number in the <em>interval</em> "
448
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
449
  "year=blank, interval=-1 will set a year-to-date filter)"
450
  msgstr ""
451
 
452
+ #: ../../admin/wp-slimstat-admin.php:758
453
  msgid "SERP Position"
454
  msgstr ""
455
 
456
+ #: ../../admin/wp-slimstat-admin.php:758
457
  msgid ""
458
  "set the filter to Referer contains cd=N&, where N is the position you are "
459
  "looking for"
460
  msgstr ""
461
 
462
+ #: ../../admin/wp-slimstat-admin.php:767
463
  msgid ""
464
  " And for keeping an eye on your visitors with <a href=\"http://slimstat."
465
  "getused.to.it/\">WP SlimStat</a>."
495
  msgid "Description"
496
  msgstr ""
497
 
498
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:18
499
  msgid "General"
500
  msgstr ""
501
 
502
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:44
503
  msgid "Views"
504
  msgstr ""
505
 
506
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:64
507
  msgid "Filters"
508
  msgstr ""
509
 
510
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:128
511
  msgid "Permissions"
512
  msgstr ""
513
 
514
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:205
515
  msgid "Advanced"
516
  msgstr ""
517
 
519
  msgid "Maintenance"
520
  msgstr ""
521
 
522
+ #: ../../admin/config/index.php:20 ../../admin/config/index.php:207
523
  msgid "Tracker"
524
  msgstr ""
525
 
526
+ #: ../../admin/config/index.php:21
527
  msgid "Enable Tracking"
528
  msgstr ""
529
 
530
+ #: ../../admin/config/index.php:21
531
  msgid ""
532
  "Turn the tracker on or off, but keep the reports accessible (which you would "
533
  "not have, if you just disabled the plugin)."
534
  msgstr ""
535
 
536
+ #: ../../admin/config/index.php:22
537
  msgid "Monitor Admin Pages"
538
  msgstr ""
539
 
540
+ #: ../../admin/config/index.php:22
541
  msgid "Enable this option to track your users' activity within the admin."
542
  msgstr ""
543
 
544
+ #: ../../admin/config/index.php:23
545
  msgid "Enable Spy Mode"
546
  msgstr ""
547
 
548
+ #: ../../admin/config/index.php:23
549
  msgid ""
550
  "Collect information about screen resolutions, outbound links, downloads, "
551
  "etc. If Tracking Mode is set to Javascript, this data will be tracked "
552
  "regardless of which value you set for this option."
553
  msgstr ""
554
 
555
+ #: ../../admin/config/index.php:24
556
  msgid "Tracking Mode"
557
  msgstr ""
558
 
559
+ #: ../../admin/config/index.php:24
560
  msgid ""
561
  "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
562
  "Total Cache, WP SuperCache, HyperCache, etc). WP SlimStat will behave pretty "
565
  "spammers, search engines and other crawlers</strong> will not be tracked."
566
  msgstr ""
567
 
568
+ #: ../../admin/config/index.php:24
569
  msgid "Javascript"
570
  msgstr ""
571
 
572
+ #: ../../admin/config/index.php:24
573
  msgid "Server-side"
574
  msgstr ""
575
 
576
+ #: ../../admin/config/index.php:26
577
  msgid "WordPress Integration"
578
  msgstr ""
579
 
580
+ #: ../../admin/config/index.php:27
581
  msgid "Menu Position"
582
  msgstr ""
583
 
584
+ #: ../../admin/config/index.php:27
585
  msgid ""
586
  "Choose between a standalone admin menu for WP SlimStat or a drop down in the "
587
  "admin bar (if visible)."
588
  msgstr ""
589
 
590
+ #: ../../admin/config/index.php:27
591
  msgid "Side Menu"
592
  msgstr ""
593
 
594
+ #: ../../admin/config/index.php:27
595
  msgid "Admin Bar"
596
  msgstr ""
597
 
598
+ #: ../../admin/config/index.php:28
599
  msgid "Add Stats to Posts"
600
  msgstr ""
601
 
602
+ #: ../../admin/config/index.php:28
603
  msgid ""
604
  "Add a new column to the Edit Posts screen, with the number of hits per post."
605
  msgstr ""
606
 
607
+ #: ../../admin/config/index.php:30
608
  msgid "Database"
609
  msgstr ""
610
 
611
+ #: ../../admin/config/index.php:31
612
  msgid "Retain data for"
613
  msgstr ""
614
 
615
+ #: ../../admin/config/index.php:31
616
  msgid ""
617
  "Delete log entries older than the number of days specified here above. Enter "
618
  "<strong>0</strong> (number zero) if you want to preserve your data "
619
  "regardless of its age."
620
  msgstr ""
621
 
622
+ #: ../../admin/config/index.php:31
623
  msgid "Next clean-up on"
624
  msgstr ""
625
 
626
+ #: ../../admin/config/index.php:31
627
  #, php-format
628
  msgid "Entries logged on or before %s will be permanently deleted."
629
  msgstr ""
630
 
631
+ #: ../../admin/config/index.php:31 ../../admin/view/index.php:77
632
+ #: ../../admin/view/wp-slimstat-db.php:90
633
+ #: ../../admin/view/wp-slimstat-reports.php:747
634
  msgid "days"
635
  msgstr ""
636
 
637
+ #: ../../admin/config/index.php:46
638
  msgid "Data and Formats"
639
  msgstr ""
640
 
641
+ #: ../../admin/config/index.php:47
642
  msgid "Convert IP Addresses"
643
  msgstr ""
644
 
645
+ #: ../../admin/config/index.php:47
646
  msgid "Display provider names instead of IP addresses."
647
  msgstr ""
648
 
649
+ #: ../../admin/config/index.php:48
650
  msgid "Number Format"
651
  msgstr ""
652
 
653
+ #: ../../admin/config/index.php:48
654
  msgid ""
655
  "Choose the number format you want to use for your reports, European or "
656
  "American."
657
  msgstr ""
658
 
659
+ #: ../../admin/config/index.php:49
660
  msgid "Show Display Name"
661
  msgstr ""
662
 
663
+ #: ../../admin/config/index.php:49
664
  msgid ""
665
  "By default, users are listed by their usernames. Use this option to "
666
  "visualize their display names instead."
667
  msgstr ""
668
 
669
+ #: ../../admin/config/index.php:50
670
  msgid "Show User Agent"
671
  msgstr ""
672
 
673
+ #: ../../admin/config/index.php:50
674
  msgid ""
675
  "Choose if you want to see the browser name or a complete user agent string "
676
  "when hovering on browser icons."
677
  msgstr ""
678
 
679
+ #: ../../admin/config/index.php:51
680
  msgid "Show Titles"
681
  msgstr ""
682
 
683
+ #: ../../admin/config/index.php:51
684
  msgid ""
685
  "WP SlimStat converts your permalinks into post and page titles. Disable this "
686
  "feature if you need to see the URL in your reports."
687
  msgstr ""
688
 
689
+ #: ../../admin/config/index.php:53
690
  msgid "Functionality"
691
  msgstr ""
692
 
693
+ #: ../../admin/config/index.php:54
694
  msgid "Asynchronous Views"
695
  msgstr ""
696
 
697
+ #: ../../admin/config/index.php:54
698
  msgid ""
699
  "Load all the reports dynamically. It makes the reports render faster, but it "
700
  "increases the load on your server."
701
  msgstr ""
702
 
703
+ #: ../../admin/config/index.php:55
704
  msgid "Expand Details"
705
  msgstr ""
706
 
707
+ #: ../../admin/config/index.php:55
708
  msgid "Expand each row's details by default, insted of on mousehover."
709
  msgstr ""
710
 
711
+ #: ../../admin/config/index.php:56 ../../admin/config/index.php:60
712
  msgid "Rows to Display"
713
  msgstr ""
714
 
715
+ #: ../../admin/config/index.php:56
716
  msgid "Specify the number of items in each report."
717
  msgstr ""
718
 
719
+ #: ../../admin/config/index.php:58
720
  msgid "Right Now Screen"
721
  msgstr ""
722
 
723
+ #: ../../admin/config/index.php:59
724
  msgid "Live Stream"
725
  msgstr ""
726
 
727
+ #: ../../admin/config/index.php:59
728
  msgid ""
729
  "Enable the Live view, which refreshes the Right Now screen every X seconds. "
730
  "Enter <strong>0</strong> (number zero) to disable this functionality."
731
  msgstr ""
732
 
733
+ #: ../../admin/config/index.php:59 ../../admin/config/index.php:210
734
  msgid "seconds"
735
  msgstr ""
736
 
737
+ #: ../../admin/config/index.php:60
738
  msgid "Specify the number of items in Right Now."
739
  msgstr ""
740
 
741
+ #: ../../admin/config/index.php:61
742
  msgid "Right Now Extended"
743
  msgstr ""
744
 
745
+ #: ../../admin/config/index.php:61
746
  msgid ""
747
  "Choose if you want to see outbound links listed under Right Now. It might "
748
  "slow down the rendering of this report."
749
  msgstr ""
750
 
751
+ #: ../../admin/config/index.php:66
752
  msgid "Visitors and Known Users"
753
  msgstr ""
754
 
755
+ #: ../../admin/config/index.php:67
756
  msgid "Track Registered Users"
757
  msgstr ""
758
 
759
+ #: ../../admin/config/index.php:67
760
  msgid "Enable this option to track logged in users."
761
  msgstr ""
762
 
763
+ #: ../../admin/config/index.php:68
764
  msgid "Blacklist by Username"
765
  msgstr ""
766
 
767
+ #: ../../admin/config/index.php:68
768
  msgid ""
769
  "List all the usernames you don't want to track, separated by commas. Please "
770
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
771
  "sensitive."
772
  msgstr ""
773
 
774
+ #: ../../admin/config/index.php:69
775
  msgid "Blacklist by IP Address"
776
  msgstr ""
777
 
778
+ #: ../../admin/config/index.php:69
779
  msgid ""
780
  "List all the IP addresses you don't want to track, separated by commas. Each "
781
  "network <strong>must</strong> be defined using the <a href='http://en."
784
  "SlimStat may not track pageviews properly."
785
  msgstr ""
786
 
787
+ #: ../../admin/config/index.php:70
788
  msgid "Blacklist by Capability"
789
  msgstr ""
790
 
791
+ #: ../../admin/config/index.php:70
792
  msgid ""
793
  "Users having at least one of the <a href='http://codex.wordpress.org/"
794
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
795
  "will not be tracked. Capabilities are case-insensitive."
796
  msgstr ""
797
 
798
+ #: ../../admin/config/index.php:72
799
  msgid "Profiling"
800
  msgstr ""
801
 
802
+ #: ../../admin/config/index.php:73
803
  msgid "Ignore Spammers"
804
  msgstr ""
805
 
806
+ #: ../../admin/config/index.php:73
807
  msgid ""
808
  "Enable this option if you don't want to track visits from users identified "
809
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
811
  "database."
812
  msgstr ""
813
 
814
+ #: ../../admin/config/index.php:74
815
  msgid "Permalinks"
816
  msgstr ""
817
 
818
+ #: ../../admin/config/index.php:74
819
  msgid ""
820
  "List all the URLs on your website that you don't want to track, separated by "
821
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
826
  "case-insensitive."
827
  msgstr ""
828
 
829
+ #: ../../admin/config/index.php:75
830
  msgid "Countries"
831
  msgstr ""
832
 
833
+ #: ../../admin/config/index.php:75
834
  msgid ""
835
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
836
  "track, separated by commas."
837
  msgstr ""
838
 
839
+ #: ../../admin/config/index.php:76
840
  msgid "User Agents"
841
  msgstr ""
842
 
843
+ #: ../../admin/config/index.php:76
844
  msgid ""
845
  "Browsers (user agents) you don't want to track, separated by commas. You can "
846
  "specify the browser's version adding a slash after the name (i.e. "
850
  "code> will match IE/7.0 and IE/8.0. Strings are case-insensitive."
851
  msgstr ""
852
 
853
+ #: ../../admin/config/index.php:77
854
  msgid "Referring Sites"
855
  msgstr ""
856
 
857
+ #: ../../admin/config/index.php:77
858
  msgid ""
859
  "Referring URLs that you don't want to track, separated by commas: "
860
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
864
  "https://)."
865
  msgstr ""
866
 
867
+ #: ../../admin/config/index.php:79 ../../admin/config/index.php:215
868
  msgid "Miscellaneous"
869
  msgstr ""
870
 
871
+ #: ../../admin/config/index.php:80
872
  msgid "Enable Privacy Mode"
873
  msgstr ""
874
 
875
+ #: ../../admin/config/index.php:80
876
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
877
  msgstr ""
878
 
879
+ #: ../../admin/config/index.php:81
880
  msgid "Ignore Prefetch Requests"
881
  msgstr ""
882
 
883
+ #: ../../admin/config/index.php:81
884
  msgid ""
885
  "Prevent WP SlimStat from tracking pageviews generated by Firefox's <a "
886
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
887
  "target='_blank'>Link Prefetching functionality</a>."
888
  msgstr ""
889
 
890
+ #: ../../admin/config/index.php:97
891
  msgid "Ignore users (username not found)"
892
  msgstr ""
893
 
894
+ #: ../../admin/config/index.php:120
895
  msgid ""
896
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
897
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
898
  msgstr ""
899
 
900
+ #: ../../admin/config/index.php:130
901
  msgid "Reports"
902
  msgstr ""
903
 
904
+ #: ../../admin/config/index.php:131
905
  msgid "Restrict Authors"
906
  msgstr ""
907
 
908
+ #: ../../admin/config/index.php:131
909
  msgid ""
910
  "Enable this option if you want your authours to only see stats related to "
911
  "their own content."
912
  msgstr ""
913
 
914
+ #: ../../admin/config/index.php:132 ../../admin/config/index.php:136
915
  msgid "Capability"
916
  msgstr ""
917
 
918
+ #: ../../admin/config/index.php:132
919
  msgid ""
920
  "Specify the minimum <a href='http://codex.wordpress.org/"
921
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
922
+ "reports (default: <code>activate_plugins</code>). If this field is empty, "
923
+ "<strong>all your users</strong> (including subscribers) will have access to "
924
+ "the reports, unless a 'Read access' whitelist has been specified here below. "
925
+ "In this case, the list has precedence over the capability."
926
  msgstr ""
927
 
928
+ #: ../../admin/config/index.php:133 ../../admin/config/index.php:137
929
  msgid "Whitelist"
930
  msgstr ""
931
 
932
+ #: ../../admin/config/index.php:133
933
  msgid ""
934
  "List all the users who should have access to the reports, separated by "
935
  "commas. Administrators are implicitly allowed, so you don't need to list "
936
  "them in here. Usernames are case sensitive."
937
  msgstr ""
938
 
939
+ #: ../../admin/config/index.php:136
940
  msgid ""
941
  "Specify the minimum <a href='http://codex.wordpress.org/"
942
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
944
  "below can be used to override this option for specific users."
945
  msgstr ""
946
 
947
+ #: ../../admin/config/index.php:137
948
  msgid ""
949
  "List all the users who can edit these options, separated by commas. Please "
950
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
951
  "not forget to include yourself! Usernames are case sensitive."
952
  msgstr ""
953
 
954
+ #: ../../admin/config/index.php:153
955
  msgid "Read access: username not found"
956
  msgstr ""
957
 
958
+ #: ../../admin/config/index.php:166 ../../admin/config/index.php:197
959
  msgid ""
960
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
961
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
962
  "information"
963
  msgstr ""
964
 
965
+ #: ../../admin/config/index.php:184
966
  msgid "Config access: username not found"
967
  msgstr ""
968
 
969
+ #: ../../admin/config/index.php:208
970
  msgid "Detect Smoothing"
971
  msgstr ""
972
 
973
+ #: ../../admin/config/index.php:208
974
  msgid ""
975
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
976
  "This option required Spy Mode to be enabled."
977
  msgstr ""
978
 
979
+ #: ../../admin/config/index.php:209
980
  msgid "Track Outbound Clicks"
981
  msgstr ""
982
 
983
+ #: ../../admin/config/index.php:209
984
  msgid ""
985
  "Track when your visitors click on link to external websites. This option "
986
  "required Spy Mode to be enabled."
987
  msgstr ""
988
 
989
+ #: ../../admin/config/index.php:210
990
  msgid "Session Duration"
991
  msgstr ""
992
 
993
+ #: ../../admin/config/index.php:210
994
  msgid ""
995
+ "How many seconds should a human session last? Google Analytics sets it to "
996
+ "1800 seconds."
997
  msgstr ""
998
 
999
+ #: ../../admin/config/index.php:211
1000
  msgid "Extend Session"
1001
  msgstr ""
1002
 
1003
+ #: ../../admin/config/index.php:211
1004
  msgid "Extend the duration of a session each time the user visits a new page."
1005
  msgstr ""
1006
 
1007
+ #: ../../admin/config/index.php:212
1008
  msgid "Enable CDN"
1009
  msgstr ""
1010
 
1011
+ #: ../../admin/config/index.php:212
1012
  msgid ""
1013
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
1014
  "by serving our tracking code from their fast and reliable network (free "
1015
  "service)."
1016
  msgstr ""
1017
 
1018
+ #: ../../admin/config/index.php:213
1019
  msgid "Extensions to Track"
1020
  msgstr ""
1021
 
1022
+ #: ../../admin/config/index.php:213
1023
  msgid ""
1024
  "List all the file extensions that you want to be treated as Downloads. "
1025
  "Please note that links pointing to external resources (i.e. PDFs on a "
1028
  "below."
1029
  msgstr ""
1030
 
1031
+ #: ../../admin/config/index.php:216
1032
  msgid "IP Lookup"
1033
  msgstr ""
1034
 
1035
+ #: ../../admin/config/index.php:216
1036
  msgid "Customize the Geolocation service to be used in the reports."
1037
  msgstr ""
1038
 
1039
+ #: ../../admin/config/index.php:217
1040
  msgid "Custom CSS"
1041
  msgstr ""
1042
 
1043
+ #: ../../admin/config/index.php:217
1044
  msgid ""
1045
  "Paste here your custom stylesheet to personalize the way your reports look. "
1046
  "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1047
  "target='_blank'>Check the FAQ</a> for more information on how to use this "
1048
+ "setting."
 
 
 
 
 
 
 
 
 
 
 
 
 
1049
  msgstr ""
1050
 
1051
  #: ../../admin/config/index.php:218
1054
 
1055
  #: ../../admin/config/index.php:218
1056
  msgid ""
1057
+ "Send anonymous data about unknown user agents to our server for analysis. "
1058
+ "This allows us to contribute to the <a href='http://browscap.org/' "
1059
+ "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
1060
+ "WP SlimStat's browser detection functionality."
1061
  msgstr ""
1062
 
1063
  #: ../../admin/config/maintenance.php:20
1165
  msgstr ""
1166
 
1167
  #: ../../admin/config/maintenance.php:138 ../../admin/view/index.php:32
1168
+ #: ../../admin/view/index.php:78
1169
  msgid "Apply"
1170
  msgstr ""
1171
 
2657
  msgstr "Zulu (South Africa)"
2658
 
2659
  #: ../../admin/lang/dynamic_strings.php:298
2660
+ #: ../../admin/view/wp-slimstat-reports.php:482
2661
  msgid "l-"
2662
  msgstr "Unknown"
2663
 
2675
  msgid "c-xy"
2676
  msgstr "Local IP"
2677
 
2678
+ #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:768
2679
  msgid "Today"
2680
  msgstr ""
2681
 
2682
+ #: ../../admin/view/index.php:49 ../../admin/view/wp-slimstat-reports.php:769
2683
  msgid "Yesterday"
2684
  msgstr ""
2685
 
 
 
 
 
2686
  #: ../../admin/view/index.php:50
2687
+ msgid "Last 7 Days"
2688
  msgstr ""
2689
 
2690
  #: ../../admin/view/index.php:51
2691
+ msgid "Last 60 Days"
2692
  msgstr ""
2693
 
2694
  #: ../../admin/view/index.php:52
2695
+ msgid "Last 90 Days"
2696
  msgstr ""
2697
 
2698
  #: ../../admin/view/index.php:53
2699
+ msgid "This Year So Far"
2700
+ msgstr ""
2701
+
2702
+ #: ../../admin/view/index.php:54
2703
  msgid "Date Range"
2704
  msgstr ""
2705
 
2706
+ #: ../../admin/view/index.php:56 ../../admin/view/wp-slimstat-db.php:87
2707
  msgid "Day"
2708
  msgstr ""
2709
 
2710
+ #: ../../admin/view/index.php:66 ../../admin/view/wp-slimstat-db.php:88
2711
  msgid "Month"
2712
  msgstr ""
2713
 
2714
+ #: ../../admin/view/index.php:75 ../../admin/view/wp-slimstat-db.php:89
2715
  msgid "Year"
2716
  msgstr ""
2717
 
2718
+ #: ../../admin/view/index.php:80
2719
+ msgid "Reset Filters"
2720
+ msgstr ""
2721
+
2722
+ #: ../../admin/view/index.php:117
2723
  msgid "Your report here"
2724
  msgstr ""
2725
 
2726
+ #: ../../admin/view/index.php:119
2727
  msgid ""
2728
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
2729
  "Just write a new plugin that retrieves the desired information from the "
2732
  "slimstat?forum_id=10\" target=\"_blank\">support forum</a>."
2733
  msgstr ""
2734
 
2735
+ #: ../../admin/view/index.php:133 ../../admin/view/wp-slimstat-reports.php:759
2736
+ #: ../../admin/view/wp-slimstat-reports.php:861
2737
+ #: ../../admin/view/wp-slimstat-reports.php:1145
2738
  msgid "Pageviews"
2739
  msgstr ""
2740
 
2741
+ #: ../../admin/view/index.php:136
2742
  msgid ""
2743
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2744
  "WP SlimStat leverages this information to identify returning visitors. "
2745
  "Please note that visitors also include registered users."
2746
  msgstr ""
2747
 
2748
+ #: ../../admin/view/index.php:140
2749
  msgid "Take a sneak peek at what human visitors are doing on your website."
2750
  msgstr ""
2751
 
2752
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
2753
+ #: ../../admin/view/index.php:184 ../../admin/view/right-now.php:147
2754
  msgid "Color codes"
2755
  msgstr ""
2756
 
2757
+ #: ../../admin/view/index.php:140
2758
  msgid "From a search result page"
2759
  msgstr ""
2760
 
2761
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
2762
+ #: ../../admin/view/index.php:184
2763
  msgid "Known Users"
2764
  msgstr ""
2765
 
2766
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
2767
+ #: ../../admin/view/index.php:184
2768
  msgid "Other Humans"
2769
  msgstr ""
2770
 
2771
+ #: ../../admin/view/index.php:144
2772
  msgid "Keywords used by your visitors to find your website on a search engine."
2773
  msgstr ""
2774
 
2775
+ #: ../../admin/view/index.php:147
2776
  msgid ""
2777
  "WP SlimStat retrieves live information from Alexa, Facebook and Google, to "
2778
  "measures your site's rankings. Values are updated every 12 hours. Filters "
2779
  "set above don't apply to this report."
2780
  msgstr ""
2781
 
2782
+ #: ../../admin/view/index.php:150
2783
  msgid ""
2784
  "We have teamed up with HackerNinja.com to offer you a free website security "
2785
  "scan. By clicking on Start Free Scan, your website will be analyzed to "
2787
  "information is being sent to HackerNinja."
2788
  msgstr ""
2789
 
2790
+ #: ../../admin/view/index.php:153
2791
  msgid "Human Visits"
2792
  msgstr ""
2793
 
2794
+ #: ../../admin/view/index.php:156
2795
  msgid ""
2796
  "Internet Service Provider: a company which provides other companies or "
2797
  "individuals with access to the Internet. Your DSL or cable internet service "
2799
  "by setting the corresponding filter under Settings > SlimStat > Filters."
2800
  msgstr ""
2801
 
2802
+ #: ../../admin/view/index.php:159
2803
  msgid ""
2804
  "You can configure WP SlimStat to ignore a specific Country by setting the "
2805
  "corresponding filter under Settings > SlimStat > Filters."
2806
  msgstr ""
2807
 
2808
+ #: ../../admin/view/index.php:162
2809
  msgid ""
2810
  "This report shows you what user agent families (no version considered) are "
2811
  "popular among your visitors."
2812
  msgstr ""
2813
 
2814
+ #: ../../admin/view/index.php:165
2815
  msgid ""
2816
  "This report shows you what operating system families (no version considered) "
2817
  "are popular among your visitors."
2818
  msgstr ""
2819
 
2820
+ #: ../../admin/view/index.php:171
2821
  msgid "Average Pageviews per Visit"
2822
  msgstr ""
2823
 
2824
+ #: ../../admin/view/index.php:174
2825
  msgid ""
2826
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
2827
  "left your site from the entrance (landing) page."
2828
  msgstr ""
2829
 
2830
+ #: ../../admin/view/index.php:177
2831
  msgid "Searches performed using Wordpress' built-in search functionality."
2832
  msgstr ""
2833
 
2834
+ #: ../../admin/view/index.php:181
2835
  msgid ""
2836
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
2837
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
2838
  "link has an ID attribute associated to it."
2839
  msgstr ""
2840
 
2841
+ #: ../../admin/view/index.php:184
2842
  msgid ""
2843
  "This report lists any <em>event</em> occurred on your website. Please refer "
2844
  "to the FAQ for more information on how to leverage this functionality."
2845
  msgstr ""
2846
 
2847
+ #: ../../admin/view/index.php:187
2848
  msgid ""
2849
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2850
  "this report is not affected by the filters set here above."
2867
  msgstr ""
2868
 
2869
  #: ../../admin/view/right-now.php:28
2870
+ #: ../../admin/view/wp-slimstat-reports.php:425
2871
+ #: ../../admin/view/wp-slimstat-reports.php:670
2872
  msgid "No data to display"
2873
  msgstr ""
2874
 
2875
  # Unknown
2876
+ #: ../../admin/view/right-now.php:54
2877
+ #: ../../admin/view/wp-slimstat-reports.php:470
2878
+ #: ../../admin/view/wp-slimstat-reports.php:708
2879
+ #: ../../admin/view/wp-slimstat-reports.php:1032
2880
  msgid "c-"
2881
  msgstr "Unknown"
2882
 
2883
+ #: ../../admin/view/right-now.php:120
2884
+ #: ../../admin/view/wp-slimstat-reports.php:524
2885
+ #: ../../admin/view/wp-slimstat-reports.php:528
2886
+ #: ../../admin/view/wp-slimstat-reports.php:690
2887
+ #: ../../admin/view/wp-slimstat-reports.php:728
2888
  msgid "Open this URL in a new window"
2889
  msgstr ""
2890
 
2891
+ #: ../../admin/view/right-now.php:123
2892
  msgid "Local search results page"
2893
  msgstr ""
2894
 
2895
+ #: ../../admin/view/right-now.php:130
2896
  msgid "Open this referrer in a new window"
2897
  msgstr ""
2898
 
2899
+ #: ../../admin/view/right-now.php:131
2900
  msgid "Open this outbound link in a new window"
2901
  msgstr ""
2902
 
2903
+ #: ../../admin/view/right-now.php:132
2904
  msgid "Date and Time"
2905
  msgstr ""
2906
 
2907
+ #: ../../admin/view/right-now.php:133
2908
  msgid "Content Type"
2909
  msgstr ""
2910
 
2911
+ #: ../../admin/view/right-now.php:148
2912
  msgid "Visit with keywords"
2913
  msgstr ""
2914
 
2915
+ #: ../../admin/view/right-now.php:150
2916
  msgid "Known User"
2917
  msgstr ""
2918
 
2919
+ #: ../../admin/view/right-now.php:151
2920
  msgid "Human Visitor"
2921
  msgstr ""
2922
 
2923
+ #: ../../admin/view/right-now.php:152
2924
  msgid "Bot or Crawler"
2925
  msgstr ""
2926
 
2927
+ #: ../../admin/view/wp-slimstat-db.php:59
2928
  msgid "IP Address"
2929
  msgstr ""
2930
 
2931
+ #: ../../admin/view/wp-slimstat-db.php:64
2932
  msgid "Domain"
2933
  msgstr ""
2934
 
2935
+ #: ../../admin/view/wp-slimstat-db.php:68
2936
  msgid "-- Advanced filters --"
2937
  msgstr ""
2938
 
2939
+ #: ../../admin/view/wp-slimstat-db.php:69
2940
+ #: ../../admin/view/wp-slimstat-reports.php:62
2941
  msgid "Browser Capabilities"
2942
  msgstr ""
2943
 
2944
+ #: ../../admin/view/wp-slimstat-db.php:81
2945
  msgid "Resource ID"
2946
  msgstr ""
2947
 
2948
+ #: ../../admin/view/wp-slimstat-db.php:86
2949
  msgid "Hour"
2950
  msgstr ""
2951
 
2952
+ #: ../../admin/view/wp-slimstat-db.php:92
2953
+ msgid "Order Direction"
2954
+ msgstr ""
2955
+
2956
+ #: ../../admin/view/wp-slimstat-db.php:93
2957
+ msgid "Limit Results"
2958
+ msgstr ""
2959
+
2960
+ #: ../../admin/view/wp-slimstat-db.php:94
2961
+ msgid "Start From"
2962
+ msgstr ""
2963
+
2964
+ #: ../../admin/view/wp-slimstat-reports.php:41
2965
  msgid "Pageviews (chart)"
2966
  msgstr ""
2967
 
2968
+ #: ../../admin/view/wp-slimstat-reports.php:42
2969
  msgid "About WP SlimStat"
2970
  msgstr ""
2971
 
2972
+ #: ../../admin/view/wp-slimstat-reports.php:43
2973
+ #: ../../admin/view/wp-slimstat-reports.php:56
2974
  msgid "At a Glance"
2975
  msgstr ""
2976
 
2977
+ #: ../../admin/view/wp-slimstat-reports.php:44
2978
  msgid "Currently Online"
2979
  msgstr ""
2980
 
2981
+ #: ../../admin/view/wp-slimstat-reports.php:45
2982
+ #: ../../admin/view/wp-slimstat-reports.php:80
2983
  msgid "Spy View"
2984
  msgstr ""
2985
 
2986
+ #: ../../admin/view/wp-slimstat-reports.php:46
2987
+ #: ../../admin/view/wp-slimstat-reports.php:81
2988
  msgid "Recent Search Terms"
2989
  msgstr ""
2990
 
2991
+ #: ../../admin/view/wp-slimstat-reports.php:47
2992
  msgid "Top Pages"
2993
  msgstr ""
2994
 
2995
+ #: ../../admin/view/wp-slimstat-reports.php:48
2996
+ #: ../../admin/view/wp-slimstat-reports.php:78
2997
  msgid "Top Traffic Sources"
2998
  msgstr ""
2999
 
3000
+ #: ../../admin/view/wp-slimstat-reports.php:49
3001
  msgid "Top Known Visitors"
3002
  msgstr ""
3003
 
3004
+ #: ../../admin/view/wp-slimstat-reports.php:50
3005
+ #: ../../admin/view/wp-slimstat-reports.php:76
3006
+ #: ../../admin/view/wp-slimstat-reports.php:96
3007
  msgid "Top Search Terms"
3008
  msgstr ""
3009
 
3010
+ #: ../../admin/view/wp-slimstat-reports.php:51
3011
+ #: ../../admin/view/wp-slimstat-reports.php:63
3012
+ #: ../../admin/view/wp-slimstat-reports.php:77
3013
  msgid "Top Countries"
3014
  msgstr ""
3015
 
3016
+ #: ../../admin/view/wp-slimstat-reports.php:52
3017
  msgid "Rankings"
3018
  msgstr ""
3019
 
3020
+ #: ../../admin/view/wp-slimstat-reports.php:53
3021
  msgid "Security Scan"
3022
  msgstr ""
3023
 
3024
+ #: ../../admin/view/wp-slimstat-reports.php:54
3025
  msgid "Top Language Families"
3026
  msgstr ""
3027
 
3028
+ #: ../../admin/view/wp-slimstat-reports.php:55
3029
  msgid "Human Visits (chart)"
3030
  msgstr ""
3031
 
3032
+ #: ../../admin/view/wp-slimstat-reports.php:57
3033
  msgid "Top Languages"
3034
  msgstr ""
3035
 
3036
+ #: ../../admin/view/wp-slimstat-reports.php:58
3037
  msgid "Top Browsers"
3038
  msgstr ""
3039
 
3040
+ #: ../../admin/view/wp-slimstat-reports.php:59
3041
  msgid "Top Service Providers"
3042
  msgstr ""
3043
 
3044
+ #: ../../admin/view/wp-slimstat-reports.php:60
3045
  msgid "Top Operating Systems"
3046
  msgstr ""
3047
 
3048
+ #: ../../admin/view/wp-slimstat-reports.php:61
3049
  msgid "Top Screen Resolutions"
3050
  msgstr ""
3051
 
3052
+ #: ../../admin/view/wp-slimstat-reports.php:64
3053
  msgid "Visit Duration"
3054
  msgstr ""
3055
 
3056
+ #: ../../admin/view/wp-slimstat-reports.php:65
3057
+ #: ../../admin/view/wp-slimstat-reports.php:82
3058
  msgid "Recent Countries"
3059
  msgstr ""
3060
 
3061
+ #: ../../admin/view/wp-slimstat-reports.php:66
3062
  msgid "Recent Screen Resolutions"
3063
  msgstr ""
3064
 
3065
+ #: ../../admin/view/wp-slimstat-reports.php:67
3066
  msgid "Recent Operating Systems"
3067
  msgstr ""
3068
 
3069
+ #: ../../admin/view/wp-slimstat-reports.php:68
3070
  msgid "Recent Browsers"
3071
  msgstr ""
3072
 
3073
+ #: ../../admin/view/wp-slimstat-reports.php:69
3074
  msgid "Recent Languages"
3075
  msgstr ""
3076
 
3077
+ #: ../../admin/view/wp-slimstat-reports.php:70
3078
  msgid "Top Browser Families"
3079
  msgstr ""
3080
 
3081
+ #: ../../admin/view/wp-slimstat-reports.php:71
3082
  msgid "Top OS Families"
3083
  msgstr ""
3084
 
3085
+ #: ../../admin/view/wp-slimstat-reports.php:72
3086
  msgid "Recent Users"
3087
  msgstr ""
3088
 
3089
+ #: ../../admin/view/wp-slimstat-reports.php:73
3090
  msgid "Top Users"
3091
  msgstr ""
3092
 
3093
+ #: ../../admin/view/wp-slimstat-reports.php:74
3094
  msgid "Traffic Sources (chart)"
3095
  msgstr ""
3096
 
3097
+ #: ../../admin/view/wp-slimstat-reports.php:75
3098
  msgid "Summary"
3099
  msgstr ""
3100
 
3101
+ #: ../../admin/view/wp-slimstat-reports.php:79
3102
  msgid "Top Referring Search Engines"
3103
  msgstr ""
3104
 
3105
+ #: ../../admin/view/wp-slimstat-reports.php:83
3106
+ #: ../../admin/view/wp-slimstat-reports.php:99
3107
  msgid "Top Landing Pages"
3108
  msgstr ""
3109
 
3110
+ #: ../../admin/view/wp-slimstat-reports.php:84
3111
  msgid "Average Pageviews per Visit (chart)"
3112
  msgstr ""
3113
 
3114
+ #: ../../admin/view/wp-slimstat-reports.php:85
3115
  msgid "Recent Posts"
3116
  msgstr ""
3117
 
3118
+ #: ../../admin/view/wp-slimstat-reports.php:86
3119
  msgid "Recent Bounce Pages"
3120
  msgstr ""
3121
 
3122
+ #: ../../admin/view/wp-slimstat-reports.php:87
3123
  msgid "Recent Feeds"
3124
  msgstr ""
3125
 
3126
+ #: ../../admin/view/wp-slimstat-reports.php:88
3127
  msgid "Recent Pages Not Found"
3128
  msgstr ""
3129
 
3130
+ #: ../../admin/view/wp-slimstat-reports.php:89
3131
  msgid "Recent Internal Searches"
3132
  msgstr ""
3133
 
3134
+ #: ../../admin/view/wp-slimstat-reports.php:90
3135
  msgid "Top Categories"
3136
  msgstr ""
3137
 
3138
+ #: ../../admin/view/wp-slimstat-reports.php:91
3139
  msgid "Recent Outbound Links"
3140
  msgstr ""
3141
 
3142
+ #: ../../admin/view/wp-slimstat-reports.php:92
3143
  msgid "Recent Events"
3144
  msgstr ""
3145
 
3146
+ #: ../../admin/view/wp-slimstat-reports.php:93
3147
  msgid "Top Posts"
3148
  msgstr ""
3149
 
3150
+ #: ../../admin/view/wp-slimstat-reports.php:94
3151
  msgid "Top Feeds"
3152
  msgstr ""
3153
 
3154
+ #: ../../admin/view/wp-slimstat-reports.php:95
3155
  msgid "Top Internal Searches"
3156
  msgstr ""
3157
 
3158
+ #: ../../admin/view/wp-slimstat-reports.php:97
3159
  msgid "Recent Categories"
3160
  msgstr ""
3161
 
3162
+ #: ../../admin/view/wp-slimstat-reports.php:98
3163
  msgid "Top Pages Not Found"
3164
  msgstr ""
3165
 
3166
+ #: ../../admin/view/wp-slimstat-reports.php:100
3167
  msgid "Top Authors"
3168
  msgstr ""
3169
 
3170
+ #: ../../admin/view/wp-slimstat-reports.php:101
3171
  msgid "Top Tags"
3172
  msgstr ""
3173
 
3174
+ #: ../../admin/view/wp-slimstat-reports.php:102
3175
  msgid "Recent Downloads"
3176
  msgstr ""
3177
 
3178
+ #: ../../admin/view/wp-slimstat-reports.php:103
3179
  msgid "Top Outbound Links and Downloads"
3180
  msgstr ""
3181
 
3182
+ #: ../../admin/view/wp-slimstat-reports.php:104
3183
  msgid "Your Website"
3184
  msgstr ""
3185
 
3186
+ #: ../../admin/view/wp-slimstat-reports.php:106
3187
  msgid "Activity Log"
3188
  msgstr ""
3189
 
3190
+ #: ../../admin/view/wp-slimstat-reports.php:222
3191
  msgid "Chart controls"
3192
  msgstr ""
3193
 
3194
+ #: ../../admin/view/wp-slimstat-reports.php:222
3195
  msgid "Use your mouse wheel to zoom in and out"
3196
  msgstr ""
3197
 
3198
+ #: ../../admin/view/wp-slimstat-reports.php:222
3199
  msgid "While zooming in, drag the chart to move to a different area"
3200
  msgstr ""
3201
 
3202
+ #: ../../admin/view/wp-slimstat-reports.php:222
3203
  msgid "Double click on an empty region to reset the zoom level"
3204
  msgstr ""
3205
 
3206
+ #: ../../admin/view/wp-slimstat-reports.php:223
3207
  msgid ""
3208
  "Click on a data point to display the activity chart for each hour of that day"
3209
  msgstr ""
3210
 
3211
+ #: ../../admin/view/wp-slimstat-reports.php:256
3212
  msgid "src"
3213
  msgstr ""
3214
 
3215
+ #: ../../admin/view/wp-slimstat-reports.php:257
3216
  msgid "serp"
3217
  msgstr ""
3218
 
3219
+ #: ../../admin/view/wp-slimstat-reports.php:262
3220
  msgid "Go to the corresponding search engine result page"
3221
  msgstr ""
3222
 
3223
+ #: ../../admin/view/wp-slimstat-reports.php:265
3224
  msgid "Go to the referring page"
3225
  msgstr ""
3226
 
3227
+ #: ../../admin/view/wp-slimstat-reports.php:288
3228
  msgid "Remove filter for"
3229
  msgstr ""
3230
 
3231
+ #: ../../admin/view/wp-slimstat-reports.php:295
3232
  msgid "Reset All"
3233
  msgstr ""
3234
 
3235
+ #: ../../admin/view/wp-slimstat-reports.php:298
3236
  msgid "Current filters:"
3237
  msgstr ""
3238
 
3239
+ #: ../../admin/view/wp-slimstat-reports.php:302
3240
  msgid "Refresh"
3241
  msgstr ""
3242
 
3243
+ #: ../../admin/view/wp-slimstat-reports.php:339
3244
  #, php-format
3245
  msgid "Results %s - %s of %s"
3246
  msgstr ""
3247
 
3248
+ #: ../../admin/view/wp-slimstat-reports.php:341
3249
  msgid "Refresh in"
3250
  msgstr ""
3251
 
3252
+ #: ../../admin/view/wp-slimstat-reports.php:363
3253
+ #: ../../admin/view/wp-slimstat-reports.php:375
3254
  #, php-format
3255
  msgid "Daily %s"
3256
  msgstr ""
3257
 
3258
+ #: ../../admin/view/wp-slimstat-reports.php:366
3259
  #, php-format
3260
  msgid "%s Minute by Minute"
3261
  msgstr ""
3262
 
3263
+ #: ../../admin/view/wp-slimstat-reports.php:369
3264
  #, php-format
3265
  msgid "Hourly %s"
3266
  msgstr ""
3267
 
3268
+ #: ../../admin/view/wp-slimstat-reports.php:372
3269
  #, php-format
3270
  msgid "Monthly %s"
3271
  msgstr ""
3272
 
3273
+ #: ../../admin/view/wp-slimstat-reports.php:452
3274
  msgid "Category ID"
3275
  msgstr ""
3276
 
3277
+ #: ../../admin/view/wp-slimstat-reports.php:485
3278
  msgid "OS Code"
3279
  msgstr ""
3280
 
3281
+ #: ../../admin/view/wp-slimstat-reports.php:495
3282
  msgid "Referrer"
3283
  msgstr ""
3284
 
3285
+ #: ../../admin/view/wp-slimstat-reports.php:519
3286
+ #: ../../admin/view/wp-slimstat-reports.php:796
3287
+ #: ../../admin/view/wp-slimstat-reports.php:805
3288
+ #: ../../admin/view/wp-slimstat-reports.php:811
3289
+ #: ../../admin/view/wp-slimstat-reports.php:817
3290
+ #: ../../admin/view/wp-slimstat-reports.php:823
3291
+ #: ../../admin/view/wp-slimstat-reports.php:829
3292
+ #: ../../admin/view/wp-slimstat-reports.php:835
3293
+ #: ../../admin/view/wp-slimstat-reports.php:841
3294
  msgid "Hits"
3295
  msgstr ""
3296
 
3297
+ #: ../../admin/view/wp-slimstat-reports.php:687
3298
  msgid "Search for"
3299
  msgstr ""
3300
 
3301
+ #: ../../admin/view/wp-slimstat-reports.php:718
3302
+ #: ../../admin/view/wp-slimstat-reports.php:728
3303
  msgid "Source"
3304
  msgstr ""
3305
 
3306
+ #: ../../admin/view/wp-slimstat-reports.php:720
3307
  msgid "Keywords"
3308
  msgstr ""
3309
 
3310
+ #: ../../admin/view/wp-slimstat-reports.php:728
3311
  #, php-format
3312
  msgid "Filter results where resource equals %s"
3313
  msgstr ""
3314
 
3315
+ #: ../../admin/view/wp-slimstat-reports.php:742
3316
  msgid "Total Pageviews"
3317
  msgstr ""
3318
 
3319
+ #: ../../admin/view/wp-slimstat-reports.php:743
3320
  msgid "DB Size"
3321
  msgstr ""
3322
 
3323
+ #: ../../admin/view/wp-slimstat-reports.php:744
3324
  msgid "Tracking Active"
3325
  msgstr ""
3326
 
3327
+ #: ../../admin/view/wp-slimstat-reports.php:745
3328
  msgid "Javascript Mode"
3329
  msgstr ""
3330
 
3331
+ #: ../../admin/view/wp-slimstat-reports.php:746
3332
  msgid "Tracking Browser Caps"
3333
  msgstr ""
3334
 
3335
+ #: ../../admin/view/wp-slimstat-reports.php:747
3336
  msgid "Auto purge"
3337
  msgstr ""
3338
 
3339
+ #: ../../admin/view/wp-slimstat-reports.php:748
3340
  msgid "Oldest pageview"
3341
  msgstr ""
3342
 
3343
+ #: ../../admin/view/wp-slimstat-reports.php:748
3344
  msgid "No visits"
3345
  msgstr ""
3346
 
3347
+ #: ../../admin/view/wp-slimstat-reports.php:758
3348
+ #: ../../admin/view/wp-slimstat-reports.php:860
3349
  msgid ""
3350
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
3351
  "time the tracking code is executed."
3352
  msgstr ""
3353
 
3354
+ #: ../../admin/view/wp-slimstat-reports.php:760
3355
  msgid "How many pages have been visited on average during the current period."
3356
  msgstr ""
3357
 
3358
+ #: ../../admin/view/wp-slimstat-reports.php:761
3359
+ msgid "Average Pageviews"
 
3360
  msgstr ""
3361
 
3362
+ #: ../../admin/view/wp-slimstat-reports.php:762
3363
  msgid ""
3364
  "Visitors who landed on your site after searching for a keyword on Google, "
3365
  "Yahoo, etc."
3366
  msgstr ""
3367
 
3368
+ #: ../../admin/view/wp-slimstat-reports.php:763
3369
  msgid "From Search Results"
3370
  msgstr ""
3371
 
3372
+ #: ../../admin/view/wp-slimstat-reports.php:764
3373
  msgid ""
3374
  "Used to differentiate between multiple requests to download a file from one "
3375
  "internet address (IP) and requests originating from many distinct addresses"
3376
  msgstr ""
3377
 
3378
+ #: ../../admin/view/wp-slimstat-reports.php:765
3379
+ #: ../../admin/view/wp-slimstat-reports.php:780
3380
+ #: ../../admin/view/wp-slimstat-reports.php:1145
3381
+ #: ../../admin/view/wp-slimstat-reports.php:1149
3382
+ #: ../../admin/view/wp-slimstat-reports.php:1153
3383
  msgid "Unique IPs"
3384
  msgstr ""
3385
 
3386
+ #: ../../admin/view/wp-slimstat-reports.php:766
3387
  msgid "Last 5 minutes"
3388
  msgstr ""
3389
 
3390
+ #: ../../admin/view/wp-slimstat-reports.php:767
3391
  msgid "Last 30 minutes"
3392
  msgstr ""
3393
 
3394
+ #: ../../admin/view/wp-slimstat-reports.php:777
3395
  msgid ""
3396
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3397
  "multiple times if they perform multiple visits."
3398
  msgstr ""
3399
 
3400
+ #: ../../admin/view/wp-slimstat-reports.php:778
3401
  msgid "Human visits"
3402
  msgstr ""
3403
 
3404
+ #: ../../admin/view/wp-slimstat-reports.php:779
3405
  msgid "It includes only traffic generated by human visitors."
3406
  msgstr ""
3407
 
3408
+ #: ../../admin/view/wp-slimstat-reports.php:781
3409
+ #: ../../admin/view/wp-slimstat-reports.php:872
3410
  msgid ""
3411
  "Percentage of single-page visits, i.e. visits in which the person left your "
3412
  "site from the entrance page."
3413
  msgstr ""
3414
 
3415
+ #: ../../admin/view/wp-slimstat-reports.php:782
3416
  msgid "Bounce rate"
3417
  msgstr ""
3418
 
3419
+ #: ../../admin/view/wp-slimstat-reports.php:783
3420
  msgid "Visitors who had previously left a comment on your blog."
3421
  msgstr ""
3422
 
3423
+ #: ../../admin/view/wp-slimstat-reports.php:784
3424
  msgid "Known visitors"
3425
  msgstr ""
3426
 
3427
+ #: ../../admin/view/wp-slimstat-reports.php:785
3428
  msgid "Human users who visited your site only once."
3429
  msgstr ""
3430
 
3431
+ #: ../../admin/view/wp-slimstat-reports.php:786
3432
  msgid "New visitors"
3433
  msgstr ""
3434
 
3435
+ #: ../../admin/view/wp-slimstat-reports.php:787
3436
  msgid "Bots"
3437
  msgstr ""
3438
 
3439
+ #: ../../admin/view/wp-slimstat-reports.php:788
3440
  msgid "Pages per visit"
3441
  msgstr ""
3442
 
3443
+ #: ../../admin/view/wp-slimstat-reports.php:789
3444
+ #: ../../admin/view/wp-slimstat-reports.php:1158
3445
  msgid "Longest visit"
3446
  msgstr ""
3447
 
3448
+ #: ../../admin/view/wp-slimstat-reports.php:789
3449
  msgid "hits"
3450
  msgstr ""
3451
 
3452
+ #: ../../admin/view/wp-slimstat-reports.php:807
3453
  msgid "0 - 30 seconds"
3454
  msgstr ""
3455
 
3456
+ #: ../../admin/view/wp-slimstat-reports.php:813
3457
  msgid "31 - 60 seconds"
3458
  msgstr ""
3459
 
3460
+ #: ../../admin/view/wp-slimstat-reports.php:819
3461
  msgid "1 - 3 minutes"
3462
  msgstr ""
3463
 
3464
+ #: ../../admin/view/wp-slimstat-reports.php:825
3465
  msgid "3 - 5 minutes"
3466
  msgstr ""
3467
 
3468
+ #: ../../admin/view/wp-slimstat-reports.php:831
3469
  msgid "5 - 7 minutes"
3470
  msgstr ""
3471
 
3472
+ #: ../../admin/view/wp-slimstat-reports.php:837
3473
  msgid "7 - 10 minutes"
3474
  msgstr ""
3475
 
3476
+ #: ../../admin/view/wp-slimstat-reports.php:843
3477
  msgid "More than 10 minutes"
3478
  msgstr ""
3479
 
3480
+ #: ../../admin/view/wp-slimstat-reports.php:852
3481
  msgid "Average time on site"
3482
  msgstr ""
3483
 
3484
+ #: ../../admin/view/wp-slimstat-reports.php:862
3485
  msgid ""
3486
  "A referrer (or referring site) is the site that a visitor previously visited "
3487
  "before following a link to your site."
3488
  msgstr ""
3489
 
3490
+ #: ../../admin/view/wp-slimstat-reports.php:863
3491
  msgid "Unique Referrers"
3492
  msgstr ""
3493
 
3494
+ #: ../../admin/view/wp-slimstat-reports.php:864
3495
  msgid ""
3496
  "Visitors who visited the site by typing the URL directly into their browser. "
3497
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
3499
  "documents that don't include tracking variables."
3500
  msgstr ""
3501
 
3502
+ #: ../../admin/view/wp-slimstat-reports.php:865
3503
  msgid "Direct Pageviews"
3504
  msgstr ""
3505
 
3506
+ #: ../../admin/view/wp-slimstat-reports.php:866
3507
  msgid ""
3508
  "Visitors who came to your site via searches on Google or some other search "
3509
  "engine."
3510
  msgstr ""
3511
 
3512
+ #: ../../admin/view/wp-slimstat-reports.php:867
3513
  msgid "From a search result"
3514
  msgstr ""
3515
 
3516
+ #: ../../admin/view/wp-slimstat-reports.php:868
3517
  msgid ""
3518
  "The first page that a user views during a session. This is also known as the "
3519
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
3521
  "a landing page."
3522
  msgstr ""
3523
 
3524
+ #: ../../admin/view/wp-slimstat-reports.php:869
3525
  msgid "Unique Landing Pages"
3526
  msgstr ""
3527
 
3528
+ #: ../../admin/view/wp-slimstat-reports.php:870
3529
  msgid "Number of single-page visits to your site over the selected period."
3530
  msgstr ""
3531
 
3532
+ #: ../../admin/view/wp-slimstat-reports.php:871
3533
  msgid "Bounce Pages"
3534
  msgstr ""
3535
 
3536
+ #: ../../admin/view/wp-slimstat-reports.php:873
3537
  msgid "New Visitors Rate"
3538
  msgstr ""
3539
 
3540
+ #: ../../admin/view/wp-slimstat-reports.php:874
3541
  msgid ""
3542
  "Visitors who visited the site in the last 5 minutes coming from a search "
3543
  "engine."
3544
  msgstr ""
3545
 
3546
+ #: ../../admin/view/wp-slimstat-reports.php:875
3547
  msgid "Currently from search engines"
3548
  msgstr ""
3549
 
3550
+ #: ../../admin/view/wp-slimstat-reports.php:943
3551
  msgid "Number of pages in your site included in Google's index."
3552
  msgstr ""
3553
 
3554
+ #: ../../admin/view/wp-slimstat-reports.php:944
3555
  msgid "Google Index"
3556
  msgstr ""
3557
 
3558
+ #: ../../admin/view/wp-slimstat-reports.php:945
3559
  msgid "Number of pages, according to Google, that link back to your site."
3560
  msgstr ""
3561
 
3562
+ #: ../../admin/view/wp-slimstat-reports.php:946
3563
  msgid "Google Backlinks"
3564
  msgstr ""
3565
 
3566
+ #: ../../admin/view/wp-slimstat-reports.php:947
3567
  msgid ""
3568
  "How many times the Facebook Like button has been approximately clicked on "
3569
  "your site."
3570
  msgstr ""
3571
 
3572
+ #: ../../admin/view/wp-slimstat-reports.php:948
3573
  msgid "Facebook Likes"
3574
  msgstr ""
3575
 
3576
+ #: ../../admin/view/wp-slimstat-reports.php:949
3577
  msgid ""
3578
  "How many times your site has been shared by someone on the social network."
3579
  msgstr ""
3580
 
3581
+ #: ../../admin/view/wp-slimstat-reports.php:950
3582
  msgid "Facebook Shares"
3583
  msgstr ""
3584
 
3585
+ #: ../../admin/view/wp-slimstat-reports.php:951
3586
  msgid "How many times links to your website have been clicked on Facebook."
3587
  msgstr ""
3588
 
3589
+ #: ../../admin/view/wp-slimstat-reports.php:952
3590
  msgid "Facebook Clicks"
3591
  msgstr ""
3592
 
3593
+ #: ../../admin/view/wp-slimstat-reports.php:953
3594
  msgid ""
3595
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3596
  "traffic data."
3597
  msgstr ""
3598
 
3599
+ #: ../../admin/view/wp-slimstat-reports.php:954
3600
  msgid "Alexa World Rank"
3601
  msgstr ""
3602
 
3603
+ #: ../../admin/view/wp-slimstat-reports.php:955
3604
  msgid "Alexa Country Rank"
3605
  msgstr ""
3606
 
3607
+ #: ../../admin/view/wp-slimstat-reports.php:956
3608
  msgid "Alexa Popularity"
3609
  msgstr ""
3610
 
3611
+ #: ../../admin/view/wp-slimstat-reports.php:973
3612
  msgid "Bing Test"
3613
  msgstr ""
3614
 
3615
+ #: ../../admin/view/wp-slimstat-reports.php:974
3616
  msgid "AntiVirus Scan"
3617
  msgstr ""
3618
 
3619
+ #: ../../admin/view/wp-slimstat-reports.php:975
3620
  msgid "Google Bot Test"
3621
  msgstr ""
3622
 
3623
+ #: ../../admin/view/wp-slimstat-reports.php:976
3624
  msgid "Scan for Hostile Strings"
3625
  msgstr ""
3626
 
3627
+ #: ../../admin/view/wp-slimstat-reports.php:977
3628
  msgid "Generic Web Bot test"
3629
  msgstr ""
3630
 
3631
+ #: ../../admin/view/wp-slimstat-reports.php:978
3632
  msgid "Google Safe Browsing List"
3633
  msgstr ""
3634
 
3635
+ #: ../../admin/view/wp-slimstat-reports.php:979
3636
  msgid "Hostile External Links"
3637
  msgstr ""
3638
 
3639
+ #: ../../admin/view/wp-slimstat-reports.php:980
3640
  msgid "Other Treats"
3641
  msgstr ""
3642
 
3643
+ #: ../../admin/view/wp-slimstat-reports.php:1006
3644
  msgid "Passed"
3645
  msgstr ""
3646
 
3647
+ #: ../../admin/view/wp-slimstat-reports.php:1006
3648
  msgid "At Risk"
3649
  msgstr ""
3650
 
3651
+ #: ../../admin/view/wp-slimstat-reports.php:1009
3652
  msgid "Timed Out"
3653
  msgstr ""
3654
 
3655
  # Unknown
3656
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3657
  msgid "c-xx"
3658
  msgstr "Unknown"
3659
 
3660
  # Afghanistan
3661
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3662
  msgid "c-af"
3663
  msgstr "Afghanistan"
3664
 
3665
  # Åland Islands
3666
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3667
  msgid "c-ax"
3668
  msgstr "Aland Islands"
3669
 
3670
  # Albania
3671
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3672
  msgid "c-al"
3673
  msgstr "Albania"
3674
 
3675
  # Algeria
3676
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3677
  msgid "c-dz"
3678
  msgstr "Algeria"
3679
 
3680
  # Andorra
3681
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3682
  msgid "c-ad"
3683
  msgstr "Andorra"
3684
 
3685
  # Angola
3686
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3687
  msgid "c-ao"
3688
  msgstr "Angola"
3689
 
3690
  # Anguilla
3691
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3692
  msgid "c-ai"
3693
  msgstr "Anguilla"
3694
 
3695
  # Antigua and Barbuda
3696
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3697
  msgid "c-ag"
3698
  msgstr "Antigua and Barbuda"
3699
 
3700
  # Argentina
3701
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3702
  msgid "c-ar"
3703
  msgstr "Argentina"
3704
 
3705
  # Armenia
3706
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3707
  msgid "c-am"
3708
  msgstr "Armenia"
3709
 
3710
  # Aruba
3711
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3712
  msgid "c-aw"
3713
  msgstr "Aruba"
3714
 
3715
  # Australia
3716
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3717
  msgid "c-au"
3718
  msgstr "Australia"
3719
 
3720
  # Austria
3721
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3722
  msgid "c-at"
3723
  msgstr "Austria"
3724
 
3725
  # Azerbaijan
3726
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3727
  msgid "c-az"
3728
  msgstr "Azerbaijan"
3729
 
3730
  # Bahamas
3731
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3732
  msgid "c-bs"
3733
  msgstr "Bahamas"
3734
 
3735
  # Bahrain
3736
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3737
  msgid "c-bh"
3738
  msgstr "Bahrain"
3739
 
3740
  # Bangladesh
3741
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3742
  msgid "c-bd"
3743
  msgstr "Bangladesh"
3744
 
3745
  # Barbados
3746
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3747
  msgid "c-bb"
3748
  msgstr "Barbados"
3749
 
3750
  # Belarus
3751
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3752
  msgid "c-by"
3753
  msgstr "Belarus"
3754
 
3755
  # Belgium
3756
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3757
  msgid "c-be"
3758
  msgstr "Belgium"
3759
 
3760
  # Belize
3761
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3762
  msgid "c-bz"
3763
  msgstr "Belize"
3764
 
3765
  # Benin
3766
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3767
  msgid "c-bj"
3768
  msgstr "Benin"
3769
 
3770
  # Bermuda
3771
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3772
  msgid "c-bm"
3773
  msgstr "Bermuda"
3774
 
3775
  # Bhutan
3776
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3777
  msgid "c-bt"
3778
  msgstr "Bhutan"
3779
 
3780
  # Bolivia
3781
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3782
  msgid "c-bo"
3783
  msgstr "Bolivia"
3784
 
3785
  # Bosnia and Herzegovina
3786
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3787
  msgid "c-ba"
3788
  msgstr "Bosnia and Herzegovina"
3789
 
3790
  # Botswana
3791
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3792
  msgid "c-bw"
3793
  msgstr "Botswana"
3794
 
3795
  # Brazil
3796
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3797
  msgid "c-br"
3798
  msgstr "Brazil"
3799
 
3800
  # Brunei Darussalam
3801
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3802
  msgid "c-bn"
3803
  msgstr "Brunei Darussalam"
3804
 
3805
  # Bulgaria
3806
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3807
  msgid "c-bg"
3808
  msgstr "Bulgaria"
3809
 
3810
  # Burkina Faso
3811
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3812
  msgid "c-bf"
3813
  msgstr "Burkina Faso"
3814
 
3815
  # Burundi
3816
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3817
  msgid "c-bi"
3818
  msgstr "Burundi"
3819
 
3820
  # Cambodia
3821
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3822
  msgid "c-kh"
3823
  msgstr "Cambodia"
3824
 
3825
  # Cameroon
3826
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3827
  msgid "c-cm"
3828
  msgstr "Cameroon"
3829
 
3830
  # Canada
3831
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3832
  msgid "c-ca"
3833
  msgstr "Canada"
3834
 
3835
  # Cape Verde
3836
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3837
  msgid "c-cv"
3838
  msgstr "Cape Verde"
3839
 
3840
  # Cayman Islands
3841
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3842
  msgid "c-ky"
3843
  msgstr "Cayman Islands"
3844
 
3845
  # Central African Republic
3846
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3847
  msgid "c-cf"
3848
  msgstr "Central African Republic"
3849
 
3850
  # Chad
3851
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3852
  msgid "c-td"
3853
  msgstr "Chad"
3854
 
3855
  # Chile
3856
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3857
  msgid "c-cl"
3858
  msgstr "Chile"
3859
 
3860
  # China
3861
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3862
  msgid "c-cn"
3863
  msgstr "China"
3864
 
3865
  # Colombia
3866
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3867
  msgid "c-co"
3868
  msgstr "Colombia"
3869
 
3870
  # Comoros
3871
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3872
  msgid "c-km"
3873
  msgstr "Comoros"
3874
 
3875
  # Congo
3876
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3877
  msgid "c-cg"
3878
  msgstr "Congo"
3879
 
3880
  # The Democratic Republic of the Congo
3881
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3882
  msgid "c-cd"
3883
  msgstr "The Democratic Republic of the Congo"
3884
 
3885
  # Costa Rica
3886
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3887
  msgid "c-cr"
3888
  msgstr "Costa Rica"
3889
 
3890
  # Côte d'Ivoire
3891
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3892
  msgid "c-ci"
3893
  msgstr "Côte d'Ivoire"
3894
 
3895
  # Croatia
3896
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3897
  msgid "c-hr"
3898
  msgstr "Croatia"
3899
 
3900
  # Cuba
3901
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3902
  msgid "c-cu"
3903
  msgstr "Cuba"
3904
 
3905
  # Cyprus
3906
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3907
  msgid "c-cy"
3908
  msgstr "Cyprus"
3909
 
3910
  # Czech Republic
3911
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3912
  msgid "c-cz"
3913
  msgstr "Czech Republic"
3914
 
3915
  # Denmark
3916
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3917
  msgid "c-dk"
3918
  msgstr "Denmark"
3919
 
3920
  # Djibouti
3921
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3922
  msgid "c-dj"
3923
  msgstr "Djibouti"
3924
 
3925
  # Dominica
3926
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3927
  msgid "c-dm"
3928
  msgstr "Dominica"
3929
 
3930
  # Dominican Republic
3931
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3932
  msgid "c-do"
3933
  msgstr "Dominican Republic"
3934
 
3935
  # Ecuador
3936
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3937
  msgid "c-ec"
3938
  msgstr "Ecuador"
3939
 
3940
  # Egypt
3941
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3942
  msgid "c-eg"
3943
  msgstr "Egypt"
3944
 
3945
  # El Salvador
3946
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3947
  msgid "c-sv"
3948
  msgstr "El Salvador"
3949
 
3950
  # Equatorial Guinea
3951
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3952
  msgid "c-gq"
3953
  msgstr "Equatorial Guinea"
3954
 
3955
  # Eritrea
3956
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3957
  msgid "c-er"
3958
  msgstr "Eritrea"
3959
 
3960
  # Estonia
3961
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3962
  msgid "c-ee"
3963
  msgstr "Estonia"
3964
 
3965
  # Ethiopia
3966
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3967
  msgid "c-et"
3968
  msgstr "Ethiopia"
3969
 
3970
  # Faroe Islands
3971
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3972
  msgid "c-fo"
3973
  msgstr "Faroe Islands"
3974
 
3975
  # Falkland Islands (Malvinas)
3976
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3977
  msgid "c-fk"
3978
  msgstr "Falkland Islands (Malvinas)"
3979
 
3980
  # Fiji
3981
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3982
  msgid "c-fj"
3983
  msgstr "Fiji"
3984
 
3985
  # Finland
3986
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3987
  msgid "c-fi"
3988
  msgstr "Finland"
3989
 
3990
  # France
3991
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3992
  msgid "c-fr"
3993
  msgstr "France"
3994
 
3995
  # French Guiana
3996
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3997
  msgid "c-gf"
3998
  msgstr "French Guiana"
3999
 
4000
  # Gabon
4001
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4002
  msgid "c-ga"
4003
  msgstr "Gabon"
4004
 
4005
  # Gambia
4006
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4007
  msgid "c-gm"
4008
  msgstr "Gambia"
4009
 
4010
  # Georgia
4011
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4012
  msgid "c-ge"
4013
  msgstr "Georgia"
4014
 
4015
  # Germany
4016
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4017
  msgid "c-de"
4018
  msgstr "Germany"
4019
 
4020
  # Ghana
4021
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4022
  msgid "c-gh"
4023
  msgstr "Ghana"
4024
 
4025
  # Greece
4026
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4027
  msgid "c-gr"
4028
  msgstr "Greece"
4029
 
4030
  # Greenland
4031
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4032
  msgid "c-gl"
4033
  msgstr "Greenland"
4034
 
4035
  # Grenada
4036
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4037
  msgid "c-gd"
4038
  msgstr "Grenada"
4039
 
4040
  # Guadeloupe
4041
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4042
  msgid "c-gp"
4043
  msgstr "Guadeloupe"
4044
 
4045
  # Guatemala
4046
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4047
  msgid "c-gt"
4048
  msgstr "Guatemala"
4049
 
4050
  # Guinea
4051
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4052
  msgid "c-gn"
4053
  msgstr "Guinea"
4054
 
4055
  # Guinea-Bissau
4056
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4057
  msgid "c-gw"
4058
  msgstr "Guinea-Bissau"
4059
 
4060
  # Guyana
4061
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4062
  msgid "c-gy"
4063
  msgstr "Guyana"
4064
 
4065
  # Haiti
4066
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4067
  msgid "c-ht"
4068
  msgstr "Haiti"
4069
 
4070
  # Honduras
4071
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4072
  msgid "c-hn"
4073
  msgstr "Honduras"
4074
 
4075
  # Hong Kong
4076
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4077
  msgid "c-hk"
4078
  msgstr "Hong Kong"
4079
 
4080
  # Hungary
4081
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4082
  msgid "c-hu"
4083
  msgstr "Hungary"
4084
 
4085
  # Iceland
4086
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4087
  msgid "c-is"
4088
  msgstr "Iceland"
4089
 
4090
  # India
4091
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4092
  msgid "c-in"
4093
  msgstr "India"
4094
 
4095
  # Indonesia
4096
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4097
  msgid "c-id"
4098
  msgstr "Indonesia"
4099
 
4100
  # Islamic Republic of Iran
4101
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4102
  msgid "c-ir"
4103
  msgstr "Islamic Republic of Iran"
4104
 
4105
  # Iraq
4106
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4107
  msgid "c-iq"
4108
  msgstr "Iraq"
4109
 
4110
  # Ireland
4111
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4112
  msgid "c-ie"
4113
  msgstr "Ireland"
4114
 
4115
  # Israel
4116
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4117
  msgid "c-il"
4118
  msgstr "Israel"
4119
 
4120
  # Italy
4121
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4122
  msgid "c-it"
4123
  msgstr "Italy"
4124
 
4125
  # Jamaica
4126
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4127
  msgid "c-jm"
4128
  msgstr "Jamaica"
4129
 
4130
  # Japan
4131
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4132
  msgid "c-jp"
4133
  msgstr "Japan"
4134
 
4135
  # Jordan
4136
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4137
  msgid "c-jo"
4138
  msgstr "Jordan"
4139
 
4140
  # Kazakhstan
4141
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4142
  msgid "c-kz"
4143
  msgstr "Kazakhstan"
4144
 
4145
  # Kenya
4146
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4147
  msgid "c-ke"
4148
  msgstr "Kenya"
4149
 
4150
  # Nauru
4151
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4152
  msgid "c-nr"
4153
  msgstr "Nauru"
4154
 
4155
  # Democratic People's Republic of Korea
4156
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4157
  msgid "c-kp"
4158
  msgstr "Democratic People's Republic of Korea"
4159
 
4160
  # Republic of Korea
4161
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4162
  msgid "c-kr"
4163
  msgstr "Republic of Korea"
4164
 
4165
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4166
  msgid "c-kv"
4167
  msgstr "Kosovo"
4168
 
4169
  # Kuwait
4170
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4171
  msgid "c-kw"
4172
  msgstr "Kuwait"
4173
 
4174
  # Kyrgyzstan
4175
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4176
  msgid "c-kg"
4177
  msgstr "Kyrgyzstan"
4178
 
4179
  # Lao People's Democratic Republic
4180
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4181
  msgid "c-la"
4182
  msgstr "Lao People's Democratic Republic"
4183
 
4184
  # Latvia
4185
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4186
  msgid "c-lv"
4187
  msgstr "Latvia"
4188
 
4189
  # Lebanon
4190
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4191
  msgid "c-lb"
4192
  msgstr "Lebanon"
4193
 
4194
  # Lesotho
4195
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4196
  msgid "c-ls"
4197
  msgstr "Lesotho"
4198
 
4199
  # Liberia
4200
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4201
  msgid "c-lr"
4202
  msgstr "Liberia"
4203
 
4204
  # Libyan Arab Jamahiriya
4205
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4206
  msgid "c-ly"
4207
  msgstr "Libyan Arab Jamahiriya"
4208
 
4209
  # Liechtenstein
4210
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4211
  msgid "c-li"
4212
  msgstr "Liechtenstein"
4213
 
4214
  # Lithuania
4215
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4216
  msgid "c-lt"
4217
  msgstr "Lithuania"
4218
 
4219
  # Luxembourg
4220
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4221
  msgid "c-lu"
4222
  msgstr "Luxembourg"
4223
 
4224
  # The Former Yugoslav Republic of Macedonia
4225
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4226
  msgid "c-mk"
4227
  msgstr "The Former Yugoslav Republic of Macedonia"
4228
 
4229
  # Madagascar
4230
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4231
  msgid "c-mg"
4232
  msgstr "Madagascar"
4233
 
4234
  # Malawi
4235
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4236
  msgid "c-mw"
4237
  msgstr "Malawi"
4238
 
4239
  # Malaysia
4240
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4241
  msgid "c-my"
4242
  msgstr "Malaysia"
4243
 
4244
  # Mali
4245
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4246
  msgid "c-ml"
4247
  msgstr "Mali"
4248
 
4249
  # Malta
4250
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4251
  msgid "c-mt"
4252
  msgstr "Malta"
4253
 
4254
  # Martinique
4255
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4256
  msgid "c-mq"
4257
  msgstr "Martinique"
4258
 
4259
  # Mauritania
4260
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4261
  msgid "c-mr"
4262
  msgstr "Mauritania"
4263
 
4264
  # Mauritius
4265
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4266
  msgid "c-mu"
4267
  msgstr "Mauritius"
4268
 
4269
  # Mexico
4270
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4271
  msgid "c-mx"
4272
  msgstr "Mexico"
4273
 
4274
  # Moldova
4275
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4276
  msgid "c-md"
4277
  msgstr "Moldova"
4278
 
4279
  # Mongolia
4280
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4281
  msgid "c-mn"
4282
  msgstr "Mongolia"
4283
 
4284
  # Montenegro
4285
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4286
  msgid "c-me"
4287
  msgstr "Montenegro"
4288
 
4289
  # Montserrat
4290
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4291
  msgid "c-ms"
4292
  msgstr "Montserrat"
4293
 
4294
  # Morocco
4295
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4296
  msgid "c-ma"
4297
  msgstr "Morocco"
4298
 
4299
  # Mozambique
4300
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4301
  msgid "c-mz"
4302
  msgstr "Mozambique"
4303
 
4304
  # Myanmar
4305
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4306
  msgid "c-mm"
4307
  msgstr "Myanmar"
4308
 
4309
  # Namibia
4310
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4311
  msgid "c-na"
4312
  msgstr "Namibia"
4313
 
4314
  # Nepal
4315
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4316
  msgid "c-np"
4317
  msgstr "Nepal"
4318
 
4319
  # Netherlands
4320
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4321
  msgid "c-nl"
4322
  msgstr "Netherlands"
4323
 
4324
  # New Caledonia
4325
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4326
  msgid "c-nc"
4327
  msgstr "New Caledonia"
4328
 
4329
  # New Zealand
4330
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4331
  msgid "c-nz"
4332
  msgstr "New Zealand"
4333
 
4334
  # Nicaragua
4335
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4336
  msgid "c-ni"
4337
  msgstr "Nicaragua"
4338
 
4339
  # Niger
4340
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4341
  msgid "c-ne"
4342
  msgstr "Niger"
4343
 
4344
  # Nigeria
4345
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4346
  msgid "c-ng"
4347
  msgstr "Nigeria"
4348
 
4349
  # Norway
4350
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4351
  msgid "c-no"
4352
  msgstr "Norway"
4353
 
4354
  # Oman
4355
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4356
  msgid "c-om"
4357
  msgstr "Oman"
4358
 
4359
  # Pakistan
4360
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4361
  msgid "c-pk"
4362
  msgstr "Pakistan"
4363
 
4364
  # Palau
4365
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4366
  msgid "c-pw"
4367
  msgstr "Palau"
4368
 
4369
  # Occupied Palestinian Territory
4370
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4371
  msgid "c-ps"
4372
  msgstr "Occupied Palestinian Territory"
4373
 
4374
  # Panama
4375
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4376
  msgid "c-pa"
4377
  msgstr "Panama"
4378
 
4379
  # Papua New Guinea
4380
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4381
  msgid "c-pg"
4382
  msgstr "Papua New Guinea"
4383
 
4384
  # Paraguay
4385
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4386
  msgid "c-py"
4387
  msgstr "Paraguay"
4388
 
4389
  # Peru
4390
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4391
  msgid "c-pe"
4392
  msgstr "Peru"
4393
 
4394
  # Philippines
4395
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4396
  msgid "c-ph"
4397
  msgstr "Philippines"
4398
 
4399
  # Poland
4400
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4401
  msgid "c-pl"
4402
  msgstr "Poland"
4403
 
4404
  # Portugal
4405
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4406
  msgid "c-pt"
4407
  msgstr "Portugal"
4408
 
4409
  # Puerto Rico
4410
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4411
  msgid "c-pr"
4412
  msgstr "Puerto Rico"
4413
 
4414
  # Qatar
4415
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4416
  msgid "c-qa"
4417
  msgstr "Qatar"
4418
 
4419
  # Réunion
4420
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4421
  msgid "c-re"
4422
  msgstr "Réunion"
4423
 
4424
  # Romania
4425
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4426
  msgid "c-ro"
4427
  msgstr "Romania"
4428
 
4429
  # Russian Federation
4430
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4431
  msgid "c-ru"
4432
  msgstr "Russian Federation"
4433
 
4434
  # Rwanda
4435
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4436
  msgid "c-rw"
4437
  msgstr "Rwanda"
4438
 
4439
  # Saint Kitts and Nevis
4440
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4441
  msgid "c-kn"
4442
  msgstr "Saint Kitts and Nevis"
4443
 
4444
  # Saint Lucia
4445
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4446
  msgid "c-lc"
4447
  msgstr "Saint Lucia"
4448
 
4449
  # Saint Martin
4450
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4451
  msgid "c-mf"
4452
  msgstr "Saint Martin"
4453
 
4454
  # Saint Vincent and the Grenadines
4455
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4456
  msgid "c-vc"
4457
  msgstr "Saint Vincent and the Grenadines"
4458
 
4459
  # Samoa
4460
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4461
  msgid "c-ws"
4462
  msgstr "Samoa"
4463
 
4464
  # Sao Tome and Principe
4465
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4466
  msgid "c-st"
4467
  msgstr "Sao Tome and Principe"
4468
 
4469
  # Saudi Arabia
4470
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4471
  msgid "c-sa"
4472
  msgstr "Saudi Arabia"
4473
 
4474
  # Senegal
4475
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4476
  msgid "c-sn"
4477
  msgstr "Senegal"
4478
 
4479
  # Serbia
4480
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4481
  msgid "c-rs"
4482
  msgstr "Serbia"
4483
 
4484
  # Sierra Leone
4485
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4486
  msgid "c-sl"
4487
  msgstr "Sierra Leone"
4488
 
4489
  # Singapore
4490
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4491
  msgid "c-sg"
4492
  msgstr "Singapore"
4493
 
4494
  # Slovakia
4495
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4496
  msgid "c-sk"
4497
  msgstr "Slovakia"
4498
 
4499
  # Slovenia
4500
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4501
  msgid "c-si"
4502
  msgstr "Slovenia"
4503
 
4504
  # Solomon Islands
4505
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4506
  msgid "c-sb"
4507
  msgstr "Solomon Islands"
4508
 
4509
  # Somalia
4510
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4511
  msgid "c-so"
4512
  msgstr "Somalia"
4513
 
4514
  # South Africa
4515
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4516
  msgid "c-za"
4517
  msgstr "South Africa"
4518
 
4519
  # South Georgia and the South Sandwich Islands
4520
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4521
  msgid "c-gs"
4522
  msgstr "South Georgia and the South Sandwich Islands"
4523
 
4524
  # Spain
4525
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4526
  msgid "c-es"
4527
  msgstr "Spain"
4528
 
4529
  # Sri Lanka
4530
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4531
  msgid "c-lk"
4532
  msgstr "Sri Lanka"
4533
 
4534
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4535
+ msgid "c-sc"
4536
+ msgstr "Seychelles"
4537
+
4538
  # Sudan
4539
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4540
  msgid "c-sd"
4541
  msgstr "Sudan"
4542
 
4543
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4544
  msgid "c-ss"
4545
  msgstr "South Sudan"
4546
 
4547
  # Suriname
4548
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4549
  msgid "c-sr"
4550
  msgstr "Suriname"
4551
 
4552
  # Svalbard and Jan Mayen
4553
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4554
  msgid "c-sj"
4555
  msgstr "Svalbard and Jan Mayen"
4556
 
4557
  # Swaziland
4558
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4559
  msgid "c-sz"
4560
  msgstr "Swaziland"
4561
 
4562
  # Sweden
4563
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4564
  msgid "c-se"
4565
  msgstr "Sweden"
4566
 
4567
  # Switzerland
4568
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4569
  msgid "c-ch"
4570
  msgstr "Switzerland"
4571
 
4572
  # Syrian Arab Republic
4573
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4574
  msgid "c-sy"
4575
  msgstr "Syrian Arab Republic"
4576
 
4577
  # Taiwan, Province of China
4578
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4579
  msgid "c-tw"
4580
  msgstr "Taiwan"
4581
 
4582
  # Tajikistan
4583
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4584
  msgid "c-tj"
4585
  msgstr "Tajikistan"
4586
 
4587
  # United Republic of Tanzania
4588
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4589
  msgid "c-tz"
4590
  msgstr "United Republic of Tanzania"
4591
 
4592
  # Thailand
4593
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4594
  msgid "c-th"
4595
  msgstr "Thailand"
4596
 
4597
  # Timor-Leste
4598
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4599
  msgid "c-tl"
4600
  msgstr "Timor-Leste"
4601
 
4602
  # Togo
4603
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4604
  msgid "c-tg"
4605
  msgstr "Togo"
4606
 
4607
  # Tonga
4608
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4609
  msgid "c-to"
4610
  msgstr "Tonga"
4611
 
4612
  # Trinidad and Tobago
4613
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4614
  msgid "c-tt"
4615
  msgstr "Trinidad and Tobago"
4616
 
4617
  # Tunisia
4618
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4619
  msgid "c-tn"
4620
  msgstr "Tunisia"
4621
 
4622
  # Turkey
4623
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4624
  msgid "c-tr"
4625
  msgstr "Turkey"
4626
 
4627
  # Turkmenistan
4628
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4629
  msgid "c-tm"
4630
  msgstr "Turkmenistan"
4631
 
4632
  # Turks and Caicos Islands
4633
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4634
  msgid "c-tc"
4635
  msgstr "Turks and Caicos Islands"
4636
 
4637
  # Uganda
4638
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4639
  msgid "c-ug"
4640
  msgstr "Uganda"
4641
 
4642
  # Ukraine
4643
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4644
  msgid "c-ua"
4645
  msgstr "Ukraine"
4646
 
4647
  # United Arab Emirates
4648
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4649
  msgid "c-ae"
4650
  msgstr "United Arab Emirates"
4651
 
4652
  # United Kingdom
4653
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4654
  msgid "c-gb"
4655
  msgstr "United Kingdom"
4656
 
4657
  # United States
4658
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4659
  msgid "c-us"
4660
  msgstr "United States"
4661
 
4662
  # Uruguay
4663
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4664
  msgid "c-uy"
4665
  msgstr "Uruguay"
4666
 
4667
  # Uzbekistan
4668
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4669
  msgid "c-uz"
4670
  msgstr "Uzbekistan"
4671
 
4672
  # Vanuatu
4673
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4674
  msgid "c-vu"
4675
  msgstr "Vanuatu"
4676
 
4677
  # Venezuela
4678
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4679
  msgid "c-ve"
4680
  msgstr "Venezuela"
4681
 
4682
  # Viet Nam
4683
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4684
  msgid "c-vn"
4685
  msgstr "Viet Nam"
4686
 
4687
  # British Virgin Islands
4688
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4689
  msgid "c-vg"
4690
  msgstr "British Virgin Islands"
4691
 
4692
  # U.S. Virgin Islands
4693
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4694
  msgid "c-vi"
4695
  msgstr "U.S. Virgin Islands"
4696
 
4697
  # Western Sahara
4698
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4699
  msgid "c-eh"
4700
  msgstr "Western Sahara"
4701
 
4702
  # Yemen
4703
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4704
  msgid "c-ye"
4705
  msgstr "Yemen"
4706
 
4707
  # Zambia
4708
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4709
  msgid "c-zm"
4710
  msgstr "Zambia"
4711
 
4712
  # Zimbabwe
4713
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4714
  msgid "c-zw"
4715
  msgstr "Zimbabwe"
4716
 
4717
  # Guernsey
4718
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4719
  msgid "c-gg"
4720
  msgstr "Guernsey"
4721
 
4722
  # Jersey
4723
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4724
  msgid "c-je"
4725
  msgstr "Jersey"
4726
 
4727
  # Isle of Man
4728
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4729
  msgid "c-im"
4730
  msgstr "Isle of Man"
4731
 
4732
  # Maldives
4733
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4734
  msgid "c-mv"
4735
  msgstr "Maldives"
4736
 
4737
+ #: ../../admin/view/wp-slimstat-reports.php:1024
4738
  msgid "c-eu"
4739
  msgstr ""
4740
 
4741
+ #: ../../admin/view/wp-slimstat-reports.php:1113
4742
  msgid ""
4743
  "This value includes not only posts, but also custom post types, regardless "
4744
  "of their status"
4745
  msgstr ""
4746
 
4747
+ #: ../../admin/view/wp-slimstat-reports.php:1114
4748
  msgid "Content Items"
4749
  msgstr ""
4750
 
4751
+ #: ../../admin/view/wp-slimstat-reports.php:1115
4752
  msgid "Total Comments"
4753
  msgstr ""
4754
 
4755
+ #: ../../admin/view/wp-slimstat-reports.php:1116
4756
  msgid "Pingbacks"
4757
  msgstr ""
4758
 
4759
+ #: ../../admin/view/wp-slimstat-reports.php:1117
4760
  msgid "Trackbacks"
4761
  msgstr ""
4762
 
4763
+ #: ../../admin/view/wp-slimstat-reports.php:1118
4764
  msgid "Longest Post (ID)"
4765
  msgstr ""
4766
 
4767
+ #: ../../admin/view/wp-slimstat-reports.php:1119
4768
  msgid "Longest Comment (ID)"
4769
  msgstr ""
4770
 
4771
+ #: ../../admin/view/wp-slimstat-reports.php:1120
4772
  msgid "Avg Comments Per Post"
4773
  msgstr ""
4774
 
4775
+ #: ../../admin/view/wp-slimstat-reports.php:1121
4776
  msgid "Avg Posts Per Day"
4777
  msgstr ""
4778
 
4779
+ #: ../../admin/view/wp-slimstat-reports.php:1149
4780
  msgid "Visits"
4781
  msgstr ""
4782
 
4783
+ #: ../../admin/view/wp-slimstat-reports.php:1153
4784
  msgid "Domains"
4785
  msgstr ""
4786
+
4787
+ #: ../../admin/view/wp-slimstat-reports.php:1158
4788
+ msgid "Avg Pageviews"
4789
+ msgstr ""
admin/lang/wp-slimstat-es_ES.mo CHANGED
Binary file
admin/lang/wp-slimstat-es_ES.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-12-30 22:22-0500\n"
6
- "PO-Revision-Date: 2013-12-30 22:22-0500\n"
7
- "Last-Translator: get used to it <support@getused.to.it>\n"
8
  "Language-Team: \n"
9
  "Language: es_ES\n"
10
  "MIME-Version: 1.0\n"
@@ -13,419 +13,474 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: s;\n"
16
- "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: ../..\n"
18
 
19
- #: ../../wp-slimstat.php:1175 ../../admin/wp-slimstat-admin.php:396
20
- #: ../../admin/view/wp-slimstat-reports.php:32
21
  msgid "Right Now"
22
- msgstr ""
23
 
24
- #: ../../wp-slimstat.php:1176 ../../admin/wp-slimstat-admin.php:397
25
- #: ../../admin/wp-slimstat-admin.php:414
26
- #: ../../admin/view/wp-slimstat-reports.php:33
27
  msgid "Overview"
28
- msgstr ""
29
 
30
- #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:398
31
- #: ../../admin/wp-slimstat-admin.php:415
32
- #: ../../admin/view/wp-slimstat-reports.php:34
33
  msgid "Visitors"
34
  msgstr "Visitantes"
35
 
36
- #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:399
37
- #: ../../admin/wp-slimstat-admin.php:416
38
- #: ../../admin/view/wp-slimstat-reports.php:35
39
  msgid "Content"
40
  msgstr "Contenido"
41
 
42
- #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:400
43
- #: ../../admin/wp-slimstat-admin.php:417 ../../admin/view/index.php:160
44
- #: ../../admin/view/wp-slimstat-reports.php:36
45
  msgid "Traffic Sources"
46
  msgstr "Origen del Tráfico"
47
 
48
- #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:401
49
- #: ../../admin/wp-slimstat-admin.php:418
50
- #: ../../admin/view/wp-slimstat-reports.php:37
51
- #: ../../admin/view/wp-slimstat-reports.php:142
52
  msgid "World Map"
53
  msgstr "Mapa del Mundo"
54
 
55
- #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:402
56
- #: ../../admin/wp-slimstat-admin.php:419
57
- #: ../../admin/view/wp-slimstat-reports.php:38
58
  msgid "Custom Reports"
59
  msgstr "Informes Personalizados"
60
 
61
- #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:403
62
- #: ../../admin/wp-slimstat-admin.php:420 ../../admin/config/addons.php:29
63
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:228
64
  msgid "Add-ons"
65
- msgstr ""
66
 
67
- #: ../../wp-slimstat.php:1185 ../../admin/wp-slimstat-admin.php:449
68
- #: ../../admin/wp-slimstat-admin.php:452 ../../admin/wp-slimstat-admin.php:496
69
- #: ../../admin/wp-slimstat-admin.php:499 ../../admin/config/index.php:14
70
- #: ../../admin/config/index.php:134
71
  #, fuzzy
72
  msgid "Settings"
73
  msgstr "Seleccionar orden"
74
 
75
- #: ../../admin/wp-slimstat-admin.php:395 ../../admin/wp-slimstat-admin.php:407
76
- #: ../../admin/wp-slimstat-admin.php:410
77
  #, fuzzy
78
  msgid "SlimStat"
79
  msgstr "Acerca de WP-SlimStat"
80
 
81
- #: ../../admin/wp-slimstat-admin.php:513
82
  msgid "Pageviews in the last 365 days"
83
  msgstr ""
84
 
85
- #: ../../admin/wp-slimstat-admin.php:537
86
  msgid "Show on screen"
 
 
 
 
87
  msgstr ""
88
 
89
- #: ../../admin/wp-slimstat-admin.php:584
90
  msgid "There was an error updating the following options:"
91
- msgstr ""
92
 
93
- #: ../../admin/wp-slimstat-admin.php:587
94
  msgid "Your settings have been successfully updated."
95
- msgstr ""
96
 
97
- #: ../../admin/wp-slimstat-admin.php:610
98
  msgid "Save Changes"
99
- msgstr ""
100
 
101
- #: ../../admin/wp-slimstat-admin.php:629
102
  msgid "Yes"
103
- msgstr ""
104
 
105
- #: ../../admin/wp-slimstat-admin.php:630
106
- #: ../../admin/view/wp-slimstat-reports.php:656
107
  msgid "No"
108
- msgstr ""
109
 
110
- #: ../../admin/wp-slimstat-admin.php:670
111
  msgid ""
112
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
113
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
114
  "href=\"http://wordpress.org/extend/plugins/wp-slimstat/faq/\">check the "
115
  "FAQs</a> for more information."
116
  msgstr ""
 
 
 
 
117
 
118
- #: ../../admin/wp-slimstat-admin.php:690
119
  msgid "Definitions"
120
- msgstr ""
121
 
122
- #: ../../admin/wp-slimstat-admin.php:693
123
  #, fuzzy
124
  msgid "Pageview"
125
  msgstr "Paginas visitadas"
126
 
127
- #: ../../admin/wp-slimstat-admin.php:693
128
  msgid ""
129
  "A request to load a single HTML file (\"page\"). This should be contrasted "
130
  "with a \"hit\", which refers to a request for any file from a web server. WP "
131
  "SlimStat logs a pageview each time the tracking code is executed"
132
  msgstr ""
 
 
 
 
133
 
134
- #: ../../admin/wp-slimstat-admin.php:694
135
  #, fuzzy
136
  msgid "(Human) Visit"
137
  msgstr "Visitas humanas"
138
 
139
- #: ../../admin/wp-slimstat-admin.php:694
140
  msgid ""
141
  "A period of interaction between a visitor's browser and your website, ending "
142
  "when the browser is closed or when the user has been inactive on that site "
143
  "for 30 minutes"
144
  msgstr ""
 
 
 
145
 
146
- #: ../../admin/wp-slimstat-admin.php:695 ../../admin/view/index.php:132
147
- #: ../../admin/view/right-now.php:148
148
  #, fuzzy
149
  msgid "Known Visitor"
150
  msgstr "Palabras clave recientes"
151
 
152
- #: ../../admin/wp-slimstat-admin.php:695
153
  msgid ""
154
  "Any user who has left a comment on your blog, and is thus identified by "
155
  "Wordpress as a returning visitor"
156
  msgstr ""
 
 
157
 
158
- #: ../../admin/wp-slimstat-admin.php:696
159
  #, fuzzy
160
  msgid "Unique IP"
161
  msgstr "IPs Unicas"
162
 
163
- #: ../../admin/wp-slimstat-admin.php:696
164
  msgid ""
165
  "Used to differentiate between multiple requests to download a file from one "
166
  "internet address (IP) and requests originating from many distinct addresses; "
167
  "since this measurement looks only at the internet address a pageview came "
168
  "from, it is useful, but not perfect"
169
  msgstr ""
 
 
 
 
 
170
 
171
- #: ../../admin/wp-slimstat-admin.php:697 ../../admin/wp-slimstat-admin.php:739
172
- #: ../../admin/view/right-now.php:98
173
- #: ../../admin/view/wp-slimstat-reports.php:64
174
  msgid "Originating IP"
175
- msgstr ""
176
 
177
- #: ../../admin/wp-slimstat-admin.php:697
178
  msgid ""
179
  "the originating IP address of a client connecting to a web server through an "
180
  "HTTP proxy or load balancer"
181
  msgstr ""
 
 
182
 
183
- #: ../../admin/wp-slimstat-admin.php:698
184
  #, fuzzy
185
  msgid "Direct Traffic"
186
  msgstr "Visita Directa"
187
 
188
- #: ../../admin/wp-slimstat-admin.php:698
189
  msgid ""
190
  "All those people showing up to your Web site by typing in the URL of your "
191
  "Web site coming or from a bookmark; some people also call this \"default "
192
  "traffic\" or \"ambient traffic\""
193
  msgstr ""
 
 
 
194
 
195
- #: ../../admin/wp-slimstat-admin.php:699
196
  #, fuzzy
197
  msgid "Search Engine"
198
  msgstr "Motores de Búsqueda"
199
 
200
- #: ../../admin/wp-slimstat-admin.php:699
201
  msgid ""
202
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
203
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
204
  msgstr ""
 
 
205
 
206
- #: ../../admin/wp-slimstat-admin.php:700 ../../admin/wp-slimstat-admin.php:716
207
- #: ../../admin/view/right-now.php:127
208
- #: ../../admin/view/wp-slimstat-reports.php:45
209
  #, fuzzy
210
  msgid "Search Terms"
211
  msgstr "Principales Recursos"
212
 
213
- #: ../../admin/wp-slimstat-admin.php:700 ../../admin/wp-slimstat-admin.php:716
214
  msgid "Keywords used by your visitors to find your website on a search engine"
215
  msgstr ""
 
 
216
 
217
- #: ../../admin/wp-slimstat-admin.php:701
218
  msgid "SERP"
219
- msgstr ""
220
 
221
- #: ../../admin/wp-slimstat-admin.php:701
222
  msgid ""
223
  "Short for search engine results page, the Web page that a search engine "
224
  "returns with the results of its search. The value shown represents your rank "
225
  "(or position) within that list of results"
226
  msgstr ""
 
 
 
 
227
 
228
- #: ../../admin/wp-slimstat-admin.php:702
229
- #: ../../admin/view/wp-slimstat-reports.php:57
230
  #, fuzzy
231
  msgid "User Agent"
232
  msgstr "Buscadores"
233
 
234
- #: ../../admin/wp-slimstat-admin.php:702
235
  msgid ""
236
  "Any program used for accessing a website; this includes browsers, robots, "
237
  "spiders and any other program that was used to retrieve information from the "
238
  "site"
239
  msgstr ""
 
 
 
240
 
241
- #: ../../admin/wp-slimstat-admin.php:703
242
- #: ../../admin/view/wp-slimstat-reports.php:61
243
  #, fuzzy
244
  msgid "Outbound Link"
245
  msgstr "Enlaces Salientes Recientes"
246
 
247
- #: ../../admin/wp-slimstat-admin.php:703
248
  msgid ""
249
  "A link from one domain to another is said to be outbound from its source "
250
  "anchor and inbound to its target. This report lists all the links to other "
251
  "websites followed by your visitors."
252
  msgstr ""
 
 
 
253
 
254
- #: ../../admin/wp-slimstat-admin.php:710
255
  msgid "Basic Filters"
256
- msgstr ""
257
 
258
- #: ../../admin/wp-slimstat-admin.php:713
259
- #: ../../admin/view/wp-slimstat-reports.php:42
260
  msgid "Browser"
261
  msgstr "Navegador"
262
 
263
- #: ../../admin/wp-slimstat-admin.php:713
264
  msgid "User agent (Firefox, Chrome, ...)"
265
- msgstr ""
266
 
267
- #: ../../admin/wp-slimstat-admin.php:714
268
- #: ../../admin/view/wp-slimstat-reports.php:43
269
- #: ../../admin/view/wp-slimstat-reports.php:482
270
  msgid "Country Code"
271
  msgstr "Código de Pais"
272
 
273
- #: ../../admin/wp-slimstat-admin.php:714
274
  msgid "2-letter code (us, ru, de, it, ...)"
275
- msgstr ""
276
 
277
- #: ../../admin/wp-slimstat-admin.php:715
278
  msgid "IP"
279
  msgstr "IP"
280
 
281
- #: ../../admin/wp-slimstat-admin.php:715
282
  msgid "Visitor's public IP address"
283
- msgstr ""
284
 
285
- #: ../../admin/wp-slimstat-admin.php:717
286
- #: ../../admin/view/wp-slimstat-reports.php:46
287
- #: ../../admin/view/wp-slimstat-reports.php:494
288
  msgid "Language Code"
289
  msgstr "Código de Idioma"
290
 
291
- #: ../../admin/wp-slimstat-admin.php:717
292
  msgid ""
293
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
294
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
295
  "column) for more information"
296
  msgstr ""
 
 
 
297
 
298
- #: ../../admin/wp-slimstat-admin.php:718
299
- #: ../../admin/view/wp-slimstat-reports.php:47
300
  msgid "Operating System"
301
  msgstr "Sistema Operativo"
302
 
303
- #: ../../admin/wp-slimstat-admin.php:718
304
  msgid ""
305
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
306
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
307
  "manual page</a> for more information"
308
  msgstr ""
 
 
 
309
 
310
- #: ../../admin/wp-slimstat-admin.php:719
311
- #: ../../admin/view/wp-slimstat-reports.php:48
312
  msgid "Permalink"
313
  msgstr "Enlace Permanente"
314
 
315
- #: ../../admin/wp-slimstat-admin.php:719
316
  msgid "URL accessed on your site"
317
- msgstr ""
318
 
319
- #: ../../admin/wp-slimstat-admin.php:720
320
- #: ../../admin/view/wp-slimstat-reports.php:50
321
  msgid "Referer"
322
  msgstr "Referido"
323
 
324
- #: ../../admin/wp-slimstat-admin.php:720
325
  msgid "Complete address of the referrer page"
326
- msgstr ""
327
 
328
- #: ../../admin/wp-slimstat-admin.php:721
329
- #: ../../admin/view/wp-slimstat-reports.php:51
330
  #, fuzzy
331
  msgid "Visitor's Name"
332
  msgstr "Visitantes"
333
 
334
- #: ../../admin/wp-slimstat-admin.php:721
335
  msgid ""
336
  "Visitors' names according to the cookie set by Wordpress after they leave a "
337
  "comment"
338
  msgstr ""
 
 
339
 
340
- #: ../../admin/wp-slimstat-admin.php:729
341
  msgid "Advanced Filters"
342
- msgstr ""
343
 
344
- #: ../../admin/wp-slimstat-admin.php:732
345
- #: ../../admin/view/wp-slimstat-reports.php:55
346
  #, fuzzy
347
  msgid "Browser Version"
348
  msgstr "Versión del Navegador"
349
 
350
- #: ../../admin/wp-slimstat-admin.php:732
351
  msgid "user agent version (9.0, 11, ...)"
352
- msgstr ""
353
 
354
- #: ../../admin/wp-slimstat-admin.php:733
355
- #: ../../admin/view/wp-slimstat-reports.php:56
356
  #, fuzzy
357
  msgid "Browser Type"
358
  msgstr "Navegador"
359
 
360
- #: ../../admin/wp-slimstat-admin.php:733
361
  msgid ""
362
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
363
  "all others"
364
  msgstr ""
 
 
365
 
366
- #: ../../admin/wp-slimstat-admin.php:734
367
- #: ../../admin/view/wp-slimstat-reports.php:58
368
  msgid "Color Depth"
369
- msgstr ""
370
 
371
- #: ../../admin/wp-slimstat-admin.php:734
372
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
373
- msgstr ""
374
 
375
- #: ../../admin/wp-slimstat-admin.php:735
376
- #: ../../admin/view/wp-slimstat-reports.php:59
377
  #, fuzzy
378
  msgid "CSS Version"
379
  msgstr "Versión de CSS"
380
 
381
- #: ../../admin/wp-slimstat-admin.php:735
382
  msgid ""
383
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
384
  "values)"
385
  msgstr ""
 
 
386
 
387
- #: ../../admin/wp-slimstat-admin.php:736
388
- #: ../../admin/view/wp-slimstat-reports.php:60
389
  #, fuzzy
390
  msgid "Pageview Attributes"
391
  msgstr "Paginas visitadas"
392
 
393
- #: ../../admin/wp-slimstat-admin.php:736
394
  msgid ""
395
  "this field is set to <em>[pre]</em> if the resource has been accessed "
396
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
397
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
398
  msgstr ""
 
 
 
399
 
400
- #: ../../admin/wp-slimstat-admin.php:737
401
- #: ../../admin/view/wp-slimstat-reports.php:62
402
  msgid "Post Author"
403
  msgstr "Autor de la entrada(sección)"
404
 
405
- #: ../../admin/wp-slimstat-admin.php:737
406
  msgid "author associated to that post/page when the resource was accessed"
407
- msgstr ""
408
 
409
- #: ../../admin/wp-slimstat-admin.php:738
410
- #: ../../admin/view/wp-slimstat-reports.php:63
411
  msgid "Post Category ID"
412
  msgstr "ID de la entrada(sección) de la Categoria"
413
 
414
- #: ../../admin/wp-slimstat-admin.php:738
415
  msgid "ID of the category/term associated to the resource, when available"
416
  msgstr ""
 
417
 
418
- #: ../../admin/wp-slimstat-admin.php:739
419
  msgid "visitor's originating IP address, if available"
420
- msgstr ""
421
 
422
- #: ../../admin/wp-slimstat-admin.php:740
423
- #: ../../admin/view/wp-slimstat-reports.php:65
424
  #, fuzzy
425
  msgid "Resource Content Type"
426
  msgstr "Contenidos Recientes"
427
 
428
- #: ../../admin/wp-slimstat-admin.php:740
429
  msgid ""
430
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
431
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -433,66 +488,85 @@ msgid ""
433
  "wordpress.org/Conditional_Tags\">Conditional Tags</a> manual page for more "
434
  "information"
435
  msgstr ""
 
 
 
 
 
436
 
437
- #: ../../admin/wp-slimstat-admin.php:741
438
- #: ../../admin/view/wp-slimstat-reports.php:67
439
  msgid "Screen Resolution"
440
  msgstr "Resolución de Pantalla"
441
 
442
- #: ../../admin/wp-slimstat-admin.php:741
443
  msgid "viewport width and height (1024x768, 800x600, ...)"
444
- msgstr ""
445
 
446
- #: ../../admin/wp-slimstat-admin.php:742
447
- #: ../../admin/view/wp-slimstat-reports.php:68
448
  #, fuzzy
449
  msgid "Visit ID"
450
  msgstr "Visitas"
451
 
452
- #: ../../admin/wp-slimstat-admin.php:742
453
  msgid ""
454
  "generally used in conjunction with <em>is not empty</em>, identifies human "
455
  "visitors"
456
  msgstr ""
 
 
457
 
458
- #: ../../admin/wp-slimstat-admin.php:743
459
  msgid "Date Filters"
460
- msgstr ""
461
 
462
- #: ../../admin/wp-slimstat-admin.php:743
463
  msgid ""
464
  "you can specify the timeframe by entering a number in the <em>interval</em> "
465
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
466
  "year=blank, interval=-1 will set a year-to-date filter)"
467
  msgstr ""
 
 
 
 
468
 
469
- #: ../../admin/wp-slimstat-admin.php:744
470
  msgid "SERP Position"
471
- msgstr ""
472
 
473
- #: ../../admin/wp-slimstat-admin.php:744
474
  msgid ""
475
  "set the filter to Referer contains cd=N&, where N is the position you are "
476
  "looking for"
477
  msgstr ""
 
 
478
 
479
- #: ../../admin/wp-slimstat-admin.php:753
480
  msgid ""
481
  " And for keeping an eye on your visitors with <a href=\"http://slimstat."
482
  "getused.to.it/\">WP SlimStat</a>."
483
  msgstr ""
 
 
484
 
485
  #: ../../admin/config/addons.php:14
486
  msgid ""
487
  "There was an error retrieving the add-ons list from the server. Please try "
488
  "again later. Error Message:"
489
  msgstr ""
 
 
490
 
491
  #: ../../admin/config/addons.php:23
492
  msgid ""
493
  "There was an error decoding the add-ons list from the server. Please try "
494
  "again later."
495
  msgstr ""
 
 
496
 
497
  #: ../../admin/config/addons.php:30
498
  msgid ""
@@ -503,80 +577,94 @@ msgid ""
503
  "on is available, please enter the <strong>license key</strong> you received "
504
  "when you purchased it."
505
  msgstr ""
 
 
 
 
 
 
 
506
 
507
  #: ../../admin/config/addons.php:36
508
  msgid "Add-on"
509
- msgstr ""
510
 
511
  #: ../../admin/config/addons.php:36
512
  msgid "Description"
513
- msgstr ""
514
 
515
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:17
516
  msgid "General"
517
- msgstr ""
518
 
519
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:43
520
  msgid "Views"
521
- msgstr ""
522
 
523
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:63
524
  msgid "Filters"
525
- msgstr ""
526
 
527
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:127
528
  #, fuzzy
529
  msgid "Permissions"
530
  msgstr "Enlace Permanente"
531
 
532
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:204
533
  msgid "Advanced"
534
- msgstr ""
535
 
536
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:221
537
  msgid "Maintenance"
538
- msgstr ""
539
 
540
- #: ../../admin/config/index.php:19 ../../admin/config/index.php:206
541
  msgid "Tracker"
542
- msgstr ""
543
 
544
- #: ../../admin/config/index.php:20
545
  msgid "Enable Tracking"
546
- msgstr ""
547
 
548
- #: ../../admin/config/index.php:20
549
  msgid ""
550
  "Turn the tracker on or off, but keep the reports accessible (which you would "
551
  "not have, if you just disabled the plugin)."
552
  msgstr ""
 
 
553
 
554
- #: ../../admin/config/index.php:21
555
  #, fuzzy
556
  msgid "Monitor Admin Pages"
557
  msgstr "Principales Páginas de Salida"
558
 
559
- #: ../../admin/config/index.php:21
560
  msgid "Enable this option to track your users' activity within the admin."
561
  msgstr ""
 
 
562
 
563
- #: ../../admin/config/index.php:22
564
  msgid "Enable Spy Mode"
565
- msgstr ""
566
 
567
- #: ../../admin/config/index.php:22
568
  msgid ""
569
  "Collect information about screen resolutions, outbound links, downloads, "
570
  "etc. If Tracking Mode is set to Javascript, this data will be tracked "
571
  "regardless of which value you set for this option."
572
  msgstr ""
 
 
 
573
 
574
- #: ../../admin/config/index.php:23
575
  #, fuzzy
576
  msgid "Tracking Mode"
577
  msgstr "Seguimiento Activo"
578
 
579
- #: ../../admin/config/index.php:23
580
  msgid ""
581
  "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
582
  "Total Cache, WP SuperCache, HyperCache, etc). WP SlimStat will behave pretty "
@@ -584,223 +672,261 @@ msgid ""
584
  "Javascript will be ignored. A nice side effect is that <strong>most "
585
  "spammers, search engines and other crawlers</strong> will not be tracked."
586
  msgstr ""
 
 
 
 
 
 
587
 
588
- #: ../../admin/config/index.php:23
589
  msgid "Javascript"
590
- msgstr ""
591
 
592
- #: ../../admin/config/index.php:23
593
  msgid "Server-side"
594
- msgstr ""
595
 
596
- #: ../../admin/config/index.php:25
597
  msgid "WordPress Integration"
598
- msgstr ""
599
 
600
- #: ../../admin/config/index.php:26
601
  msgid "Menu Position"
602
- msgstr ""
603
 
604
- #: ../../admin/config/index.php:26
605
  msgid ""
606
  "Choose between a standalone admin menu for WP SlimStat or a drop down in the "
607
  "admin bar (if visible)."
608
  msgstr ""
 
 
609
 
610
- #: ../../admin/config/index.php:26
611
  msgid "Side Menu"
612
- msgstr ""
613
 
614
- #: ../../admin/config/index.php:26
615
  msgid "Admin Bar"
616
- msgstr ""
617
 
618
- #: ../../admin/config/index.php:27
 
619
  msgid "Add Stats to Posts"
620
- msgstr ""
621
 
622
- #: ../../admin/config/index.php:27
 
623
  msgid ""
624
  "Add a new column to the Edit Posts screen, with the number of hits per post."
625
  msgstr ""
 
 
626
 
627
- #: ../../admin/config/index.php:29
628
  msgid "Database"
629
- msgstr ""
630
 
631
- #: ../../admin/config/index.php:30
632
  msgid "Retain data for"
633
- msgstr ""
634
 
635
- #: ../../admin/config/index.php:30
636
  msgid ""
637
  "Delete log entries older than the number of days specified here above. Enter "
638
  "<strong>0</strong> (number zero) if you want to preserve your data "
639
  "regardless of its age."
640
  msgstr ""
 
 
 
641
 
642
- #: ../../admin/config/index.php:30
643
  msgid "Next clean-up on"
644
- msgstr ""
645
 
646
- #: ../../admin/config/index.php:30
647
  #, php-format
648
  msgid "Entries logged on or before %s will be permanently deleted."
649
  msgstr ""
 
 
650
 
651
- #: ../../admin/config/index.php:30 ../../admin/view/index.php:76
652
- #: ../../admin/view/wp-slimstat-reports.php:75
653
- #: ../../admin/view/wp-slimstat-reports.php:656
654
  msgid "days"
655
  msgstr "dias"
656
 
657
- #: ../../admin/config/index.php:45
658
  #, fuzzy
659
  msgid "Data and Formats"
660
  msgstr "Fecha y hora"
661
 
662
- #: ../../admin/config/index.php:46
663
  msgid "Convert IP Addresses"
664
- msgstr ""
665
 
666
- #: ../../admin/config/index.php:46
667
  msgid "Display provider names instead of IP addresses."
668
- msgstr ""
669
 
670
- #: ../../admin/config/index.php:47
671
  msgid "Number Format"
672
- msgstr ""
673
 
674
- #: ../../admin/config/index.php:47
675
  msgid ""
676
  "Choose the number format you want to use for your reports, European or "
677
  "American."
678
  msgstr ""
 
 
679
 
680
- #: ../../admin/config/index.php:48
681
  msgid "Show Display Name"
682
- msgstr ""
683
 
684
- #: ../../admin/config/index.php:48
685
  msgid ""
686
  "By default, users are listed by their usernames. Use this option to "
687
  "visualize their display names instead."
688
  msgstr ""
 
 
 
689
 
690
- #: ../../admin/config/index.php:49
691
  #, fuzzy
692
  msgid "Show User Agent"
693
  msgstr "Buscadores"
694
 
695
- #: ../../admin/config/index.php:49
696
  msgid ""
697
  "Choose if you want to see the browser name or a complete user agent string "
698
  "when hovering on browser icons."
699
  msgstr ""
 
 
700
 
701
- #: ../../admin/config/index.php:50
702
  msgid "Show Titles"
703
- msgstr ""
704
 
705
- #: ../../admin/config/index.php:50
706
  msgid ""
707
  "WP SlimStat converts your permalinks into post and page titles. Disable this "
708
  "feature if you need to see the URL in your reports."
709
  msgstr ""
 
 
710
 
711
- #: ../../admin/config/index.php:52
712
  msgid "Functionality"
713
- msgstr ""
714
 
715
- #: ../../admin/config/index.php:53
716
  msgid "Asynchronous Views"
717
- msgstr ""
718
 
719
- #: ../../admin/config/index.php:53
720
  msgid ""
721
  "Load all the reports dynamically. It makes the reports render faster, but it "
722
  "increases the load on your server."
723
  msgstr ""
 
 
724
 
725
- #: ../../admin/config/index.php:54
726
  msgid "Expand Details"
727
- msgstr ""
728
 
729
- #: ../../admin/config/index.php:54
730
  msgid "Expand each row's details by default, insted of on mousehover."
731
  msgstr ""
 
732
 
733
- #: ../../admin/config/index.php:55 ../../admin/config/index.php:59
734
  #, fuzzy
735
  msgid "Rows to Display"
736
  msgstr "No hay datos que mostrar"
737
 
738
- #: ../../admin/config/index.php:55
739
  msgid "Specify the number of items in each report."
740
- msgstr ""
741
 
742
- #: ../../admin/config/index.php:57
743
  msgid "Right Now Screen"
744
- msgstr ""
745
 
746
- #: ../../admin/config/index.php:58
747
  msgid "Live Stream"
748
- msgstr ""
749
 
750
- #: ../../admin/config/index.php:58
751
  msgid ""
752
  "Enable the Live view, which refreshes the Right Now screen every X seconds. "
753
  "Enter <strong>0</strong> (number zero) to disable this functionality."
754
  msgstr ""
 
 
 
755
 
756
- #: ../../admin/config/index.php:58 ../../admin/config/index.php:209
757
  msgid "seconds"
758
- msgstr ""
759
 
760
- #: ../../admin/config/index.php:59
761
  msgid "Specify the number of items in Right Now."
762
- msgstr ""
763
 
764
- #: ../../admin/config/index.php:60
765
  msgid "Right Now Extended"
766
- msgstr ""
767
 
768
- #: ../../admin/config/index.php:60
769
  msgid ""
770
  "Choose if you want to see outbound links listed under Right Now. It might "
771
  "slow down the rendering of this report."
772
  msgstr ""
 
 
773
 
774
- #: ../../admin/config/index.php:65
775
  #, fuzzy
776
  msgid "Visitors and Known Users"
777
  msgstr "Navegadores recientes"
778
 
779
- #: ../../admin/config/index.php:66
780
  msgid "Track Registered Users"
781
- msgstr ""
782
 
783
- #: ../../admin/config/index.php:66
784
  msgid "Enable this option to track logged in users."
785
- msgstr ""
786
 
787
- #: ../../admin/config/index.php:67
788
  #, fuzzy
789
  msgid "Blacklist by Username"
790
- msgstr "Navegador"
791
 
792
- #: ../../admin/config/index.php:67
793
  msgid ""
794
  "List all the usernames you don't want to track, separated by commas. Please "
795
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
796
  "sensitive."
797
  msgstr ""
 
 
 
 
798
 
799
- #: ../../admin/config/index.php:68
800
  msgid "Blacklist by IP Address"
801
- msgstr ""
802
 
803
- #: ../../admin/config/index.php:68
804
  msgid ""
805
  "List all the IP addresses you don't want to track, separated by commas. Each "
806
  "network <strong>must</strong> be defined using the <a href='http://en."
@@ -808,41 +934,55 @@ msgid ""
808
  "notation</a> (i.e. <em>192.168.0.0/24</em>). If the format is incorrect, WP "
809
  "SlimStat may not track pageviews properly."
810
  msgstr ""
 
 
 
 
 
811
 
812
- #: ../../admin/config/index.php:69
813
  #, fuzzy
814
  msgid "Blacklist by Capability"
815
  msgstr "Navegador"
816
 
817
- #: ../../admin/config/index.php:69
818
  msgid ""
819
  "Users having at least one of the <a href='http://codex.wordpress.org/"
820
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
821
  "will not be tracked. Capabilities are case-insensitive."
822
  msgstr ""
 
 
 
 
823
 
824
- #: ../../admin/config/index.php:71
825
  msgid "Profiling"
826
- msgstr ""
827
 
828
- #: ../../admin/config/index.php:72
829
  msgid "Ignore Spammers"
830
- msgstr ""
831
 
832
- #: ../../admin/config/index.php:72
833
  msgid ""
834
  "Enable this option if you don't want to track visits from users identified "
835
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
836
  "whose comments are later marked as spam, will also be removed from the "
837
  "database."
838
  msgstr ""
 
 
 
 
 
839
 
840
- #: ../../admin/config/index.php:73
841
  #, fuzzy
842
  msgid "Permalinks"
843
  msgstr "Enlace Permanente"
844
 
845
- #: ../../admin/config/index.php:73
846
  msgid ""
847
  "List all the URLs on your website that you don't want to track, separated by "
848
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -852,24 +992,34 @@ msgid ""
852
  "and /about, <code>/abo!t</code> will match /about and /abort. Strings are "
853
  "case-insensitive."
854
  msgstr ""
 
 
 
 
 
 
 
 
855
 
856
- #: ../../admin/config/index.php:74
857
  #, fuzzy
858
  msgid "Countries"
859
  msgstr "Paises que más visitan"
860
 
861
- #: ../../admin/config/index.php:74
862
  msgid ""
863
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
864
  "track, separated by commas."
865
  msgstr ""
 
 
866
 
867
- #: ../../admin/config/index.php:75
868
  #, fuzzy
869
  msgid "User Agents"
870
  msgstr "Buscadores"
871
 
872
- #: ../../admin/config/index.php:75
873
  msgid ""
874
  "Browsers (user agents) you don't want to track, separated by commas. You can "
875
  "specify the browser's version adding a slash after the name (i.e. "
@@ -878,13 +1028,20 @@ msgid ""
878
  "example, <code>Chr*</code> will match Chrome and Chromium, <code>IE/!.0</"
879
  "code> will match IE/7.0 and IE/8.0. Strings are case-insensitive."
880
  msgstr ""
 
 
 
 
 
 
 
881
 
882
- #: ../../admin/config/index.php:76
883
  #, fuzzy
884
  msgid "Referring Sites"
885
  msgstr "Motores de Búsqueda"
886
 
887
- #: ../../admin/config/index.php:76
888
  msgid ""
889
  "Referring URLs that you don't want to track, separated by commas: "
890
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -893,168 +1050,220 @@ msgid ""
893
  "include either a wildcard or the protocol you want to filter (http://, "
894
  "https://)."
895
  msgstr ""
 
 
 
 
 
896
 
897
- #: ../../admin/config/index.php:78 ../../admin/config/index.php:214
898
  msgid "Miscellaneous"
899
- msgstr ""
900
 
901
- #: ../../admin/config/index.php:79
902
  msgid "Enable Privacy Mode"
903
- msgstr ""
904
 
905
- #: ../../admin/config/index.php:79
906
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
907
  msgstr ""
 
 
908
 
909
- #: ../../admin/config/index.php:80
910
  msgid "Ignore Prefetch Requests"
911
- msgstr ""
912
 
913
- #: ../../admin/config/index.php:80
914
  msgid ""
915
  "Prevent WP SlimStat from tracking pageviews generated by Firefox's <a "
916
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
917
  "target='_blank'>Link Prefetching functionality</a>."
918
  msgstr ""
 
 
 
919
 
920
- #: ../../admin/config/index.php:96
921
  msgid "Ignore users (username not found)"
922
- msgstr ""
923
 
924
- #: ../../admin/config/index.php:119
925
  msgid ""
926
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
927
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
928
  msgstr ""
 
 
 
929
 
930
- #: ../../admin/config/index.php:129
931
  #, fuzzy
932
  msgid "Reports"
933
  msgstr "Informes Personalizados"
934
 
935
- #: ../../admin/config/index.php:130
936
  #, fuzzy
937
  msgid "Restrict Authors"
938
  msgstr "Autor de la entrada(sección)"
939
 
940
- #: ../../admin/config/index.php:130
941
  msgid ""
942
  "Enable this option if you want your authours to only see stats related to "
943
  "their own content."
944
  msgstr ""
 
 
945
 
946
- #: ../../admin/config/index.php:131 ../../admin/config/index.php:135
947
  #, fuzzy
948
  msgid "Capability"
949
  msgstr "Navegador"
950
 
951
- #: ../../admin/config/index.php:131
 
952
  msgid ""
953
  "Specify the minimum <a href='http://codex.wordpress.org/"
954
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
955
- "reports (default: <code>read</code>). If this field is empty, <strong>all "
956
- "your users</strong> (including subscribers) will have access to the reports, "
957
- "unless a 'Read access' whitelist has been specified here below. In this "
958
- "case, the list has precedence over the capability."
959
- msgstr ""
960
-
961
- #: ../../admin/config/index.php:132 ../../admin/config/index.php:136
 
 
 
 
 
 
 
962
  msgid "Whitelist"
963
- msgstr ""
964
 
965
- #: ../../admin/config/index.php:132
966
  msgid ""
967
  "List all the users who should have access to the reports, separated by "
968
  "commas. Administrators are implicitly allowed, so you don't need to list "
969
  "them in here. Usernames are case sensitive."
970
  msgstr ""
 
 
 
 
971
 
972
- #: ../../admin/config/index.php:135
973
  msgid ""
974
  "Specify the minimum <a href='http://codex.wordpress.org/"
975
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
976
  "WP SlimStat (default: <code>activate_plugins</code>). The whitelist here "
977
  "below can be used to override this option for specific users."
978
  msgstr ""
 
 
 
 
 
979
 
980
- #: ../../admin/config/index.php:136
981
  msgid ""
982
  "List all the users who can edit these options, separated by commas. Please "
983
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
984
  "not forget to include yourself! Usernames are case sensitive."
985
  msgstr ""
 
 
 
 
986
 
987
- #: ../../admin/config/index.php:152
988
  msgid "Read access: username not found"
989
- msgstr ""
990
 
991
- #: ../../admin/config/index.php:165 ../../admin/config/index.php:196
992
  msgid ""
993
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
994
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
995
  "information"
996
  msgstr ""
 
 
 
997
 
998
- #: ../../admin/config/index.php:183
999
  msgid "Config access: username not found"
1000
- msgstr ""
1001
 
1002
- #: ../../admin/config/index.php:207
1003
  msgid "Detect Smoothing"
1004
- msgstr ""
1005
 
1006
- #: ../../admin/config/index.php:207
1007
  msgid ""
1008
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
1009
  "This option required Spy Mode to be enabled."
1010
  msgstr ""
 
 
 
1011
 
1012
- #: ../../admin/config/index.php:208
1013
  #, fuzzy
1014
  msgid "Track Outbound Clicks"
1015
  msgstr "Enlaces Salientes Recientes"
1016
 
1017
- #: ../../admin/config/index.php:208
1018
  msgid ""
1019
  "Track when your visitors click on link to external websites. This option "
1020
  "required Spy Mode to be enabled."
1021
  msgstr ""
 
 
1022
 
1023
- #: ../../admin/config/index.php:209
1024
  #, fuzzy
1025
  msgid "Session Duration"
1026
  msgstr "Visitas"
1027
 
1028
- #: ../../admin/config/index.php:209
 
1029
  msgid ""
1030
- "How many seconds should a human session on your site last? Google Analytics "
1031
- "sets it to 1800 seconds."
1032
  msgstr ""
 
 
1033
 
1034
- #: ../../admin/config/index.php:210
1035
  msgid "Extend Session"
1036
- msgstr ""
1037
 
1038
- #: ../../admin/config/index.php:210
1039
  msgid "Extend the duration of a session each time the user visits a new page."
1040
  msgstr ""
 
 
1041
 
1042
- #: ../../admin/config/index.php:211
1043
  msgid "Enable CDN"
1044
- msgstr ""
1045
 
1046
- #: ../../admin/config/index.php:211
1047
  msgid ""
1048
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
1049
  "by serving our tracking code from their fast and reliable network (free "
1050
  "service)."
1051
  msgstr ""
 
 
 
1052
 
1053
- #: ../../admin/config/index.php:212
1054
  msgid "Extensions to Track"
1055
- msgstr ""
1056
 
1057
- #: ../../admin/config/index.php:212
1058
  msgid ""
1059
  "List all the file extensions that you want to be treated as Downloads. "
1060
  "Please note that links pointing to external resources (i.e. PDFs on a "
@@ -1062,83 +1271,93 @@ msgid ""
1062
  "tracked as such), if their extension matches one of the ones listed here "
1063
  "below."
1064
  msgstr ""
 
 
 
 
 
1065
 
1066
- #: ../../admin/config/index.php:215
1067
  msgid "IP Lookup"
1068
- msgstr ""
1069
 
1070
- #: ../../admin/config/index.php:215
1071
  msgid "Customize the Geolocation service to be used in the reports."
1072
  msgstr ""
 
1073
 
1074
- #: ../../admin/config/index.php:216
1075
  msgid "Custom CSS"
1076
- msgstr ""
1077
 
1078
- #: ../../admin/config/index.php:216
 
1079
  msgid ""
1080
  "Paste here your custom stylesheet to personalize the way your reports look. "
1081
  "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1082
  "target='_blank'>Check the FAQ</a> for more information on how to use this "
1083
- "functionality."
1084
- msgstr ""
1085
-
1086
- #: ../../admin/config/index.php:217
1087
- msgid "Chart Annotations"
1088
- msgstr ""
1089
-
1090
- #: ../../admin/config/index.php:217
1091
- msgid ""
1092
- "Add <em>markings</em> to each chart by specifying a date and its description "
1093
- "in the field below. Useful to keep track of special events and correlate "
1094
- "them to your analytics. Please use the following format:<code>YYYY MM DD HH:"
1095
- "mm=Description 1,YYYY MM DD HH:mm=Description 2</code>. For example: 2012 12 "
1096
- "31 23:55=New Year's Eve."
1097
  msgstr ""
 
 
 
 
1098
 
1099
  #: ../../admin/config/index.php:218
1100
  msgid "Enable UAN"
1101
- msgstr ""
1102
 
1103
  #: ../../admin/config/index.php:218
 
1104
  msgid ""
1105
- "Collect data about unknown user agents, and send it anonymously to our "
1106
- "server for analysis. This allows us to contribute to the <a href='http://"
1107
- "browscap.co/' target='_blank'>BrowsCap opensource project</a>, and improve "
1108
- "the accuracy of SlimStat's browser detection functionality."
1109
  msgstr ""
 
 
 
 
 
1110
 
1111
  #: ../../admin/config/maintenance.php:20
1112
  msgid "Your WP SlimStat tables have been successfully converted to InnoDB."
1113
- msgstr ""
1114
 
1115
  #: ../../admin/config/maintenance.php:30
1116
  msgid "records deleted from your database."
1117
- msgstr ""
1118
 
1119
  #: ../../admin/config/maintenance.php:34
1120
  msgid "All the records were successfully deleted."
1121
- msgstr ""
1122
 
1123
  #: ../../admin/config/maintenance.php:38
1124
  msgid "Your reports were successfully restored to their default arrangement."
1125
  msgstr ""
 
 
1126
 
1127
  #: ../../admin/config/maintenance.php:45
1128
  msgid ""
1129
  "Congrats! WP SlimStat is now optimized for <a href=\"http://www.youtube.com/"
1130
  "watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
1131
  msgstr ""
 
 
1132
 
1133
  #: ../../admin/config/maintenance.php:52
1134
  msgid ""
1135
  "Indexing has been successfully disabled. Enjoy the extra database space you "
1136
  "just gained!"
1137
  msgstr ""
 
 
1138
 
1139
  #: ../../admin/config/maintenance.php:83
1140
  msgid "Database Information"
1141
- msgstr ""
1142
 
1143
  #: ../../admin/config/maintenance.php:86
1144
  #, fuzzy
@@ -1147,7 +1366,7 @@ msgstr "Motores de Búsqueda"
1147
 
1148
  #: ../../admin/config/maintenance.php:90
1149
  msgid "switch to InnoDB"
1150
- msgstr ""
1151
 
1152
  #: ../../admin/config/maintenance.php:101
1153
  #, fuzzy
@@ -1156,7 +1375,7 @@ msgstr "Palabras clave"
1156
 
1157
  #: ../../admin/config/maintenance.php:106
1158
  msgid "Data Maintenance"
1159
- msgstr ""
1160
 
1161
  #: ../../admin/config/maintenance.php:109
1162
  #, fuzzy
@@ -1165,11 +1384,11 @@ msgstr "Filtrar páginas visitadas dondé:"
1165
 
1166
  #: ../../admin/config/maintenance.php:123 ../../admin/view/index.php:17
1167
  msgid "equals"
1168
- msgstr ""
1169
 
1170
  #: ../../admin/config/maintenance.php:124 ../../admin/view/index.php:18
1171
  msgid "is not equal to"
1172
- msgstr ""
1173
 
1174
  #: ../../admin/config/maintenance.php:125 ../../admin/view/index.php:19
1175
  #, fuzzy
@@ -1193,19 +1412,19 @@ msgstr "Acaba en"
1193
 
1194
  #: ../../admin/config/maintenance.php:129 ../../admin/view/index.php:23
1195
  msgid "sounds like"
1196
- msgstr ""
1197
 
1198
  #: ../../admin/config/maintenance.php:130 ../../admin/view/index.php:24
1199
  msgid "is greater than"
1200
- msgstr ""
1201
 
1202
  #: ../../admin/config/maintenance.php:131 ../../admin/view/index.php:25
1203
  msgid "is less than"
1204
- msgstr ""
1205
 
1206
  #: ../../admin/config/maintenance.php:132 ../../admin/view/index.php:26
1207
  msgid "matches"
1208
- msgstr ""
1209
 
1210
  #: ../../admin/config/maintenance.php:133 ../../admin/view/index.php:27
1211
  #, fuzzy
@@ -1214,31 +1433,35 @@ msgstr "No contiene"
1214
 
1215
  #: ../../admin/config/maintenance.php:134 ../../admin/view/index.php:28
1216
  msgid "is empty"
1217
- msgstr ""
1218
 
1219
  #: ../../admin/config/maintenance.php:135 ../../admin/view/index.php:29
1220
  msgid "is not empty"
1221
- msgstr ""
1222
 
1223
  #: ../../admin/config/maintenance.php:138 ../../admin/view/index.php:32
1224
- #: ../../admin/view/index.php:77
1225
  msgid "Apply"
1226
- msgstr ""
1227
 
1228
  #: ../../admin/config/maintenance.php:139
1229
  msgid ""
1230
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1231
  msgstr ""
 
 
1232
 
1233
  #: ../../admin/config/maintenance.php:144
1234
  msgid "Empty Database"
1235
- msgstr ""
1236
 
1237
  #: ../../admin/config/maintenance.php:147
1238
  msgid ""
1239
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1240
  "database?"
1241
  msgstr ""
 
 
1242
 
1243
  #: ../../admin/config/maintenance.php:147
1244
  #, fuzzy
@@ -1250,6 +1473,8 @@ msgid ""
1250
  "Erase all the information collected so far by WP SlimStat. This operation "
1251
  "<strong>does not</strong> reset your settings."
1252
  msgstr ""
 
 
1253
 
1254
  #: ../../admin/config/maintenance.php:152
1255
  #, fuzzy
@@ -1260,44 +1485,52 @@ msgstr "Informes Personalizados"
1260
  msgid ""
1261
  "Are you sure you want to restore the default arrangement of your reports?"
1262
  msgstr ""
 
 
1263
 
1264
  #: ../../admin/config/maintenance.php:155
1265
  msgid "No Panic Button"
1266
- msgstr ""
1267
 
1268
  #: ../../admin/config/maintenance.php:156
1269
  msgid ""
1270
  "Reset the default arrangement of your reports. Helpful when, for some "
1271
  "reason, reports disappear from your panels."
1272
  msgstr ""
 
 
1273
 
1274
  #: ../../admin/config/maintenance.php:160
1275
  msgid "Performance"
1276
- msgstr ""
1277
 
1278
  #: ../../admin/config/maintenance.php:163
1279
  msgid "Improve Performance"
1280
- msgstr ""
1281
 
1282
  #: ../../admin/config/maintenance.php:164
1283
  msgid ""
1284
  "Please note that you will need about 30% more DB space to store the extra "
1285
  "information required."
1286
  msgstr ""
 
 
1287
 
1288
  #: ../../admin/config/maintenance.php:168
1289
  msgid "Save DB Space"
1290
- msgstr ""
1291
 
1292
  #: ../../admin/config/maintenance.php:169
1293
  msgid ""
1294
  "Please note that by removing table indexes, WP SlimStat's performance will "
1295
  "be affected."
1296
  msgstr ""
 
 
1297
 
1298
  #: ../../admin/config/maintenance.php:174
1299
  msgid "Import and Export"
1300
- msgstr ""
1301
 
1302
  #: ../../admin/config/maintenance.php:178
1303
  msgid ""
@@ -1308,11 +1541,11 @@ msgstr ""
1308
 
1309
  #: ../../admin/config/maintenance.php:183
1310
  msgid "Import"
1311
- msgstr ""
1312
 
1313
  #: ../../admin/config/maintenance.php:184
1314
  msgid "Are you sure you want to OVERWRITE your current settings?"
1315
- msgstr ""
1316
 
1317
  #: ../../admin/lang/dynamic_strings.php:3
1318
  msgid "xx"
@@ -1324,11 +1557,11 @@ msgstr "Desconocido"
1324
 
1325
  #: ../../admin/lang/dynamic_strings.php:5
1326
  msgid "win8.1"
1327
- msgstr ""
1328
 
1329
  #: ../../admin/lang/dynamic_strings.php:6
1330
  msgid "win8"
1331
- msgstr ""
1332
 
1333
  #: ../../admin/lang/dynamic_strings.php:7
1334
  msgid "win7"
@@ -1510,7 +1743,7 @@ msgstr "Symbian OS"
1510
 
1511
  #: ../../admin/lang/dynamic_strings.php:51
1512
  msgid "blackberry os"
1513
- msgstr ""
1514
 
1515
  #: ../../admin/lang/dynamic_strings.php:52
1516
  msgid "webos"
@@ -1571,7 +1804,7 @@ msgstr "Acrobat"
1571
 
1572
  #: ../../admin/lang/dynamic_strings.php:66
1573
  msgid "director"
1574
- msgstr ""
1575
 
1576
  #: ../../admin/lang/dynamic_strings.php:67
1577
  #, fuzzy
@@ -1585,11 +1818,11 @@ msgstr "Media Player"
1585
 
1586
  #: ../../admin/lang/dynamic_strings.php:69
1587
  msgid "quicktime"
1588
- msgstr ""
1589
 
1590
  #: ../../admin/lang/dynamic_strings.php:70
1591
  msgid "real"
1592
- msgstr ""
1593
 
1594
  #: ../../admin/lang/dynamic_strings.php:71
1595
  #, fuzzy
@@ -2418,11 +2651,11 @@ msgstr "Norwegian Nynorsk"
2418
 
2419
  #: ../../admin/lang/dynamic_strings.php:227
2420
  msgid "l-ns"
2421
- msgstr ""
2422
 
2423
  #: ../../admin/lang/dynamic_strings.php:228
2424
  msgid "l-ns-za"
2425
- msgstr ""
2426
 
2427
  # Panjabi; Punjabi
2428
  #: ../../admin/lang/dynamic_strings.php:229
@@ -2802,7 +3035,7 @@ msgid "l-zu-za"
2802
  msgstr "Zulu"
2803
 
2804
  #: ../../admin/lang/dynamic_strings.php:298
2805
- #: ../../admin/view/wp-slimstat-reports.php:495
2806
  msgid "l-"
2807
  msgstr "l-"
2808
 
@@ -2820,53 +3053,58 @@ msgstr "Unknown"
2820
  msgid "c-xy"
2821
  msgstr "Local IP"
2822
 
2823
- #: ../../admin/view/index.php:47 ../../admin/view/wp-slimstat-reports.php:680
2824
  msgid "Today"
2825
- msgstr ""
2826
 
2827
- #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:681
2828
  msgid "Yesterday"
2829
- msgstr ""
2830
-
2831
- #: ../../admin/view/index.php:49
2832
- msgid "Last 7 Days"
2833
- msgstr ""
2834
 
2835
  #: ../../admin/view/index.php:50
2836
- msgid "Last 30 Days"
2837
- msgstr ""
2838
 
2839
  #: ../../admin/view/index.php:51
2840
- msgid "Last 90 Days"
2841
- msgstr ""
2842
 
2843
  #: ../../admin/view/index.php:52
 
 
 
 
2844
  #, fuzzy
2845
- msgid "This Year"
2846
  msgstr "Año"
2847
 
2848
- #: ../../admin/view/index.php:53
2849
  #, fuzzy
2850
  msgid "Date Range"
2851
  msgstr "Fecha y hora"
2852
 
2853
- #: ../../admin/view/index.php:55 ../../admin/view/wp-slimstat-reports.php:72
2854
  msgid "Day"
2855
  msgstr "Día"
2856
 
2857
- #: ../../admin/view/index.php:65 ../../admin/view/wp-slimstat-reports.php:73
2858
  msgid "Month"
2859
  msgstr "Mes"
2860
 
2861
- #: ../../admin/view/index.php:74 ../../admin/view/wp-slimstat-reports.php:74
2862
  msgid "Year"
2863
  msgstr "Año"
2864
 
2865
- #: ../../admin/view/index.php:109
 
 
 
 
 
2866
  msgid "Your report here"
2867
- msgstr ""
2868
 
2869
- #: ../../admin/view/index.php:111
2870
  #, fuzzy
2871
  msgid ""
2872
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
@@ -2886,2122 +3124,2256 @@ msgstr ""
2886
  "información, visite mi <a href=\"http://lab.duechiacchiere.it/\" target="
2887
  "\"_blank\"> Foro de Soporte </ a>."
2888
 
2889
- #: ../../admin/view/index.php:125 ../../admin/view/wp-slimstat-reports.php:671
2890
- #: ../../admin/view/wp-slimstat-reports.php:774
2891
- #: ../../admin/view/wp-slimstat-reports.php:1040
2892
  msgid "Pageviews"
2893
  msgstr "Paginas visitadas"
2894
 
2895
- #: ../../admin/view/index.php:128
2896
  msgid ""
2897
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2898
  "WP SlimStat leverages this information to identify returning visitors. "
2899
  "Please note that visitors also include registered users."
2900
  msgstr ""
 
 
 
 
2901
 
2902
- #: ../../admin/view/index.php:132
2903
  msgid "Take a sneak peek at what human visitors are doing on your website."
2904
  msgstr ""
 
 
2905
 
2906
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
2907
- #: ../../admin/view/index.php:176 ../../admin/view/right-now.php:146
2908
  #, fuzzy
2909
  msgid "Color codes"
2910
  msgstr "Código de Pais"
2911
 
2912
- #: ../../admin/view/index.php:132
2913
  msgid "From a search result page"
2914
- msgstr ""
2915
 
2916
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
2917
- #: ../../admin/view/index.php:176
2918
  #, fuzzy
2919
  msgid "Known Users"
2920
  msgstr "Navegadores recientes"
2921
 
2922
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
2923
- #: ../../admin/view/index.php:176
2924
  msgid "Other Humans"
2925
- msgstr ""
2926
 
2927
- #: ../../admin/view/index.php:136
2928
  msgid "Keywords used by your visitors to find your website on a search engine."
2929
  msgstr ""
 
 
2930
 
2931
- #: ../../admin/view/index.php:139
2932
  msgid ""
2933
  "WP SlimStat retrieves live information from Alexa, Facebook and Google, to "
2934
  "measures your site's rankings. Values are updated every 12 hours. Filters "
2935
  "set above don't apply to this report."
2936
  msgstr ""
 
 
 
2937
 
2938
- #: ../../admin/view/index.php:142
2939
  msgid ""
2940
  "We have teamed up with HackerNinja.com to offer you a free website security "
2941
  "scan. By clicking on Start Free Scan, your website will be analyzed to "
2942
  "detect viruses and other treats. Please note that no confidential "
2943
  "information is being sent to HackerNinja."
2944
  msgstr ""
 
 
 
 
2945
 
2946
- #: ../../admin/view/index.php:145
2947
- #, fuzzy
2948
  msgid "Human Visits"
2949
  msgstr "Visitas humanas"
2950
 
2951
- #: ../../admin/view/index.php:148
2952
  msgid ""
2953
  "Internet Service Provider: a company which provides other companies or "
2954
  "individuals with access to the Internet. Your DSL or cable internet service "
2955
  "is provided to you by your ISP.<br><br>You can ignore specific IP addresses "
2956
  "by setting the corresponding filter under Settings > SlimStat > Filters."
2957
  msgstr ""
 
 
 
 
 
2958
 
2959
- #: ../../admin/view/index.php:151
2960
  msgid ""
2961
  "You can configure WP SlimStat to ignore a specific Country by setting the "
2962
  "corresponding filter under Settings > SlimStat > Filters."
2963
  msgstr ""
 
 
 
2964
 
2965
- #: ../../admin/view/index.php:154
2966
  msgid ""
2967
  "This report shows you what user agent families (no version considered) are "
2968
  "popular among your visitors."
2969
  msgstr ""
 
 
2970
 
2971
- #: ../../admin/view/index.php:157
2972
  msgid ""
2973
  "This report shows you what operating system families (no version considered) "
2974
  "are popular among your visitors."
2975
  msgstr ""
 
 
2976
 
2977
- #: ../../admin/view/index.php:163
2978
  #, fuzzy
2979
  msgid "Average Pageviews per Visit"
2980
  msgstr "Promedio de páginas vistas por horas"
2981
 
2982
- #: ../../admin/view/index.php:166
2983
  msgid ""
2984
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
2985
  "left your site from the entrance (landing) page."
2986
  msgstr ""
 
 
 
2987
 
2988
- #: ../../admin/view/index.php:169
2989
  msgid "Searches performed using Wordpress' built-in search functionality."
2990
  msgstr ""
 
 
2991
 
2992
- #: ../../admin/view/index.php:173
2993
  msgid ""
2994
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
2995
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
2996
  "link has an ID attribute associated to it."
2997
  msgstr ""
 
 
 
 
2998
 
2999
- #: ../../admin/view/index.php:176
3000
  msgid ""
3001
  "This report lists any <em>event</em> occurred on your website. Please refer "
3002
  "to the FAQ for more information on how to leverage this functionality."
3003
  msgstr ""
 
 
 
3004
 
3005
- #: ../../admin/view/index.php:179
3006
  msgid ""
3007
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
3008
  "this report is not affected by the filters set here above."
3009
  msgstr ""
 
 
 
3010
 
3011
  #: ../../admin/view/right-now.php:8
3012
  msgid "Human"
3013
- msgstr ""
3014
 
3015
  #: ../../admin/view/right-now.php:8
3016
  msgid "Bot/Crawler"
3017
- msgstr ""
3018
 
3019
  #: ../../admin/view/right-now.php:8
3020
  msgid "Mobile Device"
3021
- msgstr ""
3022
 
3023
  #: ../../admin/view/right-now.php:8
3024
  msgid "Syndication Reader"
3025
- msgstr ""
3026
 
3027
  #: ../../admin/view/right-now.php:28
3028
- #: ../../admin/view/wp-slimstat-reports.php:438
3029
- #: ../../admin/view/wp-slimstat-reports.php:583
3030
  msgid "No data to display"
3031
  msgstr "No hay datos que mostrar"
3032
 
3033
  # Unknown
3034
- #: ../../admin/view/right-now.php:53
3035
- #: ../../admin/view/wp-slimstat-reports.php:483
3036
- #: ../../admin/view/wp-slimstat-reports.php:621
3037
- #: ../../admin/view/wp-slimstat-reports.php:928
3038
  msgid "c-"
3039
  msgstr "Unknown"
3040
 
3041
- #: ../../admin/view/right-now.php:119
3042
- #: ../../admin/view/wp-slimstat-reports.php:537
3043
- #: ../../admin/view/wp-slimstat-reports.php:541
3044
- #: ../../admin/view/wp-slimstat-reports.php:603
3045
- #: ../../admin/view/wp-slimstat-reports.php:641
3046
  #, fuzzy
3047
  msgid "Open this URL in a new window"
3048
  msgstr "Abrir %s en una nueva ventana"
3049
 
3050
- #: ../../admin/view/right-now.php:122
3051
  msgid "Local search results page"
3052
- msgstr ""
3053
 
3054
- #: ../../admin/view/right-now.php:129
3055
  #, fuzzy
3056
  msgid "Open this referrer in a new window"
3057
  msgstr "Abrir referido en una nueva página"
3058
 
3059
- #: ../../admin/view/right-now.php:130
3060
  #, fuzzy
3061
  msgid "Open this outbound link in a new window"
3062
  msgstr "Abrir %s en una nueva ventana"
3063
 
3064
- #: ../../admin/view/right-now.php:131
3065
  #, fuzzy
3066
  msgid "Date and Time"
3067
  msgstr "Fecha/Hora"
3068
 
3069
- #: ../../admin/view/right-now.php:132
3070
  #, fuzzy
3071
  msgid "Content Type"
3072
  msgstr "Contenido"
3073
 
3074
- #: ../../admin/view/right-now.php:147
3075
  msgid "Visit with keywords"
3076
- msgstr ""
3077
 
3078
- #: ../../admin/view/right-now.php:149
3079
  #, fuzzy
3080
  msgid "Known User"
3081
  msgstr "Navegadores recientes"
3082
 
3083
- #: ../../admin/view/right-now.php:150
3084
  #, fuzzy
3085
  msgid "Human Visitor"
3086
  msgstr "Visitas humanas"
3087
 
3088
- #: ../../admin/view/right-now.php:151
3089
  msgid "Bot or Crawler"
3090
- msgstr ""
3091
 
3092
- #: ../../admin/view/wp-slimstat-reports.php:44
3093
  msgid "IP Address"
3094
- msgstr ""
3095
 
3096
- #: ../../admin/view/wp-slimstat-reports.php:49
3097
  msgid "Domain"
3098
  msgstr "Dominio"
3099
 
3100
- #: ../../admin/view/wp-slimstat-reports.php:53
3101
  msgid "-- Advanced filters --"
3102
- msgstr ""
3103
 
3104
- #: ../../admin/view/wp-slimstat-reports.php:54
3105
- #: ../../admin/view/wp-slimstat-reports.php:99
3106
  #, fuzzy
3107
  msgid "Browser Capabilities"
3108
  msgstr "Navegador"
3109
 
3110
- #: ../../admin/view/wp-slimstat-reports.php:66
3111
  #, fuzzy
3112
  msgid "Resource ID"
3113
  msgstr "Principales Recursos"
3114
 
3115
- #: ../../admin/view/wp-slimstat-reports.php:71
3116
  #, fuzzy
3117
  msgid "Hour"
3118
  msgstr "Paginas visitadas"
3119
 
3120
- #: ../../admin/view/wp-slimstat-reports.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
3121
  #, fuzzy
3122
  msgid "Pageviews (chart)"
3123
  msgstr "Páginas visitadas por horas"
3124
 
3125
- #: ../../admin/view/wp-slimstat-reports.php:79
3126
  #, fuzzy
3127
  msgid "About WP SlimStat"
3128
  msgstr "Acerca de WP-SlimStat"
3129
 
3130
- #: ../../admin/view/wp-slimstat-reports.php:80
3131
- #: ../../admin/view/wp-slimstat-reports.php:93
3132
  msgid "At a Glance"
3133
- msgstr ""
3134
 
3135
- #: ../../admin/view/wp-slimstat-reports.php:81
3136
  #, fuzzy
3137
  msgid "Currently Online"
3138
  msgstr "Filtros Actuales:"
3139
 
3140
- #: ../../admin/view/wp-slimstat-reports.php:82
3141
- #: ../../admin/view/wp-slimstat-reports.php:117
3142
  msgid "Spy View"
3143
- msgstr ""
3144
 
3145
- #: ../../admin/view/wp-slimstat-reports.php:83
3146
- #: ../../admin/view/wp-slimstat-reports.php:118
3147
  #, fuzzy
3148
  msgid "Recent Search Terms"
3149
  msgstr "Búsquedas Internas Recientes"
3150
 
3151
- #: ../../admin/view/wp-slimstat-reports.php:84
3152
  #, fuzzy
3153
  msgid "Top Pages"
3154
  msgstr "Principales Páginas de Salida"
3155
 
3156
- #: ../../admin/view/wp-slimstat-reports.php:85
3157
- #: ../../admin/view/wp-slimstat-reports.php:115
3158
  #, fuzzy
3159
  msgid "Top Traffic Sources"
3160
  msgstr "Origen del Tráfico"
3161
 
3162
- #: ../../admin/view/wp-slimstat-reports.php:86
3163
  #, fuzzy
3164
  msgid "Top Known Visitors"
3165
  msgstr "Palabras clave recientes"
3166
 
3167
- #: ../../admin/view/wp-slimstat-reports.php:87
3168
- #: ../../admin/view/wp-slimstat-reports.php:113
3169
- #: ../../admin/view/wp-slimstat-reports.php:133
3170
  #, fuzzy
3171
  msgid "Top Search Terms"
3172
  msgstr "Principales Recursos"
3173
 
3174
- #: ../../admin/view/wp-slimstat-reports.php:88
3175
- #: ../../admin/view/wp-slimstat-reports.php:100
3176
- #: ../../admin/view/wp-slimstat-reports.php:114
3177
  msgid "Top Countries"
3178
  msgstr "Paises que más visitan"
3179
 
3180
- #: ../../admin/view/wp-slimstat-reports.php:89
3181
  msgid "Rankings"
3182
- msgstr ""
3183
 
3184
- #: ../../admin/view/wp-slimstat-reports.php:90
3185
  msgid "Security Scan"
3186
- msgstr ""
3187
 
3188
- #: ../../admin/view/wp-slimstat-reports.php:91
3189
  #, fuzzy
3190
  msgid "Top Language Families"
3191
  msgstr "Idiomas"
3192
 
3193
- #: ../../admin/view/wp-slimstat-reports.php:92
3194
  #, fuzzy
3195
  msgid "Human Visits (chart)"
3196
  msgstr "Visitas humanas por hora"
3197
 
3198
- #: ../../admin/view/wp-slimstat-reports.php:94
3199
  #, fuzzy
3200
  msgid "Top Languages"
3201
  msgstr "Idiomas"
3202
 
3203
- #: ../../admin/view/wp-slimstat-reports.php:95
3204
  #, fuzzy
3205
  msgid "Top Browsers"
3206
  msgstr "Navegador"
3207
 
3208
- #: ../../admin/view/wp-slimstat-reports.php:96
3209
  #, fuzzy
3210
  msgid "Top Service Providers"
3211
  msgstr "Principales Recursos"
3212
 
3213
- #: ../../admin/view/wp-slimstat-reports.php:97
3214
  #, fuzzy
3215
  msgid "Top Operating Systems"
3216
  msgstr "Sistemas Operativos"
3217
 
3218
- #: ../../admin/view/wp-slimstat-reports.php:98
3219
  #, fuzzy
3220
  msgid "Top Screen Resolutions"
3221
  msgstr "Resolución de Pantalla"
3222
 
3223
- #: ../../admin/view/wp-slimstat-reports.php:101
3224
  #, fuzzy
3225
  msgid "Visit Duration"
3226
  msgstr "Visitas"
3227
 
3228
- #: ../../admin/view/wp-slimstat-reports.php:102
3229
- #: ../../admin/view/wp-slimstat-reports.php:119
3230
  msgid "Recent Countries"
3231
  msgstr "Paises Recientes"
3232
 
3233
- #: ../../admin/view/wp-slimstat-reports.php:103
3234
  #, fuzzy
3235
  msgid "Recent Screen Resolutions"
3236
  msgstr "Resolución de Pantalla"
3237
 
3238
- #: ../../admin/view/wp-slimstat-reports.php:104
3239
  #, fuzzy
3240
  msgid "Recent Operating Systems"
3241
  msgstr "Sistemas Operativos"
3242
 
3243
- #: ../../admin/view/wp-slimstat-reports.php:105
3244
  #, fuzzy
3245
  msgid "Recent Browsers"
3246
  msgstr "Contenidos Recientes"
3247
 
3248
- #: ../../admin/view/wp-slimstat-reports.php:106
3249
  #, fuzzy
3250
  msgid "Recent Languages"
3251
  msgstr "Idiomas"
3252
 
3253
- #: ../../admin/view/wp-slimstat-reports.php:107
3254
  #, fuzzy
3255
  msgid "Top Browser Families"
3256
  msgstr "Navegador"
3257
 
3258
- #: ../../admin/view/wp-slimstat-reports.php:108
3259
  msgid "Top OS Families"
3260
- msgstr ""
3261
 
3262
- #: ../../admin/view/wp-slimstat-reports.php:109
3263
  #, fuzzy
3264
  msgid "Recent Users"
3265
  msgstr "Buscadores"
3266
 
3267
- #: ../../admin/view/wp-slimstat-reports.php:110
3268
  #, fuzzy
3269
  msgid "Top Users"
3270
  msgstr "Buscadores"
3271
 
3272
- #: ../../admin/view/wp-slimstat-reports.php:111
3273
  #, fuzzy
3274
  msgid "Traffic Sources (chart)"
3275
  msgstr "Origen del Tráfico"
3276
 
3277
- #: ../../admin/view/wp-slimstat-reports.php:112
3278
  #, fuzzy
3279
  msgid "Summary"
3280
  msgstr "Sumario de"
3281
 
3282
- #: ../../admin/view/wp-slimstat-reports.php:116
3283
  #, fuzzy
3284
  msgid "Top Referring Search Engines"
3285
  msgstr "Motores de Búsqueda"
3286
 
3287
- #: ../../admin/view/wp-slimstat-reports.php:120
3288
- #: ../../admin/view/wp-slimstat-reports.php:136
3289
  #, fuzzy
3290
  msgid "Top Landing Pages"
3291
  msgstr "Principales Páginas de Salida"
3292
 
3293
- #: ../../admin/view/wp-slimstat-reports.php:121
3294
  #, fuzzy
3295
  msgid "Average Pageviews per Visit (chart)"
3296
  msgstr "Promedio de páginas vistas por horas"
3297
 
3298
- #: ../../admin/view/wp-slimstat-reports.php:122
3299
  #, fuzzy
3300
  msgid "Recent Posts"
3301
  msgstr "Contenidos Recientes"
3302
 
3303
- #: ../../admin/view/wp-slimstat-reports.php:123
3304
  #, fuzzy
3305
  msgid "Recent Bounce Pages"
3306
  msgstr "Páginas recientes de rebote"
3307
 
3308
- #: ../../admin/view/wp-slimstat-reports.php:124
3309
  msgid "Recent Feeds"
3310
  msgstr "Feeds Recientes"
3311
 
3312
- #: ../../admin/view/wp-slimstat-reports.php:125
3313
  msgid "Recent Pages Not Found"
3314
- msgstr ""
3315
 
3316
- #: ../../admin/view/wp-slimstat-reports.php:126
3317
  msgid "Recent Internal Searches"
3318
  msgstr "Búsquedas Internas Recientes"
3319
 
3320
- #: ../../admin/view/wp-slimstat-reports.php:127
3321
  #, fuzzy
3322
  msgid "Top Categories"
3323
  msgstr "Principales Páginas de Salida"
3324
 
3325
- #: ../../admin/view/wp-slimstat-reports.php:128
3326
  msgid "Recent Outbound Links"
3327
  msgstr "Enlaces Salientes Recientes"
3328
 
3329
- #: ../../admin/view/wp-slimstat-reports.php:129
3330
  #, fuzzy
3331
  msgid "Recent Events"
3332
  msgstr "Contenidos Recientes"
3333
 
3334
- #: ../../admin/view/wp-slimstat-reports.php:130
3335
  #, fuzzy
3336
  msgid "Top Posts"
3337
  msgstr "Paises que más visitan"
3338
 
3339
- #: ../../admin/view/wp-slimstat-reports.php:131
3340
  #, fuzzy
3341
  msgid "Top Feeds"
3342
  msgstr "Top Palabras Clave"
3343
 
3344
- #: ../../admin/view/wp-slimstat-reports.php:132
3345
  #, fuzzy
3346
  msgid "Top Internal Searches"
3347
  msgstr "Búsquedas Internas Recientes"
3348
 
3349
- #: ../../admin/view/wp-slimstat-reports.php:134
3350
  #, fuzzy
3351
  msgid "Recent Categories"
3352
  msgstr "Paises Recientes"
3353
 
3354
- #: ../../admin/view/wp-slimstat-reports.php:135
3355
  #, fuzzy
3356
  msgid "Top Pages Not Found"
3357
  msgstr "Principales Páginas de Salida"
3358
 
3359
- #: ../../admin/view/wp-slimstat-reports.php:137
3360
  #, fuzzy
3361
  msgid "Top Authors"
3362
  msgstr "Autor de la entrada(sección)"
3363
 
3364
- #: ../../admin/view/wp-slimstat-reports.php:138
3365
  #, fuzzy
3366
  msgid "Top Tags"
3367
  msgstr "Principales Páginas de Salida"
3368
 
3369
- #: ../../admin/view/wp-slimstat-reports.php:139
3370
  msgid "Recent Downloads"
3371
  msgstr "Descargas Recientes"
3372
 
3373
- #: ../../admin/view/wp-slimstat-reports.php:140
3374
  msgid "Top Outbound Links and Downloads"
3375
- msgstr ""
3376
 
3377
- #: ../../admin/view/wp-slimstat-reports.php:141
3378
  msgid "Your Website"
3379
- msgstr ""
3380
 
3381
- #: ../../admin/view/wp-slimstat-reports.php:143
3382
  msgid "Activity Log"
3383
- msgstr ""
3384
 
3385
- #: ../../admin/view/wp-slimstat-reports.php:241
3386
  msgid "Chart controls"
3387
- msgstr ""
3388
 
3389
- #: ../../admin/view/wp-slimstat-reports.php:241
3390
  msgid "Use your mouse wheel to zoom in and out"
3391
- msgstr ""
3392
 
3393
- #: ../../admin/view/wp-slimstat-reports.php:241
3394
  msgid "While zooming in, drag the chart to move to a different area"
3395
- msgstr ""
3396
 
3397
- #: ../../admin/view/wp-slimstat-reports.php:241
3398
  msgid "Double click on an empty region to reset the zoom level"
3399
  msgstr ""
 
3400
 
3401
- #: ../../admin/view/wp-slimstat-reports.php:242
3402
  msgid ""
3403
  "Click on a data point to display the activity chart for each hour of that day"
3404
  msgstr ""
 
 
3405
 
3406
- #: ../../admin/view/wp-slimstat-reports.php:274
3407
  msgid "src"
3408
- msgstr ""
3409
 
3410
- #: ../../admin/view/wp-slimstat-reports.php:275
3411
  msgid "serp"
3412
- msgstr ""
3413
 
3414
- #: ../../admin/view/wp-slimstat-reports.php:280
3415
  msgid "Go to the corresponding search engine result page"
3416
- msgstr ""
3417
 
3418
- #: ../../admin/view/wp-slimstat-reports.php:283
3419
  msgid "Go to the referring page"
3420
- msgstr ""
3421
 
3422
- #: ../../admin/view/wp-slimstat-reports.php:302
3423
  #, fuzzy
3424
  msgid "Remove filter for"
3425
  msgstr "Seleccionar filtro"
3426
 
3427
- #: ../../admin/view/wp-slimstat-reports.php:309
3428
  msgid "Reset All"
3429
- msgstr ""
3430
 
3431
- #: ../../admin/view/wp-slimstat-reports.php:312
3432
  msgid "Current filters:"
3433
  msgstr "Filtros Actuales:"
3434
 
3435
- #: ../../admin/view/wp-slimstat-reports.php:316
3436
  msgid "Refresh"
3437
- msgstr ""
3438
 
3439
- #: ../../admin/view/wp-slimstat-reports.php:353
3440
  #, php-format
3441
  msgid "Results %s - %s of %s"
3442
- msgstr ""
3443
 
3444
- #: ../../admin/view/wp-slimstat-reports.php:355
3445
  msgid "Refresh in"
3446
- msgstr ""
3447
 
3448
- #: ../../admin/view/wp-slimstat-reports.php:377
3449
- #: ../../admin/view/wp-slimstat-reports.php:389
3450
  #, fuzzy, php-format
3451
  msgid "Daily %s"
3452
  msgstr "Paginas visitadas"
3453
 
3454
- #: ../../admin/view/wp-slimstat-reports.php:380
3455
  #, php-format
3456
  msgid "%s Minute by Minute"
3457
- msgstr ""
3458
 
3459
- #: ../../admin/view/wp-slimstat-reports.php:383
3460
  #, fuzzy, php-format
3461
  msgid "Hourly %s"
3462
  msgstr "Paginas visitadas"
3463
 
3464
- #: ../../admin/view/wp-slimstat-reports.php:386
3465
  #, fuzzy, php-format
3466
  msgid "Monthly %s"
3467
  msgstr "Mes"
3468
 
3469
- #: ../../admin/view/wp-slimstat-reports.php:465
3470
  #, fuzzy
3471
  msgid "Category ID"
3472
  msgstr "ID de la entrada(sección) de la Categoria"
3473
 
3474
- #: ../../admin/view/wp-slimstat-reports.php:498
3475
  msgid "OS Code"
3476
- msgstr ""
3477
 
3478
- #: ../../admin/view/wp-slimstat-reports.php:508
3479
  #, fuzzy
3480
  msgid "Referrer"
3481
  msgstr "Referido"
3482
 
3483
- #: ../../admin/view/wp-slimstat-reports.php:532
3484
- #: ../../admin/view/wp-slimstat-reports.php:709
3485
- #: ../../admin/view/wp-slimstat-reports.php:718
3486
- #: ../../admin/view/wp-slimstat-reports.php:724
3487
- #: ../../admin/view/wp-slimstat-reports.php:730
3488
- #: ../../admin/view/wp-slimstat-reports.php:736
3489
- #: ../../admin/view/wp-slimstat-reports.php:742
3490
- #: ../../admin/view/wp-slimstat-reports.php:748
3491
- #: ../../admin/view/wp-slimstat-reports.php:754
3492
  #, fuzzy
3493
  msgid "Hits"
3494
  msgstr "Visitas"
3495
 
3496
- #: ../../admin/view/wp-slimstat-reports.php:600
3497
  #, fuzzy
3498
  msgid "Search for"
3499
  msgstr "Sumario de"
3500
 
3501
- #: ../../admin/view/wp-slimstat-reports.php:631
3502
- #: ../../admin/view/wp-slimstat-reports.php:641
3503
  #, fuzzy
3504
  msgid "Source"
3505
  msgstr "Porcentaje de Abandonos"
3506
 
3507
- #: ../../admin/view/wp-slimstat-reports.php:633
3508
  msgid "Keywords"
3509
  msgstr "Palabras clave"
3510
 
3511
- #: ../../admin/view/wp-slimstat-reports.php:641
3512
  #, php-format
3513
  msgid "Filter results where resource equals %s"
3514
- msgstr ""
3515
 
3516
- #: ../../admin/view/wp-slimstat-reports.php:651
3517
  #, fuzzy
3518
  msgid "Total Pageviews"
3519
  msgstr "Paginas visitadas"
3520
 
3521
- #: ../../admin/view/wp-slimstat-reports.php:652
3522
  #, fuzzy
3523
  msgid "DB Size"
3524
  msgstr "Tamaño de los Datos"
3525
 
3526
- #: ../../admin/view/wp-slimstat-reports.php:653
3527
  msgid "Tracking Active"
3528
  msgstr "Seguimiento Activo"
3529
 
3530
- #: ../../admin/view/wp-slimstat-reports.php:654
3531
  msgid "Javascript Mode"
3532
- msgstr ""
3533
 
3534
- #: ../../admin/view/wp-slimstat-reports.php:655
3535
  msgid "Tracking Browser Caps"
3536
- msgstr ""
3537
 
3538
- #: ../../admin/view/wp-slimstat-reports.php:656
3539
  msgid "Auto purge"
3540
  msgstr "Autopurgar"
3541
 
3542
- #: ../../admin/view/wp-slimstat-reports.php:657
3543
  #, fuzzy
3544
  msgid "Oldest pageview"
3545
  msgstr "Visita más larga"
3546
 
3547
- #: ../../admin/view/wp-slimstat-reports.php:657
3548
  #, fuzzy
3549
  msgid "No visits"
3550
  msgstr "Visitantes"
3551
 
3552
- #: ../../admin/view/wp-slimstat-reports.php:670
3553
- #: ../../admin/view/wp-slimstat-reports.php:773
3554
  msgid ""
3555
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
3556
  "time the tracking code is executed."
3557
  msgstr ""
 
 
3558
 
3559
- #: ../../admin/view/wp-slimstat-reports.php:672
3560
  msgid "How many pages have been visited on average during the current period."
3561
- msgstr ""
3562
 
3563
- #: ../../admin/view/wp-slimstat-reports.php:673
3564
- #: ../../admin/view/wp-slimstat-reports.php:1053
3565
- msgid "Avg Pageviews"
3566
  msgstr "Promedio Paginas Visitadas"
3567
 
3568
- #: ../../admin/view/wp-slimstat-reports.php:674
3569
  msgid ""
3570
  "Visitors who landed on your site after searching for a keyword on Google, "
3571
  "Yahoo, etc."
3572
  msgstr ""
 
 
3573
 
3574
- #: ../../admin/view/wp-slimstat-reports.php:675
3575
  #, fuzzy
3576
  msgid "From Search Results"
3577
  msgstr "Principales Recursos"
3578
 
3579
- #: ../../admin/view/wp-slimstat-reports.php:676
3580
  msgid ""
3581
  "Used to differentiate between multiple requests to download a file from one "
3582
  "internet address (IP) and requests originating from many distinct addresses"
3583
  msgstr ""
 
 
 
3584
 
3585
- #: ../../admin/view/wp-slimstat-reports.php:677
3586
- #: ../../admin/view/wp-slimstat-reports.php:693
3587
- #: ../../admin/view/wp-slimstat-reports.php:1040
3588
- #: ../../admin/view/wp-slimstat-reports.php:1044
3589
- #: ../../admin/view/wp-slimstat-reports.php:1048
3590
  msgid "Unique IPs"
3591
  msgstr "IPs Unicas"
3592
 
3593
- #: ../../admin/view/wp-slimstat-reports.php:678
3594
  msgid "Last 5 minutes"
3595
- msgstr ""
3596
 
3597
- #: ../../admin/view/wp-slimstat-reports.php:679
3598
  msgid "Last 30 minutes"
3599
- msgstr ""
3600
 
3601
- #: ../../admin/view/wp-slimstat-reports.php:690
3602
  msgid ""
3603
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3604
  "multiple times if they perform multiple visits."
3605
  msgstr ""
 
 
3606
 
3607
- #: ../../admin/view/wp-slimstat-reports.php:691
3608
  msgid "Human visits"
3609
  msgstr "Visitas humanas"
3610
 
3611
- #: ../../admin/view/wp-slimstat-reports.php:692
3612
  msgid "It includes only traffic generated by human visitors."
3613
- msgstr ""
3614
 
3615
- #: ../../admin/view/wp-slimstat-reports.php:694
3616
- #: ../../admin/view/wp-slimstat-reports.php:785
3617
  msgid ""
3618
  "Percentage of single-page visits, i.e. visits in which the person left your "
3619
  "site from the entrance page."
3620
  msgstr ""
 
 
3621
 
3622
- #: ../../admin/view/wp-slimstat-reports.php:695
3623
  msgid "Bounce rate"
3624
  msgstr "Porcentaje de Abandonos"
3625
 
3626
- #: ../../admin/view/wp-slimstat-reports.php:696
3627
  msgid "Visitors who had previously left a comment on your blog."
3628
- msgstr ""
3629
 
3630
- #: ../../admin/view/wp-slimstat-reports.php:697
3631
  #, fuzzy
3632
  msgid "Known visitors"
3633
  msgstr "Palabras clave recientes"
3634
 
3635
- #: ../../admin/view/wp-slimstat-reports.php:698
3636
  msgid "Human users who visited your site only once."
3637
- msgstr ""
3638
 
3639
- #: ../../admin/view/wp-slimstat-reports.php:699
3640
  #, fuzzy
3641
  msgid "New visitors"
3642
  msgstr "Visitantes"
3643
 
3644
- #: ../../admin/view/wp-slimstat-reports.php:700
3645
  msgid "Bots"
3646
  msgstr "Motores de Búsqueda"
3647
 
3648
- #: ../../admin/view/wp-slimstat-reports.php:701
3649
  msgid "Pages per visit"
3650
  msgstr "Páginas por visita"
3651
 
3652
- #: ../../admin/view/wp-slimstat-reports.php:702
3653
- #: ../../admin/view/wp-slimstat-reports.php:1053
3654
  msgid "Longest visit"
3655
  msgstr "Visita más larga"
3656
 
3657
- #: ../../admin/view/wp-slimstat-reports.php:702
3658
  #, fuzzy
3659
  msgid "hits"
3660
  msgstr "Visitas"
3661
 
3662
- #: ../../admin/view/wp-slimstat-reports.php:720
3663
  msgid "0 - 30 seconds"
3664
- msgstr ""
3665
 
3666
- #: ../../admin/view/wp-slimstat-reports.php:726
3667
  msgid "31 - 60 seconds"
3668
- msgstr ""
3669
 
3670
- #: ../../admin/view/wp-slimstat-reports.php:732
3671
  msgid "1 - 3 minutes"
3672
- msgstr ""
3673
 
3674
- #: ../../admin/view/wp-slimstat-reports.php:738
3675
  msgid "3 - 5 minutes"
3676
- msgstr ""
3677
 
3678
- #: ../../admin/view/wp-slimstat-reports.php:744
3679
  msgid "5 - 7 minutes"
3680
- msgstr ""
3681
 
3682
- #: ../../admin/view/wp-slimstat-reports.php:750
3683
  msgid "7 - 10 minutes"
3684
- msgstr ""
3685
 
3686
- #: ../../admin/view/wp-slimstat-reports.php:756
3687
  msgid "More than 10 minutes"
3688
- msgstr ""
3689
 
3690
- #: ../../admin/view/wp-slimstat-reports.php:765
3691
  #, fuzzy
3692
  msgid "Average time on site"
3693
  msgstr "Promedio de páginas vistas por horas"
3694
 
3695
- #: ../../admin/view/wp-slimstat-reports.php:775
3696
  msgid ""
3697
  "A referrer (or referring site) is the site that a visitor previously visited "
3698
  "before following a link to your site."
3699
  msgstr ""
 
 
3700
 
3701
- #: ../../admin/view/wp-slimstat-reports.php:776
3702
  #, fuzzy
3703
  msgid "Unique Referrers"
3704
  msgstr "Referidos Únicos"
3705
 
3706
- #: ../../admin/view/wp-slimstat-reports.php:777
3707
  msgid ""
3708
  "Visitors who visited the site by typing the URL directly into their browser. "
3709
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
3710
  "their bookmarks/favorites, untagged links within emails, or links from "
3711
  "documents that don't include tracking variables."
3712
  msgstr ""
 
 
 
 
3713
 
3714
- #: ../../admin/view/wp-slimstat-reports.php:778
3715
  #, fuzzy
3716
  msgid "Direct Pageviews"
3717
  msgstr "Paginas visitadas"
3718
 
3719
- #: ../../admin/view/wp-slimstat-reports.php:779
3720
  msgid ""
3721
  "Visitors who came to your site via searches on Google or some other search "
3722
  "engine."
3723
  msgstr ""
 
 
3724
 
3725
- #: ../../admin/view/wp-slimstat-reports.php:780
3726
  msgid "From a search result"
3727
- msgstr ""
3728
 
3729
- #: ../../admin/view/wp-slimstat-reports.php:781
3730
  msgid ""
3731
  "The first page that a user views during a session. This is also known as the "
3732
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
3733
  "Space,' and they land on your home page, it gets counted (for that visit) as "
3734
  "a landing page."
3735
  msgstr ""
 
 
 
 
3736
 
3737
- #: ../../admin/view/wp-slimstat-reports.php:782
3738
  #, fuzzy
3739
  msgid "Unique Landing Pages"
3740
  msgstr "IPs Unicas"
3741
 
3742
- #: ../../admin/view/wp-slimstat-reports.php:783
3743
  msgid "Number of single-page visits to your site over the selected period."
3744
- msgstr ""
3745
 
3746
- #: ../../admin/view/wp-slimstat-reports.php:784
3747
  #, fuzzy
3748
  msgid "Bounce Pages"
3749
  msgstr "Porcentaje de Abandonos"
3750
 
3751
- #: ../../admin/view/wp-slimstat-reports.php:786
3752
  #, fuzzy
3753
  msgid "New Visitors Rate"
3754
  msgstr "Visitantes"
3755
 
3756
- #: ../../admin/view/wp-slimstat-reports.php:787
3757
  msgid ""
3758
  "Visitors who visited the site in the last 5 minutes coming from a search "
3759
  "engine."
3760
  msgstr ""
 
 
3761
 
3762
- #: ../../admin/view/wp-slimstat-reports.php:788
3763
  #, fuzzy
3764
  msgid "Currently from search engines"
3765
  msgstr "Motores de Búsqueda"
3766
 
3767
- #: ../../admin/view/wp-slimstat-reports.php:856
3768
  msgid "Number of pages in your site included in Google's index."
3769
- msgstr ""
3770
 
3771
- #: ../../admin/view/wp-slimstat-reports.php:857
3772
  msgid "Google Index"
3773
- msgstr ""
3774
 
3775
- #: ../../admin/view/wp-slimstat-reports.php:858
3776
  msgid "Number of pages, according to Google, that link back to your site."
3777
  msgstr ""
 
3778
 
3779
- #: ../../admin/view/wp-slimstat-reports.php:859
3780
  msgid "Google Backlinks"
3781
- msgstr ""
3782
 
3783
- #: ../../admin/view/wp-slimstat-reports.php:860
3784
  msgid ""
3785
  "How many times the Facebook Like button has been approximately clicked on "
3786
  "your site."
3787
  msgstr ""
 
 
3788
 
3789
- #: ../../admin/view/wp-slimstat-reports.php:861
3790
  msgid "Facebook Likes"
3791
- msgstr ""
3792
 
3793
- #: ../../admin/view/wp-slimstat-reports.php:862
3794
  msgid ""
3795
  "How many times your site has been shared by someone on the social network."
3796
  msgstr ""
 
3797
 
3798
- #: ../../admin/view/wp-slimstat-reports.php:863
3799
  msgid "Facebook Shares"
3800
- msgstr ""
3801
 
3802
- #: ../../admin/view/wp-slimstat-reports.php:864
3803
  msgid "How many times links to your website have been clicked on Facebook."
3804
- msgstr ""
3805
 
3806
- #: ../../admin/view/wp-slimstat-reports.php:865
3807
  #, fuzzy
3808
  msgid "Facebook Clicks"
3809
  msgstr "Enlaces Salientes Recientes"
3810
 
3811
- #: ../../admin/view/wp-slimstat-reports.php:866
3812
  msgid ""
3813
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3814
  "traffic data."
3815
  msgstr ""
 
 
3816
 
3817
- #: ../../admin/view/wp-slimstat-reports.php:867
3818
  msgid "Alexa World Rank"
3819
- msgstr ""
3820
 
3821
- #: ../../admin/view/wp-slimstat-reports.php:868
3822
  msgid "Alexa Country Rank"
3823
- msgstr ""
3824
 
3825
- #: ../../admin/view/wp-slimstat-reports.php:869
3826
  msgid "Alexa Popularity"
3827
- msgstr ""
3828
 
3829
- #: ../../admin/view/wp-slimstat-reports.php:882
3830
  msgid "Bing Test"
3831
- msgstr ""
3832
 
3833
- #: ../../admin/view/wp-slimstat-reports.php:883
3834
  msgid "AntiVirus Scan"
3835
- msgstr ""
3836
 
3837
- #: ../../admin/view/wp-slimstat-reports.php:884
3838
  msgid "Google Bot Test"
3839
- msgstr ""
3840
 
3841
- #: ../../admin/view/wp-slimstat-reports.php:885
3842
  msgid "Scan for Hostile Strings"
3843
- msgstr ""
3844
 
3845
- #: ../../admin/view/wp-slimstat-reports.php:886
3846
  msgid "Generic Web Bot test"
3847
- msgstr ""
3848
 
3849
- #: ../../admin/view/wp-slimstat-reports.php:887
3850
  msgid "Google Safe Browsing List"
3851
- msgstr ""
3852
 
3853
- #: ../../admin/view/wp-slimstat-reports.php:888
3854
  msgid "Hostile External Links"
3855
- msgstr ""
3856
 
3857
- #: ../../admin/view/wp-slimstat-reports.php:889
3858
  msgid "Other Treats"
3859
- msgstr ""
3860
 
3861
- #: ../../admin/view/wp-slimstat-reports.php:902
3862
  msgid "Passed"
3863
- msgstr ""
3864
 
3865
- #: ../../admin/view/wp-slimstat-reports.php:902
3866
  msgid "At Risk"
3867
- msgstr ""
3868
 
3869
- #: ../../admin/view/wp-slimstat-reports.php:905
3870
  msgid "Timed Out"
3871
- msgstr ""
3872
 
3873
  # Unknown
3874
- #: ../../admin/view/wp-slimstat-reports.php:919
3875
  msgid "c-xx"
3876
  msgstr "Unknown"
3877
 
3878
  # Afghanistan
3879
- #: ../../admin/view/wp-slimstat-reports.php:919
3880
  msgid "c-af"
3881
  msgstr "Afghanistan"
3882
 
3883
  # Åland Islands
3884
- #: ../../admin/view/wp-slimstat-reports.php:919
3885
  msgid "c-ax"
3886
  msgstr "Åland Islands"
3887
 
3888
  # Albania
3889
- #: ../../admin/view/wp-slimstat-reports.php:919
3890
  msgid "c-al"
3891
  msgstr "Albania"
3892
 
3893
  # Algeria
3894
- #: ../../admin/view/wp-slimstat-reports.php:919
3895
  msgid "c-dz"
3896
  msgstr "Algeria"
3897
 
3898
  # Andorra
3899
- #: ../../admin/view/wp-slimstat-reports.php:919
3900
  msgid "c-ad"
3901
  msgstr "Andorra"
3902
 
3903
  # Angola
3904
- #: ../../admin/view/wp-slimstat-reports.php:919
3905
  msgid "c-ao"
3906
  msgstr "Angola"
3907
 
3908
  # Anguilla
3909
- #: ../../admin/view/wp-slimstat-reports.php:919
3910
  msgid "c-ai"
3911
  msgstr "Anguilla"
3912
 
3913
  # Antigua and Barbuda
3914
- #: ../../admin/view/wp-slimstat-reports.php:919
3915
  msgid "c-ag"
3916
  msgstr "Antigua and Barbuda"
3917
 
3918
  # Argentina
3919
- #: ../../admin/view/wp-slimstat-reports.php:919
3920
  msgid "c-ar"
3921
  msgstr "Argentina"
3922
 
3923
  # Armenia
3924
- #: ../../admin/view/wp-slimstat-reports.php:919
3925
  msgid "c-am"
3926
  msgstr "Armenia"
3927
 
3928
  # Aruba
3929
- #: ../../admin/view/wp-slimstat-reports.php:919
3930
  msgid "c-aw"
3931
  msgstr "Aruba"
3932
 
3933
  # Australia
3934
- #: ../../admin/view/wp-slimstat-reports.php:919
3935
  msgid "c-au"
3936
  msgstr "Australia"
3937
 
3938
  # Austria
3939
- #: ../../admin/view/wp-slimstat-reports.php:919
3940
  msgid "c-at"
3941
  msgstr "Austria"
3942
 
3943
  # Azerbaijan
3944
- #: ../../admin/view/wp-slimstat-reports.php:919
3945
  msgid "c-az"
3946
  msgstr "Azerbaijan"
3947
 
3948
  # Bahamas
3949
- #: ../../admin/view/wp-slimstat-reports.php:919
3950
  msgid "c-bs"
3951
  msgstr "Bahamas"
3952
 
3953
  # Bahrain
3954
- #: ../../admin/view/wp-slimstat-reports.php:919
3955
  msgid "c-bh"
3956
  msgstr "Bahrain"
3957
 
3958
  # Bangladesh
3959
- #: ../../admin/view/wp-slimstat-reports.php:919
3960
  msgid "c-bd"
3961
  msgstr "Bangladesh"
3962
 
3963
  # Barbados
3964
- #: ../../admin/view/wp-slimstat-reports.php:919
3965
  msgid "c-bb"
3966
  msgstr "Barbados"
3967
 
3968
  # Belarus
3969
- #: ../../admin/view/wp-slimstat-reports.php:919
3970
  msgid "c-by"
3971
  msgstr "Belarus"
3972
 
3973
  # Belgium
3974
- #: ../../admin/view/wp-slimstat-reports.php:919
3975
  msgid "c-be"
3976
  msgstr "Belgium"
3977
 
3978
  # Belize
3979
- #: ../../admin/view/wp-slimstat-reports.php:919
3980
  msgid "c-bz"
3981
  msgstr "Belize"
3982
 
3983
  # Benin
3984
- #: ../../admin/view/wp-slimstat-reports.php:919
3985
  msgid "c-bj"
3986
  msgstr "Benin"
3987
 
3988
  # Bermuda
3989
- #: ../../admin/view/wp-slimstat-reports.php:919
3990
  msgid "c-bm"
3991
  msgstr "Bermuda"
3992
 
3993
  # Bhutan
3994
- #: ../../admin/view/wp-slimstat-reports.php:919
3995
  msgid "c-bt"
3996
  msgstr "Bhutan"
3997
 
3998
  # Bolivia
3999
- #: ../../admin/view/wp-slimstat-reports.php:919
4000
  msgid "c-bo"
4001
  msgstr "Bolivia"
4002
 
4003
  # Bosnia and Herzegovina
4004
- #: ../../admin/view/wp-slimstat-reports.php:919
4005
  msgid "c-ba"
4006
  msgstr "Bosnia and Herzegovina"
4007
 
4008
  # Botswana
4009
- #: ../../admin/view/wp-slimstat-reports.php:919
4010
  msgid "c-bw"
4011
  msgstr "Botswana"
4012
 
4013
  # Brazil
4014
- #: ../../admin/view/wp-slimstat-reports.php:919
4015
  msgid "c-br"
4016
  msgstr "Brazil"
4017
 
4018
  # Brunei Darussalam
4019
- #: ../../admin/view/wp-slimstat-reports.php:919
4020
  msgid "c-bn"
4021
  msgstr "Brunei Darussalam"
4022
 
4023
  # Bulgaria
4024
- #: ../../admin/view/wp-slimstat-reports.php:919
4025
  msgid "c-bg"
4026
  msgstr "Bulgaria"
4027
 
4028
  # Burkina Faso
4029
- #: ../../admin/view/wp-slimstat-reports.php:919
4030
  msgid "c-bf"
4031
  msgstr "Burkina Faso"
4032
 
4033
  # Burundi
4034
- #: ../../admin/view/wp-slimstat-reports.php:919
4035
  msgid "c-bi"
4036
  msgstr "Burundi"
4037
 
4038
  # Cambodia
4039
- #: ../../admin/view/wp-slimstat-reports.php:919
4040
  msgid "c-kh"
4041
  msgstr "Cambodia"
4042
 
4043
  # Cameroon
4044
- #: ../../admin/view/wp-slimstat-reports.php:919
4045
  msgid "c-cm"
4046
  msgstr "Cameroon"
4047
 
4048
  # Canada
4049
- #: ../../admin/view/wp-slimstat-reports.php:919
4050
  msgid "c-ca"
4051
  msgstr "Canada"
4052
 
4053
  # Cape Verde
4054
- #: ../../admin/view/wp-slimstat-reports.php:919
4055
  msgid "c-cv"
4056
  msgstr "Cape Verde"
4057
 
4058
  # Cayman Islands
4059
- #: ../../admin/view/wp-slimstat-reports.php:919
4060
  msgid "c-ky"
4061
  msgstr "Cayman Islands"
4062
 
4063
  # Central African Republic
4064
- #: ../../admin/view/wp-slimstat-reports.php:919
4065
  msgid "c-cf"
4066
  msgstr "Central African Republic"
4067
 
4068
  # Chad
4069
- #: ../../admin/view/wp-slimstat-reports.php:919
4070
  msgid "c-td"
4071
  msgstr "Chad"
4072
 
4073
  # Chile
4074
- #: ../../admin/view/wp-slimstat-reports.php:919
4075
  msgid "c-cl"
4076
  msgstr "Chile"
4077
 
4078
  # China
4079
- #: ../../admin/view/wp-slimstat-reports.php:919
4080
  msgid "c-cn"
4081
  msgstr "China"
4082
 
4083
  # Colombia
4084
- #: ../../admin/view/wp-slimstat-reports.php:919
4085
  msgid "c-co"
4086
  msgstr "Colombia"
4087
 
4088
  # Comoros
4089
- #: ../../admin/view/wp-slimstat-reports.php:919
4090
  msgid "c-km"
4091
  msgstr "Comoros"
4092
 
4093
  # Congo
4094
- #: ../../admin/view/wp-slimstat-reports.php:919
4095
  msgid "c-cg"
4096
  msgstr "Congo"
4097
 
4098
  # The Democratic Republic of the Congo
4099
- #: ../../admin/view/wp-slimstat-reports.php:919
4100
  msgid "c-cd"
4101
  msgstr "The Democratic Republic of the Congo"
4102
 
4103
  # Costa Rica
4104
- #: ../../admin/view/wp-slimstat-reports.php:919
4105
  msgid "c-cr"
4106
  msgstr "Costa Rica"
4107
 
4108
  # Côte d'Ivoire
4109
- #: ../../admin/view/wp-slimstat-reports.php:919
4110
  msgid "c-ci"
4111
  msgstr "Côte d'Ivoire"
4112
 
4113
  # Croatia
4114
- #: ../../admin/view/wp-slimstat-reports.php:919
4115
  msgid "c-hr"
4116
  msgstr "Croatia"
4117
 
4118
  # Cuba
4119
- #: ../../admin/view/wp-slimstat-reports.php:919
4120
  msgid "c-cu"
4121
  msgstr "Cuba"
4122
 
4123
  # Cyprus
4124
- #: ../../admin/view/wp-slimstat-reports.php:919
4125
  msgid "c-cy"
4126
  msgstr "Cyprus"
4127
 
4128
  # Czech Republic
4129
- #: ../../admin/view/wp-slimstat-reports.php:919
4130
  msgid "c-cz"
4131
  msgstr "Czech Republic"
4132
 
4133
  # Denmark
4134
- #: ../../admin/view/wp-slimstat-reports.php:919
4135
  msgid "c-dk"
4136
  msgstr "Denmark"
4137
 
4138
  # Djibouti
4139
- #: ../../admin/view/wp-slimstat-reports.php:919
4140
  msgid "c-dj"
4141
  msgstr "Djibouti"
4142
 
4143
  # Dominica
4144
- #: ../../admin/view/wp-slimstat-reports.php:919
4145
  msgid "c-dm"
4146
  msgstr "Dominica"
4147
 
4148
  # Dominican Republic
4149
- #: ../../admin/view/wp-slimstat-reports.php:919
4150
  msgid "c-do"
4151
  msgstr "Dominican Republic"
4152
 
4153
  # Ecuador
4154
- #: ../../admin/view/wp-slimstat-reports.php:919
4155
  msgid "c-ec"
4156
  msgstr "Ecuador"
4157
 
4158
  # Egypt
4159
- #: ../../admin/view/wp-slimstat-reports.php:919
4160
  msgid "c-eg"
4161
  msgstr "Egypt"
4162
 
4163
  # El Salvador
4164
- #: ../../admin/view/wp-slimstat-reports.php:919
4165
  msgid "c-sv"
4166
  msgstr "El Salvador"
4167
 
4168
  # Equatorial Guinea
4169
- #: ../../admin/view/wp-slimstat-reports.php:919
4170
  msgid "c-gq"
4171
  msgstr "Equatorial Guinea"
4172
 
4173
  # Eritrea
4174
- #: ../../admin/view/wp-slimstat-reports.php:919
4175
  msgid "c-er"
4176
  msgstr "Eritrea"
4177
 
4178
  # Estonia
4179
- #: ../../admin/view/wp-slimstat-reports.php:919
4180
  msgid "c-ee"
4181
  msgstr "Estonia"
4182
 
4183
  # Ethiopia
4184
- #: ../../admin/view/wp-slimstat-reports.php:919
4185
  msgid "c-et"
4186
  msgstr "Ethiopia"
4187
 
4188
  # Faroe Islands
4189
- #: ../../admin/view/wp-slimstat-reports.php:919
4190
  msgid "c-fo"
4191
  msgstr "Faroe Islands"
4192
 
4193
  # Falkland Islands (Malvinas)
4194
- #: ../../admin/view/wp-slimstat-reports.php:919
4195
  msgid "c-fk"
4196
  msgstr "Falkland Islands (Malvinas)"
4197
 
4198
  # Fiji
4199
- #: ../../admin/view/wp-slimstat-reports.php:919
4200
  msgid "c-fj"
4201
  msgstr "Fiji"
4202
 
4203
  # Finland
4204
- #: ../../admin/view/wp-slimstat-reports.php:919
4205
  msgid "c-fi"
4206
  msgstr "Finland"
4207
 
4208
  # France
4209
- #: ../../admin/view/wp-slimstat-reports.php:919
4210
  msgid "c-fr"
4211
  msgstr "France"
4212
 
4213
  # French Guiana
4214
- #: ../../admin/view/wp-slimstat-reports.php:919
4215
  msgid "c-gf"
4216
  msgstr "French Guiana"
4217
 
4218
  # Gabon
4219
- #: ../../admin/view/wp-slimstat-reports.php:919
4220
  msgid "c-ga"
4221
  msgstr "Gabon"
4222
 
4223
  # Gambia
4224
- #: ../../admin/view/wp-slimstat-reports.php:919
4225
  msgid "c-gm"
4226
  msgstr "Gambia"
4227
 
4228
  # Georgia
4229
- #: ../../admin/view/wp-slimstat-reports.php:919
4230
  msgid "c-ge"
4231
  msgstr "Georgia"
4232
 
4233
  # Germany
4234
- #: ../../admin/view/wp-slimstat-reports.php:919
4235
  msgid "c-de"
4236
  msgstr "Germany"
4237
 
4238
  # Ghana
4239
- #: ../../admin/view/wp-slimstat-reports.php:919
4240
  msgid "c-gh"
4241
  msgstr "Ghana"
4242
 
4243
  # Greece
4244
- #: ../../admin/view/wp-slimstat-reports.php:919
4245
  msgid "c-gr"
4246
  msgstr "Greece"
4247
 
4248
  # Greenland
4249
- #: ../../admin/view/wp-slimstat-reports.php:919
4250
  msgid "c-gl"
4251
  msgstr "Greenland"
4252
 
4253
  # Grenada
4254
- #: ../../admin/view/wp-slimstat-reports.php:919
4255
  msgid "c-gd"
4256
  msgstr "Grenada"
4257
 
4258
  # Guadeloupe
4259
- #: ../../admin/view/wp-slimstat-reports.php:919
4260
  msgid "c-gp"
4261
  msgstr "Guadeloupe"
4262
 
4263
  # Guatemala
4264
- #: ../../admin/view/wp-slimstat-reports.php:919
4265
  msgid "c-gt"
4266
  msgstr "Guatemala"
4267
 
4268
  # Guinea
4269
- #: ../../admin/view/wp-slimstat-reports.php:919
4270
  msgid "c-gn"
4271
  msgstr "Guinea"
4272
 
4273
  # Guinea-Bissau
4274
- #: ../../admin/view/wp-slimstat-reports.php:919
4275
  msgid "c-gw"
4276
  msgstr "Guinea-Bissau"
4277
 
4278
  # Guyana
4279
- #: ../../admin/view/wp-slimstat-reports.php:919
4280
  msgid "c-gy"
4281
  msgstr "Guyana"
4282
 
4283
  # Haiti
4284
- #: ../../admin/view/wp-slimstat-reports.php:919
4285
  msgid "c-ht"
4286
  msgstr "Haiti"
4287
 
4288
  # Honduras
4289
- #: ../../admin/view/wp-slimstat-reports.php:919
4290
  msgid "c-hn"
4291
  msgstr "Honduras"
4292
 
4293
  # Hong Kong
4294
- #: ../../admin/view/wp-slimstat-reports.php:919
4295
  msgid "c-hk"
4296
  msgstr "Hong Kong"
4297
 
4298
  # Hungary
4299
- #: ../../admin/view/wp-slimstat-reports.php:919
4300
  msgid "c-hu"
4301
  msgstr "Hungary"
4302
 
4303
  # Iceland
4304
- #: ../../admin/view/wp-slimstat-reports.php:919
4305
  msgid "c-is"
4306
  msgstr "Iceland"
4307
 
4308
  # India
4309
- #: ../../admin/view/wp-slimstat-reports.php:919
4310
  msgid "c-in"
4311
  msgstr "India"
4312
 
4313
  # Indonesia
4314
- #: ../../admin/view/wp-slimstat-reports.php:919
4315
  msgid "c-id"
4316
  msgstr "Indonesia"
4317
 
4318
  # Islamic Republic of Iran
4319
- #: ../../admin/view/wp-slimstat-reports.php:919
4320
  msgid "c-ir"
4321
  msgstr "Islamic Republic of Iran"
4322
 
4323
  # Iraq
4324
- #: ../../admin/view/wp-slimstat-reports.php:919
4325
  msgid "c-iq"
4326
  msgstr "Iraq"
4327
 
4328
  # Ireland
4329
- #: ../../admin/view/wp-slimstat-reports.php:919
4330
  msgid "c-ie"
4331
  msgstr "Ireland"
4332
 
4333
  # Israel
4334
- #: ../../admin/view/wp-slimstat-reports.php:919
4335
  msgid "c-il"
4336
  msgstr "Israel"
4337
 
4338
  # Italy
4339
- #: ../../admin/view/wp-slimstat-reports.php:919
4340
  msgid "c-it"
4341
  msgstr "Italy"
4342
 
4343
  # Jamaica
4344
- #: ../../admin/view/wp-slimstat-reports.php:919
4345
  msgid "c-jm"
4346
  msgstr "Jamaica"
4347
 
4348
  # Japan
4349
- #: ../../admin/view/wp-slimstat-reports.php:919
4350
  msgid "c-jp"
4351
  msgstr "Japan"
4352
 
4353
  # Jordan
4354
- #: ../../admin/view/wp-slimstat-reports.php:919
4355
  msgid "c-jo"
4356
  msgstr "Jordan"
4357
 
4358
  # Kazakhstan
4359
- #: ../../admin/view/wp-slimstat-reports.php:919
4360
  msgid "c-kz"
4361
  msgstr "Kazakhstan"
4362
 
4363
  # Kenya
4364
- #: ../../admin/view/wp-slimstat-reports.php:919
4365
  msgid "c-ke"
4366
  msgstr "Kenya"
4367
 
4368
  # Nauru
4369
- #: ../../admin/view/wp-slimstat-reports.php:919
4370
  msgid "c-nr"
4371
  msgstr "Nauru"
4372
 
4373
  # Democratic People's Republic of Korea
4374
- #: ../../admin/view/wp-slimstat-reports.php:919
4375
  msgid "c-kp"
4376
  msgstr "Democratic People's Republic of Korea"
4377
 
4378
  # Republic of Korea
4379
- #: ../../admin/view/wp-slimstat-reports.php:919
4380
  msgid "c-kr"
4381
  msgstr "Republic of Korea"
4382
 
4383
- #: ../../admin/view/wp-slimstat-reports.php:919
4384
  msgid "c-kv"
4385
- msgstr ""
4386
 
4387
  # Kuwait
4388
- #: ../../admin/view/wp-slimstat-reports.php:919
4389
  msgid "c-kw"
4390
  msgstr "Kuwait"
4391
 
4392
  # Kyrgyzstan
4393
- #: ../../admin/view/wp-slimstat-reports.php:919
4394
  msgid "c-kg"
4395
  msgstr "Kyrgyzstan"
4396
 
4397
  # Lao People's Democratic Republic
4398
- #: ../../admin/view/wp-slimstat-reports.php:919
4399
  msgid "c-la"
4400
  msgstr "Lao People's Democratic Republic"
4401
 
4402
  # Latvia
4403
- #: ../../admin/view/wp-slimstat-reports.php:919
4404
  msgid "c-lv"
4405
  msgstr "Latvia"
4406
 
4407
  # Lebanon
4408
- #: ../../admin/view/wp-slimstat-reports.php:919
4409
  msgid "c-lb"
4410
  msgstr "Lebanon"
4411
 
4412
  # Lesotho
4413
- #: ../../admin/view/wp-slimstat-reports.php:919
4414
  msgid "c-ls"
4415
  msgstr "Lesotho"
4416
 
4417
  # Liberia
4418
- #: ../../admin/view/wp-slimstat-reports.php:919
4419
  msgid "c-lr"
4420
  msgstr "Liberia"
4421
 
4422
  # Libyan Arab Jamahiriya
4423
- #: ../../admin/view/wp-slimstat-reports.php:919
4424
  msgid "c-ly"
4425
  msgstr "Libyan Arab Jamahiriya"
4426
 
4427
  # Liechtenstein
4428
- #: ../../admin/view/wp-slimstat-reports.php:919
4429
  msgid "c-li"
4430
  msgstr "Liechtenstein"
4431
 
4432
  # Lithuania
4433
- #: ../../admin/view/wp-slimstat-reports.php:919
4434
  msgid "c-lt"
4435
  msgstr "Lithuania"
4436
 
4437
  # Luxembourg
4438
- #: ../../admin/view/wp-slimstat-reports.php:919
4439
  msgid "c-lu"
4440
  msgstr "Luxembourg"
4441
 
4442
  # The Former Yugoslav Republic of Macedonia
4443
- #: ../../admin/view/wp-slimstat-reports.php:919
4444
  msgid "c-mk"
4445
  msgstr "The Former Yugoslav Republic of Macedonia"
4446
 
4447
  # Madagascar
4448
- #: ../../admin/view/wp-slimstat-reports.php:919
4449
  msgid "c-mg"
4450
  msgstr "Madagascar"
4451
 
4452
  # Malawi
4453
- #: ../../admin/view/wp-slimstat-reports.php:919
4454
  msgid "c-mw"
4455
  msgstr "Malawi"
4456
 
4457
  # Malaysia
4458
- #: ../../admin/view/wp-slimstat-reports.php:919
4459
  msgid "c-my"
4460
  msgstr "Malaysia"
4461
 
4462
  # Mali
4463
- #: ../../admin/view/wp-slimstat-reports.php:919
4464
  msgid "c-ml"
4465
  msgstr "Mali"
4466
 
4467
  # Malta
4468
- #: ../../admin/view/wp-slimstat-reports.php:919
4469
  msgid "c-mt"
4470
  msgstr "Malta"
4471
 
4472
  # Martinique
4473
- #: ../../admin/view/wp-slimstat-reports.php:919
4474
  msgid "c-mq"
4475
  msgstr "Martinique"
4476
 
4477
  # Mauritania
4478
- #: ../../admin/view/wp-slimstat-reports.php:919
4479
  msgid "c-mr"
4480
  msgstr "Mauritania"
4481
 
4482
  # Mauritius
4483
- #: ../../admin/view/wp-slimstat-reports.php:919
4484
  msgid "c-mu"
4485
  msgstr "Mauritius"
4486
 
4487
  # Mexico
4488
- #: ../../admin/view/wp-slimstat-reports.php:919
4489
  msgid "c-mx"
4490
  msgstr "Mexico"
4491
 
4492
  # Moldova
4493
- #: ../../admin/view/wp-slimstat-reports.php:919
4494
  msgid "c-md"
4495
  msgstr "Moldova"
4496
 
4497
  # Mongolia
4498
- #: ../../admin/view/wp-slimstat-reports.php:919
4499
  msgid "c-mn"
4500
  msgstr "Mongolia"
4501
 
4502
  # Montenegro
4503
- #: ../../admin/view/wp-slimstat-reports.php:919
4504
  msgid "c-me"
4505
  msgstr "Montenegro"
4506
 
4507
  # Montserrat
4508
- #: ../../admin/view/wp-slimstat-reports.php:919
4509
  msgid "c-ms"
4510
  msgstr "Montserrat"
4511
 
4512
  # Morocco
4513
- #: ../../admin/view/wp-slimstat-reports.php:919
4514
  msgid "c-ma"
4515
  msgstr "Morocco"
4516
 
4517
  # Mozambique
4518
- #: ../../admin/view/wp-slimstat-reports.php:919
4519
  msgid "c-mz"
4520
  msgstr "Mozambique"
4521
 
4522
  # Myanmar
4523
- #: ../../admin/view/wp-slimstat-reports.php:919
4524
  msgid "c-mm"
4525
  msgstr "Myanmar"
4526
 
4527
  # Namibia
4528
- #: ../../admin/view/wp-slimstat-reports.php:919
4529
  msgid "c-na"
4530
  msgstr "Namibia"
4531
 
4532
  # Nepal
4533
- #: ../../admin/view/wp-slimstat-reports.php:919
4534
  msgid "c-np"
4535
  msgstr "Nepal"
4536
 
4537
  # Netherlands
4538
- #: ../../admin/view/wp-slimstat-reports.php:919
4539
  msgid "c-nl"
4540
  msgstr "Netherlands"
4541
 
4542
  # New Caledonia
4543
- #: ../../admin/view/wp-slimstat-reports.php:919
4544
  msgid "c-nc"
4545
  msgstr "New Caledonia"
4546
 
4547
  # New Zealand
4548
- #: ../../admin/view/wp-slimstat-reports.php:919
4549
  msgid "c-nz"
4550
  msgstr "New Zealand"
4551
 
4552
  # Nicaragua
4553
- #: ../../admin/view/wp-slimstat-reports.php:919
4554
  msgid "c-ni"
4555
  msgstr "Nicaragua"
4556
 
4557
  # Niger
4558
- #: ../../admin/view/wp-slimstat-reports.php:919
4559
  msgid "c-ne"
4560
  msgstr "Niger"
4561
 
4562
  # Nigeria
4563
- #: ../../admin/view/wp-slimstat-reports.php:919
4564
  msgid "c-ng"
4565
  msgstr "Nigeria"
4566
 
4567
  # Norway
4568
- #: ../../admin/view/wp-slimstat-reports.php:919
4569
  msgid "c-no"
4570
  msgstr "Norway"
4571
 
4572
  # Oman
4573
- #: ../../admin/view/wp-slimstat-reports.php:919
4574
  msgid "c-om"
4575
  msgstr "Oman"
4576
 
4577
  # Pakistan
4578
- #: ../../admin/view/wp-slimstat-reports.php:919
4579
  msgid "c-pk"
4580
  msgstr "Pakistan"
4581
 
4582
  # Palau
4583
- #: ../../admin/view/wp-slimstat-reports.php:919
4584
  msgid "c-pw"
4585
  msgstr "Palau"
4586
 
4587
  # Occupied Palestinian Territory
4588
- #: ../../admin/view/wp-slimstat-reports.php:919
4589
  msgid "c-ps"
4590
  msgstr "Occupied Palestinian Territory"
4591
 
4592
  # Panama
4593
- #: ../../admin/view/wp-slimstat-reports.php:919
4594
  msgid "c-pa"
4595
  msgstr "Panama"
4596
 
4597
  # Papua New Guinea
4598
- #: ../../admin/view/wp-slimstat-reports.php:919
4599
  msgid "c-pg"
4600
  msgstr "Papua New Guinea"
4601
 
4602
  # Paraguay
4603
- #: ../../admin/view/wp-slimstat-reports.php:919
4604
  msgid "c-py"
4605
  msgstr "Paraguay"
4606
 
4607
  # Peru
4608
- #: ../../admin/view/wp-slimstat-reports.php:919
4609
  msgid "c-pe"
4610
  msgstr "Peru"
4611
 
4612
  # Philippines
4613
- #: ../../admin/view/wp-slimstat-reports.php:919
4614
  msgid "c-ph"
4615
  msgstr "Philippines"
4616
 
4617
  # Poland
4618
- #: ../../admin/view/wp-slimstat-reports.php:919
4619
  msgid "c-pl"
4620
  msgstr "Poland"
4621
 
4622
  # Portugal
4623
- #: ../../admin/view/wp-slimstat-reports.php:919
4624
  msgid "c-pt"
4625
  msgstr "Portugal"
4626
 
4627
  # Puerto Rico
4628
- #: ../../admin/view/wp-slimstat-reports.php:919
4629
  msgid "c-pr"
4630
  msgstr "Puerto Rico"
4631
 
4632
  # Qatar
4633
- #: ../../admin/view/wp-slimstat-reports.php:919
4634
  msgid "c-qa"
4635
  msgstr "Qatar"
4636
 
4637
  # Réunion
4638
- #: ../../admin/view/wp-slimstat-reports.php:919
4639
  msgid "c-re"
4640
  msgstr "Réunion"
4641
 
4642
  # Romania
4643
- #: ../../admin/view/wp-slimstat-reports.php:919
4644
  msgid "c-ro"
4645
  msgstr "Romania"
4646
 
4647
  # Russian Federation
4648
- #: ../../admin/view/wp-slimstat-reports.php:919
4649
  msgid "c-ru"
4650
  msgstr "Russian Federation"
4651
 
4652
  # Rwanda
4653
- #: ../../admin/view/wp-slimstat-reports.php:919
4654
  msgid "c-rw"
4655
  msgstr "Rwanda"
4656
 
4657
  # Saint Kitts and Nevis
4658
- #: ../../admin/view/wp-slimstat-reports.php:919
4659
  msgid "c-kn"
4660
  msgstr "Saint Kitts and Nevis"
4661
 
4662
  # Saint Lucia
4663
- #: ../../admin/view/wp-slimstat-reports.php:919
4664
  msgid "c-lc"
4665
  msgstr "Saint Lucia"
4666
 
4667
  # Saint Martin
4668
- #: ../../admin/view/wp-slimstat-reports.php:919
4669
  msgid "c-mf"
4670
  msgstr "Saint Martin"
4671
 
4672
  # Saint Vincent and the Grenadines
4673
- #: ../../admin/view/wp-slimstat-reports.php:919
4674
  msgid "c-vc"
4675
  msgstr "Saint Vincent and the Grenadines"
4676
 
4677
  # Samoa
4678
- #: ../../admin/view/wp-slimstat-reports.php:919
4679
  msgid "c-ws"
4680
  msgstr "Samoa"
4681
 
4682
  # Sao Tome and Principe
4683
- #: ../../admin/view/wp-slimstat-reports.php:919
4684
  msgid "c-st"
4685
  msgstr "Sao Tome and Principe"
4686
 
4687
  # Saudi Arabia
4688
- #: ../../admin/view/wp-slimstat-reports.php:919
4689
  msgid "c-sa"
4690
  msgstr "Saudi Arabia"
4691
 
4692
  # Senegal
4693
- #: ../../admin/view/wp-slimstat-reports.php:919
4694
  msgid "c-sn"
4695
  msgstr "Senegal"
4696
 
4697
  # Serbia
4698
- #: ../../admin/view/wp-slimstat-reports.php:919
4699
  msgid "c-rs"
4700
  msgstr "Serbia"
4701
 
4702
  # Sierra Leone
4703
- #: ../../admin/view/wp-slimstat-reports.php:919
4704
  msgid "c-sl"
4705
  msgstr "Sierra Leone"
4706
 
4707
  # Singapore
4708
- #: ../../admin/view/wp-slimstat-reports.php:919
4709
  msgid "c-sg"
4710
  msgstr "Singapore"
4711
 
4712
  # Slovakia
4713
- #: ../../admin/view/wp-slimstat-reports.php:919
4714
  msgid "c-sk"
4715
  msgstr "Slovakia"
4716
 
4717
  # Slovenia
4718
- #: ../../admin/view/wp-slimstat-reports.php:919
4719
  msgid "c-si"
4720
  msgstr "Slovenia"
4721
 
4722
  # Solomon Islands
4723
- #: ../../admin/view/wp-slimstat-reports.php:919
4724
  msgid "c-sb"
4725
  msgstr "Solomon Islands"
4726
 
4727
  # Somalia
4728
- #: ../../admin/view/wp-slimstat-reports.php:919
4729
  msgid "c-so"
4730
  msgstr "Somalia"
4731
 
4732
  # South Africa
4733
- #: ../../admin/view/wp-slimstat-reports.php:919
4734
  msgid "c-za"
4735
  msgstr "South Africa"
4736
 
4737
  # South Georgia and the South Sandwich Islands
4738
- #: ../../admin/view/wp-slimstat-reports.php:919
4739
  msgid "c-gs"
4740
  msgstr "South Georgia and the South Sandwich Islands"
4741
 
4742
  # Spain
4743
- #: ../../admin/view/wp-slimstat-reports.php:919
4744
  msgid "c-es"
4745
  msgstr "Spain"
4746
 
4747
  # Sri Lanka
4748
- #: ../../admin/view/wp-slimstat-reports.php:919
4749
  msgid "c-lk"
4750
  msgstr "Sri Lanka"
4751
 
4752
  # Sudan
4753
- #: ../../admin/view/wp-slimstat-reports.php:919
4754
  msgid "c-sd"
4755
  msgstr "Sudan"
4756
 
4757
- #: ../../admin/view/wp-slimstat-reports.php:919
4758
  msgid "c-ss"
4759
- msgstr ""
4760
 
4761
  # Suriname
4762
- #: ../../admin/view/wp-slimstat-reports.php:919
4763
  msgid "c-sr"
4764
  msgstr "Suriname"
4765
 
4766
  # Svalbard and Jan Mayen
4767
- #: ../../admin/view/wp-slimstat-reports.php:919
4768
  msgid "c-sj"
4769
  msgstr "Svalbard and Jan Mayen"
4770
 
4771
  # Swaziland
4772
- #: ../../admin/view/wp-slimstat-reports.php:919
4773
  msgid "c-sz"
4774
  msgstr "Swaziland"
4775
 
4776
  # Sweden
4777
- #: ../../admin/view/wp-slimstat-reports.php:919
4778
  msgid "c-se"
4779
  msgstr "Sweden"
4780
 
4781
  # Switzerland
4782
- #: ../../admin/view/wp-slimstat-reports.php:919
4783
  msgid "c-ch"
4784
  msgstr "Switzerland"
4785
 
4786
  # Syrian Arab Republic
4787
- #: ../../admin/view/wp-slimstat-reports.php:919
4788
  msgid "c-sy"
4789
  msgstr "Syrian Arab Republic"
4790
 
4791
  # Taiwan, Province of China
4792
- #: ../../admin/view/wp-slimstat-reports.php:919
4793
  msgid "c-tw"
4794
  msgstr "Taiwan, Province of China"
4795
 
4796
  # Tajikistan
4797
- #: ../../admin/view/wp-slimstat-reports.php:919
4798
  msgid "c-tj"
4799
  msgstr "Tajikistan"
4800
 
4801
  # United Republic of Tanzania
4802
- #: ../../admin/view/wp-slimstat-reports.php:919
4803
  msgid "c-tz"
4804
  msgstr "United Republic of Tanzania"
4805
 
4806
  # Thailand
4807
- #: ../../admin/view/wp-slimstat-reports.php:919
4808
  msgid "c-th"
4809
  msgstr "Thailand"
4810
 
4811
  # Timor-Leste
4812
- #: ../../admin/view/wp-slimstat-reports.php:919
4813
  msgid "c-tl"
4814
  msgstr "Timor-Leste"
4815
 
4816
  # Togo
4817
- #: ../../admin/view/wp-slimstat-reports.php:919
4818
  msgid "c-tg"
4819
  msgstr "Togo"
4820
 
4821
  # Tonga
4822
- #: ../../admin/view/wp-slimstat-reports.php:919
4823
  msgid "c-to"
4824
  msgstr "Tonga"
4825
 
4826
  # Trinidad and Tobago
4827
- #: ../../admin/view/wp-slimstat-reports.php:919
4828
  msgid "c-tt"
4829
  msgstr "Trinidad and Tobago"
4830
 
4831
  # Tunisia
4832
- #: ../../admin/view/wp-slimstat-reports.php:919
4833
  msgid "c-tn"
4834
  msgstr "Tunisia"
4835
 
4836
  # Turkey
4837
- #: ../../admin/view/wp-slimstat-reports.php:919
4838
  msgid "c-tr"
4839
  msgstr "Turkey"
4840
 
4841
  # Turkmenistan
4842
- #: ../../admin/view/wp-slimstat-reports.php:919
4843
  msgid "c-tm"
4844
  msgstr "Turkmenistan"
4845
 
4846
  # Turks and Caicos Islands
4847
- #: ../../admin/view/wp-slimstat-reports.php:919
4848
  msgid "c-tc"
4849
  msgstr "Turks and Caicos Islands"
4850
 
4851
  # Uganda
4852
- #: ../../admin/view/wp-slimstat-reports.php:919
4853
  msgid "c-ug"
4854
  msgstr "Uganda"
4855
 
4856
  # Ukraine
4857
- #: ../../admin/view/wp-slimstat-reports.php:919
4858
  msgid "c-ua"
4859
  msgstr "Ukraine"
4860
 
4861
  # United Arab Emirates
4862
- #: ../../admin/view/wp-slimstat-reports.php:919
4863
  msgid "c-ae"
4864
  msgstr "United Arab Emirates"
4865
 
4866
  # United Kingdom
4867
- #: ../../admin/view/wp-slimstat-reports.php:919
4868
  msgid "c-gb"
4869
  msgstr "United Kingdom"
4870
 
4871
  # United States
4872
- #: ../../admin/view/wp-slimstat-reports.php:919
4873
  msgid "c-us"
4874
  msgstr "United States"
4875
 
4876
  # Uruguay
4877
- #: ../../admin/view/wp-slimstat-reports.php:919
4878
  msgid "c-uy"
4879
  msgstr "Uruguay"
4880
 
4881
  # Uzbekistan
4882
- #: ../../admin/view/wp-slimstat-reports.php:919
4883
  msgid "c-uz"
4884
  msgstr "Uzbekistan"
4885
 
4886
  # Vanuatu
4887
- #: ../../admin/view/wp-slimstat-reports.php:919
4888
  msgid "c-vu"
4889
  msgstr "Vanuatu"
4890
 
4891
  # Venezuela
4892
- #: ../../admin/view/wp-slimstat-reports.php:919
4893
  msgid "c-ve"
4894
  msgstr "Venezuela"
4895
 
4896
  # Viet Nam
4897
- #: ../../admin/view/wp-slimstat-reports.php:919
4898
  msgid "c-vn"
4899
  msgstr "Viet Nam"
4900
 
4901
  # British Virgin Islands
4902
- #: ../../admin/view/wp-slimstat-reports.php:919
4903
  msgid "c-vg"
4904
  msgstr "British Virgin Islands"
4905
 
4906
  # U.S. Virgin Islands
4907
- #: ../../admin/view/wp-slimstat-reports.php:919
4908
  msgid "c-vi"
4909
  msgstr "U.S. Virgin Islands"
4910
 
4911
  # Western Sahara
4912
- #: ../../admin/view/wp-slimstat-reports.php:919
4913
  msgid "c-eh"
4914
  msgstr "Western Sahara"
4915
 
4916
  # Yemen
4917
- #: ../../admin/view/wp-slimstat-reports.php:919
4918
  msgid "c-ye"
4919
  msgstr "Yemen"
4920
 
4921
  # Zambia
4922
- #: ../../admin/view/wp-slimstat-reports.php:919
4923
  msgid "c-zm"
4924
  msgstr "Zambia"
4925
 
4926
  # Zimbabwe
4927
- #: ../../admin/view/wp-slimstat-reports.php:919
4928
  msgid "c-zw"
4929
  msgstr "Zimbabwe"
4930
 
4931
  # Guernsey
4932
- #: ../../admin/view/wp-slimstat-reports.php:919
4933
  msgid "c-gg"
4934
  msgstr "Guernsey"
4935
 
4936
  # Jersey
4937
- #: ../../admin/view/wp-slimstat-reports.php:919
4938
  msgid "c-je"
4939
  msgstr "Jersey"
4940
 
4941
  # Isle of Man
4942
- #: ../../admin/view/wp-slimstat-reports.php:919
4943
  msgid "c-im"
4944
  msgstr "Isle of Man"
4945
 
4946
  # Maldives
4947
- #: ../../admin/view/wp-slimstat-reports.php:919
4948
  msgid "c-mv"
4949
  msgstr "Maldives"
4950
 
4951
  # European Union
4952
- #: ../../admin/view/wp-slimstat-reports.php:920
4953
  msgid "c-eu"
4954
  msgstr "European Union"
4955
 
4956
- #: ../../admin/view/wp-slimstat-reports.php:1008
4957
  msgid ""
4958
  "This value includes not only posts, but also custom post types, regardless "
4959
  "of their status"
4960
  msgstr ""
 
 
4961
 
4962
- #: ../../admin/view/wp-slimstat-reports.php:1009
4963
  #, fuzzy
4964
  msgid "Content Items"
4965
  msgstr "Contenido"
4966
 
4967
- #: ../../admin/view/wp-slimstat-reports.php:1010
4968
  #, fuzzy
4969
  msgid "Total Comments"
4970
  msgstr "Total de Accesos"
4971
 
4972
- #: ../../admin/view/wp-slimstat-reports.php:1011
4973
  msgid "Pingbacks"
4974
- msgstr ""
4975
 
4976
- #: ../../admin/view/wp-slimstat-reports.php:1012
4977
  msgid "Trackbacks"
4978
- msgstr ""
4979
 
4980
- #: ../../admin/view/wp-slimstat-reports.php:1013
4981
  #, fuzzy
4982
  msgid "Longest Post (ID)"
4983
  msgstr "Visita más larga"
4984
 
4985
- #: ../../admin/view/wp-slimstat-reports.php:1014
4986
  msgid "Longest Comment (ID)"
4987
- msgstr ""
4988
 
4989
- #: ../../admin/view/wp-slimstat-reports.php:1015
4990
  msgid "Avg Comments Per Post"
4991
- msgstr ""
4992
 
4993
- #: ../../admin/view/wp-slimstat-reports.php:1016
4994
  msgid "Avg Posts Per Day"
4995
- msgstr ""
4996
 
4997
- #: ../../admin/view/wp-slimstat-reports.php:1044
4998
  msgid "Visits"
4999
  msgstr "Visitas"
5000
 
5001
- #: ../../admin/view/wp-slimstat-reports.php:1048
5002
  msgid "Domains"
5003
  msgstr "Dominios"
5004
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5005
  #, fuzzy
5006
  #~ msgid "Export Settings"
5007
  #~ msgstr "Seleccionar orden"
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-01-29 21:24-0500\n"
6
+ "PO-Revision-Date: 2014-01-29 21:25-0500\n"
7
+ "Last-Translator: Get Used To IT <support@getused.to.it>\n"
8
  "Language-Team: \n"
9
  "Language: es_ES\n"
10
  "MIME-Version: 1.0\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: s;\n"
16
+ "X-Generator: Poedit 1.6.3\n"
17
  "X-Poedit-SearchPath-0: ../..\n"
18
 
19
+ #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:402
20
+ #: ../../admin/view/wp-slimstat-reports.php:31
21
  msgid "Right Now"
22
+ msgstr "Justo Ahora"
23
 
24
+ #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:403
25
+ #: ../../admin/wp-slimstat-admin.php:420
26
+ #: ../../admin/view/wp-slimstat-reports.php:32
27
  msgid "Overview"
28
+ msgstr "Visión general"
29
 
30
+ #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:404
31
+ #: ../../admin/wp-slimstat-admin.php:421
32
+ #: ../../admin/view/wp-slimstat-reports.php:33
33
  msgid "Visitors"
34
  msgstr "Visitantes"
35
 
36
+ #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:405
37
+ #: ../../admin/wp-slimstat-admin.php:422
38
+ #: ../../admin/view/wp-slimstat-reports.php:34
39
  msgid "Content"
40
  msgstr "Contenido"
41
 
42
+ #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:406
43
+ #: ../../admin/wp-slimstat-admin.php:423 ../../admin/view/index.php:168
44
+ #: ../../admin/view/wp-slimstat-reports.php:35
45
  msgid "Traffic Sources"
46
  msgstr "Origen del Tráfico"
47
 
48
+ #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:407
49
+ #: ../../admin/wp-slimstat-admin.php:424
50
+ #: ../../admin/view/wp-slimstat-reports.php:36
51
+ #: ../../admin/view/wp-slimstat-reports.php:105
52
  msgid "World Map"
53
  msgstr "Mapa del Mundo"
54
 
55
+ #: ../../wp-slimstat.php:1183 ../../admin/wp-slimstat-admin.php:408
56
+ #: ../../admin/wp-slimstat-admin.php:425
57
+ #: ../../admin/view/wp-slimstat-reports.php:37
58
  msgid "Custom Reports"
59
  msgstr "Informes Personalizados"
60
 
61
+ #: ../../wp-slimstat.php:1184 ../../admin/wp-slimstat-admin.php:409
62
+ #: ../../admin/wp-slimstat-admin.php:426 ../../admin/config/addons.php:29
63
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:228
64
  msgid "Add-ons"
65
+ msgstr "Añadidos"
66
 
67
+ #: ../../wp-slimstat.php:1187 ../../admin/wp-slimstat-admin.php:455
68
+ #: ../../admin/wp-slimstat-admin.php:458 ../../admin/wp-slimstat-admin.php:502
69
+ #: ../../admin/wp-slimstat-admin.php:505 ../../admin/config/index.php:14
70
+ #: ../../admin/config/index.php:135
71
  #, fuzzy
72
  msgid "Settings"
73
  msgstr "Seleccionar orden"
74
 
75
+ #: ../../admin/wp-slimstat-admin.php:401 ../../admin/wp-slimstat-admin.php:413
76
+ #: ../../admin/wp-slimstat-admin.php:416
77
  #, fuzzy
78
  msgid "SlimStat"
79
  msgstr "Acerca de WP-SlimStat"
80
 
81
+ #: ../../admin/wp-slimstat-admin.php:519
82
  msgid "Pageviews in the last 365 days"
83
  msgstr ""
84
 
85
+ #: ../../admin/wp-slimstat-admin.php:543
86
  msgid "Show on screen"
87
+ msgstr "Mostrar en pantalla"
88
+
89
+ #: ../../admin/wp-slimstat-admin.php:571
90
+ msgid "Hide this notice"
91
  msgstr ""
92
 
93
+ #: ../../admin/wp-slimstat-admin.php:598
94
  msgid "There was an error updating the following options:"
95
+ msgstr "Hubo un error al actualizar las siguientes opciones:"
96
 
97
+ #: ../../admin/wp-slimstat-admin.php:601
98
  msgid "Your settings have been successfully updated."
99
+ msgstr "Sus ajustes se han actualizado correctamente."
100
 
101
+ #: ../../admin/wp-slimstat-admin.php:624
102
  msgid "Save Changes"
103
+ msgstr "Guardar los cambios"
104
 
105
+ #: ../../admin/wp-slimstat-admin.php:643
106
  msgid "Yes"
107
+ msgstr "Si"
108
 
109
+ #: ../../admin/wp-slimstat-admin.php:644
110
+ #: ../../admin/view/wp-slimstat-reports.php:747
111
  msgid "No"
112
+ msgstr "No"
113
 
114
+ #: ../../admin/wp-slimstat-admin.php:684
115
  msgid ""
116
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
117
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
118
  "href=\"http://wordpress.org/extend/plugins/wp-slimstat/faq/\">check the "
119
  "FAQs</a> for more information."
120
  msgstr ""
121
+ "ADVERTENCIA: Un entorno mal configurado y/o entorno de servidor está "
122
+ "impidiendo que WP SLIMStat pueda rastrear adecuadamente a sus visitantes. "
123
+ "Por favor, <a target=\"_blank\" href=\"http://wordpress.org/extend/plugins/"
124
+ "wp-slimstat/faq/\">revise las FAQs</a> para obtener más información."
125
 
126
+ #: ../../admin/wp-slimstat-admin.php:704
127
  msgid "Definitions"
128
+ msgstr "Definiciones"
129
 
130
+ #: ../../admin/wp-slimstat-admin.php:707
131
  #, fuzzy
132
  msgid "Pageview"
133
  msgstr "Paginas visitadas"
134
 
135
+ #: ../../admin/wp-slimstat-admin.php:707
136
  msgid ""
137
  "A request to load a single HTML file (\"page\"). This should be contrasted "
138
  "with a \"hit\", which refers to a request for any file from a web server. WP "
139
  "SlimStat logs a pageview each time the tracking code is executed"
140
  msgstr ""
141
+ "Una petición de cargar un único archivo HTML (\"página\"). Esto debe "
142
+ "contrastarse con un \"hit\", que se refiere a la solicitud de cualquier "
143
+ "archivo desde un servidor web. WP SLIMStat registra una visita de página "
144
+ "cada vez que el código de seguimiento se ejecuta"
145
 
146
+ #: ../../admin/wp-slimstat-admin.php:708
147
  #, fuzzy
148
  msgid "(Human) Visit"
149
  msgstr "Visitas humanas"
150
 
151
+ #: ../../admin/wp-slimstat-admin.php:708
152
  msgid ""
153
  "A period of interaction between a visitor's browser and your website, ending "
154
  "when the browser is closed or when the user has been inactive on that site "
155
  "for 30 minutes"
156
  msgstr ""
157
+ "Un período de interacción entre el navegador del visitante y su sitio web, y "
158
+ "termina cuando se cierra el navegador o cuando el usuario ha estado inactivo "
159
+ "en ese sitio durante 30 minutos"
160
 
161
+ #: ../../admin/wp-slimstat-admin.php:709 ../../admin/view/index.php:140
162
+ #: ../../admin/view/right-now.php:149
163
  #, fuzzy
164
  msgid "Known Visitor"
165
  msgstr "Palabras clave recientes"
166
 
167
+ #: ../../admin/wp-slimstat-admin.php:709
168
  msgid ""
169
  "Any user who has left a comment on your blog, and is thus identified by "
170
  "Wordpress as a returning visitor"
171
  msgstr ""
172
+ "Todo usuario que haya dejado un comentario en su blog, por lo que es "
173
+ "identificado por Wordpress como un visitante que regresó"
174
 
175
+ #: ../../admin/wp-slimstat-admin.php:710
176
  #, fuzzy
177
  msgid "Unique IP"
178
  msgstr "IPs Unicas"
179
 
180
+ #: ../../admin/wp-slimstat-admin.php:710
181
  msgid ""
182
  "Used to differentiate between multiple requests to download a file from one "
183
  "internet address (IP) and requests originating from many distinct addresses; "
184
  "since this measurement looks only at the internet address a pageview came "
185
  "from, it is useful, but not perfect"
186
  msgstr ""
187
+ "Se utiliza para diferenciar entre múltiples solicitudes para descargar un "
188
+ "archivo de una dirección de Internet (IP) y las solicitudes procedentes de "
189
+ "muchas direcciones distintas, ya que esta medida sólo se fija en la "
190
+ "dirección de Internet de donde vino una visita de página, es útil, pero no "
191
+ "es perfecta"
192
 
193
+ #: ../../admin/wp-slimstat-admin.php:711 ../../admin/wp-slimstat-admin.php:753
194
+ #: ../../admin/view/right-now.php:99 ../../admin/view/wp-slimstat-db.php:79
 
195
  msgid "Originating IP"
196
+ msgstr "IP de Origen"
197
 
198
+ #: ../../admin/wp-slimstat-admin.php:711
199
  msgid ""
200
  "the originating IP address of a client connecting to a web server through an "
201
  "HTTP proxy or load balancer"
202
  msgstr ""
203
+ "dirección IP de origen de un cliente que se conecta a un servidor web a "
204
+ "través de un proxy HTTP o equilibrador de carga"
205
 
206
+ #: ../../admin/wp-slimstat-admin.php:712
207
  #, fuzzy
208
  msgid "Direct Traffic"
209
  msgstr "Visita Directa"
210
 
211
+ #: ../../admin/wp-slimstat-admin.php:712
212
  msgid ""
213
  "All those people showing up to your Web site by typing in the URL of your "
214
  "Web site coming or from a bookmark; some people also call this \"default "
215
  "traffic\" or \"ambient traffic\""
216
  msgstr ""
217
+ "Todas aquellas personas que llegan a su sitio Web escribiendo la dirección "
218
+ "URL de su sitio web o que vienen de un favorito, algunas personas también "
219
+ "llaman a esto \"tráfico por defecto\" o \"tráfico ambiente\""
220
 
221
+ #: ../../admin/wp-slimstat-admin.php:713
222
  #, fuzzy
223
  msgid "Search Engine"
224
  msgstr "Motores de Búsqueda"
225
 
226
+ #: ../../admin/wp-slimstat-admin.php:713
227
  msgid ""
228
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
229
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
230
  msgstr ""
231
+ "Google, Yahoo, MSN, Ask, otros; este cubo incluirá tanto su tráfico "
232
+ "orgánico, así como por pago (PPC / SEM), así que tenga cuidado de que"
233
 
234
+ #: ../../admin/wp-slimstat-admin.php:714 ../../admin/wp-slimstat-admin.php:730
235
+ #: ../../admin/view/right-now.php:128 ../../admin/view/wp-slimstat-db.php:60
 
236
  #, fuzzy
237
  msgid "Search Terms"
238
  msgstr "Principales Recursos"
239
 
240
+ #: ../../admin/wp-slimstat-admin.php:714 ../../admin/wp-slimstat-admin.php:730
241
  msgid "Keywords used by your visitors to find your website on a search engine"
242
  msgstr ""
243
+ "Las palabras clave utilizadas por los visitantes para encontrar su sitio web "
244
+ "en un buscador"
245
 
246
+ #: ../../admin/wp-slimstat-admin.php:715
247
  msgid "SERP"
248
+ msgstr "SERP"
249
 
250
+ #: ../../admin/wp-slimstat-admin.php:715
251
  msgid ""
252
  "Short for search engine results page, the Web page that a search engine "
253
  "returns with the results of its search. The value shown represents your rank "
254
  "(or position) within that list of results"
255
  msgstr ""
256
+ "Corto para la página de resultados del motor de búsqueda, la página web que "
257
+ "un motor de búsqueda devuelve con los resultados de su búsqueda. El valor "
258
+ "que se muestra representa su rango (o posición) dentro de esa lista de los "
259
+ "resultados"
260
 
261
+ #: ../../admin/wp-slimstat-admin.php:716
262
+ #: ../../admin/view/wp-slimstat-db.php:72
263
  #, fuzzy
264
  msgid "User Agent"
265
  msgstr "Buscadores"
266
 
267
+ #: ../../admin/wp-slimstat-admin.php:716
268
  msgid ""
269
  "Any program used for accessing a website; this includes browsers, robots, "
270
  "spiders and any other program that was used to retrieve information from the "
271
  "site"
272
  msgstr ""
273
+ "Cualquier programa utilizado para acceder a un sitio web, lo que incluye los "
274
+ "navegadores, robots, arañas y cualquier otro programa que se utiliza para "
275
+ "recuperar información del sitio"
276
 
277
+ #: ../../admin/wp-slimstat-admin.php:717
278
+ #: ../../admin/view/wp-slimstat-db.php:76
279
  #, fuzzy
280
  msgid "Outbound Link"
281
  msgstr "Enlaces Salientes Recientes"
282
 
283
+ #: ../../admin/wp-slimstat-admin.php:717
284
  msgid ""
285
  "A link from one domain to another is said to be outbound from its source "
286
  "anchor and inbound to its target. This report lists all the links to other "
287
  "websites followed by your visitors."
288
  msgstr ""
289
+ "Un enlace de un dominio a otro se dice que está en alejamiento de su fuente "
290
+ "de anclaje y de entrada a su objetivo. Este informe muestra todos los "
291
+ "enlaces a otros sitios web, seguidos por sus visitantes."
292
 
293
+ #: ../../admin/wp-slimstat-admin.php:724
294
  msgid "Basic Filters"
295
+ msgstr "Filtros básicos"
296
 
297
+ #: ../../admin/wp-slimstat-admin.php:727
298
+ #: ../../admin/view/wp-slimstat-db.php:57
299
  msgid "Browser"
300
  msgstr "Navegador"
301
 
302
+ #: ../../admin/wp-slimstat-admin.php:727
303
  msgid "User agent (Firefox, Chrome, ...)"
304
+ msgstr "Agente usuario(Firefox, Chrome, ...)"
305
 
306
+ #: ../../admin/wp-slimstat-admin.php:728
307
+ #: ../../admin/view/wp-slimstat-db.php:58
308
+ #: ../../admin/view/wp-slimstat-reports.php:469
309
  msgid "Country Code"
310
  msgstr "Código de Pais"
311
 
312
+ #: ../../admin/wp-slimstat-admin.php:728
313
  msgid "2-letter code (us, ru, de, it, ...)"
314
+ msgstr "código de 2 letras (eu, ru, de, it, ...)"
315
 
316
+ #: ../../admin/wp-slimstat-admin.php:729
317
  msgid "IP"
318
  msgstr "IP"
319
 
320
+ #: ../../admin/wp-slimstat-admin.php:729
321
  msgid "Visitor's public IP address"
322
+ msgstr "Dirección IP pública del visitante"
323
 
324
+ #: ../../admin/wp-slimstat-admin.php:731
325
+ #: ../../admin/view/wp-slimstat-db.php:61
326
+ #: ../../admin/view/wp-slimstat-reports.php:481
327
  msgid "Language Code"
328
  msgstr "Código de Idioma"
329
 
330
+ #: ../../admin/wp-slimstat-admin.php:731
331
  msgid ""
332
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
333
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
334
  "column) for more information"
335
  msgstr ""
336
+ "Consulte a esta página <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
337
+ "en-us/library/ee825488(v=cs.20).aspx\">págna de cultura del lenguaje</a> "
338
+ "(primera columna) para más información"
339
 
340
+ #: ../../admin/wp-slimstat-admin.php:732
341
+ #: ../../admin/view/wp-slimstat-db.php:62
342
  msgid "Operating System"
343
  msgstr "Sistema Operativo"
344
 
345
+ #: ../../admin/wp-slimstat-admin.php:732
346
  msgid ""
347
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
348
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
349
  "manual page</a> for more information"
350
  msgstr ""
351
+ "Acepta identificadores como win7, win98, macosx, ..., por favor, consulte <a "
352
+ "target=\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php"
353
+ "\">esta página del manual</a> para obtener más información"
354
 
355
+ #: ../../admin/wp-slimstat-admin.php:733
356
+ #: ../../admin/view/wp-slimstat-db.php:63
357
  msgid "Permalink"
358
  msgstr "Enlace Permanente"
359
 
360
+ #: ../../admin/wp-slimstat-admin.php:733
361
  msgid "URL accessed on your site"
362
+ msgstr "URL visitada en su sitio"
363
 
364
+ #: ../../admin/wp-slimstat-admin.php:734
365
+ #: ../../admin/view/wp-slimstat-db.php:65
366
  msgid "Referer"
367
  msgstr "Referido"
368
 
369
+ #: ../../admin/wp-slimstat-admin.php:734
370
  msgid "Complete address of the referrer page"
371
+ msgstr "Dirección completa de la página que refiere"
372
 
373
+ #: ../../admin/wp-slimstat-admin.php:735
374
+ #: ../../admin/view/wp-slimstat-db.php:66
375
  #, fuzzy
376
  msgid "Visitor's Name"
377
  msgstr "Visitantes"
378
 
379
+ #: ../../admin/wp-slimstat-admin.php:735
380
  msgid ""
381
  "Visitors' names according to the cookie set by Wordpress after they leave a "
382
  "comment"
383
  msgstr ""
384
+ "Nombres de visitantes según la cookie establecida por Wordpress después de "
385
+ "dejar un comentario"
386
 
387
+ #: ../../admin/wp-slimstat-admin.php:743
388
  msgid "Advanced Filters"
389
+ msgstr "Filtros avanzados"
390
 
391
+ #: ../../admin/wp-slimstat-admin.php:746
392
+ #: ../../admin/view/wp-slimstat-db.php:70
393
  #, fuzzy
394
  msgid "Browser Version"
395
  msgstr "Versión del Navegador"
396
 
397
+ #: ../../admin/wp-slimstat-admin.php:746
398
  msgid "user agent version (9.0, 11, ...)"
399
+ msgstr "versión del agente de usuario (9,0, 11, ...)"
400
 
401
+ #: ../../admin/wp-slimstat-admin.php:747
402
+ #: ../../admin/view/wp-slimstat-db.php:71
403
  #, fuzzy
404
  msgid "Browser Type"
405
  msgstr "Navegador"
406
 
407
+ #: ../../admin/wp-slimstat-admin.php:747
408
  msgid ""
409
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
410
  "all others"
411
  msgstr ""
412
+ "1 = oruga del motor de búsqueda, 2 = dispositivo móvil, 3 = lector de "
413
+ "sindicación, 0 =a todos los demás"
414
 
415
+ #: ../../admin/wp-slimstat-admin.php:748
416
+ #: ../../admin/view/wp-slimstat-db.php:73
417
  msgid "Color Depth"
418
+ msgstr "Profundidad de color"
419
 
420
+ #: ../../admin/wp-slimstat-admin.php:748
421
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
422
+ msgstr "profundidad de colorde pantalla de visitante (8, 16, 24, ...)"
423
 
424
+ #: ../../admin/wp-slimstat-admin.php:749
425
+ #: ../../admin/view/wp-slimstat-db.php:74
426
  #, fuzzy
427
  msgid "CSS Version"
428
  msgstr "Versión de CSS"
429
 
430
+ #: ../../admin/wp-slimstat-admin.php:749
431
  msgid ""
432
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
433
  "values)"
434
  msgstr ""
435
+ "cuál estándar CSS era soportado por ese navegador (1, 2, 3 y otros valores "
436
+ "enteros)"
437
 
438
+ #: ../../admin/wp-slimstat-admin.php:750
439
+ #: ../../admin/view/wp-slimstat-db.php:75
440
  #, fuzzy
441
  msgid "Pageview Attributes"
442
  msgstr "Paginas visitadas"
443
 
444
+ #: ../../admin/wp-slimstat-admin.php:750
445
  msgid ""
446
  "this field is set to <em>[pre]</em> if the resource has been accessed "
447
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
448
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
449
  msgstr ""
450
+ "este campo se establece en <em> [pre]</em> si el recurso ha sido visitada a "
451
+ "través de <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
452
+ "Link_prefetching_FAQ\">Preecaptura de Enlaces</a> o técnicas similares"
453
 
454
+ #: ../../admin/wp-slimstat-admin.php:751
455
+ #: ../../admin/view/wp-slimstat-db.php:77
456
  msgid "Post Author"
457
  msgstr "Autor de la entrada(sección)"
458
 
459
+ #: ../../admin/wp-slimstat-admin.php:751
460
  msgid "author associated to that post/page when the resource was accessed"
461
+ msgstr "autor asociado a esa publicación/página cuando se accedió al recurso"
462
 
463
+ #: ../../admin/wp-slimstat-admin.php:752
464
+ #: ../../admin/view/wp-slimstat-db.php:78
465
  msgid "Post Category ID"
466
  msgstr "ID de la entrada(sección) de la Categoria"
467
 
468
+ #: ../../admin/wp-slimstat-admin.php:752
469
  msgid "ID of the category/term associated to the resource, when available"
470
  msgstr ""
471
+ "ID de la categoría / término asociado al recurso, cuando esté disponible"
472
 
473
+ #: ../../admin/wp-slimstat-admin.php:753
474
  msgid "visitor's originating IP address, if available"
475
+ msgstr "dirección IP de origen del visitante, si está disponible"
476
 
477
+ #: ../../admin/wp-slimstat-admin.php:754
478
+ #: ../../admin/view/wp-slimstat-db.php:80
479
  #, fuzzy
480
  msgid "Resource Content Type"
481
  msgstr "Contenidos Recientes"
482
 
483
+ #: ../../admin/wp-slimstat-admin.php:754
484
  msgid ""
485
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
486
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
488
  "wordpress.org/Conditional_Tags\">Conditional Tags</a> manual page for more "
489
  "information"
490
  msgstr ""
491
+ "publicación, página, cpt:<em>custom-post-type</em>, attachment, singular, "
492
+ "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
493
+ "feed, home; por favor refiérase a <a target=\"_blank\" href=\"http://codex."
494
+ "wordpress.org/Conditional_Tags\">Etiquetas condicionales</a> página del "
495
+ "manual para más información"
496
 
497
+ #: ../../admin/wp-slimstat-admin.php:755
498
+ #: ../../admin/view/wp-slimstat-db.php:82
499
  msgid "Screen Resolution"
500
  msgstr "Resolución de Pantalla"
501
 
502
+ #: ../../admin/wp-slimstat-admin.php:755
503
  msgid "viewport width and height (1024x768, 800x600, ...)"
504
+ msgstr "ancho de vista y altura (1024x768, 800x600 , ...)"
505
 
506
+ #: ../../admin/wp-slimstat-admin.php:756
507
+ #: ../../admin/view/wp-slimstat-db.php:83
508
  #, fuzzy
509
  msgid "Visit ID"
510
  msgstr "Visitas"
511
 
512
+ #: ../../admin/wp-slimstat-admin.php:756
513
  msgid ""
514
  "generally used in conjunction with <em>is not empty</em>, identifies human "
515
  "visitors"
516
  msgstr ""
517
+ "se utiliza generalmente en conjunción con <em> no está vacío </em>, "
518
+ "identifica los visitantes humanos"
519
 
520
+ #: ../../admin/wp-slimstat-admin.php:757
521
  msgid "Date Filters"
522
+ msgstr "Filtros de fecha"
523
 
524
+ #: ../../admin/wp-slimstat-admin.php:757
525
  msgid ""
526
  "you can specify the timeframe by entering a number in the <em>interval</em> "
527
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
528
  "year=blank, interval=-1 will set a year-to-date filter)"
529
  msgstr ""
530
+ "puede especificar el periodo de tiempo mediante la introducción de un número "
531
+ "en el intervalo de <em> </em> campo: use -1 para indicar <em> al día </em> "
532
+ "(es decir, día=1, mes=1, año=blank, intervalo=-1 establecerá un filtro de "
533
+ "año a la fecha)"
534
 
535
+ #: ../../admin/wp-slimstat-admin.php:758
536
  msgid "SERP Position"
537
+ msgstr "Posición SERP"
538
 
539
+ #: ../../admin/wp-slimstat-admin.php:758
540
  msgid ""
541
  "set the filter to Referer contains cd=N&, where N is the position you are "
542
  "looking for"
543
  msgstr ""
544
+ "configurar el filtro para Referer contiene cd=N&, donde N es la posición que "
545
+ "usted está buscando"
546
 
547
+ #: ../../admin/wp-slimstat-admin.php:767
548
  msgid ""
549
  " And for keeping an eye on your visitors with <a href=\"http://slimstat."
550
  "getused.to.it/\">WP SlimStat</a>."
551
  msgstr ""
552
+ "Y para mantener un ojo en sus visitantes con <a href=\"http://slimstat."
553
+ "getused.to.it/\"> WP SLIMStat </a>."
554
 
555
  #: ../../admin/config/addons.php:14
556
  msgid ""
557
  "There was an error retrieving the add-ons list from the server. Please try "
558
  "again later. Error Message:"
559
  msgstr ""
560
+ "Hubo un error al recuperar la lista de complementos desde el servidor. Por "
561
+ "favor, inténtelo de nuevo más tarde. Mensaje de error:"
562
 
563
  #: ../../admin/config/addons.php:23
564
  msgid ""
565
  "There was an error decoding the add-ons list from the server. Please try "
566
  "again later."
567
  msgstr ""
568
+ "Se produjo un error decodificando la lista de complementos desde el "
569
+ "servidor. Por favor, inténtelo de nuevo más tarde."
570
 
571
  #: ../../admin/config/addons.php:30
572
  msgid ""
577
  "on is available, please enter the <strong>license key</strong> you received "
578
  "when you purchased it."
579
  msgstr ""
580
+ "Los complementos amplían la funcionalidad de WP SLIMStat de muchas maneras "
581
+ "interesantes. Ofrecemos extensiones tanto gratuitas como premium (de pago). "
582
+ "Cada complemento se puede instalar como un plugin independiente, que "
583
+ "recibirá actualizaciones regulares a través del panel de WordPress Plugins. "
584
+ "Para ser notificado cuando una nueva versión de un añadido premium está "
585
+ "disponible, por favor introduzca la clave<strong> de licencia </strong> que "
586
+ "recibió cuando compró."
587
 
588
  #: ../../admin/config/addons.php:36
589
  msgid "Add-on"
590
+ msgstr "Añadido"
591
 
592
  #: ../../admin/config/addons.php:36
593
  msgid "Description"
594
+ msgstr "Descripción"
595
 
596
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:18
597
  msgid "General"
598
+ msgstr "General"
599
 
600
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:44
601
  msgid "Views"
602
+ msgstr "Vistas"
603
 
604
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:64
605
  msgid "Filters"
606
+ msgstr "Filtros"
607
 
608
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:128
609
  #, fuzzy
610
  msgid "Permissions"
611
  msgstr "Enlace Permanente"
612
 
613
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:205
614
  msgid "Advanced"
615
+ msgstr "Avanzados"
616
 
617
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:221
618
  msgid "Maintenance"
619
+ msgstr "Mantenimiento"
620
 
621
+ #: ../../admin/config/index.php:20 ../../admin/config/index.php:207
622
  msgid "Tracker"
623
+ msgstr "Rastreador"
624
 
625
+ #: ../../admin/config/index.php:21
626
  msgid "Enable Tracking"
627
+ msgstr "Activar Seguimiento"
628
 
629
+ #: ../../admin/config/index.php:21
630
  msgid ""
631
  "Turn the tracker on or off, but keep the reports accessible (which you would "
632
  "not have, if you just disabled the plugin)."
633
  msgstr ""
634
+ "Activar el rastreador de encendido o apagado, pero conserve los informes "
635
+ "accesibles (que no tendría, si desactivó el plugin)."
636
 
637
+ #: ../../admin/config/index.php:22
638
  #, fuzzy
639
  msgid "Monitor Admin Pages"
640
  msgstr "Principales Páginas de Salida"
641
 
642
+ #: ../../admin/config/index.php:22
643
  msgid "Enable this option to track your users' activity within the admin."
644
  msgstr ""
645
+ "Habilite esta opción para realizar un seguimiento de la actividad de sus "
646
+ "usuarios dentro de la administración."
647
 
648
+ #: ../../admin/config/index.php:23
649
  msgid "Enable Spy Mode"
650
+ msgstr "Habilitar modo Espía"
651
 
652
+ #: ../../admin/config/index.php:23
653
  msgid ""
654
  "Collect information about screen resolutions, outbound links, downloads, "
655
  "etc. If Tracking Mode is set to Javascript, this data will be tracked "
656
  "regardless of which value you set for this option."
657
  msgstr ""
658
+ "Recoger información sobre las resoluciones de pantalla, enlaces salientes, "
659
+ "descargas, etc. Si el modo de seguimiento se establece en Javascript, estos "
660
+ "datos se rastrearán sin importar qué valor establecido para esta opción."
661
 
662
+ #: ../../admin/config/index.php:24
663
  #, fuzzy
664
  msgid "Tracking Mode"
665
  msgstr "Seguimiento Activo"
666
 
667
+ #: ../../admin/config/index.php:24
668
  msgid ""
669
  "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
670
  "Total Cache, WP SuperCache, HyperCache, etc). WP SlimStat will behave pretty "
672
  "Javascript will be ignored. A nice side effect is that <strong>most "
673
  "spammers, search engines and other crawlers</strong> will not be tracked."
674
  msgstr ""
675
+ "Seleccione <strong> Javascript </strong> si usted está usando un plugin de "
676
+ "caché (W3 Total Cache, WP SuperCache, HyperCache, etc.) WP SLIMStat se "
677
+ "comportará casi como Google Analytics, y los visitantes cuyos navegadores no "
678
+ "soportan Javascript serán ignorados. Un efecto secundario interesante es que "
679
+ "la mayoría de los <strong> spammers, buscadores y otros rastreadores </"
680
+ "strong> no serán registrados."
681
 
682
+ #: ../../admin/config/index.php:24
683
  msgid "Javascript"
684
+ msgstr "Javascript"
685
 
686
+ #: ../../admin/config/index.php:24
687
  msgid "Server-side"
688
+ msgstr "Del lado del servidor"
689
 
690
+ #: ../../admin/config/index.php:26
691
  msgid "WordPress Integration"
692
+ msgstr "Integración WordPress"
693
 
694
+ #: ../../admin/config/index.php:27
695
  msgid "Menu Position"
696
+ msgstr "Posición de menú"
697
 
698
+ #: ../../admin/config/index.php:27
699
  msgid ""
700
  "Choose between a standalone admin menu for WP SlimStat or a drop down in the "
701
  "admin bar (if visible)."
702
  msgstr ""
703
+ "Elija entre un menú de administración independiente para WP SLIMStat o un "
704
+ "menú desplegable en la barra de administrador (si está visible)."
705
 
706
+ #: ../../admin/config/index.php:27
707
  msgid "Side Menu"
708
+ msgstr "Menú lateral"
709
 
710
+ #: ../../admin/config/index.php:27
711
  msgid "Admin Bar"
712
+ msgstr "Barra de administración"
713
 
714
+ #: ../../admin/config/index.php:28
715
+ #, fuzzy
716
  msgid "Add Stats to Posts"
717
+ msgstr "Añadir columna a Publicaciones"
718
 
719
+ #: ../../admin/config/index.php:28
720
+ #, fuzzy
721
  msgid ""
722
  "Add a new column to the Edit Posts screen, with the number of hits per post."
723
  msgstr ""
724
+ "Añadir una nueva columna a la pantalla Editar publicaciones, con el número "
725
+ "de visitas por publicación (pueden ralentizar la renderización de páginas)."
726
 
727
+ #: ../../admin/config/index.php:30
728
  msgid "Database"
729
+ msgstr "Base de datos"
730
 
731
+ #: ../../admin/config/index.php:31
732
  msgid "Retain data for"
733
+ msgstr "Conservar los datos durante"
734
 
735
+ #: ../../admin/config/index.php:31
736
  msgid ""
737
  "Delete log entries older than the number of days specified here above. Enter "
738
  "<strong>0</strong> (number zero) if you want to preserve your data "
739
  "regardless of its age."
740
  msgstr ""
741
+ "Eliminar las entradas del registro anteriores al número de días especificado "
742
+ "aquí arriba. Introduzca <strong> 0 </strong> (número cero) si desea "
743
+ "conservar sus datos independientemente de su edad."
744
 
745
+ #: ../../admin/config/index.php:31
746
  msgid "Next clean-up on"
747
+ msgstr "Siguiente limpieza en"
748
 
749
+ #: ../../admin/config/index.php:31
750
  #, php-format
751
  msgid "Entries logged on or before %s will be permanently deleted."
752
  msgstr ""
753
+ "Los comentarios registrados en o antes del %s se eliminarán de forma "
754
+ "permanente."
755
 
756
+ #: ../../admin/config/index.php:31 ../../admin/view/index.php:77
757
+ #: ../../admin/view/wp-slimstat-db.php:90
758
+ #: ../../admin/view/wp-slimstat-reports.php:747
759
  msgid "days"
760
  msgstr "dias"
761
 
762
+ #: ../../admin/config/index.php:46
763
  #, fuzzy
764
  msgid "Data and Formats"
765
  msgstr "Fecha y hora"
766
 
767
+ #: ../../admin/config/index.php:47
768
  msgid "Convert IP Addresses"
769
+ msgstr "Convertir Direcciones IP"
770
 
771
+ #: ../../admin/config/index.php:47
772
  msgid "Display provider names instead of IP addresses."
773
+ msgstr "Muestra los nombres de proveedores, en lugar de direcciones IP."
774
 
775
+ #: ../../admin/config/index.php:48
776
  msgid "Number Format"
777
+ msgstr "Formato de número"
778
 
779
+ #: ../../admin/config/index.php:48
780
  msgid ""
781
  "Choose the number format you want to use for your reports, European or "
782
  "American."
783
  msgstr ""
784
+ "Seleccione el formato de número que desea utilizar para sus informes, "
785
+ "europeos o americanos."
786
 
787
+ #: ../../admin/config/index.php:49
788
  msgid "Show Display Name"
789
+ msgstr "Mostrar Nombre para mostrar"
790
 
791
+ #: ../../admin/config/index.php:49
792
  msgid ""
793
  "By default, users are listed by their usernames. Use this option to "
794
  "visualize their display names instead."
795
  msgstr ""
796
+ "De forma predeterminada, los usuarios se enumeran por sus nombres de "
797
+ "usuario. Utilice esta opción para visualizar los nombres para mostrar en su "
798
+ "lugar."
799
 
800
+ #: ../../admin/config/index.php:50
801
  #, fuzzy
802
  msgid "Show User Agent"
803
  msgstr "Buscadores"
804
 
805
+ #: ../../admin/config/index.php:50
806
  msgid ""
807
  "Choose if you want to see the browser name or a complete user agent string "
808
  "when hovering on browser icons."
809
  msgstr ""
810
+ "Seleccione si desea ver el nombre del navegador o una cadena completa de "
811
+ "agente de usuario al pasar el cursor sobre los iconos del navegador."
812
 
813
+ #: ../../admin/config/index.php:51
814
  msgid "Show Titles"
815
+ msgstr "Mostrar Títulos"
816
 
817
+ #: ../../admin/config/index.php:51
818
  msgid ""
819
  "WP SlimStat converts your permalinks into post and page titles. Disable this "
820
  "feature if you need to see the URL in your reports."
821
  msgstr ""
822
+ "WP SLIMStat convierte tus enlaces permanentes en títulos de publicaciones y "
823
+ "páginas. Desactive esta función si necesita ver la URL en sus informes."
824
 
825
+ #: ../../admin/config/index.php:53
826
  msgid "Functionality"
827
+ msgstr "Funcionalidad"
828
 
829
+ #: ../../admin/config/index.php:54
830
  msgid "Asynchronous Views"
831
+ msgstr "Vistas asíncronas"
832
 
833
+ #: ../../admin/config/index.php:54
834
  msgid ""
835
  "Load all the reports dynamically. It makes the reports render faster, but it "
836
  "increases the load on your server."
837
  msgstr ""
838
+ "Cargar todos los informes de forma dinámica. Hace que los informes se "
839
+ "realicen más rápido, pero aumenta la carga en el servidor."
840
 
841
+ #: ../../admin/config/index.php:55
842
  msgid "Expand Details"
843
+ msgstr "Expandir Detalles"
844
 
845
+ #: ../../admin/config/index.php:55
846
  msgid "Expand each row's details by default, insted of on mousehover."
847
  msgstr ""
848
+ "Expandir cada fila de forma predeterminada, en vez de al sobreponer el ratón."
849
 
850
+ #: ../../admin/config/index.php:56 ../../admin/config/index.php:60
851
  #, fuzzy
852
  msgid "Rows to Display"
853
  msgstr "No hay datos que mostrar"
854
 
855
+ #: ../../admin/config/index.php:56
856
  msgid "Specify the number of items in each report."
857
+ msgstr "Especifique el número de elementos en cada informe."
858
 
859
+ #: ../../admin/config/index.php:58
860
  msgid "Right Now Screen"
861
+ msgstr "Pantalla de Ahora"
862
 
863
+ #: ../../admin/config/index.php:59
864
  msgid "Live Stream"
865
+ msgstr "Transmisión en Vivo"
866
 
867
+ #: ../../admin/config/index.php:59
868
  msgid ""
869
  "Enable the Live view, which refreshes the Right Now screen every X seconds. "
870
  "Enter <strong>0</strong> (number zero) to disable this functionality."
871
  msgstr ""
872
+ "Habilitar la vista en vivo, lo que refresca la pantalla Ahora cada X "
873
+ "segundos. Introduzca <strong> 0 </strong> (número cero) para deshabilitar "
874
+ "esta funcionalidad."
875
 
876
+ #: ../../admin/config/index.php:59 ../../admin/config/index.php:210
877
  msgid "seconds"
878
+ msgstr "Segundos"
879
 
880
+ #: ../../admin/config/index.php:60
881
  msgid "Specify the number of items in Right Now."
882
+ msgstr "Especifica el número de elementos en Ahora."
883
 
884
+ #: ../../admin/config/index.php:61
885
  msgid "Right Now Extended"
886
+ msgstr "Ahora extendida"
887
 
888
+ #: ../../admin/config/index.php:61
889
  msgid ""
890
  "Choose if you want to see outbound links listed under Right Now. It might "
891
  "slow down the rendering of this report."
892
  msgstr ""
893
+ "Elige si quieres ver los enlaces salientes que figuran en Ahora. Podría "
894
+ "frenar la publicación de este informe."
895
 
896
+ #: ../../admin/config/index.php:66
897
  #, fuzzy
898
  msgid "Visitors and Known Users"
899
  msgstr "Navegadores recientes"
900
 
901
+ #: ../../admin/config/index.php:67
902
  msgid "Track Registered Users"
903
+ msgstr "Seguimiento Usuarios Registrados"
904
 
905
+ #: ../../admin/config/index.php:67
906
  msgid "Enable this option to track logged in users."
907
+ msgstr "Active esta opción para rastrear usuarios registrados."
908
 
909
+ #: ../../admin/config/index.php:68
910
  #, fuzzy
911
  msgid "Blacklist by Username"
912
+ msgstr "Direcciones IP Blacklist"
913
 
914
+ #: ../../admin/config/index.php:68
915
  msgid ""
916
  "List all the usernames you don't want to track, separated by commas. Please "
917
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
918
  "sensitive."
919
  msgstr ""
920
+ "Lista de todos los nombres de usuario de los que que no desee realizar el "
921
+ "seguimiento, separados por comas. Tenga en cuenta que los espacios son <em> "
922
+ "no </em> ignorados y que los nombres de usuario distinguen entre mayúsculas "
923
+ "y minúsculas."
924
 
925
+ #: ../../admin/config/index.php:69
926
  msgid "Blacklist by IP Address"
927
+ msgstr "Direcciones IP Blacklist"
928
 
929
+ #: ../../admin/config/index.php:69
930
  msgid ""
931
  "List all the IP addresses you don't want to track, separated by commas. Each "
932
  "network <strong>must</strong> be defined using the <a href='http://en."
934
  "notation</a> (i.e. <em>192.168.0.0/24</em>). If the format is incorrect, WP "
935
  "SlimStat may not track pageviews properly."
936
  msgstr ""
937
+ "Enlistar todas las direcciones IP que no desea seguir, separadas por comas. "
938
+ "Cada red <strong> debe </strong> ser definida usando el <a href='http://en."
939
+ "wikipedia.org/wiki/Classless_Inter-Domain_Routing' target='_blank'>Notación "
940
+ "CIDR </a> (es decir, < em> 192.168.0.0/24 </em>). Si el formato no es "
941
+ "correcto, WP SLIMStat no puede rastrear páginas vistas correctamente."
942
 
943
+ #: ../../admin/config/index.php:70
944
  #, fuzzy
945
  msgid "Blacklist by Capability"
946
  msgstr "Navegador"
947
 
948
+ #: ../../admin/config/index.php:70
949
  msgid ""
950
  "Users having at least one of the <a href='http://codex.wordpress.org/"
951
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
952
  "will not be tracked. Capabilities are case-insensitive."
953
  msgstr ""
954
+ "Usuarios que tienen al menos una de las <a href='http://codex.wordpress.org/"
955
+ "Roles_and_Capabilities' target='_new'>capabilities</a> enlistados aquí abajo "
956
+ "no se les rastreará. Las Capacidades distinguen entre mayúsculas y "
957
+ "minúsculas."
958
 
959
+ #: ../../admin/config/index.php:72
960
  msgid "Profiling"
961
+ msgstr "Haciendo perfil"
962
 
963
+ #: ../../admin/config/index.php:73
964
  msgid "Ignore Spammers"
965
+ msgstr "Ignorar Spammers"
966
 
967
+ #: ../../admin/config/index.php:73
968
  msgid ""
969
  "Enable this option if you don't want to track visits from users identified "
970
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
971
  "whose comments are later marked as spam, will also be removed from the "
972
  "database."
973
  msgstr ""
974
+ "Active esta opción si no desea realizar un seguimiento de visitas de "
975
+ "usuarios identificados como spammers por herramientas de terceros como "
976
+ "Akismet. Páginas vistas generadas por los usuarios cuyos comentarios más "
977
+ "adelante se marcan como correo no deseado, también se eliminarán de la base "
978
+ "de datos."
979
 
980
+ #: ../../admin/config/index.php:74
981
  #, fuzzy
982
  msgid "Permalinks"
983
  msgstr "Enlace Permanente"
984
 
985
+ #: ../../admin/config/index.php:74
986
  msgid ""
987
  "List all the URLs on your website that you don't want to track, separated by "
988
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
992
  "and /about, <code>/abo!t</code> will match /about and /abort. Strings are "
993
  "case-insensitive."
994
  msgstr ""
995
+ "Enumere todas las URL de su sitio web a las que usted no desee realizar el "
996
+ "seguimiento, separadas por comas. No incluya el nombre de dominio: <em>/"
997
+ "about, ?p=1</em>, etc. Wildcards: <code>*</code> coincide con 'cualquier "
998
+ "cadena, incluyendo cadena vacía', <code>!</code> coincide con cualquier "
999
+ "caracter'. Por ejemplo, <code>/abou*</code> coincidirá con /about and /"
1000
+ "abound, <code> / abo* t </code> coincidirá con /aboundant and /about/, "
1001
+ "<code> / abo! T </ code > coincidirá con /about and /abort. Las cadenas no "
1002
+ "se afectan por mayúsculas y minúsculas."
1003
 
1004
+ #: ../../admin/config/index.php:75
1005
  #, fuzzy
1006
  msgid "Countries"
1007
  msgstr "Paises que más visitan"
1008
 
1009
+ #: ../../admin/config/index.php:75
1010
  msgid ""
1011
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
1012
  "track, separated by commas."
1013
  msgstr ""
1014
+ "Los códigos de país (Es decir: <code> es-es, it, es </code>) a los que no "
1015
+ "desee realizar el seguimiento, separados por comas"
1016
 
1017
+ #: ../../admin/config/index.php:76
1018
  #, fuzzy
1019
  msgid "User Agents"
1020
  msgstr "Buscadores"
1021
 
1022
+ #: ../../admin/config/index.php:76
1023
  msgid ""
1024
  "Browsers (user agents) you don't want to track, separated by commas. You can "
1025
  "specify the browser's version adding a slash after the name (i.e. "
1028
  "example, <code>Chr*</code> will match Chrome and Chromium, <code>IE/!.0</"
1029
  "code> will match IE/7.0 and IE/8.0. Strings are case-insensitive."
1030
  msgstr ""
1031
+ "Navegadores (agentes de usuario) que no quieren seguimiento, separados por "
1032
+ "comas. Puede especificar la versión del navegador añadiendo una barra "
1033
+ "después del nombre (es decir <em> Firefox/3.6 </em>). Comodines: <code>*</"
1034
+ "code> coincide con 'cualquier cadena, incluyendo la cadena vacía', <code> </"
1035
+ "code> coincide con \"cualquier carácter\". Por ejemplo, <code> Chr. * </"
1036
+ "code> coincidirá Chrome y cromo, <code> IE /! 0.0 </code> coincidirá IE/7.0 "
1037
+ "y IE/8.0. Las cadenas son de mayúsculas y minúsculas."
1038
 
1039
+ #: ../../admin/config/index.php:77
1040
  #, fuzzy
1041
  msgid "Referring Sites"
1042
  msgstr "Motores de Búsqueda"
1043
 
1044
+ #: ../../admin/config/index.php:77
1045
  msgid ""
1046
  "Referring URLs that you don't want to track, separated by commas: "
1047
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
1050
  "include either a wildcard or the protocol you want to filter (http://, "
1051
  "https://)."
1052
  msgstr ""
1053
+ "URLs que refieren a las que no desee realizar el seguimiento, separadas por "
1054
+ "comas: <code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, "
1055
+ "etc. Comodines: <code>*</code> coincide con \"cualquier carácter\". Las "
1056
+ "cadenas son mayúsculas y minúsculas. Por favor incluya ya sea un comodín o "
1057
+ "el protocolo que desea filtrar (http://, https://)."
1058
 
1059
+ #: ../../admin/config/index.php:79 ../../admin/config/index.php:215
1060
  msgid "Miscellaneous"
1061
+ msgstr "Varios"
1062
 
1063
+ #: ../../admin/config/index.php:80
1064
  msgid "Enable Privacy Mode"
1065
+ msgstr "Activar el modo de privacidad"
1066
 
1067
+ #: ../../admin/config/index.php:80
1068
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
1069
  msgstr ""
1070
+ "Enmascarar direcciones IP de sus visitantes para cumplir con leyes de "
1071
+ "privacidad europeas."
1072
 
1073
+ #: ../../admin/config/index.php:81
1074
  msgid "Ignore Prefetch Requests"
1075
+ msgstr "Ignorar PPeticiones Prefetch"
1076
 
1077
+ #: ../../admin/config/index.php:81
1078
  msgid ""
1079
  "Prevent WP SlimStat from tracking pageviews generated by Firefox's <a "
1080
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
1081
  "target='_blank'>Link Prefetching functionality</a>."
1082
  msgstr ""
1083
+ "Evitar que WP SLIMStat de el seguimiento de páginas vistas generadas por <a "
1084
+ "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
1085
+ "target='_blank'> Función de Prellamado de enlaces de Firefox </a>."
1086
 
1087
+ #: ../../admin/config/index.php:97
1088
  msgid "Ignore users (username not found)"
1089
+ msgstr "Ignorar usuarios (nombre de usuario no encontrado)"
1090
 
1091
+ #: ../../admin/config/index.php:120
1092
  msgid ""
1093
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
1094
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
1095
  msgstr ""
1096
+ "La capacidad no es válida. Por favor, consulte <a href=\"http://codex."
1097
+ "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> esta página </a> "
1098
+ "para obtener más información"
1099
 
1100
+ #: ../../admin/config/index.php:130
1101
  #, fuzzy
1102
  msgid "Reports"
1103
  msgstr "Informes Personalizados"
1104
 
1105
+ #: ../../admin/config/index.php:131
1106
  #, fuzzy
1107
  msgid "Restrict Authors"
1108
  msgstr "Autor de la entrada(sección)"
1109
 
1110
+ #: ../../admin/config/index.php:131
1111
  msgid ""
1112
  "Enable this option if you want your authours to only see stats related to "
1113
  "their own content."
1114
  msgstr ""
1115
+ "Habilite esta opción si desea que sus autores sólo vean las estadísticas "
1116
+ "relacionadas con su propio contenido"
1117
 
1118
+ #: ../../admin/config/index.php:132 ../../admin/config/index.php:136
1119
  #, fuzzy
1120
  msgid "Capability"
1121
  msgstr "Navegador"
1122
 
1123
+ #: ../../admin/config/index.php:132
1124
+ #, fuzzy
1125
  msgid ""
1126
  "Specify the minimum <a href='http://codex.wordpress.org/"
1127
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
1128
+ "reports (default: <code>activate_plugins</code>). If this field is empty, "
1129
+ "<strong>all your users</strong> (including subscribers) will have access to "
1130
+ "the reports, unless a 'Read access' whitelist has been specified here below. "
1131
+ "In this case, the list has precedence over the capability."
1132
+ msgstr ""
1133
+ "Especifique la mínima <a href='http://codex.wordpress.org/"
1134
+ "Roles_and_Capabilities' target='_new'>capability</a> que se necesita para "
1135
+ "acceder a los informes (por defecto: <code> leer</code>). Si este campo está "
1136
+ "vacío, <strong> todos los usuarios </strong> (incluidos los abonados) "
1137
+ "tendrán acceso a los informes, a menos que se haya especificado una lista "
1138
+ "blanca 'Acceso de lectura' aquí abajo. En este caso, la lista tiene "
1139
+ "prioridad sobre la capacidad."
1140
+
1141
+ #: ../../admin/config/index.php:133 ../../admin/config/index.php:137
1142
  msgid "Whitelist"
1143
+ msgstr "Lista blanca"
1144
 
1145
+ #: ../../admin/config/index.php:133
1146
  msgid ""
1147
  "List all the users who should have access to the reports, separated by "
1148
  "commas. Administrators are implicitly allowed, so you don't need to list "
1149
  "them in here. Usernames are case sensitive."
1150
  msgstr ""
1151
+ "Enlista a los usuarios que deben tener acceso a los informes, separados por "
1152
+ "comas. Los administradores están implícitamente autorizados, por lo que no "
1153
+ "es necesario enumerarlos aquí. Los nombres de usuario distinguen entre "
1154
+ "mayúsculas y minúsculasdefecto."
1155
 
1156
+ #: ../../admin/config/index.php:136
1157
  msgid ""
1158
  "Specify the minimum <a href='http://codex.wordpress.org/"
1159
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
1160
  "WP SlimStat (default: <code>activate_plugins</code>). The whitelist here "
1161
  "below can be used to override this option for specific users."
1162
  msgstr ""
1163
+ "Especifique la mínima <a href='http://codex.wordpress.org/"
1164
+ "Roles_and_Capabilities' target='_new'>capacidad</a> necesaria para "
1165
+ "configurar WP SLIMStat (por <code> Activate_plugins </code>). La lista "
1166
+ "blanca de aquí abajo se puede utilizar para anular esta opción para usuarios "
1167
+ "específicos."
1168
 
1169
+ #: ../../admin/config/index.php:137
1170
  msgid ""
1171
  "List all the users who can edit these options, separated by commas. Please "
1172
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
1173
  "not forget to include yourself! Usernames are case sensitive."
1174
  msgstr ""
1175
+ "Enistar todos los usuarios que pueden editar estas opciones, separados por "
1176
+ "comas. Tenga en cuenta que los administradores <strong> no son </strong> "
1177
+ "implícitamente permitidos, así que ¡no se olvide de incluirse a si mismo! "
1178
+ "Los nombres de usuario distinguen entre mayúsculas y minúsculas."
1179
 
1180
+ #: ../../admin/config/index.php:153
1181
  msgid "Read access: username not found"
1182
+ msgstr "Acceso de lectura: Nombre de usuario no se encuentra"
1183
 
1184
+ #: ../../admin/config/index.php:166 ../../admin/config/index.php:197
1185
  msgid ""
1186
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
1187
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
1188
  "information"
1189
  msgstr ""
1190
+ "Capacidad mínima inválida. Por favor, consulte <a href=\"http://codex."
1191
+ "wordpress.org/Roles_and_Capabilities\" target=\"_new\">esta página</a> para "
1192
+ "obtener más información"
1193
 
1194
+ #: ../../admin/config/index.php:184
1195
  msgid "Config access: username not found"
1196
+ msgstr "Acceso de configuración: Nombre de usuario no encontrado"
1197
 
1198
+ #: ../../admin/config/index.php:208
1199
  msgid "Detect Smoothing"
1200
+ msgstr "Detectar Smoothing"
1201
 
1202
+ #: ../../admin/config/index.php:208
1203
  msgid ""
1204
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
1205
  "This option required Spy Mode to be enabled."
1206
  msgstr ""
1207
+ "Detectar si los navegadores de sus visitantes soportan anti-aliasing "
1208
+ "(suavizado de fuentes). Esta opción requiere que el modo Espía esté "
1209
+ "habilitado."
1210
 
1211
+ #: ../../admin/config/index.php:209
1212
  #, fuzzy
1213
  msgid "Track Outbound Clicks"
1214
  msgstr "Enlaces Salientes Recientes"
1215
 
1216
+ #: ../../admin/config/index.php:209
1217
  msgid ""
1218
  "Track when your visitors click on link to external websites. This option "
1219
  "required Spy Mode to be enabled."
1220
  msgstr ""
1221
+ "Rastree cuando los usuarios hacen clic en el enlace a sitios web externos. "
1222
+ "Esta opción requere que el modo Espía esté habilitado."
1223
 
1224
+ #: ../../admin/config/index.php:210
1225
  #, fuzzy
1226
  msgid "Session Duration"
1227
  msgstr "Visitas"
1228
 
1229
+ #: ../../admin/config/index.php:210
1230
+ #, fuzzy
1231
  msgid ""
1232
+ "How many seconds should a human session last? Google Analytics sets it to "
1233
+ "1800 seconds."
1234
  msgstr ""
1235
+ "¿Cuántos segundos debe durar una sesión humana en su sitio? Google Analytics "
1236
+ "lo establece en 1.800 segundos."
1237
 
1238
+ #: ../../admin/config/index.php:211
1239
  msgid "Extend Session"
1240
+ msgstr "Extender Sesión"
1241
 
1242
+ #: ../../admin/config/index.php:211
1243
  msgid "Extend the duration of a session each time the user visits a new page."
1244
  msgstr ""
1245
+ "Extender la duración de una sesión cada vez que el usuario visita una página "
1246
+ "nueva."
1247
 
1248
+ #: ../../admin/config/index.php:212
1249
  msgid "Enable CDN"
1250
+ msgstr "Habilitar CDN"
1251
 
1252
+ #: ../../admin/config/index.php:212
1253
  msgid ""
1254
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
1255
  "by serving our tracking code from their fast and reliable network (free "
1256
  "service)."
1257
  msgstr ""
1258
+ "Uso <a href='http://www.jsdelivr.com/' target='_blank'> JSDelivr </a> 's "
1259
+ "CDN, sirviendo nuestro código de seguimiento de su red rápida y confiable "
1260
+ "(servicio gratuito)."
1261
 
1262
+ #: ../../admin/config/index.php:213
1263
  msgid "Extensions to Track"
1264
+ msgstr "Extensiones a rastreo"
1265
 
1266
+ #: ../../admin/config/index.php:213
1267
  msgid ""
1268
  "List all the file extensions that you want to be treated as Downloads. "
1269
  "Please note that links pointing to external resources (i.e. PDFs on a "
1271
  "tracked as such), if their extension matches one of the ones listed here "
1272
  "below."
1273
  msgstr ""
1274
+ "Enlista todas las extensiones de archivo que desea sean tratadas como "
1275
+ "descargas. Por favor, tenga en cuenta que los enlaces que apuntan a recursos "
1276
+ "externos (es decir, archivos PDF en un sitio web diferente) se consideran "
1277
+ "Descargas y no Vínculos salientes (y rastreado como tal), si su extensión "
1278
+ "coincide con uno de los que se enumeran a continuación."
1279
 
1280
+ #: ../../admin/config/index.php:216
1281
  msgid "IP Lookup"
1282
+ msgstr "Búsqueda de IP"
1283
 
1284
+ #: ../../admin/config/index.php:216
1285
  msgid "Customize the Geolocation service to be used in the reports."
1286
  msgstr ""
1287
+ "Personalizar el servicio de Geolocalización de ser utilizado en los informes."
1288
 
1289
+ #: ../../admin/config/index.php:217
1290
  msgid "Custom CSS"
1291
+ msgstr "CSS personalizado"
1292
 
1293
+ #: ../../admin/config/index.php:217
1294
+ #, fuzzy
1295
  msgid ""
1296
  "Paste here your custom stylesheet to personalize the way your reports look. "
1297
  "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1298
  "target='_blank'>Check the FAQ</a> for more information on how to use this "
1299
+ "setting."
 
 
 
 
 
 
 
 
 
 
 
 
 
1300
  msgstr ""
1301
+ "Pega aquí tu hoja de estilo personalizada para personalizar la forma en que "
1302
+ "sus informes se ven. <a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1303
+ "target='_blank'> Compruebe la FAQ </a> para obtener más información sobre "
1304
+ "cómo utilizar esta funcionalidad."
1305
 
1306
  #: ../../admin/config/index.php:218
1307
  msgid "Enable UAN"
1308
+ msgstr "Habilitar UAN"
1309
 
1310
  #: ../../admin/config/index.php:218
1311
+ #, fuzzy
1312
  msgid ""
1313
+ "Send anonymous data about unknown user agents to our server for analysis. "
1314
+ "This allows us to contribute to the <a href='http://browscap.org/' "
1315
+ "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
1316
+ "WP SlimStat's browser detection functionality."
1317
  msgstr ""
1318
+ "Recopilar datos sobre los agentes de usuario desconocidos, y enviarlos de "
1319
+ "forma anónima a nuestro servidor para su análisis. Esto nos permite "
1320
+ "contribuir con el proyecto <a href='http://browscap.co/' target='_blank'> "
1321
+ "opensource BrowsCap </a>, y mejorar la precisión de la funcionalidad de "
1322
+ "detección de navegador del SLIMStat."
1323
 
1324
  #: ../../admin/config/maintenance.php:20
1325
  msgid "Your WP SlimStat tables have been successfully converted to InnoDB."
1326
+ msgstr "Sus tablas WP SLIMStat han sido convertidas correctamente a. InnoDB"
1327
 
1328
  #: ../../admin/config/maintenance.php:30
1329
  msgid "records deleted from your database."
1330
+ msgstr "Registros eliminados de la base de datos."
1331
 
1332
  #: ../../admin/config/maintenance.php:34
1333
  msgid "All the records were successfully deleted."
1334
+ msgstr "Todos los registros se han eliminado con éxito."
1335
 
1336
  #: ../../admin/config/maintenance.php:38
1337
  msgid "Your reports were successfully restored to their default arrangement."
1338
  msgstr ""
1339
+ "Sus informes fueron restaurados con éxito a su disposición de forma "
1340
+ "predeterminada."
1341
 
1342
  #: ../../admin/config/maintenance.php:45
1343
  msgid ""
1344
  "Congrats! WP SlimStat is now optimized for <a href=\"http://www.youtube.com/"
1345
  "watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
1346
  msgstr ""
1347
+ "¡Felicidades! WP SLIMStat está ahora optimizado para <a href=\"http://www."
1348
+ "youtube.com/watch?v=ygE01sOhzz0\" target=\"_blank\"> velocidad ridícula </a>."
1349
 
1350
  #: ../../admin/config/maintenance.php:52
1351
  msgid ""
1352
  "Indexing has been successfully disabled. Enjoy the extra database space you "
1353
  "just gained!"
1354
  msgstr ""
1355
+ "Indexación se ha desactivado con éxito. Disfrute del espacio de base de "
1356
+ "datos adicional ¡que acaba de ganar!"
1357
 
1358
  #: ../../admin/config/maintenance.php:83
1359
  msgid "Database Information"
1360
+ msgstr "Información Base de datos"
1361
 
1362
  #: ../../admin/config/maintenance.php:86
1363
  #, fuzzy
1366
 
1367
  #: ../../admin/config/maintenance.php:90
1368
  msgid "switch to InnoDB"
1369
+ msgstr "cambiar a InnoDB"
1370
 
1371
  #: ../../admin/config/maintenance.php:101
1372
  #, fuzzy
1375
 
1376
  #: ../../admin/config/maintenance.php:106
1377
  msgid "Data Maintenance"
1378
+ msgstr "Mantenimiento de Datos"
1379
 
1380
  #: ../../admin/config/maintenance.php:109
1381
  #, fuzzy
1384
 
1385
  #: ../../admin/config/maintenance.php:123 ../../admin/view/index.php:17
1386
  msgid "equals"
1387
+ msgstr "es igual a"
1388
 
1389
  #: ../../admin/config/maintenance.php:124 ../../admin/view/index.php:18
1390
  msgid "is not equal to"
1391
+ msgstr "no es igual a"
1392
 
1393
  #: ../../admin/config/maintenance.php:125 ../../admin/view/index.php:19
1394
  #, fuzzy
1412
 
1413
  #: ../../admin/config/maintenance.php:129 ../../admin/view/index.php:23
1414
  msgid "sounds like"
1415
+ msgstr "suena como"
1416
 
1417
  #: ../../admin/config/maintenance.php:130 ../../admin/view/index.php:24
1418
  msgid "is greater than"
1419
+ msgstr "es mayor que"
1420
 
1421
  #: ../../admin/config/maintenance.php:131 ../../admin/view/index.php:25
1422
  msgid "is less than"
1423
+ msgstr "es menor que"
1424
 
1425
  #: ../../admin/config/maintenance.php:132 ../../admin/view/index.php:26
1426
  msgid "matches"
1427
+ msgstr "coincide"
1428
 
1429
  #: ../../admin/config/maintenance.php:133 ../../admin/view/index.php:27
1430
  #, fuzzy
1433
 
1434
  #: ../../admin/config/maintenance.php:134 ../../admin/view/index.php:28
1435
  msgid "is empty"
1436
+ msgstr "está vacío"
1437
 
1438
  #: ../../admin/config/maintenance.php:135 ../../admin/view/index.php:29
1439
  msgid "is not empty"
1440
+ msgstr "no está vacío"
1441
 
1442
  #: ../../admin/config/maintenance.php:138 ../../admin/view/index.php:32
1443
+ #: ../../admin/view/index.php:78
1444
  msgid "Apply"
1445
+ msgstr "Aplicar"
1446
 
1447
  #: ../../admin/config/maintenance.php:139
1448
  msgid ""
1449
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1450
  msgstr ""
1451
+ "¿Está seguro que desea eliminar PERMANENTEMENTE estos registros de su base "
1452
+ "de datos?"
1453
 
1454
  #: ../../admin/config/maintenance.php:144
1455
  msgid "Empty Database"
1456
+ msgstr "Base de datos vacía"
1457
 
1458
  #: ../../admin/config/maintenance.php:147
1459
  msgid ""
1460
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1461
  "database?"
1462
  msgstr ""
1463
+ "¿Está seguro que quiere BORRAR PERMANENTEMENTE TODOS los registros de su "
1464
+ "base de datos?"
1465
 
1466
  #: ../../admin/config/maintenance.php:147
1467
  #, fuzzy
1473
  "Erase all the information collected so far by WP SlimStat. This operation "
1474
  "<strong>does not</strong> reset your settings."
1475
  msgstr ""
1476
+ "Borrar toda la información recopilada hasta el momento por WP SLIMStat. Esta "
1477
+ "<strong> operación no </strong> restablece la configuración."
1478
 
1479
  #: ../../admin/config/maintenance.php:152
1480
  #, fuzzy
1485
  msgid ""
1486
  "Are you sure you want to restore the default arrangement of your reports?"
1487
  msgstr ""
1488
+ "¿Está seguro de que desea restaurar la disposición por defecto de sus "
1489
+ "informes?"
1490
 
1491
  #: ../../admin/config/maintenance.php:155
1492
  msgid "No Panic Button"
1493
+ msgstr "Botón No Pánico"
1494
 
1495
  #: ../../admin/config/maintenance.php:156
1496
  msgid ""
1497
  "Reset the default arrangement of your reports. Helpful when, for some "
1498
  "reason, reports disappear from your panels."
1499
  msgstr ""
1500
+ "Cambiar la disposición por defecto de sus informes. Útil cuando, por alguna "
1501
+ "razón, los informes desaparecen de sus paneles."
1502
 
1503
  #: ../../admin/config/maintenance.php:160
1504
  msgid "Performance"
1505
+ msgstr "Rendimiento"
1506
 
1507
  #: ../../admin/config/maintenance.php:163
1508
  msgid "Improve Performance"
1509
+ msgstr "Mejorar el rendimiento"
1510
 
1511
  #: ../../admin/config/maintenance.php:164
1512
  msgid ""
1513
  "Please note that you will need about 30% more DB space to store the extra "
1514
  "information required."
1515
  msgstr ""
1516
+ "Por favor, tenga en cuenta que necesitará un 30% más de espacio BD para "
1517
+ "almacenar la información adicional que se requiere."
1518
 
1519
  #: ../../admin/config/maintenance.php:168
1520
  msgid "Save DB Space"
1521
+ msgstr "Guardar Espacio BD"
1522
 
1523
  #: ../../admin/config/maintenance.php:169
1524
  msgid ""
1525
  "Please note that by removing table indexes, WP SlimStat's performance will "
1526
  "be affected."
1527
  msgstr ""
1528
+ "Tenga en cuenta que al eliminar los índices de tabla, el rendimiento de WP "
1529
+ "SLIMStat se verá afectado."
1530
 
1531
  #: ../../admin/config/maintenance.php:174
1532
  msgid "Import and Export"
1533
+ msgstr "Importar y Exportar"
1534
 
1535
  #: ../../admin/config/maintenance.php:178
1536
  msgid ""
1541
 
1542
  #: ../../admin/config/maintenance.php:183
1543
  msgid "Import"
1544
+ msgstr "Importar"
1545
 
1546
  #: ../../admin/config/maintenance.php:184
1547
  msgid "Are you sure you want to OVERWRITE your current settings?"
1548
+ msgstr "¿Seguro de que desea sobrescribir la configuración actual?"
1549
 
1550
  #: ../../admin/lang/dynamic_strings.php:3
1551
  msgid "xx"
1557
 
1558
  #: ../../admin/lang/dynamic_strings.php:5
1559
  msgid "win8.1"
1560
+ msgstr "win8.1"
1561
 
1562
  #: ../../admin/lang/dynamic_strings.php:6
1563
  msgid "win8"
1564
+ msgstr "win8"
1565
 
1566
  #: ../../admin/lang/dynamic_strings.php:7
1567
  msgid "win7"
1743
 
1744
  #: ../../admin/lang/dynamic_strings.php:51
1745
  msgid "blackberry os"
1746
+ msgstr "so blackberry"
1747
 
1748
  #: ../../admin/lang/dynamic_strings.php:52
1749
  msgid "webos"
1804
 
1805
  #: ../../admin/lang/dynamic_strings.php:66
1806
  msgid "director"
1807
+ msgstr "director"
1808
 
1809
  #: ../../admin/lang/dynamic_strings.php:67
1810
  #, fuzzy
1818
 
1819
  #: ../../admin/lang/dynamic_strings.php:69
1820
  msgid "quicktime"
1821
+ msgstr "quicktime"
1822
 
1823
  #: ../../admin/lang/dynamic_strings.php:70
1824
  msgid "real"
1825
+ msgstr "real"
1826
 
1827
  #: ../../admin/lang/dynamic_strings.php:71
1828
  #, fuzzy
2651
 
2652
  #: ../../admin/lang/dynamic_strings.php:227
2653
  msgid "l-ns"
2654
+ msgstr "l-ns"
2655
 
2656
  #: ../../admin/lang/dynamic_strings.php:228
2657
  msgid "l-ns-za"
2658
+ msgstr "l-ns-za"
2659
 
2660
  # Panjabi; Punjabi
2661
  #: ../../admin/lang/dynamic_strings.php:229
3035
  msgstr "Zulu"
3036
 
3037
  #: ../../admin/lang/dynamic_strings.php:298
3038
+ #: ../../admin/view/wp-slimstat-reports.php:482
3039
  msgid "l-"
3040
  msgstr "l-"
3041
 
3053
  msgid "c-xy"
3054
  msgstr "Local IP"
3055
 
3056
+ #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:768
3057
  msgid "Today"
3058
+ msgstr "Hoy"
3059
 
3060
+ #: ../../admin/view/index.php:49 ../../admin/view/wp-slimstat-reports.php:769
3061
  msgid "Yesterday"
3062
+ msgstr "Ayer"
 
 
 
 
3063
 
3064
  #: ../../admin/view/index.php:50
3065
+ msgid "Last 7 Days"
3066
+ msgstr "Últimos 7 días"
3067
 
3068
  #: ../../admin/view/index.php:51
3069
+ msgid "Last 60 Days"
3070
+ msgstr "Últimos 60 días"
3071
 
3072
  #: ../../admin/view/index.php:52
3073
+ msgid "Last 90 Days"
3074
+ msgstr "Últimos 90 días"
3075
+
3076
+ #: ../../admin/view/index.php:53
3077
  #, fuzzy
3078
+ msgid "This Year So Far"
3079
  msgstr "Año"
3080
 
3081
+ #: ../../admin/view/index.php:54
3082
  #, fuzzy
3083
  msgid "Date Range"
3084
  msgstr "Fecha y hora"
3085
 
3086
+ #: ../../admin/view/index.php:56 ../../admin/view/wp-slimstat-db.php:87
3087
  msgid "Day"
3088
  msgstr "Día"
3089
 
3090
+ #: ../../admin/view/index.php:66 ../../admin/view/wp-slimstat-db.php:88
3091
  msgid "Month"
3092
  msgstr "Mes"
3093
 
3094
+ #: ../../admin/view/index.php:75 ../../admin/view/wp-slimstat-db.php:89
3095
  msgid "Year"
3096
  msgstr "Año"
3097
 
3098
+ #: ../../admin/view/index.php:80
3099
+ #, fuzzy
3100
+ msgid "Reset Filters"
3101
+ msgstr "Filtros de fecha"
3102
+
3103
+ #: ../../admin/view/index.php:117
3104
  msgid "Your report here"
3105
+ msgstr "Su informe aquí"
3106
 
3107
+ #: ../../admin/view/index.php:119
3108
  #, fuzzy
3109
  msgid ""
3110
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
3124
  "información, visite mi <a href=\"http://lab.duechiacchiere.it/\" target="
3125
  "\"_blank\"> Foro de Soporte </ a>."
3126
 
3127
+ #: ../../admin/view/index.php:133 ../../admin/view/wp-slimstat-reports.php:759
3128
+ #: ../../admin/view/wp-slimstat-reports.php:861
3129
+ #: ../../admin/view/wp-slimstat-reports.php:1145
3130
  msgid "Pageviews"
3131
  msgstr "Paginas visitadas"
3132
 
3133
+ #: ../../admin/view/index.php:136
3134
  msgid ""
3135
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
3136
  "WP SlimStat leverages this information to identify returning visitors. "
3137
  "Please note that visitors also include registered users."
3138
  msgstr ""
3139
+ "Cuando los visitantes dejen un comentario en su blog, WordPress les asigna "
3140
+ "una cookie. WP SLIMStat aprovecha esta información para identificar a los "
3141
+ "visitantes que regresan. Por favor, tenga en cuenta que los visitantes "
3142
+ "también incluyen a los usuarios registrados."
3143
 
3144
+ #: ../../admin/view/index.php:140
3145
  msgid "Take a sneak peek at what human visitors are doing on your website."
3146
  msgstr ""
3147
+ "Eche un vistazo a lo que los visitantes humanos están haciendo en su sitio "
3148
+ "web."
3149
 
3150
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
3151
+ #: ../../admin/view/index.php:184 ../../admin/view/right-now.php:147
3152
  #, fuzzy
3153
  msgid "Color codes"
3154
  msgstr "Código de Pais"
3155
 
3156
+ #: ../../admin/view/index.php:140
3157
  msgid "From a search result page"
3158
+ msgstr "Desde una página con resultados de búsqueda"
3159
 
3160
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
3161
+ #: ../../admin/view/index.php:184
3162
  #, fuzzy
3163
  msgid "Known Users"
3164
  msgstr "Navegadores recientes"
3165
 
3166
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
3167
+ #: ../../admin/view/index.php:184
3168
  msgid "Other Humans"
3169
+ msgstr "Otros seres humanos"
3170
 
3171
+ #: ../../admin/view/index.php:144
3172
  msgid "Keywords used by your visitors to find your website on a search engine."
3173
  msgstr ""
3174
+ "Palabras clave utilizadas por los visitantes para encontrar su sitio en un "
3175
+ "motor de búsqueda."
3176
 
3177
+ #: ../../admin/view/index.php:147
3178
  msgid ""
3179
  "WP SlimStat retrieves live information from Alexa, Facebook and Google, to "
3180
  "measures your site's rankings. Values are updated every 12 hours. Filters "
3181
  "set above don't apply to this report."
3182
  msgstr ""
3183
+ "WP SLIMStat recupera información en directo desde Alexa, Facebook y Google, "
3184
+ "para medir el ranking de su sitio. Los valores se actualizan cada 12 horas. "
3185
+ "Filtros indicados anteriormente no se aplican a este informe."
3186
 
3187
+ #: ../../admin/view/index.php:150
3188
  msgid ""
3189
  "We have teamed up with HackerNinja.com to offer you a free website security "
3190
  "scan. By clicking on Start Free Scan, your website will be analyzed to "
3191
  "detect viruses and other treats. Please note that no confidential "
3192
  "information is being sent to HackerNinja."
3193
  msgstr ""
3194
+ "Nos hemos asociado con HackerNinja.com para ofrecerle un análisis de "
3195
+ "seguridad de sitio web gratuito. Al hacer clic en Start Scan gratuito, su "
3196
+ "sitio web será analizado para detectar virus y otras amenazas. Tenga en "
3197
+ "cuenta que ninguna información confidencial se envía a HackerNinja."
3198
 
3199
+ #: ../../admin/view/index.php:153
 
3200
  msgid "Human Visits"
3201
  msgstr "Visitas humanas"
3202
 
3203
+ #: ../../admin/view/index.php:156
3204
  msgid ""
3205
  "Internet Service Provider: a company which provides other companies or "
3206
  "individuals with access to the Internet. Your DSL or cable internet service "
3207
  "is provided to you by your ISP.<br><br>You can ignore specific IP addresses "
3208
  "by setting the corresponding filter under Settings > SlimStat > Filters."
3209
  msgstr ""
3210
+ "Proveedor de servicios de Internet: Una empresa que ofrece a otras empresas "
3211
+ "o a particulares acceso a Internet. Su servicio de Internet DSL o por cable "
3212
+ "es proporcionado a usted por su ISP. <br><br> Puede ignorar las direcciones "
3213
+ "IP específicas estableciendo el filtro correspondiente en Configuración> "
3214
+ "SLIMStat> Filtros."
3215
 
3216
+ #: ../../admin/view/index.php:159
3217
  msgid ""
3218
  "You can configure WP SlimStat to ignore a specific Country by setting the "
3219
  "corresponding filter under Settings > SlimStat > Filters."
3220
  msgstr ""
3221
+ "Usted puede configurar WP SLIMStat para ignorar un determinado país mediante "
3222
+ "el establecimiento de el filtro correspondiente en Configuración> SLIMStat> "
3223
+ "Filtros."
3224
 
3225
+ #: ../../admin/view/index.php:162
3226
  msgid ""
3227
  "This report shows you what user agent families (no version considered) are "
3228
  "popular among your visitors."
3229
  msgstr ""
3230
+ "Este informe muestra qué familias de agentes de usuarios son populares entre "
3231
+ "los visitantes (no considerada la versión)."
3232
 
3233
+ #: ../../admin/view/index.php:165
3234
  msgid ""
3235
  "This report shows you what operating system families (no version considered) "
3236
  "are popular among your visitors."
3237
  msgstr ""
3238
+ "Este informe le muestra qué familias de sistema operativo (sin versión "
3239
+ "considerado) son populares entre los visitantes."
3240
 
3241
+ #: ../../admin/view/index.php:171
3242
  #, fuzzy
3243
  msgid "Average Pageviews per Visit"
3244
  msgstr "Promedio de páginas vistas por horas"
3245
 
3246
+ #: ../../admin/view/index.php:174
3247
  msgid ""
3248
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
3249
  "left your site from the entrance (landing) page."
3250
  msgstr ""
3251
+ "A <em> página de rebote </em> es una visita de una sola página, o visite en "
3252
+ "la que el usuario ha abandonado su sitio desde la página de entrada (de "
3253
+ "aterrizaje)."
3254
 
3255
+ #: ../../admin/view/index.php:177
3256
  msgid "Searches performed using Wordpress' built-in search functionality."
3257
  msgstr ""
3258
+ "Búsquedas realizadas utilizando la funcionalidad integrada de búsqueda de "
3259
+ "Wordpress"
3260
 
3261
+ #: ../../admin/view/index.php:181
3262
  msgid ""
3263
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
3264
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
3265
  "link has an ID attribute associated to it."
3266
  msgstr ""
3267
+ "<strong>. Detalles de Enlace </strong><br>-<em> A: n </em> significa que en "
3268
+ "el vínculo enésimo en la página se hizo clic <br>-<em> ID:xx </em> se "
3269
+ "muestra cuando el enlace correspondiente tiene un atributo ID asociado a la "
3270
+ "misma."
3271
 
3272
+ #: ../../admin/view/index.php:184
3273
  msgid ""
3274
  "This report lists any <em>event</em> occurred on your website. Please refer "
3275
  "to the FAQ for more information on how to leverage this functionality."
3276
  msgstr ""
3277
+ "Este informe enumera todo <em>evento</ em> que se produjo en su sitio web. "
3278
+ "Por favor, consulte las preguntas frecuentes para más información sobre cómo "
3279
+ "aprovechar esta funcionalidad."
3280
 
3281
+ #: ../../admin/view/index.php:187
3282
  msgid ""
3283
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
3284
  "this report is not affected by the filters set here above."
3285
  msgstr ""
3286
+ "Su contenido en un vistazo: publicaciones, comentarios, pingbacks, etc Tenga "
3287
+ "en cuenta que este informe no es afectado por los filtros establecidos aquí "
3288
+ "arriba."
3289
 
3290
  #: ../../admin/view/right-now.php:8
3291
  msgid "Human"
3292
+ msgstr "Humana"
3293
 
3294
  #: ../../admin/view/right-now.php:8
3295
  msgid "Bot/Crawler"
3296
+ msgstr "Bot/Crawler"
3297
 
3298
  #: ../../admin/view/right-now.php:8
3299
  msgid "Mobile Device"
3300
+ msgstr "Dispositivo Móvil"
3301
 
3302
  #: ../../admin/view/right-now.php:8
3303
  msgid "Syndication Reader"
3304
+ msgstr "Lector de Sindicación"
3305
 
3306
  #: ../../admin/view/right-now.php:28
3307
+ #: ../../admin/view/wp-slimstat-reports.php:425
3308
+ #: ../../admin/view/wp-slimstat-reports.php:670
3309
  msgid "No data to display"
3310
  msgstr "No hay datos que mostrar"
3311
 
3312
  # Unknown
3313
+ #: ../../admin/view/right-now.php:54
3314
+ #: ../../admin/view/wp-slimstat-reports.php:470
3315
+ #: ../../admin/view/wp-slimstat-reports.php:708
3316
+ #: ../../admin/view/wp-slimstat-reports.php:1032
3317
  msgid "c-"
3318
  msgstr "Unknown"
3319
 
3320
+ #: ../../admin/view/right-now.php:120
3321
+ #: ../../admin/view/wp-slimstat-reports.php:524
3322
+ #: ../../admin/view/wp-slimstat-reports.php:528
3323
+ #: ../../admin/view/wp-slimstat-reports.php:690
3324
+ #: ../../admin/view/wp-slimstat-reports.php:728
3325
  #, fuzzy
3326
  msgid "Open this URL in a new window"
3327
  msgstr "Abrir %s en una nueva ventana"
3328
 
3329
+ #: ../../admin/view/right-now.php:123
3330
  msgid "Local search results page"
3331
+ msgstr "Página de resultados de búsqueda local"
3332
 
3333
+ #: ../../admin/view/right-now.php:130
3334
  #, fuzzy
3335
  msgid "Open this referrer in a new window"
3336
  msgstr "Abrir referido en una nueva página"
3337
 
3338
+ #: ../../admin/view/right-now.php:131
3339
  #, fuzzy
3340
  msgid "Open this outbound link in a new window"
3341
  msgstr "Abrir %s en una nueva ventana"
3342
 
3343
+ #: ../../admin/view/right-now.php:132
3344
  #, fuzzy
3345
  msgid "Date and Time"
3346
  msgstr "Fecha/Hora"
3347
 
3348
+ #: ../../admin/view/right-now.php:133
3349
  #, fuzzy
3350
  msgid "Content Type"
3351
  msgstr "Contenido"
3352
 
3353
+ #: ../../admin/view/right-now.php:148
3354
  msgid "Visit with keywords"
3355
+ msgstr "Visita con palabras clave"
3356
 
3357
+ #: ../../admin/view/right-now.php:150
3358
  #, fuzzy
3359
  msgid "Known User"
3360
  msgstr "Navegadores recientes"
3361
 
3362
+ #: ../../admin/view/right-now.php:151
3363
  #, fuzzy
3364
  msgid "Human Visitor"
3365
  msgstr "Visitas humanas"
3366
 
3367
+ #: ../../admin/view/right-now.php:152
3368
  msgid "Bot or Crawler"
3369
+ msgstr "Bot o Crawler"
3370
 
3371
+ #: ../../admin/view/wp-slimstat-db.php:59
3372
  msgid "IP Address"
3373
+ msgstr "Dirección IP"
3374
 
3375
+ #: ../../admin/view/wp-slimstat-db.php:64
3376
  msgid "Domain"
3377
  msgstr "Dominio"
3378
 
3379
+ #: ../../admin/view/wp-slimstat-db.php:68
3380
  msgid "-- Advanced filters --"
3381
+ msgstr "-- Filtros Avanzados --"
3382
 
3383
+ #: ../../admin/view/wp-slimstat-db.php:69
3384
+ #: ../../admin/view/wp-slimstat-reports.php:62
3385
  #, fuzzy
3386
  msgid "Browser Capabilities"
3387
  msgstr "Navegador"
3388
 
3389
+ #: ../../admin/view/wp-slimstat-db.php:81
3390
  #, fuzzy
3391
  msgid "Resource ID"
3392
  msgstr "Principales Recursos"
3393
 
3394
+ #: ../../admin/view/wp-slimstat-db.php:86
3395
  #, fuzzy
3396
  msgid "Hour"
3397
  msgstr "Paginas visitadas"
3398
 
3399
+ #: ../../admin/view/wp-slimstat-db.php:92
3400
+ #, fuzzy
3401
+ msgid "Order Direction"
3402
+ msgstr "director"
3403
+
3404
+ #: ../../admin/view/wp-slimstat-db.php:93
3405
+ msgid "Limit Results"
3406
+ msgstr ""
3407
+
3408
+ #: ../../admin/view/wp-slimstat-db.php:94
3409
+ msgid "Start From"
3410
+ msgstr ""
3411
+
3412
+ #: ../../admin/view/wp-slimstat-reports.php:41
3413
  #, fuzzy
3414
  msgid "Pageviews (chart)"
3415
  msgstr "Páginas visitadas por horas"
3416
 
3417
+ #: ../../admin/view/wp-slimstat-reports.php:42
3418
  #, fuzzy
3419
  msgid "About WP SlimStat"
3420
  msgstr "Acerca de WP-SlimStat"
3421
 
3422
+ #: ../../admin/view/wp-slimstat-reports.php:43
3423
+ #: ../../admin/view/wp-slimstat-reports.php:56
3424
  msgid "At a Glance"
3425
+ msgstr "Un vistazo"
3426
 
3427
+ #: ../../admin/view/wp-slimstat-reports.php:44
3428
  #, fuzzy
3429
  msgid "Currently Online"
3430
  msgstr "Filtros Actuales:"
3431
 
3432
+ #: ../../admin/view/wp-slimstat-reports.php:45
3433
+ #: ../../admin/view/wp-slimstat-reports.php:80
3434
  msgid "Spy View"
3435
+ msgstr "Vista de Espía"
3436
 
3437
+ #: ../../admin/view/wp-slimstat-reports.php:46
3438
+ #: ../../admin/view/wp-slimstat-reports.php:81
3439
  #, fuzzy
3440
  msgid "Recent Search Terms"
3441
  msgstr "Búsquedas Internas Recientes"
3442
 
3443
+ #: ../../admin/view/wp-slimstat-reports.php:47
3444
  #, fuzzy
3445
  msgid "Top Pages"
3446
  msgstr "Principales Páginas de Salida"
3447
 
3448
+ #: ../../admin/view/wp-slimstat-reports.php:48
3449
+ #: ../../admin/view/wp-slimstat-reports.php:78
3450
  #, fuzzy
3451
  msgid "Top Traffic Sources"
3452
  msgstr "Origen del Tráfico"
3453
 
3454
+ #: ../../admin/view/wp-slimstat-reports.php:49
3455
  #, fuzzy
3456
  msgid "Top Known Visitors"
3457
  msgstr "Palabras clave recientes"
3458
 
3459
+ #: ../../admin/view/wp-slimstat-reports.php:50
3460
+ #: ../../admin/view/wp-slimstat-reports.php:76
3461
+ #: ../../admin/view/wp-slimstat-reports.php:96
3462
  #, fuzzy
3463
  msgid "Top Search Terms"
3464
  msgstr "Principales Recursos"
3465
 
3466
+ #: ../../admin/view/wp-slimstat-reports.php:51
3467
+ #: ../../admin/view/wp-slimstat-reports.php:63
3468
+ #: ../../admin/view/wp-slimstat-reports.php:77
3469
  msgid "Top Countries"
3470
  msgstr "Paises que más visitan"
3471
 
3472
+ #: ../../admin/view/wp-slimstat-reports.php:52
3473
  msgid "Rankings"
3474
+ msgstr "Calificaciones"
3475
 
3476
+ #: ../../admin/view/wp-slimstat-reports.php:53
3477
  msgid "Security Scan"
3478
+ msgstr "Examinación de Seguridad"
3479
 
3480
+ #: ../../admin/view/wp-slimstat-reports.php:54
3481
  #, fuzzy
3482
  msgid "Top Language Families"
3483
  msgstr "Idiomas"
3484
 
3485
+ #: ../../admin/view/wp-slimstat-reports.php:55
3486
  #, fuzzy
3487
  msgid "Human Visits (chart)"
3488
  msgstr "Visitas humanas por hora"
3489
 
3490
+ #: ../../admin/view/wp-slimstat-reports.php:57
3491
  #, fuzzy
3492
  msgid "Top Languages"
3493
  msgstr "Idiomas"
3494
 
3495
+ #: ../../admin/view/wp-slimstat-reports.php:58
3496
  #, fuzzy
3497
  msgid "Top Browsers"
3498
  msgstr "Navegador"
3499
 
3500
+ #: ../../admin/view/wp-slimstat-reports.php:59
3501
  #, fuzzy
3502
  msgid "Top Service Providers"
3503
  msgstr "Principales Recursos"
3504
 
3505
+ #: ../../admin/view/wp-slimstat-reports.php:60
3506
  #, fuzzy
3507
  msgid "Top Operating Systems"
3508
  msgstr "Sistemas Operativos"
3509
 
3510
+ #: ../../admin/view/wp-slimstat-reports.php:61
3511
  #, fuzzy
3512
  msgid "Top Screen Resolutions"
3513
  msgstr "Resolución de Pantalla"
3514
 
3515
+ #: ../../admin/view/wp-slimstat-reports.php:64
3516
  #, fuzzy
3517
  msgid "Visit Duration"
3518
  msgstr "Visitas"
3519
 
3520
+ #: ../../admin/view/wp-slimstat-reports.php:65
3521
+ #: ../../admin/view/wp-slimstat-reports.php:82
3522
  msgid "Recent Countries"
3523
  msgstr "Paises Recientes"
3524
 
3525
+ #: ../../admin/view/wp-slimstat-reports.php:66
3526
  #, fuzzy
3527
  msgid "Recent Screen Resolutions"
3528
  msgstr "Resolución de Pantalla"
3529
 
3530
+ #: ../../admin/view/wp-slimstat-reports.php:67
3531
  #, fuzzy
3532
  msgid "Recent Operating Systems"
3533
  msgstr "Sistemas Operativos"
3534
 
3535
+ #: ../../admin/view/wp-slimstat-reports.php:68
3536
  #, fuzzy
3537
  msgid "Recent Browsers"
3538
  msgstr "Contenidos Recientes"
3539
 
3540
+ #: ../../admin/view/wp-slimstat-reports.php:69
3541
  #, fuzzy
3542
  msgid "Recent Languages"
3543
  msgstr "Idiomas"
3544
 
3545
+ #: ../../admin/view/wp-slimstat-reports.php:70
3546
  #, fuzzy
3547
  msgid "Top Browser Families"
3548
  msgstr "Navegador"
3549
 
3550
+ #: ../../admin/view/wp-slimstat-reports.php:71
3551
  msgid "Top OS Families"
3552
+ msgstr "Páginas Recientes no encontradas"
3553
 
3554
+ #: ../../admin/view/wp-slimstat-reports.php:72
3555
  #, fuzzy
3556
  msgid "Recent Users"
3557
  msgstr "Buscadores"
3558
 
3559
+ #: ../../admin/view/wp-slimstat-reports.php:73
3560
  #, fuzzy
3561
  msgid "Top Users"
3562
  msgstr "Buscadores"
3563
 
3564
+ #: ../../admin/view/wp-slimstat-reports.php:74
3565
  #, fuzzy
3566
  msgid "Traffic Sources (chart)"
3567
  msgstr "Origen del Tráfico"
3568
 
3569
+ #: ../../admin/view/wp-slimstat-reports.php:75
3570
  #, fuzzy
3571
  msgid "Summary"
3572
  msgstr "Sumario de"
3573
 
3574
+ #: ../../admin/view/wp-slimstat-reports.php:79
3575
  #, fuzzy
3576
  msgid "Top Referring Search Engines"
3577
  msgstr "Motores de Búsqueda"
3578
 
3579
+ #: ../../admin/view/wp-slimstat-reports.php:83
3580
+ #: ../../admin/view/wp-slimstat-reports.php:99
3581
  #, fuzzy
3582
  msgid "Top Landing Pages"
3583
  msgstr "Principales Páginas de Salida"
3584
 
3585
+ #: ../../admin/view/wp-slimstat-reports.php:84
3586
  #, fuzzy
3587
  msgid "Average Pageviews per Visit (chart)"
3588
  msgstr "Promedio de páginas vistas por horas"
3589
 
3590
+ #: ../../admin/view/wp-slimstat-reports.php:85
3591
  #, fuzzy
3592
  msgid "Recent Posts"
3593
  msgstr "Contenidos Recientes"
3594
 
3595
+ #: ../../admin/view/wp-slimstat-reports.php:86
3596
  #, fuzzy
3597
  msgid "Recent Bounce Pages"
3598
  msgstr "Páginas recientes de rebote"
3599
 
3600
+ #: ../../admin/view/wp-slimstat-reports.php:87
3601
  msgid "Recent Feeds"
3602
  msgstr "Feeds Recientes"
3603
 
3604
+ #: ../../admin/view/wp-slimstat-reports.php:88
3605
  msgid "Recent Pages Not Found"
3606
+ msgstr "Páginas Recientes no encontradas"
3607
 
3608
+ #: ../../admin/view/wp-slimstat-reports.php:89
3609
  msgid "Recent Internal Searches"
3610
  msgstr "Búsquedas Internas Recientes"
3611
 
3612
+ #: ../../admin/view/wp-slimstat-reports.php:90
3613
  #, fuzzy
3614
  msgid "Top Categories"
3615
  msgstr "Principales Páginas de Salida"
3616
 
3617
+ #: ../../admin/view/wp-slimstat-reports.php:91
3618
  msgid "Recent Outbound Links"
3619
  msgstr "Enlaces Salientes Recientes"
3620
 
3621
+ #: ../../admin/view/wp-slimstat-reports.php:92
3622
  #, fuzzy
3623
  msgid "Recent Events"
3624
  msgstr "Contenidos Recientes"
3625
 
3626
+ #: ../../admin/view/wp-slimstat-reports.php:93
3627
  #, fuzzy
3628
  msgid "Top Posts"
3629
  msgstr "Paises que más visitan"
3630
 
3631
+ #: ../../admin/view/wp-slimstat-reports.php:94
3632
  #, fuzzy
3633
  msgid "Top Feeds"
3634
  msgstr "Top Palabras Clave"
3635
 
3636
+ #: ../../admin/view/wp-slimstat-reports.php:95
3637
  #, fuzzy
3638
  msgid "Top Internal Searches"
3639
  msgstr "Búsquedas Internas Recientes"
3640
 
3641
+ #: ../../admin/view/wp-slimstat-reports.php:97
3642
  #, fuzzy
3643
  msgid "Recent Categories"
3644
  msgstr "Paises Recientes"
3645
 
3646
+ #: ../../admin/view/wp-slimstat-reports.php:98
3647
  #, fuzzy
3648
  msgid "Top Pages Not Found"
3649
  msgstr "Principales Páginas de Salida"
3650
 
3651
+ #: ../../admin/view/wp-slimstat-reports.php:100
3652
  #, fuzzy
3653
  msgid "Top Authors"
3654
  msgstr "Autor de la entrada(sección)"
3655
 
3656
+ #: ../../admin/view/wp-slimstat-reports.php:101
3657
  #, fuzzy
3658
  msgid "Top Tags"
3659
  msgstr "Principales Páginas de Salida"
3660
 
3661
+ #: ../../admin/view/wp-slimstat-reports.php:102
3662
  msgid "Recent Downloads"
3663
  msgstr "Descargas Recientes"
3664
 
3665
+ #: ../../admin/view/wp-slimstat-reports.php:103
3666
  msgid "Top Outbound Links and Downloads"
3667
+ msgstr "Los mejores enlaces y descargas hacia afuera"
3668
 
3669
+ #: ../../admin/view/wp-slimstat-reports.php:104
3670
  msgid "Your Website"
3671
+ msgstr "Su sitio web"
3672
 
3673
+ #: ../../admin/view/wp-slimstat-reports.php:106
3674
  msgid "Activity Log"
3675
+ msgstr "Bitácora de actividades"
3676
 
3677
+ #: ../../admin/view/wp-slimstat-reports.php:222
3678
  msgid "Chart controls"
3679
+ msgstr "Controles de gráfica"
3680
 
3681
+ #: ../../admin/view/wp-slimstat-reports.php:222
3682
  msgid "Use your mouse wheel to zoom in and out"
3683
+ msgstr "Use su ratón para acercarse y alejarse"
3684
 
3685
+ #: ../../admin/view/wp-slimstat-reports.php:222
3686
  msgid "While zooming in, drag the chart to move to a different area"
3687
+ msgstr "Al acercarse, arrastre la gráfica para mverla a otra área"
3688
 
3689
+ #: ../../admin/view/wp-slimstat-reports.php:222
3690
  msgid "Double click on an empty region to reset the zoom level"
3691
  msgstr ""
3692
+ "Haga doble clic en una región vacía para resetear el nivel de acercamiento"
3693
 
3694
+ #: ../../admin/view/wp-slimstat-reports.php:223
3695
  msgid ""
3696
  "Click on a data point to display the activity chart for each hour of that day"
3697
  msgstr ""
3698
+ "Haga clic en un punto de datos para mostrar la gráfica de actividades para "
3699
+ "cada hora de ese día"
3700
 
3701
+ #: ../../admin/view/wp-slimstat-reports.php:256
3702
  msgid "src"
3703
+ msgstr "Src"
3704
 
3705
+ #: ../../admin/view/wp-slimstat-reports.php:257
3706
  msgid "serp"
3707
+ msgstr "Serp"
3708
 
3709
+ #: ../../admin/view/wp-slimstat-reports.php:262
3710
  msgid "Go to the corresponding search engine result page"
3711
+ msgstr "Vaya a la página de resultados de motor de búsqueda correspondiente"
3712
 
3713
+ #: ../../admin/view/wp-slimstat-reports.php:265
3714
  msgid "Go to the referring page"
3715
+ msgstr "Vaya a la página de referencia"
3716
 
3717
+ #: ../../admin/view/wp-slimstat-reports.php:288
3718
  #, fuzzy
3719
  msgid "Remove filter for"
3720
  msgstr "Seleccionar filtro"
3721
 
3722
+ #: ../../admin/view/wp-slimstat-reports.php:295
3723
  msgid "Reset All"
3724
+ msgstr "Resetear todos"
3725
 
3726
+ #: ../../admin/view/wp-slimstat-reports.php:298
3727
  msgid "Current filters:"
3728
  msgstr "Filtros Actuales:"
3729
 
3730
+ #: ../../admin/view/wp-slimstat-reports.php:302
3731
  msgid "Refresh"
3732
+ msgstr "Refrescar"
3733
 
3734
+ #: ../../admin/view/wp-slimstat-reports.php:339
3735
  #, php-format
3736
  msgid "Results %s - %s of %s"
3737
+ msgstr "Resultados %s - %s de %s"
3738
 
3739
+ #: ../../admin/view/wp-slimstat-reports.php:341
3740
  msgid "Refresh in"
3741
+ msgstr "Refrescar en"
3742
 
3743
+ #: ../../admin/view/wp-slimstat-reports.php:363
3744
+ #: ../../admin/view/wp-slimstat-reports.php:375
3745
  #, fuzzy, php-format
3746
  msgid "Daily %s"
3747
  msgstr "Paginas visitadas"
3748
 
3749
+ #: ../../admin/view/wp-slimstat-reports.php:366
3750
  #, php-format
3751
  msgid "%s Minute by Minute"
3752
+ msgstr "%s Minuto a Minuto"
3753
 
3754
+ #: ../../admin/view/wp-slimstat-reports.php:369
3755
  #, fuzzy, php-format
3756
  msgid "Hourly %s"
3757
  msgstr "Paginas visitadas"
3758
 
3759
+ #: ../../admin/view/wp-slimstat-reports.php:372
3760
  #, fuzzy, php-format
3761
  msgid "Monthly %s"
3762
  msgstr "Mes"
3763
 
3764
+ #: ../../admin/view/wp-slimstat-reports.php:452
3765
  #, fuzzy
3766
  msgid "Category ID"
3767
  msgstr "ID de la entrada(sección) de la Categoria"
3768
 
3769
+ #: ../../admin/view/wp-slimstat-reports.php:485
3770
  msgid "OS Code"
3771
+ msgstr "Código OS"
3772
 
3773
+ #: ../../admin/view/wp-slimstat-reports.php:495
3774
  #, fuzzy
3775
  msgid "Referrer"
3776
  msgstr "Referido"
3777
 
3778
+ #: ../../admin/view/wp-slimstat-reports.php:519
3779
+ #: ../../admin/view/wp-slimstat-reports.php:796
3780
+ #: ../../admin/view/wp-slimstat-reports.php:805
3781
+ #: ../../admin/view/wp-slimstat-reports.php:811
3782
+ #: ../../admin/view/wp-slimstat-reports.php:817
3783
+ #: ../../admin/view/wp-slimstat-reports.php:823
3784
+ #: ../../admin/view/wp-slimstat-reports.php:829
3785
+ #: ../../admin/view/wp-slimstat-reports.php:835
3786
+ #: ../../admin/view/wp-slimstat-reports.php:841
3787
  #, fuzzy
3788
  msgid "Hits"
3789
  msgstr "Visitas"
3790
 
3791
+ #: ../../admin/view/wp-slimstat-reports.php:687
3792
  #, fuzzy
3793
  msgid "Search for"
3794
  msgstr "Sumario de"
3795
 
3796
+ #: ../../admin/view/wp-slimstat-reports.php:718
3797
+ #: ../../admin/view/wp-slimstat-reports.php:728
3798
  #, fuzzy
3799
  msgid "Source"
3800
  msgstr "Porcentaje de Abandonos"
3801
 
3802
+ #: ../../admin/view/wp-slimstat-reports.php:720
3803
  msgid "Keywords"
3804
  msgstr "Palabras clave"
3805
 
3806
+ #: ../../admin/view/wp-slimstat-reports.php:728
3807
  #, php-format
3808
  msgid "Filter results where resource equals %s"
3809
+ msgstr "Filtrar resultados donde la fuente sea %s"
3810
 
3811
+ #: ../../admin/view/wp-slimstat-reports.php:742
3812
  #, fuzzy
3813
  msgid "Total Pageviews"
3814
  msgstr "Paginas visitadas"
3815
 
3816
+ #: ../../admin/view/wp-slimstat-reports.php:743
3817
  #, fuzzy
3818
  msgid "DB Size"
3819
  msgstr "Tamaño de los Datos"
3820
 
3821
+ #: ../../admin/view/wp-slimstat-reports.php:744
3822
  msgid "Tracking Active"
3823
  msgstr "Seguimiento Activo"
3824
 
3825
+ #: ../../admin/view/wp-slimstat-reports.php:745
3826
  msgid "Javascript Mode"
3827
+ msgstr "Modo Javascript"
3828
 
3829
+ #: ../../admin/view/wp-slimstat-reports.php:746
3830
  msgid "Tracking Browser Caps"
3831
+ msgstr "Caps para rastreo de Navegador"
3832
 
3833
+ #: ../../admin/view/wp-slimstat-reports.php:747
3834
  msgid "Auto purge"
3835
  msgstr "Autopurgar"
3836
 
3837
+ #: ../../admin/view/wp-slimstat-reports.php:748
3838
  #, fuzzy
3839
  msgid "Oldest pageview"
3840
  msgstr "Visita más larga"
3841
 
3842
+ #: ../../admin/view/wp-slimstat-reports.php:748
3843
  #, fuzzy
3844
  msgid "No visits"
3845
  msgstr "Visitantes"
3846
 
3847
+ #: ../../admin/view/wp-slimstat-reports.php:758
3848
+ #: ../../admin/view/wp-slimstat-reports.php:860
3849
  msgid ""
3850
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
3851
  "time the tracking code is executed."
3852
  msgstr ""
3853
+ "Una petición para cargar un archivo HTML único. WP SlimStat registra un "
3854
+ "\"pageview\" cada vez que se ejecuta el código de rastreo."
3855
 
3856
+ #: ../../admin/view/wp-slimstat-reports.php:760
3857
  msgid "How many pages have been visited on average during the current period."
3858
+ msgstr "Cuántas páginas se han visitado en promedio durante el período actual."
3859
 
3860
+ #: ../../admin/view/wp-slimstat-reports.php:761
3861
+ #, fuzzy
3862
+ msgid "Average Pageviews"
3863
  msgstr "Promedio Paginas Visitadas"
3864
 
3865
+ #: ../../admin/view/wp-slimstat-reports.php:762
3866
  msgid ""
3867
  "Visitors who landed on your site after searching for a keyword on Google, "
3868
  "Yahoo, etc."
3869
  msgstr ""
3870
+ "Visitantes que han llegado a su sitio después de buscar una palabra clave en "
3871
+ "Google, yahoo, etc."
3872
 
3873
+ #: ../../admin/view/wp-slimstat-reports.php:763
3874
  #, fuzzy
3875
  msgid "From Search Results"
3876
  msgstr "Principales Recursos"
3877
 
3878
+ #: ../../admin/view/wp-slimstat-reports.php:764
3879
  msgid ""
3880
  "Used to differentiate between multiple requests to download a file from one "
3881
  "internet address (IP) and requests originating from many distinct addresses"
3882
  msgstr ""
3883
+ "Usado para diferenciar entre peticiones múltiples para descargar un archivo "
3884
+ "desde una dirección de internet (IP) y peticiones que se originan en muchas "
3885
+ "diferentes direcciones"
3886
 
3887
+ #: ../../admin/view/wp-slimstat-reports.php:765
3888
+ #: ../../admin/view/wp-slimstat-reports.php:780
3889
+ #: ../../admin/view/wp-slimstat-reports.php:1145
3890
+ #: ../../admin/view/wp-slimstat-reports.php:1149
3891
+ #: ../../admin/view/wp-slimstat-reports.php:1153
3892
  msgid "Unique IPs"
3893
  msgstr "IPs Unicas"
3894
 
3895
+ #: ../../admin/view/wp-slimstat-reports.php:766
3896
  msgid "Last 5 minutes"
3897
+ msgstr "Últimos 5 minutos"
3898
 
3899
+ #: ../../admin/view/wp-slimstat-reports.php:767
3900
  msgid "Last 30 minutes"
3901
+ msgstr "Últimos 30 minutos"
3902
 
3903
+ #: ../../admin/view/wp-slimstat-reports.php:777
3904
  msgid ""
3905
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3906
  "multiple times if they perform multiple visits."
3907
  msgstr ""
3908
+ "Una visita es una sesión de cuando mucho 30 minutos.Los visitantes de "
3909
+ "regreso se cuentan múltiples veces si llevan a cabo múltiples visitas."
3910
 
3911
+ #: ../../admin/view/wp-slimstat-reports.php:778
3912
  msgid "Human visits"
3913
  msgstr "Visitas humanas"
3914
 
3915
+ #: ../../admin/view/wp-slimstat-reports.php:779
3916
  msgid "It includes only traffic generated by human visitors."
3917
+ msgstr "Incluye sólo tráfico generado por visitantes humanos."
3918
 
3919
+ #: ../../admin/view/wp-slimstat-reports.php:781
3920
+ #: ../../admin/view/wp-slimstat-reports.php:872
3921
  msgid ""
3922
  "Percentage of single-page visits, i.e. visits in which the person left your "
3923
  "site from the entrance page."
3924
  msgstr ""
3925
+ "Porcentaje de visitas de una página, p. ej. visitas en las cuales la persona "
3926
+ "dejó su sitio desde la página de entrada."
3927
 
3928
+ #: ../../admin/view/wp-slimstat-reports.php:782
3929
  msgid "Bounce rate"
3930
  msgstr "Porcentaje de Abandonos"
3931
 
3932
+ #: ../../admin/view/wp-slimstat-reports.php:783
3933
  msgid "Visitors who had previously left a comment on your blog."
3934
+ msgstr "Visitantes que han dejado un comentario en su blog previamente."
3935
 
3936
+ #: ../../admin/view/wp-slimstat-reports.php:784
3937
  #, fuzzy
3938
  msgid "Known visitors"
3939
  msgstr "Palabras clave recientes"
3940
 
3941
+ #: ../../admin/view/wp-slimstat-reports.php:785
3942
  msgid "Human users who visited your site only once."
3943
+ msgstr "Visitantes humanos que visitaron su sitio sólo una vez."
3944
 
3945
+ #: ../../admin/view/wp-slimstat-reports.php:786
3946
  #, fuzzy
3947
  msgid "New visitors"
3948
  msgstr "Visitantes"
3949
 
3950
+ #: ../../admin/view/wp-slimstat-reports.php:787
3951
  msgid "Bots"
3952
  msgstr "Motores de Búsqueda"
3953
 
3954
+ #: ../../admin/view/wp-slimstat-reports.php:788
3955
  msgid "Pages per visit"
3956
  msgstr "Páginas por visita"
3957
 
3958
+ #: ../../admin/view/wp-slimstat-reports.php:789
3959
+ #: ../../admin/view/wp-slimstat-reports.php:1158
3960
  msgid "Longest visit"
3961
  msgstr "Visita más larga"
3962
 
3963
+ #: ../../admin/view/wp-slimstat-reports.php:789
3964
  #, fuzzy
3965
  msgid "hits"
3966
  msgstr "Visitas"
3967
 
3968
+ #: ../../admin/view/wp-slimstat-reports.php:807
3969
  msgid "0 - 30 seconds"
3970
+ msgstr "0 - 30 segundos"
3971
 
3972
+ #: ../../admin/view/wp-slimstat-reports.php:813
3973
  msgid "31 - 60 seconds"
3974
+ msgstr "31 - 60 segundos"
3975
 
3976
+ #: ../../admin/view/wp-slimstat-reports.php:819
3977
  msgid "1 - 3 minutes"
3978
+ msgstr "1 - 3 minutos"
3979
 
3980
+ #: ../../admin/view/wp-slimstat-reports.php:825
3981
  msgid "3 - 5 minutes"
3982
+ msgstr "3 - 5 minutos"
3983
 
3984
+ #: ../../admin/view/wp-slimstat-reports.php:831
3985
  msgid "5 - 7 minutes"
3986
+ msgstr "5 - 7 minutos"
3987
 
3988
+ #: ../../admin/view/wp-slimstat-reports.php:837
3989
  msgid "7 - 10 minutes"
3990
+ msgstr "7 - 10 minutos"
3991
 
3992
+ #: ../../admin/view/wp-slimstat-reports.php:843
3993
  msgid "More than 10 minutes"
3994
+ msgstr "Más de 10 minutos"
3995
 
3996
+ #: ../../admin/view/wp-slimstat-reports.php:852
3997
  #, fuzzy
3998
  msgid "Average time on site"
3999
  msgstr "Promedio de páginas vistas por horas"
4000
 
4001
+ #: ../../admin/view/wp-slimstat-reports.php:862
4002
  msgid ""
4003
  "A referrer (or referring site) is the site that a visitor previously visited "
4004
  "before following a link to your site."
4005
  msgstr ""
4006
+ "Un sitio referente (o que refiere) es el sitio al cual el visitante tuvo "
4007
+ "acceso antes de seguir un enlace a su sitio."
4008
 
4009
+ #: ../../admin/view/wp-slimstat-reports.php:863
4010
  #, fuzzy
4011
  msgid "Unique Referrers"
4012
  msgstr "Referidos Únicos"
4013
 
4014
+ #: ../../admin/view/wp-slimstat-reports.php:864
4015
  msgid ""
4016
  "Visitors who visited the site by typing the URL directly into their browser. "
4017
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
4018
  "their bookmarks/favorites, untagged links within emails, or links from "
4019
  "documents that don't include tracking variables."
4020
  msgstr ""
4021
+ "Visitantes que visitaron el sitio escribiendo la URL directamente en el "
4022
+ "navegador. <em>Directo</em> también pueden referir a los visitantes que "
4023
+ "hicieron clic en sus favoritos, usaron etiquetas de enlaces en emails, o "
4024
+ "enlaces de documentos que no incluyen variables de rastreo."
4025
 
4026
+ #: ../../admin/view/wp-slimstat-reports.php:865
4027
  #, fuzzy
4028
  msgid "Direct Pageviews"
4029
  msgstr "Paginas visitadas"
4030
 
4031
+ #: ../../admin/view/wp-slimstat-reports.php:866
4032
  msgid ""
4033
  "Visitors who came to your site via searches on Google or some other search "
4034
  "engine."
4035
  msgstr ""
4036
+ "Visitantes que llegaron a su sitio después de buscar una palabra clave en "
4037
+ "Google, yahoo, etc."
4038
 
4039
+ #: ../../admin/view/wp-slimstat-reports.php:867
4040
  msgid "From a search result"
4041
+ msgstr "Desde un resultado de búsqueda"
4042
 
4043
+ #: ../../admin/view/wp-slimstat-reports.php:868
4044
  msgid ""
4045
  "The first page that a user views during a session. This is also known as the "
4046
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
4047
  "Space,' and they land on your home page, it gets counted (for that visit) as "
4048
  "a landing page."
4049
  msgstr ""
4050
+ "La primera página que el usuario ve en una sesión. También se conoce como "
4051
+ "<em>página de entrada</em>. Por ejemplo, si buscan “Espacio de oficina en "
4052
+ "Brooklyn,” y llegan a su página de inicio, se cuenta (para esa visita) como "
4053
+ "página de entrada."
4054
 
4055
+ #: ../../admin/view/wp-slimstat-reports.php:869
4056
  #, fuzzy
4057
  msgid "Unique Landing Pages"
4058
  msgstr "IPs Unicas"
4059
 
4060
+ #: ../../admin/view/wp-slimstat-reports.php:870
4061
  msgid "Number of single-page visits to your site over the selected period."
4062
+ msgstr "Número de visitas a una página en el período seleccionado."
4063
 
4064
+ #: ../../admin/view/wp-slimstat-reports.php:871
4065
  #, fuzzy
4066
  msgid "Bounce Pages"
4067
  msgstr "Porcentaje de Abandonos"
4068
 
4069
+ #: ../../admin/view/wp-slimstat-reports.php:873
4070
  #, fuzzy
4071
  msgid "New Visitors Rate"
4072
  msgstr "Visitantes"
4073
 
4074
+ #: ../../admin/view/wp-slimstat-reports.php:874
4075
  msgid ""
4076
  "Visitors who visited the site in the last 5 minutes coming from a search "
4077
  "engine."
4078
  msgstr ""
4079
+ "Visitantes que visitaron el sitio en los últimos 5 minutos y vienen de un "
4080
+ "motor de búsqueda."
4081
 
4082
+ #: ../../admin/view/wp-slimstat-reports.php:875
4083
  #, fuzzy
4084
  msgid "Currently from search engines"
4085
  msgstr "Motores de Búsqueda"
4086
 
4087
+ #: ../../admin/view/wp-slimstat-reports.php:943
4088
  msgid "Number of pages in your site included in Google's index."
4089
+ msgstr "Número de páginas en su sitio incluidas en el índice de Google."
4090
 
4091
+ #: ../../admin/view/wp-slimstat-reports.php:944
4092
  msgid "Google Index"
4093
+ msgstr "Indice de Google"
4094
 
4095
+ #: ../../admin/view/wp-slimstat-reports.php:945
4096
  msgid "Number of pages, according to Google, that link back to your site."
4097
  msgstr ""
4098
+ "Número de páginas, de acuerdo a Google, que enlazan de regreso a su sitio."
4099
 
4100
+ #: ../../admin/view/wp-slimstat-reports.php:946
4101
  msgid "Google Backlinks"
4102
+ msgstr "Backlinks Google"
4103
 
4104
+ #: ../../admin/view/wp-slimstat-reports.php:947
4105
  msgid ""
4106
  "How many times the Facebook Like button has been approximately clicked on "
4107
  "your site."
4108
  msgstr ""
4109
+ "Aproximadamente cuántas veces se ha hecho clic en el botón “Me Gusta” de "
4110
+ "Facebook en su sitio."
4111
 
4112
+ #: ../../admin/view/wp-slimstat-reports.php:948
4113
  msgid "Facebook Likes"
4114
+ msgstr "Me Gusta de Facebook"
4115
 
4116
+ #: ../../admin/view/wp-slimstat-reports.php:949
4117
  msgid ""
4118
  "How many times your site has been shared by someone on the social network."
4119
  msgstr ""
4120
+ "Cuántas veces ha sido compartido su sitio con alguien en las redes sociales."
4121
 
4122
+ #: ../../admin/view/wp-slimstat-reports.php:950
4123
  msgid "Facebook Shares"
4124
+ msgstr "Compartidas en Facebook"
4125
 
4126
+ #: ../../admin/view/wp-slimstat-reports.php:951
4127
  msgid "How many times links to your website have been clicked on Facebook."
4128
+ msgstr "Cuántas veces se ha hecho clic en enlaces a su sitio en Facebook."
4129
 
4130
+ #: ../../admin/view/wp-slimstat-reports.php:952
4131
  #, fuzzy
4132
  msgid "Facebook Clicks"
4133
  msgstr "Enlaces Salientes Recientes"
4134
 
4135
+ #: ../../admin/view/wp-slimstat-reports.php:953
4136
  msgid ""
4137
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
4138
  "traffic data."
4139
  msgstr ""
4140
+ "Alexa es una compaañ+ía subsidiaria de Amazon.com que proporciona "
4141
+ "información de tráfico de datos."
4142
 
4143
+ #: ../../admin/view/wp-slimstat-reports.php:954
4144
  msgid "Alexa World Rank"
4145
+ msgstr "Clasificación Mundial Alexa."
4146
 
4147
+ #: ../../admin/view/wp-slimstat-reports.php:955
4148
  msgid "Alexa Country Rank"
4149
+ msgstr "Clasificación por país Alexa"
4150
 
4151
+ #: ../../admin/view/wp-slimstat-reports.php:956
4152
  msgid "Alexa Popularity"
4153
+ msgstr "Popularidad Alexa"
4154
 
4155
+ #: ../../admin/view/wp-slimstat-reports.php:973
4156
  msgid "Bing Test"
4157
+ msgstr "Prueba de Bing"
4158
 
4159
+ #: ../../admin/view/wp-slimstat-reports.php:974
4160
  msgid "AntiVirus Scan"
4161
+ msgstr "Examen antivirus"
4162
 
4163
+ #: ../../admin/view/wp-slimstat-reports.php:975
4164
  msgid "Google Bot Test"
4165
+ msgstr "Prueba Bot de Google"
4166
 
4167
+ #: ../../admin/view/wp-slimstat-reports.php:976
4168
  msgid "Scan for Hostile Strings"
4169
+ msgstr "Examinar por Cadenas Hostiles"
4170
 
4171
+ #: ../../admin/view/wp-slimstat-reports.php:977
4172
  msgid "Generic Web Bot test"
4173
+ msgstr "Prueba Bot Web genérica"
4174
 
4175
+ #: ../../admin/view/wp-slimstat-reports.php:978
4176
  msgid "Google Safe Browsing List"
4177
+ msgstr "Lista de navegación segura Google"
4178
 
4179
+ #: ../../admin/view/wp-slimstat-reports.php:979
4180
  msgid "Hostile External Links"
4181
+ msgstr "Enlaces Externos Hostiles"
4182
 
4183
+ #: ../../admin/view/wp-slimstat-reports.php:980
4184
  msgid "Other Treats"
4185
+ msgstr "Otras amenazas"
4186
 
4187
+ #: ../../admin/view/wp-slimstat-reports.php:1006
4188
  msgid "Passed"
4189
+ msgstr "Pasó"
4190
 
4191
+ #: ../../admin/view/wp-slimstat-reports.php:1006
4192
  msgid "At Risk"
4193
+ msgstr "En riesgo"
4194
 
4195
+ #: ../../admin/view/wp-slimstat-reports.php:1009
4196
  msgid "Timed Out"
4197
+ msgstr "Se terminó el tiempo"
4198
 
4199
  # Unknown
4200
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4201
  msgid "c-xx"
4202
  msgstr "Unknown"
4203
 
4204
  # Afghanistan
4205
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4206
  msgid "c-af"
4207
  msgstr "Afghanistan"
4208
 
4209
  # Åland Islands
4210
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4211
  msgid "c-ax"
4212
  msgstr "Åland Islands"
4213
 
4214
  # Albania
4215
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4216
  msgid "c-al"
4217
  msgstr "Albania"
4218
 
4219
  # Algeria
4220
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4221
  msgid "c-dz"
4222
  msgstr "Algeria"
4223
 
4224
  # Andorra
4225
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4226
  msgid "c-ad"
4227
  msgstr "Andorra"
4228
 
4229
  # Angola
4230
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4231
  msgid "c-ao"
4232
  msgstr "Angola"
4233
 
4234
  # Anguilla
4235
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4236
  msgid "c-ai"
4237
  msgstr "Anguilla"
4238
 
4239
  # Antigua and Barbuda
4240
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4241
  msgid "c-ag"
4242
  msgstr "Antigua and Barbuda"
4243
 
4244
  # Argentina
4245
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4246
  msgid "c-ar"
4247
  msgstr "Argentina"
4248
 
4249
  # Armenia
4250
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4251
  msgid "c-am"
4252
  msgstr "Armenia"
4253
 
4254
  # Aruba
4255
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4256
  msgid "c-aw"
4257
  msgstr "Aruba"
4258
 
4259
  # Australia
4260
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4261
  msgid "c-au"
4262
  msgstr "Australia"
4263
 
4264
  # Austria
4265
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4266
  msgid "c-at"
4267
  msgstr "Austria"
4268
 
4269
  # Azerbaijan
4270
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4271
  msgid "c-az"
4272
  msgstr "Azerbaijan"
4273
 
4274
  # Bahamas
4275
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4276
  msgid "c-bs"
4277
  msgstr "Bahamas"
4278
 
4279
  # Bahrain
4280
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4281
  msgid "c-bh"
4282
  msgstr "Bahrain"
4283
 
4284
  # Bangladesh
4285
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4286
  msgid "c-bd"
4287
  msgstr "Bangladesh"
4288
 
4289
  # Barbados
4290
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4291
  msgid "c-bb"
4292
  msgstr "Barbados"
4293
 
4294
  # Belarus
4295
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4296
  msgid "c-by"
4297
  msgstr "Belarus"
4298
 
4299
  # Belgium
4300
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4301
  msgid "c-be"
4302
  msgstr "Belgium"
4303
 
4304
  # Belize
4305
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4306
  msgid "c-bz"
4307
  msgstr "Belize"
4308
 
4309
  # Benin
4310
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4311
  msgid "c-bj"
4312
  msgstr "Benin"
4313
 
4314
  # Bermuda
4315
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4316
  msgid "c-bm"
4317
  msgstr "Bermuda"
4318
 
4319
  # Bhutan
4320
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4321
  msgid "c-bt"
4322
  msgstr "Bhutan"
4323
 
4324
  # Bolivia
4325
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4326
  msgid "c-bo"
4327
  msgstr "Bolivia"
4328
 
4329
  # Bosnia and Herzegovina
4330
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4331
  msgid "c-ba"
4332
  msgstr "Bosnia and Herzegovina"
4333
 
4334
  # Botswana
4335
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4336
  msgid "c-bw"
4337
  msgstr "Botswana"
4338
 
4339
  # Brazil
4340
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4341
  msgid "c-br"
4342
  msgstr "Brazil"
4343
 
4344
  # Brunei Darussalam
4345
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4346
  msgid "c-bn"
4347
  msgstr "Brunei Darussalam"
4348
 
4349
  # Bulgaria
4350
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4351
  msgid "c-bg"
4352
  msgstr "Bulgaria"
4353
 
4354
  # Burkina Faso
4355
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4356
  msgid "c-bf"
4357
  msgstr "Burkina Faso"
4358
 
4359
  # Burundi
4360
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4361
  msgid "c-bi"
4362
  msgstr "Burundi"
4363
 
4364
  # Cambodia
4365
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4366
  msgid "c-kh"
4367
  msgstr "Cambodia"
4368
 
4369
  # Cameroon
4370
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4371
  msgid "c-cm"
4372
  msgstr "Cameroon"
4373
 
4374
  # Canada
4375
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4376
  msgid "c-ca"
4377
  msgstr "Canada"
4378
 
4379
  # Cape Verde
4380
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4381
  msgid "c-cv"
4382
  msgstr "Cape Verde"
4383
 
4384
  # Cayman Islands
4385
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4386
  msgid "c-ky"
4387
  msgstr "Cayman Islands"
4388
 
4389
  # Central African Republic
4390
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4391
  msgid "c-cf"
4392
  msgstr "Central African Republic"
4393
 
4394
  # Chad
4395
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4396
  msgid "c-td"
4397
  msgstr "Chad"
4398
 
4399
  # Chile
4400
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4401
  msgid "c-cl"
4402
  msgstr "Chile"
4403
 
4404
  # China
4405
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4406
  msgid "c-cn"
4407
  msgstr "China"
4408
 
4409
  # Colombia
4410
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4411
  msgid "c-co"
4412
  msgstr "Colombia"
4413
 
4414
  # Comoros
4415
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4416
  msgid "c-km"
4417
  msgstr "Comoros"
4418
 
4419
  # Congo
4420
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4421
  msgid "c-cg"
4422
  msgstr "Congo"
4423
 
4424
  # The Democratic Republic of the Congo
4425
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4426
  msgid "c-cd"
4427
  msgstr "The Democratic Republic of the Congo"
4428
 
4429
  # Costa Rica
4430
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4431
  msgid "c-cr"
4432
  msgstr "Costa Rica"
4433
 
4434
  # Côte d'Ivoire
4435
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4436
  msgid "c-ci"
4437
  msgstr "Côte d'Ivoire"
4438
 
4439
  # Croatia
4440
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4441
  msgid "c-hr"
4442
  msgstr "Croatia"
4443
 
4444
  # Cuba
4445
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4446
  msgid "c-cu"
4447
  msgstr "Cuba"
4448
 
4449
  # Cyprus
4450
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4451
  msgid "c-cy"
4452
  msgstr "Cyprus"
4453
 
4454
  # Czech Republic
4455
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4456
  msgid "c-cz"
4457
  msgstr "Czech Republic"
4458
 
4459
  # Denmark
4460
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4461
  msgid "c-dk"
4462
  msgstr "Denmark"
4463
 
4464
  # Djibouti
4465
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4466
  msgid "c-dj"
4467
  msgstr "Djibouti"
4468
 
4469
  # Dominica
4470
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4471
  msgid "c-dm"
4472
  msgstr "Dominica"
4473
 
4474
  # Dominican Republic
4475
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4476
  msgid "c-do"
4477
  msgstr "Dominican Republic"
4478
 
4479
  # Ecuador
4480
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4481
  msgid "c-ec"
4482
  msgstr "Ecuador"
4483
 
4484
  # Egypt
4485
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4486
  msgid "c-eg"
4487
  msgstr "Egypt"
4488
 
4489
  # El Salvador
4490
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4491
  msgid "c-sv"
4492
  msgstr "El Salvador"
4493
 
4494
  # Equatorial Guinea
4495
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4496
  msgid "c-gq"
4497
  msgstr "Equatorial Guinea"
4498
 
4499
  # Eritrea
4500
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4501
  msgid "c-er"
4502
  msgstr "Eritrea"
4503
 
4504
  # Estonia
4505
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4506
  msgid "c-ee"
4507
  msgstr "Estonia"
4508
 
4509
  # Ethiopia
4510
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4511
  msgid "c-et"
4512
  msgstr "Ethiopia"
4513
 
4514
  # Faroe Islands
4515
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4516
  msgid "c-fo"
4517
  msgstr "Faroe Islands"
4518
 
4519
  # Falkland Islands (Malvinas)
4520
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4521
  msgid "c-fk"
4522
  msgstr "Falkland Islands (Malvinas)"
4523
 
4524
  # Fiji
4525
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4526
  msgid "c-fj"
4527
  msgstr "Fiji"
4528
 
4529
  # Finland
4530
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4531
  msgid "c-fi"
4532
  msgstr "Finland"
4533
 
4534
  # France
4535
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4536
  msgid "c-fr"
4537
  msgstr "France"
4538
 
4539
  # French Guiana
4540
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4541
  msgid "c-gf"
4542
  msgstr "French Guiana"
4543
 
4544
  # Gabon
4545
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4546
  msgid "c-ga"
4547
  msgstr "Gabon"
4548
 
4549
  # Gambia
4550
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4551
  msgid "c-gm"
4552
  msgstr "Gambia"
4553
 
4554
  # Georgia
4555
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4556
  msgid "c-ge"
4557
  msgstr "Georgia"
4558
 
4559
  # Germany
4560
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4561
  msgid "c-de"
4562
  msgstr "Germany"
4563
 
4564
  # Ghana
4565
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4566
  msgid "c-gh"
4567
  msgstr "Ghana"
4568
 
4569
  # Greece
4570
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4571
  msgid "c-gr"
4572
  msgstr "Greece"
4573
 
4574
  # Greenland
4575
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4576
  msgid "c-gl"
4577
  msgstr "Greenland"
4578
 
4579
  # Grenada
4580
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4581
  msgid "c-gd"
4582
  msgstr "Grenada"
4583
 
4584
  # Guadeloupe
4585
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4586
  msgid "c-gp"
4587
  msgstr "Guadeloupe"
4588
 
4589
  # Guatemala
4590
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4591
  msgid "c-gt"
4592
  msgstr "Guatemala"
4593
 
4594
  # Guinea
4595
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4596
  msgid "c-gn"
4597
  msgstr "Guinea"
4598
 
4599
  # Guinea-Bissau
4600
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4601
  msgid "c-gw"
4602
  msgstr "Guinea-Bissau"
4603
 
4604
  # Guyana
4605
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4606
  msgid "c-gy"
4607
  msgstr "Guyana"
4608
 
4609
  # Haiti
4610
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4611
  msgid "c-ht"
4612
  msgstr "Haiti"
4613
 
4614
  # Honduras
4615
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4616
  msgid "c-hn"
4617
  msgstr "Honduras"
4618
 
4619
  # Hong Kong
4620
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4621
  msgid "c-hk"
4622
  msgstr "Hong Kong"
4623
 
4624
  # Hungary
4625
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4626
  msgid "c-hu"
4627
  msgstr "Hungary"
4628
 
4629
  # Iceland
4630
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4631
  msgid "c-is"
4632
  msgstr "Iceland"
4633
 
4634
  # India
4635
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4636
  msgid "c-in"
4637
  msgstr "India"
4638
 
4639
  # Indonesia
4640
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4641
  msgid "c-id"
4642
  msgstr "Indonesia"
4643
 
4644
  # Islamic Republic of Iran
4645
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4646
  msgid "c-ir"
4647
  msgstr "Islamic Republic of Iran"
4648
 
4649
  # Iraq
4650
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4651
  msgid "c-iq"
4652
  msgstr "Iraq"
4653
 
4654
  # Ireland
4655
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4656
  msgid "c-ie"
4657
  msgstr "Ireland"
4658
 
4659
  # Israel
4660
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4661
  msgid "c-il"
4662
  msgstr "Israel"
4663
 
4664
  # Italy
4665
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4666
  msgid "c-it"
4667
  msgstr "Italy"
4668
 
4669
  # Jamaica
4670
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4671
  msgid "c-jm"
4672
  msgstr "Jamaica"
4673
 
4674
  # Japan
4675
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4676
  msgid "c-jp"
4677
  msgstr "Japan"
4678
 
4679
  # Jordan
4680
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4681
  msgid "c-jo"
4682
  msgstr "Jordan"
4683
 
4684
  # Kazakhstan
4685
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4686
  msgid "c-kz"
4687
  msgstr "Kazakhstan"
4688
 
4689
  # Kenya
4690
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4691
  msgid "c-ke"
4692
  msgstr "Kenya"
4693
 
4694
  # Nauru
4695
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4696
  msgid "c-nr"
4697
  msgstr "Nauru"
4698
 
4699
  # Democratic People's Republic of Korea
4700
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4701
  msgid "c-kp"
4702
  msgstr "Democratic People's Republic of Korea"
4703
 
4704
  # Republic of Korea
4705
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4706
  msgid "c-kr"
4707
  msgstr "Republic of Korea"
4708
 
4709
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4710
  msgid "c-kv"
4711
+ msgstr "c-kv"
4712
 
4713
  # Kuwait
4714
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4715
  msgid "c-kw"
4716
  msgstr "Kuwait"
4717
 
4718
  # Kyrgyzstan
4719
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4720
  msgid "c-kg"
4721
  msgstr "Kyrgyzstan"
4722
 
4723
  # Lao People's Democratic Republic
4724
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4725
  msgid "c-la"
4726
  msgstr "Lao People's Democratic Republic"
4727
 
4728
  # Latvia
4729
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4730
  msgid "c-lv"
4731
  msgstr "Latvia"
4732
 
4733
  # Lebanon
4734
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4735
  msgid "c-lb"
4736
  msgstr "Lebanon"
4737
 
4738
  # Lesotho
4739
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4740
  msgid "c-ls"
4741
  msgstr "Lesotho"
4742
 
4743
  # Liberia
4744
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4745
  msgid "c-lr"
4746
  msgstr "Liberia"
4747
 
4748
  # Libyan Arab Jamahiriya
4749
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4750
  msgid "c-ly"
4751
  msgstr "Libyan Arab Jamahiriya"
4752
 
4753
  # Liechtenstein
4754
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4755
  msgid "c-li"
4756
  msgstr "Liechtenstein"
4757
 
4758
  # Lithuania
4759
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4760
  msgid "c-lt"
4761
  msgstr "Lithuania"
4762
 
4763
  # Luxembourg
4764
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4765
  msgid "c-lu"
4766
  msgstr "Luxembourg"
4767
 
4768
  # The Former Yugoslav Republic of Macedonia
4769
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4770
  msgid "c-mk"
4771
  msgstr "The Former Yugoslav Republic of Macedonia"
4772
 
4773
  # Madagascar
4774
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4775
  msgid "c-mg"
4776
  msgstr "Madagascar"
4777
 
4778
  # Malawi
4779
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4780
  msgid "c-mw"
4781
  msgstr "Malawi"
4782
 
4783
  # Malaysia
4784
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4785
  msgid "c-my"
4786
  msgstr "Malaysia"
4787
 
4788
  # Mali
4789
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4790
  msgid "c-ml"
4791
  msgstr "Mali"
4792
 
4793
  # Malta
4794
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4795
  msgid "c-mt"
4796
  msgstr "Malta"
4797
 
4798
  # Martinique
4799
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4800
  msgid "c-mq"
4801
  msgstr "Martinique"
4802
 
4803
  # Mauritania
4804
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4805
  msgid "c-mr"
4806
  msgstr "Mauritania"
4807
 
4808
  # Mauritius
4809
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4810
  msgid "c-mu"
4811
  msgstr "Mauritius"
4812
 
4813
  # Mexico
4814
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4815
  msgid "c-mx"
4816
  msgstr "Mexico"
4817
 
4818
  # Moldova
4819
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4820
  msgid "c-md"
4821
  msgstr "Moldova"
4822
 
4823
  # Mongolia
4824
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4825
  msgid "c-mn"
4826
  msgstr "Mongolia"
4827
 
4828
  # Montenegro
4829
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4830
  msgid "c-me"
4831
  msgstr "Montenegro"
4832
 
4833
  # Montserrat
4834
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4835
  msgid "c-ms"
4836
  msgstr "Montserrat"
4837
 
4838
  # Morocco
4839
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4840
  msgid "c-ma"
4841
  msgstr "Morocco"
4842
 
4843
  # Mozambique
4844
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4845
  msgid "c-mz"
4846
  msgstr "Mozambique"
4847
 
4848
  # Myanmar
4849
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4850
  msgid "c-mm"
4851
  msgstr "Myanmar"
4852
 
4853
  # Namibia
4854
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4855
  msgid "c-na"
4856
  msgstr "Namibia"
4857
 
4858
  # Nepal
4859
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4860
  msgid "c-np"
4861
  msgstr "Nepal"
4862
 
4863
  # Netherlands
4864
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4865
  msgid "c-nl"
4866
  msgstr "Netherlands"
4867
 
4868
  # New Caledonia
4869
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4870
  msgid "c-nc"
4871
  msgstr "New Caledonia"
4872
 
4873
  # New Zealand
4874
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4875
  msgid "c-nz"
4876
  msgstr "New Zealand"
4877
 
4878
  # Nicaragua
4879
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4880
  msgid "c-ni"
4881
  msgstr "Nicaragua"
4882
 
4883
  # Niger
4884
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4885
  msgid "c-ne"
4886
  msgstr "Niger"
4887
 
4888
  # Nigeria
4889
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4890
  msgid "c-ng"
4891
  msgstr "Nigeria"
4892
 
4893
  # Norway
4894
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4895
  msgid "c-no"
4896
  msgstr "Norway"
4897
 
4898
  # Oman
4899
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4900
  msgid "c-om"
4901
  msgstr "Oman"
4902
 
4903
  # Pakistan
4904
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4905
  msgid "c-pk"
4906
  msgstr "Pakistan"
4907
 
4908
  # Palau
4909
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4910
  msgid "c-pw"
4911
  msgstr "Palau"
4912
 
4913
  # Occupied Palestinian Territory
4914
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4915
  msgid "c-ps"
4916
  msgstr "Occupied Palestinian Territory"
4917
 
4918
  # Panama
4919
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4920
  msgid "c-pa"
4921
  msgstr "Panama"
4922
 
4923
  # Papua New Guinea
4924
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4925
  msgid "c-pg"
4926
  msgstr "Papua New Guinea"
4927
 
4928
  # Paraguay
4929
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4930
  msgid "c-py"
4931
  msgstr "Paraguay"
4932
 
4933
  # Peru
4934
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4935
  msgid "c-pe"
4936
  msgstr "Peru"
4937
 
4938
  # Philippines
4939
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4940
  msgid "c-ph"
4941
  msgstr "Philippines"
4942
 
4943
  # Poland
4944
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4945
  msgid "c-pl"
4946
  msgstr "Poland"
4947
 
4948
  # Portugal
4949
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4950
  msgid "c-pt"
4951
  msgstr "Portugal"
4952
 
4953
  # Puerto Rico
4954
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4955
  msgid "c-pr"
4956
  msgstr "Puerto Rico"
4957
 
4958
  # Qatar
4959
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4960
  msgid "c-qa"
4961
  msgstr "Qatar"
4962
 
4963
  # Réunion
4964
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4965
  msgid "c-re"
4966
  msgstr "Réunion"
4967
 
4968
  # Romania
4969
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4970
  msgid "c-ro"
4971
  msgstr "Romania"
4972
 
4973
  # Russian Federation
4974
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4975
  msgid "c-ru"
4976
  msgstr "Russian Federation"
4977
 
4978
  # Rwanda
4979
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4980
  msgid "c-rw"
4981
  msgstr "Rwanda"
4982
 
4983
  # Saint Kitts and Nevis
4984
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4985
  msgid "c-kn"
4986
  msgstr "Saint Kitts and Nevis"
4987
 
4988
  # Saint Lucia
4989
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4990
  msgid "c-lc"
4991
  msgstr "Saint Lucia"
4992
 
4993
  # Saint Martin
4994
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4995
  msgid "c-mf"
4996
  msgstr "Saint Martin"
4997
 
4998
  # Saint Vincent and the Grenadines
4999
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5000
  msgid "c-vc"
5001
  msgstr "Saint Vincent and the Grenadines"
5002
 
5003
  # Samoa
5004
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5005
  msgid "c-ws"
5006
  msgstr "Samoa"
5007
 
5008
  # Sao Tome and Principe
5009
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5010
  msgid "c-st"
5011
  msgstr "Sao Tome and Principe"
5012
 
5013
  # Saudi Arabia
5014
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5015
  msgid "c-sa"
5016
  msgstr "Saudi Arabia"
5017
 
5018
  # Senegal
5019
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5020
  msgid "c-sn"
5021
  msgstr "Senegal"
5022
 
5023
  # Serbia
5024
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5025
  msgid "c-rs"
5026
  msgstr "Serbia"
5027
 
5028
  # Sierra Leone
5029
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5030
  msgid "c-sl"
5031
  msgstr "Sierra Leone"
5032
 
5033
  # Singapore
5034
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5035
  msgid "c-sg"
5036
  msgstr "Singapore"
5037
 
5038
  # Slovakia
5039
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5040
  msgid "c-sk"
5041
  msgstr "Slovakia"
5042
 
5043
  # Slovenia
5044
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5045
  msgid "c-si"
5046
  msgstr "Slovenia"
5047
 
5048
  # Solomon Islands
5049
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5050
  msgid "c-sb"
5051
  msgstr "Solomon Islands"
5052
 
5053
  # Somalia
5054
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5055
  msgid "c-so"
5056
  msgstr "Somalia"
5057
 
5058
  # South Africa
5059
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5060
  msgid "c-za"
5061
  msgstr "South Africa"
5062
 
5063
  # South Georgia and the South Sandwich Islands
5064
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5065
  msgid "c-gs"
5066
  msgstr "South Georgia and the South Sandwich Islands"
5067
 
5068
  # Spain
5069
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5070
  msgid "c-es"
5071
  msgstr "Spain"
5072
 
5073
  # Sri Lanka
5074
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5075
  msgid "c-lk"
5076
  msgstr "Sri Lanka"
5077
 
5078
  # Sudan
5079
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5080
  msgid "c-sd"
5081
  msgstr "Sudan"
5082
 
5083
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5084
  msgid "c-ss"
5085
+ msgstr "c-ss"
5086
 
5087
  # Suriname
5088
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5089
  msgid "c-sr"
5090
  msgstr "Suriname"
5091
 
5092
  # Svalbard and Jan Mayen
5093
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5094
  msgid "c-sj"
5095
  msgstr "Svalbard and Jan Mayen"
5096
 
5097
  # Swaziland
5098
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5099
  msgid "c-sz"
5100
  msgstr "Swaziland"
5101
 
5102
  # Sweden
5103
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5104
  msgid "c-se"
5105
  msgstr "Sweden"
5106
 
5107
  # Switzerland
5108
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5109
  msgid "c-ch"
5110
  msgstr "Switzerland"
5111
 
5112
  # Syrian Arab Republic
5113
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5114
  msgid "c-sy"
5115
  msgstr "Syrian Arab Republic"
5116
 
5117
  # Taiwan, Province of China
5118
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5119
  msgid "c-tw"
5120
  msgstr "Taiwan, Province of China"
5121
 
5122
  # Tajikistan
5123
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5124
  msgid "c-tj"
5125
  msgstr "Tajikistan"
5126
 
5127
  # United Republic of Tanzania
5128
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5129
  msgid "c-tz"
5130
  msgstr "United Republic of Tanzania"
5131
 
5132
  # Thailand
5133
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5134
  msgid "c-th"
5135
  msgstr "Thailand"
5136
 
5137
  # Timor-Leste
5138
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5139
  msgid "c-tl"
5140
  msgstr "Timor-Leste"
5141
 
5142
  # Togo
5143
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5144
  msgid "c-tg"
5145
  msgstr "Togo"
5146
 
5147
  # Tonga
5148
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5149
  msgid "c-to"
5150
  msgstr "Tonga"
5151
 
5152
  # Trinidad and Tobago
5153
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5154
  msgid "c-tt"
5155
  msgstr "Trinidad and Tobago"
5156
 
5157
  # Tunisia
5158
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5159
  msgid "c-tn"
5160
  msgstr "Tunisia"
5161
 
5162
  # Turkey
5163
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5164
  msgid "c-tr"
5165
  msgstr "Turkey"
5166
 
5167
  # Turkmenistan
5168
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5169
  msgid "c-tm"
5170
  msgstr "Turkmenistan"
5171
 
5172
  # Turks and Caicos Islands
5173
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5174
  msgid "c-tc"
5175
  msgstr "Turks and Caicos Islands"
5176
 
5177
  # Uganda
5178
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5179
  msgid "c-ug"
5180
  msgstr "Uganda"
5181
 
5182
  # Ukraine
5183
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5184
  msgid "c-ua"
5185
  msgstr "Ukraine"
5186
 
5187
  # United Arab Emirates
5188
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5189
  msgid "c-ae"
5190
  msgstr "United Arab Emirates"
5191
 
5192
  # United Kingdom
5193
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5194
  msgid "c-gb"
5195
  msgstr "United Kingdom"
5196
 
5197
  # United States
5198
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5199
  msgid "c-us"
5200
  msgstr "United States"
5201
 
5202
  # Uruguay
5203
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5204
  msgid "c-uy"
5205
  msgstr "Uruguay"
5206
 
5207
  # Uzbekistan
5208
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5209
  msgid "c-uz"
5210
  msgstr "Uzbekistan"
5211
 
5212
  # Vanuatu
5213
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5214
  msgid "c-vu"
5215
  msgstr "Vanuatu"
5216
 
5217
  # Venezuela
5218
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5219
  msgid "c-ve"
5220
  msgstr "Venezuela"
5221
 
5222
  # Viet Nam
5223
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5224
  msgid "c-vn"
5225
  msgstr "Viet Nam"
5226
 
5227
  # British Virgin Islands
5228
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5229
  msgid "c-vg"
5230
  msgstr "British Virgin Islands"
5231
 
5232
  # U.S. Virgin Islands
5233
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5234
  msgid "c-vi"
5235
  msgstr "U.S. Virgin Islands"
5236
 
5237
  # Western Sahara
5238
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5239
  msgid "c-eh"
5240
  msgstr "Western Sahara"
5241
 
5242
  # Yemen
5243
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5244
  msgid "c-ye"
5245
  msgstr "Yemen"
5246
 
5247
  # Zambia
5248
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5249
  msgid "c-zm"
5250
  msgstr "Zambia"
5251
 
5252
  # Zimbabwe
5253
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5254
  msgid "c-zw"
5255
  msgstr "Zimbabwe"
5256
 
5257
  # Guernsey
5258
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5259
  msgid "c-gg"
5260
  msgstr "Guernsey"
5261
 
5262
  # Jersey
5263
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5264
  msgid "c-je"
5265
  msgstr "Jersey"
5266
 
5267
  # Isle of Man
5268
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5269
  msgid "c-im"
5270
  msgstr "Isle of Man"
5271
 
5272
  # Maldives
5273
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5274
  msgid "c-mv"
5275
  msgstr "Maldives"
5276
 
5277
  # European Union
5278
+ #: ../../admin/view/wp-slimstat-reports.php:1024
5279
  msgid "c-eu"
5280
  msgstr "European Union"
5281
 
5282
+ #: ../../admin/view/wp-slimstat-reports.php:1113
5283
  msgid ""
5284
  "This value includes not only posts, but also custom post types, regardless "
5285
  "of their status"
5286
  msgstr ""
5287
+ "Este valor incluye no sólo publicaciones, sino también tipos de publicación "
5288
+ "personalizados, sin importar su estado"
5289
 
5290
+ #: ../../admin/view/wp-slimstat-reports.php:1114
5291
  #, fuzzy
5292
  msgid "Content Items"
5293
  msgstr "Contenido"
5294
 
5295
+ #: ../../admin/view/wp-slimstat-reports.php:1115
5296
  #, fuzzy
5297
  msgid "Total Comments"
5298
  msgstr "Total de Accesos"
5299
 
5300
+ #: ../../admin/view/wp-slimstat-reports.php:1116
5301
  msgid "Pingbacks"
5302
+ msgstr "Pingbacks"
5303
 
5304
+ #: ../../admin/view/wp-slimstat-reports.php:1117
5305
  msgid "Trackbacks"
5306
+ msgstr "Trackbacks"
5307
 
5308
+ #: ../../admin/view/wp-slimstat-reports.php:1118
5309
  #, fuzzy
5310
  msgid "Longest Post (ID)"
5311
  msgstr "Visita más larga"
5312
 
5313
+ #: ../../admin/view/wp-slimstat-reports.php:1119
5314
  msgid "Longest Comment (ID)"
5315
+ msgstr "Comenntario más largo (ID)"
5316
 
5317
+ #: ../../admin/view/wp-slimstat-reports.php:1120
5318
  msgid "Avg Comments Per Post"
5319
+ msgstr "Promedio de Comentarios por Publicación"
5320
 
5321
+ #: ../../admin/view/wp-slimstat-reports.php:1121
5322
  msgid "Avg Posts Per Day"
5323
+ msgstr "Promedio de Publicaciones por Día"
5324
 
5325
+ #: ../../admin/view/wp-slimstat-reports.php:1149
5326
  msgid "Visits"
5327
  msgstr "Visitas"
5328
 
5329
+ #: ../../admin/view/wp-slimstat-reports.php:1153
5330
  msgid "Domains"
5331
  msgstr "Dominios"
5332
 
5333
+ #: ../../admin/view/wp-slimstat-reports.php:1158
5334
+ msgid "Avg Pageviews"
5335
+ msgstr "Promedio Paginas Visitadas"
5336
+
5337
+ #~ msgid "Stats"
5338
+ #~ msgstr "Estadísticas"
5339
+
5340
+ #~ msgid "Hide Stats Link"
5341
+ #~ msgstr "Ocultar enlace de estadísticas"
5342
+
5343
+ #~ msgid ""
5344
+ #~ "Enable this option if your users are confused by the Stats link associate "
5345
+ #~ "to each post in the Edit Posts page."
5346
+ #~ msgstr ""
5347
+ #~ "Habilitar esta opción si los usuarios están confundidos por el enlace "
5348
+ #~ "Stats asociado para cada publicación en la página Editar publicaciones."
5349
+
5350
+ #~ msgid "Blacklist"
5351
+ #~ msgstr "Blacklist"
5352
+
5353
+ #~ msgid "Chart Annotations"
5354
+ #~ msgstr "Anotaciones de Gráfica"
5355
+
5356
+ #~ msgid ""
5357
+ #~ "Add <em>markings</em> to each chart by specifying a date and its "
5358
+ #~ "description in the field below. Useful to keep track of special events "
5359
+ #~ "and correlate them to your analytics. Please use the following format:"
5360
+ #~ "<code>YYYY MM DD HH:mm=Description 1,YYYY MM DD HH:mm=Description 2</"
5361
+ #~ "code>. For example: 2012 12 31 23:55=New Year's Eve."
5362
+ #~ msgstr ""
5363
+ #~ "Añadir <em> marcas </em> para cada gráfica, indicando una fecha y su "
5364
+ #~ "descripción en el campo de abajo. Es útil para realizar un seguimiento de "
5365
+ #~ "los eventos especiales y correlacionarlos con sus análisis. Utilice el "
5366
+ #~ "siguiente formato: AAAA <code> MM DD HH: mm = Descripción 1, AAAA MM DD "
5367
+ #~ "HH: mm = Descripción 2 </code>. Por ejemplo:. 2012 12 31 23:55 = Noche "
5368
+ #~ "Vieja"
5369
+
5370
+ #~ msgid ""
5371
+ #~ "Paste your export file's content and click on the button below, to import "
5372
+ #~ "your settings."
5373
+ #~ msgstr ""
5374
+ #~ "Pegue el contenido de su archivo de exportación y haga clic en el botón "
5375
+ #~ "de abajo, para importar la configuración."
5376
+
5377
  #, fuzzy
5378
  #~ msgid "Export Settings"
5379
  #~ msgstr "Seleccionar orden"
admin/lang/wp-slimstat-fa_IR.mo CHANGED
Binary file
admin/lang/wp-slimstat-fa_IR.po CHANGED
@@ -1,109 +1,113 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
- "POT-Creation-Date: 2013-12-30 22:22-0500\n"
5
  "PO-Revision-Date: \n"
6
- "Last-Translator: get used to it <support@getused.to.it>\n"
7
  "Language-Team: Salman <salmanmp@gmail.com>\n"
8
  "Language: fa\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.5.5\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: ../..\n"
16
 
17
- #: ../../wp-slimstat.php:1175 ../../admin/wp-slimstat-admin.php:396
18
- #: ../../admin/view/wp-slimstat-reports.php:32
19
  msgid "Right Now"
20
  msgstr "همین حالا"
21
 
22
- #: ../../wp-slimstat.php:1176 ../../admin/wp-slimstat-admin.php:397
23
- #: ../../admin/wp-slimstat-admin.php:414
24
- #: ../../admin/view/wp-slimstat-reports.php:33
25
  msgid "Overview"
26
  msgstr "مرور"
27
 
28
- #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:398
29
- #: ../../admin/wp-slimstat-admin.php:415
30
- #: ../../admin/view/wp-slimstat-reports.php:34
31
  msgid "Visitors"
32
  msgstr "بینندگان"
33
 
34
- #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:399
35
- #: ../../admin/wp-slimstat-admin.php:416
36
- #: ../../admin/view/wp-slimstat-reports.php:35
37
  msgid "Content"
38
  msgstr "محتوا"
39
 
40
- #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:400
41
- #: ../../admin/wp-slimstat-admin.php:417 ../../admin/view/index.php:160
42
- #: ../../admin/view/wp-slimstat-reports.php:36
43
  msgid "Traffic Sources"
44
  msgstr "منابع ترافیک"
45
 
46
- #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:401
47
- #: ../../admin/wp-slimstat-admin.php:418
48
- #: ../../admin/view/wp-slimstat-reports.php:37
49
- #: ../../admin/view/wp-slimstat-reports.php:142
50
  msgid "World Map"
51
  msgstr "نقشه جهان"
52
 
53
- #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:402
54
- #: ../../admin/wp-slimstat-admin.php:419
55
- #: ../../admin/view/wp-slimstat-reports.php:38
56
  msgid "Custom Reports"
57
  msgstr "گزارش دلخواه"
58
 
59
- #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:403
60
- #: ../../admin/wp-slimstat-admin.php:420 ../../admin/config/addons.php:29
61
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:228
62
  msgid "Add-ons"
63
  msgstr "افزونه ها"
64
 
65
- #: ../../wp-slimstat.php:1185 ../../admin/wp-slimstat-admin.php:449
66
- #: ../../admin/wp-slimstat-admin.php:452 ../../admin/wp-slimstat-admin.php:496
67
- #: ../../admin/wp-slimstat-admin.php:499 ../../admin/config/index.php:14
68
- #: ../../admin/config/index.php:134
69
  msgid "Settings"
70
  msgstr "تنظیمات"
71
 
72
- #: ../../admin/wp-slimstat-admin.php:395 ../../admin/wp-slimstat-admin.php:407
73
- #: ../../admin/wp-slimstat-admin.php:410
74
  msgid "SlimStat"
75
  msgstr "SlimStat"
76
 
77
- #: ../../admin/wp-slimstat-admin.php:513
78
  msgid "Pageviews in the last 365 days"
79
  msgstr ""
80
 
81
- #: ../../admin/wp-slimstat-admin.php:537
82
  msgid "Show on screen"
83
  msgstr "روی صفحه نشان بده"
84
 
85
- #: ../../admin/wp-slimstat-admin.php:584
 
 
 
 
86
  msgid "There was an error updating the following options:"
87
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
88
 
89
- #: ../../admin/wp-slimstat-admin.php:587
90
  msgid "Your settings have been successfully updated."
91
  msgstr "تنظیمات شما با موفقیت به روز شد."
92
 
93
- #: ../../admin/wp-slimstat-admin.php:610
94
  msgid "Save Changes"
95
  msgstr "ذخیره‌ی تغییرات"
96
 
97
- #: ../../admin/wp-slimstat-admin.php:629
98
  msgid "Yes"
99
  msgstr "بلی"
100
 
101
- #: ../../admin/wp-slimstat-admin.php:630
102
- #: ../../admin/view/wp-slimstat-reports.php:656
103
  msgid "No"
104
  msgstr "خیر"
105
 
106
- #: ../../admin/wp-slimstat-admin.php:670
107
  msgid ""
108
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
109
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
@@ -114,15 +118,15 @@ msgstr ""
114
  "میکند. لطفا برای اطلاع بیشتر به<a target=\"_blank\" href=\"http://wordpress."
115
  "org/extend/plugins/wp-slimstat/faq/\"> سوال و پاسخ ها</a> مراجعه کنید. "
116
 
117
- #: ../../admin/wp-slimstat-admin.php:690
118
  msgid "Definitions"
119
  msgstr "تعاریف"
120
 
121
- #: ../../admin/wp-slimstat-admin.php:693
122
  msgid "Pageview"
123
  msgstr "بازدید"
124
 
125
- #: ../../admin/wp-slimstat-admin.php:693
126
  msgid ""
127
  "A request to load a single HTML file (\"page\"). This should be contrasted "
128
  "with a \"hit\", which refers to a request for any file from a web server. WP "
@@ -132,11 +136,11 @@ msgstr ""
132
  "\"hit\" تفاوت دارد. این برنامه هر بازدید را بعد از اجرای برنامه ردگیری ثبت "
133
  "میکند. "
134
 
135
- #: ../../admin/wp-slimstat-admin.php:694
136
  msgid "(Human) Visit"
137
  msgstr "بیننده (انسانی)"
138
 
139
- #: ../../admin/wp-slimstat-admin.php:694
140
  msgid ""
141
  "A period of interaction between a visitor's browser and your website, ending "
142
  "when the browser is closed or when the user has been inactive on that site "
@@ -145,12 +149,12 @@ msgstr ""
145
  "تراکنش بین مرورگر ردگیری و پایگاه شما به پایان رسید وقتی که مرورگر بسته شده "
146
  "و یا کاربر به مدت سی دقیقه غیر فعال شده است."
147
 
148
- #: ../../admin/wp-slimstat-admin.php:695 ../../admin/view/index.php:132
149
- #: ../../admin/view/right-now.php:148
150
  msgid "Known Visitor"
151
  msgstr "بیننده آشنا"
152
 
153
- #: ../../admin/wp-slimstat-admin.php:695
154
  msgid ""
155
  "Any user who has left a comment on your blog, and is thus identified by "
156
  "Wordpress as a returning visitor"
@@ -158,11 +162,11 @@ msgstr ""
158
  "هر کاربری که در تارنامه شما نظر گذاشته توسط وردپرس به عنوان «بیننده دوباره» "
159
  "شناخته میشود"
160
 
161
- #: ../../admin/wp-slimstat-admin.php:696
162
  msgid "Unique IP"
163
  msgstr "آی‌پی یکتا"
164
 
165
- #: ../../admin/wp-slimstat-admin.php:696
166
  msgid ""
167
  "Used to differentiate between multiple requests to download a file from one "
168
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -173,24 +177,23 @@ msgstr ""
173
  "درخواست از چند آی پی ادرس مختلف میباشد؛ چون این اندازه گیری فقط نشانگر آدرس "
174
  "هر بازدید است، مفید میباشد ولی دقیق نیست."
175
 
176
- #: ../../admin/wp-slimstat-admin.php:697 ../../admin/wp-slimstat-admin.php:739
177
- #: ../../admin/view/right-now.php:98
178
- #: ../../admin/view/wp-slimstat-reports.php:64
179
  msgid "Originating IP"
180
  msgstr "آی‌پی منشا"
181
 
182
- #: ../../admin/wp-slimstat-admin.php:697
183
  msgid ""
184
  "the originating IP address of a client connecting to a web server through an "
185
  "HTTP proxy or load balancer"
186
  msgstr ""
187
  "ای پی منشا که کاربر را از طریق HTTP proxy و یا load balancer مرتبط کرده"
188
 
189
- #: ../../admin/wp-slimstat-admin.php:698
190
  msgid "Direct Traffic"
191
  msgstr "ترافیک مستقیم"
192
 
193
- #: ../../admin/wp-slimstat-admin.php:698
194
  msgid ""
195
  "All those people showing up to your Web site by typing in the URL of your "
196
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -199,11 +202,11 @@ msgstr ""
199
  " تمامی کاربرانی که با وارد کردن نشانی مستقیم تارنما و یا استفاده از بوک مارک "
200
  "از تارنما بازدید میکنند."
201
 
202
- #: ../../admin/wp-slimstat-admin.php:699
203
  msgid "Search Engine"
204
  msgstr "موتور جستجو"
205
 
206
- #: ../../admin/wp-slimstat-admin.php:699
207
  msgid ""
208
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
209
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -211,35 +214,34 @@ msgstr ""
211
  "ترافیک مرتبط با نتایج موتور جستجو (organic) و همچنین ترافیک بدست آمده توسط "
212
  "تبلیغات در موتورهای جستجو اینجا درهم است"
213
 
214
- #: ../../admin/wp-slimstat-admin.php:700 ../../admin/wp-slimstat-admin.php:716
215
- #: ../../admin/view/right-now.php:127
216
- #: ../../admin/view/wp-slimstat-reports.php:45
217
  msgid "Search Terms"
218
  msgstr "عبارت‌های جستجو"
219
 
220
- #: ../../admin/wp-slimstat-admin.php:700 ../../admin/wp-slimstat-admin.php:716
221
  msgid "Keywords used by your visitors to find your website on a search engine"
222
  msgstr ""
223
  "کلمات کلیدی که کاربران شما به وسیله‌ی آن‌ها از موتورهای جستجو، پایگاه شما را "
224
  "یافته‌اند."
225
 
226
- #: ../../admin/wp-slimstat-admin.php:701
227
  msgid "SERP"
228
  msgstr ""
229
 
230
- #: ../../admin/wp-slimstat-admin.php:701
231
  msgid ""
232
  "Short for search engine results page, the Web page that a search engine "
233
  "returns with the results of its search. The value shown represents your rank "
234
  "(or position) within that list of results"
235
  msgstr " این مقدار نشان دهنده رتبه شما در فهرست نتایج موتور جستجو میباشد."
236
 
237
- #: ../../admin/wp-slimstat-admin.php:702
238
- #: ../../admin/view/wp-slimstat-reports.php:57
239
  msgid "User Agent"
240
  msgstr "مرورگرهای کاربران"
241
 
242
- #: ../../admin/wp-slimstat-admin.php:702
243
  msgid ""
244
  "Any program used for accessing a website; this includes browsers, robots, "
245
  "spiders and any other program that was used to retrieve information from the "
@@ -247,12 +249,12 @@ msgid ""
247
  msgstr ""
248
  "هر برنامه که به تارنما دسترسی پیدا کند مثل مرورگر، روبات، خزنده، وغیره."
249
 
250
- #: ../../admin/wp-slimstat-admin.php:703
251
- #: ../../admin/view/wp-slimstat-reports.php:61
252
  msgid "Outbound Link"
253
  msgstr "پیوند بیرونی"
254
 
255
- #: ../../admin/wp-slimstat-admin.php:703
256
  msgid ""
257
  "A link from one domain to another is said to be outbound from its source "
258
  "anchor and inbound to its target. This report lists all the links to other "
@@ -262,44 +264,44 @@ msgstr ""
262
  "پیوند درونی محسوب میشود. این گزارش فهرستی از تمام پیوند ها به پایگاه های "
263
  "دیگر و کاربران است."
264
 
265
- #: ../../admin/wp-slimstat-admin.php:710
266
  msgid "Basic Filters"
267
  msgstr "پالایه های اولیه"
268
 
269
- #: ../../admin/wp-slimstat-admin.php:713
270
- #: ../../admin/view/wp-slimstat-reports.php:42
271
  msgid "Browser"
272
  msgstr "مرورگر"
273
 
274
- #: ../../admin/wp-slimstat-admin.php:713
275
  msgid "User agent (Firefox, Chrome, ...)"
276
  msgstr "مرورگر کاربر (فایرفاکس، کروم و ...)"
277
 
278
- #: ../../admin/wp-slimstat-admin.php:714
279
- #: ../../admin/view/wp-slimstat-reports.php:43
280
- #: ../../admin/view/wp-slimstat-reports.php:482
281
  msgid "Country Code"
282
  msgstr "علامت کشور"
283
 
284
- #: ../../admin/wp-slimstat-admin.php:714
285
  msgid "2-letter code (us, ru, de, it, ...)"
286
  msgstr "علامت دو حرفی (us، ir، ...)"
287
 
288
- #: ../../admin/wp-slimstat-admin.php:715
289
  msgid "IP"
290
  msgstr "آی‌پی"
291
 
292
- #: ../../admin/wp-slimstat-admin.php:715
293
  msgid "Visitor's public IP address"
294
  msgstr "نشانی‌های آی‌پی عمومی بازدیدکنندگان"
295
 
296
- #: ../../admin/wp-slimstat-admin.php:717
297
- #: ../../admin/view/wp-slimstat-reports.php:46
298
- #: ../../admin/view/wp-slimstat-reports.php:494
299
  msgid "Language Code"
300
  msgstr "علامت زبان"
301
 
302
- #: ../../admin/wp-slimstat-admin.php:717
303
  msgid ""
304
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
305
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -308,12 +310,12 @@ msgstr ""
308
  "لطفا به <a target=\"_blank\" href=\"http://msdn.microsoft.com/en-us/library/"
309
  "ee825488(v=cs.20).aspx\"> فرهنگ زبان </a> برای اطلاع بیشتر مراجعه کنید"
310
 
311
- #: ../../admin/wp-slimstat-admin.php:718
312
- #: ../../admin/view/wp-slimstat-reports.php:47
313
  msgid "Operating System"
314
  msgstr "سامانه عامل"
315
 
316
- #: ../../admin/wp-slimstat-admin.php:718
317
  msgid ""
318
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
319
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -323,30 +325,30 @@ msgstr ""
323
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\"> "
324
  "راهنما</a> مراجعه کنید"
325
 
326
- #: ../../admin/wp-slimstat-admin.php:719
327
- #: ../../admin/view/wp-slimstat-reports.php:48
328
  msgid "Permalink"
329
  msgstr "پیوند یکتا"
330
 
331
- #: ../../admin/wp-slimstat-admin.php:719
332
  msgid "URL accessed on your site"
333
  msgstr "نشانی هایی که مورد بازدید قرار گرفته"
334
 
335
- #: ../../admin/wp-slimstat-admin.php:720
336
- #: ../../admin/view/wp-slimstat-reports.php:50
337
  msgid "Referer"
338
  msgstr "ارجاع‌دهنده"
339
 
340
- #: ../../admin/wp-slimstat-admin.php:720
341
  msgid "Complete address of the referrer page"
342
  msgstr "نشانی کامل صفحه‌ی ارجاع ‌دهنده"
343
 
344
- #: ../../admin/wp-slimstat-admin.php:721
345
- #: ../../admin/view/wp-slimstat-reports.php:51
346
  msgid "Visitor's Name"
347
  msgstr "نام بیننده"
348
 
349
- #: ../../admin/wp-slimstat-admin.php:721
350
  msgid ""
351
  "Visitors' names according to the cookie set by Wordpress after they leave a "
352
  "comment"
@@ -354,57 +356,57 @@ msgstr ""
354
  "اسامی بیننده بر مبنای خوراکی که بعد از گذاشتن نظر توسط وردپرس اختصاص داده "
355
  "میشود."
356
 
357
- #: ../../admin/wp-slimstat-admin.php:729
358
  msgid "Advanced Filters"
359
  msgstr "فیلترهای پیش‌رفته"
360
 
361
- #: ../../admin/wp-slimstat-admin.php:732
362
- #: ../../admin/view/wp-slimstat-reports.php:55
363
  msgid "Browser Version"
364
  msgstr "نسخه مرورگر"
365
 
366
- #: ../../admin/wp-slimstat-admin.php:732
367
  msgid "user agent version (9.0, 11, ...)"
368
  msgstr "نسخه مرورگر کاربر"
369
 
370
- #: ../../admin/wp-slimstat-admin.php:733
371
- #: ../../admin/view/wp-slimstat-reports.php:56
372
  msgid "Browser Type"
373
  msgstr "نوع مرورگر"
374
 
375
- #: ../../admin/wp-slimstat-admin.php:733
376
  msgid ""
377
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
378
  "all others"
379
  msgstr ""
380
  "۱=خزنده‌های موتورهای جستجو، ۲=دستگاه موبایل، ۳=خوراک‌خوان، ۰=همه‌ی چیزهای دیگر"
381
 
382
- #: ../../admin/wp-slimstat-admin.php:734
383
- #: ../../admin/view/wp-slimstat-reports.php:58
384
  msgid "Color Depth"
385
  msgstr "عمق رنگ"
386
 
387
- #: ../../admin/wp-slimstat-admin.php:734
388
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
389
  msgstr "عمق رنگ صفحه نمایش کاربر (۸، ۱۶، ۲۴، ...)"
390
 
391
- #: ../../admin/wp-slimstat-admin.php:735
392
- #: ../../admin/view/wp-slimstat-reports.php:59
393
  msgid "CSS Version"
394
  msgstr "نسخه سی‌اس‌اس "
395
 
396
- #: ../../admin/wp-slimstat-admin.php:735
397
  msgid ""
398
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
399
  "values)"
400
  msgstr "چه معیار توسط مرورگر حمایت میشود؟ ۱، ۲، ۳ و دیگر مقدار ها ... "
401
 
402
- #: ../../admin/wp-slimstat-admin.php:736
403
- #: ../../admin/view/wp-slimstat-reports.php:60
404
  msgid "Pageview Attributes"
405
  msgstr "خصوصیات بازدید"
406
 
407
- #: ../../admin/wp-slimstat-admin.php:736
408
  msgid ""
409
  "this field is set to <em>[pre]</em> if the resource has been accessed "
410
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -413,34 +415,34 @@ msgstr ""
413
  "این ناحیه برای تنظیمات <a target=\"_blank\" href=\"https://developer.mozilla."
414
  "org/en/Link_prefetching_FAQ\"> صفحه‌بندی </a> و یا شیوه های مشابه است."
415
 
416
- #: ../../admin/wp-slimstat-admin.php:737
417
- #: ../../admin/view/wp-slimstat-reports.php:62
418
  msgid "Post Author"
419
  msgstr "نویسنده مطلب"
420
 
421
- #: ../../admin/wp-slimstat-admin.php:737
422
  msgid "author associated to that post/page when the resource was accessed"
423
  msgstr "نویسنده مرتبط با این ارسال یا صفحه وقتی این ماخذ دسترسی شد"
424
 
425
- #: ../../admin/wp-slimstat-admin.php:738
426
- #: ../../admin/view/wp-slimstat-reports.php:63
427
  msgid "Post Category ID"
428
  msgstr "شناسه دسته‌بندی مطلب"
429
 
430
- #: ../../admin/wp-slimstat-admin.php:738
431
  msgid "ID of the category/term associated to the resource, when available"
432
  msgstr "شناسه دسته یا عبارت که با منبع مرتبط است، اگر موجود باشد"
433
 
434
- #: ../../admin/wp-slimstat-admin.php:739
435
  msgid "visitor's originating IP address, if available"
436
  msgstr "آی پی منشا که بیننده از آن ‌عازم شده، در صورت موجود بودن"
437
 
438
- #: ../../admin/wp-slimstat-admin.php:740
439
- #: ../../admin/view/wp-slimstat-reports.php:65
440
  msgid "Resource Content Type"
441
  msgstr "نوع محتوای منبع"
442
 
443
- #: ../../admin/wp-slimstat-admin.php:740
444
  msgid ""
445
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
446
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -453,21 +455,21 @@ msgstr ""
453
  "target=\"_blank\" href=\"http://codex.wordpress.org/Conditional_Tags\"> "
454
  "نشانه های شرطی</a> در صفحه راهنما مراجعه کنید."
455
 
456
- #: ../../admin/wp-slimstat-admin.php:741
457
- #: ../../admin/view/wp-slimstat-reports.php:67
458
  msgid "Screen Resolution"
459
  msgstr "ابعاد صفحه نمایش"
460
 
461
- #: ../../admin/wp-slimstat-admin.php:741
462
  msgid "viewport width and height (1024x768, 800x600, ...)"
463
  msgstr "ابعاد صفحه نمایش (۱۰۲۴x۷۶۸، ۸۰۰x۶۰۰، ...)"
464
 
465
- #: ../../admin/wp-slimstat-admin.php:742
466
- #: ../../admin/view/wp-slimstat-reports.php:68
467
  msgid "Visit ID"
468
  msgstr "شناسه دیدن"
469
 
470
- #: ../../admin/wp-slimstat-admin.php:742
471
  msgid ""
472
  "generally used in conjunction with <em>is not empty</em>, identifies human "
473
  "visitors"
@@ -475,11 +477,11 @@ msgstr ""
475
  "معولا با ترکیب <em>خالی نیست</em> استفاده میشود و بیننده ها (انسان) را تشخیص "
476
  "میدهد"
477
 
478
- #: ../../admin/wp-slimstat-admin.php:743
479
  msgid "Date Filters"
480
  msgstr "فیلترهای تاریخ"
481
 
482
- #: ../../admin/wp-slimstat-admin.php:743
483
  msgid ""
484
  "you can specify the timeframe by entering a number in the <em>interval</em> "
485
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -488,11 +490,11 @@ msgstr ""
488
  "با وارد کردن اعداد در این ناحیه میتوانید یک مدت زمانی تعیین کنید؛ برای محدود "
489
  "کردن سال به روز از -1 استفاده کنید."
490
 
491
- #: ../../admin/wp-slimstat-admin.php:744
492
  msgid "SERP Position"
493
  msgstr "مکان SERP"
494
 
495
- #: ../../admin/wp-slimstat-admin.php:744
496
  msgid ""
497
  "set the filter to Referer contains cd=N&, where N is the position you are "
498
  "looking for"
@@ -500,7 +502,7 @@ msgstr ""
500
  "تعیین صافی برای ارجاعی هایی که شامل اِن میشوند، آنجا که اِن مکانی هست که به "
501
  "مشخص میکنید."
502
 
503
- #: ../../admin/wp-slimstat-admin.php:753
504
  msgid ""
505
  " And for keeping an eye on your visitors with <a href=\"http://slimstat."
506
  "getused.to.it/\">WP SlimStat</a>."
@@ -545,23 +547,23 @@ msgstr "افزونه"
545
  msgid "Description"
546
  msgstr "توضیحات"
547
 
548
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:17
549
  msgid "General"
550
  msgstr "عمومی"
551
 
552
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:43
553
  msgid "Views"
554
  msgstr "مشاهده ها"
555
 
556
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:63
557
  msgid "Filters"
558
  msgstr "فیلترها"
559
 
560
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:127
561
  msgid "Permissions"
562
  msgstr "مجوزها"
563
 
564
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:204
565
  msgid "Advanced"
566
  msgstr "پیش‌رفته"
567
 
@@ -569,15 +571,15 @@ msgstr "پیش‌رفته"
569
  msgid "Maintenance"
570
  msgstr "نگهداری"
571
 
572
- #: ../../admin/config/index.php:19 ../../admin/config/index.php:206
573
  msgid "Tracker"
574
  msgstr "ره‌گیری"
575
 
576
- #: ../../admin/config/index.php:20
577
  msgid "Enable Tracking"
578
  msgstr "فعال‌سازی رد‌گیری"
579
 
580
- #: ../../admin/config/index.php:20
581
  msgid ""
582
  "Turn the tracker on or off, but keep the reports accessible (which you would "
583
  "not have, if you just disabled the plugin)."
@@ -585,19 +587,19 @@ msgstr ""
585
  "رهگیری را روشن و یا خاموش میکند ولی گزارش ها در دسترس خواهد بود که در صورت "
586
  "غیر فعال کردن افزونه بدین گونه نخواهد بود."
587
 
588
- #: ../../admin/config/index.php:21
589
  msgid "Monitor Admin Pages"
590
  msgstr "نظارت صفحه مدیریت"
591
 
592
- #: ../../admin/config/index.php:21
593
  msgid "Enable this option to track your users' activity within the admin."
594
  msgstr "برای رهگیری کاربران در ناحیه مدیریتی ین گزینه را فعال کنید."
595
 
596
- #: ../../admin/config/index.php:22
597
  msgid "Enable Spy Mode"
598
  msgstr "فعال کردن دید دزدکی"
599
 
600
- #: ../../admin/config/index.php:22
601
  msgid ""
602
  "Collect information about screen resolutions, outbound links, downloads, "
603
  "etc. If Tracking Mode is set to Javascript, this data will be tracked "
@@ -607,11 +609,11 @@ msgstr ""
607
  "غیره. در صورت انتخاب حالت ردگیری به جاواسکریپت، این داده ها رهگیری میشود "
608
  "صرفنظر از مقداری که اینجا اختیار میکنید."
609
 
610
- #: ../../admin/config/index.php:23
611
  msgid "Tracking Mode"
612
  msgstr " حالت ردگیری"
613
 
614
- #: ../../admin/config/index.php:23
615
  msgid ""
616
  "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
617
  "Total Cache, WP SuperCache, HyperCache, etc). WP SlimStat will behave pretty "
@@ -625,56 +627,56 @@ msgstr ""
625
  "پذیرفته نمیشود. اثر جانبی این حالت این است که بیشتر هرز ها، موتورهای جستجو و "
626
  "دیگر خزنده ها نیز دیگر رهگیری نمیشوند."
627
 
628
- #: ../../admin/config/index.php:23
629
  msgid "Javascript"
630
  msgstr "جاوااسکریپت"
631
 
632
- #: ../../admin/config/index.php:23
633
  msgid "Server-side"
634
  msgstr "طرف دامنه"
635
 
636
- #: ../../admin/config/index.php:25
637
  msgid "WordPress Integration"
638
  msgstr "تلفیق کردن وردپرس"
639
 
640
- #: ../../admin/config/index.php:26
641
  msgid "Menu Position"
642
  msgstr "محل گزینگان"
643
 
644
- #: ../../admin/config/index.php:26
645
  msgid ""
646
  "Choose between a standalone admin menu for WP SlimStat or a drop down in the "
647
  "admin bar (if visible)."
648
  msgstr "بین گزینگان مدیریتی ثابت و یا گزینگان مدیریتی ابشاری انتخاب کنید."
649
 
650
- #: ../../admin/config/index.php:26
651
  msgid "Side Menu"
652
  msgstr "گزینگان کناره"
653
 
654
- #: ../../admin/config/index.php:26
655
  msgid "Admin Bar"
656
  msgstr " منوی مدیریت"
657
 
658
- #: ../../admin/config/index.php:27
659
  msgid "Add Stats to Posts"
660
  msgstr "یک ستون به نوشته‌ها اضافه کن"
661
 
662
- #: ../../admin/config/index.php:27
663
  msgid ""
664
  "Add a new column to the Edit Posts screen, with the number of hits per post."
665
  msgstr ""
666
  "یک ستون جدید به صفحه «ویرایش ارسال» اضافه می‌کند، که شامل تعداد بازدید برای "
667
  "هر ارسال میباشد (ممکن است مدت تحویل را زیاد کند)"
668
 
669
- #: ../../admin/config/index.php:29
670
  msgid "Database"
671
  msgstr "پایگاه داده"
672
 
673
- #: ../../admin/config/index.php:30
674
  msgid "Retain data for"
675
  msgstr "نگاه داشتن داده برای"
676
 
677
- #: ../../admin/config/index.php:30
678
  msgid ""
679
  "Delete log entries older than the number of days specified here above. Enter "
680
  "<strong>0</strong> (number zero) if you want to preserve your data "
@@ -683,49 +685,49 @@ msgstr ""
683
  "ورودی هایی که از تعداد روزها زیر بیشتر باشد حذف میشوند. صفر وارد کنید اگر "
684
  "مایل به حفظ داده ها صرفنظر از تاریخ آن هستید."
685
 
686
- #: ../../admin/config/index.php:30
687
  msgid "Next clean-up on"
688
  msgstr "تمیزکاری بعدی در"
689
 
690
- #: ../../admin/config/index.php:30
691
  #, php-format
692
  msgid "Entries logged on or before %s will be permanently deleted."
693
  msgstr "ردیف‌های مربوط به روز %s و قبل از آن حذف خواهند شد."
694
 
695
- #: ../../admin/config/index.php:30 ../../admin/view/index.php:76
696
- #: ../../admin/view/wp-slimstat-reports.php:75
697
- #: ../../admin/view/wp-slimstat-reports.php:656
698
  msgid "days"
699
  msgstr "روز"
700
 
701
- #: ../../admin/config/index.php:45
702
  msgid "Data and Formats"
703
  msgstr "داده و نگارش ها"
704
 
705
- #: ../../admin/config/index.php:46
706
  msgid "Convert IP Addresses"
707
  msgstr "تبدیل نشانی آی‌پی"
708
 
709
- #: ../../admin/config/index.php:46
710
  msgid "Display provider names instead of IP addresses."
711
  msgstr "نمایش خدمات دهنده ها به جای ای پی"
712
 
713
- #: ../../admin/config/index.php:47
714
  msgid "Number Format"
715
  msgstr "نگارش اعداد"
716
 
717
- #: ../../admin/config/index.php:47
718
  msgid ""
719
  "Choose the number format you want to use for your reports, European or "
720
  "American."
721
  msgstr ""
722
  "نگارش مناسب برای ملاحظه گزارش اعداد را نتخاب کنید، امریکایی یا اروپایی."
723
 
724
- #: ../../admin/config/index.php:48
725
  msgid "Show Display Name"
726
  msgstr "نمایش نام صفحه نمایش"
727
 
728
- #: ../../admin/config/index.php:48
729
  msgid ""
730
  "By default, users are listed by their usernames. Use this option to "
731
  "visualize their display names instead."
@@ -733,11 +735,11 @@ msgstr ""
733
  "به طور پیش فرظ، کاربران با نام کاربری فهرست بندی میشوند. این گزینه کاربران "
734
  "را با نام فهرست بندی میکند."
735
 
736
- #: ../../admin/config/index.php:49
737
  msgid "Show User Agent"
738
  msgstr "نمایش عامل کاربر "
739
 
740
- #: ../../admin/config/index.php:49
741
  msgid ""
742
  "Choose if you want to see the browser name or a complete user agent string "
743
  "when hovering on browser icons."
@@ -745,11 +747,11 @@ msgstr ""
745
  " این گزینه را انتخاب کنید اگر میخواهید اسم مرورگر یا نام کامل کاربر را با "
746
  "توقف اشاره گر بر روی نقشک ملاحظه کنید."
747
 
748
- #: ../../admin/config/index.php:50
749
  msgid "Show Titles"
750
  msgstr "نمایش عناوین"
751
 
752
- #: ../../admin/config/index.php:50
753
  msgid ""
754
  "WP SlimStat converts your permalinks into post and page titles. Disable this "
755
  "feature if you need to see the URL in your reports."
@@ -757,15 +759,15 @@ msgstr ""
757
  " تمامی پیوندهای یکتا را به ارسال و صفحه تبدیل میکند. این ویژگی را غیرفعال "
758
  "کنید اگر در گزارش به نشانی نیاز دارید"
759
 
760
- #: ../../admin/config/index.php:52
761
  msgid "Functionality"
762
  msgstr "کاربردی"
763
 
764
- #: ../../admin/config/index.php:53
765
  msgid "Asynchronous Views"
766
  msgstr "دید غیرهم‌زمان(آسنکرون)"
767
 
768
- #: ../../admin/config/index.php:53
769
  msgid ""
770
  "Load all the reports dynamically. It makes the reports render faster, but it "
771
  "increases the load on your server."
@@ -773,31 +775,31 @@ msgstr ""
773
  "بارگزاری همه گزارشها به صورت پویا که ارائه آن را تسریع میکند ولی فشار به "
774
  "دامنه را نیز افزایش میدهد. "
775
 
776
- #: ../../admin/config/index.php:54
777
  msgid "Expand Details"
778
  msgstr "گسترش جزئیات"
779
 
780
- #: ../../admin/config/index.php:54
781
  msgid "Expand each row's details by default, insted of on mousehover."
782
  msgstr "گشترش جزئیات‌ هر سطر به طور پیش فرظ، به جای رویت با توقف اشاره گر"
783
 
784
- #: ../../admin/config/index.php:55 ../../admin/config/index.php:59
785
  msgid "Rows to Display"
786
  msgstr "نمایش ردیف ها"
787
 
788
- #: ../../admin/config/index.php:55
789
  msgid "Specify the number of items in each report."
790
  msgstr "تعداد موردها در هر گزارش را مشخص کنید."
791
 
792
- #: ../../admin/config/index.php:57
793
  msgid "Right Now Screen"
794
  msgstr "صفحه همین حالا"
795
 
796
- #: ../../admin/config/index.php:58
797
  msgid "Live Stream"
798
  msgstr "پخش زنده"
799
 
800
- #: ../../admin/config/index.php:58
801
  msgid ""
802
  "Enable the Live view, which refreshes the Right Now screen every X seconds. "
803
  "Enter <strong>0</strong> (number zero) to disable this functionality."
@@ -805,19 +807,19 @@ msgstr ""
805
  "فعال کردن «نمای زنده» صفحه «همین حالا» را هر چند ثانیه تازه سازی میکند. برای "
806
  "فیرفعال کردن صفر وارد کنید."
807
 
808
- #: ../../admin/config/index.php:58 ../../admin/config/index.php:209
809
  msgid "seconds"
810
  msgstr "ثانیه"
811
 
812
- #: ../../admin/config/index.php:59
813
  msgid "Specify the number of items in Right Now."
814
  msgstr " تعداد موردها در فهرست صفحه «همین حالا» را مشخص کنید"
815
 
816
- #: ../../admin/config/index.php:60
817
  msgid "Right Now Extended"
818
  msgstr "همین حالا تمدید شده"
819
 
820
- #: ../../admin/config/index.php:60
821
  msgid ""
822
  "Choose if you want to see outbound links listed under Right Now. It might "
823
  "slow down the rendering of this report."
@@ -825,23 +827,23 @@ msgstr ""
825
  "اگر مایل به رویت پیوندهای بیرونی در فهرست بخش همین حالا هستید انتخاب کنید. "
826
  "ممکن است به طول انجامیدن تحویل گزارش منجر شود."
827
 
828
- #: ../../admin/config/index.php:65
829
  msgid "Visitors and Known Users"
830
  msgstr "بیننده و کاربران آشنا"
831
 
832
- #: ../../admin/config/index.php:66
833
  msgid "Track Registered Users"
834
  msgstr "ره‌گیری کاربران ثبت شده"
835
 
836
- #: ../../admin/config/index.php:66
837
  msgid "Enable this option to track logged in users."
838
  msgstr "اگر می‌خواهید کاربران وارد شده را ره‌گیری کنید این گزینه را فعال کنید."
839
 
840
- #: ../../admin/config/index.php:67
841
  msgid "Blacklist by Username"
842
  msgstr " فهرست سیاه با نشانی آی‌پی"
843
 
844
- #: ../../admin/config/index.php:67
845
  msgid ""
846
  "List all the usernames you don't want to track, separated by commas. Please "
847
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
@@ -850,11 +852,11 @@ msgstr ""
850
  "فهرست نام کاربرانی که نمیخواهید رهگیری کنید، تفکیک شده با ویرگول. لطفا در "
851
  "نظر داشته باشید که فاصله ها و حروف کوچک و بزرگ نیز حساب میشود."
852
 
853
- #: ../../admin/config/index.php:68
854
  msgid "Blacklist by IP Address"
855
  msgstr " فهرست سیاه با نشانی آی‌پی"
856
 
857
- #: ../../admin/config/index.php:68
858
  msgid ""
859
  "List all the IP addresses you don't want to track, separated by commas. Each "
860
  "network <strong>must</strong> be defined using the <a href='http://en."
@@ -867,11 +869,11 @@ msgstr ""
867
  "Classless_Inter-Domain_Routing' target='_blank'>CIDR</a> تعریف شود (مثل "
868
  "<em>192.168.0.0/24</em>) و اگر نگارش صحیح نباشد رهگیری به درستی انجام نمیشود."
869
 
870
- #: ../../admin/config/index.php:69
871
  msgid "Blacklist by Capability"
872
  msgstr "کاربران بر اساس توانایی"
873
 
874
- #: ../../admin/config/index.php:69
875
  msgid ""
876
  "Users having at least one of the <a href='http://codex.wordpress.org/"
877
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
@@ -881,15 +883,15 @@ msgstr ""
881
  "Roles_and_Capabilities' target='_new'> خواص</a> زیر را داشته باشند ردگیری "
882
  "نمیشوند (به بزرگ و کوچک بودن را دقت داشته باشید)."
883
 
884
- #: ../../admin/config/index.php:71
885
  msgid "Profiling"
886
  msgstr "نمایه"
887
 
888
- #: ../../admin/config/index.php:72
889
  msgid "Ignore Spammers"
890
  msgstr "نادیده گرفتن هرزها"
891
 
892
- #: ../../admin/config/index.php:72
893
  msgid ""
894
  "Enable this option if you don't want to track visits from users identified "
895
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -900,11 +902,11 @@ msgstr ""
900
  "Akismet) را رهگیری کنید این گزینه را فعال کنید. بازدید های کاربرانی که بعدا "
901
  "به صورت هرز شناخته شوند از پایگاه داده ها نیز حذف میشوند."
902
 
903
- #: ../../admin/config/index.php:73
904
  msgid "Permalinks"
905
  msgstr "پیوندهای یکتا"
906
 
907
- #: ../../admin/config/index.php:73
908
  msgid ""
909
  "List all the URLs on your website that you don't want to track, separated by "
910
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -922,11 +924,11 @@ msgstr ""
922
  "and /about, <code>/abo!t</code> will match /about and /abort. Strings are "
923
  "case-insensitive."
924
 
925
- #: ../../admin/config/index.php:74
926
  msgid "Countries"
927
  msgstr "کشورها"
928
 
929
- #: ../../admin/config/index.php:74
930
  msgid ""
931
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
932
  "track, separated by commas."
@@ -934,11 +936,11 @@ msgstr ""
934
  "کد کشورهایی که مایل به رهگیری نیستید، تفکیک شده با ویرگول مثل <code>en-us, "
935
  "it, es</code>"
936
 
937
- #: ../../admin/config/index.php:75
938
  msgid "User Agents"
939
  msgstr "مرورگرهای کاربران"
940
 
941
- #: ../../admin/config/index.php:75
942
  msgid ""
943
  "Browsers (user agents) you don't want to track, separated by commas. You can "
944
  "specify the browser's version adding a slash after the name (i.e. "
@@ -953,11 +955,11 @@ msgstr ""
953
  "Strings are case-insensitive.مرورگرهایی که نمیخواهید رهگیری کنید، تفکیک شده "
954
  "با ویرگول. میتوانید نسخه مرورگر را نیز مشخص کنید. مثلا <em>Firefox/3.6</em>. "
955
 
956
- #: ../../admin/config/index.php:76
957
  msgid "Referring Sites"
958
  msgstr "سایت ارجاع دهنده"
959
 
960
- #: ../../admin/config/index.php:76
961
  msgid ""
962
  "Referring URLs that you don't want to track, separated by commas: "
963
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -973,23 +975,23 @@ msgstr ""
973
  "insensitive. Include either a wildcard or the protocol you want to filter "
974
  "(http://, https://)."
975
 
976
- #: ../../admin/config/index.php:78 ../../admin/config/index.php:214
977
  msgid "Miscellaneous"
978
  msgstr "متفرقه"
979
 
980
- #: ../../admin/config/index.php:79
981
  msgid "Enable Privacy Mode"
982
  msgstr "فعال کردن حالت حریم"
983
 
984
- #: ../../admin/config/index.php:79
985
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
986
  msgstr "این گزینه نشانی آی‌پی بیننده را طبق قوانین حریم خصوصی اروپا پنهان میکند"
987
 
988
- #: ../../admin/config/index.php:80
989
  msgid "Ignore Prefetch Requests"
990
  msgstr "نادیده گرفتن درخواست صفحه‌بندی"
991
 
992
- #: ../../admin/config/index.php:80
993
  msgid ""
994
  "Prevent WP SlimStat from tracking pageviews generated by Firefox's <a "
995
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
@@ -999,11 +1001,11 @@ msgstr ""
999
  "org/en/Link_prefetching_FAQ' target='_blank'>صفحه‌بندی</a> برنامه Firefox "
1000
  "صورت میگیرد."
1001
 
1002
- #: ../../admin/config/index.php:96
1003
  msgid "Ignore users (username not found)"
1004
  msgstr "نادیده گرفتن کاربر(شناسه کاربر یافت نشد)"
1005
 
1006
- #: ../../admin/config/index.php:119
1007
  msgid ""
1008
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
1009
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
@@ -1012,15 +1014,15 @@ msgstr ""
1012
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> نقش و توانایی</a> "
1013
  "مراجعه کنید."
1014
 
1015
- #: ../../admin/config/index.php:129
1016
  msgid "Reports"
1017
  msgstr "گزارش ها"
1018
 
1019
- #: ../../admin/config/index.php:130
1020
  msgid "Restrict Authors"
1021
  msgstr "محدود کردن نویسنده‌ها"
1022
 
1023
- #: ../../admin/config/index.php:130
1024
  msgid ""
1025
  "Enable this option if you want your authours to only see stats related to "
1026
  "their own content."
@@ -1028,18 +1030,19 @@ msgstr ""
1028
  "اگر میخواهید نویسنده ها فقط آمار مربوط به محتوای خود را رویت کنند این گزینه "
1029
  "را فعال کنید."
1030
 
1031
- #: ../../admin/config/index.php:131 ../../admin/config/index.php:135
1032
  msgid "Capability"
1033
  msgstr "کاربران بر اساس توانایی"
1034
 
1035
- #: ../../admin/config/index.php:131
 
1036
  msgid ""
1037
  "Specify the minimum <a href='http://codex.wordpress.org/"
1038
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
1039
- "reports (default: <code>read</code>). If this field is empty, <strong>all "
1040
- "your users</strong> (including subscribers) will have access to the reports, "
1041
- "unless a 'Read access' whitelist has been specified here below. In this "
1042
- "case, the list has precedence over the capability."
1043
  msgstr ""
1044
  "حداقل<a href='http://codex.wordpress.org/Roles_and_Capabilities' "
1045
  "target='_new'> توانایی</a> برای دسترسی به گزارش های را مشخص کنید. اگر این "
@@ -1047,11 +1050,11 @@ msgstr ""
1047
  "داشت، مگر اینکه اجازه فهرست سفید اینجا مشخص شود. در این صورت فهرست اولویت "
1048
  "میگیرد بر قابلیت."
1049
 
1050
- #: ../../admin/config/index.php:132 ../../admin/config/index.php:136
1051
  msgid "Whitelist"
1052
  msgstr "فهرست سفید"
1053
 
1054
- #: ../../admin/config/index.php:132
1055
  msgid ""
1056
  "List all the users who should have access to the reports, separated by "
1057
  "commas. Administrators are implicitly allowed, so you don't need to list "
@@ -1061,7 +1064,7 @@ msgstr ""
1061
  "طور کامل دسترسی دارند و نیاز به وارد کردن اینجا نخواهند داشت. کوچک و بزرگ "
1062
  "بودن حروف مهم است."
1063
 
1064
- #: ../../admin/config/index.php:135
1065
  msgid ""
1066
  "Specify the minimum <a href='http://codex.wordpress.org/"
1067
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
@@ -1072,7 +1075,7 @@ msgstr ""
1072
  "target='_new'> توانایی</a> برای دسترسی برای تنظیمات را مشخص کنید. این فهرست "
1073
  "سفید اختیارات کاربران خاص را لفو میکند."
1074
 
1075
- #: ../../admin/config/index.php:136
1076
  msgid ""
1077
  "List all the users who can edit these options, separated by commas. Please "
1078
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
@@ -1081,11 +1084,11 @@ msgstr ""
1081
  "فهرست کاربرانی که توانایی ویرایش این گزینه ها را دارند، تفکیک شده با ویرگول. "
1082
  "از وارد کردن نام خود در این فهرست مطمئن شوید."
1083
 
1084
- #: ../../admin/config/index.php:152
1085
  msgid "Read access: username not found"
1086
  msgstr "دست‌رسی خواندن: شناسه کاربری یافت نشد"
1087
 
1088
- #: ../../admin/config/index.php:165 ../../admin/config/index.php:196
1089
  msgid ""
1090
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
1091
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
@@ -1095,15 +1098,15 @@ msgstr ""
1095
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> نقش و توانایی</a> "
1096
  "مراجعه کنید."
1097
 
1098
- #: ../../admin/config/index.php:183
1099
  msgid "Config access: username not found"
1100
  msgstr "دست‌رسی پیکربندی: شناسه کاربری یافت نشد"
1101
 
1102
- #: ../../admin/config/index.php:207
1103
  msgid "Detect Smoothing"
1104
  msgstr "یافتن اسموتینگ"
1105
 
1106
- #: ../../admin/config/index.php:207
1107
  msgid ""
1108
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
1109
  "This option required Spy Mode to be enabled."
@@ -1111,11 +1114,11 @@ msgstr ""
1111
  " تشخیص دادن مرورگرهایی که از ضد-بدنمایی (font smoothing) استفاده میکنند. این "
1112
  "گزینه نیاز به فعال کردن «دید دزدکی» دارد."
1113
 
1114
- #: ../../admin/config/index.php:208
1115
  msgid "Track Outbound Clicks"
1116
  msgstr "ره‌گیری کلیک های بیرونی"
1117
 
1118
- #: ../../admin/config/index.php:208
1119
  msgid ""
1120
  "Track when your visitors click on link to external websites. This option "
1121
  "required Spy Mode to be enabled."
@@ -1123,33 +1126,34 @@ msgstr ""
1123
  "پیوندهایی که بازدیدکننده را به خارج از پایگاه ها میبرد رهگیری کنید. این "
1124
  "گزینه نیاز به فعال کردن دید دزدکی دارد."
1125
 
1126
- #: ../../admin/config/index.php:209
1127
  msgid "Session Duration"
1128
  msgstr "مدت جلسه"
1129
 
1130
- #: ../../admin/config/index.php:209
 
1131
  msgid ""
1132
- "How many seconds should a human session on your site last? Google Analytics "
1133
- "sets it to 1800 seconds."
1134
  msgstr ""
1135
  "چند ثانیه جلسه (انسان) در پایگاه به طول انجامد؟ گوگل آنالیتیک این مقدار را "
1136
  "۱۸۰۰ ثانیه در نظر می‌گیرد."
1137
 
1138
- #: ../../admin/config/index.php:210
1139
  msgid "Extend Session"
1140
  msgstr "گسترش جلسه"
1141
 
1142
- #: ../../admin/config/index.php:210
1143
  msgid "Extend the duration of a session each time the user visits a new page."
1144
  msgstr ""
1145
  "هر بار که کاربر یک صفحه جدید را دیدن می‌کند مدت جلسه را به این مقدار گسترش "
1146
  "می‌دهد."
1147
 
1148
- #: ../../admin/config/index.php:211
1149
  msgid "Enable CDN"
1150
  msgstr "فعال‌سازی CDN"
1151
 
1152
- #: ../../admin/config/index.php:211
1153
  msgid ""
1154
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
1155
  "by serving our tracking code from their fast and reliable network (free "
@@ -1159,11 +1163,11 @@ msgstr ""
1159
  "استفاده کنید و از خدمات ردگیری ما در شبکه سریع و مطمئن بهره مند شوید "
1160
  "(رایگان)."
1161
 
1162
- #: ../../admin/config/index.php:212
1163
  msgid "Extensions to Track"
1164
  msgstr "پسوندهایی که رهیابی شوند"
1165
 
1166
- #: ../../admin/config/index.php:212
1167
  msgid ""
1168
  "List all the file extensions that you want to be treated as Downloads. "
1169
  "Please note that links pointing to external resources (i.e. PDFs on a "
@@ -1175,56 +1179,41 @@ msgstr ""
1175
  "باشید که پیوندهای منابع خارجی (مثل پی دی اف در پایگاه دیگر) بارگیری محسوب "
1176
  "میشود و نه پیوند بیرونی اگر پسوند آنها با این فهرست تطبیق داشته باشد."
1177
 
1178
- #: ../../admin/config/index.php:215
1179
  msgid "IP Lookup"
1180
  msgstr "ره‌گیری بر اساس نشانی آی‌پی"
1181
 
1182
- #: ../../admin/config/index.php:215
1183
  msgid "Customize the Geolocation service to be used in the reports."
1184
  msgstr "خدمات مکان-جفرافی برای گزارش ها را دلخواه کنید. "
1185
 
1186
- #: ../../admin/config/index.php:216
1187
  msgid "Custom CSS"
1188
  msgstr "سی‌اس‌اس دلخواه"
1189
 
1190
- #: ../../admin/config/index.php:216
 
1191
  msgid ""
1192
  "Paste here your custom stylesheet to personalize the way your reports look. "
1193
  "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1194
  "target='_blank'>Check the FAQ</a> for more information on how to use this "
1195
- "functionality."
1196
  msgstr ""
1197
  "سی‌اس‌اس دلخواه خود را اینجا وارد کنید و گزارش ها را شخصی کنید. برای اطلاع "
1198
  "بیشتر به<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1199
  "target='_blank'> سوالهای رایج</a> مراجعه کنید."
1200
 
1201
- #: ../../admin/config/index.php:217
1202
- msgid "Chart Annotations"
1203
- msgstr "حاشیه نمودار"
1204
-
1205
- #: ../../admin/config/index.php:217
1206
- msgid ""
1207
- "Add <em>markings</em> to each chart by specifying a date and its description "
1208
- "in the field below. Useful to keep track of special events and correlate "
1209
- "them to your analytics. Please use the following format:<code>YYYY MM DD HH:"
1210
- "mm=Description 1,YYYY MM DD HH:mm=Description 2</code>. For example: 2012 12 "
1211
- "31 23:55=New Year's Eve."
1212
- msgstr ""
1213
- "اضافه کردن تاریخ و توضیحات در ناحیه های زیر میتواند در رهگیری رویداد ها و "
1214
- "مرتبط کردن آنها مفید باشد. لطفا از این نگارش استفاده کنید: <code>YYYY MM DD "
1215
- "HH:mm=Description 1,YYYY MM DD HH:mm=Description 2</code>. 2012 12 31 "
1216
- "23:55=New Year's Eve برای مثال."
1217
-
1218
  #: ../../admin/config/index.php:218
1219
  msgid "Enable UAN"
1220
  msgstr "فعال‌سازی UAN"
1221
 
1222
  #: ../../admin/config/index.php:218
 
1223
  msgid ""
1224
- "Collect data about unknown user agents, and send it anonymously to our "
1225
- "server for analysis. This allows us to contribute to the <a href='http://"
1226
- "browscap.co/' target='_blank'>BrowsCap opensource project</a>, and improve "
1227
- "the accuracy of SlimStat's browser detection functionality."
1228
  msgstr ""
1229
  " میتوانید اطلاعات کابر مشکوک را برای تحلیل به صورت ناشناس برای ما ارسال "
1230
  "کنید. با کمک کردن به <a href='http://browscap.co/' target='_blank'>BrowsCap "
@@ -1339,7 +1328,7 @@ msgid "is not empty"
1339
  msgstr "خالی نیست"
1340
 
1341
  #: ../../admin/config/maintenance.php:138 ../../admin/view/index.php:32
1342
- #: ../../admin/view/index.php:77
1343
  msgid "Apply"
1344
  msgstr "انجام"
1345
 
@@ -2621,7 +2610,7 @@ msgid "l-zu-za"
2621
  msgstr ""
2622
 
2623
  #: ../../admin/lang/dynamic_strings.php:298
2624
- #: ../../admin/view/wp-slimstat-reports.php:495
2625
  msgid "l-"
2626
  msgstr ""
2627
 
@@ -2637,51 +2626,58 @@ msgstr ""
2637
  msgid "c-xy"
2638
  msgstr "آدرس محلی"
2639
 
2640
- #: ../../admin/view/index.php:47 ../../admin/view/wp-slimstat-reports.php:680
2641
  msgid "Today"
2642
  msgstr "امروز‍"
2643
 
2644
- #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:681
2645
  msgid "Yesterday"
2646
  msgstr "دیروز"
2647
 
2648
- #: ../../admin/view/index.php:49
2649
  msgid "Last 7 Days"
2650
  msgstr "۷ روز اخیر"
2651
 
2652
- #: ../../admin/view/index.php:50
2653
- msgid "Last 30 Days"
 
2654
  msgstr "۳۰ روز اخیر"
2655
 
2656
- #: ../../admin/view/index.php:51
2657
  msgid "Last 90 Days"
2658
  msgstr "۹۰ روز اخیر"
2659
 
2660
- #: ../../admin/view/index.php:52
2661
- msgid "This Year"
 
2662
  msgstr "امسال"
2663
 
2664
- #: ../../admin/view/index.php:53
2665
  msgid "Date Range"
2666
  msgstr "محدوده زمانی"
2667
 
2668
- #: ../../admin/view/index.php:55 ../../admin/view/wp-slimstat-reports.php:72
2669
  msgid "Day"
2670
  msgstr "روز"
2671
 
2672
- #: ../../admin/view/index.php:65 ../../admin/view/wp-slimstat-reports.php:73
2673
  msgid "Month"
2674
  msgstr "ماه"
2675
 
2676
- #: ../../admin/view/index.php:74 ../../admin/view/wp-slimstat-reports.php:74
2677
  msgid "Year"
2678
  msgstr "سال"
2679
 
2680
- #: ../../admin/view/index.php:109
 
 
 
 
 
2681
  msgid "Your report here"
2682
  msgstr "گزارش شما این‌جا"
2683
 
2684
- #: ../../admin/view/index.php:111
2685
  msgid ""
2686
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
2687
  "Just write a new plugin that retrieves the desired information from the "
@@ -2694,13 +2690,13 @@ msgstr ""
2694
  "قلاب میکند.برای اطلاع بیشتر به صفحه<a href=\"http://wordpress.org/tags/wp-"
2695
  "slimstat?forum_id=10\" target=\"_blank\"> پشتیبانی </a>مراجعه کنید."
2696
 
2697
- #: ../../admin/view/index.php:125 ../../admin/view/wp-slimstat-reports.php:671
2698
- #: ../../admin/view/wp-slimstat-reports.php:774
2699
- #: ../../admin/view/wp-slimstat-reports.php:1040
2700
  msgid "Pageviews"
2701
  msgstr "مشاهدات صفحات"
2702
 
2703
- #: ../../admin/view/index.php:128
2704
  msgid ""
2705
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2706
  "WP SlimStat leverages this information to identify returning visitors. "
@@ -2710,34 +2706,34 @@ msgstr ""
2710
  "WP SlimStat از این اطلاعات برای شناسایی «بیننده دوباره» استفاده میکند. در "
2711
  "نظر داشته باشید که بیننده ها شامل کاربران ثبت شده نیز میباشد."
2712
 
2713
- #: ../../admin/view/index.php:132
2714
  msgid "Take a sneak peek at what human visitors are doing on your website."
2715
  msgstr "نظارت بر اینکه کاربران در پایگاه شما چه میکنند"
2716
 
2717
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
2718
- #: ../../admin/view/index.php:176 ../../admin/view/right-now.php:146
2719
  msgid "Color codes"
2720
  msgstr "علامت رنگی"
2721
 
2722
- #: ../../admin/view/index.php:132
2723
  msgid "From a search result page"
2724
  msgstr "از صفحه نتایج جستجو"
2725
 
2726
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
2727
- #: ../../admin/view/index.php:176
2728
  msgid "Known Users"
2729
  msgstr "کاربران آشنا"
2730
 
2731
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
2732
- #: ../../admin/view/index.php:176
2733
  msgid "Other Humans"
2734
  msgstr "دیگران"
2735
 
2736
- #: ../../admin/view/index.php:136
2737
  msgid "Keywords used by your visitors to find your website on a search engine."
2738
  msgstr "عبارات کلیدی در موتورهای جستجو که بیننده را به پایگاه شما را یافته‌اند."
2739
 
2740
- #: ../../admin/view/index.php:139
2741
  msgid ""
2742
  "WP SlimStat retrieves live information from Alexa, Facebook and Google, to "
2743
  "measures your site's rankings. Values are updated every 12 hours. Filters "
@@ -2746,7 +2742,7 @@ msgstr ""
2746
  "با کسب اطلاعات خود از Google، Facebook و یا Alexa، رتبه خود را محک بزنید. "
2747
  "مقادیر هر ۱۲ ساعت به روز میشوند. صافی ها بالا در این گزارش کاربرد نمیشوند. "
2748
 
2749
- #: ../../admin/view/index.php:142
2750
  msgid ""
2751
  "We have teamed up with HackerNinja.com to offer you a free website security "
2752
  "scan. By clicking on Start Free Scan, your website will be analyzed to "
@@ -2757,11 +2753,11 @@ msgstr ""
2757
  "HackerNinja.com). با فشار دادن دکمه زیر، پایگاه شما برای ویروس و دیگر تهدید "
2758
  "ها کاوش میشود. هیچ اطلاعات شخصی به HackerNinja فرستاده نمیشود."
2759
 
2760
- #: ../../admin/view/index.php:145
2761
  msgid "Human Visits"
2762
  msgstr "بازدیدهای انسانی"
2763
 
2764
- #: ../../admin/view/index.php:148
2765
  msgid ""
2766
  "Internet Service Provider: a company which provides other companies or "
2767
  "individuals with access to the Internet. Your DSL or cable internet service "
@@ -2771,7 +2767,7 @@ msgstr ""
2771
  "اینترنت توسط یک شرکت خدماتی (ISP) برای شما فراهم میشود. میتوانید این نشانی "
2772
  "ای پی را با وارد کردن صافی نادیده بگیرید."
2773
 
2774
- #: ../../admin/view/index.php:151
2775
  msgid ""
2776
  "You can configure WP SlimStat to ignore a specific Country by setting the "
2777
  "corresponding filter under Settings > SlimStat > Filters."
@@ -2779,7 +2775,7 @@ msgstr ""
2779
  "میتوانید تنظیمات برنامه برای نادیده گرفتن بعضی کشورها را تغییر دهید:Settings "
2780
  "> SlimStat > Filters"
2781
 
2782
- #: ../../admin/view/index.php:154
2783
  msgid ""
2784
  "This report shows you what user agent families (no version considered) are "
2785
  "popular among your visitors."
@@ -2787,7 +2783,7 @@ msgstr ""
2787
  "این گزارش نشانگر عامل کابر (بدون در نظر گرفتن نسخه) که در میان بیننده ها "
2788
  "محبوب تر هستند میباشد."
2789
 
2790
- #: ../../admin/view/index.php:157
2791
  msgid ""
2792
  "This report shows you what operating system families (no version considered) "
2793
  "are popular among your visitors."
@@ -2795,11 +2791,11 @@ msgstr ""
2795
  "این گزارش نشانگر محیط عامل هایی (بدون در نظر گرفتن نسخه) که در میان بیننده "
2796
  "ها محبوب تر هستند میباشد."
2797
 
2798
- #: ../../admin/view/index.php:163
2799
  msgid "Average Pageviews per Visit"
2800
  msgstr "میان‌گین مشاهده صفحات در هر بازدید"
2801
 
2802
- #: ../../admin/view/index.php:166
2803
  msgid ""
2804
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
2805
  "left your site from the entrance (landing) page."
@@ -2807,11 +2803,11 @@ msgstr ""
2807
  " «صفحه وازده» یک «تک-صفحه» میباشد، یا آخرین صفحه ی دیده شده قبل از آنکه "
2808
  "بیننده پایگاه را ترک کند. "
2809
 
2810
- #: ../../admin/view/index.php:169
2811
  msgid "Searches performed using Wordpress' built-in search functionality."
2812
  msgstr "جستجوهایی که توسط جستجوی داخلی Wordpress انجام میشوند."
2813
 
2814
- #: ../../admin/view/index.php:173
2815
  msgid ""
2816
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
2817
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
@@ -2820,7 +2816,7 @@ msgstr ""
2820
  "جزئيات پیوند نشان میدهد که چندمین پیوند فشار داده شده است. <em>ID:xx</em> "
2821
  "هنگامی نشان داده میشود که پیوند مرتبط شناسه داشته باشد."
2822
 
2823
- #: ../../admin/view/index.php:176
2824
  msgid ""
2825
  "This report lists any <em>event</em> occurred on your website. Please refer "
2826
  "to the FAQ for more information on how to leverage this functionality."
@@ -2828,7 +2824,7 @@ msgstr ""
2828
  "این گزارش تمامی رویداد های پایگاه شما را فهرست میکند. لطفا برای کسب اطلاع "
2829
  "بیشتر در این مورد به بخش پرسش و پاسخ مراجعه کنید."
2830
 
2831
- #: ../../admin/view/index.php:179
2832
  msgid ""
2833
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2834
  "this report is not affected by the filters set here above."
@@ -2853,500 +2849,513 @@ msgid "Syndication Reader"
2853
  msgstr "پیوند ریدر"
2854
 
2855
  #: ../../admin/view/right-now.php:28
2856
- #: ../../admin/view/wp-slimstat-reports.php:438
2857
- #: ../../admin/view/wp-slimstat-reports.php:583
2858
  msgid "No data to display"
2859
  msgstr "داده‌ای برای نمایش نیست"
2860
 
2861
  # Unknown
2862
- #: ../../admin/view/right-now.php:53
2863
- #: ../../admin/view/wp-slimstat-reports.php:483
2864
- #: ../../admin/view/wp-slimstat-reports.php:621
2865
- #: ../../admin/view/wp-slimstat-reports.php:928
2866
  msgid "c-"
2867
  msgstr "Unknown"
2868
 
2869
- #: ../../admin/view/right-now.php:119
2870
- #: ../../admin/view/wp-slimstat-reports.php:537
2871
- #: ../../admin/view/wp-slimstat-reports.php:541
2872
- #: ../../admin/view/wp-slimstat-reports.php:603
2873
- #: ../../admin/view/wp-slimstat-reports.php:641
2874
  msgid "Open this URL in a new window"
2875
  msgstr "نشانی را در پنجره جدید باز کن"
2876
 
2877
- #: ../../admin/view/right-now.php:122
2878
  msgid "Local search results page"
2879
  msgstr "صفحه نتایج جستجوی محلی"
2880
 
2881
- #: ../../admin/view/right-now.php:129
2882
  msgid "Open this referrer in a new window"
2883
  msgstr "این ارجاعی دهنده را در پنجره جدید باز کن"
2884
 
2885
- #: ../../admin/view/right-now.php:130
2886
  msgid "Open this outbound link in a new window"
2887
  msgstr " پیوندهای بیرونی را در پنجره جدید باز کن"
2888
 
2889
- #: ../../admin/view/right-now.php:131
2890
  msgid "Date and Time"
2891
  msgstr "روز و ساعت"
2892
 
2893
- #: ../../admin/view/right-now.php:132
2894
  msgid "Content Type"
2895
  msgstr " نوع محتوا"
2896
 
2897
- #: ../../admin/view/right-now.php:147
2898
  msgid "Visit with keywords"
2899
  msgstr "کلمات کلیدی (جدا شده با کاما):"
2900
 
2901
- #: ../../admin/view/right-now.php:149
2902
  msgid "Known User"
2903
  msgstr "کاربر آشنا"
2904
 
2905
- #: ../../admin/view/right-now.php:150
2906
  msgid "Human Visitor"
2907
  msgstr "بیننده انسانی"
2908
 
2909
- #: ../../admin/view/right-now.php:151
2910
  msgid "Bot or Crawler"
2911
  msgstr "روبات یا خزنده"
2912
 
2913
- #: ../../admin/view/wp-slimstat-reports.php:44
2914
  msgid "IP Address"
2915
  msgstr "نشانی آی‌پی"
2916
 
2917
- #: ../../admin/view/wp-slimstat-reports.php:49
2918
  msgid "Domain"
2919
  msgstr "دامنه"
2920
 
2921
- #: ../../admin/view/wp-slimstat-reports.php:53
2922
  msgid "-- Advanced filters --"
2923
  msgstr "-- فیلترهای پیش‌رفته --"
2924
 
2925
- #: ../../admin/view/wp-slimstat-reports.php:54
2926
- #: ../../admin/view/wp-slimstat-reports.php:99
2927
  msgid "Browser Capabilities"
2928
  msgstr "قابلیت‌های مرورگر"
2929
 
2930
- #: ../../admin/view/wp-slimstat-reports.php:66
2931
  msgid "Resource ID"
2932
  msgstr "شناسه منابع"
2933
 
2934
- #: ../../admin/view/wp-slimstat-reports.php:71
2935
  msgid "Hour"
2936
  msgstr "ساعت"
2937
 
2938
- #: ../../admin/view/wp-slimstat-reports.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
2939
  msgid "Pageviews (chart)"
2940
  msgstr "مشاهده صفحات (نمودار)"
2941
 
2942
- #: ../../admin/view/wp-slimstat-reports.php:79
2943
  msgid "About WP SlimStat"
2944
  msgstr "درباره WP SlimStat"
2945
 
2946
- #: ../../admin/view/wp-slimstat-reports.php:80
2947
- #: ../../admin/view/wp-slimstat-reports.php:93
2948
  msgid "At a Glance"
2949
  msgstr "در یک نگاه"
2950
 
2951
- #: ../../admin/view/wp-slimstat-reports.php:81
2952
  msgid "Currently Online"
2953
  msgstr "حالا روی خط"
2954
 
2955
- #: ../../admin/view/wp-slimstat-reports.php:82
2956
- #: ../../admin/view/wp-slimstat-reports.php:117
2957
  msgid "Spy View"
2958
  msgstr "دید دزدکی"
2959
 
2960
- #: ../../admin/view/wp-slimstat-reports.php:83
2961
- #: ../../admin/view/wp-slimstat-reports.php:118
2962
  msgid "Recent Search Terms"
2963
  msgstr "عبارت‌های جستجو شده اخیر"
2964
 
2965
- #: ../../admin/view/wp-slimstat-reports.php:84
2966
  msgid "Top Pages"
2967
  msgstr "برترین صفحات"
2968
 
2969
- #: ../../admin/view/wp-slimstat-reports.php:85
2970
- #: ../../admin/view/wp-slimstat-reports.php:115
2971
  msgid "Top Traffic Sources"
2972
  msgstr "برترین منابع ترافیک"
2973
 
2974
- #: ../../admin/view/wp-slimstat-reports.php:86
2975
  msgid "Top Known Visitors"
2976
  msgstr "برترین بیننده های آشنا"
2977
 
2978
- #: ../../admin/view/wp-slimstat-reports.php:87
2979
- #: ../../admin/view/wp-slimstat-reports.php:113
2980
- #: ../../admin/view/wp-slimstat-reports.php:133
2981
  msgid "Top Search Terms"
2982
  msgstr "برترین عبارت های جستجو"
2983
 
2984
- #: ../../admin/view/wp-slimstat-reports.php:88
2985
- #: ../../admin/view/wp-slimstat-reports.php:100
2986
- #: ../../admin/view/wp-slimstat-reports.php:114
2987
  msgid "Top Countries"
2988
  msgstr "برترین کشورها"
2989
 
2990
- #: ../../admin/view/wp-slimstat-reports.php:89
2991
  msgid "Rankings"
2992
  msgstr "رتبه ها"
2993
 
2994
- #: ../../admin/view/wp-slimstat-reports.php:90
2995
  msgid "Security Scan"
2996
  msgstr "بررسی امنیت"
2997
 
2998
- #: ../../admin/view/wp-slimstat-reports.php:91
2999
  msgid "Top Language Families"
3000
  msgstr "برترین زبان‌ها"
3001
 
3002
- #: ../../admin/view/wp-slimstat-reports.php:92
3003
  msgid "Human Visits (chart)"
3004
  msgstr "مشاهدات انسانی (نمودار)"
3005
 
3006
- #: ../../admin/view/wp-slimstat-reports.php:94
3007
  msgid "Top Languages"
3008
  msgstr "بیش‌ترین زبان‌ها"
3009
 
3010
- #: ../../admin/view/wp-slimstat-reports.php:95
3011
  msgid "Top Browsers"
3012
  msgstr "برترین مرورگرها"
3013
 
3014
- #: ../../admin/view/wp-slimstat-reports.php:96
3015
  msgid "Top Service Providers"
3016
  msgstr "برترین خدمات دهنده‌ها"
3017
 
3018
- #: ../../admin/view/wp-slimstat-reports.php:97
3019
  msgid "Top Operating Systems"
3020
  msgstr "برترین محیط‌های عامل"
3021
 
3022
- #: ../../admin/view/wp-slimstat-reports.php:98
3023
  msgid "Top Screen Resolutions"
3024
  msgstr "برترین ابعاد صفحه نماش‌ها"
3025
 
3026
- #: ../../admin/view/wp-slimstat-reports.php:101
3027
  msgid "Visit Duration"
3028
  msgstr "طول دوره بازدید"
3029
 
3030
- #: ../../admin/view/wp-slimstat-reports.php:102
3031
- #: ../../admin/view/wp-slimstat-reports.php:119
3032
  msgid "Recent Countries"
3033
  msgstr "کشورهای اخیر"
3034
 
3035
- #: ../../admin/view/wp-slimstat-reports.php:103
3036
  msgid "Recent Screen Resolutions"
3037
  msgstr "ابعاد نمایش‌گرهای اخیر"
3038
 
3039
- #: ../../admin/view/wp-slimstat-reports.php:104
3040
  msgid "Recent Operating Systems"
3041
  msgstr "محیطهای عامل اخیر"
3042
 
3043
- #: ../../admin/view/wp-slimstat-reports.php:105
3044
  msgid "Recent Browsers"
3045
  msgstr "مرورگرهای اخیر"
3046
 
3047
- #: ../../admin/view/wp-slimstat-reports.php:106
3048
  msgid "Recent Languages"
3049
  msgstr "زبان‌های اخیر"
3050
 
3051
- #: ../../admin/view/wp-slimstat-reports.php:107
3052
  msgid "Top Browser Families"
3053
  msgstr "برترین مرورگرها"
3054
 
3055
- #: ../../admin/view/wp-slimstat-reports.php:108
3056
  msgid "Top OS Families"
3057
  msgstr "برترین محیط عامل ها"
3058
 
3059
- #: ../../admin/view/wp-slimstat-reports.php:109
3060
  msgid "Recent Users"
3061
  msgstr "کاربرهای اخیر"
3062
 
3063
- #: ../../admin/view/wp-slimstat-reports.php:110
3064
  msgid "Top Users"
3065
  msgstr "برترین کاربرها"
3066
 
3067
- #: ../../admin/view/wp-slimstat-reports.php:111
3068
  msgid "Traffic Sources (chart)"
3069
  msgstr "منابع ترافیک (نمودار)"
3070
 
3071
- #: ../../admin/view/wp-slimstat-reports.php:112
3072
  msgid "Summary"
3073
  msgstr "خلاصه"
3074
 
3075
- #: ../../admin/view/wp-slimstat-reports.php:116
3076
  msgid "Top Referring Search Engines"
3077
  msgstr "برترین موتور جستجو های ارجاع‌دهنده"
3078
 
3079
- #: ../../admin/view/wp-slimstat-reports.php:120
3080
- #: ../../admin/view/wp-slimstat-reports.php:136
3081
  msgid "Top Landing Pages"
3082
  msgstr "برترین صفحه های ورود"
3083
 
3084
- #: ../../admin/view/wp-slimstat-reports.php:121
3085
  msgid "Average Pageviews per Visit (chart)"
3086
  msgstr "میان‌گین مشاهده صفحات در بازدید(نمودار)"
3087
 
3088
- #: ../../admin/view/wp-slimstat-reports.php:122
3089
  msgid "Recent Posts"
3090
  msgstr "ارسال های اخیر"
3091
 
3092
- #: ../../admin/view/wp-slimstat-reports.php:123
3093
  msgid "Recent Bounce Pages"
3094
  msgstr "صفحات وازده اخیر"
3095
 
3096
- #: ../../admin/view/wp-slimstat-reports.php:124
3097
  msgid "Recent Feeds"
3098
  msgstr "خوراک‌های اخیر"
3099
 
3100
- #: ../../admin/view/wp-slimstat-reports.php:125
3101
  msgid "Recent Pages Not Found"
3102
  msgstr "صفحه هایی پیدا نشده اخیر"
3103
 
3104
- #: ../../admin/view/wp-slimstat-reports.php:126
3105
  msgid "Recent Internal Searches"
3106
  msgstr "جستجوهای داخلی اخیر"
3107
 
3108
- #: ../../admin/view/wp-slimstat-reports.php:127
3109
  msgid "Top Categories"
3110
  msgstr "برترین دسته‌ها"
3111
 
3112
- #: ../../admin/view/wp-slimstat-reports.php:128
3113
  msgid "Recent Outbound Links"
3114
  msgstr "پیوندهای بیرونی اخیر"
3115
 
3116
- #: ../../admin/view/wp-slimstat-reports.php:129
3117
  msgid "Recent Events"
3118
  msgstr "اتفاقات اخیر"
3119
 
3120
- #: ../../admin/view/wp-slimstat-reports.php:130
3121
  msgid "Top Posts"
3122
  msgstr "برترین ارسال ها"
3123
 
3124
- #: ../../admin/view/wp-slimstat-reports.php:131
3125
  msgid "Top Feeds"
3126
  msgstr "برترین خوراک‌ها"
3127
 
3128
- #: ../../admin/view/wp-slimstat-reports.php:132
3129
  msgid "Top Internal Searches"
3130
  msgstr "برترین جستجوهای داخلی"
3131
 
3132
- #: ../../admin/view/wp-slimstat-reports.php:134
3133
  msgid "Recent Categories"
3134
  msgstr "دسته‌های اخیر"
3135
 
3136
- #: ../../admin/view/wp-slimstat-reports.php:135
3137
  msgid "Top Pages Not Found"
3138
  msgstr "برترین صفحاتی که پیدا نشد"
3139
 
3140
- #: ../../admin/view/wp-slimstat-reports.php:137
3141
  msgid "Top Authors"
3142
  msgstr "برترین نویسنده‌ها"
3143
 
3144
- #: ../../admin/view/wp-slimstat-reports.php:138
3145
  msgid "Top Tags"
3146
  msgstr "برترین نشانه ها"
3147
 
3148
- #: ../../admin/view/wp-slimstat-reports.php:139
3149
  msgid "Recent Downloads"
3150
  msgstr "بارگیری های اخیر"
3151
 
3152
- #: ../../admin/view/wp-slimstat-reports.php:140
3153
  msgid "Top Outbound Links and Downloads"
3154
  msgstr "برترین پیوندهای بیرونی و بارگیری ها"
3155
 
3156
- #: ../../admin/view/wp-slimstat-reports.php:141
3157
  msgid "Your Website"
3158
  msgstr "تارنمای شما"
3159
 
3160
- #: ../../admin/view/wp-slimstat-reports.php:143
3161
  msgid "Activity Log"
3162
  msgstr "فهرست فعالیت ها"
3163
 
3164
- #: ../../admin/view/wp-slimstat-reports.php:241
3165
  msgid "Chart controls"
3166
  msgstr "کنترل‌های نمودار"
3167
 
3168
- #: ../../admin/view/wp-slimstat-reports.php:241
3169
  msgid "Use your mouse wheel to zoom in and out"
3170
  msgstr "از غلطانک موش‌واره برای بزرگ‌نمایی و کوچک‌نمایی استفاده کنید"
3171
 
3172
- #: ../../admin/view/wp-slimstat-reports.php:241
3173
  msgid "While zooming in, drag the chart to move to a different area"
3174
  msgstr ""
3175
  "زمانی‌که بزرگ‌نمایی می‌کنید، نمودار را می‌توانید بکشید و به نقاط دیگر بروید"
3176
 
3177
- #: ../../admin/view/wp-slimstat-reports.php:241
3178
  msgid "Double click on an empty region to reset the zoom level"
3179
  msgstr "بر یک ناحیه خالی دوبار کلیک کنید تا بزرگنمایی به حالت اولیه بازگردد"
3180
 
3181
- #: ../../admin/view/wp-slimstat-reports.php:242
3182
  msgid ""
3183
  "Click on a data point to display the activity chart for each hour of that day"
3184
  msgstr "روی نقطه‌های داده کلیک کنید تا نمودار فعالیت آن ساعت را مشاهده کنید"
3185
 
3186
- #: ../../admin/view/wp-slimstat-reports.php:274
3187
  msgid "src"
3188
  msgstr "منبع"
3189
 
3190
- #: ../../admin/view/wp-slimstat-reports.php:275
3191
  msgid "serp"
3192
  msgstr ""
3193
 
3194
- #: ../../admin/view/wp-slimstat-reports.php:280
3195
  msgid "Go to the corresponding search engine result page"
3196
  msgstr "برو به صفحه مرتبط با این جستجو"
3197
 
3198
- #: ../../admin/view/wp-slimstat-reports.php:283
3199
  msgid "Go to the referring page"
3200
  msgstr "برو به صفحه ارجاع‌دهنده"
3201
 
3202
- #: ../../admin/view/wp-slimstat-reports.php:302
3203
  msgid "Remove filter for"
3204
  msgstr "حذف فیلترها از"
3205
 
3206
- #: ../../admin/view/wp-slimstat-reports.php:309
3207
  msgid "Reset All"
3208
  msgstr "بازنشانی همه"
3209
 
3210
- #: ../../admin/view/wp-slimstat-reports.php:312
3211
  msgid "Current filters:"
3212
  msgstr "فیلترهای جاری:"
3213
 
3214
- #: ../../admin/view/wp-slimstat-reports.php:316
3215
  msgid "Refresh"
3216
  msgstr "تازه سازی"
3217
 
3218
- #: ../../admin/view/wp-slimstat-reports.php:353
3219
  #, php-format
3220
  msgid "Results %s - %s of %s"
3221
  msgstr " نتایج %s - %s از %s"
3222
 
3223
- #: ../../admin/view/wp-slimstat-reports.php:355
3224
  msgid "Refresh in"
3225
  msgstr "تازه سازی در"
3226
 
3227
- #: ../../admin/view/wp-slimstat-reports.php:377
3228
- #: ../../admin/view/wp-slimstat-reports.php:389
3229
  #, php-format
3230
  msgid "Daily %s"
3231
  msgstr "%s روزانه"
3232
 
3233
- #: ../../admin/view/wp-slimstat-reports.php:380
3234
  #, php-format
3235
  msgid "%s Minute by Minute"
3236
  msgstr "%s دقیقه به دقیقه"
3237
 
3238
- #: ../../admin/view/wp-slimstat-reports.php:383
3239
  #, php-format
3240
  msgid "Hourly %s"
3241
  msgstr "%s ساعتی"
3242
 
3243
- #: ../../admin/view/wp-slimstat-reports.php:386
3244
  #, php-format
3245
  msgid "Monthly %s"
3246
  msgstr "%s ماهانه"
3247
 
3248
- #: ../../admin/view/wp-slimstat-reports.php:465
3249
  msgid "Category ID"
3250
  msgstr "شناسه دسته"
3251
 
3252
- #: ../../admin/view/wp-slimstat-reports.php:498
3253
  msgid "OS Code"
3254
  msgstr "کد محیط عامل"
3255
 
3256
- #: ../../admin/view/wp-slimstat-reports.php:508
3257
  msgid "Referrer"
3258
  msgstr "ارجاع دهنده"
3259
 
3260
- #: ../../admin/view/wp-slimstat-reports.php:532
3261
- #: ../../admin/view/wp-slimstat-reports.php:709
3262
- #: ../../admin/view/wp-slimstat-reports.php:718
3263
- #: ../../admin/view/wp-slimstat-reports.php:724
3264
- #: ../../admin/view/wp-slimstat-reports.php:730
3265
- #: ../../admin/view/wp-slimstat-reports.php:736
3266
- #: ../../admin/view/wp-slimstat-reports.php:742
3267
- #: ../../admin/view/wp-slimstat-reports.php:748
3268
- #: ../../admin/view/wp-slimstat-reports.php:754
3269
  msgid "Hits"
3270
  msgstr "بازدیدها"
3271
 
3272
- #: ../../admin/view/wp-slimstat-reports.php:600
3273
  msgid "Search for"
3274
  msgstr "جستجو به دنبال"
3275
 
3276
- #: ../../admin/view/wp-slimstat-reports.php:631
3277
- #: ../../admin/view/wp-slimstat-reports.php:641
3278
  msgid "Source"
3279
  msgstr "منبع"
3280
 
3281
- #: ../../admin/view/wp-slimstat-reports.php:633
3282
  msgid "Keywords"
3283
  msgstr "کلمات کلیدی"
3284
 
3285
- #: ../../admin/view/wp-slimstat-reports.php:641
3286
  #, php-format
3287
  msgid "Filter results where resource equals %s"
3288
  msgstr "نتایج را فیلتر کن وقتی منبع مساوی‌ست با %s"
3289
 
3290
- #: ../../admin/view/wp-slimstat-reports.php:651
3291
  msgid "Total Pageviews"
3292
  msgstr "همه مشاهدات صفحات"
3293
 
3294
- #: ../../admin/view/wp-slimstat-reports.php:652
3295
  msgid "DB Size"
3296
  msgstr "اندازه پایگاه داده"
3297
 
3298
- #: ../../admin/view/wp-slimstat-reports.php:653
3299
  msgid "Tracking Active"
3300
  msgstr "ردگیری فعال"
3301
 
3302
- #: ../../admin/view/wp-slimstat-reports.php:654
3303
  msgid "Javascript Mode"
3304
  msgstr "فعال سازی حالت جاوااسکریپت"
3305
 
3306
- #: ../../admin/view/wp-slimstat-reports.php:655
3307
  msgid "Tracking Browser Caps"
3308
  msgstr "ردگیری قابلیت‌های مرورگر"
3309
 
3310
- #: ../../admin/view/wp-slimstat-reports.php:656
3311
  msgid "Auto purge"
3312
  msgstr "پاک‌سازی خودکار"
3313
 
3314
- #: ../../admin/view/wp-slimstat-reports.php:657
3315
  msgid "Oldest pageview"
3316
  msgstr "قدیمی‌ترین بازدید"
3317
 
3318
- #: ../../admin/view/wp-slimstat-reports.php:657
3319
  msgid "No visits"
3320
  msgstr "بازدیدی نیست"
3321
 
3322
- #: ../../admin/view/wp-slimstat-reports.php:670
3323
- #: ../../admin/view/wp-slimstat-reports.php:773
3324
  msgid ""
3325
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
3326
  "time the tracking code is executed."
3327
  msgstr ""
3328
  "درخواست بارگیری یک پرونده زنگام. هر اجرای ردگیری منجر به ثبت یک بازید میشود."
3329
 
3330
- #: ../../admin/view/wp-slimstat-reports.php:672
3331
  msgid "How many pages have been visited on average during the current period."
3332
  msgstr "چند صفحه به طور میانگین در "
3333
 
3334
- #: ../../admin/view/wp-slimstat-reports.php:673
3335
- #: ../../admin/view/wp-slimstat-reports.php:1053
3336
- msgid "Avg Pageviews"
3337
  msgstr "میان‌گین مشاهده صفحات"
3338
 
3339
- #: ../../admin/view/wp-slimstat-reports.php:674
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:675
3346
  msgid "From Search Results"
3347
  msgstr "از نتایج جستجو"
3348
 
3349
- #: ../../admin/view/wp-slimstat-reports.php:676
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"
@@ -3354,23 +3363,23 @@ msgstr ""
3354
  " این برای تشخیص دادن چندین درخواست بارگیری پرونده از یک آی پی ادرس و یا "
3355
  "درخواست از چند آی پی ادرس مختلف است."
3356
 
3357
- #: ../../admin/view/wp-slimstat-reports.php:677
3358
- #: ../../admin/view/wp-slimstat-reports.php:693
3359
- #: ../../admin/view/wp-slimstat-reports.php:1040
3360
- #: ../../admin/view/wp-slimstat-reports.php:1044
3361
- #: ../../admin/view/wp-slimstat-reports.php:1048
3362
  msgid "Unique IPs"
3363
  msgstr "آی‌پی‌های یکتا"
3364
 
3365
- #: ../../admin/view/wp-slimstat-reports.php:678
3366
  msgid "Last 5 minutes"
3367
  msgstr "۵ دقیقه اخیر"
3368
 
3369
- #: ../../admin/view/wp-slimstat-reports.php:679
3370
  msgid "Last 30 minutes"
3371
  msgstr "۳۰ دقیقه اخیر"
3372
 
3373
- #: ../../admin/view/wp-slimstat-reports.php:690
3374
  msgid ""
3375
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3376
  "multiple times if they perform multiple visits."
@@ -3378,102 +3387,102 @@ msgstr ""
3378
  "هر بازدید یک جلسه است که حداکثر ۳۰ دقیقه میباشد. «بیننده دوباره» چند بار "
3379
  "شمارش میشود اگر چند بار بازدید کنند."
3380
 
3381
- #: ../../admin/view/wp-slimstat-reports.php:691
3382
  msgid "Human visits"
3383
  msgstr "بازدیدهای انسانی"
3384
 
3385
- #: ../../admin/view/wp-slimstat-reports.php:692
3386
  msgid "It includes only traffic generated by human visitors."
3387
  msgstr "فقط شامل ترافیک انسانی میشود"
3388
 
3389
- #: ../../admin/view/wp-slimstat-reports.php:694
3390
- #: ../../admin/view/wp-slimstat-reports.php:785
3391
  msgid ""
3392
  "Percentage of single-page visits, i.e. visits in which the person left your "
3393
  "site from the entrance page."
3394
  msgstr "درصد بازدید «تک-صفحه» ها؛ یعنی بازدیدی که فقط «صفحه ورودی» بود."
3395
 
3396
- #: ../../admin/view/wp-slimstat-reports.php:695
3397
  msgid "Bounce rate"
3398
  msgstr "میزان وازده گی"
3399
 
3400
- #: ../../admin/view/wp-slimstat-reports.php:696
3401
  msgid "Visitors who had previously left a comment on your blog."
3402
  msgstr "بازدیدکنندگانی که قبلا در تارنامه نظر ثبت کرده‌اند"
3403
 
3404
- #: ../../admin/view/wp-slimstat-reports.php:697
3405
  msgid "Known visitors"
3406
  msgstr "بیننده های آشنا"
3407
 
3408
- #: ../../admin/view/wp-slimstat-reports.php:698
3409
  msgid "Human users who visited your site only once."
3410
  msgstr "کاربرانی که فقط یک بار پایگاه شما را دیده‌اند."
3411
 
3412
- #: ../../admin/view/wp-slimstat-reports.php:699
3413
  msgid "New visitors"
3414
  msgstr "بازدیدکنندگان جدید"
3415
 
3416
- #: ../../admin/view/wp-slimstat-reports.php:700
3417
  msgid "Bots"
3418
  msgstr "ربات‌ها"
3419
 
3420
- #: ../../admin/view/wp-slimstat-reports.php:701
3421
  msgid "Pages per visit"
3422
  msgstr "صفحات در بازدید"
3423
 
3424
- #: ../../admin/view/wp-slimstat-reports.php:702
3425
- #: ../../admin/view/wp-slimstat-reports.php:1053
3426
  msgid "Longest visit"
3427
  msgstr "طولانی‌ترین مشاهده صفحات"
3428
 
3429
- #: ../../admin/view/wp-slimstat-reports.php:702
3430
  msgid "hits"
3431
  msgstr "مشاهدات"
3432
 
3433
- #: ../../admin/view/wp-slimstat-reports.php:720
3434
  msgid "0 - 30 seconds"
3435
  msgstr "۰ تا ۳۰ ثانیه"
3436
 
3437
- #: ../../admin/view/wp-slimstat-reports.php:726
3438
  msgid "31 - 60 seconds"
3439
  msgstr "۳۱ تا ۶۰ ثانیه"
3440
 
3441
- #: ../../admin/view/wp-slimstat-reports.php:732
3442
  msgid "1 - 3 minutes"
3443
  msgstr "۱ تا ۳ دقیقه"
3444
 
3445
- #: ../../admin/view/wp-slimstat-reports.php:738
3446
  msgid "3 - 5 minutes"
3447
  msgstr "۳ تا ۵ دقیقه"
3448
 
3449
- #: ../../admin/view/wp-slimstat-reports.php:744
3450
  msgid "5 - 7 minutes"
3451
  msgstr "۵ تا ۷ دقیقه"
3452
 
3453
- #: ../../admin/view/wp-slimstat-reports.php:750
3454
  msgid "7 - 10 minutes"
3455
  msgstr "۷ تا ۱۰ دقیقه"
3456
 
3457
- #: ../../admin/view/wp-slimstat-reports.php:756
3458
  msgid "More than 10 minutes"
3459
  msgstr "بیش از ۱۰ دقیقه"
3460
 
3461
- #: ../../admin/view/wp-slimstat-reports.php:765
3462
  msgid "Average time on site"
3463
  msgstr " میان‌گین دیدن از پایگاه"
3464
 
3465
- #: ../../admin/view/wp-slimstat-reports.php:775
3466
  msgid ""
3467
  "A referrer (or referring site) is the site that a visitor previously visited "
3468
  "before following a link to your site."
3469
  msgstr ""
3470
  "ارجاع دهنده (یا پایگاه ارجاع دهنده) که بیننده را به پایگاه شما پیوند زده است."
3471
 
3472
- #: ../../admin/view/wp-slimstat-reports.php:776
3473
  msgid "Unique Referrers"
3474
  msgstr "ارجاع‌دهنده‌های یکتا"
3475
 
3476
- #: ../../admin/view/wp-slimstat-reports.php:777
3477
  msgid ""
3478
  "Visitors who visited the site by typing the URL directly into their browser. "
3479
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -3484,21 +3493,21 @@ msgstr ""
3484
  "کاربرانی که با استفاده از bookmarks/favorites، و یا از پیوندهایی در نامک و "
3485
  "مدارک که متغییر ردگیری ندارند نیز بشود."
3486
 
3487
- #: ../../admin/view/wp-slimstat-reports.php:778
3488
  msgid "Direct Pageviews"
3489
  msgstr "مشاهده صفحات بی‌واسطه"
3490
 
3491
- #: ../../admin/view/wp-slimstat-reports.php:779
3492
  msgid ""
3493
  "Visitors who came to your site via searches on Google or some other search "
3494
  "engine."
3495
  msgstr "کاربرانی که از گوگل یا سایر موتورهای جستجو به پایگاه شما آمده‌اند."
3496
 
3497
- #: ../../admin/view/wp-slimstat-reports.php:780
3498
  msgid "From a search result"
3499
  msgstr "از نتایج جستجو"
3500
 
3501
- #: ../../admin/view/wp-slimstat-reports.php:781
3502
  msgid ""
3503
  "The first page that a user views during a session. This is also known as the "
3504
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -3509,76 +3518,76 @@ msgstr ""
3509
  "به عنوان مثال اگر کاربری برای «بستنی» جستجو کند و در صفحه اصلی شما هدایت "
3510
  "شود، در آن جلسه به عنوان «صفحه ورودی» حساب میشود."
3511
 
3512
- #: ../../admin/view/wp-slimstat-reports.php:782
3513
  msgid "Unique Landing Pages"
3514
  msgstr "صفحات فرودی خاص"
3515
 
3516
- #: ../../admin/view/wp-slimstat-reports.php:783
3517
  msgid "Number of single-page visits to your site over the selected period."
3518
  msgstr "تعداد بازدید «تک-صفحه» به پایگاه شما در بازه زمانی انتخاب شده."
3519
 
3520
- #: ../../admin/view/wp-slimstat-reports.php:784
3521
  msgid "Bounce Pages"
3522
  msgstr "صفحات وازده"
3523
 
3524
- #: ../../admin/view/wp-slimstat-reports.php:786
3525
  msgid "New Visitors Rate"
3526
  msgstr "میزان بازدیدکنندگان جدید"
3527
 
3528
- #: ../../admin/view/wp-slimstat-reports.php:787
3529
  msgid ""
3530
  "Visitors who visited the site in the last 5 minutes coming from a search "
3531
  "engine."
3532
  msgstr "کاربرانی که در ۵ دقیقه گذشته از یک موتور جستجو به پایگاه شما آمده‌اند."
3533
 
3534
- #: ../../admin/view/wp-slimstat-reports.php:788
3535
  msgid "Currently from search engines"
3536
  msgstr "هم‌اکنون از موتورهای جستجو"
3537
 
3538
- #: ../../admin/view/wp-slimstat-reports.php:856
3539
  msgid "Number of pages in your site included in Google's index."
3540
  msgstr "تعداد صفحاتی که در فهرست گوگل شمرده شده است."
3541
 
3542
- #: ../../admin/view/wp-slimstat-reports.php:857
3543
  msgid "Google Index"
3544
  msgstr "اندیس گوگل"
3545
 
3546
- #: ../../admin/view/wp-slimstat-reports.php:858
3547
  msgid "Number of pages, according to Google, that link back to your site."
3548
  msgstr "تعداد صفحات که به گفته گوگل به پایگاه پیوند میدهند. "
3549
 
3550
- #: ../../admin/view/wp-slimstat-reports.php:859
3551
  msgid "Google Backlinks"
3552
  msgstr ""
3553
 
3554
- #: ../../admin/view/wp-slimstat-reports.php:860
3555
  msgid ""
3556
  "How many times the Facebook Like button has been approximately clicked on "
3557
  "your site."
3558
  msgstr "چند بار Facebook Like در پایگاه شما کلیک شده است."
3559
 
3560
- #: ../../admin/view/wp-slimstat-reports.php:861
3561
  msgid "Facebook Likes"
3562
  msgstr "لایک های فیسبوک"
3563
 
3564
- #: ../../admin/view/wp-slimstat-reports.php:862
3565
  msgid ""
3566
  "How many times your site has been shared by someone on the social network."
3567
  msgstr "چند بار پایگاه شما در شبکه های اجتماعی بخش شده است"
3568
 
3569
- #: ../../admin/view/wp-slimstat-reports.php:863
3570
  msgid "Facebook Shares"
3571
  msgstr "بخش های فیسبوک"
3572
 
3573
- #: ../../admin/view/wp-slimstat-reports.php:864
3574
  msgid "How many times links to your website have been clicked on Facebook."
3575
  msgstr "چند بار پایگاه شما در Facebook فشار داده شده است."
3576
 
3577
- #: ../../admin/view/wp-slimstat-reports.php:865
3578
  msgid "Facebook Clicks"
3579
  msgstr "Facebook Clicks"
3580
 
3581
- #: ../../admin/view/wp-slimstat-reports.php:866
3582
  msgid ""
3583
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3584
  "traffic data."
@@ -3586,1190 +3595,1213 @@ msgstr ""
3586
  "شرکت Alexa بخشی از Amazon.com میباشد که گزارش پایگاه های تبلیغاتی را انجام "
3587
  "میدهد."
3588
 
3589
- #: ../../admin/view/wp-slimstat-reports.php:867
3590
  msgid "Alexa World Rank"
3591
  msgstr ""
3592
 
3593
- #: ../../admin/view/wp-slimstat-reports.php:868
3594
  msgid "Alexa Country Rank"
3595
  msgstr ""
3596
 
3597
- #: ../../admin/view/wp-slimstat-reports.php:869
3598
  msgid "Alexa Popularity"
3599
  msgstr ""
3600
 
3601
- #: ../../admin/view/wp-slimstat-reports.php:882
3602
  msgid "Bing Test"
3603
  msgstr ""
3604
 
3605
- #: ../../admin/view/wp-slimstat-reports.php:883
3606
  msgid "AntiVirus Scan"
3607
  msgstr "ویروسیابی"
3608
 
3609
- #: ../../admin/view/wp-slimstat-reports.php:884
3610
  msgid "Google Bot Test"
3611
  msgstr ""
3612
 
3613
- #: ../../admin/view/wp-slimstat-reports.php:885
3614
  msgid "Scan for Hostile Strings"
3615
  msgstr "بررسی برای رشته خطرناک"
3616
 
3617
- #: ../../admin/view/wp-slimstat-reports.php:886
3618
  msgid "Generic Web Bot test"
3619
  msgstr ""
3620
 
3621
- #: ../../admin/view/wp-slimstat-reports.php:887
3622
  msgid "Google Safe Browsing List"
3623
  msgstr " فهرست پایگاه های امن گوگل"
3624
 
3625
- #: ../../admin/view/wp-slimstat-reports.php:888
3626
  msgid "Hostile External Links"
3627
  msgstr "پیوند خارجی خطرناک"
3628
 
3629
- #: ../../admin/view/wp-slimstat-reports.php:889
3630
  msgid "Other Treats"
3631
  msgstr " قاقالی‌لی"
3632
 
3633
- #: ../../admin/view/wp-slimstat-reports.php:902
3634
  msgid "Passed"
3635
  msgstr "قبول شد"
3636
 
3637
- #: ../../admin/view/wp-slimstat-reports.php:902
3638
  msgid "At Risk"
3639
  msgstr "در خطر"
3640
 
3641
- #: ../../admin/view/wp-slimstat-reports.php:905
3642
  msgid "Timed Out"
3643
  msgstr ""
3644
 
3645
  # Unknown
3646
- #: ../../admin/view/wp-slimstat-reports.php:919
3647
  msgid "c-xx"
3648
  msgstr "Unknown"
3649
 
3650
  # Afghanistan
3651
- #: ../../admin/view/wp-slimstat-reports.php:919
3652
  msgid "c-af"
3653
  msgstr "Afghanistan"
3654
 
3655
  # Åland Islands
3656
- #: ../../admin/view/wp-slimstat-reports.php:919
3657
  msgid "c-ax"
3658
  msgstr "Aland Islands"
3659
 
3660
  # Albania
3661
- #: ../../admin/view/wp-slimstat-reports.php:919
3662
  msgid "c-al"
3663
  msgstr "Albania"
3664
 
3665
  # Algeria
3666
- #: ../../admin/view/wp-slimstat-reports.php:919
3667
  msgid "c-dz"
3668
  msgstr "Algeria"
3669
 
3670
  # Andorra
3671
- #: ../../admin/view/wp-slimstat-reports.php:919
3672
  msgid "c-ad"
3673
  msgstr "Andorra"
3674
 
3675
  # Angola
3676
- #: ../../admin/view/wp-slimstat-reports.php:919
3677
  msgid "c-ao"
3678
  msgstr "Angola"
3679
 
3680
  # Anguilla
3681
- #: ../../admin/view/wp-slimstat-reports.php:919
3682
  msgid "c-ai"
3683
  msgstr "Anguilla"
3684
 
3685
  # Antigua and Barbuda
3686
- #: ../../admin/view/wp-slimstat-reports.php:919
3687
  msgid "c-ag"
3688
  msgstr "Antigua and Barbuda"
3689
 
3690
  # Argentina
3691
- #: ../../admin/view/wp-slimstat-reports.php:919
3692
  msgid "c-ar"
3693
  msgstr "Argentina"
3694
 
3695
  # Armenia
3696
- #: ../../admin/view/wp-slimstat-reports.php:919
3697
  msgid "c-am"
3698
  msgstr "Armenia"
3699
 
3700
  # Aruba
3701
- #: ../../admin/view/wp-slimstat-reports.php:919
3702
  msgid "c-aw"
3703
  msgstr "Aruba"
3704
 
3705
  # Australia
3706
- #: ../../admin/view/wp-slimstat-reports.php:919
3707
  msgid "c-au"
3708
  msgstr "Australia"
3709
 
3710
  # Austria
3711
- #: ../../admin/view/wp-slimstat-reports.php:919
3712
  msgid "c-at"
3713
  msgstr "Austria"
3714
 
3715
  # Azerbaijan
3716
- #: ../../admin/view/wp-slimstat-reports.php:919
3717
  msgid "c-az"
3718
  msgstr "Azerbaijan"
3719
 
3720
  # Bahamas
3721
- #: ../../admin/view/wp-slimstat-reports.php:919
3722
  msgid "c-bs"
3723
  msgstr "Bahamas"
3724
 
3725
  # Bahrain
3726
- #: ../../admin/view/wp-slimstat-reports.php:919
3727
  msgid "c-bh"
3728
  msgstr "Bahrain"
3729
 
3730
  # Bangladesh
3731
- #: ../../admin/view/wp-slimstat-reports.php:919
3732
  msgid "c-bd"
3733
  msgstr "Bangladesh"
3734
 
3735
  # Barbados
3736
- #: ../../admin/view/wp-slimstat-reports.php:919
3737
  msgid "c-bb"
3738
  msgstr "Barbados"
3739
 
3740
  # Belarus
3741
- #: ../../admin/view/wp-slimstat-reports.php:919
3742
  msgid "c-by"
3743
  msgstr "Belarus"
3744
 
3745
  # Belgium
3746
- #: ../../admin/view/wp-slimstat-reports.php:919
3747
  msgid "c-be"
3748
  msgstr "Belgium"
3749
 
3750
  # Belize
3751
- #: ../../admin/view/wp-slimstat-reports.php:919
3752
  msgid "c-bz"
3753
  msgstr "Belize"
3754
 
3755
  # Benin
3756
- #: ../../admin/view/wp-slimstat-reports.php:919
3757
  msgid "c-bj"
3758
  msgstr "Benin"
3759
 
3760
  # Bermuda
3761
- #: ../../admin/view/wp-slimstat-reports.php:919
3762
  msgid "c-bm"
3763
  msgstr "Bermuda"
3764
 
3765
  # Bhutan
3766
- #: ../../admin/view/wp-slimstat-reports.php:919
3767
  msgid "c-bt"
3768
  msgstr "Bhutan"
3769
 
3770
  # Bolivia
3771
- #: ../../admin/view/wp-slimstat-reports.php:919
3772
  msgid "c-bo"
3773
  msgstr "Bolivia"
3774
 
3775
  # Bosnia and Herzegovina
3776
- #: ../../admin/view/wp-slimstat-reports.php:919
3777
  msgid "c-ba"
3778
  msgstr "Bosnia and Herzegovina"
3779
 
3780
  # Botswana
3781
- #: ../../admin/view/wp-slimstat-reports.php:919
3782
  msgid "c-bw"
3783
  msgstr "Botswana"
3784
 
3785
  # Brazil
3786
- #: ../../admin/view/wp-slimstat-reports.php:919
3787
  msgid "c-br"
3788
  msgstr "Brazil"
3789
 
3790
  # Brunei Darussalam
3791
- #: ../../admin/view/wp-slimstat-reports.php:919
3792
  msgid "c-bn"
3793
  msgstr "Brunei Darussalam"
3794
 
3795
  # Bulgaria
3796
- #: ../../admin/view/wp-slimstat-reports.php:919
3797
  msgid "c-bg"
3798
  msgstr "Bulgaria"
3799
 
3800
  # Burkina Faso
3801
- #: ../../admin/view/wp-slimstat-reports.php:919
3802
  msgid "c-bf"
3803
  msgstr "Burkina Faso"
3804
 
3805
  # Burundi
3806
- #: ../../admin/view/wp-slimstat-reports.php:919
3807
  msgid "c-bi"
3808
  msgstr "Burundi"
3809
 
3810
  # Cambodia
3811
- #: ../../admin/view/wp-slimstat-reports.php:919
3812
  msgid "c-kh"
3813
  msgstr "Cambodia"
3814
 
3815
  # Cameroon
3816
- #: ../../admin/view/wp-slimstat-reports.php:919
3817
  msgid "c-cm"
3818
  msgstr "Cameroon"
3819
 
3820
  # Canada
3821
- #: ../../admin/view/wp-slimstat-reports.php:919
3822
  msgid "c-ca"
3823
  msgstr "Canada"
3824
 
3825
  # Cape Verde
3826
- #: ../../admin/view/wp-slimstat-reports.php:919
3827
  msgid "c-cv"
3828
  msgstr "Cape Verde"
3829
 
3830
  # Cayman Islands
3831
- #: ../../admin/view/wp-slimstat-reports.php:919
3832
  msgid "c-ky"
3833
  msgstr "Cayman Islands"
3834
 
3835
  # Central African Republic
3836
- #: ../../admin/view/wp-slimstat-reports.php:919
3837
  msgid "c-cf"
3838
  msgstr "Central African Republic"
3839
 
3840
  # Chad
3841
- #: ../../admin/view/wp-slimstat-reports.php:919
3842
  msgid "c-td"
3843
  msgstr "Chad"
3844
 
3845
  # Chile
3846
- #: ../../admin/view/wp-slimstat-reports.php:919
3847
  msgid "c-cl"
3848
  msgstr "Chile"
3849
 
3850
  # China
3851
- #: ../../admin/view/wp-slimstat-reports.php:919
3852
  msgid "c-cn"
3853
  msgstr "China"
3854
 
3855
  # Colombia
3856
- #: ../../admin/view/wp-slimstat-reports.php:919
3857
  msgid "c-co"
3858
  msgstr "Colombia"
3859
 
3860
  # Comoros
3861
- #: ../../admin/view/wp-slimstat-reports.php:919
3862
  msgid "c-km"
3863
  msgstr "Comoros"
3864
 
3865
  # Congo
3866
- #: ../../admin/view/wp-slimstat-reports.php:919
3867
  msgid "c-cg"
3868
  msgstr "Congo"
3869
 
3870
  # The Democratic Republic of the Congo
3871
- #: ../../admin/view/wp-slimstat-reports.php:919
3872
  msgid "c-cd"
3873
  msgstr "The Democratic Republic of the Congo"
3874
 
3875
  # Costa Rica
3876
- #: ../../admin/view/wp-slimstat-reports.php:919
3877
  msgid "c-cr"
3878
  msgstr "Costa Rica"
3879
 
3880
  # Côte d'Ivoire
3881
- #: ../../admin/view/wp-slimstat-reports.php:919
3882
  msgid "c-ci"
3883
  msgstr "Côte d'Ivoire"
3884
 
3885
  # Croatia
3886
- #: ../../admin/view/wp-slimstat-reports.php:919
3887
  msgid "c-hr"
3888
  msgstr "Croatia"
3889
 
3890
  # Cuba
3891
- #: ../../admin/view/wp-slimstat-reports.php:919
3892
  msgid "c-cu"
3893
  msgstr "Cuba"
3894
 
3895
  # Cyprus
3896
- #: ../../admin/view/wp-slimstat-reports.php:919
3897
  msgid "c-cy"
3898
  msgstr "Cyprus"
3899
 
3900
  # Czech Republic
3901
- #: ../../admin/view/wp-slimstat-reports.php:919
3902
  msgid "c-cz"
3903
  msgstr "Czech Republic"
3904
 
3905
  # Denmark
3906
- #: ../../admin/view/wp-slimstat-reports.php:919
3907
  msgid "c-dk"
3908
  msgstr "Denmark"
3909
 
3910
  # Djibouti
3911
- #: ../../admin/view/wp-slimstat-reports.php:919
3912
  msgid "c-dj"
3913
  msgstr "Djibouti"
3914
 
3915
  # Dominica
3916
- #: ../../admin/view/wp-slimstat-reports.php:919
3917
  msgid "c-dm"
3918
  msgstr "Dominica"
3919
 
3920
  # Dominican Republic
3921
- #: ../../admin/view/wp-slimstat-reports.php:919
3922
  msgid "c-do"
3923
  msgstr "Dominican Republic"
3924
 
3925
  # Ecuador
3926
- #: ../../admin/view/wp-slimstat-reports.php:919
3927
  msgid "c-ec"
3928
  msgstr "Ecuador"
3929
 
3930
  # Egypt
3931
- #: ../../admin/view/wp-slimstat-reports.php:919
3932
  msgid "c-eg"
3933
  msgstr "Egypt"
3934
 
3935
  # El Salvador
3936
- #: ../../admin/view/wp-slimstat-reports.php:919
3937
  msgid "c-sv"
3938
  msgstr "El Salvador"
3939
 
3940
  # Equatorial Guinea
3941
- #: ../../admin/view/wp-slimstat-reports.php:919
3942
  msgid "c-gq"
3943
  msgstr "Equatorial Guinea"
3944
 
3945
  # Eritrea
3946
- #: ../../admin/view/wp-slimstat-reports.php:919
3947
  msgid "c-er"
3948
  msgstr "Eritrea"
3949
 
3950
  # Estonia
3951
- #: ../../admin/view/wp-slimstat-reports.php:919
3952
  msgid "c-ee"
3953
  msgstr "Estonia"
3954
 
3955
  # Ethiopia
3956
- #: ../../admin/view/wp-slimstat-reports.php:919
3957
  msgid "c-et"
3958
  msgstr "Ethiopia"
3959
 
3960
  # Faroe Islands
3961
- #: ../../admin/view/wp-slimstat-reports.php:919
3962
  msgid "c-fo"
3963
  msgstr "Faroe Islands"
3964
 
3965
  # Falkland Islands (Malvinas)
3966
- #: ../../admin/view/wp-slimstat-reports.php:919
3967
  msgid "c-fk"
3968
  msgstr "Falkland Islands (Malvinas)"
3969
 
3970
  # Fiji
3971
- #: ../../admin/view/wp-slimstat-reports.php:919
3972
  msgid "c-fj"
3973
  msgstr "Fiji"
3974
 
3975
  # Finland
3976
- #: ../../admin/view/wp-slimstat-reports.php:919
3977
  msgid "c-fi"
3978
  msgstr "Finland"
3979
 
3980
  # France
3981
- #: ../../admin/view/wp-slimstat-reports.php:919
3982
  msgid "c-fr"
3983
  msgstr "France"
3984
 
3985
  # French Guiana
3986
- #: ../../admin/view/wp-slimstat-reports.php:919
3987
  msgid "c-gf"
3988
  msgstr "French Guiana"
3989
 
3990
  # Gabon
3991
- #: ../../admin/view/wp-slimstat-reports.php:919
3992
  msgid "c-ga"
3993
  msgstr "Gabon"
3994
 
3995
  # Gambia
3996
- #: ../../admin/view/wp-slimstat-reports.php:919
3997
  msgid "c-gm"
3998
  msgstr "Gambia"
3999
 
4000
  # Georgia
4001
- #: ../../admin/view/wp-slimstat-reports.php:919
4002
  msgid "c-ge"
4003
  msgstr "Georgia"
4004
 
4005
  # Germany
4006
- #: ../../admin/view/wp-slimstat-reports.php:919
4007
  msgid "c-de"
4008
  msgstr "Germany"
4009
 
4010
  # Ghana
4011
- #: ../../admin/view/wp-slimstat-reports.php:919
4012
  msgid "c-gh"
4013
  msgstr "Ghana"
4014
 
4015
  # Greece
4016
- #: ../../admin/view/wp-slimstat-reports.php:919
4017
  msgid "c-gr"
4018
  msgstr "Greece"
4019
 
4020
  # Greenland
4021
- #: ../../admin/view/wp-slimstat-reports.php:919
4022
  msgid "c-gl"
4023
  msgstr "Greenland"
4024
 
4025
  # Grenada
4026
- #: ../../admin/view/wp-slimstat-reports.php:919
4027
  msgid "c-gd"
4028
  msgstr "Grenada"
4029
 
4030
  # Guadeloupe
4031
- #: ../../admin/view/wp-slimstat-reports.php:919
4032
  msgid "c-gp"
4033
  msgstr "Guadeloupe"
4034
 
4035
  # Guatemala
4036
- #: ../../admin/view/wp-slimstat-reports.php:919
4037
  msgid "c-gt"
4038
  msgstr "Guatemala"
4039
 
4040
  # Guinea
4041
- #: ../../admin/view/wp-slimstat-reports.php:919
4042
  msgid "c-gn"
4043
  msgstr "Guinea"
4044
 
4045
  # Guinea-Bissau
4046
- #: ../../admin/view/wp-slimstat-reports.php:919
4047
  msgid "c-gw"
4048
  msgstr "Guinea-Bissau"
4049
 
4050
  # Guyana
4051
- #: ../../admin/view/wp-slimstat-reports.php:919
4052
  msgid "c-gy"
4053
  msgstr "Guyana"
4054
 
4055
  # Haiti
4056
- #: ../../admin/view/wp-slimstat-reports.php:919
4057
  msgid "c-ht"
4058
  msgstr "Haiti"
4059
 
4060
  # Honduras
4061
- #: ../../admin/view/wp-slimstat-reports.php:919
4062
  msgid "c-hn"
4063
  msgstr "Honduras"
4064
 
4065
  # Hong Kong
4066
- #: ../../admin/view/wp-slimstat-reports.php:919
4067
  msgid "c-hk"
4068
  msgstr "Hong Kong"
4069
 
4070
  # Hungary
4071
- #: ../../admin/view/wp-slimstat-reports.php:919
4072
  msgid "c-hu"
4073
  msgstr "Hungary"
4074
 
4075
  # Iceland
4076
- #: ../../admin/view/wp-slimstat-reports.php:919
4077
  msgid "c-is"
4078
  msgstr "Iceland"
4079
 
4080
  # India
4081
- #: ../../admin/view/wp-slimstat-reports.php:919
4082
  msgid "c-in"
4083
  msgstr "India"
4084
 
4085
  # Indonesia
4086
- #: ../../admin/view/wp-slimstat-reports.php:919
4087
  msgid "c-id"
4088
  msgstr "Indonesia"
4089
 
4090
  # Islamic Republic of Iran
4091
- #: ../../admin/view/wp-slimstat-reports.php:919
4092
  msgid "c-ir"
4093
  msgstr "Islamic Republic of Iran"
4094
 
4095
  # Iraq
4096
- #: ../../admin/view/wp-slimstat-reports.php:919
4097
  msgid "c-iq"
4098
  msgstr "Iraq"
4099
 
4100
  # Ireland
4101
- #: ../../admin/view/wp-slimstat-reports.php:919
4102
  msgid "c-ie"
4103
  msgstr "Ireland"
4104
 
4105
  # Israel
4106
- #: ../../admin/view/wp-slimstat-reports.php:919
4107
  msgid "c-il"
4108
  msgstr "Israel"
4109
 
4110
  # Italy
4111
- #: ../../admin/view/wp-slimstat-reports.php:919
4112
  msgid "c-it"
4113
  msgstr "Italy"
4114
 
4115
  # Jamaica
4116
- #: ../../admin/view/wp-slimstat-reports.php:919
4117
  msgid "c-jm"
4118
  msgstr "Jamaica"
4119
 
4120
  # Japan
4121
- #: ../../admin/view/wp-slimstat-reports.php:919
4122
  msgid "c-jp"
4123
  msgstr "Japan"
4124
 
4125
  # Jordan
4126
- #: ../../admin/view/wp-slimstat-reports.php:919
4127
  msgid "c-jo"
4128
  msgstr "Jordan"
4129
 
4130
  # Kazakhstan
4131
- #: ../../admin/view/wp-slimstat-reports.php:919
4132
  msgid "c-kz"
4133
  msgstr "Kazakhstan"
4134
 
4135
  # Kenya
4136
- #: ../../admin/view/wp-slimstat-reports.php:919
4137
  msgid "c-ke"
4138
  msgstr "Kenya"
4139
 
4140
  # Nauru
4141
- #: ../../admin/view/wp-slimstat-reports.php:919
4142
  msgid "c-nr"
4143
  msgstr "Nauru"
4144
 
4145
  # Democratic People's Republic of Korea
4146
- #: ../../admin/view/wp-slimstat-reports.php:919
4147
  msgid "c-kp"
4148
  msgstr "Democratic People's Republic of Korea"
4149
 
4150
  # Republic of Korea
4151
- #: ../../admin/view/wp-slimstat-reports.php:919
4152
  msgid "c-kr"
4153
  msgstr "Republic of Korea"
4154
 
4155
- #: ../../admin/view/wp-slimstat-reports.php:919
4156
  msgid "c-kv"
4157
  msgstr ""
4158
 
4159
  # Kuwait
4160
- #: ../../admin/view/wp-slimstat-reports.php:919
4161
  msgid "c-kw"
4162
  msgstr "Kuwait"
4163
 
4164
  # Kyrgyzstan
4165
- #: ../../admin/view/wp-slimstat-reports.php:919
4166
  msgid "c-kg"
4167
  msgstr "Kyrgyzstan"
4168
 
4169
  # Lao People's Democratic Republic
4170
- #: ../../admin/view/wp-slimstat-reports.php:919
4171
  msgid "c-la"
4172
  msgstr "Lao People's Democratic Republic"
4173
 
4174
  # Latvia
4175
- #: ../../admin/view/wp-slimstat-reports.php:919
4176
  msgid "c-lv"
4177
  msgstr "Latvia"
4178
 
4179
  # Lebanon
4180
- #: ../../admin/view/wp-slimstat-reports.php:919
4181
  msgid "c-lb"
4182
  msgstr "Lebanon"
4183
 
4184
  # Lesotho
4185
- #: ../../admin/view/wp-slimstat-reports.php:919
4186
  msgid "c-ls"
4187
  msgstr "Lesotho"
4188
 
4189
  # Liberia
4190
- #: ../../admin/view/wp-slimstat-reports.php:919
4191
  msgid "c-lr"
4192
  msgstr "Liberia"
4193
 
4194
  # Libyan Arab Jamahiriya
4195
- #: ../../admin/view/wp-slimstat-reports.php:919
4196
  msgid "c-ly"
4197
  msgstr "Libyan Arab Jamahiriya"
4198
 
4199
  # Liechtenstein
4200
- #: ../../admin/view/wp-slimstat-reports.php:919
4201
  msgid "c-li"
4202
  msgstr "Liechtenstein"
4203
 
4204
  # Lithuania
4205
- #: ../../admin/view/wp-slimstat-reports.php:919
4206
  msgid "c-lt"
4207
  msgstr "Lithuania"
4208
 
4209
  # Luxembourg
4210
- #: ../../admin/view/wp-slimstat-reports.php:919
4211
  msgid "c-lu"
4212
  msgstr "Luxembourg"
4213
 
4214
  # The Former Yugoslav Republic of Macedonia
4215
- #: ../../admin/view/wp-slimstat-reports.php:919
4216
  msgid "c-mk"
4217
  msgstr "The Former Yugoslav Republic of Macedonia"
4218
 
4219
  # Madagascar
4220
- #: ../../admin/view/wp-slimstat-reports.php:919
4221
  msgid "c-mg"
4222
  msgstr "Madagascar"
4223
 
4224
  # Malawi
4225
- #: ../../admin/view/wp-slimstat-reports.php:919
4226
  msgid "c-mw"
4227
  msgstr "Malawi"
4228
 
4229
  # Malaysia
4230
- #: ../../admin/view/wp-slimstat-reports.php:919
4231
  msgid "c-my"
4232
  msgstr "Malaysia"
4233
 
4234
  # Mali
4235
- #: ../../admin/view/wp-slimstat-reports.php:919
4236
  msgid "c-ml"
4237
  msgstr "Mali"
4238
 
4239
  # Malta
4240
- #: ../../admin/view/wp-slimstat-reports.php:919
4241
  msgid "c-mt"
4242
  msgstr "Malta"
4243
 
4244
  # Martinique
4245
- #: ../../admin/view/wp-slimstat-reports.php:919
4246
  msgid "c-mq"
4247
  msgstr "Martinique"
4248
 
4249
  # Mauritania
4250
- #: ../../admin/view/wp-slimstat-reports.php:919
4251
  msgid "c-mr"
4252
  msgstr "Mauritania"
4253
 
4254
  # Mauritius
4255
- #: ../../admin/view/wp-slimstat-reports.php:919
4256
  msgid "c-mu"
4257
  msgstr "Mauritius"
4258
 
4259
  # Mexico
4260
- #: ../../admin/view/wp-slimstat-reports.php:919
4261
  msgid "c-mx"
4262
  msgstr "Mexico"
4263
 
4264
  # Moldova
4265
- #: ../../admin/view/wp-slimstat-reports.php:919
4266
  msgid "c-md"
4267
  msgstr "Moldova"
4268
 
4269
  # Mongolia
4270
- #: ../../admin/view/wp-slimstat-reports.php:919
4271
  msgid "c-mn"
4272
  msgstr "Mongolia"
4273
 
4274
  # Montenegro
4275
- #: ../../admin/view/wp-slimstat-reports.php:919
4276
  msgid "c-me"
4277
  msgstr "Montenegro"
4278
 
4279
  # Montserrat
4280
- #: ../../admin/view/wp-slimstat-reports.php:919
4281
  msgid "c-ms"
4282
  msgstr "Montserrat"
4283
 
4284
  # Morocco
4285
- #: ../../admin/view/wp-slimstat-reports.php:919
4286
  msgid "c-ma"
4287
  msgstr "Morocco"
4288
 
4289
  # Mozambique
4290
- #: ../../admin/view/wp-slimstat-reports.php:919
4291
  msgid "c-mz"
4292
  msgstr "Mozambique"
4293
 
4294
  # Myanmar
4295
- #: ../../admin/view/wp-slimstat-reports.php:919
4296
  msgid "c-mm"
4297
  msgstr "Myanmar"
4298
 
4299
  # Namibia
4300
- #: ../../admin/view/wp-slimstat-reports.php:919
4301
  msgid "c-na"
4302
  msgstr "Namibia"
4303
 
4304
  # Nepal
4305
- #: ../../admin/view/wp-slimstat-reports.php:919
4306
  msgid "c-np"
4307
  msgstr "Nepal"
4308
 
4309
  # Netherlands
4310
- #: ../../admin/view/wp-slimstat-reports.php:919
4311
  msgid "c-nl"
4312
  msgstr "Netherlands"
4313
 
4314
  # New Caledonia
4315
- #: ../../admin/view/wp-slimstat-reports.php:919
4316
  msgid "c-nc"
4317
  msgstr "New Caledonia"
4318
 
4319
  # New Zealand
4320
- #: ../../admin/view/wp-slimstat-reports.php:919
4321
  msgid "c-nz"
4322
  msgstr "New Zealand"
4323
 
4324
  # Nicaragua
4325
- #: ../../admin/view/wp-slimstat-reports.php:919
4326
  msgid "c-ni"
4327
  msgstr "Nicaragua"
4328
 
4329
  # Niger
4330
- #: ../../admin/view/wp-slimstat-reports.php:919
4331
  msgid "c-ne"
4332
  msgstr "Niger"
4333
 
4334
  # Nigeria
4335
- #: ../../admin/view/wp-slimstat-reports.php:919
4336
  msgid "c-ng"
4337
  msgstr "Nigeria"
4338
 
4339
  # Norway
4340
- #: ../../admin/view/wp-slimstat-reports.php:919
4341
  msgid "c-no"
4342
  msgstr "Norway"
4343
 
4344
  # Oman
4345
- #: ../../admin/view/wp-slimstat-reports.php:919
4346
  msgid "c-om"
4347
  msgstr "Oman"
4348
 
4349
  # Pakistan
4350
- #: ../../admin/view/wp-slimstat-reports.php:919
4351
  msgid "c-pk"
4352
  msgstr "Pakistan"
4353
 
4354
  # Palau
4355
- #: ../../admin/view/wp-slimstat-reports.php:919
4356
  msgid "c-pw"
4357
  msgstr "Palau"
4358
 
4359
  # Occupied Palestinian Territory
4360
- #: ../../admin/view/wp-slimstat-reports.php:919
4361
  msgid "c-ps"
4362
  msgstr "Occupied Palestinian Territory"
4363
 
4364
  # Panama
4365
- #: ../../admin/view/wp-slimstat-reports.php:919
4366
  msgid "c-pa"
4367
  msgstr "Panama"
4368
 
4369
  # Papua New Guinea
4370
- #: ../../admin/view/wp-slimstat-reports.php:919
4371
  msgid "c-pg"
4372
  msgstr "Papua New Guinea"
4373
 
4374
  # Paraguay
4375
- #: ../../admin/view/wp-slimstat-reports.php:919
4376
  msgid "c-py"
4377
  msgstr "Paraguay"
4378
 
4379
  # Peru
4380
- #: ../../admin/view/wp-slimstat-reports.php:919
4381
  msgid "c-pe"
4382
  msgstr "Peru"
4383
 
4384
  # Philippines
4385
- #: ../../admin/view/wp-slimstat-reports.php:919
4386
  msgid "c-ph"
4387
  msgstr "Philippines"
4388
 
4389
  # Poland
4390
- #: ../../admin/view/wp-slimstat-reports.php:919
4391
  msgid "c-pl"
4392
  msgstr "Poland"
4393
 
4394
  # Portugal
4395
- #: ../../admin/view/wp-slimstat-reports.php:919
4396
  msgid "c-pt"
4397
  msgstr "Portugal"
4398
 
4399
  # Puerto Rico
4400
- #: ../../admin/view/wp-slimstat-reports.php:919
4401
  msgid "c-pr"
4402
  msgstr "Puerto Rico"
4403
 
4404
  # Qatar
4405
- #: ../../admin/view/wp-slimstat-reports.php:919
4406
  msgid "c-qa"
4407
  msgstr "Qatar"
4408
 
4409
  # Réunion
4410
- #: ../../admin/view/wp-slimstat-reports.php:919
4411
  msgid "c-re"
4412
  msgstr "Réunion"
4413
 
4414
  # Romania
4415
- #: ../../admin/view/wp-slimstat-reports.php:919
4416
  msgid "c-ro"
4417
  msgstr "Romania"
4418
 
4419
  # Russian Federation
4420
- #: ../../admin/view/wp-slimstat-reports.php:919
4421
  msgid "c-ru"
4422
  msgstr "Russian Federation"
4423
 
4424
  # Rwanda
4425
- #: ../../admin/view/wp-slimstat-reports.php:919
4426
  msgid "c-rw"
4427
  msgstr "Rwanda"
4428
 
4429
  # Saint Kitts and Nevis
4430
- #: ../../admin/view/wp-slimstat-reports.php:919
4431
  msgid "c-kn"
4432
  msgstr "Saint Kitts and Nevis"
4433
 
4434
  # Saint Lucia
4435
- #: ../../admin/view/wp-slimstat-reports.php:919
4436
  msgid "c-lc"
4437
  msgstr "Saint Lucia"
4438
 
4439
  # Saint Martin
4440
- #: ../../admin/view/wp-slimstat-reports.php:919
4441
  msgid "c-mf"
4442
  msgstr "Saint Martin"
4443
 
4444
  # Saint Vincent and the Grenadines
4445
- #: ../../admin/view/wp-slimstat-reports.php:919
4446
  msgid "c-vc"
4447
  msgstr "Saint Vincent and the Grenadines"
4448
 
4449
  # Samoa
4450
- #: ../../admin/view/wp-slimstat-reports.php:919
4451
  msgid "c-ws"
4452
  msgstr "Samoa"
4453
 
4454
  # Sao Tome and Principe
4455
- #: ../../admin/view/wp-slimstat-reports.php:919
4456
  msgid "c-st"
4457
  msgstr "Sao Tome and Principe"
4458
 
4459
  # Saudi Arabia
4460
- #: ../../admin/view/wp-slimstat-reports.php:919
4461
  msgid "c-sa"
4462
  msgstr "Saudi Arabia"
4463
 
4464
  # Senegal
4465
- #: ../../admin/view/wp-slimstat-reports.php:919
4466
  msgid "c-sn"
4467
  msgstr "Senegal"
4468
 
4469
  # Serbia
4470
- #: ../../admin/view/wp-slimstat-reports.php:919
4471
  msgid "c-rs"
4472
  msgstr "Serbia"
4473
 
4474
  # Sierra Leone
4475
- #: ../../admin/view/wp-slimstat-reports.php:919
4476
  msgid "c-sl"
4477
  msgstr "Sierra Leone"
4478
 
4479
  # Singapore
4480
- #: ../../admin/view/wp-slimstat-reports.php:919
4481
  msgid "c-sg"
4482
  msgstr "Singapore"
4483
 
4484
  # Slovakia
4485
- #: ../../admin/view/wp-slimstat-reports.php:919
4486
  msgid "c-sk"
4487
  msgstr "Slovakia"
4488
 
4489
  # Slovenia
4490
- #: ../../admin/view/wp-slimstat-reports.php:919
4491
  msgid "c-si"
4492
  msgstr "Slovenia"
4493
 
4494
  # Solomon Islands
4495
- #: ../../admin/view/wp-slimstat-reports.php:919
4496
  msgid "c-sb"
4497
  msgstr "Solomon Islands"
4498
 
4499
  # Somalia
4500
- #: ../../admin/view/wp-slimstat-reports.php:919
4501
  msgid "c-so"
4502
  msgstr "Somalia"
4503
 
4504
  # South Africa
4505
- #: ../../admin/view/wp-slimstat-reports.php:919
4506
  msgid "c-za"
4507
  msgstr "South Africa"
4508
 
4509
  # South Georgia and the South Sandwich Islands
4510
- #: ../../admin/view/wp-slimstat-reports.php:919
4511
  msgid "c-gs"
4512
  msgstr "South Georgia and the South Sandwich Islands"
4513
 
4514
  # Spain
4515
- #: ../../admin/view/wp-slimstat-reports.php:919
4516
  msgid "c-es"
4517
  msgstr "Spain"
4518
 
4519
  # Sri Lanka
4520
- #: ../../admin/view/wp-slimstat-reports.php:919
4521
  msgid "c-lk"
4522
  msgstr "Sri Lanka"
4523
 
 
 
 
 
4524
  # Sudan
4525
- #: ../../admin/view/wp-slimstat-reports.php:919
4526
  msgid "c-sd"
4527
  msgstr "Sudan"
4528
 
4529
- #: ../../admin/view/wp-slimstat-reports.php:919
4530
  msgid "c-ss"
4531
  msgstr ""
4532
 
4533
  # Suriname
4534
- #: ../../admin/view/wp-slimstat-reports.php:919
4535
  msgid "c-sr"
4536
  msgstr "Suriname"
4537
 
4538
  # Svalbard and Jan Mayen
4539
- #: ../../admin/view/wp-slimstat-reports.php:919
4540
  msgid "c-sj"
4541
  msgstr "Svalbard and Jan Mayen"
4542
 
4543
  # Swaziland
4544
- #: ../../admin/view/wp-slimstat-reports.php:919
4545
  msgid "c-sz"
4546
  msgstr "Swaziland"
4547
 
4548
  # Sweden
4549
- #: ../../admin/view/wp-slimstat-reports.php:919
4550
  msgid "c-se"
4551
  msgstr "Sweden"
4552
 
4553
  # Switzerland
4554
- #: ../../admin/view/wp-slimstat-reports.php:919
4555
  msgid "c-ch"
4556
  msgstr "Switzerland"
4557
 
4558
  # Syrian Arab Republic
4559
- #: ../../admin/view/wp-slimstat-reports.php:919
4560
  msgid "c-sy"
4561
  msgstr "Syrian Arab Republic"
4562
 
4563
  # Taiwan, Province of China
4564
- #: ../../admin/view/wp-slimstat-reports.php:919
4565
  msgid "c-tw"
4566
  msgstr "Taiwan"
4567
 
4568
  # Tajikistan
4569
- #: ../../admin/view/wp-slimstat-reports.php:919
4570
  msgid "c-tj"
4571
  msgstr "Tajikistan"
4572
 
4573
  # United Republic of Tanzania
4574
- #: ../../admin/view/wp-slimstat-reports.php:919
4575
  msgid "c-tz"
4576
  msgstr "United Republic of Tanzania"
4577
 
4578
  # Thailand
4579
- #: ../../admin/view/wp-slimstat-reports.php:919
4580
  msgid "c-th"
4581
  msgstr "Thailand"
4582
 
4583
  # Timor-Leste
4584
- #: ../../admin/view/wp-slimstat-reports.php:919
4585
  msgid "c-tl"
4586
  msgstr "Timor-Leste"
4587
 
4588
  # Togo
4589
- #: ../../admin/view/wp-slimstat-reports.php:919
4590
  msgid "c-tg"
4591
  msgstr "Togo"
4592
 
4593
  # Tonga
4594
- #: ../../admin/view/wp-slimstat-reports.php:919
4595
  msgid "c-to"
4596
  msgstr "Tonga"
4597
 
4598
  # Trinidad and Tobago
4599
- #: ../../admin/view/wp-slimstat-reports.php:919
4600
  msgid "c-tt"
4601
  msgstr "Trinidad and Tobago"
4602
 
4603
  # Tunisia
4604
- #: ../../admin/view/wp-slimstat-reports.php:919
4605
  msgid "c-tn"
4606
  msgstr "Tunisia"
4607
 
4608
  # Turkey
4609
- #: ../../admin/view/wp-slimstat-reports.php:919
4610
  msgid "c-tr"
4611
  msgstr "Turkey"
4612
 
4613
  # Turkmenistan
4614
- #: ../../admin/view/wp-slimstat-reports.php:919
4615
  msgid "c-tm"
4616
  msgstr "Turkmenistan"
4617
 
4618
  # Turks and Caicos Islands
4619
- #: ../../admin/view/wp-slimstat-reports.php:919
4620
  msgid "c-tc"
4621
  msgstr "Turks and Caicos Islands"
4622
 
4623
  # Uganda
4624
- #: ../../admin/view/wp-slimstat-reports.php:919
4625
  msgid "c-ug"
4626
  msgstr "Uganda"
4627
 
4628
  # Ukraine
4629
- #: ../../admin/view/wp-slimstat-reports.php:919
4630
  msgid "c-ua"
4631
  msgstr "Ukraine"
4632
 
4633
  # United Arab Emirates
4634
- #: ../../admin/view/wp-slimstat-reports.php:919
4635
  msgid "c-ae"
4636
  msgstr "United Arab Emirates"
4637
 
4638
  # United Kingdom
4639
- #: ../../admin/view/wp-slimstat-reports.php:919
4640
  msgid "c-gb"
4641
  msgstr "United Kingdom"
4642
 
4643
  # United States
4644
- #: ../../admin/view/wp-slimstat-reports.php:919
4645
  msgid "c-us"
4646
  msgstr "United States"
4647
 
4648
  # Uruguay
4649
- #: ../../admin/view/wp-slimstat-reports.php:919
4650
  msgid "c-uy"
4651
  msgstr "Uruguay"
4652
 
4653
  # Uzbekistan
4654
- #: ../../admin/view/wp-slimstat-reports.php:919
4655
  msgid "c-uz"
4656
  msgstr "Uzbekistan"
4657
 
4658
  # Vanuatu
4659
- #: ../../admin/view/wp-slimstat-reports.php:919
4660
  msgid "c-vu"
4661
  msgstr "Vanuatu"
4662
 
4663
  # Venezuela
4664
- #: ../../admin/view/wp-slimstat-reports.php:919
4665
  msgid "c-ve"
4666
  msgstr "Venezuela"
4667
 
4668
  # Viet Nam
4669
- #: ../../admin/view/wp-slimstat-reports.php:919
4670
  msgid "c-vn"
4671
  msgstr "Viet Nam"
4672
 
4673
  # British Virgin Islands
4674
- #: ../../admin/view/wp-slimstat-reports.php:919
4675
  msgid "c-vg"
4676
  msgstr "British Virgin Islands"
4677
 
4678
  # U.S. Virgin Islands
4679
- #: ../../admin/view/wp-slimstat-reports.php:919
4680
  msgid "c-vi"
4681
  msgstr "U.S. Virgin Islands"
4682
 
4683
  # Western Sahara
4684
- #: ../../admin/view/wp-slimstat-reports.php:919
4685
  msgid "c-eh"
4686
  msgstr "Western Sahara"
4687
 
4688
  # Yemen
4689
- #: ../../admin/view/wp-slimstat-reports.php:919
4690
  msgid "c-ye"
4691
  msgstr "Yemen"
4692
 
4693
  # Zambia
4694
- #: ../../admin/view/wp-slimstat-reports.php:919
4695
  msgid "c-zm"
4696
  msgstr "Zambia"
4697
 
4698
  # Zimbabwe
4699
- #: ../../admin/view/wp-slimstat-reports.php:919
4700
  msgid "c-zw"
4701
  msgstr "Zimbabwe"
4702
 
4703
  # Guernsey
4704
- #: ../../admin/view/wp-slimstat-reports.php:919
4705
  msgid "c-gg"
4706
  msgstr "Guernsey"
4707
 
4708
  # Jersey
4709
- #: ../../admin/view/wp-slimstat-reports.php:919
4710
  msgid "c-je"
4711
  msgstr "Jersey"
4712
 
4713
  # Isle of Man
4714
- #: ../../admin/view/wp-slimstat-reports.php:919
4715
  msgid "c-im"
4716
  msgstr "Isle of Man"
4717
 
4718
  # Maldives
4719
- #: ../../admin/view/wp-slimstat-reports.php:919
4720
  msgid "c-mv"
4721
  msgstr "Maldives"
4722
 
4723
- #: ../../admin/view/wp-slimstat-reports.php:920
4724
  msgid "c-eu"
4725
  msgstr ""
4726
 
4727
- #: ../../admin/view/wp-slimstat-reports.php:1008
4728
  msgid ""
4729
  "This value includes not only posts, but also custom post types, regardless "
4730
  "of their status"
4731
  msgstr "این مقدار شامل همه ارسال ها میشود"
4732
 
4733
- #: ../../admin/view/wp-slimstat-reports.php:1009
4734
  msgid "Content Items"
4735
  msgstr " محتوا موردها"
4736
 
4737
- #: ../../admin/view/wp-slimstat-reports.php:1010
4738
  msgid "Total Comments"
4739
  msgstr "همه نظرها"
4740
 
4741
- #: ../../admin/view/wp-slimstat-reports.php:1011
4742
  msgid "Pingbacks"
4743
  msgstr ""
4744
 
4745
- #: ../../admin/view/wp-slimstat-reports.php:1012
4746
  msgid "Trackbacks"
4747
  msgstr ""
4748
 
4749
- #: ../../admin/view/wp-slimstat-reports.php:1013
4750
  msgid "Longest Post (ID)"
4751
  msgstr "طولانی‌ترین ارسال (شناسه)"
4752
 
4753
- #: ../../admin/view/wp-slimstat-reports.php:1014
4754
  msgid "Longest Comment (ID)"
4755
  msgstr "طولانی ترین نظر (شناسه)"
4756
 
4757
- #: ../../admin/view/wp-slimstat-reports.php:1015
4758
  msgid "Avg Comments Per Post"
4759
  msgstr "میانگین نظر برای هر ارسال"
4760
 
4761
- #: ../../admin/view/wp-slimstat-reports.php:1016
4762
  msgid "Avg Posts Per Day"
4763
  msgstr "میانگین ارسال در روز"
4764
 
4765
- #: ../../admin/view/wp-slimstat-reports.php:1044
4766
  msgid "Visits"
4767
  msgstr "بازدیدها"
4768
 
4769
- #: ../../admin/view/wp-slimstat-reports.php:1048
4770
  msgid "Domains"
4771
  msgstr "دامنه‌ها"
4772
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4773
  #~ msgid ""
4774
  #~ "Paste your export file's content and click on the button below, to import "
4775
  #~ "your settings."
@@ -4899,9 +4931,6 @@ msgstr "دامنه‌ها"
4899
  #~ msgstr ""
4900
  #~ "مشاهده نام میزبان به جای نشانی آی‌پی. این کار نمایش گزارش را کمی کند می‌کند."
4901
 
4902
- #~ msgid "Limit Results to"
4903
- #~ msgstr "نتایج محدود به"
4904
-
4905
  #, fuzzy
4906
  #~ msgid ""
4907
  #~ "Specify the number of results to return for each module. Please use a "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
+ "POT-Creation-Date: 2014-01-29 21:32-0500\n"
5
  "PO-Revision-Date: \n"
6
+ "Last-Translator: Get Used To IT <support@getused.to.it>\n"
7
  "Language-Team: Salman <salmanmp@gmail.com>\n"
8
  "Language: fa\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: ../..\n"
16
 
17
+ #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:402
18
+ #: ../../admin/view/wp-slimstat-reports.php:31
19
  msgid "Right Now"
20
  msgstr "همین حالا"
21
 
22
+ #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:403
23
+ #: ../../admin/wp-slimstat-admin.php:420
24
+ #: ../../admin/view/wp-slimstat-reports.php:32
25
  msgid "Overview"
26
  msgstr "مرور"
27
 
28
+ #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:404
29
+ #: ../../admin/wp-slimstat-admin.php:421
30
+ #: ../../admin/view/wp-slimstat-reports.php:33
31
  msgid "Visitors"
32
  msgstr "بینندگان"
33
 
34
+ #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:405
35
+ #: ../../admin/wp-slimstat-admin.php:422
36
+ #: ../../admin/view/wp-slimstat-reports.php:34
37
  msgid "Content"
38
  msgstr "محتوا"
39
 
40
+ #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:406
41
+ #: ../../admin/wp-slimstat-admin.php:423 ../../admin/view/index.php:168
42
+ #: ../../admin/view/wp-slimstat-reports.php:35
43
  msgid "Traffic Sources"
44
  msgstr "منابع ترافیک"
45
 
46
+ #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:407
47
+ #: ../../admin/wp-slimstat-admin.php:424
48
+ #: ../../admin/view/wp-slimstat-reports.php:36
49
+ #: ../../admin/view/wp-slimstat-reports.php:105
50
  msgid "World Map"
51
  msgstr "نقشه جهان"
52
 
53
+ #: ../../wp-slimstat.php:1183 ../../admin/wp-slimstat-admin.php:408
54
+ #: ../../admin/wp-slimstat-admin.php:425
55
+ #: ../../admin/view/wp-slimstat-reports.php:37
56
  msgid "Custom Reports"
57
  msgstr "گزارش دلخواه"
58
 
59
+ #: ../../wp-slimstat.php:1184 ../../admin/wp-slimstat-admin.php:409
60
+ #: ../../admin/wp-slimstat-admin.php:426 ../../admin/config/addons.php:29
61
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:228
62
  msgid "Add-ons"
63
  msgstr "افزونه ها"
64
 
65
+ #: ../../wp-slimstat.php:1187 ../../admin/wp-slimstat-admin.php:455
66
+ #: ../../admin/wp-slimstat-admin.php:458 ../../admin/wp-slimstat-admin.php:502
67
+ #: ../../admin/wp-slimstat-admin.php:505 ../../admin/config/index.php:14
68
+ #: ../../admin/config/index.php:135
69
  msgid "Settings"
70
  msgstr "تنظیمات"
71
 
72
+ #: ../../admin/wp-slimstat-admin.php:401 ../../admin/wp-slimstat-admin.php:413
73
+ #: ../../admin/wp-slimstat-admin.php:416
74
  msgid "SlimStat"
75
  msgstr "SlimStat"
76
 
77
+ #: ../../admin/wp-slimstat-admin.php:519
78
  msgid "Pageviews in the last 365 days"
79
  msgstr ""
80
 
81
+ #: ../../admin/wp-slimstat-admin.php:543
82
  msgid "Show on screen"
83
  msgstr "روی صفحه نشان بده"
84
 
85
+ #: ../../admin/wp-slimstat-admin.php:571
86
+ msgid "Hide this notice"
87
+ msgstr ""
88
+
89
+ #: ../../admin/wp-slimstat-admin.php:598
90
  msgid "There was an error updating the following options:"
91
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
92
 
93
+ #: ../../admin/wp-slimstat-admin.php:601
94
  msgid "Your settings have been successfully updated."
95
  msgstr "تنظیمات شما با موفقیت به روز شد."
96
 
97
+ #: ../../admin/wp-slimstat-admin.php:624
98
  msgid "Save Changes"
99
  msgstr "ذخیره‌ی تغییرات"
100
 
101
+ #: ../../admin/wp-slimstat-admin.php:643
102
  msgid "Yes"
103
  msgstr "بلی"
104
 
105
+ #: ../../admin/wp-slimstat-admin.php:644
106
+ #: ../../admin/view/wp-slimstat-reports.php:747
107
  msgid "No"
108
  msgstr "خیر"
109
 
110
+ #: ../../admin/wp-slimstat-admin.php:684
111
  msgid ""
112
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
113
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
118
  "میکند. لطفا برای اطلاع بیشتر به<a target=\"_blank\" href=\"http://wordpress."
119
  "org/extend/plugins/wp-slimstat/faq/\"> سوال و پاسخ ها</a> مراجعه کنید. "
120
 
121
+ #: ../../admin/wp-slimstat-admin.php:704
122
  msgid "Definitions"
123
  msgstr "تعاریف"
124
 
125
+ #: ../../admin/wp-slimstat-admin.php:707
126
  msgid "Pageview"
127
  msgstr "بازدید"
128
 
129
+ #: ../../admin/wp-slimstat-admin.php:707
130
  msgid ""
131
  "A request to load a single HTML file (\"page\"). This should be contrasted "
132
  "with a \"hit\", which refers to a request for any file from a web server. WP "
136
  "\"hit\" تفاوت دارد. این برنامه هر بازدید را بعد از اجرای برنامه ردگیری ثبت "
137
  "میکند. "
138
 
139
+ #: ../../admin/wp-slimstat-admin.php:708
140
  msgid "(Human) Visit"
141
  msgstr "بیننده (انسانی)"
142
 
143
+ #: ../../admin/wp-slimstat-admin.php:708
144
  msgid ""
145
  "A period of interaction between a visitor's browser and your website, ending "
146
  "when the browser is closed or when the user has been inactive on that site "
149
  "تراکنش بین مرورگر ردگیری و پایگاه شما به پایان رسید وقتی که مرورگر بسته شده "
150
  "و یا کاربر به مدت سی دقیقه غیر فعال شده است."
151
 
152
+ #: ../../admin/wp-slimstat-admin.php:709 ../../admin/view/index.php:140
153
+ #: ../../admin/view/right-now.php:149
154
  msgid "Known Visitor"
155
  msgstr "بیننده آشنا"
156
 
157
+ #: ../../admin/wp-slimstat-admin.php:709
158
  msgid ""
159
  "Any user who has left a comment on your blog, and is thus identified by "
160
  "Wordpress as a returning visitor"
162
  "هر کاربری که در تارنامه شما نظر گذاشته توسط وردپرس به عنوان «بیننده دوباره» "
163
  "شناخته میشود"
164
 
165
+ #: ../../admin/wp-slimstat-admin.php:710
166
  msgid "Unique IP"
167
  msgstr "آی‌پی یکتا"
168
 
169
+ #: ../../admin/wp-slimstat-admin.php:710
170
  msgid ""
171
  "Used to differentiate between multiple requests to download a file from one "
172
  "internet address (IP) and requests originating from many distinct addresses; "
177
  "درخواست از چند آی پی ادرس مختلف میباشد؛ چون این اندازه گیری فقط نشانگر آدرس "
178
  "هر بازدید است، مفید میباشد ولی دقیق نیست."
179
 
180
+ #: ../../admin/wp-slimstat-admin.php:711 ../../admin/wp-slimstat-admin.php:753
181
+ #: ../../admin/view/right-now.php:99 ../../admin/view/wp-slimstat-db.php:79
 
182
  msgid "Originating IP"
183
  msgstr "آی‌پی منشا"
184
 
185
+ #: ../../admin/wp-slimstat-admin.php:711
186
  msgid ""
187
  "the originating IP address of a client connecting to a web server through an "
188
  "HTTP proxy or load balancer"
189
  msgstr ""
190
  "ای پی منشا که کاربر را از طریق HTTP proxy و یا load balancer مرتبط کرده"
191
 
192
+ #: ../../admin/wp-slimstat-admin.php:712
193
  msgid "Direct Traffic"
194
  msgstr "ترافیک مستقیم"
195
 
196
+ #: ../../admin/wp-slimstat-admin.php:712
197
  msgid ""
198
  "All those people showing up to your Web site by typing in the URL of your "
199
  "Web site coming or from a bookmark; some people also call this \"default "
202
  " تمامی کاربرانی که با وارد کردن نشانی مستقیم تارنما و یا استفاده از بوک مارک "
203
  "از تارنما بازدید میکنند."
204
 
205
+ #: ../../admin/wp-slimstat-admin.php:713
206
  msgid "Search Engine"
207
  msgstr "موتور جستجو"
208
 
209
+ #: ../../admin/wp-slimstat-admin.php:713
210
  msgid ""
211
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
212
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
214
  "ترافیک مرتبط با نتایج موتور جستجو (organic) و همچنین ترافیک بدست آمده توسط "
215
  "تبلیغات در موتورهای جستجو اینجا درهم است"
216
 
217
+ #: ../../admin/wp-slimstat-admin.php:714 ../../admin/wp-slimstat-admin.php:730
218
+ #: ../../admin/view/right-now.php:128 ../../admin/view/wp-slimstat-db.php:60
 
219
  msgid "Search Terms"
220
  msgstr "عبارت‌های جستجو"
221
 
222
+ #: ../../admin/wp-slimstat-admin.php:714 ../../admin/wp-slimstat-admin.php:730
223
  msgid "Keywords used by your visitors to find your website on a search engine"
224
  msgstr ""
225
  "کلمات کلیدی که کاربران شما به وسیله‌ی آن‌ها از موتورهای جستجو، پایگاه شما را "
226
  "یافته‌اند."
227
 
228
+ #: ../../admin/wp-slimstat-admin.php:715
229
  msgid "SERP"
230
  msgstr ""
231
 
232
+ #: ../../admin/wp-slimstat-admin.php:715
233
  msgid ""
234
  "Short for search engine results page, the Web page that a search engine "
235
  "returns with the results of its search. The value shown represents your rank "
236
  "(or position) within that list of results"
237
  msgstr " این مقدار نشان دهنده رتبه شما در فهرست نتایج موتور جستجو میباشد."
238
 
239
+ #: ../../admin/wp-slimstat-admin.php:716
240
+ #: ../../admin/view/wp-slimstat-db.php:72
241
  msgid "User Agent"
242
  msgstr "مرورگرهای کاربران"
243
 
244
+ #: ../../admin/wp-slimstat-admin.php:716
245
  msgid ""
246
  "Any program used for accessing a website; this includes browsers, robots, "
247
  "spiders and any other program that was used to retrieve information from the "
249
  msgstr ""
250
  "هر برنامه که به تارنما دسترسی پیدا کند مثل مرورگر، روبات، خزنده، وغیره."
251
 
252
+ #: ../../admin/wp-slimstat-admin.php:717
253
+ #: ../../admin/view/wp-slimstat-db.php:76
254
  msgid "Outbound Link"
255
  msgstr "پیوند بیرونی"
256
 
257
+ #: ../../admin/wp-slimstat-admin.php:717
258
  msgid ""
259
  "A link from one domain to another is said to be outbound from its source "
260
  "anchor and inbound to its target. This report lists all the links to other "
264
  "پیوند درونی محسوب میشود. این گزارش فهرستی از تمام پیوند ها به پایگاه های "
265
  "دیگر و کاربران است."
266
 
267
+ #: ../../admin/wp-slimstat-admin.php:724
268
  msgid "Basic Filters"
269
  msgstr "پالایه های اولیه"
270
 
271
+ #: ../../admin/wp-slimstat-admin.php:727
272
+ #: ../../admin/view/wp-slimstat-db.php:57
273
  msgid "Browser"
274
  msgstr "مرورگر"
275
 
276
+ #: ../../admin/wp-slimstat-admin.php:727
277
  msgid "User agent (Firefox, Chrome, ...)"
278
  msgstr "مرورگر کاربر (فایرفاکس، کروم و ...)"
279
 
280
+ #: ../../admin/wp-slimstat-admin.php:728
281
+ #: ../../admin/view/wp-slimstat-db.php:58
282
+ #: ../../admin/view/wp-slimstat-reports.php:469
283
  msgid "Country Code"
284
  msgstr "علامت کشور"
285
 
286
+ #: ../../admin/wp-slimstat-admin.php:728
287
  msgid "2-letter code (us, ru, de, it, ...)"
288
  msgstr "علامت دو حرفی (us، ir، ...)"
289
 
290
+ #: ../../admin/wp-slimstat-admin.php:729
291
  msgid "IP"
292
  msgstr "آی‌پی"
293
 
294
+ #: ../../admin/wp-slimstat-admin.php:729
295
  msgid "Visitor's public IP address"
296
  msgstr "نشانی‌های آی‌پی عمومی بازدیدکنندگان"
297
 
298
+ #: ../../admin/wp-slimstat-admin.php:731
299
+ #: ../../admin/view/wp-slimstat-db.php:61
300
+ #: ../../admin/view/wp-slimstat-reports.php:481
301
  msgid "Language Code"
302
  msgstr "علامت زبان"
303
 
304
+ #: ../../admin/wp-slimstat-admin.php:731
305
  msgid ""
306
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
307
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
310
  "لطفا به <a target=\"_blank\" href=\"http://msdn.microsoft.com/en-us/library/"
311
  "ee825488(v=cs.20).aspx\"> فرهنگ زبان </a> برای اطلاع بیشتر مراجعه کنید"
312
 
313
+ #: ../../admin/wp-slimstat-admin.php:732
314
+ #: ../../admin/view/wp-slimstat-db.php:62
315
  msgid "Operating System"
316
  msgstr "سامانه عامل"
317
 
318
+ #: ../../admin/wp-slimstat-admin.php:732
319
  msgid ""
320
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
321
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
325
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\"> "
326
  "راهنما</a> مراجعه کنید"
327
 
328
+ #: ../../admin/wp-slimstat-admin.php:733
329
+ #: ../../admin/view/wp-slimstat-db.php:63
330
  msgid "Permalink"
331
  msgstr "پیوند یکتا"
332
 
333
+ #: ../../admin/wp-slimstat-admin.php:733
334
  msgid "URL accessed on your site"
335
  msgstr "نشانی هایی که مورد بازدید قرار گرفته"
336
 
337
+ #: ../../admin/wp-slimstat-admin.php:734
338
+ #: ../../admin/view/wp-slimstat-db.php:65
339
  msgid "Referer"
340
  msgstr "ارجاع‌دهنده"
341
 
342
+ #: ../../admin/wp-slimstat-admin.php:734
343
  msgid "Complete address of the referrer page"
344
  msgstr "نشانی کامل صفحه‌ی ارجاع ‌دهنده"
345
 
346
+ #: ../../admin/wp-slimstat-admin.php:735
347
+ #: ../../admin/view/wp-slimstat-db.php:66
348
  msgid "Visitor's Name"
349
  msgstr "نام بیننده"
350
 
351
+ #: ../../admin/wp-slimstat-admin.php:735
352
  msgid ""
353
  "Visitors' names according to the cookie set by Wordpress after they leave a "
354
  "comment"
356
  "اسامی بیننده بر مبنای خوراکی که بعد از گذاشتن نظر توسط وردپرس اختصاص داده "
357
  "میشود."
358
 
359
+ #: ../../admin/wp-slimstat-admin.php:743
360
  msgid "Advanced Filters"
361
  msgstr "فیلترهای پیش‌رفته"
362
 
363
+ #: ../../admin/wp-slimstat-admin.php:746
364
+ #: ../../admin/view/wp-slimstat-db.php:70
365
  msgid "Browser Version"
366
  msgstr "نسخه مرورگر"
367
 
368
+ #: ../../admin/wp-slimstat-admin.php:746
369
  msgid "user agent version (9.0, 11, ...)"
370
  msgstr "نسخه مرورگر کاربر"
371
 
372
+ #: ../../admin/wp-slimstat-admin.php:747
373
+ #: ../../admin/view/wp-slimstat-db.php:71
374
  msgid "Browser Type"
375
  msgstr "نوع مرورگر"
376
 
377
+ #: ../../admin/wp-slimstat-admin.php:747
378
  msgid ""
379
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
380
  "all others"
381
  msgstr ""
382
  "۱=خزنده‌های موتورهای جستجو، ۲=دستگاه موبایل، ۳=خوراک‌خوان، ۰=همه‌ی چیزهای دیگر"
383
 
384
+ #: ../../admin/wp-slimstat-admin.php:748
385
+ #: ../../admin/view/wp-slimstat-db.php:73
386
  msgid "Color Depth"
387
  msgstr "عمق رنگ"
388
 
389
+ #: ../../admin/wp-slimstat-admin.php:748
390
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
391
  msgstr "عمق رنگ صفحه نمایش کاربر (۸، ۱۶، ۲۴، ...)"
392
 
393
+ #: ../../admin/wp-slimstat-admin.php:749
394
+ #: ../../admin/view/wp-slimstat-db.php:74
395
  msgid "CSS Version"
396
  msgstr "نسخه سی‌اس‌اس "
397
 
398
+ #: ../../admin/wp-slimstat-admin.php:749
399
  msgid ""
400
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
401
  "values)"
402
  msgstr "چه معیار توسط مرورگر حمایت میشود؟ ۱، ۲، ۳ و دیگر مقدار ها ... "
403
 
404
+ #: ../../admin/wp-slimstat-admin.php:750
405
+ #: ../../admin/view/wp-slimstat-db.php:75
406
  msgid "Pageview Attributes"
407
  msgstr "خصوصیات بازدید"
408
 
409
+ #: ../../admin/wp-slimstat-admin.php:750
410
  msgid ""
411
  "this field is set to <em>[pre]</em> if the resource has been accessed "
412
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
415
  "این ناحیه برای تنظیمات <a target=\"_blank\" href=\"https://developer.mozilla."
416
  "org/en/Link_prefetching_FAQ\"> صفحه‌بندی </a> و یا شیوه های مشابه است."
417
 
418
+ #: ../../admin/wp-slimstat-admin.php:751
419
+ #: ../../admin/view/wp-slimstat-db.php:77
420
  msgid "Post Author"
421
  msgstr "نویسنده مطلب"
422
 
423
+ #: ../../admin/wp-slimstat-admin.php:751
424
  msgid "author associated to that post/page when the resource was accessed"
425
  msgstr "نویسنده مرتبط با این ارسال یا صفحه وقتی این ماخذ دسترسی شد"
426
 
427
+ #: ../../admin/wp-slimstat-admin.php:752
428
+ #: ../../admin/view/wp-slimstat-db.php:78
429
  msgid "Post Category ID"
430
  msgstr "شناسه دسته‌بندی مطلب"
431
 
432
+ #: ../../admin/wp-slimstat-admin.php:752
433
  msgid "ID of the category/term associated to the resource, when available"
434
  msgstr "شناسه دسته یا عبارت که با منبع مرتبط است، اگر موجود باشد"
435
 
436
+ #: ../../admin/wp-slimstat-admin.php:753
437
  msgid "visitor's originating IP address, if available"
438
  msgstr "آی پی منشا که بیننده از آن ‌عازم شده، در صورت موجود بودن"
439
 
440
+ #: ../../admin/wp-slimstat-admin.php:754
441
+ #: ../../admin/view/wp-slimstat-db.php:80
442
  msgid "Resource Content Type"
443
  msgstr "نوع محتوای منبع"
444
 
445
+ #: ../../admin/wp-slimstat-admin.php:754
446
  msgid ""
447
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
448
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
455
  "target=\"_blank\" href=\"http://codex.wordpress.org/Conditional_Tags\"> "
456
  "نشانه های شرطی</a> در صفحه راهنما مراجعه کنید."
457
 
458
+ #: ../../admin/wp-slimstat-admin.php:755
459
+ #: ../../admin/view/wp-slimstat-db.php:82
460
  msgid "Screen Resolution"
461
  msgstr "ابعاد صفحه نمایش"
462
 
463
+ #: ../../admin/wp-slimstat-admin.php:755
464
  msgid "viewport width and height (1024x768, 800x600, ...)"
465
  msgstr "ابعاد صفحه نمایش (۱۰۲۴x۷۶۸، ۸۰۰x۶۰۰، ...)"
466
 
467
+ #: ../../admin/wp-slimstat-admin.php:756
468
+ #: ../../admin/view/wp-slimstat-db.php:83
469
  msgid "Visit ID"
470
  msgstr "شناسه دیدن"
471
 
472
+ #: ../../admin/wp-slimstat-admin.php:756
473
  msgid ""
474
  "generally used in conjunction with <em>is not empty</em>, identifies human "
475
  "visitors"
477
  "معولا با ترکیب <em>خالی نیست</em> استفاده میشود و بیننده ها (انسان) را تشخیص "
478
  "میدهد"
479
 
480
+ #: ../../admin/wp-slimstat-admin.php:757
481
  msgid "Date Filters"
482
  msgstr "فیلترهای تاریخ"
483
 
484
+ #: ../../admin/wp-slimstat-admin.php:757
485
  msgid ""
486
  "you can specify the timeframe by entering a number in the <em>interval</em> "
487
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
490
  "با وارد کردن اعداد در این ناحیه میتوانید یک مدت زمانی تعیین کنید؛ برای محدود "
491
  "کردن سال به روز از -1 استفاده کنید."
492
 
493
+ #: ../../admin/wp-slimstat-admin.php:758
494
  msgid "SERP Position"
495
  msgstr "مکان SERP"
496
 
497
+ #: ../../admin/wp-slimstat-admin.php:758
498
  msgid ""
499
  "set the filter to Referer contains cd=N&, where N is the position you are "
500
  "looking for"
502
  "تعیین صافی برای ارجاعی هایی که شامل اِن میشوند، آنجا که اِن مکانی هست که به "
503
  "مشخص میکنید."
504
 
505
+ #: ../../admin/wp-slimstat-admin.php:767
506
  msgid ""
507
  " And for keeping an eye on your visitors with <a href=\"http://slimstat."
508
  "getused.to.it/\">WP SlimStat</a>."
547
  msgid "Description"
548
  msgstr "توضیحات"
549
 
550
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:18
551
  msgid "General"
552
  msgstr "عمومی"
553
 
554
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:44
555
  msgid "Views"
556
  msgstr "مشاهده ها"
557
 
558
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:64
559
  msgid "Filters"
560
  msgstr "فیلترها"
561
 
562
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:128
563
  msgid "Permissions"
564
  msgstr "مجوزها"
565
 
566
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:205
567
  msgid "Advanced"
568
  msgstr "پیش‌رفته"
569
 
571
  msgid "Maintenance"
572
  msgstr "نگهداری"
573
 
574
+ #: ../../admin/config/index.php:20 ../../admin/config/index.php:207
575
  msgid "Tracker"
576
  msgstr "ره‌گیری"
577
 
578
+ #: ../../admin/config/index.php:21
579
  msgid "Enable Tracking"
580
  msgstr "فعال‌سازی رد‌گیری"
581
 
582
+ #: ../../admin/config/index.php:21
583
  msgid ""
584
  "Turn the tracker on or off, but keep the reports accessible (which you would "
585
  "not have, if you just disabled the plugin)."
587
  "رهگیری را روشن و یا خاموش میکند ولی گزارش ها در دسترس خواهد بود که در صورت "
588
  "غیر فعال کردن افزونه بدین گونه نخواهد بود."
589
 
590
+ #: ../../admin/config/index.php:22
591
  msgid "Monitor Admin Pages"
592
  msgstr "نظارت صفحه مدیریت"
593
 
594
+ #: ../../admin/config/index.php:22
595
  msgid "Enable this option to track your users' activity within the admin."
596
  msgstr "برای رهگیری کاربران در ناحیه مدیریتی ین گزینه را فعال کنید."
597
 
598
+ #: ../../admin/config/index.php:23
599
  msgid "Enable Spy Mode"
600
  msgstr "فعال کردن دید دزدکی"
601
 
602
+ #: ../../admin/config/index.php:23
603
  msgid ""
604
  "Collect information about screen resolutions, outbound links, downloads, "
605
  "etc. If Tracking Mode is set to Javascript, this data will be tracked "
609
  "غیره. در صورت انتخاب حالت ردگیری به جاواسکریپت، این داده ها رهگیری میشود "
610
  "صرفنظر از مقداری که اینجا اختیار میکنید."
611
 
612
+ #: ../../admin/config/index.php:24
613
  msgid "Tracking Mode"
614
  msgstr " حالت ردگیری"
615
 
616
+ #: ../../admin/config/index.php:24
617
  msgid ""
618
  "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
619
  "Total Cache, WP SuperCache, HyperCache, etc). WP SlimStat will behave pretty "
627
  "پذیرفته نمیشود. اثر جانبی این حالت این است که بیشتر هرز ها، موتورهای جستجو و "
628
  "دیگر خزنده ها نیز دیگر رهگیری نمیشوند."
629
 
630
+ #: ../../admin/config/index.php:24
631
  msgid "Javascript"
632
  msgstr "جاوااسکریپت"
633
 
634
+ #: ../../admin/config/index.php:24
635
  msgid "Server-side"
636
  msgstr "طرف دامنه"
637
 
638
+ #: ../../admin/config/index.php:26
639
  msgid "WordPress Integration"
640
  msgstr "تلفیق کردن وردپرس"
641
 
642
+ #: ../../admin/config/index.php:27
643
  msgid "Menu Position"
644
  msgstr "محل گزینگان"
645
 
646
+ #: ../../admin/config/index.php:27
647
  msgid ""
648
  "Choose between a standalone admin menu for WP SlimStat or a drop down in the "
649
  "admin bar (if visible)."
650
  msgstr "بین گزینگان مدیریتی ثابت و یا گزینگان مدیریتی ابشاری انتخاب کنید."
651
 
652
+ #: ../../admin/config/index.php:27
653
  msgid "Side Menu"
654
  msgstr "گزینگان کناره"
655
 
656
+ #: ../../admin/config/index.php:27
657
  msgid "Admin Bar"
658
  msgstr " منوی مدیریت"
659
 
660
+ #: ../../admin/config/index.php:28
661
  msgid "Add Stats to Posts"
662
  msgstr "یک ستون به نوشته‌ها اضافه کن"
663
 
664
+ #: ../../admin/config/index.php:28
665
  msgid ""
666
  "Add a new column to the Edit Posts screen, with the number of hits per post."
667
  msgstr ""
668
  "یک ستون جدید به صفحه «ویرایش ارسال» اضافه می‌کند، که شامل تعداد بازدید برای "
669
  "هر ارسال میباشد (ممکن است مدت تحویل را زیاد کند)"
670
 
671
+ #: ../../admin/config/index.php:30
672
  msgid "Database"
673
  msgstr "پایگاه داده"
674
 
675
+ #: ../../admin/config/index.php:31
676
  msgid "Retain data for"
677
  msgstr "نگاه داشتن داده برای"
678
 
679
+ #: ../../admin/config/index.php:31
680
  msgid ""
681
  "Delete log entries older than the number of days specified here above. Enter "
682
  "<strong>0</strong> (number zero) if you want to preserve your data "
685
  "ورودی هایی که از تعداد روزها زیر بیشتر باشد حذف میشوند. صفر وارد کنید اگر "
686
  "مایل به حفظ داده ها صرفنظر از تاریخ آن هستید."
687
 
688
+ #: ../../admin/config/index.php:31
689
  msgid "Next clean-up on"
690
  msgstr "تمیزکاری بعدی در"
691
 
692
+ #: ../../admin/config/index.php:31
693
  #, php-format
694
  msgid "Entries logged on or before %s will be permanently deleted."
695
  msgstr "ردیف‌های مربوط به روز %s و قبل از آن حذف خواهند شد."
696
 
697
+ #: ../../admin/config/index.php:31 ../../admin/view/index.php:77
698
+ #: ../../admin/view/wp-slimstat-db.php:90
699
+ #: ../../admin/view/wp-slimstat-reports.php:747
700
  msgid "days"
701
  msgstr "روز"
702
 
703
+ #: ../../admin/config/index.php:46
704
  msgid "Data and Formats"
705
  msgstr "داده و نگارش ها"
706
 
707
+ #: ../../admin/config/index.php:47
708
  msgid "Convert IP Addresses"
709
  msgstr "تبدیل نشانی آی‌پی"
710
 
711
+ #: ../../admin/config/index.php:47
712
  msgid "Display provider names instead of IP addresses."
713
  msgstr "نمایش خدمات دهنده ها به جای ای پی"
714
 
715
+ #: ../../admin/config/index.php:48
716
  msgid "Number Format"
717
  msgstr "نگارش اعداد"
718
 
719
+ #: ../../admin/config/index.php:48
720
  msgid ""
721
  "Choose the number format you want to use for your reports, European or "
722
  "American."
723
  msgstr ""
724
  "نگارش مناسب برای ملاحظه گزارش اعداد را نتخاب کنید، امریکایی یا اروپایی."
725
 
726
+ #: ../../admin/config/index.php:49
727
  msgid "Show Display Name"
728
  msgstr "نمایش نام صفحه نمایش"
729
 
730
+ #: ../../admin/config/index.php:49
731
  msgid ""
732
  "By default, users are listed by their usernames. Use this option to "
733
  "visualize their display names instead."
735
  "به طور پیش فرظ، کاربران با نام کاربری فهرست بندی میشوند. این گزینه کاربران "
736
  "را با نام فهرست بندی میکند."
737
 
738
+ #: ../../admin/config/index.php:50
739
  msgid "Show User Agent"
740
  msgstr "نمایش عامل کاربر "
741
 
742
+ #: ../../admin/config/index.php:50
743
  msgid ""
744
  "Choose if you want to see the browser name or a complete user agent string "
745
  "when hovering on browser icons."
747
  " این گزینه را انتخاب کنید اگر میخواهید اسم مرورگر یا نام کامل کاربر را با "
748
  "توقف اشاره گر بر روی نقشک ملاحظه کنید."
749
 
750
+ #: ../../admin/config/index.php:51
751
  msgid "Show Titles"
752
  msgstr "نمایش عناوین"
753
 
754
+ #: ../../admin/config/index.php:51
755
  msgid ""
756
  "WP SlimStat converts your permalinks into post and page titles. Disable this "
757
  "feature if you need to see the URL in your reports."
759
  " تمامی پیوندهای یکتا را به ارسال و صفحه تبدیل میکند. این ویژگی را غیرفعال "
760
  "کنید اگر در گزارش به نشانی نیاز دارید"
761
 
762
+ #: ../../admin/config/index.php:53
763
  msgid "Functionality"
764
  msgstr "کاربردی"
765
 
766
+ #: ../../admin/config/index.php:54
767
  msgid "Asynchronous Views"
768
  msgstr "دید غیرهم‌زمان(آسنکرون)"
769
 
770
+ #: ../../admin/config/index.php:54
771
  msgid ""
772
  "Load all the reports dynamically. It makes the reports render faster, but it "
773
  "increases the load on your server."
775
  "بارگزاری همه گزارشها به صورت پویا که ارائه آن را تسریع میکند ولی فشار به "
776
  "دامنه را نیز افزایش میدهد. "
777
 
778
+ #: ../../admin/config/index.php:55
779
  msgid "Expand Details"
780
  msgstr "گسترش جزئیات"
781
 
782
+ #: ../../admin/config/index.php:55
783
  msgid "Expand each row's details by default, insted of on mousehover."
784
  msgstr "گشترش جزئیات‌ هر سطر به طور پیش فرظ، به جای رویت با توقف اشاره گر"
785
 
786
+ #: ../../admin/config/index.php:56 ../../admin/config/index.php:60
787
  msgid "Rows to Display"
788
  msgstr "نمایش ردیف ها"
789
 
790
+ #: ../../admin/config/index.php:56
791
  msgid "Specify the number of items in each report."
792
  msgstr "تعداد موردها در هر گزارش را مشخص کنید."
793
 
794
+ #: ../../admin/config/index.php:58
795
  msgid "Right Now Screen"
796
  msgstr "صفحه همین حالا"
797
 
798
+ #: ../../admin/config/index.php:59
799
  msgid "Live Stream"
800
  msgstr "پخش زنده"
801
 
802
+ #: ../../admin/config/index.php:59
803
  msgid ""
804
  "Enable the Live view, which refreshes the Right Now screen every X seconds. "
805
  "Enter <strong>0</strong> (number zero) to disable this functionality."
807
  "فعال کردن «نمای زنده» صفحه «همین حالا» را هر چند ثانیه تازه سازی میکند. برای "
808
  "فیرفعال کردن صفر وارد کنید."
809
 
810
+ #: ../../admin/config/index.php:59 ../../admin/config/index.php:210
811
  msgid "seconds"
812
  msgstr "ثانیه"
813
 
814
+ #: ../../admin/config/index.php:60
815
  msgid "Specify the number of items in Right Now."
816
  msgstr " تعداد موردها در فهرست صفحه «همین حالا» را مشخص کنید"
817
 
818
+ #: ../../admin/config/index.php:61
819
  msgid "Right Now Extended"
820
  msgstr "همین حالا تمدید شده"
821
 
822
+ #: ../../admin/config/index.php:61
823
  msgid ""
824
  "Choose if you want to see outbound links listed under Right Now. It might "
825
  "slow down the rendering of this report."
827
  "اگر مایل به رویت پیوندهای بیرونی در فهرست بخش همین حالا هستید انتخاب کنید. "
828
  "ممکن است به طول انجامیدن تحویل گزارش منجر شود."
829
 
830
+ #: ../../admin/config/index.php:66
831
  msgid "Visitors and Known Users"
832
  msgstr "بیننده و کاربران آشنا"
833
 
834
+ #: ../../admin/config/index.php:67
835
  msgid "Track Registered Users"
836
  msgstr "ره‌گیری کاربران ثبت شده"
837
 
838
+ #: ../../admin/config/index.php:67
839
  msgid "Enable this option to track logged in users."
840
  msgstr "اگر می‌خواهید کاربران وارد شده را ره‌گیری کنید این گزینه را فعال کنید."
841
 
842
+ #: ../../admin/config/index.php:68
843
  msgid "Blacklist by Username"
844
  msgstr " فهرست سیاه با نشانی آی‌پی"
845
 
846
+ #: ../../admin/config/index.php:68
847
  msgid ""
848
  "List all the usernames you don't want to track, separated by commas. Please "
849
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
852
  "فهرست نام کاربرانی که نمیخواهید رهگیری کنید، تفکیک شده با ویرگول. لطفا در "
853
  "نظر داشته باشید که فاصله ها و حروف کوچک و بزرگ نیز حساب میشود."
854
 
855
+ #: ../../admin/config/index.php:69
856
  msgid "Blacklist by IP Address"
857
  msgstr " فهرست سیاه با نشانی آی‌پی"
858
 
859
+ #: ../../admin/config/index.php:69
860
  msgid ""
861
  "List all the IP addresses you don't want to track, separated by commas. Each "
862
  "network <strong>must</strong> be defined using the <a href='http://en."
869
  "Classless_Inter-Domain_Routing' target='_blank'>CIDR</a> تعریف شود (مثل "
870
  "<em>192.168.0.0/24</em>) و اگر نگارش صحیح نباشد رهگیری به درستی انجام نمیشود."
871
 
872
+ #: ../../admin/config/index.php:70
873
  msgid "Blacklist by Capability"
874
  msgstr "کاربران بر اساس توانایی"
875
 
876
+ #: ../../admin/config/index.php:70
877
  msgid ""
878
  "Users having at least one of the <a href='http://codex.wordpress.org/"
879
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
883
  "Roles_and_Capabilities' target='_new'> خواص</a> زیر را داشته باشند ردگیری "
884
  "نمیشوند (به بزرگ و کوچک بودن را دقت داشته باشید)."
885
 
886
+ #: ../../admin/config/index.php:72
887
  msgid "Profiling"
888
  msgstr "نمایه"
889
 
890
+ #: ../../admin/config/index.php:73
891
  msgid "Ignore Spammers"
892
  msgstr "نادیده گرفتن هرزها"
893
 
894
+ #: ../../admin/config/index.php:73
895
  msgid ""
896
  "Enable this option if you don't want to track visits from users identified "
897
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
902
  "Akismet) را رهگیری کنید این گزینه را فعال کنید. بازدید های کاربرانی که بعدا "
903
  "به صورت هرز شناخته شوند از پایگاه داده ها نیز حذف میشوند."
904
 
905
+ #: ../../admin/config/index.php:74
906
  msgid "Permalinks"
907
  msgstr "پیوندهای یکتا"
908
 
909
+ #: ../../admin/config/index.php:74
910
  msgid ""
911
  "List all the URLs on your website that you don't want to track, separated by "
912
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
924
  "and /about, <code>/abo!t</code> will match /about and /abort. Strings are "
925
  "case-insensitive."
926
 
927
+ #: ../../admin/config/index.php:75
928
  msgid "Countries"
929
  msgstr "کشورها"
930
 
931
+ #: ../../admin/config/index.php:75
932
  msgid ""
933
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
934
  "track, separated by commas."
936
  "کد کشورهایی که مایل به رهگیری نیستید، تفکیک شده با ویرگول مثل <code>en-us, "
937
  "it, es</code>"
938
 
939
+ #: ../../admin/config/index.php:76
940
  msgid "User Agents"
941
  msgstr "مرورگرهای کاربران"
942
 
943
+ #: ../../admin/config/index.php:76
944
  msgid ""
945
  "Browsers (user agents) you don't want to track, separated by commas. You can "
946
  "specify the browser's version adding a slash after the name (i.e. "
955
  "Strings are case-insensitive.مرورگرهایی که نمیخواهید رهگیری کنید، تفکیک شده "
956
  "با ویرگول. میتوانید نسخه مرورگر را نیز مشخص کنید. مثلا <em>Firefox/3.6</em>. "
957
 
958
+ #: ../../admin/config/index.php:77
959
  msgid "Referring Sites"
960
  msgstr "سایت ارجاع دهنده"
961
 
962
+ #: ../../admin/config/index.php:77
963
  msgid ""
964
  "Referring URLs that you don't want to track, separated by commas: "
965
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
975
  "insensitive. Include either a wildcard or the protocol you want to filter "
976
  "(http://, https://)."
977
 
978
+ #: ../../admin/config/index.php:79 ../../admin/config/index.php:215
979
  msgid "Miscellaneous"
980
  msgstr "متفرقه"
981
 
982
+ #: ../../admin/config/index.php:80
983
  msgid "Enable Privacy Mode"
984
  msgstr "فعال کردن حالت حریم"
985
 
986
+ #: ../../admin/config/index.php:80
987
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
988
  msgstr "این گزینه نشانی آی‌پی بیننده را طبق قوانین حریم خصوصی اروپا پنهان میکند"
989
 
990
+ #: ../../admin/config/index.php:81
991
  msgid "Ignore Prefetch Requests"
992
  msgstr "نادیده گرفتن درخواست صفحه‌بندی"
993
 
994
+ #: ../../admin/config/index.php:81
995
  msgid ""
996
  "Prevent WP SlimStat from tracking pageviews generated by Firefox's <a "
997
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
1001
  "org/en/Link_prefetching_FAQ' target='_blank'>صفحه‌بندی</a> برنامه Firefox "
1002
  "صورت میگیرد."
1003
 
1004
+ #: ../../admin/config/index.php:97
1005
  msgid "Ignore users (username not found)"
1006
  msgstr "نادیده گرفتن کاربر(شناسه کاربر یافت نشد)"
1007
 
1008
+ #: ../../admin/config/index.php:120
1009
  msgid ""
1010
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
1011
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
1014
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> نقش و توانایی</a> "
1015
  "مراجعه کنید."
1016
 
1017
+ #: ../../admin/config/index.php:130
1018
  msgid "Reports"
1019
  msgstr "گزارش ها"
1020
 
1021
+ #: ../../admin/config/index.php:131
1022
  msgid "Restrict Authors"
1023
  msgstr "محدود کردن نویسنده‌ها"
1024
 
1025
+ #: ../../admin/config/index.php:131
1026
  msgid ""
1027
  "Enable this option if you want your authours to only see stats related to "
1028
  "their own content."
1030
  "اگر میخواهید نویسنده ها فقط آمار مربوط به محتوای خود را رویت کنند این گزینه "
1031
  "را فعال کنید."
1032
 
1033
+ #: ../../admin/config/index.php:132 ../../admin/config/index.php:136
1034
  msgid "Capability"
1035
  msgstr "کاربران بر اساس توانایی"
1036
 
1037
+ #: ../../admin/config/index.php:132
1038
+ #, fuzzy
1039
  msgid ""
1040
  "Specify the minimum <a href='http://codex.wordpress.org/"
1041
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
1042
+ "reports (default: <code>activate_plugins</code>). If this field is empty, "
1043
+ "<strong>all your users</strong> (including subscribers) will have access to "
1044
+ "the reports, unless a 'Read access' whitelist has been specified here below. "
1045
+ "In this case, the list has precedence over the capability."
1046
  msgstr ""
1047
  "حداقل<a href='http://codex.wordpress.org/Roles_and_Capabilities' "
1048
  "target='_new'> توانایی</a> برای دسترسی به گزارش های را مشخص کنید. اگر این "
1050
  "داشت، مگر اینکه اجازه فهرست سفید اینجا مشخص شود. در این صورت فهرست اولویت "
1051
  "میگیرد بر قابلیت."
1052
 
1053
+ #: ../../admin/config/index.php:133 ../../admin/config/index.php:137
1054
  msgid "Whitelist"
1055
  msgstr "فهرست سفید"
1056
 
1057
+ #: ../../admin/config/index.php:133
1058
  msgid ""
1059
  "List all the users who should have access to the reports, separated by "
1060
  "commas. Administrators are implicitly allowed, so you don't need to list "
1064
  "طور کامل دسترسی دارند و نیاز به وارد کردن اینجا نخواهند داشت. کوچک و بزرگ "
1065
  "بودن حروف مهم است."
1066
 
1067
+ #: ../../admin/config/index.php:136
1068
  msgid ""
1069
  "Specify the minimum <a href='http://codex.wordpress.org/"
1070
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
1075
  "target='_new'> توانایی</a> برای دسترسی برای تنظیمات را مشخص کنید. این فهرست "
1076
  "سفید اختیارات کاربران خاص را لفو میکند."
1077
 
1078
+ #: ../../admin/config/index.php:137
1079
  msgid ""
1080
  "List all the users who can edit these options, separated by commas. Please "
1081
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
1084
  "فهرست کاربرانی که توانایی ویرایش این گزینه ها را دارند، تفکیک شده با ویرگول. "
1085
  "از وارد کردن نام خود در این فهرست مطمئن شوید."
1086
 
1087
+ #: ../../admin/config/index.php:153
1088
  msgid "Read access: username not found"
1089
  msgstr "دست‌رسی خواندن: شناسه کاربری یافت نشد"
1090
 
1091
+ #: ../../admin/config/index.php:166 ../../admin/config/index.php:197
1092
  msgid ""
1093
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
1094
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
1098
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> نقش و توانایی</a> "
1099
  "مراجعه کنید."
1100
 
1101
+ #: ../../admin/config/index.php:184
1102
  msgid "Config access: username not found"
1103
  msgstr "دست‌رسی پیکربندی: شناسه کاربری یافت نشد"
1104
 
1105
+ #: ../../admin/config/index.php:208
1106
  msgid "Detect Smoothing"
1107
  msgstr "یافتن اسموتینگ"
1108
 
1109
+ #: ../../admin/config/index.php:208
1110
  msgid ""
1111
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
1112
  "This option required Spy Mode to be enabled."
1114
  " تشخیص دادن مرورگرهایی که از ضد-بدنمایی (font smoothing) استفاده میکنند. این "
1115
  "گزینه نیاز به فعال کردن «دید دزدکی» دارد."
1116
 
1117
+ #: ../../admin/config/index.php:209
1118
  msgid "Track Outbound Clicks"
1119
  msgstr "ره‌گیری کلیک های بیرونی"
1120
 
1121
+ #: ../../admin/config/index.php:209
1122
  msgid ""
1123
  "Track when your visitors click on link to external websites. This option "
1124
  "required Spy Mode to be enabled."
1126
  "پیوندهایی که بازدیدکننده را به خارج از پایگاه ها میبرد رهگیری کنید. این "
1127
  "گزینه نیاز به فعال کردن دید دزدکی دارد."
1128
 
1129
+ #: ../../admin/config/index.php:210
1130
  msgid "Session Duration"
1131
  msgstr "مدت جلسه"
1132
 
1133
+ #: ../../admin/config/index.php:210
1134
+ #, fuzzy
1135
  msgid ""
1136
+ "How many seconds should a human session last? Google Analytics sets it to "
1137
+ "1800 seconds."
1138
  msgstr ""
1139
  "چند ثانیه جلسه (انسان) در پایگاه به طول انجامد؟ گوگل آنالیتیک این مقدار را "
1140
  "۱۸۰۰ ثانیه در نظر می‌گیرد."
1141
 
1142
+ #: ../../admin/config/index.php:211
1143
  msgid "Extend Session"
1144
  msgstr "گسترش جلسه"
1145
 
1146
+ #: ../../admin/config/index.php:211
1147
  msgid "Extend the duration of a session each time the user visits a new page."
1148
  msgstr ""
1149
  "هر بار که کاربر یک صفحه جدید را دیدن می‌کند مدت جلسه را به این مقدار گسترش "
1150
  "می‌دهد."
1151
 
1152
+ #: ../../admin/config/index.php:212
1153
  msgid "Enable CDN"
1154
  msgstr "فعال‌سازی CDN"
1155
 
1156
+ #: ../../admin/config/index.php:212
1157
  msgid ""
1158
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
1159
  "by serving our tracking code from their fast and reliable network (free "
1163
  "استفاده کنید و از خدمات ردگیری ما در شبکه سریع و مطمئن بهره مند شوید "
1164
  "(رایگان)."
1165
 
1166
+ #: ../../admin/config/index.php:213
1167
  msgid "Extensions to Track"
1168
  msgstr "پسوندهایی که رهیابی شوند"
1169
 
1170
+ #: ../../admin/config/index.php:213
1171
  msgid ""
1172
  "List all the file extensions that you want to be treated as Downloads. "
1173
  "Please note that links pointing to external resources (i.e. PDFs on a "
1179
  "باشید که پیوندهای منابع خارجی (مثل پی دی اف در پایگاه دیگر) بارگیری محسوب "
1180
  "میشود و نه پیوند بیرونی اگر پسوند آنها با این فهرست تطبیق داشته باشد."
1181
 
1182
+ #: ../../admin/config/index.php:216
1183
  msgid "IP Lookup"
1184
  msgstr "ره‌گیری بر اساس نشانی آی‌پی"
1185
 
1186
+ #: ../../admin/config/index.php:216
1187
  msgid "Customize the Geolocation service to be used in the reports."
1188
  msgstr "خدمات مکان-جفرافی برای گزارش ها را دلخواه کنید. "
1189
 
1190
+ #: ../../admin/config/index.php:217
1191
  msgid "Custom CSS"
1192
  msgstr "سی‌اس‌اس دلخواه"
1193
 
1194
+ #: ../../admin/config/index.php:217
1195
+ #, fuzzy
1196
  msgid ""
1197
  "Paste here your custom stylesheet to personalize the way your reports look. "
1198
  "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1199
  "target='_blank'>Check the FAQ</a> for more information on how to use this "
1200
+ "setting."
1201
  msgstr ""
1202
  "سی‌اس‌اس دلخواه خود را اینجا وارد کنید و گزارش ها را شخصی کنید. برای اطلاع "
1203
  "بیشتر به<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1204
  "target='_blank'> سوالهای رایج</a> مراجعه کنید."
1205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1206
  #: ../../admin/config/index.php:218
1207
  msgid "Enable UAN"
1208
  msgstr "فعال‌سازی UAN"
1209
 
1210
  #: ../../admin/config/index.php:218
1211
+ #, fuzzy
1212
  msgid ""
1213
+ "Send anonymous data about unknown user agents to our server for analysis. "
1214
+ "This allows us to contribute to the <a href='http://browscap.org/' "
1215
+ "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
1216
+ "WP SlimStat's browser detection functionality."
1217
  msgstr ""
1218
  " میتوانید اطلاعات کابر مشکوک را برای تحلیل به صورت ناشناس برای ما ارسال "
1219
  "کنید. با کمک کردن به <a href='http://browscap.co/' target='_blank'>BrowsCap "
1328
  msgstr "خالی نیست"
1329
 
1330
  #: ../../admin/config/maintenance.php:138 ../../admin/view/index.php:32
1331
+ #: ../../admin/view/index.php:78
1332
  msgid "Apply"
1333
  msgstr "انجام"
1334
 
2610
  msgstr ""
2611
 
2612
  #: ../../admin/lang/dynamic_strings.php:298
2613
+ #: ../../admin/view/wp-slimstat-reports.php:482
2614
  msgid "l-"
2615
  msgstr ""
2616
 
2626
  msgid "c-xy"
2627
  msgstr "آدرس محلی"
2628
 
2629
+ #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:768
2630
  msgid "Today"
2631
  msgstr "امروز‍"
2632
 
2633
+ #: ../../admin/view/index.php:49 ../../admin/view/wp-slimstat-reports.php:769
2634
  msgid "Yesterday"
2635
  msgstr "دیروز"
2636
 
2637
+ #: ../../admin/view/index.php:50
2638
  msgid "Last 7 Days"
2639
  msgstr "۷ روز اخیر"
2640
 
2641
+ #: ../../admin/view/index.php:51
2642
+ #, fuzzy
2643
+ msgid "Last 60 Days"
2644
  msgstr "۳۰ روز اخیر"
2645
 
2646
+ #: ../../admin/view/index.php:52
2647
  msgid "Last 90 Days"
2648
  msgstr "۹۰ روز اخیر"
2649
 
2650
+ #: ../../admin/view/index.php:53
2651
+ #, fuzzy
2652
+ msgid "This Year So Far"
2653
  msgstr "امسال"
2654
 
2655
+ #: ../../admin/view/index.php:54
2656
  msgid "Date Range"
2657
  msgstr "محدوده زمانی"
2658
 
2659
+ #: ../../admin/view/index.php:56 ../../admin/view/wp-slimstat-db.php:87
2660
  msgid "Day"
2661
  msgstr "روز"
2662
 
2663
+ #: ../../admin/view/index.php:66 ../../admin/view/wp-slimstat-db.php:88
2664
  msgid "Month"
2665
  msgstr "ماه"
2666
 
2667
+ #: ../../admin/view/index.php:75 ../../admin/view/wp-slimstat-db.php:89
2668
  msgid "Year"
2669
  msgstr "سال"
2670
 
2671
+ #: ../../admin/view/index.php:80
2672
+ #, fuzzy
2673
+ msgid "Reset Filters"
2674
+ msgstr "فیلترهای تاریخ"
2675
+
2676
+ #: ../../admin/view/index.php:117
2677
  msgid "Your report here"
2678
  msgstr "گزارش شما این‌جا"
2679
 
2680
+ #: ../../admin/view/index.php:119
2681
  msgid ""
2682
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
2683
  "Just write a new plugin that retrieves the desired information from the "
2690
  "قلاب میکند.برای اطلاع بیشتر به صفحه<a href=\"http://wordpress.org/tags/wp-"
2691
  "slimstat?forum_id=10\" target=\"_blank\"> پشتیبانی </a>مراجعه کنید."
2692
 
2693
+ #: ../../admin/view/index.php:133 ../../admin/view/wp-slimstat-reports.php:759
2694
+ #: ../../admin/view/wp-slimstat-reports.php:861
2695
+ #: ../../admin/view/wp-slimstat-reports.php:1145
2696
  msgid "Pageviews"
2697
  msgstr "مشاهدات صفحات"
2698
 
2699
+ #: ../../admin/view/index.php:136
2700
  msgid ""
2701
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2702
  "WP SlimStat leverages this information to identify returning visitors. "
2706
  "WP SlimStat از این اطلاعات برای شناسایی «بیننده دوباره» استفاده میکند. در "
2707
  "نظر داشته باشید که بیننده ها شامل کاربران ثبت شده نیز میباشد."
2708
 
2709
+ #: ../../admin/view/index.php:140
2710
  msgid "Take a sneak peek at what human visitors are doing on your website."
2711
  msgstr "نظارت بر اینکه کاربران در پایگاه شما چه میکنند"
2712
 
2713
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
2714
+ #: ../../admin/view/index.php:184 ../../admin/view/right-now.php:147
2715
  msgid "Color codes"
2716
  msgstr "علامت رنگی"
2717
 
2718
+ #: ../../admin/view/index.php:140
2719
  msgid "From a search result page"
2720
  msgstr "از صفحه نتایج جستجو"
2721
 
2722
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
2723
+ #: ../../admin/view/index.php:184
2724
  msgid "Known Users"
2725
  msgstr "کاربران آشنا"
2726
 
2727
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
2728
+ #: ../../admin/view/index.php:184
2729
  msgid "Other Humans"
2730
  msgstr "دیگران"
2731
 
2732
+ #: ../../admin/view/index.php:144
2733
  msgid "Keywords used by your visitors to find your website on a search engine."
2734
  msgstr "عبارات کلیدی در موتورهای جستجو که بیننده را به پایگاه شما را یافته‌اند."
2735
 
2736
+ #: ../../admin/view/index.php:147
2737
  msgid ""
2738
  "WP SlimStat retrieves live information from Alexa, Facebook and Google, to "
2739
  "measures your site's rankings. Values are updated every 12 hours. Filters "
2742
  "با کسب اطلاعات خود از Google، Facebook و یا Alexa، رتبه خود را محک بزنید. "
2743
  "مقادیر هر ۱۲ ساعت به روز میشوند. صافی ها بالا در این گزارش کاربرد نمیشوند. "
2744
 
2745
+ #: ../../admin/view/index.php:150
2746
  msgid ""
2747
  "We have teamed up with HackerNinja.com to offer you a free website security "
2748
  "scan. By clicking on Start Free Scan, your website will be analyzed to "
2753
  "HackerNinja.com). با فشار دادن دکمه زیر، پایگاه شما برای ویروس و دیگر تهدید "
2754
  "ها کاوش میشود. هیچ اطلاعات شخصی به HackerNinja فرستاده نمیشود."
2755
 
2756
+ #: ../../admin/view/index.php:153
2757
  msgid "Human Visits"
2758
  msgstr "بازدیدهای انسانی"
2759
 
2760
+ #: ../../admin/view/index.php:156
2761
  msgid ""
2762
  "Internet Service Provider: a company which provides other companies or "
2763
  "individuals with access to the Internet. Your DSL or cable internet service "
2767
  "اینترنت توسط یک شرکت خدماتی (ISP) برای شما فراهم میشود. میتوانید این نشانی "
2768
  "ای پی را با وارد کردن صافی نادیده بگیرید."
2769
 
2770
+ #: ../../admin/view/index.php:159
2771
  msgid ""
2772
  "You can configure WP SlimStat to ignore a specific Country by setting the "
2773
  "corresponding filter under Settings > SlimStat > Filters."
2775
  "میتوانید تنظیمات برنامه برای نادیده گرفتن بعضی کشورها را تغییر دهید:Settings "
2776
  "> SlimStat > Filters"
2777
 
2778
+ #: ../../admin/view/index.php:162
2779
  msgid ""
2780
  "This report shows you what user agent families (no version considered) are "
2781
  "popular among your visitors."
2783
  "این گزارش نشانگر عامل کابر (بدون در نظر گرفتن نسخه) که در میان بیننده ها "
2784
  "محبوب تر هستند میباشد."
2785
 
2786
+ #: ../../admin/view/index.php:165
2787
  msgid ""
2788
  "This report shows you what operating system families (no version considered) "
2789
  "are popular among your visitors."
2791
  "این گزارش نشانگر محیط عامل هایی (بدون در نظر گرفتن نسخه) که در میان بیننده "
2792
  "ها محبوب تر هستند میباشد."
2793
 
2794
+ #: ../../admin/view/index.php:171
2795
  msgid "Average Pageviews per Visit"
2796
  msgstr "میان‌گین مشاهده صفحات در هر بازدید"
2797
 
2798
+ #: ../../admin/view/index.php:174
2799
  msgid ""
2800
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
2801
  "left your site from the entrance (landing) page."
2803
  " «صفحه وازده» یک «تک-صفحه» میباشد، یا آخرین صفحه ی دیده شده قبل از آنکه "
2804
  "بیننده پایگاه را ترک کند. "
2805
 
2806
+ #: ../../admin/view/index.php:177
2807
  msgid "Searches performed using Wordpress' built-in search functionality."
2808
  msgstr "جستجوهایی که توسط جستجوی داخلی Wordpress انجام میشوند."
2809
 
2810
+ #: ../../admin/view/index.php:181
2811
  msgid ""
2812
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
2813
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
2816
  "جزئيات پیوند نشان میدهد که چندمین پیوند فشار داده شده است. <em>ID:xx</em> "
2817
  "هنگامی نشان داده میشود که پیوند مرتبط شناسه داشته باشد."
2818
 
2819
+ #: ../../admin/view/index.php:184
2820
  msgid ""
2821
  "This report lists any <em>event</em> occurred on your website. Please refer "
2822
  "to the FAQ for more information on how to leverage this functionality."
2824
  "این گزارش تمامی رویداد های پایگاه شما را فهرست میکند. لطفا برای کسب اطلاع "
2825
  "بیشتر در این مورد به بخش پرسش و پاسخ مراجعه کنید."
2826
 
2827
+ #: ../../admin/view/index.php:187
2828
  msgid ""
2829
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2830
  "this report is not affected by the filters set here above."
2849
  msgstr "پیوند ریدر"
2850
 
2851
  #: ../../admin/view/right-now.php:28
2852
+ #: ../../admin/view/wp-slimstat-reports.php:425
2853
+ #: ../../admin/view/wp-slimstat-reports.php:670
2854
  msgid "No data to display"
2855
  msgstr "داده‌ای برای نمایش نیست"
2856
 
2857
  # Unknown
2858
+ #: ../../admin/view/right-now.php:54
2859
+ #: ../../admin/view/wp-slimstat-reports.php:470
2860
+ #: ../../admin/view/wp-slimstat-reports.php:708
2861
+ #: ../../admin/view/wp-slimstat-reports.php:1032
2862
  msgid "c-"
2863
  msgstr "Unknown"
2864
 
2865
+ #: ../../admin/view/right-now.php:120
2866
+ #: ../../admin/view/wp-slimstat-reports.php:524
2867
+ #: ../../admin/view/wp-slimstat-reports.php:528
2868
+ #: ../../admin/view/wp-slimstat-reports.php:690
2869
+ #: ../../admin/view/wp-slimstat-reports.php:728
2870
  msgid "Open this URL in a new window"
2871
  msgstr "نشانی را در پنجره جدید باز کن"
2872
 
2873
+ #: ../../admin/view/right-now.php:123
2874
  msgid "Local search results page"
2875
  msgstr "صفحه نتایج جستجوی محلی"
2876
 
2877
+ #: ../../admin/view/right-now.php:130
2878
  msgid "Open this referrer in a new window"
2879
  msgstr "این ارجاعی دهنده را در پنجره جدید باز کن"
2880
 
2881
+ #: ../../admin/view/right-now.php:131
2882
  msgid "Open this outbound link in a new window"
2883
  msgstr " پیوندهای بیرونی را در پنجره جدید باز کن"
2884
 
2885
+ #: ../../admin/view/right-now.php:132
2886
  msgid "Date and Time"
2887
  msgstr "روز و ساعت"
2888
 
2889
+ #: ../../admin/view/right-now.php:133
2890
  msgid "Content Type"
2891
  msgstr " نوع محتوا"
2892
 
2893
+ #: ../../admin/view/right-now.php:148
2894
  msgid "Visit with keywords"
2895
  msgstr "کلمات کلیدی (جدا شده با کاما):"
2896
 
2897
+ #: ../../admin/view/right-now.php:150
2898
  msgid "Known User"
2899
  msgstr "کاربر آشنا"
2900
 
2901
+ #: ../../admin/view/right-now.php:151
2902
  msgid "Human Visitor"
2903
  msgstr "بیننده انسانی"
2904
 
2905
+ #: ../../admin/view/right-now.php:152
2906
  msgid "Bot or Crawler"
2907
  msgstr "روبات یا خزنده"
2908
 
2909
+ #: ../../admin/view/wp-slimstat-db.php:59
2910
  msgid "IP Address"
2911
  msgstr "نشانی آی‌پی"
2912
 
2913
+ #: ../../admin/view/wp-slimstat-db.php:64
2914
  msgid "Domain"
2915
  msgstr "دامنه"
2916
 
2917
+ #: ../../admin/view/wp-slimstat-db.php:68
2918
  msgid "-- Advanced filters --"
2919
  msgstr "-- فیلترهای پیش‌رفته --"
2920
 
2921
+ #: ../../admin/view/wp-slimstat-db.php:69
2922
+ #: ../../admin/view/wp-slimstat-reports.php:62
2923
  msgid "Browser Capabilities"
2924
  msgstr "قابلیت‌های مرورگر"
2925
 
2926
+ #: ../../admin/view/wp-slimstat-db.php:81
2927
  msgid "Resource ID"
2928
  msgstr "شناسه منابع"
2929
 
2930
+ #: ../../admin/view/wp-slimstat-db.php:86
2931
  msgid "Hour"
2932
  msgstr "ساعت"
2933
 
2934
+ #: ../../admin/view/wp-slimstat-db.php:92
2935
+ msgid "Order Direction"
2936
+ msgstr ""
2937
+
2938
+ #: ../../admin/view/wp-slimstat-db.php:93
2939
+ #, fuzzy
2940
+ msgid "Limit Results"
2941
+ msgstr "نتایج محدود به"
2942
+
2943
+ #: ../../admin/view/wp-slimstat-db.php:94
2944
+ msgid "Start From"
2945
+ msgstr ""
2946
+
2947
+ #: ../../admin/view/wp-slimstat-reports.php:41
2948
  msgid "Pageviews (chart)"
2949
  msgstr "مشاهده صفحات (نمودار)"
2950
 
2951
+ #: ../../admin/view/wp-slimstat-reports.php:42
2952
  msgid "About WP SlimStat"
2953
  msgstr "درباره WP SlimStat"
2954
 
2955
+ #: ../../admin/view/wp-slimstat-reports.php:43
2956
+ #: ../../admin/view/wp-slimstat-reports.php:56
2957
  msgid "At a Glance"
2958
  msgstr "در یک نگاه"
2959
 
2960
+ #: ../../admin/view/wp-slimstat-reports.php:44
2961
  msgid "Currently Online"
2962
  msgstr "حالا روی خط"
2963
 
2964
+ #: ../../admin/view/wp-slimstat-reports.php:45
2965
+ #: ../../admin/view/wp-slimstat-reports.php:80
2966
  msgid "Spy View"
2967
  msgstr "دید دزدکی"
2968
 
2969
+ #: ../../admin/view/wp-slimstat-reports.php:46
2970
+ #: ../../admin/view/wp-slimstat-reports.php:81
2971
  msgid "Recent Search Terms"
2972
  msgstr "عبارت‌های جستجو شده اخیر"
2973
 
2974
+ #: ../../admin/view/wp-slimstat-reports.php:47
2975
  msgid "Top Pages"
2976
  msgstr "برترین صفحات"
2977
 
2978
+ #: ../../admin/view/wp-slimstat-reports.php:48
2979
+ #: ../../admin/view/wp-slimstat-reports.php:78
2980
  msgid "Top Traffic Sources"
2981
  msgstr "برترین منابع ترافیک"
2982
 
2983
+ #: ../../admin/view/wp-slimstat-reports.php:49
2984
  msgid "Top Known Visitors"
2985
  msgstr "برترین بیننده های آشنا"
2986
 
2987
+ #: ../../admin/view/wp-slimstat-reports.php:50
2988
+ #: ../../admin/view/wp-slimstat-reports.php:76
2989
+ #: ../../admin/view/wp-slimstat-reports.php:96
2990
  msgid "Top Search Terms"
2991
  msgstr "برترین عبارت های جستجو"
2992
 
2993
+ #: ../../admin/view/wp-slimstat-reports.php:51
2994
+ #: ../../admin/view/wp-slimstat-reports.php:63
2995
+ #: ../../admin/view/wp-slimstat-reports.php:77
2996
  msgid "Top Countries"
2997
  msgstr "برترین کشورها"
2998
 
2999
+ #: ../../admin/view/wp-slimstat-reports.php:52
3000
  msgid "Rankings"
3001
  msgstr "رتبه ها"
3002
 
3003
+ #: ../../admin/view/wp-slimstat-reports.php:53
3004
  msgid "Security Scan"
3005
  msgstr "بررسی امنیت"
3006
 
3007
+ #: ../../admin/view/wp-slimstat-reports.php:54
3008
  msgid "Top Language Families"
3009
  msgstr "برترین زبان‌ها"
3010
 
3011
+ #: ../../admin/view/wp-slimstat-reports.php:55
3012
  msgid "Human Visits (chart)"
3013
  msgstr "مشاهدات انسانی (نمودار)"
3014
 
3015
+ #: ../../admin/view/wp-slimstat-reports.php:57
3016
  msgid "Top Languages"
3017
  msgstr "بیش‌ترین زبان‌ها"
3018
 
3019
+ #: ../../admin/view/wp-slimstat-reports.php:58
3020
  msgid "Top Browsers"
3021
  msgstr "برترین مرورگرها"
3022
 
3023
+ #: ../../admin/view/wp-slimstat-reports.php:59
3024
  msgid "Top Service Providers"
3025
  msgstr "برترین خدمات دهنده‌ها"
3026
 
3027
+ #: ../../admin/view/wp-slimstat-reports.php:60
3028
  msgid "Top Operating Systems"
3029
  msgstr "برترین محیط‌های عامل"
3030
 
3031
+ #: ../../admin/view/wp-slimstat-reports.php:61
3032
  msgid "Top Screen Resolutions"
3033
  msgstr "برترین ابعاد صفحه نماش‌ها"
3034
 
3035
+ #: ../../admin/view/wp-slimstat-reports.php:64
3036
  msgid "Visit Duration"
3037
  msgstr "طول دوره بازدید"
3038
 
3039
+ #: ../../admin/view/wp-slimstat-reports.php:65
3040
+ #: ../../admin/view/wp-slimstat-reports.php:82
3041
  msgid "Recent Countries"
3042
  msgstr "کشورهای اخیر"
3043
 
3044
+ #: ../../admin/view/wp-slimstat-reports.php:66
3045
  msgid "Recent Screen Resolutions"
3046
  msgstr "ابعاد نمایش‌گرهای اخیر"
3047
 
3048
+ #: ../../admin/view/wp-slimstat-reports.php:67
3049
  msgid "Recent Operating Systems"
3050
  msgstr "محیطهای عامل اخیر"
3051
 
3052
+ #: ../../admin/view/wp-slimstat-reports.php:68
3053
  msgid "Recent Browsers"
3054
  msgstr "مرورگرهای اخیر"
3055
 
3056
+ #: ../../admin/view/wp-slimstat-reports.php:69
3057
  msgid "Recent Languages"
3058
  msgstr "زبان‌های اخیر"
3059
 
3060
+ #: ../../admin/view/wp-slimstat-reports.php:70
3061
  msgid "Top Browser Families"
3062
  msgstr "برترین مرورگرها"
3063
 
3064
+ #: ../../admin/view/wp-slimstat-reports.php:71
3065
  msgid "Top OS Families"
3066
  msgstr "برترین محیط عامل ها"
3067
 
3068
+ #: ../../admin/view/wp-slimstat-reports.php:72
3069
  msgid "Recent Users"
3070
  msgstr "کاربرهای اخیر"
3071
 
3072
+ #: ../../admin/view/wp-slimstat-reports.php:73
3073
  msgid "Top Users"
3074
  msgstr "برترین کاربرها"
3075
 
3076
+ #: ../../admin/view/wp-slimstat-reports.php:74
3077
  msgid "Traffic Sources (chart)"
3078
  msgstr "منابع ترافیک (نمودار)"
3079
 
3080
+ #: ../../admin/view/wp-slimstat-reports.php:75
3081
  msgid "Summary"
3082
  msgstr "خلاصه"
3083
 
3084
+ #: ../../admin/view/wp-slimstat-reports.php:79
3085
  msgid "Top Referring Search Engines"
3086
  msgstr "برترین موتور جستجو های ارجاع‌دهنده"
3087
 
3088
+ #: ../../admin/view/wp-slimstat-reports.php:83
3089
+ #: ../../admin/view/wp-slimstat-reports.php:99
3090
  msgid "Top Landing Pages"
3091
  msgstr "برترین صفحه های ورود"
3092
 
3093
+ #: ../../admin/view/wp-slimstat-reports.php:84
3094
  msgid "Average Pageviews per Visit (chart)"
3095
  msgstr "میان‌گین مشاهده صفحات در بازدید(نمودار)"
3096
 
3097
+ #: ../../admin/view/wp-slimstat-reports.php:85
3098
  msgid "Recent Posts"
3099
  msgstr "ارسال های اخیر"
3100
 
3101
+ #: ../../admin/view/wp-slimstat-reports.php:86
3102
  msgid "Recent Bounce Pages"
3103
  msgstr "صفحات وازده اخیر"
3104
 
3105
+ #: ../../admin/view/wp-slimstat-reports.php:87
3106
  msgid "Recent Feeds"
3107
  msgstr "خوراک‌های اخیر"
3108
 
3109
+ #: ../../admin/view/wp-slimstat-reports.php:88
3110
  msgid "Recent Pages Not Found"
3111
  msgstr "صفحه هایی پیدا نشده اخیر"
3112
 
3113
+ #: ../../admin/view/wp-slimstat-reports.php:89
3114
  msgid "Recent Internal Searches"
3115
  msgstr "جستجوهای داخلی اخیر"
3116
 
3117
+ #: ../../admin/view/wp-slimstat-reports.php:90
3118
  msgid "Top Categories"
3119
  msgstr "برترین دسته‌ها"
3120
 
3121
+ #: ../../admin/view/wp-slimstat-reports.php:91
3122
  msgid "Recent Outbound Links"
3123
  msgstr "پیوندهای بیرونی اخیر"
3124
 
3125
+ #: ../../admin/view/wp-slimstat-reports.php:92
3126
  msgid "Recent Events"
3127
  msgstr "اتفاقات اخیر"
3128
 
3129
+ #: ../../admin/view/wp-slimstat-reports.php:93
3130
  msgid "Top Posts"
3131
  msgstr "برترین ارسال ها"
3132
 
3133
+ #: ../../admin/view/wp-slimstat-reports.php:94
3134
  msgid "Top Feeds"
3135
  msgstr "برترین خوراک‌ها"
3136
 
3137
+ #: ../../admin/view/wp-slimstat-reports.php:95
3138
  msgid "Top Internal Searches"
3139
  msgstr "برترین جستجوهای داخلی"
3140
 
3141
+ #: ../../admin/view/wp-slimstat-reports.php:97
3142
  msgid "Recent Categories"
3143
  msgstr "دسته‌های اخیر"
3144
 
3145
+ #: ../../admin/view/wp-slimstat-reports.php:98
3146
  msgid "Top Pages Not Found"
3147
  msgstr "برترین صفحاتی که پیدا نشد"
3148
 
3149
+ #: ../../admin/view/wp-slimstat-reports.php:100
3150
  msgid "Top Authors"
3151
  msgstr "برترین نویسنده‌ها"
3152
 
3153
+ #: ../../admin/view/wp-slimstat-reports.php:101
3154
  msgid "Top Tags"
3155
  msgstr "برترین نشانه ها"
3156
 
3157
+ #: ../../admin/view/wp-slimstat-reports.php:102
3158
  msgid "Recent Downloads"
3159
  msgstr "بارگیری های اخیر"
3160
 
3161
+ #: ../../admin/view/wp-slimstat-reports.php:103
3162
  msgid "Top Outbound Links and Downloads"
3163
  msgstr "برترین پیوندهای بیرونی و بارگیری ها"
3164
 
3165
+ #: ../../admin/view/wp-slimstat-reports.php:104
3166
  msgid "Your Website"
3167
  msgstr "تارنمای شما"
3168
 
3169
+ #: ../../admin/view/wp-slimstat-reports.php:106
3170
  msgid "Activity Log"
3171
  msgstr "فهرست فعالیت ها"
3172
 
3173
+ #: ../../admin/view/wp-slimstat-reports.php:222
3174
  msgid "Chart controls"
3175
  msgstr "کنترل‌های نمودار"
3176
 
3177
+ #: ../../admin/view/wp-slimstat-reports.php:222
3178
  msgid "Use your mouse wheel to zoom in and out"
3179
  msgstr "از غلطانک موش‌واره برای بزرگ‌نمایی و کوچک‌نمایی استفاده کنید"
3180
 
3181
+ #: ../../admin/view/wp-slimstat-reports.php:222
3182
  msgid "While zooming in, drag the chart to move to a different area"
3183
  msgstr ""
3184
  "زمانی‌که بزرگ‌نمایی می‌کنید، نمودار را می‌توانید بکشید و به نقاط دیگر بروید"
3185
 
3186
+ #: ../../admin/view/wp-slimstat-reports.php:222
3187
  msgid "Double click on an empty region to reset the zoom level"
3188
  msgstr "بر یک ناحیه خالی دوبار کلیک کنید تا بزرگنمایی به حالت اولیه بازگردد"
3189
 
3190
+ #: ../../admin/view/wp-slimstat-reports.php:223
3191
  msgid ""
3192
  "Click on a data point to display the activity chart for each hour of that day"
3193
  msgstr "روی نقطه‌های داده کلیک کنید تا نمودار فعالیت آن ساعت را مشاهده کنید"
3194
 
3195
+ #: ../../admin/view/wp-slimstat-reports.php:256
3196
  msgid "src"
3197
  msgstr "منبع"
3198
 
3199
+ #: ../../admin/view/wp-slimstat-reports.php:257
3200
  msgid "serp"
3201
  msgstr ""
3202
 
3203
+ #: ../../admin/view/wp-slimstat-reports.php:262
3204
  msgid "Go to the corresponding search engine result page"
3205
  msgstr "برو به صفحه مرتبط با این جستجو"
3206
 
3207
+ #: ../../admin/view/wp-slimstat-reports.php:265
3208
  msgid "Go to the referring page"
3209
  msgstr "برو به صفحه ارجاع‌دهنده"
3210
 
3211
+ #: ../../admin/view/wp-slimstat-reports.php:288
3212
  msgid "Remove filter for"
3213
  msgstr "حذف فیلترها از"
3214
 
3215
+ #: ../../admin/view/wp-slimstat-reports.php:295
3216
  msgid "Reset All"
3217
  msgstr "بازنشانی همه"
3218
 
3219
+ #: ../../admin/view/wp-slimstat-reports.php:298
3220
  msgid "Current filters:"
3221
  msgstr "فیلترهای جاری:"
3222
 
3223
+ #: ../../admin/view/wp-slimstat-reports.php:302
3224
  msgid "Refresh"
3225
  msgstr "تازه سازی"
3226
 
3227
+ #: ../../admin/view/wp-slimstat-reports.php:339
3228
  #, php-format
3229
  msgid "Results %s - %s of %s"
3230
  msgstr " نتایج %s - %s از %s"
3231
 
3232
+ #: ../../admin/view/wp-slimstat-reports.php:341
3233
  msgid "Refresh in"
3234
  msgstr "تازه سازی در"
3235
 
3236
+ #: ../../admin/view/wp-slimstat-reports.php:363
3237
+ #: ../../admin/view/wp-slimstat-reports.php:375
3238
  #, php-format
3239
  msgid "Daily %s"
3240
  msgstr "%s روزانه"
3241
 
3242
+ #: ../../admin/view/wp-slimstat-reports.php:366
3243
  #, php-format
3244
  msgid "%s Minute by Minute"
3245
  msgstr "%s دقیقه به دقیقه"
3246
 
3247
+ #: ../../admin/view/wp-slimstat-reports.php:369
3248
  #, php-format
3249
  msgid "Hourly %s"
3250
  msgstr "%s ساعتی"
3251
 
3252
+ #: ../../admin/view/wp-slimstat-reports.php:372
3253
  #, php-format
3254
  msgid "Monthly %s"
3255
  msgstr "%s ماهانه"
3256
 
3257
+ #: ../../admin/view/wp-slimstat-reports.php:452
3258
  msgid "Category ID"
3259
  msgstr "شناسه دسته"
3260
 
3261
+ #: ../../admin/view/wp-slimstat-reports.php:485
3262
  msgid "OS Code"
3263
  msgstr "کد محیط عامل"
3264
 
3265
+ #: ../../admin/view/wp-slimstat-reports.php:495
3266
  msgid "Referrer"
3267
  msgstr "ارجاع دهنده"
3268
 
3269
+ #: ../../admin/view/wp-slimstat-reports.php:519
3270
+ #: ../../admin/view/wp-slimstat-reports.php:796
3271
+ #: ../../admin/view/wp-slimstat-reports.php:805
3272
+ #: ../../admin/view/wp-slimstat-reports.php:811
3273
+ #: ../../admin/view/wp-slimstat-reports.php:817
3274
+ #: ../../admin/view/wp-slimstat-reports.php:823
3275
+ #: ../../admin/view/wp-slimstat-reports.php:829
3276
+ #: ../../admin/view/wp-slimstat-reports.php:835
3277
+ #: ../../admin/view/wp-slimstat-reports.php:841
3278
  msgid "Hits"
3279
  msgstr "بازدیدها"
3280
 
3281
+ #: ../../admin/view/wp-slimstat-reports.php:687
3282
  msgid "Search for"
3283
  msgstr "جستجو به دنبال"
3284
 
3285
+ #: ../../admin/view/wp-slimstat-reports.php:718
3286
+ #: ../../admin/view/wp-slimstat-reports.php:728
3287
  msgid "Source"
3288
  msgstr "منبع"
3289
 
3290
+ #: ../../admin/view/wp-slimstat-reports.php:720
3291
  msgid "Keywords"
3292
  msgstr "کلمات کلیدی"
3293
 
3294
+ #: ../../admin/view/wp-slimstat-reports.php:728
3295
  #, php-format
3296
  msgid "Filter results where resource equals %s"
3297
  msgstr "نتایج را فیلتر کن وقتی منبع مساوی‌ست با %s"
3298
 
3299
+ #: ../../admin/view/wp-slimstat-reports.php:742
3300
  msgid "Total Pageviews"
3301
  msgstr "همه مشاهدات صفحات"
3302
 
3303
+ #: ../../admin/view/wp-slimstat-reports.php:743
3304
  msgid "DB Size"
3305
  msgstr "اندازه پایگاه داده"
3306
 
3307
+ #: ../../admin/view/wp-slimstat-reports.php:744
3308
  msgid "Tracking Active"
3309
  msgstr "ردگیری فعال"
3310
 
3311
+ #: ../../admin/view/wp-slimstat-reports.php:745
3312
  msgid "Javascript Mode"
3313
  msgstr "فعال سازی حالت جاوااسکریپت"
3314
 
3315
+ #: ../../admin/view/wp-slimstat-reports.php:746
3316
  msgid "Tracking Browser Caps"
3317
  msgstr "ردگیری قابلیت‌های مرورگر"
3318
 
3319
+ #: ../../admin/view/wp-slimstat-reports.php:747
3320
  msgid "Auto purge"
3321
  msgstr "پاک‌سازی خودکار"
3322
 
3323
+ #: ../../admin/view/wp-slimstat-reports.php:748
3324
  msgid "Oldest pageview"
3325
  msgstr "قدیمی‌ترین بازدید"
3326
 
3327
+ #: ../../admin/view/wp-slimstat-reports.php:748
3328
  msgid "No visits"
3329
  msgstr "بازدیدی نیست"
3330
 
3331
+ #: ../../admin/view/wp-slimstat-reports.php:758
3332
+ #: ../../admin/view/wp-slimstat-reports.php:860
3333
  msgid ""
3334
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
3335
  "time the tracking code is executed."
3336
  msgstr ""
3337
  "درخواست بارگیری یک پرونده زنگام. هر اجرای ردگیری منجر به ثبت یک بازید میشود."
3338
 
3339
+ #: ../../admin/view/wp-slimstat-reports.php:760
3340
  msgid "How many pages have been visited on average during the current period."
3341
  msgstr "چند صفحه به طور میانگین در "
3342
 
3343
+ #: ../../admin/view/wp-slimstat-reports.php:761
3344
+ #, fuzzy
3345
+ msgid "Average Pageviews"
3346
  msgstr "میان‌گین مشاهده صفحات"
3347
 
3348
+ #: ../../admin/view/wp-slimstat-reports.php:762
3349
  msgid ""
3350
  "Visitors who landed on your site after searching for a keyword on Google, "
3351
  "Yahoo, etc."
3352
  msgstr "کاربرانی که بعد از جستجو در موتورهای جستجو به سایت شما رسیده‌اند."
3353
 
3354
+ #: ../../admin/view/wp-slimstat-reports.php:763
3355
  msgid "From Search Results"
3356
  msgstr "از نتایج جستجو"
3357
 
3358
+ #: ../../admin/view/wp-slimstat-reports.php:764
3359
  msgid ""
3360
  "Used to differentiate between multiple requests to download a file from one "
3361
  "internet address (IP) and requests originating from many distinct addresses"
3363
  " این برای تشخیص دادن چندین درخواست بارگیری پرونده از یک آی پی ادرس و یا "
3364
  "درخواست از چند آی پی ادرس مختلف است."
3365
 
3366
+ #: ../../admin/view/wp-slimstat-reports.php:765
3367
+ #: ../../admin/view/wp-slimstat-reports.php:780
3368
+ #: ../../admin/view/wp-slimstat-reports.php:1145
3369
+ #: ../../admin/view/wp-slimstat-reports.php:1149
3370
+ #: ../../admin/view/wp-slimstat-reports.php:1153
3371
  msgid "Unique IPs"
3372
  msgstr "آی‌پی‌های یکتا"
3373
 
3374
+ #: ../../admin/view/wp-slimstat-reports.php:766
3375
  msgid "Last 5 minutes"
3376
  msgstr "۵ دقیقه اخیر"
3377
 
3378
+ #: ../../admin/view/wp-slimstat-reports.php:767
3379
  msgid "Last 30 minutes"
3380
  msgstr "۳۰ دقیقه اخیر"
3381
 
3382
+ #: ../../admin/view/wp-slimstat-reports.php:777
3383
  msgid ""
3384
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3385
  "multiple times if they perform multiple visits."
3387
  "هر بازدید یک جلسه است که حداکثر ۳۰ دقیقه میباشد. «بیننده دوباره» چند بار "
3388
  "شمارش میشود اگر چند بار بازدید کنند."
3389
 
3390
+ #: ../../admin/view/wp-slimstat-reports.php:778
3391
  msgid "Human visits"
3392
  msgstr "بازدیدهای انسانی"
3393
 
3394
+ #: ../../admin/view/wp-slimstat-reports.php:779
3395
  msgid "It includes only traffic generated by human visitors."
3396
  msgstr "فقط شامل ترافیک انسانی میشود"
3397
 
3398
+ #: ../../admin/view/wp-slimstat-reports.php:781
3399
+ #: ../../admin/view/wp-slimstat-reports.php:872
3400
  msgid ""
3401
  "Percentage of single-page visits, i.e. visits in which the person left your "
3402
  "site from the entrance page."
3403
  msgstr "درصد بازدید «تک-صفحه» ها؛ یعنی بازدیدی که فقط «صفحه ورودی» بود."
3404
 
3405
+ #: ../../admin/view/wp-slimstat-reports.php:782
3406
  msgid "Bounce rate"
3407
  msgstr "میزان وازده گی"
3408
 
3409
+ #: ../../admin/view/wp-slimstat-reports.php:783
3410
  msgid "Visitors who had previously left a comment on your blog."
3411
  msgstr "بازدیدکنندگانی که قبلا در تارنامه نظر ثبت کرده‌اند"
3412
 
3413
+ #: ../../admin/view/wp-slimstat-reports.php:784
3414
  msgid "Known visitors"
3415
  msgstr "بیننده های آشنا"
3416
 
3417
+ #: ../../admin/view/wp-slimstat-reports.php:785
3418
  msgid "Human users who visited your site only once."
3419
  msgstr "کاربرانی که فقط یک بار پایگاه شما را دیده‌اند."
3420
 
3421
+ #: ../../admin/view/wp-slimstat-reports.php:786
3422
  msgid "New visitors"
3423
  msgstr "بازدیدکنندگان جدید"
3424
 
3425
+ #: ../../admin/view/wp-slimstat-reports.php:787
3426
  msgid "Bots"
3427
  msgstr "ربات‌ها"
3428
 
3429
+ #: ../../admin/view/wp-slimstat-reports.php:788
3430
  msgid "Pages per visit"
3431
  msgstr "صفحات در بازدید"
3432
 
3433
+ #: ../../admin/view/wp-slimstat-reports.php:789
3434
+ #: ../../admin/view/wp-slimstat-reports.php:1158
3435
  msgid "Longest visit"
3436
  msgstr "طولانی‌ترین مشاهده صفحات"
3437
 
3438
+ #: ../../admin/view/wp-slimstat-reports.php:789
3439
  msgid "hits"
3440
  msgstr "مشاهدات"
3441
 
3442
+ #: ../../admin/view/wp-slimstat-reports.php:807
3443
  msgid "0 - 30 seconds"
3444
  msgstr "۰ تا ۳۰ ثانیه"
3445
 
3446
+ #: ../../admin/view/wp-slimstat-reports.php:813
3447
  msgid "31 - 60 seconds"
3448
  msgstr "۳۱ تا ۶۰ ثانیه"
3449
 
3450
+ #: ../../admin/view/wp-slimstat-reports.php:819
3451
  msgid "1 - 3 minutes"
3452
  msgstr "۱ تا ۳ دقیقه"
3453
 
3454
+ #: ../../admin/view/wp-slimstat-reports.php:825
3455
  msgid "3 - 5 minutes"
3456
  msgstr "۳ تا ۵ دقیقه"
3457
 
3458
+ #: ../../admin/view/wp-slimstat-reports.php:831
3459
  msgid "5 - 7 minutes"
3460
  msgstr "۵ تا ۷ دقیقه"
3461
 
3462
+ #: ../../admin/view/wp-slimstat-reports.php:837
3463
  msgid "7 - 10 minutes"
3464
  msgstr "۷ تا ۱۰ دقیقه"
3465
 
3466
+ #: ../../admin/view/wp-slimstat-reports.php:843
3467
  msgid "More than 10 minutes"
3468
  msgstr "بیش از ۱۰ دقیقه"
3469
 
3470
+ #: ../../admin/view/wp-slimstat-reports.php:852
3471
  msgid "Average time on site"
3472
  msgstr " میان‌گین دیدن از پایگاه"
3473
 
3474
+ #: ../../admin/view/wp-slimstat-reports.php:862
3475
  msgid ""
3476
  "A referrer (or referring site) is the site that a visitor previously visited "
3477
  "before following a link to your site."
3478
  msgstr ""
3479
  "ارجاع دهنده (یا پایگاه ارجاع دهنده) که بیننده را به پایگاه شما پیوند زده است."
3480
 
3481
+ #: ../../admin/view/wp-slimstat-reports.php:863
3482
  msgid "Unique Referrers"
3483
  msgstr "ارجاع‌دهنده‌های یکتا"
3484
 
3485
+ #: ../../admin/view/wp-slimstat-reports.php:864
3486
  msgid ""
3487
  "Visitors who visited the site by typing the URL directly into their browser. "
3488
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
3493
  "کاربرانی که با استفاده از bookmarks/favorites، و یا از پیوندهایی در نامک و "
3494
  "مدارک که متغییر ردگیری ندارند نیز بشود."
3495
 
3496
+ #: ../../admin/view/wp-slimstat-reports.php:865
3497
  msgid "Direct Pageviews"
3498
  msgstr "مشاهده صفحات بی‌واسطه"
3499
 
3500
+ #: ../../admin/view/wp-slimstat-reports.php:866
3501
  msgid ""
3502
  "Visitors who came to your site via searches on Google or some other search "
3503
  "engine."
3504
  msgstr "کاربرانی که از گوگل یا سایر موتورهای جستجو به پایگاه شما آمده‌اند."
3505
 
3506
+ #: ../../admin/view/wp-slimstat-reports.php:867
3507
  msgid "From a search result"
3508
  msgstr "از نتایج جستجو"
3509
 
3510
+ #: ../../admin/view/wp-slimstat-reports.php:868
3511
  msgid ""
3512
  "The first page that a user views during a session. This is also known as the "
3513
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
3518
  "به عنوان مثال اگر کاربری برای «بستنی» جستجو کند و در صفحه اصلی شما هدایت "
3519
  "شود، در آن جلسه به عنوان «صفحه ورودی» حساب میشود."
3520
 
3521
+ #: ../../admin/view/wp-slimstat-reports.php:869
3522
  msgid "Unique Landing Pages"
3523
  msgstr "صفحات فرودی خاص"
3524
 
3525
+ #: ../../admin/view/wp-slimstat-reports.php:870
3526
  msgid "Number of single-page visits to your site over the selected period."
3527
  msgstr "تعداد بازدید «تک-صفحه» به پایگاه شما در بازه زمانی انتخاب شده."
3528
 
3529
+ #: ../../admin/view/wp-slimstat-reports.php:871
3530
  msgid "Bounce Pages"
3531
  msgstr "صفحات وازده"
3532
 
3533
+ #: ../../admin/view/wp-slimstat-reports.php:873
3534
  msgid "New Visitors Rate"
3535
  msgstr "میزان بازدیدکنندگان جدید"
3536
 
3537
+ #: ../../admin/view/wp-slimstat-reports.php:874
3538
  msgid ""
3539
  "Visitors who visited the site in the last 5 minutes coming from a search "
3540
  "engine."
3541
  msgstr "کاربرانی که در ۵ دقیقه گذشته از یک موتور جستجو به پایگاه شما آمده‌اند."
3542
 
3543
+ #: ../../admin/view/wp-slimstat-reports.php:875
3544
  msgid "Currently from search engines"
3545
  msgstr "هم‌اکنون از موتورهای جستجو"
3546
 
3547
+ #: ../../admin/view/wp-slimstat-reports.php:943
3548
  msgid "Number of pages in your site included in Google's index."
3549
  msgstr "تعداد صفحاتی که در فهرست گوگل شمرده شده است."
3550
 
3551
+ #: ../../admin/view/wp-slimstat-reports.php:944
3552
  msgid "Google Index"
3553
  msgstr "اندیس گوگل"
3554
 
3555
+ #: ../../admin/view/wp-slimstat-reports.php:945
3556
  msgid "Number of pages, according to Google, that link back to your site."
3557
  msgstr "تعداد صفحات که به گفته گوگل به پایگاه پیوند میدهند. "
3558
 
3559
+ #: ../../admin/view/wp-slimstat-reports.php:946
3560
  msgid "Google Backlinks"
3561
  msgstr ""
3562
 
3563
+ #: ../../admin/view/wp-slimstat-reports.php:947
3564
  msgid ""
3565
  "How many times the Facebook Like button has been approximately clicked on "
3566
  "your site."
3567
  msgstr "چند بار Facebook Like در پایگاه شما کلیک شده است."
3568
 
3569
+ #: ../../admin/view/wp-slimstat-reports.php:948
3570
  msgid "Facebook Likes"
3571
  msgstr "لایک های فیسبوک"
3572
 
3573
+ #: ../../admin/view/wp-slimstat-reports.php:949
3574
  msgid ""
3575
  "How many times your site has been shared by someone on the social network."
3576
  msgstr "چند بار پایگاه شما در شبکه های اجتماعی بخش شده است"
3577
 
3578
+ #: ../../admin/view/wp-slimstat-reports.php:950
3579
  msgid "Facebook Shares"
3580
  msgstr "بخش های فیسبوک"
3581
 
3582
+ #: ../../admin/view/wp-slimstat-reports.php:951
3583
  msgid "How many times links to your website have been clicked on Facebook."
3584
  msgstr "چند بار پایگاه شما در Facebook فشار داده شده است."
3585
 
3586
+ #: ../../admin/view/wp-slimstat-reports.php:952
3587
  msgid "Facebook Clicks"
3588
  msgstr "Facebook Clicks"
3589
 
3590
+ #: ../../admin/view/wp-slimstat-reports.php:953
3591
  msgid ""
3592
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3593
  "traffic data."
3595
  "شرکت Alexa بخشی از Amazon.com میباشد که گزارش پایگاه های تبلیغاتی را انجام "
3596
  "میدهد."
3597
 
3598
+ #: ../../admin/view/wp-slimstat-reports.php:954
3599
  msgid "Alexa World Rank"
3600
  msgstr ""
3601
 
3602
+ #: ../../admin/view/wp-slimstat-reports.php:955
3603
  msgid "Alexa Country Rank"
3604
  msgstr ""
3605
 
3606
+ #: ../../admin/view/wp-slimstat-reports.php:956
3607
  msgid "Alexa Popularity"
3608
  msgstr ""
3609
 
3610
+ #: ../../admin/view/wp-slimstat-reports.php:973
3611
  msgid "Bing Test"
3612
  msgstr ""
3613
 
3614
+ #: ../../admin/view/wp-slimstat-reports.php:974
3615
  msgid "AntiVirus Scan"
3616
  msgstr "ویروسیابی"
3617
 
3618
+ #: ../../admin/view/wp-slimstat-reports.php:975
3619
  msgid "Google Bot Test"
3620
  msgstr ""
3621
 
3622
+ #: ../../admin/view/wp-slimstat-reports.php:976
3623
  msgid "Scan for Hostile Strings"
3624
  msgstr "بررسی برای رشته خطرناک"
3625
 
3626
+ #: ../../admin/view/wp-slimstat-reports.php:977
3627
  msgid "Generic Web Bot test"
3628
  msgstr ""
3629
 
3630
+ #: ../../admin/view/wp-slimstat-reports.php:978
3631
  msgid "Google Safe Browsing List"
3632
  msgstr " فهرست پایگاه های امن گوگل"
3633
 
3634
+ #: ../../admin/view/wp-slimstat-reports.php:979
3635
  msgid "Hostile External Links"
3636
  msgstr "پیوند خارجی خطرناک"
3637
 
3638
+ #: ../../admin/view/wp-slimstat-reports.php:980
3639
  msgid "Other Treats"
3640
  msgstr " قاقالی‌لی"
3641
 
3642
+ #: ../../admin/view/wp-slimstat-reports.php:1006
3643
  msgid "Passed"
3644
  msgstr "قبول شد"
3645
 
3646
+ #: ../../admin/view/wp-slimstat-reports.php:1006
3647
  msgid "At Risk"
3648
  msgstr "در خطر"
3649
 
3650
+ #: ../../admin/view/wp-slimstat-reports.php:1009
3651
  msgid "Timed Out"
3652
  msgstr ""
3653
 
3654
  # Unknown
3655
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3656
  msgid "c-xx"
3657
  msgstr "Unknown"
3658
 
3659
  # Afghanistan
3660
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3661
  msgid "c-af"
3662
  msgstr "Afghanistan"
3663
 
3664
  # Åland Islands
3665
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3666
  msgid "c-ax"
3667
  msgstr "Aland Islands"
3668
 
3669
  # Albania
3670
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3671
  msgid "c-al"
3672
  msgstr "Albania"
3673
 
3674
  # Algeria
3675
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3676
  msgid "c-dz"
3677
  msgstr "Algeria"
3678
 
3679
  # Andorra
3680
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3681
  msgid "c-ad"
3682
  msgstr "Andorra"
3683
 
3684
  # Angola
3685
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3686
  msgid "c-ao"
3687
  msgstr "Angola"
3688
 
3689
  # Anguilla
3690
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3691
  msgid "c-ai"
3692
  msgstr "Anguilla"
3693
 
3694
  # Antigua and Barbuda
3695
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3696
  msgid "c-ag"
3697
  msgstr "Antigua and Barbuda"
3698
 
3699
  # Argentina
3700
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3701
  msgid "c-ar"
3702
  msgstr "Argentina"
3703
 
3704
  # Armenia
3705
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3706
  msgid "c-am"
3707
  msgstr "Armenia"
3708
 
3709
  # Aruba
3710
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3711
  msgid "c-aw"
3712
  msgstr "Aruba"
3713
 
3714
  # Australia
3715
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3716
  msgid "c-au"
3717
  msgstr "Australia"
3718
 
3719
  # Austria
3720
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3721
  msgid "c-at"
3722
  msgstr "Austria"
3723
 
3724
  # Azerbaijan
3725
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3726
  msgid "c-az"
3727
  msgstr "Azerbaijan"
3728
 
3729
  # Bahamas
3730
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3731
  msgid "c-bs"
3732
  msgstr "Bahamas"
3733
 
3734
  # Bahrain
3735
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3736
  msgid "c-bh"
3737
  msgstr "Bahrain"
3738
 
3739
  # Bangladesh
3740
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3741
  msgid "c-bd"
3742
  msgstr "Bangladesh"
3743
 
3744
  # Barbados
3745
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3746
  msgid "c-bb"
3747
  msgstr "Barbados"
3748
 
3749
  # Belarus
3750
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3751
  msgid "c-by"
3752
  msgstr "Belarus"
3753
 
3754
  # Belgium
3755
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3756
  msgid "c-be"
3757
  msgstr "Belgium"
3758
 
3759
  # Belize
3760
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3761
  msgid "c-bz"
3762
  msgstr "Belize"
3763
 
3764
  # Benin
3765
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3766
  msgid "c-bj"
3767
  msgstr "Benin"
3768
 
3769
  # Bermuda
3770
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3771
  msgid "c-bm"
3772
  msgstr "Bermuda"
3773
 
3774
  # Bhutan
3775
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3776
  msgid "c-bt"
3777
  msgstr "Bhutan"
3778
 
3779
  # Bolivia
3780
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3781
  msgid "c-bo"
3782
  msgstr "Bolivia"
3783
 
3784
  # Bosnia and Herzegovina
3785
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3786
  msgid "c-ba"
3787
  msgstr "Bosnia and Herzegovina"
3788
 
3789
  # Botswana
3790
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3791
  msgid "c-bw"
3792
  msgstr "Botswana"
3793
 
3794
  # Brazil
3795
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3796
  msgid "c-br"
3797
  msgstr "Brazil"
3798
 
3799
  # Brunei Darussalam
3800
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3801
  msgid "c-bn"
3802
  msgstr "Brunei Darussalam"
3803
 
3804
  # Bulgaria
3805
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3806
  msgid "c-bg"
3807
  msgstr "Bulgaria"
3808
 
3809
  # Burkina Faso
3810
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3811
  msgid "c-bf"
3812
  msgstr "Burkina Faso"
3813
 
3814
  # Burundi
3815
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3816
  msgid "c-bi"
3817
  msgstr "Burundi"
3818
 
3819
  # Cambodia
3820
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3821
  msgid "c-kh"
3822
  msgstr "Cambodia"
3823
 
3824
  # Cameroon
3825
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3826
  msgid "c-cm"
3827
  msgstr "Cameroon"
3828
 
3829
  # Canada
3830
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3831
  msgid "c-ca"
3832
  msgstr "Canada"
3833
 
3834
  # Cape Verde
3835
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3836
  msgid "c-cv"
3837
  msgstr "Cape Verde"
3838
 
3839
  # Cayman Islands
3840
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3841
  msgid "c-ky"
3842
  msgstr "Cayman Islands"
3843
 
3844
  # Central African Republic
3845
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3846
  msgid "c-cf"
3847
  msgstr "Central African Republic"
3848
 
3849
  # Chad
3850
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3851
  msgid "c-td"
3852
  msgstr "Chad"
3853
 
3854
  # Chile
3855
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3856
  msgid "c-cl"
3857
  msgstr "Chile"
3858
 
3859
  # China
3860
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3861
  msgid "c-cn"
3862
  msgstr "China"
3863
 
3864
  # Colombia
3865
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3866
  msgid "c-co"
3867
  msgstr "Colombia"
3868
 
3869
  # Comoros
3870
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3871
  msgid "c-km"
3872
  msgstr "Comoros"
3873
 
3874
  # Congo
3875
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3876
  msgid "c-cg"
3877
  msgstr "Congo"
3878
 
3879
  # The Democratic Republic of the Congo
3880
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3881
  msgid "c-cd"
3882
  msgstr "The Democratic Republic of the Congo"
3883
 
3884
  # Costa Rica
3885
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3886
  msgid "c-cr"
3887
  msgstr "Costa Rica"
3888
 
3889
  # Côte d'Ivoire
3890
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3891
  msgid "c-ci"
3892
  msgstr "Côte d'Ivoire"
3893
 
3894
  # Croatia
3895
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3896
  msgid "c-hr"
3897
  msgstr "Croatia"
3898
 
3899
  # Cuba
3900
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3901
  msgid "c-cu"
3902
  msgstr "Cuba"
3903
 
3904
  # Cyprus
3905
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3906
  msgid "c-cy"
3907
  msgstr "Cyprus"
3908
 
3909
  # Czech Republic
3910
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3911
  msgid "c-cz"
3912
  msgstr "Czech Republic"
3913
 
3914
  # Denmark
3915
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3916
  msgid "c-dk"
3917
  msgstr "Denmark"
3918
 
3919
  # Djibouti
3920
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3921
  msgid "c-dj"
3922
  msgstr "Djibouti"
3923
 
3924
  # Dominica
3925
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3926
  msgid "c-dm"
3927
  msgstr "Dominica"
3928
 
3929
  # Dominican Republic
3930
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3931
  msgid "c-do"
3932
  msgstr "Dominican Republic"
3933
 
3934
  # Ecuador
3935
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3936
  msgid "c-ec"
3937
  msgstr "Ecuador"
3938
 
3939
  # Egypt
3940
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3941
  msgid "c-eg"
3942
  msgstr "Egypt"
3943
 
3944
  # El Salvador
3945
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3946
  msgid "c-sv"
3947
  msgstr "El Salvador"
3948
 
3949
  # Equatorial Guinea
3950
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3951
  msgid "c-gq"
3952
  msgstr "Equatorial Guinea"
3953
 
3954
  # Eritrea
3955
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3956
  msgid "c-er"
3957
  msgstr "Eritrea"
3958
 
3959
  # Estonia
3960
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3961
  msgid "c-ee"
3962
  msgstr "Estonia"
3963
 
3964
  # Ethiopia
3965
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3966
  msgid "c-et"
3967
  msgstr "Ethiopia"
3968
 
3969
  # Faroe Islands
3970
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3971
  msgid "c-fo"
3972
  msgstr "Faroe Islands"
3973
 
3974
  # Falkland Islands (Malvinas)
3975
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3976
  msgid "c-fk"
3977
  msgstr "Falkland Islands (Malvinas)"
3978
 
3979
  # Fiji
3980
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3981
  msgid "c-fj"
3982
  msgstr "Fiji"
3983
 
3984
  # Finland
3985
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3986
  msgid "c-fi"
3987
  msgstr "Finland"
3988
 
3989
  # France
3990
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3991
  msgid "c-fr"
3992
  msgstr "France"
3993
 
3994
  # French Guiana
3995
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3996
  msgid "c-gf"
3997
  msgstr "French Guiana"
3998
 
3999
  # Gabon
4000
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4001
  msgid "c-ga"
4002
  msgstr "Gabon"
4003
 
4004
  # Gambia
4005
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4006
  msgid "c-gm"
4007
  msgstr "Gambia"
4008
 
4009
  # Georgia
4010
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4011
  msgid "c-ge"
4012
  msgstr "Georgia"
4013
 
4014
  # Germany
4015
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4016
  msgid "c-de"
4017
  msgstr "Germany"
4018
 
4019
  # Ghana
4020
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4021
  msgid "c-gh"
4022
  msgstr "Ghana"
4023
 
4024
  # Greece
4025
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4026
  msgid "c-gr"
4027
  msgstr "Greece"
4028
 
4029
  # Greenland
4030
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4031
  msgid "c-gl"
4032
  msgstr "Greenland"
4033
 
4034
  # Grenada
4035
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4036
  msgid "c-gd"
4037
  msgstr "Grenada"
4038
 
4039
  # Guadeloupe
4040
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4041
  msgid "c-gp"
4042
  msgstr "Guadeloupe"
4043
 
4044
  # Guatemala
4045
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4046
  msgid "c-gt"
4047
  msgstr "Guatemala"
4048
 
4049
  # Guinea
4050
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4051
  msgid "c-gn"
4052
  msgstr "Guinea"
4053
 
4054
  # Guinea-Bissau
4055
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4056
  msgid "c-gw"
4057
  msgstr "Guinea-Bissau"
4058
 
4059
  # Guyana
4060
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4061
  msgid "c-gy"
4062
  msgstr "Guyana"
4063
 
4064
  # Haiti
4065
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4066
  msgid "c-ht"
4067
  msgstr "Haiti"
4068
 
4069
  # Honduras
4070
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4071
  msgid "c-hn"
4072
  msgstr "Honduras"
4073
 
4074
  # Hong Kong
4075
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4076
  msgid "c-hk"
4077
  msgstr "Hong Kong"
4078
 
4079
  # Hungary
4080
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4081
  msgid "c-hu"
4082
  msgstr "Hungary"
4083
 
4084
  # Iceland
4085
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4086
  msgid "c-is"
4087
  msgstr "Iceland"
4088
 
4089
  # India
4090
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4091
  msgid "c-in"
4092
  msgstr "India"
4093
 
4094
  # Indonesia
4095
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4096
  msgid "c-id"
4097
  msgstr "Indonesia"
4098
 
4099
  # Islamic Republic of Iran
4100
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4101
  msgid "c-ir"
4102
  msgstr "Islamic Republic of Iran"
4103
 
4104
  # Iraq
4105
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4106
  msgid "c-iq"
4107
  msgstr "Iraq"
4108
 
4109
  # Ireland
4110
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4111
  msgid "c-ie"
4112
  msgstr "Ireland"
4113
 
4114
  # Israel
4115
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4116
  msgid "c-il"
4117
  msgstr "Israel"
4118
 
4119
  # Italy
4120
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4121
  msgid "c-it"
4122
  msgstr "Italy"
4123
 
4124
  # Jamaica
4125
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4126
  msgid "c-jm"
4127
  msgstr "Jamaica"
4128
 
4129
  # Japan
4130
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4131
  msgid "c-jp"
4132
  msgstr "Japan"
4133
 
4134
  # Jordan
4135
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4136
  msgid "c-jo"
4137
  msgstr "Jordan"
4138
 
4139
  # Kazakhstan
4140
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4141
  msgid "c-kz"
4142
  msgstr "Kazakhstan"
4143
 
4144
  # Kenya
4145
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4146
  msgid "c-ke"
4147
  msgstr "Kenya"
4148
 
4149
  # Nauru
4150
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4151
  msgid "c-nr"
4152
  msgstr "Nauru"
4153
 
4154
  # Democratic People's Republic of Korea
4155
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4156
  msgid "c-kp"
4157
  msgstr "Democratic People's Republic of Korea"
4158
 
4159
  # Republic of Korea
4160
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4161
  msgid "c-kr"
4162
  msgstr "Republic of Korea"
4163
 
4164
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4165
  msgid "c-kv"
4166
  msgstr ""
4167
 
4168
  # Kuwait
4169
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4170
  msgid "c-kw"
4171
  msgstr "Kuwait"
4172
 
4173
  # Kyrgyzstan
4174
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4175
  msgid "c-kg"
4176
  msgstr "Kyrgyzstan"
4177
 
4178
  # Lao People's Democratic Republic
4179
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4180
  msgid "c-la"
4181
  msgstr "Lao People's Democratic Republic"
4182
 
4183
  # Latvia
4184
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4185
  msgid "c-lv"
4186
  msgstr "Latvia"
4187
 
4188
  # Lebanon
4189
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4190
  msgid "c-lb"
4191
  msgstr "Lebanon"
4192
 
4193
  # Lesotho
4194
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4195
  msgid "c-ls"
4196
  msgstr "Lesotho"
4197
 
4198
  # Liberia
4199
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4200
  msgid "c-lr"
4201
  msgstr "Liberia"
4202
 
4203
  # Libyan Arab Jamahiriya
4204
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4205
  msgid "c-ly"
4206
  msgstr "Libyan Arab Jamahiriya"
4207
 
4208
  # Liechtenstein
4209
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4210
  msgid "c-li"
4211
  msgstr "Liechtenstein"
4212
 
4213
  # Lithuania
4214
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4215
  msgid "c-lt"
4216
  msgstr "Lithuania"
4217
 
4218
  # Luxembourg
4219
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4220
  msgid "c-lu"
4221
  msgstr "Luxembourg"
4222
 
4223
  # The Former Yugoslav Republic of Macedonia
4224
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4225
  msgid "c-mk"
4226
  msgstr "The Former Yugoslav Republic of Macedonia"
4227
 
4228
  # Madagascar
4229
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4230
  msgid "c-mg"
4231
  msgstr "Madagascar"
4232
 
4233
  # Malawi
4234
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4235
  msgid "c-mw"
4236
  msgstr "Malawi"
4237
 
4238
  # Malaysia
4239
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4240
  msgid "c-my"
4241
  msgstr "Malaysia"
4242
 
4243
  # Mali
4244
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4245
  msgid "c-ml"
4246
  msgstr "Mali"
4247
 
4248
  # Malta
4249
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4250
  msgid "c-mt"
4251
  msgstr "Malta"
4252
 
4253
  # Martinique
4254
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4255
  msgid "c-mq"
4256
  msgstr "Martinique"
4257
 
4258
  # Mauritania
4259
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4260
  msgid "c-mr"
4261
  msgstr "Mauritania"
4262
 
4263
  # Mauritius
4264
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4265
  msgid "c-mu"
4266
  msgstr "Mauritius"
4267
 
4268
  # Mexico
4269
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4270
  msgid "c-mx"
4271
  msgstr "Mexico"
4272
 
4273
  # Moldova
4274
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4275
  msgid "c-md"
4276
  msgstr "Moldova"
4277
 
4278
  # Mongolia
4279
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4280
  msgid "c-mn"
4281
  msgstr "Mongolia"
4282
 
4283
  # Montenegro
4284
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4285
  msgid "c-me"
4286
  msgstr "Montenegro"
4287
 
4288
  # Montserrat
4289
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4290
  msgid "c-ms"
4291
  msgstr "Montserrat"
4292
 
4293
  # Morocco
4294
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4295
  msgid "c-ma"
4296
  msgstr "Morocco"
4297
 
4298
  # Mozambique
4299
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4300
  msgid "c-mz"
4301
  msgstr "Mozambique"
4302
 
4303
  # Myanmar
4304
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4305
  msgid "c-mm"
4306
  msgstr "Myanmar"
4307
 
4308
  # Namibia
4309
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4310
  msgid "c-na"
4311
  msgstr "Namibia"
4312
 
4313
  # Nepal
4314
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4315
  msgid "c-np"
4316
  msgstr "Nepal"
4317
 
4318
  # Netherlands
4319
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4320
  msgid "c-nl"
4321
  msgstr "Netherlands"
4322
 
4323
  # New Caledonia
4324
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4325
  msgid "c-nc"
4326
  msgstr "New Caledonia"
4327
 
4328
  # New Zealand
4329
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4330
  msgid "c-nz"
4331
  msgstr "New Zealand"
4332
 
4333
  # Nicaragua
4334
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4335
  msgid "c-ni"
4336
  msgstr "Nicaragua"
4337
 
4338
  # Niger
4339
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4340
  msgid "c-ne"
4341
  msgstr "Niger"
4342
 
4343
  # Nigeria
4344
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4345
  msgid "c-ng"
4346
  msgstr "Nigeria"
4347
 
4348
  # Norway
4349
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4350
  msgid "c-no"
4351
  msgstr "Norway"
4352
 
4353
  # Oman
4354
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4355
  msgid "c-om"
4356
  msgstr "Oman"
4357
 
4358
  # Pakistan
4359
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4360
  msgid "c-pk"
4361
  msgstr "Pakistan"
4362
 
4363
  # Palau
4364
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4365
  msgid "c-pw"
4366
  msgstr "Palau"
4367
 
4368
  # Occupied Palestinian Territory
4369
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4370
  msgid "c-ps"
4371
  msgstr "Occupied Palestinian Territory"
4372
 
4373
  # Panama
4374
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4375
  msgid "c-pa"
4376
  msgstr "Panama"
4377
 
4378
  # Papua New Guinea
4379
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4380
  msgid "c-pg"
4381
  msgstr "Papua New Guinea"
4382
 
4383
  # Paraguay
4384
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4385
  msgid "c-py"
4386
  msgstr "Paraguay"
4387
 
4388
  # Peru
4389
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4390
  msgid "c-pe"
4391
  msgstr "Peru"
4392
 
4393
  # Philippines
4394
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4395
  msgid "c-ph"
4396
  msgstr "Philippines"
4397
 
4398
  # Poland
4399
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4400
  msgid "c-pl"
4401
  msgstr "Poland"
4402
 
4403
  # Portugal
4404
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4405
  msgid "c-pt"
4406
  msgstr "Portugal"
4407
 
4408
  # Puerto Rico
4409
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4410
  msgid "c-pr"
4411
  msgstr "Puerto Rico"
4412
 
4413
  # Qatar
4414
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4415
  msgid "c-qa"
4416
  msgstr "Qatar"
4417
 
4418
  # Réunion
4419
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4420
  msgid "c-re"
4421
  msgstr "Réunion"
4422
 
4423
  # Romania
4424
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4425
  msgid "c-ro"
4426
  msgstr "Romania"
4427
 
4428
  # Russian Federation
4429
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4430
  msgid "c-ru"
4431
  msgstr "Russian Federation"
4432
 
4433
  # Rwanda
4434
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4435
  msgid "c-rw"
4436
  msgstr "Rwanda"
4437
 
4438
  # Saint Kitts and Nevis
4439
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4440
  msgid "c-kn"
4441
  msgstr "Saint Kitts and Nevis"
4442
 
4443
  # Saint Lucia
4444
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4445
  msgid "c-lc"
4446
  msgstr "Saint Lucia"
4447
 
4448
  # Saint Martin
4449
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4450
  msgid "c-mf"
4451
  msgstr "Saint Martin"
4452
 
4453
  # Saint Vincent and the Grenadines
4454
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4455
  msgid "c-vc"
4456
  msgstr "Saint Vincent and the Grenadines"
4457
 
4458
  # Samoa
4459
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4460
  msgid "c-ws"
4461
  msgstr "Samoa"
4462
 
4463
  # Sao Tome and Principe
4464
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4465
  msgid "c-st"
4466
  msgstr "Sao Tome and Principe"
4467
 
4468
  # Saudi Arabia
4469
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4470
  msgid "c-sa"
4471
  msgstr "Saudi Arabia"
4472
 
4473
  # Senegal
4474
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4475
  msgid "c-sn"
4476
  msgstr "Senegal"
4477
 
4478
  # Serbia
4479
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4480
  msgid "c-rs"
4481
  msgstr "Serbia"
4482
 
4483
  # Sierra Leone
4484
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4485
  msgid "c-sl"
4486
  msgstr "Sierra Leone"
4487
 
4488
  # Singapore
4489
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4490
  msgid "c-sg"
4491
  msgstr "Singapore"
4492
 
4493
  # Slovakia
4494
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4495
  msgid "c-sk"
4496
  msgstr "Slovakia"
4497
 
4498
  # Slovenia
4499
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4500
  msgid "c-si"
4501
  msgstr "Slovenia"
4502
 
4503
  # Solomon Islands
4504
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4505
  msgid "c-sb"
4506
  msgstr "Solomon Islands"
4507
 
4508
  # Somalia
4509
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4510
  msgid "c-so"
4511
  msgstr "Somalia"
4512
 
4513
  # South Africa
4514
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4515
  msgid "c-za"
4516
  msgstr "South Africa"
4517
 
4518
  # South Georgia and the South Sandwich Islands
4519
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4520
  msgid "c-gs"
4521
  msgstr "South Georgia and the South Sandwich Islands"
4522
 
4523
  # Spain
4524
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4525
  msgid "c-es"
4526
  msgstr "Spain"
4527
 
4528
  # Sri Lanka
4529
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4530
  msgid "c-lk"
4531
  msgstr "Sri Lanka"
4532
 
4533
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4534
+ msgid "c-sc"
4535
+ msgstr "Seychelles"
4536
+
4537
  # Sudan
4538
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4539
  msgid "c-sd"
4540
  msgstr "Sudan"
4541
 
4542
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4543
  msgid "c-ss"
4544
  msgstr ""
4545
 
4546
  # Suriname
4547
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4548
  msgid "c-sr"
4549
  msgstr "Suriname"
4550
 
4551
  # Svalbard and Jan Mayen
4552
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4553
  msgid "c-sj"
4554
  msgstr "Svalbard and Jan Mayen"
4555
 
4556
  # Swaziland
4557
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4558
  msgid "c-sz"
4559
  msgstr "Swaziland"
4560
 
4561
  # Sweden
4562
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4563
  msgid "c-se"
4564
  msgstr "Sweden"
4565
 
4566
  # Switzerland
4567
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4568
  msgid "c-ch"
4569
  msgstr "Switzerland"
4570
 
4571
  # Syrian Arab Republic
4572
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4573
  msgid "c-sy"
4574
  msgstr "Syrian Arab Republic"
4575
 
4576
  # Taiwan, Province of China
4577
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4578
  msgid "c-tw"
4579
  msgstr "Taiwan"
4580
 
4581
  # Tajikistan
4582
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4583
  msgid "c-tj"
4584
  msgstr "Tajikistan"
4585
 
4586
  # United Republic of Tanzania
4587
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4588
  msgid "c-tz"
4589
  msgstr "United Republic of Tanzania"
4590
 
4591
  # Thailand
4592
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4593
  msgid "c-th"
4594
  msgstr "Thailand"
4595
 
4596
  # Timor-Leste
4597
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4598
  msgid "c-tl"
4599
  msgstr "Timor-Leste"
4600
 
4601
  # Togo
4602
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4603
  msgid "c-tg"
4604
  msgstr "Togo"
4605
 
4606
  # Tonga
4607
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4608
  msgid "c-to"
4609
  msgstr "Tonga"
4610
 
4611
  # Trinidad and Tobago
4612
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4613
  msgid "c-tt"
4614
  msgstr "Trinidad and Tobago"
4615
 
4616
  # Tunisia
4617
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4618
  msgid "c-tn"
4619
  msgstr "Tunisia"
4620
 
4621
  # Turkey
4622
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4623
  msgid "c-tr"
4624
  msgstr "Turkey"
4625
 
4626
  # Turkmenistan
4627
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4628
  msgid "c-tm"
4629
  msgstr "Turkmenistan"
4630
 
4631
  # Turks and Caicos Islands
4632
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4633
  msgid "c-tc"
4634
  msgstr "Turks and Caicos Islands"
4635
 
4636
  # Uganda
4637
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4638
  msgid "c-ug"
4639
  msgstr "Uganda"
4640
 
4641
  # Ukraine
4642
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4643
  msgid "c-ua"
4644
  msgstr "Ukraine"
4645
 
4646
  # United Arab Emirates
4647
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4648
  msgid "c-ae"
4649
  msgstr "United Arab Emirates"
4650
 
4651
  # United Kingdom
4652
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4653
  msgid "c-gb"
4654
  msgstr "United Kingdom"
4655
 
4656
  # United States
4657
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4658
  msgid "c-us"
4659
  msgstr "United States"
4660
 
4661
  # Uruguay
4662
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4663
  msgid "c-uy"
4664
  msgstr "Uruguay"
4665
 
4666
  # Uzbekistan
4667
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4668
  msgid "c-uz"
4669
  msgstr "Uzbekistan"
4670
 
4671
  # Vanuatu
4672
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4673
  msgid "c-vu"
4674
  msgstr "Vanuatu"
4675
 
4676
  # Venezuela
4677
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4678
  msgid "c-ve"
4679
  msgstr "Venezuela"
4680
 
4681
  # Viet Nam
4682
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4683
  msgid "c-vn"
4684
  msgstr "Viet Nam"
4685
 
4686
  # British Virgin Islands
4687
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4688
  msgid "c-vg"
4689
  msgstr "British Virgin Islands"
4690
 
4691
  # U.S. Virgin Islands
4692
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4693
  msgid "c-vi"
4694
  msgstr "U.S. Virgin Islands"
4695
 
4696
  # Western Sahara
4697
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4698
  msgid "c-eh"
4699
  msgstr "Western Sahara"
4700
 
4701
  # Yemen
4702
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4703
  msgid "c-ye"
4704
  msgstr "Yemen"
4705
 
4706
  # Zambia
4707
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4708
  msgid "c-zm"
4709
  msgstr "Zambia"
4710
 
4711
  # Zimbabwe
4712
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4713
  msgid "c-zw"
4714
  msgstr "Zimbabwe"
4715
 
4716
  # Guernsey
4717
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4718
  msgid "c-gg"
4719
  msgstr "Guernsey"
4720
 
4721
  # Jersey
4722
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4723
  msgid "c-je"
4724
  msgstr "Jersey"
4725
 
4726
  # Isle of Man
4727
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4728
  msgid "c-im"
4729
  msgstr "Isle of Man"
4730
 
4731
  # Maldives
4732
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4733
  msgid "c-mv"
4734
  msgstr "Maldives"
4735
 
4736
+ #: ../../admin/view/wp-slimstat-reports.php:1024
4737
  msgid "c-eu"
4738
  msgstr ""
4739
 
4740
+ #: ../../admin/view/wp-slimstat-reports.php:1113
4741
  msgid ""
4742
  "This value includes not only posts, but also custom post types, regardless "
4743
  "of their status"
4744
  msgstr "این مقدار شامل همه ارسال ها میشود"
4745
 
4746
+ #: ../../admin/view/wp-slimstat-reports.php:1114
4747
  msgid "Content Items"
4748
  msgstr " محتوا موردها"
4749
 
4750
+ #: ../../admin/view/wp-slimstat-reports.php:1115
4751
  msgid "Total Comments"
4752
  msgstr "همه نظرها"
4753
 
4754
+ #: ../../admin/view/wp-slimstat-reports.php:1116
4755
  msgid "Pingbacks"
4756
  msgstr ""
4757
 
4758
+ #: ../../admin/view/wp-slimstat-reports.php:1117
4759
  msgid "Trackbacks"
4760
  msgstr ""
4761
 
4762
+ #: ../../admin/view/wp-slimstat-reports.php:1118
4763
  msgid "Longest Post (ID)"
4764
  msgstr "طولانی‌ترین ارسال (شناسه)"
4765
 
4766
+ #: ../../admin/view/wp-slimstat-reports.php:1119
4767
  msgid "Longest Comment (ID)"
4768
  msgstr "طولانی ترین نظر (شناسه)"
4769
 
4770
+ #: ../../admin/view/wp-slimstat-reports.php:1120
4771
  msgid "Avg Comments Per Post"
4772
  msgstr "میانگین نظر برای هر ارسال"
4773
 
4774
+ #: ../../admin/view/wp-slimstat-reports.php:1121
4775
  msgid "Avg Posts Per Day"
4776
  msgstr "میانگین ارسال در روز"
4777
 
4778
+ #: ../../admin/view/wp-slimstat-reports.php:1149
4779
  msgid "Visits"
4780
  msgstr "بازدیدها"
4781
 
4782
+ #: ../../admin/view/wp-slimstat-reports.php:1153
4783
  msgid "Domains"
4784
  msgstr "دامنه‌ها"
4785
 
4786
+ #: ../../admin/view/wp-slimstat-reports.php:1158
4787
+ msgid "Avg Pageviews"
4788
+ msgstr "میان‌گین مشاهده صفحات"
4789
+
4790
+ #~ msgid "Chart Annotations"
4791
+ #~ msgstr "حاشیه نمودار"
4792
+
4793
+ #~ msgid ""
4794
+ #~ "Add <em>markings</em> to each chart by specifying a date and its "
4795
+ #~ "description in the field below. Useful to keep track of special events "
4796
+ #~ "and correlate them to your analytics. Please use the following format:"
4797
+ #~ "<code>YYYY MM DD HH:mm=Description 1,YYYY MM DD HH:mm=Description 2</"
4798
+ #~ "code>. For example: 2012 12 31 23:55=New Year's Eve."
4799
+ #~ msgstr ""
4800
+ #~ "اضافه کردن تاریخ و توضیحات در ناحیه های زیر میتواند در رهگیری رویداد ها و "
4801
+ #~ "مرتبط کردن آنها مفید باشد. لطفا از این نگارش استفاده کنید: <code>YYYY MM "
4802
+ #~ "DD HH:mm=Description 1,YYYY MM DD HH:mm=Description 2</code>. 2012 12 31 "
4803
+ #~ "23:55=New Year's Eve برای مثال."
4804
+
4805
  #~ msgid ""
4806
  #~ "Paste your export file's content and click on the button below, to import "
4807
  #~ "your settings."
4931
  #~ msgstr ""
4932
  #~ "مشاهده نام میزبان به جای نشانی آی‌پی. این کار نمایش گزارش را کمی کند می‌کند."
4933
 
 
 
 
4934
  #, fuzzy
4935
  #~ msgid ""
4936
  #~ "Specify the number of results to return for each module. Please use a "
admin/lang/wp-slimstat-fr_CA.mo CHANGED
Binary file
admin/lang/wp-slimstat-fr_CA.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-01-13 22:24-0500\n"
6
- "PO-Revision-Date: 2014-01-13 22:30-0500\n"
7
  "Last-Translator: Get Used To IT <support@getused.to.it>\n"
8
  "Language-Team: Michael Bastin\n"
9
  "Language: fr_FR\n"
@@ -17,97 +17,101 @@ msgstr ""
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ../..\n"
19
 
20
- #: ../../wp-slimstat.php:1176 ../../admin/wp-slimstat-admin.php:397
21
  #: ../../admin/view/wp-slimstat-reports.php:31
22
  msgid "Right Now"
23
  msgstr "Maintenant"
24
 
25
- #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:398
26
- #: ../../admin/wp-slimstat-admin.php:415
27
  #: ../../admin/view/wp-slimstat-reports.php:32
28
  msgid "Overview"
29
  msgstr "Vue générale"
30
 
31
- #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:399
32
- #: ../../admin/wp-slimstat-admin.php:416
33
  #: ../../admin/view/wp-slimstat-reports.php:33
34
  msgid "Visitors"
35
  msgstr "Visiteurs"
36
 
37
- #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:400
38
- #: ../../admin/wp-slimstat-admin.php:417
39
  #: ../../admin/view/wp-slimstat-reports.php:34
40
  msgid "Content"
41
  msgstr "Contenu"
42
 
43
- #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:401
44
- #: ../../admin/wp-slimstat-admin.php:418 ../../admin/view/index.php:168
45
  #: ../../admin/view/wp-slimstat-reports.php:35
46
  msgid "Traffic Sources"
47
  msgstr "Sources de trafic"
48
 
49
- #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:402
50
- #: ../../admin/wp-slimstat-admin.php:419
51
  #: ../../admin/view/wp-slimstat-reports.php:36
52
  #: ../../admin/view/wp-slimstat-reports.php:105
53
  msgid "World Map"
54
  msgstr "Carte du monde"
55
 
56
- #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:403
57
- #: ../../admin/wp-slimstat-admin.php:420
58
  #: ../../admin/view/wp-slimstat-reports.php:37
59
  msgid "Custom Reports"
60
  msgstr "Rapports personnalisés"
61
 
62
- #: ../../wp-slimstat.php:1183 ../../admin/wp-slimstat-admin.php:404
63
- #: ../../admin/wp-slimstat-admin.php:421 ../../admin/config/addons.php:29
64
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:227
65
  msgid "Add-ons"
66
  msgstr "Add-ons"
67
 
68
- #: ../../wp-slimstat.php:1186 ../../admin/wp-slimstat-admin.php:450
69
- #: ../../admin/wp-slimstat-admin.php:453 ../../admin/wp-slimstat-admin.php:497
70
- #: ../../admin/wp-slimstat-admin.php:500 ../../admin/config/index.php:14
71
- #: ../../admin/config/index.php:134
72
  msgid "Settings"
73
  msgstr "Réglages"
74
 
75
- #: ../../admin/wp-slimstat-admin.php:396 ../../admin/wp-slimstat-admin.php:408
76
- #: ../../admin/wp-slimstat-admin.php:411
77
  #, fuzzy
78
  msgid "SlimStat"
79
  msgstr "À propos de WP-SlimStat"
80
 
81
- #: ../../admin/wp-slimstat-admin.php:514
82
  msgid "Pageviews in the last 365 days"
83
  msgstr "Pages durant les 365 derniers jours"
84
 
85
- #: ../../admin/wp-slimstat-admin.php:538
86
  msgid "Show on screen"
87
  msgstr "Montrer à l'écran"
88
 
89
- #: ../../admin/wp-slimstat-admin.php:585
 
 
 
 
90
  msgid "There was an error updating the following options:"
91
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
92
 
93
- #: ../../admin/wp-slimstat-admin.php:588
94
  msgid "Your settings have been successfully updated."
95
  msgstr "Vos réglages ont bien été mis à jour"
96
 
97
- #: ../../admin/wp-slimstat-admin.php:611
98
  msgid "Save Changes"
99
  msgstr "Enregistrer les modifications"
100
 
101
- #: ../../admin/wp-slimstat-admin.php:630
102
  msgid "Yes"
103
  msgstr "Oui"
104
 
105
- #: ../../admin/wp-slimstat-admin.php:631
106
- #: ../../admin/view/wp-slimstat-reports.php:742
107
  msgid "No"
108
  msgstr "Non"
109
 
110
- #: ../../admin/wp-slimstat-admin.php:671
111
  msgid ""
112
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
113
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
@@ -119,15 +123,15 @@ msgstr ""
119
  "consulter <a target=\"_blank\" href=\"http://wordpress.org/extend/plugins/wp-"
120
  "slimstat/faq/\">les FAQ</a> pour plus d'informations."
121
 
122
- #: ../../admin/wp-slimstat-admin.php:691
123
  msgid "Definitions"
124
  msgstr "Définitions"
125
 
126
- #: ../../admin/wp-slimstat-admin.php:694
127
  msgid "Pageview"
128
  msgstr "Page vue"
129
 
130
- #: ../../admin/wp-slimstat-admin.php:694
131
  msgid ""
132
  "A request to load a single HTML file (\"page\"). This should be contrasted "
133
  "with a \"hit\", which refers to a request for any file from a web server. WP "
@@ -138,11 +142,11 @@ msgstr ""
138
  "d'un serveur Web. WP SlimStat enregistre une page vue chaque fois que le "
139
  "code de traçage est exécuté"
140
 
141
- #: ../../admin/wp-slimstat-admin.php:695
142
  msgid "(Human) Visit"
143
  msgstr "Visiteurs humains"
144
 
145
- #: ../../admin/wp-slimstat-admin.php:695
146
  msgid ""
147
  "A period of interaction between a visitor's browser and your website, ending "
148
  "when the browser is closed or when the user has been inactive on that site "
@@ -152,12 +156,12 @@ msgstr ""
152
  "Web se terminant lorsque le navigateur est fermé ou lorsque l'utilisateur "
153
  "est inactif sur ce site depuis 30 minutes"
154
 
155
- #: ../../admin/wp-slimstat-admin.php:696 ../../admin/view/index.php:140
156
- #: ../../admin/view/right-now.php:148
157
  msgid "Known Visitor"
158
  msgstr "Visiteurs connus"
159
 
160
- #: ../../admin/wp-slimstat-admin.php:696
161
  msgid ""
162
  "Any user who has left a comment on your blog, and is thus identified by "
163
  "Wordpress as a returning visitor"
@@ -165,11 +169,11 @@ msgstr ""
165
  "Un utilisateur qui a laissé un commentaire sur votre blog et est ainsi "
166
  "identifié par Wordpress comme un visiteur qui a déjà visité votre site"
167
 
168
- #: ../../admin/wp-slimstat-admin.php:697
169
  msgid "Unique IP"
170
  msgstr "IP uniques"
171
 
172
- #: ../../admin/wp-slimstat-admin.php:697
173
  msgid ""
174
  "Used to differentiate between multiple requests to download a file from one "
175
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -182,12 +186,12 @@ msgstr ""
182
  "Internet de la provenance d'une consultation, elle est utile, mais pas "
183
  "parfaite"
184
 
185
- #: ../../admin/wp-slimstat-admin.php:698 ../../admin/wp-slimstat-admin.php:740
186
- #: ../../admin/view/right-now.php:98 ../../admin/view/wp-slimstat-db.php:79
187
  msgid "Originating IP"
188
  msgstr "IP d'origine"
189
 
190
- #: ../../admin/wp-slimstat-admin.php:698
191
  msgid ""
192
  "the originating IP address of a client connecting to a web server through an "
193
  "HTTP proxy or load balancer"
@@ -195,11 +199,11 @@ msgstr ""
195
  "l'adresse IP d'origine d'un client qui se connecte à un serveur Web via un "
196
  "proxy HTTP ou équilibreur de charge"
197
 
198
- #: ../../admin/wp-slimstat-admin.php:699
199
  msgid "Direct Traffic"
200
  msgstr "Trafic direct"
201
 
202
- #: ../../admin/wp-slimstat-admin.php:699
203
  msgid ""
204
  "All those people showing up to your Web site by typing in the URL of your "
205
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -209,11 +213,11 @@ msgstr ""
209
  "votre site Web ou qui viennent à partir d'un signet, certaines personnes "
210
  "appellent également cela \"trafic par défaut \" ou \"trafic ambiant \""
211
 
212
- #: ../../admin/wp-slimstat-admin.php:700
213
  msgid "Search Engine"
214
  msgstr "Moteur de recherche"
215
 
216
- #: ../../admin/wp-slimstat-admin.php:700
217
  msgid ""
218
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
219
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -221,22 +225,22 @@ msgstr ""
221
  "Google, Yahoo, MSN, Ask, et autres; cet item comprendra à la fois votre "
222
  "trafic rémunéré (PPC/SEM) ainsi que votre trafic organique, prenez en note"
223
 
224
- #: ../../admin/wp-slimstat-admin.php:701 ../../admin/wp-slimstat-admin.php:717
225
- #: ../../admin/view/right-now.php:127 ../../admin/view/wp-slimstat-db.php:60
226
  msgid "Search Terms"
227
  msgstr "Termes de recherche"
228
 
229
- #: ../../admin/wp-slimstat-admin.php:701 ../../admin/wp-slimstat-admin.php:717
230
  msgid "Keywords used by your visitors to find your website on a search engine"
231
  msgstr ""
232
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
233
  "de recherche"
234
 
235
- #: ../../admin/wp-slimstat-admin.php:702
236
  msgid "SERP"
237
  msgstr "SERP"
238
 
239
- #: ../../admin/wp-slimstat-admin.php:702
240
  msgid ""
241
  "Short for search engine results page, the Web page that a search engine "
242
  "returns with the results of its search. The value shown represents your rank "
@@ -246,12 +250,12 @@ msgstr ""
246
  "recherche renvoie les résultats de sa recherche. La valeur indiquée "
247
  "correspond à votre classement (ou la position) dans la liste des résultats"
248
 
249
- #: ../../admin/wp-slimstat-admin.php:703
250
  #: ../../admin/view/wp-slimstat-db.php:72
251
  msgid "User Agent"
252
  msgstr "User Agent"
253
 
254
- #: ../../admin/wp-slimstat-admin.php:703
255
  msgid ""
256
  "Any program used for accessing a website; this includes browsers, robots, "
257
  "spiders and any other program that was used to retrieve information from the "
@@ -261,12 +265,12 @@ msgstr ""
261
  "navigateurs, robots, spiders et tout autre programme qui a été utilisé pour "
262
  "extraire des informations du site"
263
 
264
- #: ../../admin/wp-slimstat-admin.php:704
265
  #: ../../admin/view/wp-slimstat-db.php:76
266
  msgid "Outbound Link"
267
  msgstr "Lien sortant"
268
 
269
- #: ../../admin/wp-slimstat-admin.php:704
270
  msgid ""
271
  "A link from one domain to another is said to be outbound from its source "
272
  "anchor and inbound to its target. This report lists all the links to other "
@@ -276,44 +280,44 @@ msgstr ""
276
  "sa cible. Ce rapport répertorie tous les liens vers d'autres sites suivis "
277
  "par vos visiteurs."
278
 
279
- #: ../../admin/wp-slimstat-admin.php:711
280
  msgid "Basic Filters"
281
  msgstr "Filtres de base"
282
 
283
- #: ../../admin/wp-slimstat-admin.php:714
284
  #: ../../admin/view/wp-slimstat-db.php:57
285
  msgid "Browser"
286
  msgstr "Navigateur Web"
287
 
288
- #: ../../admin/wp-slimstat-admin.php:714
289
  msgid "User agent (Firefox, Chrome, ...)"
290
  msgstr "User agent (Firefox, Chrome, ...)"
291
 
292
- #: ../../admin/wp-slimstat-admin.php:715
293
  #: ../../admin/view/wp-slimstat-db.php:58
294
- #: ../../admin/view/wp-slimstat-reports.php:472
295
  msgid "Country Code"
296
  msgstr "Code du pays"
297
 
298
- #: ../../admin/wp-slimstat-admin.php:715
299
  msgid "2-letter code (us, ru, de, it, ...)"
300
  msgstr "code pays à 2 lettres (us, ru, de, it, ...)"
301
 
302
- #: ../../admin/wp-slimstat-admin.php:716
303
  msgid "IP"
304
  msgstr "IP"
305
 
306
- #: ../../admin/wp-slimstat-admin.php:716
307
  msgid "Visitor's public IP address"
308
  msgstr " Adresse IP publique du visiteur"
309
 
310
- #: ../../admin/wp-slimstat-admin.php:718
311
  #: ../../admin/view/wp-slimstat-db.php:61
312
- #: ../../admin/view/wp-slimstat-reports.php:484
313
  msgid "Language Code"
314
  msgstr "Code langue"
315
 
316
- #: ../../admin/wp-slimstat-admin.php:718
317
  msgid ""
318
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
319
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -323,12 +327,12 @@ msgstr ""
323
  "microsoft.com/en-us/library/ee825488(v=cs.20).aspx\">language culture page</"
324
  "a> (première colonne) pour plus d'informations"
325
 
326
- #: ../../admin/wp-slimstat-admin.php:719
327
  #: ../../admin/view/wp-slimstat-db.php:62
328
  msgid "Operating System"
329
  msgstr "Système d'exploitation (OS)"
330
 
331
- #: ../../admin/wp-slimstat-admin.php:719
332
  msgid ""
333
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
334
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -338,30 +342,30 @@ msgstr ""
338
  "référez-vous à <a target=\"_blank\" href=\"http://php.net/manual/en/function."
339
  "get-browser.php\">cette page de manuel </a> pour plus d'informations"
340
 
341
- #: ../../admin/wp-slimstat-admin.php:720
342
  #: ../../admin/view/wp-slimstat-db.php:63
343
  msgid "Permalink"
344
  msgstr "Permalien"
345
 
346
- #: ../../admin/wp-slimstat-admin.php:720
347
  msgid "URL accessed on your site"
348
  msgstr "URL accessible sur votre site"
349
 
350
- #: ../../admin/wp-slimstat-admin.php:721
351
  #: ../../admin/view/wp-slimstat-db.php:65
352
  msgid "Referer"
353
  msgstr "Référent"
354
 
355
- #: ../../admin/wp-slimstat-admin.php:721
356
  msgid "Complete address of the referrer page"
357
  msgstr "Adresse complète dune lpage référente"
358
 
359
- #: ../../admin/wp-slimstat-admin.php:722
360
  #: ../../admin/view/wp-slimstat-db.php:66
361
  msgid "Visitor's Name"
362
  msgstr "le nom des visiteurs"
363
 
364
- #: ../../admin/wp-slimstat-admin.php:722
365
  msgid ""
366
  "Visitors' names according to the cookie set by Wordpress after they leave a "
367
  "comment"
@@ -369,25 +373,25 @@ msgstr ""
369
  "Les noms des visiteurs selon le cookie enregistré par Wordpress, après avoir "
370
  "laissé un commentaire"
371
 
372
- #: ../../admin/wp-slimstat-admin.php:730
373
  msgid "Advanced Filters"
374
  msgstr "Filtres Avancés"
375
 
376
- #: ../../admin/wp-slimstat-admin.php:733
377
  #: ../../admin/view/wp-slimstat-db.php:70
378
  msgid "Browser Version"
379
  msgstr "Version de navigateur"
380
 
381
- #: ../../admin/wp-slimstat-admin.php:733
382
  msgid "user agent version (9.0, 11, ...)"
383
  msgstr "user agent version (9.0, 11, ...)"
384
 
385
- #: ../../admin/wp-slimstat-admin.php:734
386
  #: ../../admin/view/wp-slimstat-db.php:71
387
  msgid "Browser Type"
388
  msgstr "le type de navigateur Web"
389
 
390
- #: ../../admin/wp-slimstat-admin.php:734
391
  msgid ""
392
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
393
  "all others"
@@ -395,21 +399,21 @@ msgstr ""
395
  "1 = moteur de recherche, 2 = appareil mobile, 3 = lecteur de flux "
396
  "(syndication) , 0 = tous les autres"
397
 
398
- #: ../../admin/wp-slimstat-admin.php:735
399
  #: ../../admin/view/wp-slimstat-db.php:73
400
  msgid "Color Depth"
401
  msgstr "Profondeur de couleur"
402
 
403
- #: ../../admin/wp-slimstat-admin.php:735
404
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
405
  msgstr "couleur de la profondeur de l'écran du visiteur (8, 16, 24, ...)"
406
 
407
- #: ../../admin/wp-slimstat-admin.php:736
408
  #: ../../admin/view/wp-slimstat-db.php:74
409
  msgid "CSS Version"
410
  msgstr "Version CSS"
411
 
412
- #: ../../admin/wp-slimstat-admin.php:736
413
  msgid ""
414
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
415
  "values)"
@@ -417,12 +421,12 @@ msgstr ""
417
  "quelle est la norme CSS supportée par ce navigateur (1, 2, 3 et d'autres "
418
  "valeurs entières)"
419
 
420
- #: ../../admin/wp-slimstat-admin.php:737
421
  #: ../../admin/view/wp-slimstat-db.php:75
422
  msgid "Pageview Attributes"
423
  msgstr "l'attribut des Pages Vues"
424
 
425
- #: ../../admin/wp-slimstat-admin.php:737
426
  msgid ""
427
  "this field is set to <em>[pre]</em> if the resource has been accessed "
428
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -433,34 +437,34 @@ msgstr ""
433
  "Link_prefetching_FAQ\"> préchargement des liens</a> ou d'autres techniques "
434
  "similaires"
435
 
436
- #: ../../admin/wp-slimstat-admin.php:738
437
  #: ../../admin/view/wp-slimstat-db.php:77
438
  msgid "Post Author"
439
  msgstr "l'auteur de l'article"
440
 
441
- #: ../../admin/wp-slimstat-admin.php:738
442
  msgid "author associated to that post/page when the resource was accessed"
443
  msgstr "auteur associé à cet article/page lorsque la ressource est accessible"
444
 
445
- #: ../../admin/wp-slimstat-admin.php:739
446
  #: ../../admin/view/wp-slimstat-db.php:78
447
  msgid "Post Category ID"
448
  msgstr "ID de la catégorie de l'article"
449
 
450
- #: ../../admin/wp-slimstat-admin.php:739
451
  msgid "ID of the category/term associated to the resource, when available"
452
  msgstr "ID de la catégorie/terme associée à la ressource, lorsqu'il y en a"
453
 
454
- #: ../../admin/wp-slimstat-admin.php:740
455
  msgid "visitor's originating IP address, if available"
456
  msgstr "adresse IP d'origine du visiteur, s'il est disponible"
457
 
458
- #: ../../admin/wp-slimstat-admin.php:741
459
  #: ../../admin/view/wp-slimstat-db.php:80
460
  msgid "Resource Content Type"
461
  msgstr "le type de source de contenu"
462
 
463
- #: ../../admin/wp-slimstat-admin.php:741
464
  msgid ""
465
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
466
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -474,21 +478,21 @@ msgstr ""
474
  "\" href=\"http://codex.wordpress.org/Conditional_Tags\">Conditional Tags</a> "
475
  "pour plus d'informations"
476
 
477
- #: ../../admin/wp-slimstat-admin.php:742
478
  #: ../../admin/view/wp-slimstat-db.php:82
479
  msgid "Screen Resolution"
480
  msgstr "la résolution de l'écran"
481
 
482
- #: ../../admin/wp-slimstat-admin.php:742
483
  msgid "viewport width and height (1024x768, 800x600, ...)"
484
  msgstr "résolution de l'écran (1024x768, 800x600, ...)"
485
 
486
- #: ../../admin/wp-slimstat-admin.php:743
487
  #: ../../admin/view/wp-slimstat-db.php:83
488
  msgid "Visit ID"
489
  msgstr "Visites ID"
490
 
491
- #: ../../admin/wp-slimstat-admin.php:743
492
  msgid ""
493
  "generally used in conjunction with <em>is not empty</em>, identifies human "
494
  "visitors"
@@ -496,11 +500,11 @@ msgstr ""
496
  "généralement utilisé en conjonction avec <em>n'est pas vide </em>, identifie "
497
  "les visiteurs humains"
498
 
499
- #: ../../admin/wp-slimstat-admin.php:744
500
  msgid "Date Filters"
501
  msgstr "Filtres de dates"
502
 
503
- #: ../../admin/wp-slimstat-admin.php:744
504
  msgid ""
505
  "you can specify the timeframe by entering a number in the <em>interval</em> "
506
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -511,11 +515,11 @@ msgstr ""
511
  "ex : jour = 1, mois = 1, année = vide, intervalle = -1 fixera un filtre "
512
  "année à date)"
513
 
514
- #: ../../admin/wp-slimstat-admin.php:745
515
  msgid "SERP Position"
516
  msgstr "Position SERP "
517
 
518
- #: ../../admin/wp-slimstat-admin.php:745
519
  msgid ""
520
  "set the filter to Referer contains cd=N&, where N is the position you are "
521
  "looking for"
@@ -523,7 +527,7 @@ msgstr ""
523
  "Réglez le filtre sur Référent contient cd=N&, où N est la position que vous "
524
  "recherchez"
525
 
526
- #: ../../admin/wp-slimstat-admin.php:754
527
  msgid ""
528
  " And for keeping an eye on your visitors with <a href=\"http://slimstat."
529
  "getused.to.it/\">WP SlimStat</a>."
@@ -571,40 +575,40 @@ msgstr "Add-on"
571
  msgid "Description"
572
  msgstr "Description"
573
 
574
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:17
575
  msgid "General"
576
  msgstr "Général"
577
 
578
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:43
579
  msgid "Views"
580
  msgstr "Vues"
581
 
582
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:63
583
  msgid "Filters"
584
  msgstr "Filtres"
585
 
586
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:127
587
  msgid "Permissions"
588
  msgstr "Permissions"
589
 
590
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:204
591
  msgid "Advanced"
592
  msgstr "Avancé"
593
 
594
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:220
595
  msgid "Maintenance"
596
  msgstr "Maintenance"
597
 
598
- #: ../../admin/config/index.php:19 ../../admin/config/index.php:206
599
  msgid "Tracker"
600
  msgstr "Traçage"
601
 
602
- #: ../../admin/config/index.php:20
603
  #, fuzzy
604
  msgid "Enable Tracking"
605
  msgstr "Activez le traçage"
606
 
607
- #: ../../admin/config/index.php:20
608
  msgid ""
609
  "Turn the tracker on or off, but keep the reports accessible (which you would "
610
  "not have, if you just disabled the plugin)."
@@ -612,23 +616,23 @@ msgstr ""
612
  "Activez ou désactivez le Traceur, mais conservez le rapport accessible (Ce "
613
  "que vous n'auriez pas si vous désactiviez le plugin.)"
614
 
615
- #: ../../admin/config/index.php:21
616
  #, fuzzy
617
  msgid "Monitor Admin Pages"
618
  msgstr "Tracer Pages d'administrateur"
619
 
620
- #: ../../admin/config/index.php:21
621
  #, fuzzy
622
  msgid "Enable this option to track your users' activity within the admin."
623
  msgstr ""
624
  "Activez cette option si vous voulez suivre l'activité de vos utilisateurs "
625
  "dans l'admin."
626
 
627
- #: ../../admin/config/index.php:22
628
  msgid "Enable Spy Mode"
629
  msgstr "Activer le mode espion"
630
 
631
- #: ../../admin/config/index.php:22
632
  #, fuzzy
633
  msgid ""
634
  "Collect information about screen resolutions, outbound links, downloads, "
@@ -641,12 +645,12 @@ msgstr ""
641
  "des navigateurs seront suivis indépendamment de la valeur que vous "
642
  "définissez pour cette option."
643
 
644
- #: ../../admin/config/index.php:23
645
  #, fuzzy
646
  msgid "Tracking Mode"
647
  msgstr "Traçage actif"
648
 
649
- #: ../../admin/config/index.php:23
650
  #, fuzzy
651
  msgid ""
652
  "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
@@ -661,24 +665,24 @@ msgstr ""
661
  "ignorés. Un second effet fera que <strong>la plupart</strong> des spammeurs, "
662
  "moteurs de recherche et autres robots ne seront pas suivis."
663
 
664
- #: ../../admin/config/index.php:23
665
  #, fuzzy
666
  msgid "Javascript"
667
  msgstr "Mode Javascript"
668
 
669
- #: ../../admin/config/index.php:23
670
  msgid "Server-side"
671
  msgstr "Côté serveur"
672
 
673
- #: ../../admin/config/index.php:25
674
  msgid "WordPress Integration"
675
  msgstr "Intégration WordPress"
676
 
677
- #: ../../admin/config/index.php:26
678
  msgid "Menu Position"
679
  msgstr "Position du Menu"
680
 
681
- #: ../../admin/config/index.php:26
682
  #, fuzzy
683
  msgid ""
684
  "Choose between a standalone admin menu for WP SlimStat or a drop down in the "
@@ -688,20 +692,20 @@ msgstr ""
688
  "autonome pour WP SlimStat ou un menu déroulant dans la barre "
689
  "d'administrateur."
690
 
691
- #: ../../admin/config/index.php:26
692
  msgid "Side Menu"
693
  msgstr "Menu latéral"
694
 
695
- #: ../../admin/config/index.php:26
696
  msgid "Admin Bar"
697
  msgstr "Barre d'Administration"
698
 
699
- #: ../../admin/config/index.php:27
700
  #, fuzzy
701
  msgid "Add Stats to Posts"
702
  msgstr "Ajouter une colonne aux Articles"
703
 
704
- #: ../../admin/config/index.php:27
705
  #, fuzzy
706
  msgid ""
707
  "Add a new column to the Edit Posts screen, with the number of hits per post."
@@ -709,15 +713,15 @@ msgstr ""
709
  "Ajoute une nouvelle colonne à l'écran d'édition des articles, en indiquant "
710
  "le nombre de visites par article (peut ralentir le rendu des pages)."
711
 
712
- #: ../../admin/config/index.php:29
713
  msgid "Database"
714
  msgstr "Base de données"
715
 
716
- #: ../../admin/config/index.php:30
717
  msgid "Retain data for"
718
  msgstr "Conserver les données pour"
719
 
720
- #: ../../admin/config/index.php:30
721
  msgid ""
722
  "Delete log entries older than the number of days specified here above. Enter "
723
  "<strong>0</strong> (number zero) if you want to preserve your data "
@@ -727,40 +731,40 @@ msgstr ""
727
  "ci-dessus. Entrer <strong>0</strong> (number zero) si vous souhaitez "
728
  "conserver toutes vos données sans limites de durée."
729
 
730
- #: ../../admin/config/index.php:30
731
  msgid "Next clean-up on"
732
  msgstr "Prochain nettoyage le"
733
 
734
- #: ../../admin/config/index.php:30
735
  #, fuzzy, php-format
736
  msgid "Entries logged on or before %s will be permanently deleted."
737
  msgstr ""
738
  "Les données enregistrées le ou avant le %s seront détruites définitivement. "
739
 
740
- #: ../../admin/config/index.php:30 ../../admin/view/index.php:77
741
  #: ../../admin/view/wp-slimstat-db.php:90
742
- #: ../../admin/view/wp-slimstat-reports.php:742
743
  msgid "days"
744
  msgstr "jours"
745
 
746
- #: ../../admin/config/index.php:45
747
  #, fuzzy
748
  msgid "Data and Formats"
749
  msgstr "Date et heure"
750
 
751
- #: ../../admin/config/index.php:46
752
  msgid "Convert IP Addresses"
753
  msgstr "Convertir les adresses IP"
754
 
755
- #: ../../admin/config/index.php:46
756
  msgid "Display provider names instead of IP addresses."
757
  msgstr "Afficher le nom du fournisseur d'accès au lieu de l'adresse IP."
758
 
759
- #: ../../admin/config/index.php:47
760
  msgid "Number Format"
761
  msgstr "Format des nombres"
762
 
763
- #: ../../admin/config/index.php:47
764
  #, fuzzy
765
  msgid ""
766
  "Choose the number format you want to use for your reports, European or "
@@ -769,11 +773,11 @@ msgstr ""
769
  "Choisissez ce format numérique que vous souhaitez utiliser, européen ou "
770
  "américain."
771
 
772
- #: ../../admin/config/index.php:48
773
  msgid "Show Display Name"
774
  msgstr "Voir Nom d'affichage"
775
 
776
- #: ../../admin/config/index.php:48
777
  #, fuzzy
778
  msgid ""
779
  "By default, users are listed by their usernames. Use this option to "
@@ -782,11 +786,11 @@ msgstr ""
782
  "Par défaut, les utilisateurs sont affichés par Nom d'utilisateur. Utilisez "
783
  "cette option pour basculer au Nom d'affichage."
784
 
785
- #: ../../admin/config/index.php:49
786
  msgid "Show User Agent"
787
  msgstr "Voir User Agent"
788
 
789
- #: ../../admin/config/index.php:49
790
  msgid ""
791
  "Choose if you want to see the browser name or a complete user agent string "
792
  "when hovering on browser icons."
@@ -794,11 +798,11 @@ msgstr ""
794
  "Choisissez si vous voulez voir le nom du navigateur ou une chaîne complete "
795
  "de user agent lorsque vous survolez les icônes du navigateur."
796
 
797
- #: ../../admin/config/index.php:50
798
  msgid "Show Titles"
799
  msgstr "Afficher les titres"
800
 
801
- #: ../../admin/config/index.php:50
802
  msgid ""
803
  "WP SlimStat converts your permalinks into post and page titles. Disable this "
804
  "feature if you need to see the URL in your reports."
@@ -807,15 +811,15 @@ msgstr ""
807
  "Désactivez cette fonction si vous souhaitez conserver l'URL dans de vos "
808
  "rapports."
809
 
810
- #: ../../admin/config/index.php:52
811
  msgid "Functionality"
812
  msgstr "Fonctionnalité"
813
 
814
- #: ../../admin/config/index.php:53
815
  msgid "Asynchronous Views"
816
  msgstr "Vues asynchrones"
817
 
818
- #: ../../admin/config/index.php:53
819
  #, fuzzy
820
  msgid ""
821
  "Load all the reports dynamically. It makes the reports render faster, but it "
@@ -825,35 +829,35 @@ msgstr ""
825
  "apparaitre les panneaux plus rapidement, mais augmente la charge sur votre "
826
  "serveur."
827
 
828
- #: ../../admin/config/index.php:54
829
  msgid "Expand Details"
830
  msgstr "Développez les détails"
831
 
832
- #: ../../admin/config/index.php:54
833
  msgid "Expand each row's details by default, insted of on mousehover."
834
  msgstr ""
835
  "Développe les détails de chaque ligne par défaut, plutôt que sur survol de "
836
  "souris."
837
 
838
- #: ../../admin/config/index.php:55 ../../admin/config/index.php:59
839
  #, fuzzy
840
  msgid "Rows to Display"
841
  msgstr "Aucune donnée à afficher"
842
 
843
- #: ../../admin/config/index.php:55
844
  msgid "Specify the number of items in each report."
845
  msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
846
 
847
- #: ../../admin/config/index.php:57
848
  #, fuzzy
849
  msgid "Right Now Screen"
850
  msgstr "Maintenant"
851
 
852
- #: ../../admin/config/index.php:58
853
  msgid "Live Stream"
854
  msgstr "Flux en temps réel (Flux live)"
855
 
856
- #: ../../admin/config/index.php:58
857
  #, fuzzy
858
  msgid ""
859
  "Enable the Live view, which refreshes the Right Now screen every X seconds. "
@@ -862,20 +866,20 @@ msgstr ""
862
  "Actualisez la vue 'Maintenant' toutes les X secondes. Zéro désactive cette "
863
  "fonctionnalité."
864
 
865
- #: ../../admin/config/index.php:58 ../../admin/config/index.php:209
866
  msgid "seconds"
867
  msgstr "secondes"
868
 
869
- #: ../../admin/config/index.php:59
870
  msgid "Specify the number of items in Right Now."
871
  msgstr ""
872
 
873
- #: ../../admin/config/index.php:60
874
  #, fuzzy
875
  msgid "Right Now Extended"
876
  msgstr "Maintenant"
877
 
878
- #: ../../admin/config/index.php:60
879
  #, fuzzy
880
  msgid ""
881
  "Choose if you want to see outbound links listed under Right Now. It might "
@@ -885,27 +889,27 @@ msgstr ""
885
  "Maintenant. Cela ralentit l'affichage du rapport ou donne des erreurs sur "
886
  "les systèmes plus lents."
887
 
888
- #: ../../admin/config/index.php:65
889
  #, fuzzy
890
  msgid "Visitors and Known Users"
891
  msgstr "Utilisateurs connus"
892
 
893
- #: ../../admin/config/index.php:66
894
  #, fuzzy
895
  msgid "Track Registered Users"
896
  msgstr "Tracer les utilisateurs"
897
 
898
- #: ../../admin/config/index.php:66
899
  #, fuzzy
900
  msgid "Enable this option to track logged in users."
901
  msgstr "Sélectionnez OUI si vous voulez suivre les utilisateurs connectés."
902
 
903
- #: ../../admin/config/index.php:67
904
  #, fuzzy
905
  msgid "Blacklist by Username"
906
  msgstr "Adresse IP"
907
 
908
- #: ../../admin/config/index.php:67
909
  #, fuzzy
910
  msgid ""
911
  "List all the usernames you don't want to track, separated by commas. Please "
@@ -916,12 +920,12 @@ msgstr ""
916
  "séparés par des virgules. Veuillez noter que les espaces <em>ne sont pas</"
917
  "em> ignorés et que les noms d'utilisateurs sont sensibles à la casse."
918
 
919
- #: ../../admin/config/index.php:68
920
  #, fuzzy
921
  msgid "Blacklist by IP Address"
922
  msgstr "Adresse IP"
923
 
924
- #: ../../admin/config/index.php:68
925
  #, fuzzy
926
  msgid ""
927
  "List all the IP addresses you don't want to track, separated by commas. Each "
@@ -937,12 +941,12 @@ msgstr ""
937
  "<em>192.168.0.0/24</em>). Si le format est incorrect, WP SlimStat ne peut "
938
  "pas suivre correctement les pages vues."
939
 
940
- #: ../../admin/config/index.php:69
941
  #, fuzzy
942
  msgid "Blacklist by Capability"
943
  msgstr "Utilisateurs par Capacité"
944
 
945
- #: ../../admin/config/index.php:69
946
  msgid ""
947
  "Users having at least one of the <a href='http://codex.wordpress.org/"
948
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
@@ -952,15 +956,15 @@ msgstr ""
952
  "Roles_and_Capabilities' target='_new'>capacités</a> listées ci-dessous ne "
953
  "seront pas suivis. Les capacités sont insensibles à la casse."
954
 
955
- #: ../../admin/config/index.php:71
956
  msgid "Profiling"
957
  msgstr "Profiling"
958
 
959
- #: ../../admin/config/index.php:72
960
  msgid "Ignore Spammers"
961
  msgstr "Ignorer les spammeurs"
962
 
963
- #: ../../admin/config/index.php:72
964
  #, fuzzy
965
  msgid ""
966
  "Enable this option if you don't want to track visits from users identified "
@@ -973,11 +977,11 @@ msgstr ""
973
  "Akismet). Les visites de personnes dont les commentaires sont ensuite marqué "
974
  "comme spam par vous, seront également supprimées de la base."
975
 
976
- #: ../../admin/config/index.php:73
977
  msgid "Permalinks"
978
  msgstr "Rermaliens"
979
 
980
- #: ../../admin/config/index.php:73
981
  #, fuzzy
982
  msgid ""
983
  "List all the URLs on your website that you don't want to track, separated by "
@@ -996,11 +1000,11 @@ msgstr ""
996
  "<code>/abo*t</code> correspondra /aboundant et /about, <code>/abo!t </code > "
997
  "correspondra /about et /abort. Les chaînes sont insensibles à la casse."
998
 
999
- #: ../../admin/config/index.php:74
1000
  msgid "Countries"
1001
  msgstr "Pays"
1002
 
1003
- #: ../../admin/config/index.php:74
1004
  msgid ""
1005
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
1006
  "track, separated by commas."
@@ -1008,11 +1012,11 @@ msgstr ""
1008
  "Listez tous les codes de pays (p. ex.: <code>en-us, it, es </code>) que vous "
1009
  "ne voulez pas suivre, séparées par des virgules."
1010
 
1011
- #: ../../admin/config/index.php:75
1012
  msgid "User Agents"
1013
  msgstr "User Agents"
1014
 
1015
- #: ../../admin/config/index.php:75
1016
  #, fuzzy
1017
  msgid ""
1018
  "Browsers (user agents) you don't want to track, separated by commas. You can "
@@ -1031,11 +1035,11 @@ msgstr ""
1031
  "correspondra à Chrome et Chromium, <code>IE/!.0</Code> correspondra IE/7.0 "
1032
  "et IE/8.0. Les chaînes sont insensibles à la casse."
1033
 
1034
- #: ../../admin/config/index.php:76
1035
  msgid "Referring Sites"
1036
  msgstr "Sites référents"
1037
 
1038
- #: ../../admin/config/index.php:76
1039
  #, fuzzy
1040
  msgid ""
1041
  "Referring URLs that you don't want to track, separated by commas: "
@@ -1053,26 +1057,26 @@ msgstr ""
1053
  "soit un caractère générique ou le protocole que vous voulez filtrer "
1054
  "(http://, https://)."
1055
 
1056
- #: ../../admin/config/index.php:78 ../../admin/config/index.php:214
1057
  msgid "Miscellaneous"
1058
  msgstr "Divers"
1059
 
1060
- #: ../../admin/config/index.php:79
1061
  msgid "Enable Privacy Mode"
1062
  msgstr "Activer le mode privé"
1063
 
1064
- #: ../../admin/config/index.php:79
1065
  #, fuzzy
1066
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
1067
  msgstr ""
1068
  "Cette option masque le dernier octet de l'adresse IP de vos visiteurs afin "
1069
  "de se conformer aux lois de confidentialité européennes."
1070
 
1071
- #: ../../admin/config/index.php:80
1072
  msgid "Ignore Prefetch Requests"
1073
  msgstr ""
1074
 
1075
- #: ../../admin/config/index.php:80
1076
  #, fuzzy
1077
  msgid ""
1078
  "Prevent WP SlimStat from tracking pageviews generated by Firefox's <a "
@@ -1083,11 +1087,11 @@ msgstr ""
1083
  "vues générées par Firefox <a href='https://developer.mozilla.org/en/"
1084
  "Link_prefetching_FAQ' target='_blank'>Link Prefetching functionality</a>."
1085
 
1086
- #: ../../admin/config/index.php:96
1087
  msgid "Ignore users (username not found)"
1088
  msgstr "Utilisateur inconnu (nom d'utilisateur non trouvé)"
1089
 
1090
- #: ../../admin/config/index.php:119
1091
  msgid ""
1092
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
1093
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
@@ -1096,16 +1100,16 @@ msgstr ""
1096
  "Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
1097
  "d'informations"
1098
 
1099
- #: ../../admin/config/index.php:129
1100
  #, fuzzy
1101
  msgid "Reports"
1102
  msgstr "Rapports personnalisés"
1103
 
1104
- #: ../../admin/config/index.php:130
1105
  msgid "Restrict Authors"
1106
  msgstr "Restriction Auteurs"
1107
 
1108
- #: ../../admin/config/index.php:130
1109
  msgid ""
1110
  "Enable this option if you want your authours to only see stats related to "
1111
  "their own content."
@@ -1113,12 +1117,12 @@ msgstr ""
1113
  "Activez cette option si vous voulez que vos auteurs ne voient que les "
1114
  "statistiques relatives à leur propre contenu."
1115
 
1116
- #: ../../admin/config/index.php:131 ../../admin/config/index.php:135
1117
  #, fuzzy
1118
  msgid "Capability"
1119
  msgstr "Capacité de voir"
1120
 
1121
- #: ../../admin/config/index.php:131
1122
  #, fuzzy
1123
  msgid ""
1124
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -1135,11 +1139,11 @@ msgstr ""
1135
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
1136
  "Dans ce cas, la liste a la priorité sur la capacité."
1137
 
1138
- #: ../../admin/config/index.php:132 ../../admin/config/index.php:136
1139
  msgid "Whitelist"
1140
  msgstr "Liste blanche"
1141
 
1142
- #: ../../admin/config/index.php:132
1143
  #, fuzzy
1144
  msgid ""
1145
  "List all the users who should have access to the reports, separated by "
@@ -1152,7 +1156,7 @@ msgstr ""
1152
  "vide, <strong>tous vos utilisateurs</strong> sont autorisés à accéder. Les "
1153
  "noms d'utilisateurs sont sensibles à la casse."
1154
 
1155
- #: ../../admin/config/index.php:135
1156
  #, fuzzy
1157
  msgid ""
1158
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -1167,7 +1171,7 @@ msgstr ""
1167
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
1168
  "Dans ce cas, la liste a la priorité sur la capacité."
1169
 
1170
- #: ../../admin/config/index.php:136
1171
  #, fuzzy
1172
  msgid ""
1173
  "List all the users who can edit these options, separated by commas. Please "
@@ -1182,11 +1186,11 @@ msgstr ""
1182
  "héritent automatiquement de l '\"Accès en lecture \"pour les rapports. Les "
1183
  "noms d'utilisateurs sont sensibles à la casse."
1184
 
1185
- #: ../../admin/config/index.php:152
1186
  msgid "Read access: username not found"
1187
  msgstr "Accès lecture : username inéxistant"
1188
 
1189
- #: ../../admin/config/index.php:165 ../../admin/config/index.php:196
1190
  msgid ""
1191
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
1192
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
@@ -1196,15 +1200,15 @@ msgstr ""
1196
  "org/Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
1197
  "d'informations"
1198
 
1199
- #: ../../admin/config/index.php:183
1200
  msgid "Config access: username not found"
1201
  msgstr "Accès configuration : username inéxistant"
1202
 
1203
- #: ../../admin/config/index.php:207
1204
  msgid "Detect Smoothing"
1205
  msgstr "Détecter Lissage"
1206
 
1207
- #: ../../admin/config/index.php:207
1208
  #, fuzzy
1209
  msgid ""
1210
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
@@ -1214,11 +1218,11 @@ msgstr ""
1214
  "supporte l'anti-crénelage (lissage des polices). Si les Capacités du "
1215
  "navigateur ne sont pas tracées, ce paramètre est ignoré."
1216
 
1217
- #: ../../admin/config/index.php:208
1218
  msgid "Track Outbound Clicks"
1219
  msgstr "Tracer les liens sortants"
1220
 
1221
- #: ../../admin/config/index.php:208
1222
  msgid ""
1223
  "Track when your visitors click on link to external websites. This option "
1224
  "required Spy Mode to be enabled."
@@ -1226,11 +1230,11 @@ msgstr ""
1226
  "Détectez vos visiteurs cliquant sur des liens pointant sur des sites "
1227
  "externes. Cette fonctionnalité nécéssite que le Mode Espion soit activé."
1228
 
1229
- #: ../../admin/config/index.php:209
1230
  msgid "Session Duration"
1231
  msgstr "Durée session"
1232
 
1233
- #: ../../admin/config/index.php:209
1234
  #, fuzzy
1235
  msgid ""
1236
  "How many seconds should a human session last? Google Analytics sets it to "
@@ -1239,22 +1243,22 @@ msgstr ""
1239
  "Définit le nombre de secondes qu'une visite devrait durer. Google Analytics "
1240
  "fixe cette durée à 1800 secondes."
1241
 
1242
- #: ../../admin/config/index.php:210
1243
  msgid "Extend Session"
1244
  msgstr "Etendre la session"
1245
 
1246
- #: ../../admin/config/index.php:210
1247
  #, fuzzy
1248
  msgid "Extend the duration of a session each time the user visits a new page."
1249
  msgstr ""
1250
  "Prolonge la durée d'une session à chaque fois que l'utilisateur visite une "
1251
  "page, par le nombre de secondes défini ci-dessus."
1252
 
1253
- #: ../../admin/config/index.php:211
1254
  msgid "Enable CDN"
1255
  msgstr "Activer CDN"
1256
 
1257
- #: ../../admin/config/index.php:211
1258
  #, fuzzy
1259
  msgid ""
1260
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
@@ -1265,11 +1269,11 @@ msgstr ""
1265
  "CDN, en servant le traqueur Javascript WP SlimStat à partir de leur réseau "
1266
  "rapide et fiable."
1267
 
1268
- #: ../../admin/config/index.php:212
1269
  msgid "Extensions to Track"
1270
  msgstr "Extensions du traçage"
1271
 
1272
- #: ../../admin/config/index.php:212
1273
  #, fuzzy
1274
  msgid ""
1275
  "List all the file extensions that you want to be treated as Downloads. "
@@ -1285,20 +1289,20 @@ msgstr ""
1285
  "comme liens sortants (et suivis en tant que tel), si leur extension "
1286
  "correspond à l'une de celles qui sont énumérées ci-dessous."
1287
 
1288
- #: ../../admin/config/index.php:215
1289
  msgid "IP Lookup"
1290
  msgstr "Recherche d'IP"
1291
 
1292
- #: ../../admin/config/index.php:215
1293
  msgid "Customize the Geolocation service to be used in the reports."
1294
  msgstr ""
1295
  "Personnaliser le service de Géolocalisation à utiliser dans les rapports."
1296
 
1297
- #: ../../admin/config/index.php:216
1298
  msgid "Custom CSS"
1299
  msgstr "Personnaliser le style CSS"
1300
 
1301
- #: ../../admin/config/index.php:216
1302
  msgid ""
1303
  "Paste here your custom stylesheet to personalize the way your reports look. "
1304
  "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
@@ -1310,11 +1314,11 @@ msgstr ""
1310
  "target='_blank'>Consultez les FAQs</a> pour plus d'informations sur la façon "
1311
  "d'utiliser cette fonctionnalité."
1312
 
1313
- #: ../../admin/config/index.php:217
1314
  msgid "Enable UAN"
1315
  msgstr "Activer UAN"
1316
 
1317
- #: ../../admin/config/index.php:217
1318
  msgid ""
1319
  "Send anonymous data about unknown user agents to our server for analysis. "
1320
  "This allows us to contribute to the <a href='http://browscap.org/' "
@@ -3039,7 +3043,7 @@ msgstr "Zoulou"
3039
 
3040
  # Unknown
3041
  #: ../../admin/lang/dynamic_strings.php:298
3042
- #: ../../admin/view/wp-slimstat-reports.php:485
3043
  msgid "l-"
3044
  msgstr "Inconnue"
3045
 
@@ -3057,11 +3061,11 @@ msgstr "Inconnue"
3057
  msgid "c-xy"
3058
  msgstr "Local"
3059
 
3060
- #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:763
3061
  msgid "Today"
3062
  msgstr "Aujourd'hui"
3063
 
3064
- #: ../../admin/view/index.php:49 ../../admin/view/wp-slimstat-reports.php:764
3065
  msgid "Yesterday"
3066
  msgstr "Hier"
3067
 
@@ -3081,7 +3085,7 @@ msgstr "30 dernières minutes"
3081
 
3082
  #: ../../admin/view/index.php:53
3083
  #, fuzzy
3084
- msgid "This Year"
3085
  msgstr "Année"
3086
 
3087
  #: ../../admin/view/index.php:54
@@ -3128,9 +3132,9 @@ msgstr ""
3128
  "mon <a href=\"http://lab.duechiacchiere.it/\" target=\"_blank\">forum "
3129
  "d'aide</a>."
3130
 
3131
- #: ../../admin/view/index.php:133 ../../admin/view/wp-slimstat-reports.php:754
3132
- #: ../../admin/view/wp-slimstat-reports.php:856
3133
- #: ../../admin/view/wp-slimstat-reports.php:1140
3134
  msgid "Pageviews"
3135
  msgstr "Pages vues"
3136
 
@@ -3151,7 +3155,7 @@ msgstr ""
3151
  "Jetez un coup d'oeil à ce que les visiteurs humains font sur votre site"
3152
 
3153
  #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
3154
- #: ../../admin/view/index.php:184 ../../admin/view/right-now.php:146
3155
  msgid "Color codes"
3156
  msgstr "Codes couleur"
3157
 
@@ -3296,64 +3300,64 @@ msgid "Syndication Reader"
3296
  msgstr "Lecteur de Flux (Syndication)"
3297
 
3298
  #: ../../admin/view/right-now.php:28
3299
- #: ../../admin/view/wp-slimstat-reports.php:428
3300
- #: ../../admin/view/wp-slimstat-reports.php:669
3301
  msgid "No data to display"
3302
  msgstr "Aucune donnée à afficher"
3303
 
3304
  # Unknown
3305
- #: ../../admin/view/right-now.php:53
3306
- #: ../../admin/view/wp-slimstat-reports.php:473
3307
- #: ../../admin/view/wp-slimstat-reports.php:707
3308
- #: ../../admin/view/wp-slimstat-reports.php:1027
3309
  msgid "c-"
3310
  msgstr "Inconnu"
3311
 
3312
- #: ../../admin/view/right-now.php:119
3313
- #: ../../admin/view/wp-slimstat-reports.php:527
3314
- #: ../../admin/view/wp-slimstat-reports.php:531
3315
- #: ../../admin/view/wp-slimstat-reports.php:689
3316
- #: ../../admin/view/wp-slimstat-reports.php:727
3317
  msgid "Open this URL in a new window"
3318
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
3319
 
3320
- #: ../../admin/view/right-now.php:122
3321
  msgid "Local search results page"
3322
  msgstr "Page de résultat d'une recherche locale"
3323
 
3324
- #: ../../admin/view/right-now.php:129
3325
  msgid "Open this referrer in a new window"
3326
  msgstr "Ouvrir ce référent dans une nouvelle fenêtre"
3327
 
3328
- #: ../../admin/view/right-now.php:130
3329
  msgid "Open this outbound link in a new window"
3330
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
3331
 
3332
- #: ../../admin/view/right-now.php:131
3333
  #, fuzzy
3334
  msgid "Date and Time"
3335
  msgstr "Date/Heure"
3336
 
3337
- #: ../../admin/view/right-now.php:132
3338
  #, fuzzy
3339
  msgid "Content Type"
3340
  msgstr "Contenu"
3341
 
3342
- #: ../../admin/view/right-now.php:147
3343
  msgid "Visit with keywords"
3344
  msgstr "Visite avec mots clés"
3345
 
3346
- #: ../../admin/view/right-now.php:149
3347
  #, fuzzy
3348
  msgid "Known User"
3349
  msgstr "Utilisateurs connus"
3350
 
3351
- #: ../../admin/view/right-now.php:150
3352
  #, fuzzy
3353
  msgid "Human Visitor"
3354
  msgstr "Visiteurs humains"
3355
 
3356
- #: ../../admin/view/right-now.php:151
3357
  msgid "Bot or Crawler"
3358
  msgstr "Robot ou Crawler"
3359
 
@@ -3710,82 +3714,82 @@ msgstr "%s par Heure"
3710
  msgid "Monthly %s"
3711
  msgstr "%s par Mois"
3712
 
3713
- #: ../../admin/view/wp-slimstat-reports.php:455
3714
  msgid "Category ID"
3715
  msgstr "l'ID de la catégorie de l'article"
3716
 
3717
- #: ../../admin/view/wp-slimstat-reports.php:488
3718
  msgid "OS Code"
3719
  msgstr "Code OS "
3720
 
3721
- #: ../../admin/view/wp-slimstat-reports.php:498
3722
  msgid "Referrer"
3723
  msgstr "Référent"
3724
 
3725
- #: ../../admin/view/wp-slimstat-reports.php:522
3726
- #: ../../admin/view/wp-slimstat-reports.php:791
3727
- #: ../../admin/view/wp-slimstat-reports.php:800
3728
- #: ../../admin/view/wp-slimstat-reports.php:806
3729
- #: ../../admin/view/wp-slimstat-reports.php:812
3730
- #: ../../admin/view/wp-slimstat-reports.php:818
3731
- #: ../../admin/view/wp-slimstat-reports.php:824
3732
- #: ../../admin/view/wp-slimstat-reports.php:830
3733
- #: ../../admin/view/wp-slimstat-reports.php:836
3734
  msgid "Hits"
3735
  msgstr "Hits"
3736
 
3737
- #: ../../admin/view/wp-slimstat-reports.php:686
3738
  msgid "Search for"
3739
  msgstr "Recherche pour"
3740
 
3741
- #: ../../admin/view/wp-slimstat-reports.php:717
3742
- #: ../../admin/view/wp-slimstat-reports.php:727
3743
  msgid "Source"
3744
  msgstr "Source"
3745
 
3746
- #: ../../admin/view/wp-slimstat-reports.php:719
3747
  msgid "Keywords"
3748
  msgstr "les mots clés"
3749
 
3750
- #: ../../admin/view/wp-slimstat-reports.php:727
3751
  #, php-format
3752
  msgid "Filter results where resource equals %s"
3753
  msgstr "Filtrer les résultats où la ressource égale %s"
3754
 
3755
- #: ../../admin/view/wp-slimstat-reports.php:737
3756
  msgid "Total Pageviews"
3757
  msgstr "Total Pages Vues"
3758
 
3759
- #: ../../admin/view/wp-slimstat-reports.php:738
3760
  msgid "DB Size"
3761
  msgstr "Taille de la base de données"
3762
 
3763
- #: ../../admin/view/wp-slimstat-reports.php:739
3764
  msgid "Tracking Active"
3765
  msgstr "Traçage actif"
3766
 
3767
- #: ../../admin/view/wp-slimstat-reports.php:740
3768
  msgid "Javascript Mode"
3769
  msgstr "Mode Javascript"
3770
 
3771
- #: ../../admin/view/wp-slimstat-reports.php:741
3772
  msgid "Tracking Browser Caps"
3773
  msgstr "Traçage Capacités Navigateurs"
3774
 
3775
- #: ../../admin/view/wp-slimstat-reports.php:742
3776
  msgid "Auto purge"
3777
  msgstr "Purge automatique"
3778
 
3779
- #: ../../admin/view/wp-slimstat-reports.php:743
3780
  msgid "Oldest pageview"
3781
  msgstr "Plus ancienne page vue"
3782
 
3783
- #: ../../admin/view/wp-slimstat-reports.php:743
3784
  msgid "No visits"
3785
  msgstr "Aucune visite"
3786
 
3787
- #: ../../admin/view/wp-slimstat-reports.php:753
3788
- #: ../../admin/view/wp-slimstat-reports.php:855
3789
  msgid ""
3790
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
3791
  "time the tracking code is executed."
@@ -3793,16 +3797,16 @@ msgstr ""
3793
  "Une demande pour charger un fichier HTML. WP SlimStat enregistre un \"pages "
3794
  "vues \" chaque fois que le code de traçage est exécuté."
3795
 
3796
- #: ../../admin/view/wp-slimstat-reports.php:755
3797
  msgid "How many pages have been visited on average during the current period."
3798
  msgstr ""
3799
  "Combien de pages ont été visitées en moyenne au cours de la période en cours."
3800
 
3801
- #: ../../admin/view/wp-slimstat-reports.php:756
3802
  msgid "Average Pageviews"
3803
  msgstr "Nombre de pages vues en moyenne"
3804
 
3805
- #: ../../admin/view/wp-slimstat-reports.php:757
3806
  msgid ""
3807
  "Visitors who landed on your site after searching for a keyword on Google, "
3808
  "Yahoo, etc."
@@ -3810,11 +3814,11 @@ msgstr ""
3810
  "Visiteurs qui sont arrivés sur votre site après une recherche par mots clés "
3811
  "sur Google, Yahoo, etc"
3812
 
3813
- #: ../../admin/view/wp-slimstat-reports.php:758
3814
  msgid "From Search Results"
3815
  msgstr "Résultat de recherches"
3816
 
3817
- #: ../../admin/view/wp-slimstat-reports.php:759
3818
  msgid ""
3819
  "Used to differentiate between multiple requests to download a file from one "
3820
  "internet address (IP) and requests originating from many distinct addresses"
@@ -3823,23 +3827,23 @@ msgstr ""
3823
  "fichier à partir d'une adresse Internet (IP) unique et les demandes "
3824
  "provenant de plusieurs adresses distinctes"
3825
 
3826
- #: ../../admin/view/wp-slimstat-reports.php:760
3827
- #: ../../admin/view/wp-slimstat-reports.php:775
3828
- #: ../../admin/view/wp-slimstat-reports.php:1140
3829
- #: ../../admin/view/wp-slimstat-reports.php:1144
3830
- #: ../../admin/view/wp-slimstat-reports.php:1148
3831
  msgid "Unique IPs"
3832
  msgstr "IPs uniques"
3833
 
3834
- #: ../../admin/view/wp-slimstat-reports.php:761
3835
  msgid "Last 5 minutes"
3836
  msgstr "5 dernières minutes"
3837
 
3838
- #: ../../admin/view/wp-slimstat-reports.php:762
3839
  msgid "Last 30 minutes"
3840
  msgstr "30 dernières minutes"
3841
 
3842
- #: ../../admin/view/wp-slimstat-reports.php:772
3843
  msgid ""
3844
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3845
  "multiple times if they perform multiple visits."
@@ -3848,16 +3852,16 @@ msgstr ""
3848
  "reviennent sont comptés plusieurs fois s'ils effectuent des visites "
3849
  "multiples."
3850
 
3851
- #: ../../admin/view/wp-slimstat-reports.php:773
3852
  msgid "Human visits"
3853
  msgstr "Visiteurs humains"
3854
 
3855
- #: ../../admin/view/wp-slimstat-reports.php:774
3856
  msgid "It includes only traffic generated by human visitors."
3857
  msgstr "Cela ne comprend que les visites dites humaines."
3858
 
3859
- #: ../../admin/view/wp-slimstat-reports.php:776
3860
- #: ../../admin/view/wp-slimstat-reports.php:867
3861
  msgid ""
3862
  "Percentage of single-page visits, i.e. visits in which the person left your "
3863
  "site from the entrance page."
@@ -3865,76 +3869,76 @@ msgstr ""
3865
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
3866
  "desquelles la personne a quitté votre site dès la page d'entrée."
3867
 
3868
- #: ../../admin/view/wp-slimstat-reports.php:777
3869
  msgid "Bounce rate"
3870
  msgstr "Taux de rebond"
3871
 
3872
- #: ../../admin/view/wp-slimstat-reports.php:778
3873
  msgid "Visitors who had previously left a comment on your blog."
3874
  msgstr "Visiteurs qui ont déjà laissé un commentaire sur votre blog."
3875
 
3876
- #: ../../admin/view/wp-slimstat-reports.php:779
3877
  msgid "Known visitors"
3878
  msgstr "Visiteurs connus"
3879
 
3880
- #: ../../admin/view/wp-slimstat-reports.php:780
3881
  msgid "Human users who visited your site only once."
3882
  msgstr "Visiteurs humains qui ont visité votre site une seule fois."
3883
 
3884
- #: ../../admin/view/wp-slimstat-reports.php:781
3885
  msgid "New visitors"
3886
  msgstr "Nouveaux visiteurs"
3887
 
3888
- #: ../../admin/view/wp-slimstat-reports.php:782
3889
  msgid "Bots"
3890
  msgstr "Robots"
3891
 
3892
- #: ../../admin/view/wp-slimstat-reports.php:783
3893
  msgid "Pages per visit"
3894
  msgstr "Pages vues par visite"
3895
 
3896
- #: ../../admin/view/wp-slimstat-reports.php:784
3897
- #: ../../admin/view/wp-slimstat-reports.php:1153
3898
  msgid "Longest visit"
3899
  msgstr "Visite la plus longue"
3900
 
3901
- #: ../../admin/view/wp-slimstat-reports.php:784
3902
  msgid "hits"
3903
  msgstr "hits"
3904
 
3905
- #: ../../admin/view/wp-slimstat-reports.php:802
3906
  msgid "0 - 30 seconds"
3907
  msgstr "0 - 30 secondes"
3908
 
3909
- #: ../../admin/view/wp-slimstat-reports.php:808
3910
  msgid "31 - 60 seconds"
3911
  msgstr "31 - 60 secondes"
3912
 
3913
- #: ../../admin/view/wp-slimstat-reports.php:814
3914
  msgid "1 - 3 minutes"
3915
  msgstr "1 - 3 minutes"
3916
 
3917
- #: ../../admin/view/wp-slimstat-reports.php:820
3918
  msgid "3 - 5 minutes"
3919
  msgstr "3 - 5 minutes"
3920
 
3921
- #: ../../admin/view/wp-slimstat-reports.php:826
3922
  msgid "5 - 7 minutes"
3923
  msgstr "5 - 7 minutes"
3924
 
3925
- #: ../../admin/view/wp-slimstat-reports.php:832
3926
  msgid "7 - 10 minutes"
3927
  msgstr "7 - 10 minutes"
3928
 
3929
- #: ../../admin/view/wp-slimstat-reports.php:838
3930
  msgid "More than 10 minutes"
3931
  msgstr "Plus de 10 minutes"
3932
 
3933
- #: ../../admin/view/wp-slimstat-reports.php:847
3934
  msgid "Average time on site"
3935
  msgstr "Moyenne du temps passé sur le site"
3936
 
3937
- #: ../../admin/view/wp-slimstat-reports.php:857
3938
  msgid ""
3939
  "A referrer (or referring site) is the site that a visitor previously visited "
3940
  "before following a link to your site."
@@ -3942,11 +3946,11 @@ msgstr ""
3942
  "Un référent (ou site référent) est le site que le visiteur a visité avant de "
3943
  "suivre un lien vers votre site."
3944
 
3945
- #: ../../admin/view/wp-slimstat-reports.php:858
3946
  msgid "Unique Referrers"
3947
  msgstr "Référents uniques"
3948
 
3949
- #: ../../admin/view/wp-slimstat-reports.php:859
3950
  msgid ""
3951
  "Visitors who visited the site by typing the URL directly into their browser. "
3952
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -3959,11 +3963,11 @@ msgstr ""
3959
  "courriels non marquées, ou des liens à partir de documents qui ne "
3960
  "contiennent pas de variables de suivi."
3961
 
3962
- #: ../../admin/view/wp-slimstat-reports.php:860
3963
  msgid "Direct Pageviews"
3964
  msgstr "Pages Vues Directes"
3965
 
3966
- #: ../../admin/view/wp-slimstat-reports.php:861
3967
  msgid ""
3968
  "Visitors who came to your site via searches on Google or some other search "
3969
  "engine."
@@ -3971,11 +3975,11 @@ msgstr ""
3971
  "Visiteurs qui sont venus sur le site via un moteur de recherche comme Google "
3972
  "ou autre."
3973
 
3974
- #: ../../admin/view/wp-slimstat-reports.php:862
3975
  msgid "From a search result"
3976
  msgstr "Depuis un moteur de recherche"
3977
 
3978
- #: ../../admin/view/wp-slimstat-reports.php:863
3979
  msgid ""
3980
  "The first page that a user views during a session. This is also known as the "
3981
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -3987,25 +3991,25 @@ msgstr ""
3987
  "mots clés 'Brooklyn Office Space' et arrive sur votre page d'accueil, elle "
3988
  "sera comptée (pour cette visite) comme la page d'entrée."
3989
 
3990
- #: ../../admin/view/wp-slimstat-reports.php:864
3991
  msgid "Unique Landing Pages"
3992
  msgstr "Pages d'Entrées Uniques"
3993
 
3994
- #: ../../admin/view/wp-slimstat-reports.php:865
3995
  msgid "Number of single-page visits to your site over the selected period."
3996
  msgstr ""
3997
  "Nombre de visites d'une seule page de votre site au cours de la période "
3998
  "sélectionnée."
3999
 
4000
- #: ../../admin/view/wp-slimstat-reports.php:866
4001
  msgid "Bounce Pages"
4002
  msgstr "Pages de Rebonds"
4003
 
4004
- #: ../../admin/view/wp-slimstat-reports.php:868
4005
  msgid "New Visitors Rate"
4006
  msgstr "Taux de Nouveaux Visiteurs"
4007
 
4008
- #: ../../admin/view/wp-slimstat-reports.php:869
4009
  msgid ""
4010
  "Visitors who visited the site in the last 5 minutes coming from a search "
4011
  "engine."
@@ -4013,59 +4017,59 @@ msgstr ""
4013
  "Visiteurs qui ont visité le site dans les 5 dernières visites, provenant "
4014
  "d'un moteur de recherche."
4015
 
4016
- #: ../../admin/view/wp-slimstat-reports.php:870
4017
  msgid "Currently from search engines"
4018
  msgstr "Moteurs de recherche récents"
4019
 
4020
- #: ../../admin/view/wp-slimstat-reports.php:938
4021
  msgid "Number of pages in your site included in Google's index."
4022
  msgstr "Nombre de pages de votre site indexées par Google."
4023
 
4024
- #: ../../admin/view/wp-slimstat-reports.php:939
4025
  msgid "Google Index"
4026
  msgstr "Index Google"
4027
 
4028
- #: ../../admin/view/wp-slimstat-reports.php:940
4029
  msgid "Number of pages, according to Google, that link back to your site."
4030
  msgstr ""
4031
  "Nombre de pages qui pointent sur votre site, d'après les informations "
4032
  "fournies par Google."
4033
 
4034
- #: ../../admin/view/wp-slimstat-reports.php:941
4035
  msgid "Google Backlinks"
4036
  msgstr "Backlinks Google"
4037
 
4038
- #: ../../admin/view/wp-slimstat-reports.php:942
4039
  msgid ""
4040
  "How many times the Facebook Like button has been approximately clicked on "
4041
  "your site."
4042
  msgstr ""
4043
  "Nombre de fois que votre site a été Liké par quelqu'un sur le réseau social."
4044
 
4045
- #: ../../admin/view/wp-slimstat-reports.php:943
4046
  msgid "Facebook Likes"
4047
  msgstr "\"J'aime\" Facebook"
4048
 
4049
- #: ../../admin/view/wp-slimstat-reports.php:944
4050
  msgid ""
4051
  "How many times your site has been shared by someone on the social network."
4052
  msgstr ""
4053
  "Nombre de fois que votre site a été partagé par quelqu'un sur le réseau "
4054
  "social."
4055
 
4056
- #: ../../admin/view/wp-slimstat-reports.php:945
4057
  msgid "Facebook Shares"
4058
  msgstr "Partages Facebook"
4059
 
4060
- #: ../../admin/view/wp-slimstat-reports.php:946
4061
  msgid "How many times links to your website have been clicked on Facebook."
4062
  msgstr "Nombre de fois que vos liens ont été activés sur Facebook"
4063
 
4064
- #: ../../admin/view/wp-slimstat-reports.php:947
4065
  msgid "Facebook Clicks"
4066
  msgstr "Clicks Facebook"
4067
 
4068
- #: ../../admin/view/wp-slimstat-reports.php:948
4069
  msgid ""
4070
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
4071
  "traffic data."
@@ -4073,1193 +4077,1198 @@ msgstr ""
4073
  "Alexa est une filiale d'Amazon.com qui fournit des données commerciales "
4074
  "concernant le trafic web."
4075
 
4076
- #: ../../admin/view/wp-slimstat-reports.php:949
4077
  msgid "Alexa World Rank"
4078
  msgstr "Alexa, Classement mondial"
4079
 
4080
- #: ../../admin/view/wp-slimstat-reports.php:950
4081
  msgid "Alexa Country Rank"
4082
  msgstr "Alexa, Classement par pays"
4083
 
4084
- #: ../../admin/view/wp-slimstat-reports.php:951
4085
  msgid "Alexa Popularity"
4086
  msgstr "Alexa, Popularité"
4087
 
4088
- #: ../../admin/view/wp-slimstat-reports.php:968
4089
  msgid "Bing Test"
4090
  msgstr "Test Bing"
4091
 
4092
- #: ../../admin/view/wp-slimstat-reports.php:969
4093
  msgid "AntiVirus Scan"
4094
  msgstr "Scan Antivirus"
4095
 
4096
- #: ../../admin/view/wp-slimstat-reports.php:970
4097
  msgid "Google Bot Test"
4098
  msgstr "Test du Google Bot"
4099
 
4100
- #: ../../admin/view/wp-slimstat-reports.php:971
4101
  msgid "Scan for Hostile Strings"
4102
  msgstr ""
4103
 
4104
- #: ../../admin/view/wp-slimstat-reports.php:972
4105
  msgid "Generic Web Bot test"
4106
  msgstr "Test par d'autres robots."
4107
 
4108
- #: ../../admin/view/wp-slimstat-reports.php:973
4109
  msgid "Google Safe Browsing List"
4110
  msgstr ""
4111
 
4112
- #: ../../admin/view/wp-slimstat-reports.php:974
4113
  msgid "Hostile External Links"
4114
  msgstr "Liens externes hostiles"
4115
 
4116
- #: ../../admin/view/wp-slimstat-reports.php:975
4117
  #, fuzzy
4118
  msgid "Other Treats"
4119
  msgstr "Autres humains"
4120
 
4121
- #: ../../admin/view/wp-slimstat-reports.php:1001
4122
  msgid "Passed"
4123
  msgstr "Réussi"
4124
 
4125
- #: ../../admin/view/wp-slimstat-reports.php:1001
4126
  msgid "At Risk"
4127
  msgstr "Risqué"
4128
 
4129
- #: ../../admin/view/wp-slimstat-reports.php:1004
4130
  msgid "Timed Out"
4131
  msgstr "Expiration du délai"
4132
 
4133
  # Unknown
4134
- #: ../../admin/view/wp-slimstat-reports.php:1018
4135
  msgid "c-xx"
4136
  msgstr "Inconnu"
4137
 
4138
  # Afghanistan
4139
- #: ../../admin/view/wp-slimstat-reports.php:1018
4140
  msgid "c-af"
4141
  msgstr "Afghanistan"
4142
 
4143
  # Åland Islands
4144
- #: ../../admin/view/wp-slimstat-reports.php:1018
4145
  msgid "c-ax"
4146
  msgstr "Îles Åland"
4147
 
4148
  # Albania
4149
- #: ../../admin/view/wp-slimstat-reports.php:1018
4150
  msgid "c-al"
4151
  msgstr "Albanie"
4152
 
4153
  # Algeria
4154
- #: ../../admin/view/wp-slimstat-reports.php:1018
4155
  msgid "c-dz"
4156
  msgstr "Algérie"
4157
 
4158
  # Andorra
4159
- #: ../../admin/view/wp-slimstat-reports.php:1018
4160
  msgid "c-ad"
4161
  msgstr "Andorre"
4162
 
4163
  # Angola
4164
- #: ../../admin/view/wp-slimstat-reports.php:1018
4165
  msgid "c-ao"
4166
  msgstr "Angola"
4167
 
4168
  # Anguilla
4169
- #: ../../admin/view/wp-slimstat-reports.php:1018
4170
  msgid "c-ai"
4171
  msgstr "Anguilla"
4172
 
4173
  # Antigua and Barbuda
4174
- #: ../../admin/view/wp-slimstat-reports.php:1018
4175
  msgid "c-ag"
4176
  msgstr "Antigua et Barbuda"
4177
 
4178
  # Argentina
4179
- #: ../../admin/view/wp-slimstat-reports.php:1018
4180
  msgid "c-ar"
4181
  msgstr "Argentine"
4182
 
4183
  # Armenia
4184
- #: ../../admin/view/wp-slimstat-reports.php:1018
4185
  msgid "c-am"
4186
  msgstr "Arménie"
4187
 
4188
  # Aruba
4189
- #: ../../admin/view/wp-slimstat-reports.php:1018
4190
  msgid "c-aw"
4191
  msgstr "Aruba"
4192
 
4193
  # Australia
4194
- #: ../../admin/view/wp-slimstat-reports.php:1018
4195
  msgid "c-au"
4196
  msgstr "Australie"
4197
 
4198
  # Austria
4199
- #: ../../admin/view/wp-slimstat-reports.php:1018
4200
  msgid "c-at"
4201
  msgstr "Autriche"
4202
 
4203
  # Azerbaijan
4204
- #: ../../admin/view/wp-slimstat-reports.php:1018
4205
  msgid "c-az"
4206
  msgstr "Azerbaïdjan"
4207
 
4208
  # Bahamas
4209
- #: ../../admin/view/wp-slimstat-reports.php:1018
4210
  msgid "c-bs"
4211
  msgstr "Bahamas"
4212
 
4213
  # Bahrain
4214
- #: ../../admin/view/wp-slimstat-reports.php:1018
4215
  msgid "c-bh"
4216
  msgstr "Bahreïn"
4217
 
4218
  # Bangladesh
4219
- #: ../../admin/view/wp-slimstat-reports.php:1018
4220
  msgid "c-bd"
4221
  msgstr "Bangladesh"
4222
 
4223
  # Barbados
4224
- #: ../../admin/view/wp-slimstat-reports.php:1018
4225
  msgid "c-bb"
4226
  msgstr "Barbade"
4227
 
4228
  # Belarus
4229
- #: ../../admin/view/wp-slimstat-reports.php:1018
4230
  msgid "c-by"
4231
  msgstr "Bélarus"
4232
 
4233
  # Belgium
4234
- #: ../../admin/view/wp-slimstat-reports.php:1018
4235
  msgid "c-be"
4236
  msgstr "Belgique"
4237
 
4238
  # Belize
4239
- #: ../../admin/view/wp-slimstat-reports.php:1018
4240
  msgid "c-bz"
4241
  msgstr "Belize"
4242
 
4243
  # Benin
4244
- #: ../../admin/view/wp-slimstat-reports.php:1018
4245
  msgid "c-bj"
4246
  msgstr "Bénin"
4247
 
4248
  # Bermuda
4249
- #: ../../admin/view/wp-slimstat-reports.php:1018
4250
  msgid "c-bm"
4251
  msgstr "Bermudes"
4252
 
4253
  # Bhutan
4254
- #: ../../admin/view/wp-slimstat-reports.php:1018
4255
  msgid "c-bt"
4256
  msgstr "Bhoutan"
4257
 
4258
  # Bolivia
4259
- #: ../../admin/view/wp-slimstat-reports.php:1018
4260
  msgid "c-bo"
4261
  msgstr "État plurinational de Bolivie"
4262
 
4263
  # Bosnia and Herzegovina
4264
- #: ../../admin/view/wp-slimstat-reports.php:1018
4265
  msgid "c-ba"
4266
  msgstr "Bosnie-Herzégovine"
4267
 
4268
  # Botswana
4269
- #: ../../admin/view/wp-slimstat-reports.php:1018
4270
  msgid "c-bw"
4271
  msgstr "Botswana"
4272
 
4273
  # Brazil
4274
- #: ../../admin/view/wp-slimstat-reports.php:1018
4275
  msgid "c-br"
4276
  msgstr "Brésil"
4277
 
4278
  # Brunei Darussalam
4279
- #: ../../admin/view/wp-slimstat-reports.php:1018
4280
  msgid "c-bn"
4281
  msgstr "Brunéi Darussalam"
4282
 
4283
  # Bulgaria
4284
- #: ../../admin/view/wp-slimstat-reports.php:1018
4285
  msgid "c-bg"
4286
  msgstr "Bulgarie"
4287
 
4288
  # Burkina Faso
4289
- #: ../../admin/view/wp-slimstat-reports.php:1018
4290
  msgid "c-bf"
4291
  msgstr "Burkina Faso"
4292
 
4293
  # Burundi
4294
- #: ../../admin/view/wp-slimstat-reports.php:1018
4295
  msgid "c-bi"
4296
  msgstr "Burundi"
4297
 
4298
  # Cambodia
4299
- #: ../../admin/view/wp-slimstat-reports.php:1018
4300
  msgid "c-kh"
4301
  msgstr "Cambodge"
4302
 
4303
  # Cameroon
4304
- #: ../../admin/view/wp-slimstat-reports.php:1018
4305
  msgid "c-cm"
4306
  msgstr "Cameroun"
4307
 
4308
  # Canada
4309
- #: ../../admin/view/wp-slimstat-reports.php:1018
4310
  msgid "c-ca"
4311
  msgstr "Canada"
4312
 
4313
  # Cape Verde
4314
- #: ../../admin/view/wp-slimstat-reports.php:1018
4315
  msgid "c-cv"
4316
  msgstr "Cap-Vert"
4317
 
4318
  # Cayman Islands
4319
- #: ../../admin/view/wp-slimstat-reports.php:1018
4320
  msgid "c-ky"
4321
  msgstr "Îles Caïmans"
4322
 
4323
  # Central African Republic
4324
- #: ../../admin/view/wp-slimstat-reports.php:1018
4325
  msgid "c-cf"
4326
  msgstr "République Centrafricaine"
4327
 
4328
  # Chad
4329
- #: ../../admin/view/wp-slimstat-reports.php:1018
4330
  msgid "c-td"
4331
  msgstr "Tchad"
4332
 
4333
  # Chile
4334
- #: ../../admin/view/wp-slimstat-reports.php:1018
4335
  msgid "c-cl"
4336
  msgstr "Chili"
4337
 
4338
  # China
4339
- #: ../../admin/view/wp-slimstat-reports.php:1018
4340
  msgid "c-cn"
4341
  msgstr "Chine"
4342
 
4343
  # Colombia
4344
- #: ../../admin/view/wp-slimstat-reports.php:1018
4345
  msgid "c-co"
4346
  msgstr "Colombie"
4347
 
4348
  # Comoros
4349
- #: ../../admin/view/wp-slimstat-reports.php:1018
4350
  msgid "c-km"
4351
  msgstr "Comores"
4352
 
4353
  # Congo
4354
- #: ../../admin/view/wp-slimstat-reports.php:1018
4355
  msgid "c-cg"
4356
  msgstr "Congo"
4357
 
4358
  # The Democratic Republic of the Congo
4359
- #: ../../admin/view/wp-slimstat-reports.php:1018
4360
  msgid "c-cd"
4361
  msgstr "République Démocratique du Congo"
4362
 
4363
  # Costa Rica
4364
- #: ../../admin/view/wp-slimstat-reports.php:1018
4365
  msgid "c-cr"
4366
  msgstr "Costa Rica"
4367
 
4368
  # Côte d'Ivoire
4369
- #: ../../admin/view/wp-slimstat-reports.php:1018
4370
  msgid "c-ci"
4371
  msgstr "Côte d'Ivoire"
4372
 
4373
  # Croatia
4374
- #: ../../admin/view/wp-slimstat-reports.php:1018
4375
  msgid "c-hr"
4376
  msgstr "Croatie"
4377
 
4378
  # Cuba
4379
- #: ../../admin/view/wp-slimstat-reports.php:1018
4380
  msgid "c-cu"
4381
  msgstr "Cuba"
4382
 
4383
  # Cyprus
4384
- #: ../../admin/view/wp-slimstat-reports.php:1018
4385
  msgid "c-cy"
4386
  msgstr "Chypre"
4387
 
4388
  # Czech Republic
4389
- #: ../../admin/view/wp-slimstat-reports.php:1018
4390
  msgid "c-cz"
4391
  msgstr "République tchèque"
4392
 
4393
  # Denmark
4394
- #: ../../admin/view/wp-slimstat-reports.php:1018
4395
  msgid "c-dk"
4396
  msgstr "Danemark"
4397
 
4398
  # Djibouti
4399
- #: ../../admin/view/wp-slimstat-reports.php:1018
4400
  msgid "c-dj"
4401
  msgstr "Djibouti"
4402
 
4403
  # Dominica
4404
- #: ../../admin/view/wp-slimstat-reports.php:1018
4405
  msgid "c-dm"
4406
  msgstr "Dominique"
4407
 
4408
  # Dominican Republic
4409
- #: ../../admin/view/wp-slimstat-reports.php:1018
4410
  msgid "c-do"
4411
  msgstr "République dominicaine"
4412
 
4413
  # Ecuador
4414
- #: ../../admin/view/wp-slimstat-reports.php:1018
4415
  msgid "c-ec"
4416
  msgstr "Équateur"
4417
 
4418
  # Egypt
4419
- #: ../../admin/view/wp-slimstat-reports.php:1018
4420
  msgid "c-eg"
4421
  msgstr "Égypte"
4422
 
4423
  # El Salvador
4424
- #: ../../admin/view/wp-slimstat-reports.php:1018
4425
  msgid "c-sv"
4426
  msgstr "El Salvador"
4427
 
4428
  # Equatorial Guinea
4429
- #: ../../admin/view/wp-slimstat-reports.php:1018
4430
  msgid "c-gq"
4431
  msgstr "Guinée équatoriale"
4432
 
4433
  # Eritrea
4434
- #: ../../admin/view/wp-slimstat-reports.php:1018
4435
  msgid "c-er"
4436
  msgstr "Érythrée"
4437
 
4438
  # Estonia
4439
- #: ../../admin/view/wp-slimstat-reports.php:1018
4440
  msgid "c-ee"
4441
  msgstr "Estonie"
4442
 
4443
  # Ethiopia
4444
- #: ../../admin/view/wp-slimstat-reports.php:1018
4445
  msgid "c-et"
4446
  msgstr "Éthiopie"
4447
 
4448
  # Faroe Islands
4449
- #: ../../admin/view/wp-slimstat-reports.php:1018
4450
  msgid "c-fo"
4451
  msgstr "Îles Féroé"
4452
 
4453
  # Falkland Islands (Malvinas)
4454
- #: ../../admin/view/wp-slimstat-reports.php:1018
4455
  msgid "c-fk"
4456
  msgstr "Îles Falkland (Malvinas)"
4457
 
4458
  # Fiji
4459
- #: ../../admin/view/wp-slimstat-reports.php:1018
4460
  msgid "c-fj"
4461
  msgstr "Fidji"
4462
 
4463
  # Finland
4464
- #: ../../admin/view/wp-slimstat-reports.php:1018
4465
  msgid "c-fi"
4466
  msgstr "Finlande"
4467
 
4468
  # France
4469
- #: ../../admin/view/wp-slimstat-reports.php:1018
4470
  msgid "c-fr"
4471
  msgstr "France"
4472
 
4473
  # French Guiana
4474
- #: ../../admin/view/wp-slimstat-reports.php:1018
4475
  msgid "c-gf"
4476
  msgstr "Guyane française"
4477
 
4478
  # Gabon
4479
- #: ../../admin/view/wp-slimstat-reports.php:1018
4480
  msgid "c-ga"
4481
  msgstr "Gabon"
4482
 
4483
  # Gambia
4484
- #: ../../admin/view/wp-slimstat-reports.php:1018
4485
  msgid "c-gm"
4486
  msgstr "Gambie"
4487
 
4488
  # Georgia
4489
- #: ../../admin/view/wp-slimstat-reports.php:1018
4490
  msgid "c-ge"
4491
  msgstr "Géorgie"
4492
 
4493
  # Germany
4494
- #: ../../admin/view/wp-slimstat-reports.php:1018
4495
  msgid "c-de"
4496
  msgstr "Allemagne"
4497
 
4498
  # Ghana
4499
- #: ../../admin/view/wp-slimstat-reports.php:1018
4500
  msgid "c-gh"
4501
  msgstr "Ghana"
4502
 
4503
  # Greece
4504
- #: ../../admin/view/wp-slimstat-reports.php:1018
4505
  msgid "c-gr"
4506
  msgstr "Grèce"
4507
 
4508
  # Greenland
4509
- #: ../../admin/view/wp-slimstat-reports.php:1018
4510
  msgid "c-gl"
4511
  msgstr "Groenland"
4512
 
4513
  # Grenada
4514
- #: ../../admin/view/wp-slimstat-reports.php:1018
4515
  msgid "c-gd"
4516
  msgstr "Grenade"
4517
 
4518
  # Guadeloupe
4519
- #: ../../admin/view/wp-slimstat-reports.php:1018
4520
  msgid "c-gp"
4521
  msgstr "Guadeloupe"
4522
 
4523
  # Guatemala
4524
- #: ../../admin/view/wp-slimstat-reports.php:1018
4525
  msgid "c-gt"
4526
  msgstr "Guatemala"
4527
 
4528
  # Guinea
4529
- #: ../../admin/view/wp-slimstat-reports.php:1018
4530
  msgid "c-gn"
4531
  msgstr "Guinée"
4532
 
4533
  # Guinea-Bissau
4534
- #: ../../admin/view/wp-slimstat-reports.php:1018
4535
  msgid "c-gw"
4536
  msgstr "Guinée-Bissau"
4537
 
4538
  # Guyana
4539
- #: ../../admin/view/wp-slimstat-reports.php:1018
4540
  msgid "c-gy"
4541
  msgstr "Guyana"
4542
 
4543
  # Haiti
4544
- #: ../../admin/view/wp-slimstat-reports.php:1018
4545
  msgid "c-ht"
4546
  msgstr "Haïti"
4547
 
4548
  # Honduras
4549
- #: ../../admin/view/wp-slimstat-reports.php:1018
4550
  msgid "c-hn"
4551
  msgstr "Honduras"
4552
 
4553
  # Hong Kong
4554
- #: ../../admin/view/wp-slimstat-reports.php:1018
4555
  msgid "c-hk"
4556
  msgstr "Hong Kong"
4557
 
4558
  # Hungary
4559
- #: ../../admin/view/wp-slimstat-reports.php:1018
4560
  msgid "c-hu"
4561
  msgstr "Hongrie"
4562
 
4563
  # Iceland
4564
- #: ../../admin/view/wp-slimstat-reports.php:1018
4565
  msgid "c-is"
4566
  msgstr "Islande"
4567
 
4568
  # India
4569
- #: ../../admin/view/wp-slimstat-reports.php:1018
4570
  msgid "c-in"
4571
  msgstr "Inde"
4572
 
4573
  # Indonesia
4574
- #: ../../admin/view/wp-slimstat-reports.php:1018
4575
  msgid "c-id"
4576
  msgstr "Indonésie"
4577
 
4578
  # Islamic Republic of Iran
4579
- #: ../../admin/view/wp-slimstat-reports.php:1018
4580
  msgid "c-ir"
4581
  msgstr "République islamique d'Iran"
4582
 
4583
  # Iraq
4584
- #: ../../admin/view/wp-slimstat-reports.php:1018
4585
  msgid "c-iq"
4586
  msgstr "Irak"
4587
 
4588
  # Ireland
4589
- #: ../../admin/view/wp-slimstat-reports.php:1018
4590
  msgid "c-ie"
4591
  msgstr "Irlande"
4592
 
4593
  # Israel
4594
- #: ../../admin/view/wp-slimstat-reports.php:1018
4595
  msgid "c-il"
4596
  msgstr "Israël"
4597
 
4598
  # Italy
4599
- #: ../../admin/view/wp-slimstat-reports.php:1018
4600
  msgid "c-it"
4601
  msgstr "Italie"
4602
 
4603
  # Jamaica
4604
- #: ../../admin/view/wp-slimstat-reports.php:1018
4605
  msgid "c-jm"
4606
  msgstr "Jamaïque"
4607
 
4608
  # Japan
4609
- #: ../../admin/view/wp-slimstat-reports.php:1018
4610
  msgid "c-jp"
4611
  msgstr "Japon"
4612
 
4613
  # Jordan
4614
- #: ../../admin/view/wp-slimstat-reports.php:1018
4615
  msgid "c-jo"
4616
  msgstr "Jordanie"
4617
 
4618
  # Kazakhstan
4619
- #: ../../admin/view/wp-slimstat-reports.php:1018
4620
  msgid "c-kz"
4621
  msgstr "Kazakhstan"
4622
 
4623
  # Kenya
4624
- #: ../../admin/view/wp-slimstat-reports.php:1018
4625
  msgid "c-ke"
4626
  msgstr "Kenya"
4627
 
4628
  # Nauru
4629
- #: ../../admin/view/wp-slimstat-reports.php:1018
4630
  msgid "c-nr"
4631
  msgstr "Nauru"
4632
 
4633
  # Democratic People's Republic of Korea
4634
- #: ../../admin/view/wp-slimstat-reports.php:1018
4635
  msgid "c-kp"
4636
  msgstr "République populaire démocratique de Corée"
4637
 
4638
  # Republic of Korea
4639
- #: ../../admin/view/wp-slimstat-reports.php:1018
4640
  msgid "c-kr"
4641
  msgstr "République de Corée"
4642
 
4643
- #: ../../admin/view/wp-slimstat-reports.php:1018
4644
  msgid "c-kv"
4645
  msgstr "Kossovo"
4646
 
4647
  # Kuwait
4648
- #: ../../admin/view/wp-slimstat-reports.php:1018
4649
  msgid "c-kw"
4650
  msgstr "Koweït"
4651
 
4652
  # Kyrgyzstan
4653
- #: ../../admin/view/wp-slimstat-reports.php:1018
4654
  msgid "c-kg"
4655
  msgstr "Kirghizistan"
4656
 
4657
  # Lao People's Democratic Republic
4658
- #: ../../admin/view/wp-slimstat-reports.php:1018
4659
  msgid "c-la"
4660
  msgstr "République démocratique populaire lao"
4661
 
4662
  # Latvia
4663
- #: ../../admin/view/wp-slimstat-reports.php:1018
4664
  msgid "c-lv"
4665
  msgstr "Lettonie"
4666
 
4667
  # Lebanon
4668
- #: ../../admin/view/wp-slimstat-reports.php:1018
4669
  msgid "c-lb"
4670
  msgstr "Liban"
4671
 
4672
  # Lesotho
4673
- #: ../../admin/view/wp-slimstat-reports.php:1018
4674
  msgid "c-ls"
4675
  msgstr "Lesotho"
4676
 
4677
  # Liberia
4678
- #: ../../admin/view/wp-slimstat-reports.php:1018
4679
  msgid "c-lr"
4680
  msgstr "Libéria"
4681
 
4682
  # Libyan Arab Jamahiriya
4683
- #: ../../admin/view/wp-slimstat-reports.php:1018
4684
  msgid "c-ly"
4685
  msgstr "Jamahiriya arabe libyenne"
4686
 
4687
  # Liechtenstein
4688
- #: ../../admin/view/wp-slimstat-reports.php:1018
4689
  msgid "c-li"
4690
  msgstr "Liechtenstein"
4691
 
4692
  # Lithuania
4693
- #: ../../admin/view/wp-slimstat-reports.php:1018
4694
  msgid "c-lt"
4695
  msgstr "Lituanie"
4696
 
4697
  # Luxembourg
4698
- #: ../../admin/view/wp-slimstat-reports.php:1018
4699
  msgid "c-lu"
4700
  msgstr "Luxembourg"
4701
 
4702
  # The Former Yugoslav Republic of Macedonia
4703
- #: ../../admin/view/wp-slimstat-reports.php:1018
4704
  msgid "c-mk"
4705
  msgstr "Ex-république yougoslave de Macédoine"
4706
 
4707
  # Madagascar
4708
- #: ../../admin/view/wp-slimstat-reports.php:1018
4709
  msgid "c-mg"
4710
  msgstr "Madagascar"
4711
 
4712
  # Malawi
4713
- #: ../../admin/view/wp-slimstat-reports.php:1018
4714
  msgid "c-mw"
4715
  msgstr "Malawi"
4716
 
4717
  # Malaysia
4718
- #: ../../admin/view/wp-slimstat-reports.php:1018
4719
  msgid "c-my"
4720
  msgstr "Malaisie"
4721
 
4722
  # Mali
4723
- #: ../../admin/view/wp-slimstat-reports.php:1018
4724
  msgid "c-ml"
4725
  msgstr "Mali"
4726
 
4727
  # Malta
4728
- #: ../../admin/view/wp-slimstat-reports.php:1018
4729
  msgid "c-mt"
4730
  msgstr "Malte"
4731
 
4732
  # Martinique
4733
- #: ../../admin/view/wp-slimstat-reports.php:1018
4734
  msgid "c-mq"
4735
  msgstr "Martinique"
4736
 
4737
  # Mauritania
4738
- #: ../../admin/view/wp-slimstat-reports.php:1018
4739
  msgid "c-mr"
4740
  msgstr "Mauritanie"
4741
 
4742
  # Mauritius
4743
- #: ../../admin/view/wp-slimstat-reports.php:1018
4744
  msgid "c-mu"
4745
  msgstr "Maurice"
4746
 
4747
  # Mexico
4748
- #: ../../admin/view/wp-slimstat-reports.php:1018
4749
  msgid "c-mx"
4750
  msgstr "Mexique"
4751
 
4752
  # Moldova
4753
- #: ../../admin/view/wp-slimstat-reports.php:1018
4754
  msgid "c-md"
4755
  msgstr "République de Moldova"
4756
 
4757
  # Mongolia
4758
- #: ../../admin/view/wp-slimstat-reports.php:1018
4759
  msgid "c-mn"
4760
  msgstr "Mongolie"
4761
 
4762
  # Montenegro
4763
- #: ../../admin/view/wp-slimstat-reports.php:1018
4764
  msgid "c-me"
4765
  msgstr "Monténégro"
4766
 
4767
  # Montserrat
4768
- #: ../../admin/view/wp-slimstat-reports.php:1018
4769
  msgid "c-ms"
4770
  msgstr "Montserrat"
4771
 
4772
  # Morocco
4773
- #: ../../admin/view/wp-slimstat-reports.php:1018
4774
  msgid "c-ma"
4775
  msgstr "Maroc"
4776
 
4777
  # Mozambique
4778
- #: ../../admin/view/wp-slimstat-reports.php:1018
4779
  msgid "c-mz"
4780
  msgstr "Mozambique"
4781
 
4782
  # Myanmar
4783
- #: ../../admin/view/wp-slimstat-reports.php:1018
4784
  msgid "c-mm"
4785
  msgstr "Myanmar"
4786
 
4787
  # Namibia
4788
- #: ../../admin/view/wp-slimstat-reports.php:1018
4789
  msgid "c-na"
4790
  msgstr "Namibie"
4791
 
4792
  # Nepal
4793
- #: ../../admin/view/wp-slimstat-reports.php:1018
4794
  msgid "c-np"
4795
  msgstr "Népal"
4796
 
4797
  # Netherlands
4798
- #: ../../admin/view/wp-slimstat-reports.php:1018
4799
  msgid "c-nl"
4800
  msgstr "Pays-bas"
4801
 
4802
  # New Caledonia
4803
- #: ../../admin/view/wp-slimstat-reports.php:1018
4804
  msgid "c-nc"
4805
  msgstr "Nouvelle-Calédonie"
4806
 
4807
  # New Zealand
4808
- #: ../../admin/view/wp-slimstat-reports.php:1018
4809
  msgid "c-nz"
4810
  msgstr "Nouvelle-Zélande"
4811
 
4812
  # Nicaragua
4813
- #: ../../admin/view/wp-slimstat-reports.php:1018
4814
  msgid "c-ni"
4815
  msgstr "Nicaragua"
4816
 
4817
  # Niger
4818
- #: ../../admin/view/wp-slimstat-reports.php:1018
4819
  msgid "c-ne"
4820
  msgstr "Niger"
4821
 
4822
  # Nigeria
4823
- #: ../../admin/view/wp-slimstat-reports.php:1018
4824
  msgid "c-ng"
4825
  msgstr "Nigéria"
4826
 
4827
  # Norway
4828
- #: ../../admin/view/wp-slimstat-reports.php:1018
4829
  msgid "c-no"
4830
  msgstr "Norvège"
4831
 
4832
  # Oman
4833
- #: ../../admin/view/wp-slimstat-reports.php:1018
4834
  msgid "c-om"
4835
  msgstr "Oman"
4836
 
4837
  # Pakistan
4838
- #: ../../admin/view/wp-slimstat-reports.php:1018
4839
  msgid "c-pk"
4840
  msgstr "Pakistan"
4841
 
4842
  # Palau
4843
- #: ../../admin/view/wp-slimstat-reports.php:1018
4844
  msgid "c-pw"
4845
  msgstr "Palaos"
4846
 
4847
  # Occupied Palestinian Territory
4848
- #: ../../admin/view/wp-slimstat-reports.php:1018
4849
  msgid "c-ps"
4850
  msgstr "Territoire palestinien occupé"
4851
 
4852
  # Panama
4853
- #: ../../admin/view/wp-slimstat-reports.php:1018
4854
  msgid "c-pa"
4855
  msgstr "Panama"
4856
 
4857
  # Papua New Guinea
4858
- #: ../../admin/view/wp-slimstat-reports.php:1018
4859
  msgid "c-pg"
4860
  msgstr "Papouasie-Nouvelle-Guinée"
4861
 
4862
  # Paraguay
4863
- #: ../../admin/view/wp-slimstat-reports.php:1018
4864
  msgid "c-py"
4865
  msgstr "Paraguay"
4866
 
4867
  # Peru
4868
- #: ../../admin/view/wp-slimstat-reports.php:1018
4869
  msgid "c-pe"
4870
  msgstr "Pérou"
4871
 
4872
  # Philippines
4873
- #: ../../admin/view/wp-slimstat-reports.php:1018
4874
  msgid "c-ph"
4875
  msgstr "Philippines"
4876
 
4877
  # Poland
4878
- #: ../../admin/view/wp-slimstat-reports.php:1018
4879
  msgid "c-pl"
4880
  msgstr "Pologne"
4881
 
4882
  # Portugal
4883
- #: ../../admin/view/wp-slimstat-reports.php:1018
4884
  msgid "c-pt"
4885
  msgstr "Portugal"
4886
 
4887
  # Puerto Rico
4888
- #: ../../admin/view/wp-slimstat-reports.php:1018
4889
  msgid "c-pr"
4890
  msgstr "Porto Rico"
4891
 
4892
  # Qatar
4893
- #: ../../admin/view/wp-slimstat-reports.php:1018
4894
  msgid "c-qa"
4895
  msgstr "Qatar"
4896
 
4897
  # Réunion
4898
- #: ../../admin/view/wp-slimstat-reports.php:1018
4899
  msgid "c-re"
4900
  msgstr "Réunion"
4901
 
4902
  # Romania
4903
- #: ../../admin/view/wp-slimstat-reports.php:1018
4904
  msgid "c-ro"
4905
  msgstr "Roumanie"
4906
 
4907
  # Russian Federation
4908
- #: ../../admin/view/wp-slimstat-reports.php:1018
4909
  msgid "c-ru"
4910
  msgstr "Fédération de Russie"
4911
 
4912
  # Rwanda
4913
- #: ../../admin/view/wp-slimstat-reports.php:1018
4914
  msgid "c-rw"
4915
  msgstr "Rwanda"
4916
 
4917
  # Saint Kitts and Nevis
4918
- #: ../../admin/view/wp-slimstat-reports.php:1018
4919
  msgid "c-kn"
4920
  msgstr "Saint-Kitts-et-Nevis"
4921
 
4922
  # Saint Lucia
4923
- #: ../../admin/view/wp-slimstat-reports.php:1018
4924
  msgid "c-lc"
4925
  msgstr "Sainte-Lucie"
4926
 
4927
  # Saint Martin
4928
- #: ../../admin/view/wp-slimstat-reports.php:1018
4929
  msgid "c-mf"
4930
  msgstr "Saint-Martin"
4931
 
4932
  # Saint Vincent and the Grenadines
4933
- #: ../../admin/view/wp-slimstat-reports.php:1018
4934
  msgid "c-vc"
4935
  msgstr "Saint-Vincent-et-les Grenadines"
4936
 
4937
  # Samoa
4938
- #: ../../admin/view/wp-slimstat-reports.php:1018
4939
  msgid "c-ws"
4940
  msgstr "Samoa"
4941
 
4942
  # Sao Tome and Principe
4943
- #: ../../admin/view/wp-slimstat-reports.php:1018
4944
  msgid "c-st"
4945
  msgstr "Sao Tomé-et-Principe"
4946
 
4947
  # Saudi Arabia
4948
- #: ../../admin/view/wp-slimstat-reports.php:1018
4949
  msgid "c-sa"
4950
  msgstr "Arabie saoudite"
4951
 
4952
  # Senegal
4953
- #: ../../admin/view/wp-slimstat-reports.php:1018
4954
  msgid "c-sn"
4955
  msgstr "Sénégal"
4956
 
4957
  # Serbia
4958
- #: ../../admin/view/wp-slimstat-reports.php:1018
4959
  msgid "c-rs"
4960
  msgstr "Serbie"
4961
 
4962
  # Sierra Leone
4963
- #: ../../admin/view/wp-slimstat-reports.php:1018
4964
  msgid "c-sl"
4965
  msgstr "Sierra Leone"
4966
 
4967
  # Singapore
4968
- #: ../../admin/view/wp-slimstat-reports.php:1018
4969
  msgid "c-sg"
4970
  msgstr "Singapour"
4971
 
4972
  # Slovakia
4973
- #: ../../admin/view/wp-slimstat-reports.php:1018
4974
  msgid "c-sk"
4975
  msgstr "Slovaquie"
4976
 
4977
  # Slovenia
4978
- #: ../../admin/view/wp-slimstat-reports.php:1018
4979
  msgid "c-si"
4980
  msgstr "Slovénie"
4981
 
4982
  # Solomon Islands
4983
- #: ../../admin/view/wp-slimstat-reports.php:1018
4984
  msgid "c-sb"
4985
  msgstr "Îles Salomon"
4986
 
4987
  # Somalia
4988
- #: ../../admin/view/wp-slimstat-reports.php:1018
4989
  msgid "c-so"
4990
  msgstr "Somalie"
4991
 
4992
  # South Africa
4993
- #: ../../admin/view/wp-slimstat-reports.php:1018
4994
  msgid "c-za"
4995
  msgstr "Afrique du sud"
4996
 
4997
  # South Georgia and the South Sandwich Islands
4998
- #: ../../admin/view/wp-slimstat-reports.php:1018
4999
  msgid "c-gs"
5000
  msgstr "Géorgie du sud et les Îles Sandwich du sud"
5001
 
5002
  # Spain
5003
- #: ../../admin/view/wp-slimstat-reports.php:1018
5004
  msgid "c-es"
5005
  msgstr "Espagne"
5006
 
5007
  # Sri Lanka
5008
- #: ../../admin/view/wp-slimstat-reports.php:1018
5009
  msgid "c-lk"
5010
  msgstr "Sri Lanka"
5011
 
 
 
 
 
 
5012
  # Sudan
5013
- #: ../../admin/view/wp-slimstat-reports.php:1018
5014
  msgid "c-sd"
5015
  msgstr "Soudan"
5016
 
5017
- #: ../../admin/view/wp-slimstat-reports.php:1018
5018
  msgid "c-ss"
5019
  msgstr "Soudan du Sud"
5020
 
5021
  # Suriname
5022
- #: ../../admin/view/wp-slimstat-reports.php:1018
5023
  msgid "c-sr"
5024
  msgstr "Suriname"
5025
 
5026
  # Svalbard and Jan Mayen
5027
- #: ../../admin/view/wp-slimstat-reports.php:1018
5028
  msgid "c-sj"
5029
  msgstr "Svalbard et île Jan Mayen"
5030
 
5031
  # Swaziland
5032
- #: ../../admin/view/wp-slimstat-reports.php:1018
5033
  msgid "c-sz"
5034
  msgstr "Swaziland"
5035
 
5036
  # Sweden
5037
- #: ../../admin/view/wp-slimstat-reports.php:1018
5038
  msgid "c-se"
5039
  msgstr "Suède"
5040
 
5041
  # Switzerland
5042
- #: ../../admin/view/wp-slimstat-reports.php:1018
5043
  msgid "c-ch"
5044
  msgstr "Suisse"
5045
 
5046
  # Syrian Arab Republic
5047
- #: ../../admin/view/wp-slimstat-reports.php:1018
5048
  msgid "c-sy"
5049
  msgstr "République arabe syrienne"
5050
 
5051
  # Taiwan, Province of China
5052
- #: ../../admin/view/wp-slimstat-reports.php:1018
5053
  msgid "c-tw"
5054
  msgstr "Taïwan, province de Chine"
5055
 
5056
  # Tajikistan
5057
- #: ../../admin/view/wp-slimstat-reports.php:1018
5058
  msgid "c-tj"
5059
  msgstr "Tadjikistan"
5060
 
5061
  # United Republic of Tanzania
5062
- #: ../../admin/view/wp-slimstat-reports.php:1018
5063
  msgid "c-tz"
5064
  msgstr "République-unie de Tanzanie"
5065
 
5066
  # Thailand
5067
- #: ../../admin/view/wp-slimstat-reports.php:1018
5068
  msgid "c-th"
5069
  msgstr "Thaïlande"
5070
 
5071
  # Timor-Leste
5072
- #: ../../admin/view/wp-slimstat-reports.php:1018
5073
  msgid "c-tl"
5074
  msgstr "Timor-Leste"
5075
 
5076
  # Togo
5077
- #: ../../admin/view/wp-slimstat-reports.php:1018
5078
  msgid "c-tg"
5079
  msgstr "Togo"
5080
 
5081
  # Tonga
5082
- #: ../../admin/view/wp-slimstat-reports.php:1018
5083
  msgid "c-to"
5084
  msgstr "Tonga"
5085
 
5086
  # Trinidad and Tobago
5087
- #: ../../admin/view/wp-slimstat-reports.php:1018
5088
  msgid "c-tt"
5089
  msgstr "Trinité-et-Tobago "
5090
 
5091
  # Tunisia
5092
- #: ../../admin/view/wp-slimstat-reports.php:1018
5093
  msgid "c-tn"
5094
  msgstr "Tunisie"
5095
 
5096
  # Turkey
5097
- #: ../../admin/view/wp-slimstat-reports.php:1018
5098
  msgid "c-tr"
5099
  msgstr "Turquie "
5100
 
5101
  # Turkmenistan
5102
- #: ../../admin/view/wp-slimstat-reports.php:1018
5103
  msgid "c-tm"
5104
  msgstr "Turkménistan"
5105
 
5106
  # Turks and Caicos Islands
5107
- #: ../../admin/view/wp-slimstat-reports.php:1018
5108
  msgid "c-tc"
5109
  msgstr "Îles Turks et Caïques"
5110
 
5111
  # Uganda
5112
- #: ../../admin/view/wp-slimstat-reports.php:1018
5113
  msgid "c-ug"
5114
  msgstr "Ouganda"
5115
 
5116
  # Ukraine
5117
- #: ../../admin/view/wp-slimstat-reports.php:1018
5118
  msgid "c-ua"
5119
  msgstr "Ukraine"
5120
 
5121
  # United Arab Emirates
5122
- #: ../../admin/view/wp-slimstat-reports.php:1018
5123
  msgid "c-ae"
5124
  msgstr "Émirats arabes unis"
5125
 
5126
  # United Kingdom
5127
- #: ../../admin/view/wp-slimstat-reports.php:1018
5128
  msgid "c-gb"
5129
  msgstr "Royaume-Uni"
5130
 
5131
  # United States
5132
- #: ../../admin/view/wp-slimstat-reports.php:1018
5133
  msgid "c-us"
5134
  msgstr "États-Unis"
5135
 
5136
  # Uruguay
5137
- #: ../../admin/view/wp-slimstat-reports.php:1018
5138
  msgid "c-uy"
5139
  msgstr "Uruguay"
5140
 
5141
  # Uzbekistan
5142
- #: ../../admin/view/wp-slimstat-reports.php:1018
5143
  msgid "c-uz"
5144
  msgstr "Ouzbékistan "
5145
 
5146
  # Vanuatu
5147
- #: ../../admin/view/wp-slimstat-reports.php:1018
5148
  msgid "c-vu"
5149
  msgstr "Vanuatu"
5150
 
5151
  # Venezuela
5152
- #: ../../admin/view/wp-slimstat-reports.php:1018
5153
  msgid "c-ve"
5154
  msgstr "République bolivarienne du Venezuela"
5155
 
5156
  # Viet Nam
5157
- #: ../../admin/view/wp-slimstat-reports.php:1018
5158
  msgid "c-vn"
5159
  msgstr "Viet Nam"
5160
 
5161
  # British Virgin Islands
5162
- #: ../../admin/view/wp-slimstat-reports.php:1018
5163
  msgid "c-vg"
5164
  msgstr "Îles vierges britanniques"
5165
 
5166
  # U.S. Virgin Islands
5167
- #: ../../admin/view/wp-slimstat-reports.php:1018
5168
  msgid "c-vi"
5169
  msgstr "Îles vierges des États-Unis"
5170
 
5171
  # Western Sahara
5172
- #: ../../admin/view/wp-slimstat-reports.php:1018
5173
  msgid "c-eh"
5174
  msgstr "Sahara occidental"
5175
 
5176
  # Yemen
5177
- #: ../../admin/view/wp-slimstat-reports.php:1018
5178
  msgid "c-ye"
5179
  msgstr "Yémen"
5180
 
5181
  # Zambia
5182
- #: ../../admin/view/wp-slimstat-reports.php:1018
5183
  msgid "c-zm"
5184
  msgstr "Zambie"
5185
 
5186
  # Zimbabwe
5187
- #: ../../admin/view/wp-slimstat-reports.php:1018
5188
  msgid "c-zw"
5189
  msgstr "Zimbabwe"
5190
 
5191
  # Guernsey
5192
- #: ../../admin/view/wp-slimstat-reports.php:1018
5193
  msgid "c-gg"
5194
  msgstr "Guernesey"
5195
 
5196
  # Jersey
5197
- #: ../../admin/view/wp-slimstat-reports.php:1018
5198
  msgid "c-je"
5199
  msgstr "Jersey"
5200
 
5201
  # Isle of Man
5202
- #: ../../admin/view/wp-slimstat-reports.php:1018
5203
  msgid "c-im"
5204
  msgstr "Île de Man"
5205
 
5206
  # Maldives
5207
- #: ../../admin/view/wp-slimstat-reports.php:1018
5208
  msgid "c-mv"
5209
  msgstr "Maldives"
5210
 
5211
  # European Union
5212
- #: ../../admin/view/wp-slimstat-reports.php:1019
5213
  msgid "c-eu"
5214
  msgstr "Union européenne"
5215
 
5216
- #: ../../admin/view/wp-slimstat-reports.php:1108
5217
  msgid ""
5218
  "This value includes not only posts, but also custom post types, regardless "
5219
  "of their status"
5220
  msgstr ""
5221
 
5222
- #: ../../admin/view/wp-slimstat-reports.php:1109
5223
  msgid "Content Items"
5224
  msgstr "Contenus"
5225
 
5226
- #: ../../admin/view/wp-slimstat-reports.php:1110
5227
  msgid "Total Comments"
5228
  msgstr "Nombre de commentaires"
5229
 
5230
- #: ../../admin/view/wp-slimstat-reports.php:1111
5231
  msgid "Pingbacks"
5232
  msgstr "Pingbacks"
5233
 
5234
- #: ../../admin/view/wp-slimstat-reports.php:1112
5235
  msgid "Trackbacks"
5236
  msgstr "Trackbacks"
5237
 
5238
- #: ../../admin/view/wp-slimstat-reports.php:1113
5239
  msgid "Longest Post (ID)"
5240
  msgstr "ID du post leplus long"
5241
 
5242
- #: ../../admin/view/wp-slimstat-reports.php:1114
5243
  msgid "Longest Comment (ID)"
5244
  msgstr "Commentaire le plus long (ID)"
5245
 
5246
- #: ../../admin/view/wp-slimstat-reports.php:1115
5247
  msgid "Avg Comments Per Post"
5248
  msgstr "Moyenne de commentaires par Post"
5249
 
5250
- #: ../../admin/view/wp-slimstat-reports.php:1116
5251
  msgid "Avg Posts Per Day"
5252
  msgstr "Nombre moyen de posts par jour"
5253
 
5254
- #: ../../admin/view/wp-slimstat-reports.php:1144
5255
  msgid "Visits"
5256
  msgstr "Visites"
5257
 
5258
- #: ../../admin/view/wp-slimstat-reports.php:1148
5259
  msgid "Domains"
5260
  msgstr "Domaines"
5261
 
5262
- #: ../../admin/view/wp-slimstat-reports.php:1153
5263
  msgid "Avg Pageviews"
5264
  msgstr "Moyenne des pages vues"
5265
 
@@ -7389,10 +7398,6 @@ msgstr "Moyenne des pages vues"
7389
  #~ msgid "c-pn"
7390
  #~ msgstr "Pitcairn"
7391
 
7392
- # Seychelles
7393
- #~ msgid "c-sc"
7394
- #~ msgstr "Seychelles"
7395
-
7396
  # Saint Helena, Ascension and Tristan da Cunha
7397
  #~ msgid "c-sh"
7398
  #~ msgstr "Sainte-Hélène, Ascension et Tristan da Cunha"
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-01-29 21:33-0500\n"
6
+ "PO-Revision-Date: 2014-01-29 21:33-0500\n"
7
  "Last-Translator: Get Used To IT <support@getused.to.it>\n"
8
  "Language-Team: Michael Bastin\n"
9
  "Language: fr_FR\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ../..\n"
19
 
20
+ #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:402
21
  #: ../../admin/view/wp-slimstat-reports.php:31
22
  msgid "Right Now"
23
  msgstr "Maintenant"
24
 
25
+ #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:403
26
+ #: ../../admin/wp-slimstat-admin.php:420
27
  #: ../../admin/view/wp-slimstat-reports.php:32
28
  msgid "Overview"
29
  msgstr "Vue générale"
30
 
31
+ #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:404
32
+ #: ../../admin/wp-slimstat-admin.php:421
33
  #: ../../admin/view/wp-slimstat-reports.php:33
34
  msgid "Visitors"
35
  msgstr "Visiteurs"
36
 
37
+ #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:405
38
+ #: ../../admin/wp-slimstat-admin.php:422
39
  #: ../../admin/view/wp-slimstat-reports.php:34
40
  msgid "Content"
41
  msgstr "Contenu"
42
 
43
+ #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:406
44
+ #: ../../admin/wp-slimstat-admin.php:423 ../../admin/view/index.php:168
45
  #: ../../admin/view/wp-slimstat-reports.php:35
46
  msgid "Traffic Sources"
47
  msgstr "Sources de trafic"
48
 
49
+ #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:407
50
+ #: ../../admin/wp-slimstat-admin.php:424
51
  #: ../../admin/view/wp-slimstat-reports.php:36
52
  #: ../../admin/view/wp-slimstat-reports.php:105
53
  msgid "World Map"
54
  msgstr "Carte du monde"
55
 
56
+ #: ../../wp-slimstat.php:1183 ../../admin/wp-slimstat-admin.php:408
57
+ #: ../../admin/wp-slimstat-admin.php:425
58
  #: ../../admin/view/wp-slimstat-reports.php:37
59
  msgid "Custom Reports"
60
  msgstr "Rapports personnalisés"
61
 
62
+ #: ../../wp-slimstat.php:1184 ../../admin/wp-slimstat-admin.php:409
63
+ #: ../../admin/wp-slimstat-admin.php:426 ../../admin/config/addons.php:29
64
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:228
65
  msgid "Add-ons"
66
  msgstr "Add-ons"
67
 
68
+ #: ../../wp-slimstat.php:1187 ../../admin/wp-slimstat-admin.php:455
69
+ #: ../../admin/wp-slimstat-admin.php:458 ../../admin/wp-slimstat-admin.php:502
70
+ #: ../../admin/wp-slimstat-admin.php:505 ../../admin/config/index.php:14
71
+ #: ../../admin/config/index.php:135
72
  msgid "Settings"
73
  msgstr "Réglages"
74
 
75
+ #: ../../admin/wp-slimstat-admin.php:401 ../../admin/wp-slimstat-admin.php:413
76
+ #: ../../admin/wp-slimstat-admin.php:416
77
  #, fuzzy
78
  msgid "SlimStat"
79
  msgstr "À propos de WP-SlimStat"
80
 
81
+ #: ../../admin/wp-slimstat-admin.php:519
82
  msgid "Pageviews in the last 365 days"
83
  msgstr "Pages durant les 365 derniers jours"
84
 
85
+ #: ../../admin/wp-slimstat-admin.php:543
86
  msgid "Show on screen"
87
  msgstr "Montrer à l'écran"
88
 
89
+ #: ../../admin/wp-slimstat-admin.php:571
90
+ msgid "Hide this notice"
91
+ msgstr ""
92
+
93
+ #: ../../admin/wp-slimstat-admin.php:598
94
  msgid "There was an error updating the following options:"
95
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
96
 
97
+ #: ../../admin/wp-slimstat-admin.php:601
98
  msgid "Your settings have been successfully updated."
99
  msgstr "Vos réglages ont bien été mis à jour"
100
 
101
+ #: ../../admin/wp-slimstat-admin.php:624
102
  msgid "Save Changes"
103
  msgstr "Enregistrer les modifications"
104
 
105
+ #: ../../admin/wp-slimstat-admin.php:643
106
  msgid "Yes"
107
  msgstr "Oui"
108
 
109
+ #: ../../admin/wp-slimstat-admin.php:644
110
+ #: ../../admin/view/wp-slimstat-reports.php:747
111
  msgid "No"
112
  msgstr "Non"
113
 
114
+ #: ../../admin/wp-slimstat-admin.php:684
115
  msgid ""
116
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
117
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
123
  "consulter <a target=\"_blank\" href=\"http://wordpress.org/extend/plugins/wp-"
124
  "slimstat/faq/\">les FAQ</a> pour plus d'informations."
125
 
126
+ #: ../../admin/wp-slimstat-admin.php:704
127
  msgid "Definitions"
128
  msgstr "Définitions"
129
 
130
+ #: ../../admin/wp-slimstat-admin.php:707
131
  msgid "Pageview"
132
  msgstr "Page vue"
133
 
134
+ #: ../../admin/wp-slimstat-admin.php:707
135
  msgid ""
136
  "A request to load a single HTML file (\"page\"). This should be contrasted "
137
  "with a \"hit\", which refers to a request for any file from a web server. WP "
142
  "d'un serveur Web. WP SlimStat enregistre une page vue chaque fois que le "
143
  "code de traçage est exécuté"
144
 
145
+ #: ../../admin/wp-slimstat-admin.php:708
146
  msgid "(Human) Visit"
147
  msgstr "Visiteurs humains"
148
 
149
+ #: ../../admin/wp-slimstat-admin.php:708
150
  msgid ""
151
  "A period of interaction between a visitor's browser and your website, ending "
152
  "when the browser is closed or when the user has been inactive on that site "
156
  "Web se terminant lorsque le navigateur est fermé ou lorsque l'utilisateur "
157
  "est inactif sur ce site depuis 30 minutes"
158
 
159
+ #: ../../admin/wp-slimstat-admin.php:709 ../../admin/view/index.php:140
160
+ #: ../../admin/view/right-now.php:149
161
  msgid "Known Visitor"
162
  msgstr "Visiteurs connus"
163
 
164
+ #: ../../admin/wp-slimstat-admin.php:709
165
  msgid ""
166
  "Any user who has left a comment on your blog, and is thus identified by "
167
  "Wordpress as a returning visitor"
169
  "Un utilisateur qui a laissé un commentaire sur votre blog et est ainsi "
170
  "identifié par Wordpress comme un visiteur qui a déjà visité votre site"
171
 
172
+ #: ../../admin/wp-slimstat-admin.php:710
173
  msgid "Unique IP"
174
  msgstr "IP uniques"
175
 
176
+ #: ../../admin/wp-slimstat-admin.php:710
177
  msgid ""
178
  "Used to differentiate between multiple requests to download a file from one "
179
  "internet address (IP) and requests originating from many distinct addresses; "
186
  "Internet de la provenance d'une consultation, elle est utile, mais pas "
187
  "parfaite"
188
 
189
+ #: ../../admin/wp-slimstat-admin.php:711 ../../admin/wp-slimstat-admin.php:753
190
+ #: ../../admin/view/right-now.php:99 ../../admin/view/wp-slimstat-db.php:79
191
  msgid "Originating IP"
192
  msgstr "IP d'origine"
193
 
194
+ #: ../../admin/wp-slimstat-admin.php:711
195
  msgid ""
196
  "the originating IP address of a client connecting to a web server through an "
197
  "HTTP proxy or load balancer"
199
  "l'adresse IP d'origine d'un client qui se connecte à un serveur Web via un "
200
  "proxy HTTP ou équilibreur de charge"
201
 
202
+ #: ../../admin/wp-slimstat-admin.php:712
203
  msgid "Direct Traffic"
204
  msgstr "Trafic direct"
205
 
206
+ #: ../../admin/wp-slimstat-admin.php:712
207
  msgid ""
208
  "All those people showing up to your Web site by typing in the URL of your "
209
  "Web site coming or from a bookmark; some people also call this \"default "
213
  "votre site Web ou qui viennent à partir d'un signet, certaines personnes "
214
  "appellent également cela \"trafic par défaut \" ou \"trafic ambiant \""
215
 
216
+ #: ../../admin/wp-slimstat-admin.php:713
217
  msgid "Search Engine"
218
  msgstr "Moteur de recherche"
219
 
220
+ #: ../../admin/wp-slimstat-admin.php:713
221
  msgid ""
222
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
223
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
225
  "Google, Yahoo, MSN, Ask, et autres; cet item comprendra à la fois votre "
226
  "trafic rémunéré (PPC/SEM) ainsi que votre trafic organique, prenez en note"
227
 
228
+ #: ../../admin/wp-slimstat-admin.php:714 ../../admin/wp-slimstat-admin.php:730
229
+ #: ../../admin/view/right-now.php:128 ../../admin/view/wp-slimstat-db.php:60
230
  msgid "Search Terms"
231
  msgstr "Termes de recherche"
232
 
233
+ #: ../../admin/wp-slimstat-admin.php:714 ../../admin/wp-slimstat-admin.php:730
234
  msgid "Keywords used by your visitors to find your website on a search engine"
235
  msgstr ""
236
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
237
  "de recherche"
238
 
239
+ #: ../../admin/wp-slimstat-admin.php:715
240
  msgid "SERP"
241
  msgstr "SERP"
242
 
243
+ #: ../../admin/wp-slimstat-admin.php:715
244
  msgid ""
245
  "Short for search engine results page, the Web page that a search engine "
246
  "returns with the results of its search. The value shown represents your rank "
250
  "recherche renvoie les résultats de sa recherche. La valeur indiquée "
251
  "correspond à votre classement (ou la position) dans la liste des résultats"
252
 
253
+ #: ../../admin/wp-slimstat-admin.php:716
254
  #: ../../admin/view/wp-slimstat-db.php:72
255
  msgid "User Agent"
256
  msgstr "User Agent"
257
 
258
+ #: ../../admin/wp-slimstat-admin.php:716
259
  msgid ""
260
  "Any program used for accessing a website; this includes browsers, robots, "
261
  "spiders and any other program that was used to retrieve information from the "
265
  "navigateurs, robots, spiders et tout autre programme qui a été utilisé pour "
266
  "extraire des informations du site"
267
 
268
+ #: ../../admin/wp-slimstat-admin.php:717
269
  #: ../../admin/view/wp-slimstat-db.php:76
270
  msgid "Outbound Link"
271
  msgstr "Lien sortant"
272
 
273
+ #: ../../admin/wp-slimstat-admin.php:717
274
  msgid ""
275
  "A link from one domain to another is said to be outbound from its source "
276
  "anchor and inbound to its target. This report lists all the links to other "
280
  "sa cible. Ce rapport répertorie tous les liens vers d'autres sites suivis "
281
  "par vos visiteurs."
282
 
283
+ #: ../../admin/wp-slimstat-admin.php:724
284
  msgid "Basic Filters"
285
  msgstr "Filtres de base"
286
 
287
+ #: ../../admin/wp-slimstat-admin.php:727
288
  #: ../../admin/view/wp-slimstat-db.php:57
289
  msgid "Browser"
290
  msgstr "Navigateur Web"
291
 
292
+ #: ../../admin/wp-slimstat-admin.php:727
293
  msgid "User agent (Firefox, Chrome, ...)"
294
  msgstr "User agent (Firefox, Chrome, ...)"
295
 
296
+ #: ../../admin/wp-slimstat-admin.php:728
297
  #: ../../admin/view/wp-slimstat-db.php:58
298
+ #: ../../admin/view/wp-slimstat-reports.php:469
299
  msgid "Country Code"
300
  msgstr "Code du pays"
301
 
302
+ #: ../../admin/wp-slimstat-admin.php:728
303
  msgid "2-letter code (us, ru, de, it, ...)"
304
  msgstr "code pays à 2 lettres (us, ru, de, it, ...)"
305
 
306
+ #: ../../admin/wp-slimstat-admin.php:729
307
  msgid "IP"
308
  msgstr "IP"
309
 
310
+ #: ../../admin/wp-slimstat-admin.php:729
311
  msgid "Visitor's public IP address"
312
  msgstr " Adresse IP publique du visiteur"
313
 
314
+ #: ../../admin/wp-slimstat-admin.php:731
315
  #: ../../admin/view/wp-slimstat-db.php:61
316
+ #: ../../admin/view/wp-slimstat-reports.php:481
317
  msgid "Language Code"
318
  msgstr "Code langue"
319
 
320
+ #: ../../admin/wp-slimstat-admin.php:731
321
  msgid ""
322
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
323
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
327
  "microsoft.com/en-us/library/ee825488(v=cs.20).aspx\">language culture page</"
328
  "a> (première colonne) pour plus d'informations"
329
 
330
+ #: ../../admin/wp-slimstat-admin.php:732
331
  #: ../../admin/view/wp-slimstat-db.php:62
332
  msgid "Operating System"
333
  msgstr "Système d'exploitation (OS)"
334
 
335
+ #: ../../admin/wp-slimstat-admin.php:732
336
  msgid ""
337
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
338
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
342
  "référez-vous à <a target=\"_blank\" href=\"http://php.net/manual/en/function."
343
  "get-browser.php\">cette page de manuel </a> pour plus d'informations"
344
 
345
+ #: ../../admin/wp-slimstat-admin.php:733
346
  #: ../../admin/view/wp-slimstat-db.php:63
347
  msgid "Permalink"
348
  msgstr "Permalien"
349
 
350
+ #: ../../admin/wp-slimstat-admin.php:733
351
  msgid "URL accessed on your site"
352
  msgstr "URL accessible sur votre site"
353
 
354
+ #: ../../admin/wp-slimstat-admin.php:734
355
  #: ../../admin/view/wp-slimstat-db.php:65
356
  msgid "Referer"
357
  msgstr "Référent"
358
 
359
+ #: ../../admin/wp-slimstat-admin.php:734
360
  msgid "Complete address of the referrer page"
361
  msgstr "Adresse complète dune lpage référente"
362
 
363
+ #: ../../admin/wp-slimstat-admin.php:735
364
  #: ../../admin/view/wp-slimstat-db.php:66
365
  msgid "Visitor's Name"
366
  msgstr "le nom des visiteurs"
367
 
368
+ #: ../../admin/wp-slimstat-admin.php:735
369
  msgid ""
370
  "Visitors' names according to the cookie set by Wordpress after they leave a "
371
  "comment"
373
  "Les noms des visiteurs selon le cookie enregistré par Wordpress, après avoir "
374
  "laissé un commentaire"
375
 
376
+ #: ../../admin/wp-slimstat-admin.php:743
377
  msgid "Advanced Filters"
378
  msgstr "Filtres Avancés"
379
 
380
+ #: ../../admin/wp-slimstat-admin.php:746
381
  #: ../../admin/view/wp-slimstat-db.php:70
382
  msgid "Browser Version"
383
  msgstr "Version de navigateur"
384
 
385
+ #: ../../admin/wp-slimstat-admin.php:746
386
  msgid "user agent version (9.0, 11, ...)"
387
  msgstr "user agent version (9.0, 11, ...)"
388
 
389
+ #: ../../admin/wp-slimstat-admin.php:747
390
  #: ../../admin/view/wp-slimstat-db.php:71
391
  msgid "Browser Type"
392
  msgstr "le type de navigateur Web"
393
 
394
+ #: ../../admin/wp-slimstat-admin.php:747
395
  msgid ""
396
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
397
  "all others"
399
  "1 = moteur de recherche, 2 = appareil mobile, 3 = lecteur de flux "
400
  "(syndication) , 0 = tous les autres"
401
 
402
+ #: ../../admin/wp-slimstat-admin.php:748
403
  #: ../../admin/view/wp-slimstat-db.php:73
404
  msgid "Color Depth"
405
  msgstr "Profondeur de couleur"
406
 
407
+ #: ../../admin/wp-slimstat-admin.php:748
408
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
409
  msgstr "couleur de la profondeur de l'écran du visiteur (8, 16, 24, ...)"
410
 
411
+ #: ../../admin/wp-slimstat-admin.php:749
412
  #: ../../admin/view/wp-slimstat-db.php:74
413
  msgid "CSS Version"
414
  msgstr "Version CSS"
415
 
416
+ #: ../../admin/wp-slimstat-admin.php:749
417
  msgid ""
418
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
419
  "values)"
421
  "quelle est la norme CSS supportée par ce navigateur (1, 2, 3 et d'autres "
422
  "valeurs entières)"
423
 
424
+ #: ../../admin/wp-slimstat-admin.php:750
425
  #: ../../admin/view/wp-slimstat-db.php:75
426
  msgid "Pageview Attributes"
427
  msgstr "l'attribut des Pages Vues"
428
 
429
+ #: ../../admin/wp-slimstat-admin.php:750
430
  msgid ""
431
  "this field is set to <em>[pre]</em> if the resource has been accessed "
432
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
437
  "Link_prefetching_FAQ\"> préchargement des liens</a> ou d'autres techniques "
438
  "similaires"
439
 
440
+ #: ../../admin/wp-slimstat-admin.php:751
441
  #: ../../admin/view/wp-slimstat-db.php:77
442
  msgid "Post Author"
443
  msgstr "l'auteur de l'article"
444
 
445
+ #: ../../admin/wp-slimstat-admin.php:751
446
  msgid "author associated to that post/page when the resource was accessed"
447
  msgstr "auteur associé à cet article/page lorsque la ressource est accessible"
448
 
449
+ #: ../../admin/wp-slimstat-admin.php:752
450
  #: ../../admin/view/wp-slimstat-db.php:78
451
  msgid "Post Category ID"
452
  msgstr "ID de la catégorie de l'article"
453
 
454
+ #: ../../admin/wp-slimstat-admin.php:752
455
  msgid "ID of the category/term associated to the resource, when available"
456
  msgstr "ID de la catégorie/terme associée à la ressource, lorsqu'il y en a"
457
 
458
+ #: ../../admin/wp-slimstat-admin.php:753
459
  msgid "visitor's originating IP address, if available"
460
  msgstr "adresse IP d'origine du visiteur, s'il est disponible"
461
 
462
+ #: ../../admin/wp-slimstat-admin.php:754
463
  #: ../../admin/view/wp-slimstat-db.php:80
464
  msgid "Resource Content Type"
465
  msgstr "le type de source de contenu"
466
 
467
+ #: ../../admin/wp-slimstat-admin.php:754
468
  msgid ""
469
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
470
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
478
  "\" href=\"http://codex.wordpress.org/Conditional_Tags\">Conditional Tags</a> "
479
  "pour plus d'informations"
480
 
481
+ #: ../../admin/wp-slimstat-admin.php:755
482
  #: ../../admin/view/wp-slimstat-db.php:82
483
  msgid "Screen Resolution"
484
  msgstr "la résolution de l'écran"
485
 
486
+ #: ../../admin/wp-slimstat-admin.php:755
487
  msgid "viewport width and height (1024x768, 800x600, ...)"
488
  msgstr "résolution de l'écran (1024x768, 800x600, ...)"
489
 
490
+ #: ../../admin/wp-slimstat-admin.php:756
491
  #: ../../admin/view/wp-slimstat-db.php:83
492
  msgid "Visit ID"
493
  msgstr "Visites ID"
494
 
495
+ #: ../../admin/wp-slimstat-admin.php:756
496
  msgid ""
497
  "generally used in conjunction with <em>is not empty</em>, identifies human "
498
  "visitors"
500
  "généralement utilisé en conjonction avec <em>n'est pas vide </em>, identifie "
501
  "les visiteurs humains"
502
 
503
+ #: ../../admin/wp-slimstat-admin.php:757
504
  msgid "Date Filters"
505
  msgstr "Filtres de dates"
506
 
507
+ #: ../../admin/wp-slimstat-admin.php:757
508
  msgid ""
509
  "you can specify the timeframe by entering a number in the <em>interval</em> "
510
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
515
  "ex : jour = 1, mois = 1, année = vide, intervalle = -1 fixera un filtre "
516
  "année à date)"
517
 
518
+ #: ../../admin/wp-slimstat-admin.php:758
519
  msgid "SERP Position"
520
  msgstr "Position SERP "
521
 
522
+ #: ../../admin/wp-slimstat-admin.php:758
523
  msgid ""
524
  "set the filter to Referer contains cd=N&, where N is the position you are "
525
  "looking for"
527
  "Réglez le filtre sur Référent contient cd=N&, où N est la position que vous "
528
  "recherchez"
529
 
530
+ #: ../../admin/wp-slimstat-admin.php:767
531
  msgid ""
532
  " And for keeping an eye on your visitors with <a href=\"http://slimstat."
533
  "getused.to.it/\">WP SlimStat</a>."
575
  msgid "Description"
576
  msgstr "Description"
577
 
578
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:18
579
  msgid "General"
580
  msgstr "Général"
581
 
582
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:44
583
  msgid "Views"
584
  msgstr "Vues"
585
 
586
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:64
587
  msgid "Filters"
588
  msgstr "Filtres"
589
 
590
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:128
591
  msgid "Permissions"
592
  msgstr "Permissions"
593
 
594
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:205
595
  msgid "Advanced"
596
  msgstr "Avancé"
597
 
598
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:221
599
  msgid "Maintenance"
600
  msgstr "Maintenance"
601
 
602
+ #: ../../admin/config/index.php:20 ../../admin/config/index.php:207
603
  msgid "Tracker"
604
  msgstr "Traçage"
605
 
606
+ #: ../../admin/config/index.php:21
607
  #, fuzzy
608
  msgid "Enable Tracking"
609
  msgstr "Activez le traçage"
610
 
611
+ #: ../../admin/config/index.php:21
612
  msgid ""
613
  "Turn the tracker on or off, but keep the reports accessible (which you would "
614
  "not have, if you just disabled the plugin)."
616
  "Activez ou désactivez le Traceur, mais conservez le rapport accessible (Ce "
617
  "que vous n'auriez pas si vous désactiviez le plugin.)"
618
 
619
+ #: ../../admin/config/index.php:22
620
  #, fuzzy
621
  msgid "Monitor Admin Pages"
622
  msgstr "Tracer Pages d'administrateur"
623
 
624
+ #: ../../admin/config/index.php:22
625
  #, fuzzy
626
  msgid "Enable this option to track your users' activity within the admin."
627
  msgstr ""
628
  "Activez cette option si vous voulez suivre l'activité de vos utilisateurs "
629
  "dans l'admin."
630
 
631
+ #: ../../admin/config/index.php:23
632
  msgid "Enable Spy Mode"
633
  msgstr "Activer le mode espion"
634
 
635
+ #: ../../admin/config/index.php:23
636
  #, fuzzy
637
  msgid ""
638
  "Collect information about screen resolutions, outbound links, downloads, "
645
  "des navigateurs seront suivis indépendamment de la valeur que vous "
646
  "définissez pour cette option."
647
 
648
+ #: ../../admin/config/index.php:24
649
  #, fuzzy
650
  msgid "Tracking Mode"
651
  msgstr "Traçage actif"
652
 
653
+ #: ../../admin/config/index.php:24
654
  #, fuzzy
655
  msgid ""
656
  "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
665
  "ignorés. Un second effet fera que <strong>la plupart</strong> des spammeurs, "
666
  "moteurs de recherche et autres robots ne seront pas suivis."
667
 
668
+ #: ../../admin/config/index.php:24
669
  #, fuzzy
670
  msgid "Javascript"
671
  msgstr "Mode Javascript"
672
 
673
+ #: ../../admin/config/index.php:24
674
  msgid "Server-side"
675
  msgstr "Côté serveur"
676
 
677
+ #: ../../admin/config/index.php:26
678
  msgid "WordPress Integration"
679
  msgstr "Intégration WordPress"
680
 
681
+ #: ../../admin/config/index.php:27
682
  msgid "Menu Position"
683
  msgstr "Position du Menu"
684
 
685
+ #: ../../admin/config/index.php:27
686
  #, fuzzy
687
  msgid ""
688
  "Choose between a standalone admin menu for WP SlimStat or a drop down in the "
692
  "autonome pour WP SlimStat ou un menu déroulant dans la barre "
693
  "d'administrateur."
694
 
695
+ #: ../../admin/config/index.php:27
696
  msgid "Side Menu"
697
  msgstr "Menu latéral"
698
 
699
+ #: ../../admin/config/index.php:27
700
  msgid "Admin Bar"
701
  msgstr "Barre d'Administration"
702
 
703
+ #: ../../admin/config/index.php:28
704
  #, fuzzy
705
  msgid "Add Stats to Posts"
706
  msgstr "Ajouter une colonne aux Articles"
707
 
708
+ #: ../../admin/config/index.php:28
709
  #, fuzzy
710
  msgid ""
711
  "Add a new column to the Edit Posts screen, with the number of hits per post."
713
  "Ajoute une nouvelle colonne à l'écran d'édition des articles, en indiquant "
714
  "le nombre de visites par article (peut ralentir le rendu des pages)."
715
 
716
+ #: ../../admin/config/index.php:30
717
  msgid "Database"
718
  msgstr "Base de données"
719
 
720
+ #: ../../admin/config/index.php:31
721
  msgid "Retain data for"
722
  msgstr "Conserver les données pour"
723
 
724
+ #: ../../admin/config/index.php:31
725
  msgid ""
726
  "Delete log entries older than the number of days specified here above. Enter "
727
  "<strong>0</strong> (number zero) if you want to preserve your data "
731
  "ci-dessus. Entrer <strong>0</strong> (number zero) si vous souhaitez "
732
  "conserver toutes vos données sans limites de durée."
733
 
734
+ #: ../../admin/config/index.php:31
735
  msgid "Next clean-up on"
736
  msgstr "Prochain nettoyage le"
737
 
738
+ #: ../../admin/config/index.php:31
739
  #, fuzzy, php-format
740
  msgid "Entries logged on or before %s will be permanently deleted."
741
  msgstr ""
742
  "Les données enregistrées le ou avant le %s seront détruites définitivement. "
743
 
744
+ #: ../../admin/config/index.php:31 ../../admin/view/index.php:77
745
  #: ../../admin/view/wp-slimstat-db.php:90
746
+ #: ../../admin/view/wp-slimstat-reports.php:747
747
  msgid "days"
748
  msgstr "jours"
749
 
750
+ #: ../../admin/config/index.php:46
751
  #, fuzzy
752
  msgid "Data and Formats"
753
  msgstr "Date et heure"
754
 
755
+ #: ../../admin/config/index.php:47
756
  msgid "Convert IP Addresses"
757
  msgstr "Convertir les adresses IP"
758
 
759
+ #: ../../admin/config/index.php:47
760
  msgid "Display provider names instead of IP addresses."
761
  msgstr "Afficher le nom du fournisseur d'accès au lieu de l'adresse IP."
762
 
763
+ #: ../../admin/config/index.php:48
764
  msgid "Number Format"
765
  msgstr "Format des nombres"
766
 
767
+ #: ../../admin/config/index.php:48
768
  #, fuzzy
769
  msgid ""
770
  "Choose the number format you want to use for your reports, European or "
773
  "Choisissez ce format numérique que vous souhaitez utiliser, européen ou "
774
  "américain."
775
 
776
+ #: ../../admin/config/index.php:49
777
  msgid "Show Display Name"
778
  msgstr "Voir Nom d'affichage"
779
 
780
+ #: ../../admin/config/index.php:49
781
  #, fuzzy
782
  msgid ""
783
  "By default, users are listed by their usernames. Use this option to "
786
  "Par défaut, les utilisateurs sont affichés par Nom d'utilisateur. Utilisez "
787
  "cette option pour basculer au Nom d'affichage."
788
 
789
+ #: ../../admin/config/index.php:50
790
  msgid "Show User Agent"
791
  msgstr "Voir User Agent"
792
 
793
+ #: ../../admin/config/index.php:50
794
  msgid ""
795
  "Choose if you want to see the browser name or a complete user agent string "
796
  "when hovering on browser icons."
798
  "Choisissez si vous voulez voir le nom du navigateur ou une chaîne complete "
799
  "de user agent lorsque vous survolez les icônes du navigateur."
800
 
801
+ #: ../../admin/config/index.php:51
802
  msgid "Show Titles"
803
  msgstr "Afficher les titres"
804
 
805
+ #: ../../admin/config/index.php:51
806
  msgid ""
807
  "WP SlimStat converts your permalinks into post and page titles. Disable this "
808
  "feature if you need to see the URL in your reports."
811
  "Désactivez cette fonction si vous souhaitez conserver l'URL dans de vos "
812
  "rapports."
813
 
814
+ #: ../../admin/config/index.php:53
815
  msgid "Functionality"
816
  msgstr "Fonctionnalité"
817
 
818
+ #: ../../admin/config/index.php:54
819
  msgid "Asynchronous Views"
820
  msgstr "Vues asynchrones"
821
 
822
+ #: ../../admin/config/index.php:54
823
  #, fuzzy
824
  msgid ""
825
  "Load all the reports dynamically. It makes the reports render faster, but it "
829
  "apparaitre les panneaux plus rapidement, mais augmente la charge sur votre "
830
  "serveur."
831
 
832
+ #: ../../admin/config/index.php:55
833
  msgid "Expand Details"
834
  msgstr "Développez les détails"
835
 
836
+ #: ../../admin/config/index.php:55
837
  msgid "Expand each row's details by default, insted of on mousehover."
838
  msgstr ""
839
  "Développe les détails de chaque ligne par défaut, plutôt que sur survol de "
840
  "souris."
841
 
842
+ #: ../../admin/config/index.php:56 ../../admin/config/index.php:60
843
  #, fuzzy
844
  msgid "Rows to Display"
845
  msgstr "Aucune donnée à afficher"
846
 
847
+ #: ../../admin/config/index.php:56
848
  msgid "Specify the number of items in each report."
849
  msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
850
 
851
+ #: ../../admin/config/index.php:58
852
  #, fuzzy
853
  msgid "Right Now Screen"
854
  msgstr "Maintenant"
855
 
856
+ #: ../../admin/config/index.php:59
857
  msgid "Live Stream"
858
  msgstr "Flux en temps réel (Flux live)"
859
 
860
+ #: ../../admin/config/index.php:59
861
  #, fuzzy
862
  msgid ""
863
  "Enable the Live view, which refreshes the Right Now screen every X seconds. "
866
  "Actualisez la vue 'Maintenant' toutes les X secondes. Zéro désactive cette "
867
  "fonctionnalité."
868
 
869
+ #: ../../admin/config/index.php:59 ../../admin/config/index.php:210
870
  msgid "seconds"
871
  msgstr "secondes"
872
 
873
+ #: ../../admin/config/index.php:60
874
  msgid "Specify the number of items in Right Now."
875
  msgstr ""
876
 
877
+ #: ../../admin/config/index.php:61
878
  #, fuzzy
879
  msgid "Right Now Extended"
880
  msgstr "Maintenant"
881
 
882
+ #: ../../admin/config/index.php:61
883
  #, fuzzy
884
  msgid ""
885
  "Choose if you want to see outbound links listed under Right Now. It might "
889
  "Maintenant. Cela ralentit l'affichage du rapport ou donne des erreurs sur "
890
  "les systèmes plus lents."
891
 
892
+ #: ../../admin/config/index.php:66
893
  #, fuzzy
894
  msgid "Visitors and Known Users"
895
  msgstr "Utilisateurs connus"
896
 
897
+ #: ../../admin/config/index.php:67
898
  #, fuzzy
899
  msgid "Track Registered Users"
900
  msgstr "Tracer les utilisateurs"
901
 
902
+ #: ../../admin/config/index.php:67
903
  #, fuzzy
904
  msgid "Enable this option to track logged in users."
905
  msgstr "Sélectionnez OUI si vous voulez suivre les utilisateurs connectés."
906
 
907
+ #: ../../admin/config/index.php:68
908
  #, fuzzy
909
  msgid "Blacklist by Username"
910
  msgstr "Adresse IP"
911
 
912
+ #: ../../admin/config/index.php:68
913
  #, fuzzy
914
  msgid ""
915
  "List all the usernames you don't want to track, separated by commas. Please "
920
  "séparés par des virgules. Veuillez noter que les espaces <em>ne sont pas</"
921
  "em> ignorés et que les noms d'utilisateurs sont sensibles à la casse."
922
 
923
+ #: ../../admin/config/index.php:69
924
  #, fuzzy
925
  msgid "Blacklist by IP Address"
926
  msgstr "Adresse IP"
927
 
928
+ #: ../../admin/config/index.php:69
929
  #, fuzzy
930
  msgid ""
931
  "List all the IP addresses you don't want to track, separated by commas. Each "
941
  "<em>192.168.0.0/24</em>). Si le format est incorrect, WP SlimStat ne peut "
942
  "pas suivre correctement les pages vues."
943
 
944
+ #: ../../admin/config/index.php:70
945
  #, fuzzy
946
  msgid "Blacklist by Capability"
947
  msgstr "Utilisateurs par Capacité"
948
 
949
+ #: ../../admin/config/index.php:70
950
  msgid ""
951
  "Users having at least one of the <a href='http://codex.wordpress.org/"
952
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
956
  "Roles_and_Capabilities' target='_new'>capacités</a> listées ci-dessous ne "
957
  "seront pas suivis. Les capacités sont insensibles à la casse."
958
 
959
+ #: ../../admin/config/index.php:72
960
  msgid "Profiling"
961
  msgstr "Profiling"
962
 
963
+ #: ../../admin/config/index.php:73
964
  msgid "Ignore Spammers"
965
  msgstr "Ignorer les spammeurs"
966
 
967
+ #: ../../admin/config/index.php:73
968
  #, fuzzy
969
  msgid ""
970
  "Enable this option if you don't want to track visits from users identified "
977
  "Akismet). Les visites de personnes dont les commentaires sont ensuite marqué "
978
  "comme spam par vous, seront également supprimées de la base."
979
 
980
+ #: ../../admin/config/index.php:74
981
  msgid "Permalinks"
982
  msgstr "Rermaliens"
983
 
984
+ #: ../../admin/config/index.php:74
985
  #, fuzzy
986
  msgid ""
987
  "List all the URLs on your website that you don't want to track, separated by "
1000
  "<code>/abo*t</code> correspondra /aboundant et /about, <code>/abo!t </code > "
1001
  "correspondra /about et /abort. Les chaînes sont insensibles à la casse."
1002
 
1003
+ #: ../../admin/config/index.php:75
1004
  msgid "Countries"
1005
  msgstr "Pays"
1006
 
1007
+ #: ../../admin/config/index.php:75
1008
  msgid ""
1009
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
1010
  "track, separated by commas."
1012
  "Listez tous les codes de pays (p. ex.: <code>en-us, it, es </code>) que vous "
1013
  "ne voulez pas suivre, séparées par des virgules."
1014
 
1015
+ #: ../../admin/config/index.php:76
1016
  msgid "User Agents"
1017
  msgstr "User Agents"
1018
 
1019
+ #: ../../admin/config/index.php:76
1020
  #, fuzzy
1021
  msgid ""
1022
  "Browsers (user agents) you don't want to track, separated by commas. You can "
1035
  "correspondra à Chrome et Chromium, <code>IE/!.0</Code> correspondra IE/7.0 "
1036
  "et IE/8.0. Les chaînes sont insensibles à la casse."
1037
 
1038
+ #: ../../admin/config/index.php:77
1039
  msgid "Referring Sites"
1040
  msgstr "Sites référents"
1041
 
1042
+ #: ../../admin/config/index.php:77
1043
  #, fuzzy
1044
  msgid ""
1045
  "Referring URLs that you don't want to track, separated by commas: "
1057
  "soit un caractère générique ou le protocole que vous voulez filtrer "
1058
  "(http://, https://)."
1059
 
1060
+ #: ../../admin/config/index.php:79 ../../admin/config/index.php:215
1061
  msgid "Miscellaneous"
1062
  msgstr "Divers"
1063
 
1064
+ #: ../../admin/config/index.php:80
1065
  msgid "Enable Privacy Mode"
1066
  msgstr "Activer le mode privé"
1067
 
1068
+ #: ../../admin/config/index.php:80
1069
  #, fuzzy
1070
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
1071
  msgstr ""
1072
  "Cette option masque le dernier octet de l'adresse IP de vos visiteurs afin "
1073
  "de se conformer aux lois de confidentialité européennes."
1074
 
1075
+ #: ../../admin/config/index.php:81
1076
  msgid "Ignore Prefetch Requests"
1077
  msgstr ""
1078
 
1079
+ #: ../../admin/config/index.php:81
1080
  #, fuzzy
1081
  msgid ""
1082
  "Prevent WP SlimStat from tracking pageviews generated by Firefox's <a "
1087
  "vues générées par Firefox <a href='https://developer.mozilla.org/en/"
1088
  "Link_prefetching_FAQ' target='_blank'>Link Prefetching functionality</a>."
1089
 
1090
+ #: ../../admin/config/index.php:97
1091
  msgid "Ignore users (username not found)"
1092
  msgstr "Utilisateur inconnu (nom d'utilisateur non trouvé)"
1093
 
1094
+ #: ../../admin/config/index.php:120
1095
  msgid ""
1096
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
1097
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
1100
  "Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
1101
  "d'informations"
1102
 
1103
+ #: ../../admin/config/index.php:130
1104
  #, fuzzy
1105
  msgid "Reports"
1106
  msgstr "Rapports personnalisés"
1107
 
1108
+ #: ../../admin/config/index.php:131
1109
  msgid "Restrict Authors"
1110
  msgstr "Restriction Auteurs"
1111
 
1112
+ #: ../../admin/config/index.php:131
1113
  msgid ""
1114
  "Enable this option if you want your authours to only see stats related to "
1115
  "their own content."
1117
  "Activez cette option si vous voulez que vos auteurs ne voient que les "
1118
  "statistiques relatives à leur propre contenu."
1119
 
1120
+ #: ../../admin/config/index.php:132 ../../admin/config/index.php:136
1121
  #, fuzzy
1122
  msgid "Capability"
1123
  msgstr "Capacité de voir"
1124
 
1125
+ #: ../../admin/config/index.php:132
1126
  #, fuzzy
1127
  msgid ""
1128
  "Specify the minimum <a href='http://codex.wordpress.org/"
1139
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
1140
  "Dans ce cas, la liste a la priorité sur la capacité."
1141
 
1142
+ #: ../../admin/config/index.php:133 ../../admin/config/index.php:137
1143
  msgid "Whitelist"
1144
  msgstr "Liste blanche"
1145
 
1146
+ #: ../../admin/config/index.php:133
1147
  #, fuzzy
1148
  msgid ""
1149
  "List all the users who should have access to the reports, separated by "
1156
  "vide, <strong>tous vos utilisateurs</strong> sont autorisés à accéder. Les "
1157
  "noms d'utilisateurs sont sensibles à la casse."
1158
 
1159
+ #: ../../admin/config/index.php:136
1160
  #, fuzzy
1161
  msgid ""
1162
  "Specify the minimum <a href='http://codex.wordpress.org/"
1171
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
1172
  "Dans ce cas, la liste a la priorité sur la capacité."
1173
 
1174
+ #: ../../admin/config/index.php:137
1175
  #, fuzzy
1176
  msgid ""
1177
  "List all the users who can edit these options, separated by commas. Please "
1186
  "héritent automatiquement de l '\"Accès en lecture \"pour les rapports. Les "
1187
  "noms d'utilisateurs sont sensibles à la casse."
1188
 
1189
+ #: ../../admin/config/index.php:153
1190
  msgid "Read access: username not found"
1191
  msgstr "Accès lecture : username inéxistant"
1192
 
1193
+ #: ../../admin/config/index.php:166 ../../admin/config/index.php:197
1194
  msgid ""
1195
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
1196
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
1200
  "org/Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
1201
  "d'informations"
1202
 
1203
+ #: ../../admin/config/index.php:184
1204
  msgid "Config access: username not found"
1205
  msgstr "Accès configuration : username inéxistant"
1206
 
1207
+ #: ../../admin/config/index.php:208
1208
  msgid "Detect Smoothing"
1209
  msgstr "Détecter Lissage"
1210
 
1211
+ #: ../../admin/config/index.php:208
1212
  #, fuzzy
1213
  msgid ""
1214
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
1218
  "supporte l'anti-crénelage (lissage des polices). Si les Capacités du "
1219
  "navigateur ne sont pas tracées, ce paramètre est ignoré."
1220
 
1221
+ #: ../../admin/config/index.php:209
1222
  msgid "Track Outbound Clicks"
1223
  msgstr "Tracer les liens sortants"
1224
 
1225
+ #: ../../admin/config/index.php:209
1226
  msgid ""
1227
  "Track when your visitors click on link to external websites. This option "
1228
  "required Spy Mode to be enabled."
1230
  "Détectez vos visiteurs cliquant sur des liens pointant sur des sites "
1231
  "externes. Cette fonctionnalité nécéssite que le Mode Espion soit activé."
1232
 
1233
+ #: ../../admin/config/index.php:210
1234
  msgid "Session Duration"
1235
  msgstr "Durée session"
1236
 
1237
+ #: ../../admin/config/index.php:210
1238
  #, fuzzy
1239
  msgid ""
1240
  "How many seconds should a human session last? Google Analytics sets it to "
1243
  "Définit le nombre de secondes qu'une visite devrait durer. Google Analytics "
1244
  "fixe cette durée à 1800 secondes."
1245
 
1246
+ #: ../../admin/config/index.php:211
1247
  msgid "Extend Session"
1248
  msgstr "Etendre la session"
1249
 
1250
+ #: ../../admin/config/index.php:211
1251
  #, fuzzy
1252
  msgid "Extend the duration of a session each time the user visits a new page."
1253
  msgstr ""
1254
  "Prolonge la durée d'une session à chaque fois que l'utilisateur visite une "
1255
  "page, par le nombre de secondes défini ci-dessus."
1256
 
1257
+ #: ../../admin/config/index.php:212
1258
  msgid "Enable CDN"
1259
  msgstr "Activer CDN"
1260
 
1261
+ #: ../../admin/config/index.php:212
1262
  #, fuzzy
1263
  msgid ""
1264
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
1269
  "CDN, en servant le traqueur Javascript WP SlimStat à partir de leur réseau "
1270
  "rapide et fiable."
1271
 
1272
+ #: ../../admin/config/index.php:213
1273
  msgid "Extensions to Track"
1274
  msgstr "Extensions du traçage"
1275
 
1276
+ #: ../../admin/config/index.php:213
1277
  #, fuzzy
1278
  msgid ""
1279
  "List all the file extensions that you want to be treated as Downloads. "
1289
  "comme liens sortants (et suivis en tant que tel), si leur extension "
1290
  "correspond à l'une de celles qui sont énumérées ci-dessous."
1291
 
1292
+ #: ../../admin/config/index.php:216
1293
  msgid "IP Lookup"
1294
  msgstr "Recherche d'IP"
1295
 
1296
+ #: ../../admin/config/index.php:216
1297
  msgid "Customize the Geolocation service to be used in the reports."
1298
  msgstr ""
1299
  "Personnaliser le service de Géolocalisation à utiliser dans les rapports."
1300
 
1301
+ #: ../../admin/config/index.php:217
1302
  msgid "Custom CSS"
1303
  msgstr "Personnaliser le style CSS"
1304
 
1305
+ #: ../../admin/config/index.php:217
1306
  msgid ""
1307
  "Paste here your custom stylesheet to personalize the way your reports look. "
1308
  "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1314
  "target='_blank'>Consultez les FAQs</a> pour plus d'informations sur la façon "
1315
  "d'utiliser cette fonctionnalité."
1316
 
1317
+ #: ../../admin/config/index.php:218
1318
  msgid "Enable UAN"
1319
  msgstr "Activer UAN"
1320
 
1321
+ #: ../../admin/config/index.php:218
1322
  msgid ""
1323
  "Send anonymous data about unknown user agents to our server for analysis. "
1324
  "This allows us to contribute to the <a href='http://browscap.org/' "
3043
 
3044
  # Unknown
3045
  #: ../../admin/lang/dynamic_strings.php:298
3046
+ #: ../../admin/view/wp-slimstat-reports.php:482
3047
  msgid "l-"
3048
  msgstr "Inconnue"
3049
 
3061
  msgid "c-xy"
3062
  msgstr "Local"
3063
 
3064
+ #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:768
3065
  msgid "Today"
3066
  msgstr "Aujourd'hui"
3067
 
3068
+ #: ../../admin/view/index.php:49 ../../admin/view/wp-slimstat-reports.php:769
3069
  msgid "Yesterday"
3070
  msgstr "Hier"
3071
 
3085
 
3086
  #: ../../admin/view/index.php:53
3087
  #, fuzzy
3088
+ msgid "This Year So Far"
3089
  msgstr "Année"
3090
 
3091
  #: ../../admin/view/index.php:54
3132
  "mon <a href=\"http://lab.duechiacchiere.it/\" target=\"_blank\">forum "
3133
  "d'aide</a>."
3134
 
3135
+ #: ../../admin/view/index.php:133 ../../admin/view/wp-slimstat-reports.php:759
3136
+ #: ../../admin/view/wp-slimstat-reports.php:861
3137
+ #: ../../admin/view/wp-slimstat-reports.php:1145
3138
  msgid "Pageviews"
3139
  msgstr "Pages vues"
3140
 
3155
  "Jetez un coup d'oeil à ce que les visiteurs humains font sur votre site"
3156
 
3157
  #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
3158
+ #: ../../admin/view/index.php:184 ../../admin/view/right-now.php:147
3159
  msgid "Color codes"
3160
  msgstr "Codes couleur"
3161
 
3300
  msgstr "Lecteur de Flux (Syndication)"
3301
 
3302
  #: ../../admin/view/right-now.php:28
3303
+ #: ../../admin/view/wp-slimstat-reports.php:425
3304
+ #: ../../admin/view/wp-slimstat-reports.php:670
3305
  msgid "No data to display"
3306
  msgstr "Aucune donnée à afficher"
3307
 
3308
  # Unknown
3309
+ #: ../../admin/view/right-now.php:54
3310
+ #: ../../admin/view/wp-slimstat-reports.php:470
3311
+ #: ../../admin/view/wp-slimstat-reports.php:708
3312
+ #: ../../admin/view/wp-slimstat-reports.php:1032
3313
  msgid "c-"
3314
  msgstr "Inconnu"
3315
 
3316
+ #: ../../admin/view/right-now.php:120
3317
+ #: ../../admin/view/wp-slimstat-reports.php:524
3318
+ #: ../../admin/view/wp-slimstat-reports.php:528
3319
+ #: ../../admin/view/wp-slimstat-reports.php:690
3320
+ #: ../../admin/view/wp-slimstat-reports.php:728
3321
  msgid "Open this URL in a new window"
3322
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
3323
 
3324
+ #: ../../admin/view/right-now.php:123
3325
  msgid "Local search results page"
3326
  msgstr "Page de résultat d'une recherche locale"
3327
 
3328
+ #: ../../admin/view/right-now.php:130
3329
  msgid "Open this referrer in a new window"
3330
  msgstr "Ouvrir ce référent dans une nouvelle fenêtre"
3331
 
3332
+ #: ../../admin/view/right-now.php:131
3333
  msgid "Open this outbound link in a new window"
3334
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
3335
 
3336
+ #: ../../admin/view/right-now.php:132
3337
  #, fuzzy
3338
  msgid "Date and Time"
3339
  msgstr "Date/Heure"
3340
 
3341
+ #: ../../admin/view/right-now.php:133
3342
  #, fuzzy
3343
  msgid "Content Type"
3344
  msgstr "Contenu"
3345
 
3346
+ #: ../../admin/view/right-now.php:148
3347
  msgid "Visit with keywords"
3348
  msgstr "Visite avec mots clés"
3349
 
3350
+ #: ../../admin/view/right-now.php:150
3351
  #, fuzzy
3352
  msgid "Known User"
3353
  msgstr "Utilisateurs connus"
3354
 
3355
+ #: ../../admin/view/right-now.php:151
3356
  #, fuzzy
3357
  msgid "Human Visitor"
3358
  msgstr "Visiteurs humains"
3359
 
3360
+ #: ../../admin/view/right-now.php:152
3361
  msgid "Bot or Crawler"
3362
  msgstr "Robot ou Crawler"
3363
 
3714
  msgid "Monthly %s"
3715
  msgstr "%s par Mois"
3716
 
3717
+ #: ../../admin/view/wp-slimstat-reports.php:452
3718
  msgid "Category ID"
3719
  msgstr "l'ID de la catégorie de l'article"
3720
 
3721
+ #: ../../admin/view/wp-slimstat-reports.php:485
3722
  msgid "OS Code"
3723
  msgstr "Code OS "
3724
 
3725
+ #: ../../admin/view/wp-slimstat-reports.php:495
3726
  msgid "Referrer"
3727
  msgstr "Référent"
3728
 
3729
+ #: ../../admin/view/wp-slimstat-reports.php:519
3730
+ #: ../../admin/view/wp-slimstat-reports.php:796
3731
+ #: ../../admin/view/wp-slimstat-reports.php:805
3732
+ #: ../../admin/view/wp-slimstat-reports.php:811
3733
+ #: ../../admin/view/wp-slimstat-reports.php:817
3734
+ #: ../../admin/view/wp-slimstat-reports.php:823
3735
+ #: ../../admin/view/wp-slimstat-reports.php:829
3736
+ #: ../../admin/view/wp-slimstat-reports.php:835
3737
+ #: ../../admin/view/wp-slimstat-reports.php:841
3738
  msgid "Hits"
3739
  msgstr "Hits"
3740
 
3741
+ #: ../../admin/view/wp-slimstat-reports.php:687
3742
  msgid "Search for"
3743
  msgstr "Recherche pour"
3744
 
3745
+ #: ../../admin/view/wp-slimstat-reports.php:718
3746
+ #: ../../admin/view/wp-slimstat-reports.php:728
3747
  msgid "Source"
3748
  msgstr "Source"
3749
 
3750
+ #: ../../admin/view/wp-slimstat-reports.php:720
3751
  msgid "Keywords"
3752
  msgstr "les mots clés"
3753
 
3754
+ #: ../../admin/view/wp-slimstat-reports.php:728
3755
  #, php-format
3756
  msgid "Filter results where resource equals %s"
3757
  msgstr "Filtrer les résultats où la ressource égale %s"
3758
 
3759
+ #: ../../admin/view/wp-slimstat-reports.php:742
3760
  msgid "Total Pageviews"
3761
  msgstr "Total Pages Vues"
3762
 
3763
+ #: ../../admin/view/wp-slimstat-reports.php:743
3764
  msgid "DB Size"
3765
  msgstr "Taille de la base de données"
3766
 
3767
+ #: ../../admin/view/wp-slimstat-reports.php:744
3768
  msgid "Tracking Active"
3769
  msgstr "Traçage actif"
3770
 
3771
+ #: ../../admin/view/wp-slimstat-reports.php:745
3772
  msgid "Javascript Mode"
3773
  msgstr "Mode Javascript"
3774
 
3775
+ #: ../../admin/view/wp-slimstat-reports.php:746
3776
  msgid "Tracking Browser Caps"
3777
  msgstr "Traçage Capacités Navigateurs"
3778
 
3779
+ #: ../../admin/view/wp-slimstat-reports.php:747
3780
  msgid "Auto purge"
3781
  msgstr "Purge automatique"
3782
 
3783
+ #: ../../admin/view/wp-slimstat-reports.php:748
3784
  msgid "Oldest pageview"
3785
  msgstr "Plus ancienne page vue"
3786
 
3787
+ #: ../../admin/view/wp-slimstat-reports.php:748
3788
  msgid "No visits"
3789
  msgstr "Aucune visite"
3790
 
3791
+ #: ../../admin/view/wp-slimstat-reports.php:758
3792
+ #: ../../admin/view/wp-slimstat-reports.php:860
3793
  msgid ""
3794
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
3795
  "time the tracking code is executed."
3797
  "Une demande pour charger un fichier HTML. WP SlimStat enregistre un \"pages "
3798
  "vues \" chaque fois que le code de traçage est exécuté."
3799
 
3800
+ #: ../../admin/view/wp-slimstat-reports.php:760
3801
  msgid "How many pages have been visited on average during the current period."
3802
  msgstr ""
3803
  "Combien de pages ont été visitées en moyenne au cours de la période en cours."
3804
 
3805
+ #: ../../admin/view/wp-slimstat-reports.php:761
3806
  msgid "Average Pageviews"
3807
  msgstr "Nombre de pages vues en moyenne"
3808
 
3809
+ #: ../../admin/view/wp-slimstat-reports.php:762
3810
  msgid ""
3811
  "Visitors who landed on your site after searching for a keyword on Google, "
3812
  "Yahoo, etc."
3814
  "Visiteurs qui sont arrivés sur votre site après une recherche par mots clés "
3815
  "sur Google, Yahoo, etc"
3816
 
3817
+ #: ../../admin/view/wp-slimstat-reports.php:763
3818
  msgid "From Search Results"
3819
  msgstr "Résultat de recherches"
3820
 
3821
+ #: ../../admin/view/wp-slimstat-reports.php:764
3822
  msgid ""
3823
  "Used to differentiate between multiple requests to download a file from one "
3824
  "internet address (IP) and requests originating from many distinct addresses"
3827
  "fichier à partir d'une adresse Internet (IP) unique et les demandes "
3828
  "provenant de plusieurs adresses distinctes"
3829
 
3830
+ #: ../../admin/view/wp-slimstat-reports.php:765
3831
+ #: ../../admin/view/wp-slimstat-reports.php:780
3832
+ #: ../../admin/view/wp-slimstat-reports.php:1145
3833
+ #: ../../admin/view/wp-slimstat-reports.php:1149
3834
+ #: ../../admin/view/wp-slimstat-reports.php:1153
3835
  msgid "Unique IPs"
3836
  msgstr "IPs uniques"
3837
 
3838
+ #: ../../admin/view/wp-slimstat-reports.php:766
3839
  msgid "Last 5 minutes"
3840
  msgstr "5 dernières minutes"
3841
 
3842
+ #: ../../admin/view/wp-slimstat-reports.php:767
3843
  msgid "Last 30 minutes"
3844
  msgstr "30 dernières minutes"
3845
 
3846
+ #: ../../admin/view/wp-slimstat-reports.php:777
3847
  msgid ""
3848
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3849
  "multiple times if they perform multiple visits."
3852
  "reviennent sont comptés plusieurs fois s'ils effectuent des visites "
3853
  "multiples."
3854
 
3855
+ #: ../../admin/view/wp-slimstat-reports.php:778
3856
  msgid "Human visits"
3857
  msgstr "Visiteurs humains"
3858
 
3859
+ #: ../../admin/view/wp-slimstat-reports.php:779
3860
  msgid "It includes only traffic generated by human visitors."
3861
  msgstr "Cela ne comprend que les visites dites humaines."
3862
 
3863
+ #: ../../admin/view/wp-slimstat-reports.php:781
3864
+ #: ../../admin/view/wp-slimstat-reports.php:872
3865
  msgid ""
3866
  "Percentage of single-page visits, i.e. visits in which the person left your "
3867
  "site from the entrance page."
3869
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
3870
  "desquelles la personne a quitté votre site dès la page d'entrée."
3871
 
3872
+ #: ../../admin/view/wp-slimstat-reports.php:782
3873
  msgid "Bounce rate"
3874
  msgstr "Taux de rebond"
3875
 
3876
+ #: ../../admin/view/wp-slimstat-reports.php:783
3877
  msgid "Visitors who had previously left a comment on your blog."
3878
  msgstr "Visiteurs qui ont déjà laissé un commentaire sur votre blog."
3879
 
3880
+ #: ../../admin/view/wp-slimstat-reports.php:784
3881
  msgid "Known visitors"
3882
  msgstr "Visiteurs connus"
3883
 
3884
+ #: ../../admin/view/wp-slimstat-reports.php:785
3885
  msgid "Human users who visited your site only once."
3886
  msgstr "Visiteurs humains qui ont visité votre site une seule fois."
3887
 
3888
+ #: ../../admin/view/wp-slimstat-reports.php:786
3889
  msgid "New visitors"
3890
  msgstr "Nouveaux visiteurs"
3891
 
3892
+ #: ../../admin/view/wp-slimstat-reports.php:787
3893
  msgid "Bots"
3894
  msgstr "Robots"
3895
 
3896
+ #: ../../admin/view/wp-slimstat-reports.php:788
3897
  msgid "Pages per visit"
3898
  msgstr "Pages vues par visite"
3899
 
3900
+ #: ../../admin/view/wp-slimstat-reports.php:789
3901
+ #: ../../admin/view/wp-slimstat-reports.php:1158
3902
  msgid "Longest visit"
3903
  msgstr "Visite la plus longue"
3904
 
3905
+ #: ../../admin/view/wp-slimstat-reports.php:789
3906
  msgid "hits"
3907
  msgstr "hits"
3908
 
3909
+ #: ../../admin/view/wp-slimstat-reports.php:807
3910
  msgid "0 - 30 seconds"
3911
  msgstr "0 - 30 secondes"
3912
 
3913
+ #: ../../admin/view/wp-slimstat-reports.php:813
3914
  msgid "31 - 60 seconds"
3915
  msgstr "31 - 60 secondes"
3916
 
3917
+ #: ../../admin/view/wp-slimstat-reports.php:819
3918
  msgid "1 - 3 minutes"
3919
  msgstr "1 - 3 minutes"
3920
 
3921
+ #: ../../admin/view/wp-slimstat-reports.php:825
3922
  msgid "3 - 5 minutes"
3923
  msgstr "3 - 5 minutes"
3924
 
3925
+ #: ../../admin/view/wp-slimstat-reports.php:831
3926
  msgid "5 - 7 minutes"
3927
  msgstr "5 - 7 minutes"
3928
 
3929
+ #: ../../admin/view/wp-slimstat-reports.php:837
3930
  msgid "7 - 10 minutes"
3931
  msgstr "7 - 10 minutes"
3932
 
3933
+ #: ../../admin/view/wp-slimstat-reports.php:843
3934
  msgid "More than 10 minutes"
3935
  msgstr "Plus de 10 minutes"
3936
 
3937
+ #: ../../admin/view/wp-slimstat-reports.php:852
3938
  msgid "Average time on site"
3939
  msgstr "Moyenne du temps passé sur le site"
3940
 
3941
+ #: ../../admin/view/wp-slimstat-reports.php:862
3942
  msgid ""
3943
  "A referrer (or referring site) is the site that a visitor previously visited "
3944
  "before following a link to your site."
3946
  "Un référent (ou site référent) est le site que le visiteur a visité avant de "
3947
  "suivre un lien vers votre site."
3948
 
3949
+ #: ../../admin/view/wp-slimstat-reports.php:863
3950
  msgid "Unique Referrers"
3951
  msgstr "Référents uniques"
3952
 
3953
+ #: ../../admin/view/wp-slimstat-reports.php:864
3954
  msgid ""
3955
  "Visitors who visited the site by typing the URL directly into their browser. "
3956
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
3963
  "courriels non marquées, ou des liens à partir de documents qui ne "
3964
  "contiennent pas de variables de suivi."
3965
 
3966
+ #: ../../admin/view/wp-slimstat-reports.php:865
3967
  msgid "Direct Pageviews"
3968
  msgstr "Pages Vues Directes"
3969
 
3970
+ #: ../../admin/view/wp-slimstat-reports.php:866
3971
  msgid ""
3972
  "Visitors who came to your site via searches on Google or some other search "
3973
  "engine."
3975
  "Visiteurs qui sont venus sur le site via un moteur de recherche comme Google "
3976
  "ou autre."
3977
 
3978
+ #: ../../admin/view/wp-slimstat-reports.php:867
3979
  msgid "From a search result"
3980
  msgstr "Depuis un moteur de recherche"
3981
 
3982
+ #: ../../admin/view/wp-slimstat-reports.php:868
3983
  msgid ""
3984
  "The first page that a user views during a session. This is also known as the "
3985
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
3991
  "mots clés 'Brooklyn Office Space' et arrive sur votre page d'accueil, elle "
3992
  "sera comptée (pour cette visite) comme la page d'entrée."
3993
 
3994
+ #: ../../admin/view/wp-slimstat-reports.php:869
3995
  msgid "Unique Landing Pages"
3996
  msgstr "Pages d'Entrées Uniques"
3997
 
3998
+ #: ../../admin/view/wp-slimstat-reports.php:870
3999
  msgid "Number of single-page visits to your site over the selected period."
4000
  msgstr ""
4001
  "Nombre de visites d'une seule page de votre site au cours de la période "
4002
  "sélectionnée."
4003
 
4004
+ #: ../../admin/view/wp-slimstat-reports.php:871
4005
  msgid "Bounce Pages"
4006
  msgstr "Pages de Rebonds"
4007
 
4008
+ #: ../../admin/view/wp-slimstat-reports.php:873
4009
  msgid "New Visitors Rate"
4010
  msgstr "Taux de Nouveaux Visiteurs"
4011
 
4012
+ #: ../../admin/view/wp-slimstat-reports.php:874
4013
  msgid ""
4014
  "Visitors who visited the site in the last 5 minutes coming from a search "
4015
  "engine."
4017
  "Visiteurs qui ont visité le site dans les 5 dernières visites, provenant "
4018
  "d'un moteur de recherche."
4019
 
4020
+ #: ../../admin/view/wp-slimstat-reports.php:875
4021
  msgid "Currently from search engines"
4022
  msgstr "Moteurs de recherche récents"
4023
 
4024
+ #: ../../admin/view/wp-slimstat-reports.php:943
4025
  msgid "Number of pages in your site included in Google's index."
4026
  msgstr "Nombre de pages de votre site indexées par Google."
4027
 
4028
+ #: ../../admin/view/wp-slimstat-reports.php:944
4029
  msgid "Google Index"
4030
  msgstr "Index Google"
4031
 
4032
+ #: ../../admin/view/wp-slimstat-reports.php:945
4033
  msgid "Number of pages, according to Google, that link back to your site."
4034
  msgstr ""
4035
  "Nombre de pages qui pointent sur votre site, d'après les informations "
4036
  "fournies par Google."
4037
 
4038
+ #: ../../admin/view/wp-slimstat-reports.php:946
4039
  msgid "Google Backlinks"
4040
  msgstr "Backlinks Google"
4041
 
4042
+ #: ../../admin/view/wp-slimstat-reports.php:947
4043
  msgid ""
4044
  "How many times the Facebook Like button has been approximately clicked on "
4045
  "your site."
4046
  msgstr ""
4047
  "Nombre de fois que votre site a été Liké par quelqu'un sur le réseau social."
4048
 
4049
+ #: ../../admin/view/wp-slimstat-reports.php:948
4050
  msgid "Facebook Likes"
4051
  msgstr "\"J'aime\" Facebook"
4052
 
4053
+ #: ../../admin/view/wp-slimstat-reports.php:949
4054
  msgid ""
4055
  "How many times your site has been shared by someone on the social network."
4056
  msgstr ""
4057
  "Nombre de fois que votre site a été partagé par quelqu'un sur le réseau "
4058
  "social."
4059
 
4060
+ #: ../../admin/view/wp-slimstat-reports.php:950
4061
  msgid "Facebook Shares"
4062
  msgstr "Partages Facebook"
4063
 
4064
+ #: ../../admin/view/wp-slimstat-reports.php:951
4065
  msgid "How many times links to your website have been clicked on Facebook."
4066
  msgstr "Nombre de fois que vos liens ont été activés sur Facebook"
4067
 
4068
+ #: ../../admin/view/wp-slimstat-reports.php:952
4069
  msgid "Facebook Clicks"
4070
  msgstr "Clicks Facebook"
4071
 
4072
+ #: ../../admin/view/wp-slimstat-reports.php:953
4073
  msgid ""
4074
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
4075
  "traffic data."
4077
  "Alexa est une filiale d'Amazon.com qui fournit des données commerciales "
4078
  "concernant le trafic web."
4079
 
4080
+ #: ../../admin/view/wp-slimstat-reports.php:954
4081
  msgid "Alexa World Rank"
4082
  msgstr "Alexa, Classement mondial"
4083
 
4084
+ #: ../../admin/view/wp-slimstat-reports.php:955
4085
  msgid "Alexa Country Rank"
4086
  msgstr "Alexa, Classement par pays"
4087
 
4088
+ #: ../../admin/view/wp-slimstat-reports.php:956
4089
  msgid "Alexa Popularity"
4090
  msgstr "Alexa, Popularité"
4091
 
4092
+ #: ../../admin/view/wp-slimstat-reports.php:973
4093
  msgid "Bing Test"
4094
  msgstr "Test Bing"
4095
 
4096
+ #: ../../admin/view/wp-slimstat-reports.php:974
4097
  msgid "AntiVirus Scan"
4098
  msgstr "Scan Antivirus"
4099
 
4100
+ #: ../../admin/view/wp-slimstat-reports.php:975
4101
  msgid "Google Bot Test"
4102
  msgstr "Test du Google Bot"
4103
 
4104
+ #: ../../admin/view/wp-slimstat-reports.php:976
4105
  msgid "Scan for Hostile Strings"
4106
  msgstr ""
4107
 
4108
+ #: ../../admin/view/wp-slimstat-reports.php:977
4109
  msgid "Generic Web Bot test"
4110
  msgstr "Test par d'autres robots."
4111
 
4112
+ #: ../../admin/view/wp-slimstat-reports.php:978
4113
  msgid "Google Safe Browsing List"
4114
  msgstr ""
4115
 
4116
+ #: ../../admin/view/wp-slimstat-reports.php:979
4117
  msgid "Hostile External Links"
4118
  msgstr "Liens externes hostiles"
4119
 
4120
+ #: ../../admin/view/wp-slimstat-reports.php:980
4121
  #, fuzzy
4122
  msgid "Other Treats"
4123
  msgstr "Autres humains"
4124
 
4125
+ #: ../../admin/view/wp-slimstat-reports.php:1006
4126
  msgid "Passed"
4127
  msgstr "Réussi"
4128
 
4129
+ #: ../../admin/view/wp-slimstat-reports.php:1006
4130
  msgid "At Risk"
4131
  msgstr "Risqué"
4132
 
4133
+ #: ../../admin/view/wp-slimstat-reports.php:1009
4134
  msgid "Timed Out"
4135
  msgstr "Expiration du délai"
4136
 
4137
  # Unknown
4138
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4139
  msgid "c-xx"
4140
  msgstr "Inconnu"
4141
 
4142
  # Afghanistan
4143
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4144
  msgid "c-af"
4145
  msgstr "Afghanistan"
4146
 
4147
  # Åland Islands
4148
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4149
  msgid "c-ax"
4150
  msgstr "Îles Åland"
4151
 
4152
  # Albania
4153
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4154
  msgid "c-al"
4155
  msgstr "Albanie"
4156
 
4157
  # Algeria
4158
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4159
  msgid "c-dz"
4160
  msgstr "Algérie"
4161
 
4162
  # Andorra
4163
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4164
  msgid "c-ad"
4165
  msgstr "Andorre"
4166
 
4167
  # Angola
4168
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4169
  msgid "c-ao"
4170
  msgstr "Angola"
4171
 
4172
  # Anguilla
4173
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4174
  msgid "c-ai"
4175
  msgstr "Anguilla"
4176
 
4177
  # Antigua and Barbuda
4178
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4179
  msgid "c-ag"
4180
  msgstr "Antigua et Barbuda"
4181
 
4182
  # Argentina
4183
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4184
  msgid "c-ar"
4185
  msgstr "Argentine"
4186
 
4187
  # Armenia
4188
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4189
  msgid "c-am"
4190
  msgstr "Arménie"
4191
 
4192
  # Aruba
4193
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4194
  msgid "c-aw"
4195
  msgstr "Aruba"
4196
 
4197
  # Australia
4198
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4199
  msgid "c-au"
4200
  msgstr "Australie"
4201
 
4202
  # Austria
4203
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4204
  msgid "c-at"
4205
  msgstr "Autriche"
4206
 
4207
  # Azerbaijan
4208
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4209
  msgid "c-az"
4210
  msgstr "Azerbaïdjan"
4211
 
4212
  # Bahamas
4213
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4214
  msgid "c-bs"
4215
  msgstr "Bahamas"
4216
 
4217
  # Bahrain
4218
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4219
  msgid "c-bh"
4220
  msgstr "Bahreïn"
4221
 
4222
  # Bangladesh
4223
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4224
  msgid "c-bd"
4225
  msgstr "Bangladesh"
4226
 
4227
  # Barbados
4228
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4229
  msgid "c-bb"
4230
  msgstr "Barbade"
4231
 
4232
  # Belarus
4233
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4234
  msgid "c-by"
4235
  msgstr "Bélarus"
4236
 
4237
  # Belgium
4238
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4239
  msgid "c-be"
4240
  msgstr "Belgique"
4241
 
4242
  # Belize
4243
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4244
  msgid "c-bz"
4245
  msgstr "Belize"
4246
 
4247
  # Benin
4248
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4249
  msgid "c-bj"
4250
  msgstr "Bénin"
4251
 
4252
  # Bermuda
4253
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4254
  msgid "c-bm"
4255
  msgstr "Bermudes"
4256
 
4257
  # Bhutan
4258
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4259
  msgid "c-bt"
4260
  msgstr "Bhoutan"
4261
 
4262
  # Bolivia
4263
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4264
  msgid "c-bo"
4265
  msgstr "État plurinational de Bolivie"
4266
 
4267
  # Bosnia and Herzegovina
4268
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4269
  msgid "c-ba"
4270
  msgstr "Bosnie-Herzégovine"
4271
 
4272
  # Botswana
4273
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4274
  msgid "c-bw"
4275
  msgstr "Botswana"
4276
 
4277
  # Brazil
4278
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4279
  msgid "c-br"
4280
  msgstr "Brésil"
4281
 
4282
  # Brunei Darussalam
4283
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4284
  msgid "c-bn"
4285
  msgstr "Brunéi Darussalam"
4286
 
4287
  # Bulgaria
4288
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4289
  msgid "c-bg"
4290
  msgstr "Bulgarie"
4291
 
4292
  # Burkina Faso
4293
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4294
  msgid "c-bf"
4295
  msgstr "Burkina Faso"
4296
 
4297
  # Burundi
4298
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4299
  msgid "c-bi"
4300
  msgstr "Burundi"
4301
 
4302
  # Cambodia
4303
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4304
  msgid "c-kh"
4305
  msgstr "Cambodge"
4306
 
4307
  # Cameroon
4308
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4309
  msgid "c-cm"
4310
  msgstr "Cameroun"
4311
 
4312
  # Canada
4313
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4314
  msgid "c-ca"
4315
  msgstr "Canada"
4316
 
4317
  # Cape Verde
4318
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4319
  msgid "c-cv"
4320
  msgstr "Cap-Vert"
4321
 
4322
  # Cayman Islands
4323
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4324
  msgid "c-ky"
4325
  msgstr "Îles Caïmans"
4326
 
4327
  # Central African Republic
4328
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4329
  msgid "c-cf"
4330
  msgstr "République Centrafricaine"
4331
 
4332
  # Chad
4333
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4334
  msgid "c-td"
4335
  msgstr "Tchad"
4336
 
4337
  # Chile
4338
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4339
  msgid "c-cl"
4340
  msgstr "Chili"
4341
 
4342
  # China
4343
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4344
  msgid "c-cn"
4345
  msgstr "Chine"
4346
 
4347
  # Colombia
4348
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4349
  msgid "c-co"
4350
  msgstr "Colombie"
4351
 
4352
  # Comoros
4353
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4354
  msgid "c-km"
4355
  msgstr "Comores"
4356
 
4357
  # Congo
4358
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4359
  msgid "c-cg"
4360
  msgstr "Congo"
4361
 
4362
  # The Democratic Republic of the Congo
4363
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4364
  msgid "c-cd"
4365
  msgstr "République Démocratique du Congo"
4366
 
4367
  # Costa Rica
4368
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4369
  msgid "c-cr"
4370
  msgstr "Costa Rica"
4371
 
4372
  # Côte d'Ivoire
4373
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4374
  msgid "c-ci"
4375
  msgstr "Côte d'Ivoire"
4376
 
4377
  # Croatia
4378
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4379
  msgid "c-hr"
4380
  msgstr "Croatie"
4381
 
4382
  # Cuba
4383
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4384
  msgid "c-cu"
4385
  msgstr "Cuba"
4386
 
4387
  # Cyprus
4388
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4389
  msgid "c-cy"
4390
  msgstr "Chypre"
4391
 
4392
  # Czech Republic
4393
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4394
  msgid "c-cz"
4395
  msgstr "République tchèque"
4396
 
4397
  # Denmark
4398
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4399
  msgid "c-dk"
4400
  msgstr "Danemark"
4401
 
4402
  # Djibouti
4403
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4404
  msgid "c-dj"
4405
  msgstr "Djibouti"
4406
 
4407
  # Dominica
4408
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4409
  msgid "c-dm"
4410
  msgstr "Dominique"
4411
 
4412
  # Dominican Republic
4413
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4414
  msgid "c-do"
4415
  msgstr "République dominicaine"
4416
 
4417
  # Ecuador
4418
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4419
  msgid "c-ec"
4420
  msgstr "Équateur"
4421
 
4422
  # Egypt
4423
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4424
  msgid "c-eg"
4425
  msgstr "Égypte"
4426
 
4427
  # El Salvador
4428
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4429
  msgid "c-sv"
4430
  msgstr "El Salvador"
4431
 
4432
  # Equatorial Guinea
4433
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4434
  msgid "c-gq"
4435
  msgstr "Guinée équatoriale"
4436
 
4437
  # Eritrea
4438
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4439
  msgid "c-er"
4440
  msgstr "Érythrée"
4441
 
4442
  # Estonia
4443
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4444
  msgid "c-ee"
4445
  msgstr "Estonie"
4446
 
4447
  # Ethiopia
4448
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4449
  msgid "c-et"
4450
  msgstr "Éthiopie"
4451
 
4452
  # Faroe Islands
4453
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4454
  msgid "c-fo"
4455
  msgstr "Îles Féroé"
4456
 
4457
  # Falkland Islands (Malvinas)
4458
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4459
  msgid "c-fk"
4460
  msgstr "Îles Falkland (Malvinas)"
4461
 
4462
  # Fiji
4463
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4464
  msgid "c-fj"
4465
  msgstr "Fidji"
4466
 
4467
  # Finland
4468
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4469
  msgid "c-fi"
4470
  msgstr "Finlande"
4471
 
4472
  # France
4473
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4474
  msgid "c-fr"
4475
  msgstr "France"
4476
 
4477
  # French Guiana
4478
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4479
  msgid "c-gf"
4480
  msgstr "Guyane française"
4481
 
4482
  # Gabon
4483
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4484
  msgid "c-ga"
4485
  msgstr "Gabon"
4486
 
4487
  # Gambia
4488
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4489
  msgid "c-gm"
4490
  msgstr "Gambie"
4491
 
4492
  # Georgia
4493
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4494
  msgid "c-ge"
4495
  msgstr "Géorgie"
4496
 
4497
  # Germany
4498
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4499
  msgid "c-de"
4500
  msgstr "Allemagne"
4501
 
4502
  # Ghana
4503
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4504
  msgid "c-gh"
4505
  msgstr "Ghana"
4506
 
4507
  # Greece
4508
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4509
  msgid "c-gr"
4510
  msgstr "Grèce"
4511
 
4512
  # Greenland
4513
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4514
  msgid "c-gl"
4515
  msgstr "Groenland"
4516
 
4517
  # Grenada
4518
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4519
  msgid "c-gd"
4520
  msgstr "Grenade"
4521
 
4522
  # Guadeloupe
4523
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4524
  msgid "c-gp"
4525
  msgstr "Guadeloupe"
4526
 
4527
  # Guatemala
4528
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4529
  msgid "c-gt"
4530
  msgstr "Guatemala"
4531
 
4532
  # Guinea
4533
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4534
  msgid "c-gn"
4535
  msgstr "Guinée"
4536
 
4537
  # Guinea-Bissau
4538
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4539
  msgid "c-gw"
4540
  msgstr "Guinée-Bissau"
4541
 
4542
  # Guyana
4543
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4544
  msgid "c-gy"
4545
  msgstr "Guyana"
4546
 
4547
  # Haiti
4548
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4549
  msgid "c-ht"
4550
  msgstr "Haïti"
4551
 
4552
  # Honduras
4553
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4554
  msgid "c-hn"
4555
  msgstr "Honduras"
4556
 
4557
  # Hong Kong
4558
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4559
  msgid "c-hk"
4560
  msgstr "Hong Kong"
4561
 
4562
  # Hungary
4563
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4564
  msgid "c-hu"
4565
  msgstr "Hongrie"
4566
 
4567
  # Iceland
4568
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4569
  msgid "c-is"
4570
  msgstr "Islande"
4571
 
4572
  # India
4573
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4574
  msgid "c-in"
4575
  msgstr "Inde"
4576
 
4577
  # Indonesia
4578
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4579
  msgid "c-id"
4580
  msgstr "Indonésie"
4581
 
4582
  # Islamic Republic of Iran
4583
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4584
  msgid "c-ir"
4585
  msgstr "République islamique d'Iran"
4586
 
4587
  # Iraq
4588
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4589
  msgid "c-iq"
4590
  msgstr "Irak"
4591
 
4592
  # Ireland
4593
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4594
  msgid "c-ie"
4595
  msgstr "Irlande"
4596
 
4597
  # Israel
4598
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4599
  msgid "c-il"
4600
  msgstr "Israël"
4601
 
4602
  # Italy
4603
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4604
  msgid "c-it"
4605
  msgstr "Italie"
4606
 
4607
  # Jamaica
4608
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4609
  msgid "c-jm"
4610
  msgstr "Jamaïque"
4611
 
4612
  # Japan
4613
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4614
  msgid "c-jp"
4615
  msgstr "Japon"
4616
 
4617
  # Jordan
4618
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4619
  msgid "c-jo"
4620
  msgstr "Jordanie"
4621
 
4622
  # Kazakhstan
4623
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4624
  msgid "c-kz"
4625
  msgstr "Kazakhstan"
4626
 
4627
  # Kenya
4628
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4629
  msgid "c-ke"
4630
  msgstr "Kenya"
4631
 
4632
  # Nauru
4633
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4634
  msgid "c-nr"
4635
  msgstr "Nauru"
4636
 
4637
  # Democratic People's Republic of Korea
4638
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4639
  msgid "c-kp"
4640
  msgstr "République populaire démocratique de Corée"
4641
 
4642
  # Republic of Korea
4643
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4644
  msgid "c-kr"
4645
  msgstr "République de Corée"
4646
 
4647
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4648
  msgid "c-kv"
4649
  msgstr "Kossovo"
4650
 
4651
  # Kuwait
4652
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4653
  msgid "c-kw"
4654
  msgstr "Koweït"
4655
 
4656
  # Kyrgyzstan
4657
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4658
  msgid "c-kg"
4659
  msgstr "Kirghizistan"
4660
 
4661
  # Lao People's Democratic Republic
4662
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4663
  msgid "c-la"
4664
  msgstr "République démocratique populaire lao"
4665
 
4666
  # Latvia
4667
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4668
  msgid "c-lv"
4669
  msgstr "Lettonie"
4670
 
4671
  # Lebanon
4672
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4673
  msgid "c-lb"
4674
  msgstr "Liban"
4675
 
4676
  # Lesotho
4677
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4678
  msgid "c-ls"
4679
  msgstr "Lesotho"
4680
 
4681
  # Liberia
4682
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4683
  msgid "c-lr"
4684
  msgstr "Libéria"
4685
 
4686
  # Libyan Arab Jamahiriya
4687
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4688
  msgid "c-ly"
4689
  msgstr "Jamahiriya arabe libyenne"
4690
 
4691
  # Liechtenstein
4692
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4693
  msgid "c-li"
4694
  msgstr "Liechtenstein"
4695
 
4696
  # Lithuania
4697
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4698
  msgid "c-lt"
4699
  msgstr "Lituanie"
4700
 
4701
  # Luxembourg
4702
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4703
  msgid "c-lu"
4704
  msgstr "Luxembourg"
4705
 
4706
  # The Former Yugoslav Republic of Macedonia
4707
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4708
  msgid "c-mk"
4709
  msgstr "Ex-république yougoslave de Macédoine"
4710
 
4711
  # Madagascar
4712
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4713
  msgid "c-mg"
4714
  msgstr "Madagascar"
4715
 
4716
  # Malawi
4717
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4718
  msgid "c-mw"
4719
  msgstr "Malawi"
4720
 
4721
  # Malaysia
4722
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4723
  msgid "c-my"
4724
  msgstr "Malaisie"
4725
 
4726
  # Mali
4727
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4728
  msgid "c-ml"
4729
  msgstr "Mali"
4730
 
4731
  # Malta
4732
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4733
  msgid "c-mt"
4734
  msgstr "Malte"
4735
 
4736
  # Martinique
4737
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4738
  msgid "c-mq"
4739
  msgstr "Martinique"
4740
 
4741
  # Mauritania
4742
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4743
  msgid "c-mr"
4744
  msgstr "Mauritanie"
4745
 
4746
  # Mauritius
4747
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4748
  msgid "c-mu"
4749
  msgstr "Maurice"
4750
 
4751
  # Mexico
4752
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4753
  msgid "c-mx"
4754
  msgstr "Mexique"
4755
 
4756
  # Moldova
4757
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4758
  msgid "c-md"
4759
  msgstr "République de Moldova"
4760
 
4761
  # Mongolia
4762
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4763
  msgid "c-mn"
4764
  msgstr "Mongolie"
4765
 
4766
  # Montenegro
4767
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4768
  msgid "c-me"
4769
  msgstr "Monténégro"
4770
 
4771
  # Montserrat
4772
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4773
  msgid "c-ms"
4774
  msgstr "Montserrat"
4775
 
4776
  # Morocco
4777
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4778
  msgid "c-ma"
4779
  msgstr "Maroc"
4780
 
4781
  # Mozambique
4782
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4783
  msgid "c-mz"
4784
  msgstr "Mozambique"
4785
 
4786
  # Myanmar
4787
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4788
  msgid "c-mm"
4789
  msgstr "Myanmar"
4790
 
4791
  # Namibia
4792
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4793
  msgid "c-na"
4794
  msgstr "Namibie"
4795
 
4796
  # Nepal
4797
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4798
  msgid "c-np"
4799
  msgstr "Népal"
4800
 
4801
  # Netherlands
4802
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4803
  msgid "c-nl"
4804
  msgstr "Pays-bas"
4805
 
4806
  # New Caledonia
4807
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4808
  msgid "c-nc"
4809
  msgstr "Nouvelle-Calédonie"
4810
 
4811
  # New Zealand
4812
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4813
  msgid "c-nz"
4814
  msgstr "Nouvelle-Zélande"
4815
 
4816
  # Nicaragua
4817
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4818
  msgid "c-ni"
4819
  msgstr "Nicaragua"
4820
 
4821
  # Niger
4822
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4823
  msgid "c-ne"
4824
  msgstr "Niger"
4825
 
4826
  # Nigeria
4827
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4828
  msgid "c-ng"
4829
  msgstr "Nigéria"
4830
 
4831
  # Norway
4832
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4833
  msgid "c-no"
4834
  msgstr "Norvège"
4835
 
4836
  # Oman
4837
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4838
  msgid "c-om"
4839
  msgstr "Oman"
4840
 
4841
  # Pakistan
4842
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4843
  msgid "c-pk"
4844
  msgstr "Pakistan"
4845
 
4846
  # Palau
4847
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4848
  msgid "c-pw"
4849
  msgstr "Palaos"
4850
 
4851
  # Occupied Palestinian Territory
4852
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4853
  msgid "c-ps"
4854
  msgstr "Territoire palestinien occupé"
4855
 
4856
  # Panama
4857
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4858
  msgid "c-pa"
4859
  msgstr "Panama"
4860
 
4861
  # Papua New Guinea
4862
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4863
  msgid "c-pg"
4864
  msgstr "Papouasie-Nouvelle-Guinée"
4865
 
4866
  # Paraguay
4867
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4868
  msgid "c-py"
4869
  msgstr "Paraguay"
4870
 
4871
  # Peru
4872
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4873
  msgid "c-pe"
4874
  msgstr "Pérou"
4875
 
4876
  # Philippines
4877
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4878
  msgid "c-ph"
4879
  msgstr "Philippines"
4880
 
4881
  # Poland
4882
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4883
  msgid "c-pl"
4884
  msgstr "Pologne"
4885
 
4886
  # Portugal
4887
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4888
  msgid "c-pt"
4889
  msgstr "Portugal"
4890
 
4891
  # Puerto Rico
4892
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4893
  msgid "c-pr"
4894
  msgstr "Porto Rico"
4895
 
4896
  # Qatar
4897
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4898
  msgid "c-qa"
4899
  msgstr "Qatar"
4900
 
4901
  # Réunion
4902
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4903
  msgid "c-re"
4904
  msgstr "Réunion"
4905
 
4906
  # Romania
4907
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4908
  msgid "c-ro"
4909
  msgstr "Roumanie"
4910
 
4911
  # Russian Federation
4912
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4913
  msgid "c-ru"
4914
  msgstr "Fédération de Russie"
4915
 
4916
  # Rwanda
4917
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4918
  msgid "c-rw"
4919
  msgstr "Rwanda"
4920
 
4921
  # Saint Kitts and Nevis
4922
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4923
  msgid "c-kn"
4924
  msgstr "Saint-Kitts-et-Nevis"
4925
 
4926
  # Saint Lucia
4927
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4928
  msgid "c-lc"
4929
  msgstr "Sainte-Lucie"
4930
 
4931
  # Saint Martin
4932
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4933
  msgid "c-mf"
4934
  msgstr "Saint-Martin"
4935
 
4936
  # Saint Vincent and the Grenadines
4937
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4938
  msgid "c-vc"
4939
  msgstr "Saint-Vincent-et-les Grenadines"
4940
 
4941
  # Samoa
4942
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4943
  msgid "c-ws"
4944
  msgstr "Samoa"
4945
 
4946
  # Sao Tome and Principe
4947
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4948
  msgid "c-st"
4949
  msgstr "Sao Tomé-et-Principe"
4950
 
4951
  # Saudi Arabia
4952
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4953
  msgid "c-sa"
4954
  msgstr "Arabie saoudite"
4955
 
4956
  # Senegal
4957
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4958
  msgid "c-sn"
4959
  msgstr "Sénégal"
4960
 
4961
  # Serbia
4962
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4963
  msgid "c-rs"
4964
  msgstr "Serbie"
4965
 
4966
  # Sierra Leone
4967
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4968
  msgid "c-sl"
4969
  msgstr "Sierra Leone"
4970
 
4971
  # Singapore
4972
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4973
  msgid "c-sg"
4974
  msgstr "Singapour"
4975
 
4976
  # Slovakia
4977
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4978
  msgid "c-sk"
4979
  msgstr "Slovaquie"
4980
 
4981
  # Slovenia
4982
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4983
  msgid "c-si"
4984
  msgstr "Slovénie"
4985
 
4986
  # Solomon Islands
4987
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4988
  msgid "c-sb"
4989
  msgstr "Îles Salomon"
4990
 
4991
  # Somalia
4992
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4993
  msgid "c-so"
4994
  msgstr "Somalie"
4995
 
4996
  # South Africa
4997
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4998
  msgid "c-za"
4999
  msgstr "Afrique du sud"
5000
 
5001
  # South Georgia and the South Sandwich Islands
5002
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5003
  msgid "c-gs"
5004
  msgstr "Géorgie du sud et les Îles Sandwich du sud"
5005
 
5006
  # Spain
5007
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5008
  msgid "c-es"
5009
  msgstr "Espagne"
5010
 
5011
  # Sri Lanka
5012
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5013
  msgid "c-lk"
5014
  msgstr "Sri Lanka"
5015
 
5016
+ # Seychelles
5017
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5018
+ msgid "c-sc"
5019
+ msgstr "Seychelles"
5020
+
5021
  # Sudan
5022
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5023
  msgid "c-sd"
5024
  msgstr "Soudan"
5025
 
5026
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5027
  msgid "c-ss"
5028
  msgstr "Soudan du Sud"
5029
 
5030
  # Suriname
5031
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5032
  msgid "c-sr"
5033
  msgstr "Suriname"
5034
 
5035
  # Svalbard and Jan Mayen
5036
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5037
  msgid "c-sj"
5038
  msgstr "Svalbard et île Jan Mayen"
5039
 
5040
  # Swaziland
5041
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5042
  msgid "c-sz"
5043
  msgstr "Swaziland"
5044
 
5045
  # Sweden
5046
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5047
  msgid "c-se"
5048
  msgstr "Suède"
5049
 
5050
  # Switzerland
5051
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5052
  msgid "c-ch"
5053
  msgstr "Suisse"
5054
 
5055
  # Syrian Arab Republic
5056
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5057
  msgid "c-sy"
5058
  msgstr "République arabe syrienne"
5059
 
5060
  # Taiwan, Province of China
5061
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5062
  msgid "c-tw"
5063
  msgstr "Taïwan, province de Chine"
5064
 
5065
  # Tajikistan
5066
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5067
  msgid "c-tj"
5068
  msgstr "Tadjikistan"
5069
 
5070
  # United Republic of Tanzania
5071
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5072
  msgid "c-tz"
5073
  msgstr "République-unie de Tanzanie"
5074
 
5075
  # Thailand
5076
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5077
  msgid "c-th"
5078
  msgstr "Thaïlande"
5079
 
5080
  # Timor-Leste
5081
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5082
  msgid "c-tl"
5083
  msgstr "Timor-Leste"
5084
 
5085
  # Togo
5086
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5087
  msgid "c-tg"
5088
  msgstr "Togo"
5089
 
5090
  # Tonga
5091
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5092
  msgid "c-to"
5093
  msgstr "Tonga"
5094
 
5095
  # Trinidad and Tobago
5096
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5097
  msgid "c-tt"
5098
  msgstr "Trinité-et-Tobago "
5099
 
5100
  # Tunisia
5101
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5102
  msgid "c-tn"
5103
  msgstr "Tunisie"
5104
 
5105
  # Turkey
5106
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5107
  msgid "c-tr"
5108
  msgstr "Turquie "
5109
 
5110
  # Turkmenistan
5111
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5112
  msgid "c-tm"
5113
  msgstr "Turkménistan"
5114
 
5115
  # Turks and Caicos Islands
5116
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5117
  msgid "c-tc"
5118
  msgstr "Îles Turks et Caïques"
5119
 
5120
  # Uganda
5121
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5122
  msgid "c-ug"
5123
  msgstr "Ouganda"
5124
 
5125
  # Ukraine
5126
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5127
  msgid "c-ua"
5128
  msgstr "Ukraine"
5129
 
5130
  # United Arab Emirates
5131
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5132
  msgid "c-ae"
5133
  msgstr "Émirats arabes unis"
5134
 
5135
  # United Kingdom
5136
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5137
  msgid "c-gb"
5138
  msgstr "Royaume-Uni"
5139
 
5140
  # United States
5141
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5142
  msgid "c-us"
5143
  msgstr "États-Unis"
5144
 
5145
  # Uruguay
5146
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5147
  msgid "c-uy"
5148
  msgstr "Uruguay"
5149
 
5150
  # Uzbekistan
5151
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5152
  msgid "c-uz"
5153
  msgstr "Ouzbékistan "
5154
 
5155
  # Vanuatu
5156
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5157
  msgid "c-vu"
5158
  msgstr "Vanuatu"
5159
 
5160
  # Venezuela
5161
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5162
  msgid "c-ve"
5163
  msgstr "République bolivarienne du Venezuela"
5164
 
5165
  # Viet Nam
5166
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5167
  msgid "c-vn"
5168
  msgstr "Viet Nam"
5169
 
5170
  # British Virgin Islands
5171
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5172
  msgid "c-vg"
5173
  msgstr "Îles vierges britanniques"
5174
 
5175
  # U.S. Virgin Islands
5176
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5177
  msgid "c-vi"
5178
  msgstr "Îles vierges des États-Unis"
5179
 
5180
  # Western Sahara
5181
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5182
  msgid "c-eh"
5183
  msgstr "Sahara occidental"
5184
 
5185
  # Yemen
5186
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5187
  msgid "c-ye"
5188
  msgstr "Yémen"
5189
 
5190
  # Zambia
5191
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5192
  msgid "c-zm"
5193
  msgstr "Zambie"
5194
 
5195
  # Zimbabwe
5196
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5197
  msgid "c-zw"
5198
  msgstr "Zimbabwe"
5199
 
5200
  # Guernsey
5201
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5202
  msgid "c-gg"
5203
  msgstr "Guernesey"
5204
 
5205
  # Jersey
5206
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5207
  msgid "c-je"
5208
  msgstr "Jersey"
5209
 
5210
  # Isle of Man
5211
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5212
  msgid "c-im"
5213
  msgstr "Île de Man"
5214
 
5215
  # Maldives
5216
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5217
  msgid "c-mv"
5218
  msgstr "Maldives"
5219
 
5220
  # European Union
5221
+ #: ../../admin/view/wp-slimstat-reports.php:1024
5222
  msgid "c-eu"
5223
  msgstr "Union européenne"
5224
 
5225
+ #: ../../admin/view/wp-slimstat-reports.php:1113
5226
  msgid ""
5227
  "This value includes not only posts, but also custom post types, regardless "
5228
  "of their status"
5229
  msgstr ""
5230
 
5231
+ #: ../../admin/view/wp-slimstat-reports.php:1114
5232
  msgid "Content Items"
5233
  msgstr "Contenus"
5234
 
5235
+ #: ../../admin/view/wp-slimstat-reports.php:1115
5236
  msgid "Total Comments"
5237
  msgstr "Nombre de commentaires"
5238
 
5239
+ #: ../../admin/view/wp-slimstat-reports.php:1116
5240
  msgid "Pingbacks"
5241
  msgstr "Pingbacks"
5242
 
5243
+ #: ../../admin/view/wp-slimstat-reports.php:1117
5244
  msgid "Trackbacks"
5245
  msgstr "Trackbacks"
5246
 
5247
+ #: ../../admin/view/wp-slimstat-reports.php:1118
5248
  msgid "Longest Post (ID)"
5249
  msgstr "ID du post leplus long"
5250
 
5251
+ #: ../../admin/view/wp-slimstat-reports.php:1119
5252
  msgid "Longest Comment (ID)"
5253
  msgstr "Commentaire le plus long (ID)"
5254
 
5255
+ #: ../../admin/view/wp-slimstat-reports.php:1120
5256
  msgid "Avg Comments Per Post"
5257
  msgstr "Moyenne de commentaires par Post"
5258
 
5259
+ #: ../../admin/view/wp-slimstat-reports.php:1121
5260
  msgid "Avg Posts Per Day"
5261
  msgstr "Nombre moyen de posts par jour"
5262
 
5263
+ #: ../../admin/view/wp-slimstat-reports.php:1149
5264
  msgid "Visits"
5265
  msgstr "Visites"
5266
 
5267
+ #: ../../admin/view/wp-slimstat-reports.php:1153
5268
  msgid "Domains"
5269
  msgstr "Domaines"
5270
 
5271
+ #: ../../admin/view/wp-slimstat-reports.php:1158
5272
  msgid "Avg Pageviews"
5273
  msgstr "Moyenne des pages vues"
5274
 
7398
  #~ msgid "c-pn"
7399
  #~ msgstr "Pitcairn"
7400
 
 
 
 
 
7401
  # Saint Helena, Ascension and Tristan da Cunha
7402
  #~ msgid "c-sh"
7403
  #~ msgstr "Sainte-Hélène, Ascension et Tristan da Cunha"
admin/lang/wp-slimstat-fr_FR.mo CHANGED
Binary file
admin/lang/wp-slimstat-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-01-15 12:43-0500\n"
6
- "PO-Revision-Date: 2014-01-15 12:43-0500\n"
7
  "Last-Translator: Get Used To IT <support@getused.to.it>\n"
8
  "Language-Team: Michael Bastin\n"
9
  "Language: fr_FR\n"
@@ -17,97 +17,100 @@ msgstr ""
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ../..\n"
19
 
20
- #: ../../wp-slimstat.php:1176 ../../admin/wp-slimstat-admin.php:397
21
  #: ../../admin/view/wp-slimstat-reports.php:31
22
  msgid "Right Now"
23
- msgstr "Maintenant"
24
 
25
- #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:398
26
- #: ../../admin/wp-slimstat-admin.php:415
27
  #: ../../admin/view/wp-slimstat-reports.php:32
28
  msgid "Overview"
29
  msgstr "Vue générale"
30
 
31
- #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:399
32
- #: ../../admin/wp-slimstat-admin.php:416
33
  #: ../../admin/view/wp-slimstat-reports.php:33
34
  msgid "Visitors"
35
  msgstr "Visiteurs"
36
 
37
- #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:400
38
- #: ../../admin/wp-slimstat-admin.php:417
39
  #: ../../admin/view/wp-slimstat-reports.php:34
40
  msgid "Content"
41
  msgstr "Contenu"
42
 
43
- #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:401
44
- #: ../../admin/wp-slimstat-admin.php:418 ../../admin/view/index.php:168
45
  #: ../../admin/view/wp-slimstat-reports.php:35
46
  msgid "Traffic Sources"
47
  msgstr "Sources de trafic"
48
 
49
- #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:402
50
- #: ../../admin/wp-slimstat-admin.php:419
51
  #: ../../admin/view/wp-slimstat-reports.php:36
52
  #: ../../admin/view/wp-slimstat-reports.php:105
53
  msgid "World Map"
54
  msgstr "Carte du monde"
55
 
56
- #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:403
57
- #: ../../admin/wp-slimstat-admin.php:420
58
  #: ../../admin/view/wp-slimstat-reports.php:37
59
  msgid "Custom Reports"
60
  msgstr "Rapports personnalisés"
61
 
62
- #: ../../wp-slimstat.php:1183 ../../admin/wp-slimstat-admin.php:404
63
- #: ../../admin/wp-slimstat-admin.php:421 ../../admin/config/addons.php:29
64
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:228
65
  msgid "Add-ons"
66
  msgstr "Add-ons"
67
 
68
- #: ../../wp-slimstat.php:1186 ../../admin/wp-slimstat-admin.php:450
69
- #: ../../admin/wp-slimstat-admin.php:453 ../../admin/wp-slimstat-admin.php:497
70
- #: ../../admin/wp-slimstat-admin.php:500 ../../admin/config/index.php:14
71
  #: ../../admin/config/index.php:135
72
  msgid "Settings"
73
  msgstr "Réglages"
74
 
75
- #: ../../admin/wp-slimstat-admin.php:396 ../../admin/wp-slimstat-admin.php:408
76
- #: ../../admin/wp-slimstat-admin.php:411
77
- #, fuzzy
78
  msgid "SlimStat"
79
- msgstr "À propos de WP-SlimStat"
80
 
81
- #: ../../admin/wp-slimstat-admin.php:514
82
  msgid "Pageviews in the last 365 days"
83
  msgstr "Pages durant les 365 derniers jours"
84
 
85
- #: ../../admin/wp-slimstat-admin.php:538
86
  msgid "Show on screen"
87
  msgstr "Montrer à l'écran"
88
 
89
- #: ../../admin/wp-slimstat-admin.php:585
 
 
 
 
90
  msgid "There was an error updating the following options:"
91
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
92
 
93
- #: ../../admin/wp-slimstat-admin.php:588
94
  msgid "Your settings have been successfully updated."
95
  msgstr "Vos réglages ont bien été mis à jour"
96
 
97
- #: ../../admin/wp-slimstat-admin.php:611
98
  msgid "Save Changes"
99
  msgstr "Enregistrer les modifications"
100
 
101
- #: ../../admin/wp-slimstat-admin.php:630
102
  msgid "Yes"
103
  msgstr "Oui"
104
 
105
- #: ../../admin/wp-slimstat-admin.php:631
106
- #: ../../admin/view/wp-slimstat-reports.php:742
107
  msgid "No"
108
  msgstr "Non"
109
 
110
- #: ../../admin/wp-slimstat-admin.php:671
111
  msgid ""
112
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
113
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
@@ -119,15 +122,15 @@ msgstr ""
119
  "consulter <a target=\"_blank\" href=\"http://wordpress.org/extend/plugins/wp-"
120
  "slimstat/faq/\">les FAQ</a> pour plus d'informations."
121
 
122
- #: ../../admin/wp-slimstat-admin.php:691
123
  msgid "Definitions"
124
  msgstr "Définitions"
125
 
126
- #: ../../admin/wp-slimstat-admin.php:694
127
  msgid "Pageview"
128
  msgstr "Page vue"
129
 
130
- #: ../../admin/wp-slimstat-admin.php:694
131
  msgid ""
132
  "A request to load a single HTML file (\"page\"). This should be contrasted "
133
  "with a \"hit\", which refers to a request for any file from a web server. WP "
@@ -138,11 +141,11 @@ msgstr ""
138
  "d'un serveur Web. WP SlimStat enregistre une page vue chaque fois que le "
139
  "code de traçage est exécuté"
140
 
141
- #: ../../admin/wp-slimstat-admin.php:695
142
  msgid "(Human) Visit"
143
  msgstr "Visiteurs humains"
144
 
145
- #: ../../admin/wp-slimstat-admin.php:695
146
  msgid ""
147
  "A period of interaction between a visitor's browser and your website, ending "
148
  "when the browser is closed or when the user has been inactive on that site "
@@ -152,12 +155,12 @@ msgstr ""
152
  "Web se terminant lorsque le navigateur est fermé ou lorsque l'utilisateur "
153
  "est inactif sur ce site depuis 30 minutes"
154
 
155
- #: ../../admin/wp-slimstat-admin.php:696 ../../admin/view/index.php:140
156
- #: ../../admin/view/right-now.php:148
157
  msgid "Known Visitor"
158
  msgstr "Visiteurs connus"
159
 
160
- #: ../../admin/wp-slimstat-admin.php:696
161
  msgid ""
162
  "Any user who has left a comment on your blog, and is thus identified by "
163
  "Wordpress as a returning visitor"
@@ -165,11 +168,11 @@ msgstr ""
165
  "Un utilisateur qui a laissé un commentaire sur votre blog et est ainsi "
166
  "identifié par Wordpress comme un visiteur qui a déjà visité votre site"
167
 
168
- #: ../../admin/wp-slimstat-admin.php:697
169
  msgid "Unique IP"
170
  msgstr "IP uniques"
171
 
172
- #: ../../admin/wp-slimstat-admin.php:697
173
  msgid ""
174
  "Used to differentiate between multiple requests to download a file from one "
175
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -182,12 +185,12 @@ msgstr ""
182
  "Internet de la provenance d'une consultation, elle est utile, mais pas "
183
  "parfaite"
184
 
185
- #: ../../admin/wp-slimstat-admin.php:698 ../../admin/wp-slimstat-admin.php:740
186
- #: ../../admin/view/right-now.php:98 ../../admin/view/wp-slimstat-db.php:79
187
  msgid "Originating IP"
188
  msgstr "IP d'origine"
189
 
190
- #: ../../admin/wp-slimstat-admin.php:698
191
  msgid ""
192
  "the originating IP address of a client connecting to a web server through an "
193
  "HTTP proxy or load balancer"
@@ -195,11 +198,11 @@ msgstr ""
195
  "l'adresse IP d'origine d'un client qui se connecte à un serveur Web via un "
196
  "proxy HTTP ou équilibreur de charge"
197
 
198
- #: ../../admin/wp-slimstat-admin.php:699
199
  msgid "Direct Traffic"
200
  msgstr "Trafic direct"
201
 
202
- #: ../../admin/wp-slimstat-admin.php:699
203
  msgid ""
204
  "All those people showing up to your Web site by typing in the URL of your "
205
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -209,11 +212,11 @@ msgstr ""
209
  "votre site Web ou qui viennent à partir d'un signet, certaines personnes "
210
  "appellent également cela \"trafic par défaut \" ou \"trafic ambiant \""
211
 
212
- #: ../../admin/wp-slimstat-admin.php:700
213
  msgid "Search Engine"
214
  msgstr "Moteur de recherche"
215
 
216
- #: ../../admin/wp-slimstat-admin.php:700
217
  msgid ""
218
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
219
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -221,22 +224,22 @@ msgstr ""
221
  "Google, Yahoo, MSN, Ask, et autres; cet item comprendra à la fois votre "
222
  "trafic rémunéré (PPC/SEM) ainsi que votre trafic organique, prenez en note"
223
 
224
- #: ../../admin/wp-slimstat-admin.php:701 ../../admin/wp-slimstat-admin.php:717
225
- #: ../../admin/view/right-now.php:127 ../../admin/view/wp-slimstat-db.php:60
226
  msgid "Search Terms"
227
  msgstr "Termes de recherche"
228
 
229
- #: ../../admin/wp-slimstat-admin.php:701 ../../admin/wp-slimstat-admin.php:717
230
  msgid "Keywords used by your visitors to find your website on a search engine"
231
  msgstr ""
232
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
233
  "de recherche"
234
 
235
- #: ../../admin/wp-slimstat-admin.php:702
236
  msgid "SERP"
237
  msgstr "SERP"
238
 
239
- #: ../../admin/wp-slimstat-admin.php:702
240
  msgid ""
241
  "Short for search engine results page, the Web page that a search engine "
242
  "returns with the results of its search. The value shown represents your rank "
@@ -246,12 +249,12 @@ msgstr ""
246
  "recherche renvoie les résultats de sa recherche. La valeur indiquée "
247
  "correspond à votre classement (ou la position) dans la liste des résultats"
248
 
249
- #: ../../admin/wp-slimstat-admin.php:703
250
  #: ../../admin/view/wp-slimstat-db.php:72
251
  msgid "User Agent"
252
  msgstr "User Agent"
253
 
254
- #: ../../admin/wp-slimstat-admin.php:703
255
  msgid ""
256
  "Any program used for accessing a website; this includes browsers, robots, "
257
  "spiders and any other program that was used to retrieve information from the "
@@ -261,12 +264,12 @@ msgstr ""
261
  "navigateurs, robots, spiders et tout autre programme qui a été utilisé pour "
262
  "extraire des informations du site"
263
 
264
- #: ../../admin/wp-slimstat-admin.php:704
265
  #: ../../admin/view/wp-slimstat-db.php:76
266
  msgid "Outbound Link"
267
  msgstr "Lien sortant"
268
 
269
- #: ../../admin/wp-slimstat-admin.php:704
270
  msgid ""
271
  "A link from one domain to another is said to be outbound from its source "
272
  "anchor and inbound to its target. This report lists all the links to other "
@@ -276,44 +279,44 @@ msgstr ""
276
  "sa cible. Ce rapport répertorie tous les liens vers d'autres sites suivis "
277
  "par vos visiteurs."
278
 
279
- #: ../../admin/wp-slimstat-admin.php:711
280
  msgid "Basic Filters"
281
  msgstr "Filtres de base"
282
 
283
- #: ../../admin/wp-slimstat-admin.php:714
284
  #: ../../admin/view/wp-slimstat-db.php:57
285
  msgid "Browser"
286
  msgstr "Navigateur Web"
287
 
288
- #: ../../admin/wp-slimstat-admin.php:714
289
  msgid "User agent (Firefox, Chrome, ...)"
290
  msgstr "User agent (Firefox, Chrome, ...)"
291
 
292
- #: ../../admin/wp-slimstat-admin.php:715
293
  #: ../../admin/view/wp-slimstat-db.php:58
294
- #: ../../admin/view/wp-slimstat-reports.php:472
295
  msgid "Country Code"
296
  msgstr "Code du pays"
297
 
298
- #: ../../admin/wp-slimstat-admin.php:715
299
  msgid "2-letter code (us, ru, de, it, ...)"
300
  msgstr "code pays à 2 lettres (us, ru, de, it, ...)"
301
 
302
- #: ../../admin/wp-slimstat-admin.php:716
303
  msgid "IP"
304
  msgstr "IP"
305
 
306
- #: ../../admin/wp-slimstat-admin.php:716
307
  msgid "Visitor's public IP address"
308
  msgstr " Adresse IP publique du visiteur"
309
 
310
- #: ../../admin/wp-slimstat-admin.php:718
311
  #: ../../admin/view/wp-slimstat-db.php:61
312
- #: ../../admin/view/wp-slimstat-reports.php:484
313
  msgid "Language Code"
314
  msgstr "Code langue"
315
 
316
- #: ../../admin/wp-slimstat-admin.php:718
317
  msgid ""
318
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
319
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -323,12 +326,12 @@ msgstr ""
323
  "microsoft.com/en-us/library/ee825488(v=cs.20).aspx\">language culture page</"
324
  "a> (première colonne) pour plus d'informations"
325
 
326
- #: ../../admin/wp-slimstat-admin.php:719
327
  #: ../../admin/view/wp-slimstat-db.php:62
328
  msgid "Operating System"
329
  msgstr "Système d'exploitation (OS)"
330
 
331
- #: ../../admin/wp-slimstat-admin.php:719
332
  msgid ""
333
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
334
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -338,30 +341,30 @@ msgstr ""
338
  "référez-vous à <a target=\"_blank\" href=\"http://php.net/manual/en/function."
339
  "get-browser.php\">cette page de manuel </a> pour plus d'informations"
340
 
341
- #: ../../admin/wp-slimstat-admin.php:720
342
  #: ../../admin/view/wp-slimstat-db.php:63
343
  msgid "Permalink"
344
  msgstr "Permalien"
345
 
346
- #: ../../admin/wp-slimstat-admin.php:720
347
  msgid "URL accessed on your site"
348
  msgstr "URL accessible sur votre site"
349
 
350
- #: ../../admin/wp-slimstat-admin.php:721
351
  #: ../../admin/view/wp-slimstat-db.php:65
352
  msgid "Referer"
353
  msgstr "Référent"
354
 
355
- #: ../../admin/wp-slimstat-admin.php:721
356
  msgid "Complete address of the referrer page"
357
  msgstr "Adresse complète dune lpage référente"
358
 
359
- #: ../../admin/wp-slimstat-admin.php:722
360
  #: ../../admin/view/wp-slimstat-db.php:66
361
  msgid "Visitor's Name"
362
  msgstr "le nom des visiteurs"
363
 
364
- #: ../../admin/wp-slimstat-admin.php:722
365
  msgid ""
366
  "Visitors' names according to the cookie set by Wordpress after they leave a "
367
  "comment"
@@ -369,25 +372,25 @@ msgstr ""
369
  "Les noms des visiteurs selon le cookie enregistré par Wordpress, après avoir "
370
  "laissé un commentaire"
371
 
372
- #: ../../admin/wp-slimstat-admin.php:730
373
  msgid "Advanced Filters"
374
  msgstr "Filtres Avancés"
375
 
376
- #: ../../admin/wp-slimstat-admin.php:733
377
  #: ../../admin/view/wp-slimstat-db.php:70
378
  msgid "Browser Version"
379
  msgstr "Version de navigateur"
380
 
381
- #: ../../admin/wp-slimstat-admin.php:733
382
  msgid "user agent version (9.0, 11, ...)"
383
  msgstr "user agent version (9.0, 11, ...)"
384
 
385
- #: ../../admin/wp-slimstat-admin.php:734
386
  #: ../../admin/view/wp-slimstat-db.php:71
387
  msgid "Browser Type"
388
  msgstr "le type de navigateur Web"
389
 
390
- #: ../../admin/wp-slimstat-admin.php:734
391
  msgid ""
392
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
393
  "all others"
@@ -395,21 +398,21 @@ msgstr ""
395
  "1 = moteur de recherche, 2 = appareil mobile, 3 = lecteur de flux "
396
  "(syndication) , 0 = tous les autres"
397
 
398
- #: ../../admin/wp-slimstat-admin.php:735
399
  #: ../../admin/view/wp-slimstat-db.php:73
400
  msgid "Color Depth"
401
  msgstr "Profondeur de couleur"
402
 
403
- #: ../../admin/wp-slimstat-admin.php:735
404
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
405
  msgstr "couleur de la profondeur de l'écran du visiteur (8, 16, 24, ...)"
406
 
407
- #: ../../admin/wp-slimstat-admin.php:736
408
  #: ../../admin/view/wp-slimstat-db.php:74
409
  msgid "CSS Version"
410
  msgstr "Version CSS"
411
 
412
- #: ../../admin/wp-slimstat-admin.php:736
413
  msgid ""
414
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
415
  "values)"
@@ -417,12 +420,12 @@ msgstr ""
417
  "quelle est la norme CSS supportée par ce navigateur (1, 2, 3 et d'autres "
418
  "valeurs entières)"
419
 
420
- #: ../../admin/wp-slimstat-admin.php:737
421
  #: ../../admin/view/wp-slimstat-db.php:75
422
  msgid "Pageview Attributes"
423
  msgstr "l'attribut des Pages Vues"
424
 
425
- #: ../../admin/wp-slimstat-admin.php:737
426
  msgid ""
427
  "this field is set to <em>[pre]</em> if the resource has been accessed "
428
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -433,34 +436,34 @@ msgstr ""
433
  "Link_prefetching_FAQ\"> préchargement des liens</a> ou d'autres techniques "
434
  "similaires"
435
 
436
- #: ../../admin/wp-slimstat-admin.php:738
437
  #: ../../admin/view/wp-slimstat-db.php:77
438
  msgid "Post Author"
439
  msgstr "l'auteur de l'article"
440
 
441
- #: ../../admin/wp-slimstat-admin.php:738
442
  msgid "author associated to that post/page when the resource was accessed"
443
  msgstr "auteur associé à cet article/page lorsque la ressource est accessible"
444
 
445
- #: ../../admin/wp-slimstat-admin.php:739
446
  #: ../../admin/view/wp-slimstat-db.php:78
447
  msgid "Post Category ID"
448
  msgstr "ID de la catégorie de l'article"
449
 
450
- #: ../../admin/wp-slimstat-admin.php:739
451
  msgid "ID of the category/term associated to the resource, when available"
452
  msgstr "ID de la catégorie/terme associée à la ressource, lorsqu'il y en a"
453
 
454
- #: ../../admin/wp-slimstat-admin.php:740
455
  msgid "visitor's originating IP address, if available"
456
  msgstr "adresse IP d'origine du visiteur, s'il est disponible"
457
 
458
- #: ../../admin/wp-slimstat-admin.php:741
459
  #: ../../admin/view/wp-slimstat-db.php:80
460
  msgid "Resource Content Type"
461
  msgstr "le type de source de contenu"
462
 
463
- #: ../../admin/wp-slimstat-admin.php:741
464
  msgid ""
465
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
466
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -474,21 +477,21 @@ msgstr ""
474
  "\" href=\"http://codex.wordpress.org/Conditional_Tags\">Conditional Tags</a> "
475
  "pour plus d'informations"
476
 
477
- #: ../../admin/wp-slimstat-admin.php:742
478
  #: ../../admin/view/wp-slimstat-db.php:82
479
  msgid "Screen Resolution"
480
  msgstr "la résolution de l'écran"
481
 
482
- #: ../../admin/wp-slimstat-admin.php:742
483
  msgid "viewport width and height (1024x768, 800x600, ...)"
484
  msgstr "résolution de l'écran (1024x768, 800x600, ...)"
485
 
486
- #: ../../admin/wp-slimstat-admin.php:743
487
  #: ../../admin/view/wp-slimstat-db.php:83
488
  msgid "Visit ID"
489
  msgstr "Visites ID"
490
 
491
- #: ../../admin/wp-slimstat-admin.php:743
492
  msgid ""
493
  "generally used in conjunction with <em>is not empty</em>, identifies human "
494
  "visitors"
@@ -496,11 +499,11 @@ msgstr ""
496
  "généralement utilisé en conjonction avec <em>n'est pas vide </em>, identifie "
497
  "les visiteurs humains"
498
 
499
- #: ../../admin/wp-slimstat-admin.php:744
500
  msgid "Date Filters"
501
  msgstr "Filtres de dates"
502
 
503
- #: ../../admin/wp-slimstat-admin.php:744
504
  msgid ""
505
  "you can specify the timeframe by entering a number in the <em>interval</em> "
506
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -511,11 +514,11 @@ msgstr ""
511
  "ex : jour = 1, mois = 1, année = vide, intervalle = -1 fixera un filtre "
512
  "année à date)"
513
 
514
- #: ../../admin/wp-slimstat-admin.php:745
515
  msgid "SERP Position"
516
  msgstr "Position SERP "
517
 
518
- #: ../../admin/wp-slimstat-admin.php:745
519
  msgid ""
520
  "set the filter to Referer contains cd=N&, where N is the position you are "
521
  "looking for"
@@ -523,7 +526,7 @@ msgstr ""
523
  "Réglez le filtre sur Référent contient cd=N&, où N est la position que vous "
524
  "recherchez"
525
 
526
- #: ../../admin/wp-slimstat-admin.php:754
527
  msgid ""
528
  " And for keeping an eye on your visitors with <a href=\"http://slimstat."
529
  "getused.to.it/\">WP SlimStat</a>."
@@ -600,9 +603,8 @@ msgid "Tracker"
600
  msgstr "Traçage"
601
 
602
  #: ../../admin/config/index.php:21
603
- #, fuzzy
604
  msgid "Enable Tracking"
605
- msgstr "Activez le traçage"
606
 
607
  #: ../../admin/config/index.php:21
608
  msgid ""
@@ -613,15 +615,13 @@ msgstr ""
613
  "que vous n'auriez pas si vous désactiviez le plugin.)"
614
 
615
  #: ../../admin/config/index.php:22
616
- #, fuzzy
617
  msgid "Monitor Admin Pages"
618
- msgstr "Tracer Pages d'administrateur"
619
 
620
  #: ../../admin/config/index.php:22
621
- #, fuzzy
622
  msgid "Enable this option to track your users' activity within the admin."
623
  msgstr ""
624
- "Activez cette option si vous voulez suivre l'activité de vos utilisateurs "
625
  "dans l'admin."
626
 
627
  #: ../../admin/config/index.php:23
@@ -629,25 +629,21 @@ msgid "Enable Spy Mode"
629
  msgstr "Activer le mode espion"
630
 
631
  #: ../../admin/config/index.php:23
632
- #, fuzzy
633
  msgid ""
634
  "Collect information about screen resolutions, outbound links, downloads, "
635
  "etc. If Tracking Mode is set to Javascript, this data will be tracked "
636
  "regardless of which value you set for this option."
637
  msgstr ""
638
- "Permet à un code de suivi côté client de recueillir des données sur les "
639
- "résolutions d'écran, les liens sortants, les téléchargements et autres "
640
- "informations pertinentes. Si le mode Javascript est activé, les capacités "
641
- "des navigateurs seront suivis indépendamment de la valeur que vous "
642
- "définissez pour cette option."
643
 
644
  #: ../../admin/config/index.php:24
645
- #, fuzzy
646
  msgid "Tracking Mode"
647
- msgstr "Traçage actif"
648
 
649
  #: ../../admin/config/index.php:24
650
- #, fuzzy
651
  msgid ""
652
  "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
653
  "Total Cache, WP SuperCache, HyperCache, etc). WP SlimStat will behave pretty "
@@ -658,11 +654,10 @@ msgstr ""
658
  "Activez cette fonction si vous utilisez un plugin de mise en cache (W3 Total "
659
  "Cache et autres). WP SlimStat va se comporter un peu comme Google Analytics, "
660
  "et les visiteurs dont le navigateur ne supporte pas le Javascript seront "
661
- "ignorés. Un second effet fera que <strong>la plupart</strong> des spammeurs, "
662
  "moteurs de recherche et autres robots ne seront pas suivis."
663
 
664
  #: ../../admin/config/index.php:24
665
- #, fuzzy
666
  msgid "Javascript"
667
  msgstr "Mode Javascript"
668
 
@@ -679,14 +674,12 @@ msgid "Menu Position"
679
  msgstr "Position du Menu"
680
 
681
  #: ../../admin/config/index.php:27
682
- #, fuzzy
683
  msgid ""
684
  "Choose between a standalone admin menu for WP SlimStat or a drop down in the "
685
  "admin bar (if visible)."
686
  msgstr ""
687
- "Vous permet de décider si vous voulez avoir un menu d'administration "
688
- "autonome pour WP SlimStat ou un menu déroulant dans la barre "
689
- "d'administrateur."
690
 
691
  #: ../../admin/config/index.php:27
692
  msgid "Side Menu"
@@ -697,17 +690,15 @@ msgid "Admin Bar"
697
  msgstr "Barre d'Administration"
698
 
699
  #: ../../admin/config/index.php:28
700
- #, fuzzy
701
  msgid "Add Stats to Posts"
702
- msgstr "Ajouter une colonne aux Articles"
703
 
704
  #: ../../admin/config/index.php:28
705
- #, fuzzy
706
  msgid ""
707
  "Add a new column to the Edit Posts screen, with the number of hits per post."
708
  msgstr ""
709
- "Ajoute une nouvelle colonne à l'écran d'édition des articles, en indiquant "
710
- "le nombre de visites par article (peut ralentir le rendu des pages)."
711
 
712
  #: ../../admin/config/index.php:30
713
  msgid "Database"
@@ -732,21 +723,20 @@ msgid "Next clean-up on"
732
  msgstr "Prochain nettoyage le"
733
 
734
  #: ../../admin/config/index.php:31
735
- #, fuzzy, php-format
736
  msgid "Entries logged on or before %s will be permanently deleted."
737
  msgstr ""
738
- "Les données enregistrées le ou avant le %s seront détruites définitivement. "
739
 
740
  #: ../../admin/config/index.php:31 ../../admin/view/index.php:77
741
  #: ../../admin/view/wp-slimstat-db.php:90
742
- #: ../../admin/view/wp-slimstat-reports.php:742
743
  msgid "days"
744
  msgstr "jours"
745
 
746
  #: ../../admin/config/index.php:46
747
- #, fuzzy
748
  msgid "Data and Formats"
749
- msgstr "Date et heure"
750
 
751
  #: ../../admin/config/index.php:47
752
  msgid "Convert IP Addresses"
@@ -761,12 +751,11 @@ msgid "Number Format"
761
  msgstr "Format des nombres"
762
 
763
  #: ../../admin/config/index.php:48
764
- #, fuzzy
765
  msgid ""
766
  "Choose the number format you want to use for your reports, European or "
767
  "American."
768
  msgstr ""
769
- "Choisissez ce format numérique que vous souhaitez utiliser, européen ou "
770
  "américain."
771
 
772
  #: ../../admin/config/index.php:49
@@ -774,7 +763,6 @@ msgid "Show Display Name"
774
  msgstr "Voir Nom d'affichage"
775
 
776
  #: ../../admin/config/index.php:49
777
- #, fuzzy
778
  msgid ""
779
  "By default, users are listed by their usernames. Use this option to "
780
  "visualize their display names instead."
@@ -816,14 +804,13 @@ msgid "Asynchronous Views"
816
  msgstr "Vues asynchrones"
817
 
818
  #: ../../admin/config/index.php:54
819
- #, fuzzy
820
  msgid ""
821
  "Load all the reports dynamically. It makes the reports render faster, but it "
822
  "increases the load on your server."
823
  msgstr ""
824
- "Utiliser Ajax pour charger toutes les statistiques à l'exécution. Fait "
825
- "apparaitre les panneaux plus rapidement, mais augmente la charge sur votre "
826
- "serveur."
827
 
828
  #: ../../admin/config/index.php:55
829
  msgid "Expand Details"
@@ -836,31 +823,28 @@ msgstr ""
836
  "souris."
837
 
838
  #: ../../admin/config/index.php:56 ../../admin/config/index.php:60
839
- #, fuzzy
840
  msgid "Rows to Display"
841
- msgstr "Aucune donnée à afficher"
842
 
843
  #: ../../admin/config/index.php:56
844
  msgid "Specify the number of items in each report."
845
  msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
846
 
847
  #: ../../admin/config/index.php:58
848
- #, fuzzy
849
  msgid "Right Now Screen"
850
- msgstr "Maintenant"
851
 
852
  #: ../../admin/config/index.php:59
853
  msgid "Live Stream"
854
  msgstr "Flux en temps réel (Flux live)"
855
 
856
  #: ../../admin/config/index.php:59
857
- #, fuzzy
858
  msgid ""
859
  "Enable the Live view, which refreshes the Right Now screen every X seconds. "
860
  "Enter <strong>0</strong> (number zero) to disable this functionality."
861
  msgstr ""
862
- "Actualisez la vue 'Maintenant' toutes les X secondes. Zéro désactive cette "
863
- "fonctionnalité."
864
 
865
  #: ../../admin/config/index.php:59 ../../admin/config/index.php:210
866
  msgid "seconds"
@@ -871,9 +855,8 @@ msgid "Specify the number of items in Right Now."
871
  msgstr ""
872
 
873
  #: ../../admin/config/index.php:61
874
- #, fuzzy
875
  msgid "Right Now Extended"
876
- msgstr "Maintenant"
877
 
878
  #: ../../admin/config/index.php:61
879
  #, fuzzy
@@ -886,40 +869,34 @@ msgstr ""
886
  "les systèmes plus lents."
887
 
888
  #: ../../admin/config/index.php:66
889
- #, fuzzy
890
  msgid "Visitors and Known Users"
891
- msgstr "Utilisateurs connus"
892
 
893
  #: ../../admin/config/index.php:67
894
- #, fuzzy
895
  msgid "Track Registered Users"
896
- msgstr "Tracer les utilisateurs"
897
 
898
  #: ../../admin/config/index.php:67
899
- #, fuzzy
900
  msgid "Enable this option to track logged in users."
901
- msgstr "Sélectionnez OUI si vous voulez suivre les utilisateurs connectés."
902
 
903
  #: ../../admin/config/index.php:68
904
- #, fuzzy
905
  msgid "Blacklist by Username"
906
- msgstr "Adresse IP"
907
 
908
  #: ../../admin/config/index.php:68
909
- #, fuzzy
910
  msgid ""
911
  "List all the usernames you don't want to track, separated by commas. Please "
912
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
913
  "sensitive."
914
  msgstr ""
915
  "Entrez une liste d'utilisateurs WordPress que vous ne voulez pas suivre, "
916
- "séparés par des virgules. Veuillez noter que les espaces <em>ne sont pas</"
917
- "em> ignorés et que les noms d'utilisateurs sont sensibles à la casse."
918
 
919
  #: ../../admin/config/index.php:69
920
- #, fuzzy
921
  msgid "Blacklist by IP Address"
922
- msgstr "Adresse IP"
923
 
924
  #: ../../admin/config/index.php:69
925
  #, fuzzy
@@ -938,9 +915,8 @@ msgstr ""
938
  "pas suivre correctement les pages vues."
939
 
940
  #: ../../admin/config/index.php:70
941
- #, fuzzy
942
  msgid "Blacklist by Capability"
943
- msgstr "Utilisateurs par Capacité"
944
 
945
  #: ../../admin/config/index.php:70
946
  msgid ""
@@ -1062,15 +1038,14 @@ msgid "Enable Privacy Mode"
1062
  msgstr "Activer le mode privé"
1063
 
1064
  #: ../../admin/config/index.php:80
1065
- #, fuzzy
1066
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
1067
  msgstr ""
1068
- "Cette option masque le dernier octet de l'adresse IP de vos visiteurs afin "
1069
- "de se conformer aux lois de confidentialité européennes."
1070
 
1071
  #: ../../admin/config/index.php:81
1072
  msgid "Ignore Prefetch Requests"
1073
- msgstr ""
1074
 
1075
  #: ../../admin/config/index.php:81
1076
  #, fuzzy
@@ -1097,9 +1072,8 @@ msgstr ""
1097
  "d'informations"
1098
 
1099
  #: ../../admin/config/index.php:130
1100
- #, fuzzy
1101
  msgid "Reports"
1102
- msgstr "Rapports personnalisés"
1103
 
1104
  #: ../../admin/config/index.php:131
1105
  msgid "Restrict Authors"
@@ -1114,9 +1088,8 @@ msgstr ""
1114
  "statistiques relatives à leur propre contenu."
1115
 
1116
  #: ../../admin/config/index.php:132 ../../admin/config/index.php:136
1117
- #, fuzzy
1118
  msgid "Capability"
1119
- msgstr "Capacité de voir"
1120
 
1121
  #: ../../admin/config/index.php:132
1122
  #, fuzzy
@@ -1168,19 +1141,16 @@ msgstr ""
1168
  "Dans ce cas, la liste a la priorité sur la capacité."
1169
 
1170
  #: ../../admin/config/index.php:137
1171
- #, fuzzy
1172
  msgid ""
1173
  "List all the users who can edit these options, separated by commas. Please "
1174
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
1175
  "not forget to include yourself! Usernames are case sensitive."
1176
  msgstr ""
1177
- "Lister tous les utilisateurs qui peuvent modifier ces options, séparées par "
1178
  "des virgules. Veuillez noter que les administrateurs <strong>ne sont pas</"
1179
- "strong> implicitement autorisé, alors n'oubliez pas de vous inscrire! Si ce "
1180
- "champ est vide, <strong>tous vos utilisateurs</strong> (sauf "
1181
- "<em>Subscribers</em>) auront accès. Les utilisateurs répertoriés ici "
1182
- "héritent automatiquement de l '\"Accès en lecture \"pour les rapports. Les "
1183
- "noms d'utilisateurs sont sensibles à la casse."
1184
 
1185
  #: ../../admin/config/index.php:153
1186
  msgid "Read access: username not found"
@@ -1244,11 +1214,10 @@ msgid "Extend Session"
1244
  msgstr "Etendre la session"
1245
 
1246
  #: ../../admin/config/index.php:211
1247
- #, fuzzy
1248
  msgid "Extend the duration of a session each time the user visits a new page."
1249
  msgstr ""
1250
- "Prolonge la durée d'une session à chaque fois que l'utilisateur visite une "
1251
- "page, par le nombre de secondes défini ci-dessus."
1252
 
1253
  #: ../../admin/config/index.php:212
1254
  msgid "Enable CDN"
@@ -1270,7 +1239,6 @@ msgid "Extensions to Track"
1270
  msgstr "Extensions du traçage"
1271
 
1272
  #: ../../admin/config/index.php:213
1273
- #, fuzzy
1274
  msgid ""
1275
  "List all the file extensions that you want to be treated as Downloads. "
1276
  "Please note that links pointing to external resources (i.e. PDFs on a "
@@ -1373,19 +1341,16 @@ msgid "switch to InnoDB"
1373
  msgstr "changer pour InnoDB"
1374
 
1375
  #: ../../admin/config/maintenance.php:101
1376
- #, fuzzy
1377
  msgid "records"
1378
  msgstr "Enregistrements"
1379
 
1380
  #: ../../admin/config/maintenance.php:106
1381
- #, fuzzy
1382
  msgid "Data Maintenance"
1383
- msgstr "Maintenance"
1384
 
1385
  #: ../../admin/config/maintenance.php:109
1386
- #, fuzzy
1387
  msgid "Delete pageviews where"
1388
- msgstr "Supprimer les enregistrement où"
1389
 
1390
  #: ../../admin/config/maintenance.php:123 ../../admin/view/index.php:17
1391
  msgid "equals"
@@ -1445,57 +1410,54 @@ msgid "Apply"
1445
  msgstr "Appliquer"
1446
 
1447
  #: ../../admin/config/maintenance.php:139
1448
- #, fuzzy
1449
  msgid ""
1450
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1451
  msgstr ""
1452
- "Etes-vous sûr de vouloir supprimer définitivement ces enregistrement de "
1453
- "votre base de données?"
1454
 
1455
  #: ../../admin/config/maintenance.php:144
1456
  msgid "Empty Database"
1457
  msgstr "Vider la base de données"
1458
 
1459
  #: ../../admin/config/maintenance.php:147
1460
- #, fuzzy
1461
  msgid ""
1462
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1463
  "database?"
1464
  msgstr ""
1465
- "Etes-vous sûr de vouloir supprimer définitivement ces enregistrement de "
1466
- "votre base de données?"
1467
 
1468
  #: ../../admin/config/maintenance.php:147
1469
- #, fuzzy
1470
  msgid "Delete All Pageviews"
1471
- msgstr "Pages Vues Directes"
1472
 
1473
  #: ../../admin/config/maintenance.php:148
1474
  msgid ""
1475
  "Erase all the information collected so far by WP SlimStat. This operation "
1476
  "<strong>does not</strong> reset your settings."
1477
  msgstr ""
 
 
1478
 
1479
  #: ../../admin/config/maintenance.php:152
1480
- #, fuzzy
1481
  msgid "Reset Reports"
1482
- msgstr "Rapports personnalisés"
1483
 
1484
  #: ../../admin/config/maintenance.php:155
1485
- #, fuzzy
1486
  msgid ""
1487
  "Are you sure you want to restore the default arrangement of your reports?"
1488
- msgstr "Etes-vous sûr que vous voulez réinitialiser vos onglets?"
1489
 
1490
  #: ../../admin/config/maintenance.php:155
1491
  msgid "No Panic Button"
1492
- msgstr ""
1493
 
1494
  #: ../../admin/config/maintenance.php:156
1495
  msgid ""
1496
  "Reset the default arrangement of your reports. Helpful when, for some "
1497
  "reason, reports disappear from your panels."
1498
- msgstr ""
1499
 
1500
  #: ../../admin/config/maintenance.php:160
1501
  msgid "Performance"
@@ -1506,14 +1468,12 @@ msgid "Improve Performance"
1506
  msgstr "Improve la performance"
1507
 
1508
  #: ../../admin/config/maintenance.php:164
1509
- #, fuzzy
1510
  msgid ""
1511
  "Please note that you will need about 30% more DB space to store the extra "
1512
  "information required."
1513
  msgstr ""
1514
- "Utilisez cette fonction si vous voulez améliorer la performance globale de "
1515
- "vos statistiques. Vous aurez besoin d'environ 30% de plus d'espace de base "
1516
- "de données, pour stocker les informations supplémentaires nécessaires."
1517
 
1518
  #: ../../admin/config/maintenance.php:168
1519
  msgid "Save DB Space"
@@ -1528,9 +1488,8 @@ msgstr ""
1528
  "SlimStats seront impactées."
1529
 
1530
  #: ../../admin/config/maintenance.php:174
1531
- #, fuzzy
1532
  msgid "Import and Export"
1533
- msgstr "l'auteur de l'article"
1534
 
1535
  #: ../../admin/config/maintenance.php:178
1536
  msgid ""
@@ -1540,9 +1499,8 @@ msgid ""
1540
  msgstr ""
1541
 
1542
  #: ../../admin/config/maintenance.php:183
1543
- #, fuzzy
1544
  msgid "Import"
1545
- msgstr "Support"
1546
 
1547
  #: ../../admin/config/maintenance.php:184
1548
  msgid "Are you sure you want to OVERWRITE your current settings?"
@@ -1972,8 +1930,9 @@ msgstr "Azéri"
1972
 
1973
  # Azerbaijani
1974
  #: ../../admin/lang/dynamic_strings.php:92
 
1975
  msgid "l-az-az"
1976
- msgstr "Azeri"
1977
 
1978
  # Belarusian
1979
  #: ../../admin/lang/dynamic_strings.php:93
@@ -1983,7 +1942,7 @@ msgstr "Biélorusse"
1983
  # Belarusian
1984
  #: ../../admin/lang/dynamic_strings.php:94
1985
  msgid "l-be-by"
1986
- msgstr "Bielorusse"
1987
 
1988
  # Bulgarian
1989
  #: ../../admin/lang/dynamic_strings.php:95
@@ -2008,6 +1967,7 @@ msgstr "Catalan; Valencien"
2008
 
2009
  # Catalan; Valencian
2010
  #: ../../admin/lang/dynamic_strings.php:99
 
2011
  msgid "l-ca-es"
2012
  msgstr "Catalan; Valencien"
2013
 
@@ -2019,7 +1979,7 @@ msgstr "Tchèque"
2019
  # Czech
2020
  #: ../../admin/lang/dynamic_strings.php:101
2021
  msgid "l-cs-cz"
2022
- msgstr "Tcheque"
2023
 
2024
  # Welsh
2025
  #: ../../admin/lang/dynamic_strings.php:102
@@ -2028,6 +1988,7 @@ msgstr "Gallois"
2028
 
2029
  # Welsh
2030
  #: ../../admin/lang/dynamic_strings.php:103
 
2031
  msgid "l-cy-gb"
2032
  msgstr "Gallois"
2033
 
@@ -2038,6 +1999,7 @@ msgstr "Danois"
2038
 
2039
  # Danish
2040
  #: ../../admin/lang/dynamic_strings.php:105
 
2041
  msgid "l-da-dk"
2042
  msgstr "Danois"
2043
 
@@ -2078,6 +2040,7 @@ msgstr "Dhivehi; Divehi; Maldivien"
2078
 
2079
  # Dhivehi; Divehi; Maldivian
2080
  #: ../../admin/lang/dynamic_strings.php:113
 
2081
  msgid "l-dv-mv"
2082
  msgstr "Dhivehi; Divehi; Maldivien"
2083
 
@@ -2320,8 +2283,9 @@ msgstr "Féringien"
2320
 
2321
  # Faroese
2322
  #: ../../admin/lang/dynamic_strings.php:160
 
2323
  msgid "l-fo-fo"
2324
- msgstr "Ferigien"
2325
 
2326
  # French
2327
  #: ../../admin/lang/dynamic_strings.php:161
@@ -2355,8 +2319,9 @@ msgstr "Français (Luxembourg)"
2355
 
2356
  # French (Switzerland)
2357
  #: ../../admin/lang/dynamic_strings.php:167
 
2358
  msgid "l-fr-mc"
2359
- msgstr "Francais (Suisse)"
2360
 
2361
  # Galician
2362
  #: ../../admin/lang/dynamic_strings.php:168
@@ -2375,8 +2340,9 @@ msgstr "Gujarâtî"
2375
 
2376
  # Gujarati
2377
  #: ../../admin/lang/dynamic_strings.php:171
 
2378
  msgid "l-gu-in"
2379
- msgstr "Guarate"
2380
 
2381
  # Hebrew
2382
  #: ../../admin/lang/dynamic_strings.php:172
@@ -2395,8 +2361,9 @@ msgstr "Hindî"
2395
 
2396
  # Hindi
2397
  #: ../../admin/lang/dynamic_strings.php:175
 
2398
  msgid "l-hi-in"
2399
- msgstr "Hindi"
2400
 
2401
  # Croatian
2402
  #: ../../admin/lang/dynamic_strings.php:176
@@ -2432,8 +2399,9 @@ msgstr "Arménien"
2432
 
2433
  # Armenian
2434
  #: ../../admin/lang/dynamic_strings.php:182
 
2435
  msgid "l-hy-am"
2436
- msgstr "Armènien"
2437
 
2438
  # Indonesian
2439
  #: ../../admin/lang/dynamic_strings.php:183
@@ -2442,8 +2410,9 @@ msgstr "Indonésien"
2442
 
2443
  # Indonesian
2444
  #: ../../admin/lang/dynamic_strings.php:184
 
2445
  msgid "l-id-id"
2446
- msgstr "Indonèsien"
2447
 
2448
  # Icelandic
2449
  #: ../../admin/lang/dynamic_strings.php:185
@@ -2488,8 +2457,9 @@ msgstr "Géorgien"
2488
 
2489
  # Georgian
2490
  #: ../../admin/lang/dynamic_strings.php:193
 
2491
  msgid "l-ka-ge"
2492
- msgstr "Gèorgian"
2493
 
2494
  # Kazakh
2495
  #: ../../admin/lang/dynamic_strings.php:194
@@ -2525,13 +2495,15 @@ msgstr "Coréen (République de Corée)"
2525
 
2526
  # Korean
2527
  #: ../../admin/lang/dynamic_strings.php:200
 
2528
  msgid "l-kok"
2529
- msgstr "Corèen"
2530
 
2531
  # Korean
2532
  #: ../../admin/lang/dynamic_strings.php:201
 
2533
  msgid "l-kok-in"
2534
- msgstr "Corèen"
2535
 
2536
  # Kirghiz; Kyrgyz
2537
  #: ../../admin/lang/dynamic_strings.php:202
@@ -2583,8 +2555,9 @@ msgstr "Macédonien"
2583
 
2584
  # Macedonian
2585
  #: ../../admin/lang/dynamic_strings.php:211
 
2586
  msgid "l-mk-ml"
2587
- msgstr "Macedonien"
2588
 
2589
  # Mongolian
2590
  #: ../../admin/lang/dynamic_strings.php:212
@@ -2604,8 +2577,9 @@ msgstr "Marâthî"
2604
 
2605
  # Marathi
2606
  #: ../../admin/lang/dynamic_strings.php:215
 
2607
  msgid "l-mr-in"
2608
- msgstr "Mareto"
2609
 
2610
  # Malay
2611
  #: ../../admin/lang/dynamic_strings.php:216
@@ -2642,8 +2616,9 @@ msgstr "Norvégien Bokmål"
2642
 
2643
  # Norwegian BokmÃ¥l
2644
  #: ../../admin/lang/dynamic_strings.php:222
 
2645
  msgid "l-nb-no"
2646
- msgstr "Norvegien"
2647
 
2648
  # Dutch; Flemish
2649
  #: ../../admin/lang/dynamic_strings.php:223
@@ -2662,8 +2637,9 @@ msgstr "Néerlandais (Pays-bas)"
2662
 
2663
  # Norwegian Nynorsk
2664
  #: ../../admin/lang/dynamic_strings.php:226
 
2665
  msgid "l-nn-no"
2666
- msgstr "Norvegien"
2667
 
2668
  #: ../../admin/lang/dynamic_strings.php:227
2669
  msgid "l-ns"
@@ -2680,8 +2656,9 @@ msgstr "Panjâbî"
2680
 
2681
  # Panjabi; Punjabi
2682
  #: ../../admin/lang/dynamic_strings.php:230
 
2683
  msgid "l-pa-in"
2684
- msgstr "Panjabi"
2685
 
2686
  # Polish
2687
  #: ../../admin/lang/dynamic_strings.php:231
@@ -2769,6 +2746,7 @@ msgstr "Sanskrit"
2769
 
2770
  # Sanskrit
2771
  #: ../../admin/lang/dynamic_strings.php:247
 
2772
  msgid "l-sa-in"
2773
  msgstr "Sanskrit"
2774
 
@@ -2802,6 +2780,7 @@ msgstr "Slovaque"
2802
 
2803
  # Slovak
2804
  #: ../../admin/lang/dynamic_strings.php:253
 
2805
  msgid "l-sk-sk"
2806
  msgstr "Slovaque"
2807
 
@@ -2812,8 +2791,9 @@ msgstr "Slovène"
2812
 
2813
  # Slovenian
2814
  #: ../../admin/lang/dynamic_strings.php:255
 
2815
  msgid "l-sl-si"
2816
- msgstr "Sloveine"
2817
 
2818
  # Albanian
2819
  #: ../../admin/lang/dynamic_strings.php:256
@@ -2882,8 +2862,9 @@ msgstr "Télougou"
2882
 
2883
  # Telugu
2884
  #: ../../admin/lang/dynamic_strings.php:268
 
2885
  msgid "l-te-in"
2886
- msgstr "Telougou"
2887
 
2888
  # Thai
2889
  #: ../../admin/lang/dynamic_strings.php:269
@@ -3039,7 +3020,7 @@ msgstr "Zoulou"
3039
 
3040
  # Unknown
3041
  #: ../../admin/lang/dynamic_strings.php:298
3042
- #: ../../admin/view/wp-slimstat-reports.php:485
3043
  msgid "l-"
3044
  msgstr "Inconnue"
3045
 
@@ -3057,11 +3038,11 @@ msgstr "Inconnue"
3057
  msgid "c-xy"
3058
  msgstr "Local"
3059
 
3060
- #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:763
3061
  msgid "Today"
3062
  msgstr "Aujourd'hui"
3063
 
3064
- #: ../../admin/view/index.php:49 ../../admin/view/wp-slimstat-reports.php:764
3065
  msgid "Yesterday"
3066
  msgstr "Hier"
3067
 
@@ -3070,24 +3051,21 @@ msgid "Last 7 Days"
3070
  msgstr "7 derniers jours"
3071
 
3072
  #: ../../admin/view/index.php:51
3073
- #, fuzzy
3074
  msgid "Last 60 Days"
3075
- msgstr "30 dernières minutes"
3076
 
3077
  #: ../../admin/view/index.php:52
3078
- #, fuzzy
3079
  msgid "Last 90 Days"
3080
- msgstr "30 dernières minutes"
3081
 
3082
  #: ../../admin/view/index.php:53
3083
  #, fuzzy
3084
- msgid "This Year"
3085
- msgstr "Année"
3086
 
3087
  #: ../../admin/view/index.php:54
3088
- #, fuzzy
3089
  msgid "Date Range"
3090
- msgstr "Date et heure"
3091
 
3092
  #: ../../admin/view/index.php:56 ../../admin/view/wp-slimstat-db.php:87
3093
  msgid "Day"
@@ -3102,9 +3080,8 @@ msgid "Year"
3102
  msgstr "Année"
3103
 
3104
  #: ../../admin/view/index.php:80
3105
- #, fuzzy
3106
  msgid "Reset Filters"
3107
- msgstr "Filtres de dates"
3108
 
3109
  #: ../../admin/view/index.php:117
3110
  msgid "Your report here"
@@ -3128,9 +3105,9 @@ msgstr ""
3128
  "mon <a href=\"http://lab.duechiacchiere.it/\" target=\"_blank\">forum "
3129
  "d'aide</a>."
3130
 
3131
- #: ../../admin/view/index.php:133 ../../admin/view/wp-slimstat-reports.php:754
3132
- #: ../../admin/view/wp-slimstat-reports.php:856
3133
- #: ../../admin/view/wp-slimstat-reports.php:1140
3134
  msgid "Pageviews"
3135
  msgstr "Pages vues"
3136
 
@@ -3145,13 +3122,11 @@ msgstr ""
3145
  "les visiteurs qui reviennent, y compris les utilisateurs enregistrés."
3146
 
3147
  #: ../../admin/view/index.php:140
3148
- #, fuzzy
3149
  msgid "Take a sneak peek at what human visitors are doing on your website."
3150
- msgstr ""
3151
- "Jetez un coup d'oeil à ce que les visiteurs humains font sur votre site"
3152
 
3153
  #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
3154
- #: ../../admin/view/index.php:184 ../../admin/view/right-now.php:146
3155
  msgid "Color codes"
3156
  msgstr "Codes couleur"
3157
 
@@ -3170,11 +3145,10 @@ msgid "Other Humans"
3170
  msgstr "Autres humains"
3171
 
3172
  #: ../../admin/view/index.php:144
3173
- #, fuzzy
3174
  msgid "Keywords used by your visitors to find your website on a search engine."
3175
  msgstr ""
3176
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
3177
- "de recherche"
3178
 
3179
  #: ../../admin/view/index.php:147
3180
  msgid ""
@@ -3182,6 +3156,10 @@ msgid ""
3182
  "measures your site's rankings. Values are updated every 12 hours. Filters "
3183
  "set above don't apply to this report."
3184
  msgstr ""
 
 
 
 
3185
 
3186
  #: ../../admin/view/index.php:150
3187
  msgid ""
@@ -3190,6 +3168,11 @@ msgid ""
3190
  "detect viruses and other treats. Please note that no confidential "
3191
  "information is being sent to HackerNinja."
3192
  msgstr ""
 
 
 
 
 
3193
 
3194
  #: ../../admin/view/index.php:153
3195
  msgid "Human Visits"
@@ -3283,9 +3266,8 @@ msgid "Human"
3283
  msgstr "Humain"
3284
 
3285
  #: ../../admin/view/right-now.php:8
3286
- #, fuzzy
3287
  msgid "Bot/Crawler"
3288
- msgstr "Crawler"
3289
 
3290
  #: ../../admin/view/right-now.php:8
3291
  msgid "Mobile Device"
@@ -3296,64 +3278,61 @@ msgid "Syndication Reader"
3296
  msgstr "Lecteur de Flux (Syndication)"
3297
 
3298
  #: ../../admin/view/right-now.php:28
3299
- #: ../../admin/view/wp-slimstat-reports.php:428
3300
- #: ../../admin/view/wp-slimstat-reports.php:669
3301
  msgid "No data to display"
3302
  msgstr "Aucune donnée à afficher"
3303
 
3304
  # Unknown
3305
- #: ../../admin/view/right-now.php:53
3306
- #: ../../admin/view/wp-slimstat-reports.php:473
3307
- #: ../../admin/view/wp-slimstat-reports.php:707
3308
- #: ../../admin/view/wp-slimstat-reports.php:1027
3309
  msgid "c-"
3310
  msgstr "Inconnu"
3311
 
3312
- #: ../../admin/view/right-now.php:119
3313
- #: ../../admin/view/wp-slimstat-reports.php:527
3314
- #: ../../admin/view/wp-slimstat-reports.php:531
3315
- #: ../../admin/view/wp-slimstat-reports.php:689
3316
- #: ../../admin/view/wp-slimstat-reports.php:727
3317
  msgid "Open this URL in a new window"
3318
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
3319
 
3320
- #: ../../admin/view/right-now.php:122
3321
  msgid "Local search results page"
3322
  msgstr "Page de résultat d'une recherche locale"
3323
 
3324
- #: ../../admin/view/right-now.php:129
3325
  msgid "Open this referrer in a new window"
3326
  msgstr "Ouvrir ce référent dans une nouvelle fenêtre"
3327
 
3328
- #: ../../admin/view/right-now.php:130
3329
  msgid "Open this outbound link in a new window"
3330
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
3331
 
3332
- #: ../../admin/view/right-now.php:131
3333
- #, fuzzy
3334
  msgid "Date and Time"
3335
  msgstr "Date/Heure"
3336
 
3337
- #: ../../admin/view/right-now.php:132
3338
- #, fuzzy
3339
  msgid "Content Type"
3340
- msgstr "Contenu"
3341
 
3342
- #: ../../admin/view/right-now.php:147
3343
  msgid "Visit with keywords"
3344
  msgstr "Visite avec mots clés"
3345
 
3346
- #: ../../admin/view/right-now.php:149
3347
- #, fuzzy
3348
  msgid "Known User"
3349
- msgstr "Utilisateurs connus"
3350
 
3351
- #: ../../admin/view/right-now.php:150
3352
  #, fuzzy
3353
  msgid "Human Visitor"
3354
  msgstr "Visiteurs humains"
3355
 
3356
- #: ../../admin/view/right-now.php:151
3357
  msgid "Bot or Crawler"
3358
  msgstr "Robot ou Crawler"
3359
 
@@ -3383,9 +3362,8 @@ msgid "Hour"
3383
  msgstr "Heure"
3384
 
3385
  #: ../../admin/view/wp-slimstat-db.php:92
3386
- #, fuzzy
3387
  msgid "Order Direction"
3388
- msgstr "Macromedia Director"
3389
 
3390
  #: ../../admin/view/wp-slimstat-db.php:93
3391
  msgid "Limit Results"
@@ -3393,7 +3371,7 @@ msgstr "Limiter les résultats"
3393
 
3394
  #: ../../admin/view/wp-slimstat-db.php:94
3395
  msgid "Start From"
3396
- msgstr "A partir de"
3397
 
3398
  #: ../../admin/view/wp-slimstat-reports.php:41
3399
  msgid "Pageviews (chart)"
@@ -3453,10 +3431,9 @@ msgstr "Classements"
3453
 
3454
  #: ../../admin/view/wp-slimstat-reports.php:53
3455
  msgid "Security Scan"
3456
- msgstr "Scan de sécurity"
3457
 
3458
  #: ../../admin/view/wp-slimstat-reports.php:54
3459
- #, fuzzy
3460
  msgid "Top Language Families"
3461
  msgstr "Top Langues"
3462
 
@@ -3710,82 +3687,82 @@ msgstr "%s par Heure"
3710
  msgid "Monthly %s"
3711
  msgstr "%s par Mois"
3712
 
3713
- #: ../../admin/view/wp-slimstat-reports.php:455
3714
  msgid "Category ID"
3715
  msgstr "l'ID de la catégorie de l'article"
3716
 
3717
- #: ../../admin/view/wp-slimstat-reports.php:488
3718
  msgid "OS Code"
3719
  msgstr "Code OS "
3720
 
3721
- #: ../../admin/view/wp-slimstat-reports.php:498
3722
  msgid "Referrer"
3723
  msgstr "Référent"
3724
 
3725
- #: ../../admin/view/wp-slimstat-reports.php:522
3726
- #: ../../admin/view/wp-slimstat-reports.php:791
3727
- #: ../../admin/view/wp-slimstat-reports.php:800
3728
- #: ../../admin/view/wp-slimstat-reports.php:806
3729
- #: ../../admin/view/wp-slimstat-reports.php:812
3730
- #: ../../admin/view/wp-slimstat-reports.php:818
3731
- #: ../../admin/view/wp-slimstat-reports.php:824
3732
- #: ../../admin/view/wp-slimstat-reports.php:830
3733
- #: ../../admin/view/wp-slimstat-reports.php:836
3734
  msgid "Hits"
3735
  msgstr "Hits"
3736
 
3737
- #: ../../admin/view/wp-slimstat-reports.php:686
3738
  msgid "Search for"
3739
  msgstr "Recherche pour"
3740
 
3741
- #: ../../admin/view/wp-slimstat-reports.php:717
3742
- #: ../../admin/view/wp-slimstat-reports.php:727
3743
  msgid "Source"
3744
  msgstr "Source"
3745
 
3746
- #: ../../admin/view/wp-slimstat-reports.php:719
3747
  msgid "Keywords"
3748
  msgstr "les mots clés"
3749
 
3750
- #: ../../admin/view/wp-slimstat-reports.php:727
3751
  #, php-format
3752
  msgid "Filter results where resource equals %s"
3753
  msgstr "Filtrer les résultats où la ressource égale %s"
3754
 
3755
- #: ../../admin/view/wp-slimstat-reports.php:737
3756
  msgid "Total Pageviews"
3757
  msgstr "Total Pages Vues"
3758
 
3759
- #: ../../admin/view/wp-slimstat-reports.php:738
3760
  msgid "DB Size"
3761
  msgstr "Taille de la base de données"
3762
 
3763
- #: ../../admin/view/wp-slimstat-reports.php:739
3764
  msgid "Tracking Active"
3765
  msgstr "Traçage actif"
3766
 
3767
- #: ../../admin/view/wp-slimstat-reports.php:740
3768
  msgid "Javascript Mode"
3769
  msgstr "Mode Javascript"
3770
 
3771
- #: ../../admin/view/wp-slimstat-reports.php:741
3772
  msgid "Tracking Browser Caps"
3773
  msgstr "Traçage Capacités Navigateurs"
3774
 
3775
- #: ../../admin/view/wp-slimstat-reports.php:742
3776
  msgid "Auto purge"
3777
  msgstr "Purge automatique"
3778
 
3779
- #: ../../admin/view/wp-slimstat-reports.php:743
3780
  msgid "Oldest pageview"
3781
  msgstr "Plus ancienne page vue"
3782
 
3783
- #: ../../admin/view/wp-slimstat-reports.php:743
3784
  msgid "No visits"
3785
  msgstr "Aucune visite"
3786
 
3787
- #: ../../admin/view/wp-slimstat-reports.php:753
3788
- #: ../../admin/view/wp-slimstat-reports.php:855
3789
  msgid ""
3790
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
3791
  "time the tracking code is executed."
@@ -3793,16 +3770,16 @@ msgstr ""
3793
  "Une demande pour charger un fichier HTML. WP SlimStat enregistre un \"pages "
3794
  "vues \" chaque fois que le code de traçage est exécuté."
3795
 
3796
- #: ../../admin/view/wp-slimstat-reports.php:755
3797
  msgid "How many pages have been visited on average during the current period."
3798
  msgstr ""
3799
  "Combien de pages ont été visitées en moyenne au cours de la période en cours."
3800
 
3801
- #: ../../admin/view/wp-slimstat-reports.php:756
3802
  msgid "Average Pageviews"
3803
  msgstr "Nombre de pages vues en moyenne"
3804
 
3805
- #: ../../admin/view/wp-slimstat-reports.php:757
3806
  msgid ""
3807
  "Visitors who landed on your site after searching for a keyword on Google, "
3808
  "Yahoo, etc."
@@ -3810,11 +3787,11 @@ msgstr ""
3810
  "Visiteurs qui sont arrivés sur votre site après une recherche par mots clés "
3811
  "sur Google, Yahoo, etc"
3812
 
3813
- #: ../../admin/view/wp-slimstat-reports.php:758
3814
  msgid "From Search Results"
3815
  msgstr "Résultat de recherches"
3816
 
3817
- #: ../../admin/view/wp-slimstat-reports.php:759
3818
  msgid ""
3819
  "Used to differentiate between multiple requests to download a file from one "
3820
  "internet address (IP) and requests originating from many distinct addresses"
@@ -3823,23 +3800,23 @@ msgstr ""
3823
  "fichier à partir d'une adresse Internet (IP) unique et les demandes "
3824
  "provenant de plusieurs adresses distinctes"
3825
 
3826
- #: ../../admin/view/wp-slimstat-reports.php:760
3827
- #: ../../admin/view/wp-slimstat-reports.php:775
3828
- #: ../../admin/view/wp-slimstat-reports.php:1140
3829
- #: ../../admin/view/wp-slimstat-reports.php:1144
3830
- #: ../../admin/view/wp-slimstat-reports.php:1148
3831
  msgid "Unique IPs"
3832
  msgstr "IPs uniques"
3833
 
3834
- #: ../../admin/view/wp-slimstat-reports.php:761
3835
  msgid "Last 5 minutes"
3836
  msgstr "5 dernières minutes"
3837
 
3838
- #: ../../admin/view/wp-slimstat-reports.php:762
3839
  msgid "Last 30 minutes"
3840
  msgstr "30 dernières minutes"
3841
 
3842
- #: ../../admin/view/wp-slimstat-reports.php:772
3843
  msgid ""
3844
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3845
  "multiple times if they perform multiple visits."
@@ -3848,16 +3825,16 @@ msgstr ""
3848
  "reviennent sont comptés plusieurs fois s'ils effectuent des visites "
3849
  "multiples."
3850
 
3851
- #: ../../admin/view/wp-slimstat-reports.php:773
3852
  msgid "Human visits"
3853
  msgstr "Visiteurs humains"
3854
 
3855
- #: ../../admin/view/wp-slimstat-reports.php:774
3856
  msgid "It includes only traffic generated by human visitors."
3857
  msgstr "Cela ne comprend que les visites dites humaines."
3858
 
3859
- #: ../../admin/view/wp-slimstat-reports.php:776
3860
- #: ../../admin/view/wp-slimstat-reports.php:867
3861
  msgid ""
3862
  "Percentage of single-page visits, i.e. visits in which the person left your "
3863
  "site from the entrance page."
@@ -3865,76 +3842,76 @@ msgstr ""
3865
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
3866
  "desquelles la personne a quitté votre site dès la page d'entrée."
3867
 
3868
- #: ../../admin/view/wp-slimstat-reports.php:777
3869
  msgid "Bounce rate"
3870
  msgstr "Taux de rebond"
3871
 
3872
- #: ../../admin/view/wp-slimstat-reports.php:778
3873
  msgid "Visitors who had previously left a comment on your blog."
3874
  msgstr "Visiteurs qui ont déjà laissé un commentaire sur votre blog."
3875
 
3876
- #: ../../admin/view/wp-slimstat-reports.php:779
3877
  msgid "Known visitors"
3878
  msgstr "Visiteurs connus"
3879
 
3880
- #: ../../admin/view/wp-slimstat-reports.php:780
3881
  msgid "Human users who visited your site only once."
3882
  msgstr "Visiteurs humains qui ont visité votre site une seule fois."
3883
 
3884
- #: ../../admin/view/wp-slimstat-reports.php:781
3885
  msgid "New visitors"
3886
  msgstr "Nouveaux visiteurs"
3887
 
3888
- #: ../../admin/view/wp-slimstat-reports.php:782
3889
  msgid "Bots"
3890
  msgstr "Robots"
3891
 
3892
- #: ../../admin/view/wp-slimstat-reports.php:783
3893
  msgid "Pages per visit"
3894
  msgstr "Pages vues par visite"
3895
 
3896
- #: ../../admin/view/wp-slimstat-reports.php:784
3897
- #: ../../admin/view/wp-slimstat-reports.php:1153
3898
  msgid "Longest visit"
3899
  msgstr "Visite la plus longue"
3900
 
3901
- #: ../../admin/view/wp-slimstat-reports.php:784
3902
  msgid "hits"
3903
  msgstr "hits"
3904
 
3905
- #: ../../admin/view/wp-slimstat-reports.php:802
3906
  msgid "0 - 30 seconds"
3907
  msgstr "0 - 30 secondes"
3908
 
3909
- #: ../../admin/view/wp-slimstat-reports.php:808
3910
  msgid "31 - 60 seconds"
3911
  msgstr "31 - 60 secondes"
3912
 
3913
- #: ../../admin/view/wp-slimstat-reports.php:814
3914
  msgid "1 - 3 minutes"
3915
  msgstr "1 - 3 minutes"
3916
 
3917
- #: ../../admin/view/wp-slimstat-reports.php:820
3918
  msgid "3 - 5 minutes"
3919
  msgstr "3 - 5 minutes"
3920
 
3921
- #: ../../admin/view/wp-slimstat-reports.php:826
3922
  msgid "5 - 7 minutes"
3923
  msgstr "5 - 7 minutes"
3924
 
3925
- #: ../../admin/view/wp-slimstat-reports.php:832
3926
  msgid "7 - 10 minutes"
3927
  msgstr "7 - 10 minutes"
3928
 
3929
- #: ../../admin/view/wp-slimstat-reports.php:838
3930
  msgid "More than 10 minutes"
3931
  msgstr "Plus de 10 minutes"
3932
 
3933
- #: ../../admin/view/wp-slimstat-reports.php:847
3934
  msgid "Average time on site"
3935
  msgstr "Moyenne du temps passé sur le site"
3936
 
3937
- #: ../../admin/view/wp-slimstat-reports.php:857
3938
  msgid ""
3939
  "A referrer (or referring site) is the site that a visitor previously visited "
3940
  "before following a link to your site."
@@ -3942,11 +3919,11 @@ msgstr ""
3942
  "Un référent (ou site référent) est le site que le visiteur a visité avant de "
3943
  "suivre un lien vers votre site."
3944
 
3945
- #: ../../admin/view/wp-slimstat-reports.php:858
3946
  msgid "Unique Referrers"
3947
  msgstr "Référents uniques"
3948
 
3949
- #: ../../admin/view/wp-slimstat-reports.php:859
3950
  msgid ""
3951
  "Visitors who visited the site by typing the URL directly into their browser. "
3952
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -3959,11 +3936,11 @@ msgstr ""
3959
  "courriels non marquées, ou des liens à partir de documents qui ne "
3960
  "contiennent pas de variables de suivi."
3961
 
3962
- #: ../../admin/view/wp-slimstat-reports.php:860
3963
  msgid "Direct Pageviews"
3964
  msgstr "Pages Vues Directes"
3965
 
3966
- #: ../../admin/view/wp-slimstat-reports.php:861
3967
  msgid ""
3968
  "Visitors who came to your site via searches on Google or some other search "
3969
  "engine."
@@ -3971,11 +3948,11 @@ msgstr ""
3971
  "Visiteurs qui sont venus sur le site via un moteur de recherche comme Google "
3972
  "ou autre."
3973
 
3974
- #: ../../admin/view/wp-slimstat-reports.php:862
3975
  msgid "From a search result"
3976
  msgstr "Depuis un moteur de recherche"
3977
 
3978
- #: ../../admin/view/wp-slimstat-reports.php:863
3979
  msgid ""
3980
  "The first page that a user views during a session. This is also known as the "
3981
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -3987,25 +3964,25 @@ msgstr ""
3987
  "mots clés 'Brooklyn Office Space' et arrive sur votre page d'accueil, elle "
3988
  "sera comptée (pour cette visite) comme la page d'entrée."
3989
 
3990
- #: ../../admin/view/wp-slimstat-reports.php:864
3991
  msgid "Unique Landing Pages"
3992
  msgstr "Pages d'Entrées Uniques"
3993
 
3994
- #: ../../admin/view/wp-slimstat-reports.php:865
3995
  msgid "Number of single-page visits to your site over the selected period."
3996
  msgstr ""
3997
  "Nombre de visites d'une seule page de votre site au cours de la période "
3998
  "sélectionnée."
3999
 
4000
- #: ../../admin/view/wp-slimstat-reports.php:866
4001
  msgid "Bounce Pages"
4002
  msgstr "Pages de Rebonds"
4003
 
4004
- #: ../../admin/view/wp-slimstat-reports.php:868
4005
  msgid "New Visitors Rate"
4006
  msgstr "Taux de Nouveaux Visiteurs"
4007
 
4008
- #: ../../admin/view/wp-slimstat-reports.php:869
4009
  msgid ""
4010
  "Visitors who visited the site in the last 5 minutes coming from a search "
4011
  "engine."
@@ -4013,59 +3990,59 @@ msgstr ""
4013
  "Visiteurs qui ont visité le site dans les 5 dernières visites, provenant "
4014
  "d'un moteur de recherche."
4015
 
4016
- #: ../../admin/view/wp-slimstat-reports.php:870
4017
  msgid "Currently from search engines"
4018
  msgstr "Moteurs de recherche récents"
4019
 
4020
- #: ../../admin/view/wp-slimstat-reports.php:938
4021
  msgid "Number of pages in your site included in Google's index."
4022
  msgstr "Nombre de pages de votre site indexées par Google."
4023
 
4024
- #: ../../admin/view/wp-slimstat-reports.php:939
4025
  msgid "Google Index"
4026
  msgstr "Index Google"
4027
 
4028
- #: ../../admin/view/wp-slimstat-reports.php:940
4029
  msgid "Number of pages, according to Google, that link back to your site."
4030
  msgstr ""
4031
  "Nombre de pages qui pointent sur votre site, d'après les informations "
4032
  "fournies par Google."
4033
 
4034
- #: ../../admin/view/wp-slimstat-reports.php:941
4035
  msgid "Google Backlinks"
4036
  msgstr "Backlinks Google"
4037
 
4038
- #: ../../admin/view/wp-slimstat-reports.php:942
4039
  msgid ""
4040
  "How many times the Facebook Like button has been approximately clicked on "
4041
  "your site."
4042
  msgstr ""
4043
  "Nombre de fois que votre site a été Liké par quelqu'un sur le réseau social."
4044
 
4045
- #: ../../admin/view/wp-slimstat-reports.php:943
4046
  msgid "Facebook Likes"
4047
  msgstr "\"J'aime\" Facebook"
4048
 
4049
- #: ../../admin/view/wp-slimstat-reports.php:944
4050
  msgid ""
4051
  "How many times your site has been shared by someone on the social network."
4052
  msgstr ""
4053
  "Nombre de fois que votre site a été partagé par quelqu'un sur le réseau "
4054
  "social."
4055
 
4056
- #: ../../admin/view/wp-slimstat-reports.php:945
4057
  msgid "Facebook Shares"
4058
  msgstr "Partages Facebook"
4059
 
4060
- #: ../../admin/view/wp-slimstat-reports.php:946
4061
  msgid "How many times links to your website have been clicked on Facebook."
4062
  msgstr "Nombre de fois que vos liens ont été activés sur Facebook"
4063
 
4064
- #: ../../admin/view/wp-slimstat-reports.php:947
4065
  msgid "Facebook Clicks"
4066
  msgstr "Clicks Facebook"
4067
 
4068
- #: ../../admin/view/wp-slimstat-reports.php:948
4069
  msgid ""
4070
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
4071
  "traffic data."
@@ -4073,1193 +4050,1197 @@ msgstr ""
4073
  "Alexa est une filiale d'Amazon.com qui fournit des données commerciales "
4074
  "concernant le trafic web."
4075
 
4076
- #: ../../admin/view/wp-slimstat-reports.php:949
4077
  msgid "Alexa World Rank"
4078
  msgstr "Alexa, Classement mondial"
4079
 
4080
- #: ../../admin/view/wp-slimstat-reports.php:950
4081
  msgid "Alexa Country Rank"
4082
  msgstr "Alexa, Classement par pays"
4083
 
4084
- #: ../../admin/view/wp-slimstat-reports.php:951
4085
  msgid "Alexa Popularity"
4086
  msgstr "Alexa, Popularité"
4087
 
4088
- #: ../../admin/view/wp-slimstat-reports.php:968
4089
  msgid "Bing Test"
4090
  msgstr "Test Bing"
4091
 
4092
- #: ../../admin/view/wp-slimstat-reports.php:969
4093
  msgid "AntiVirus Scan"
4094
  msgstr "Scan Antivirus"
4095
 
4096
- #: ../../admin/view/wp-slimstat-reports.php:970
4097
  msgid "Google Bot Test"
4098
  msgstr "Test du Google Bot"
4099
 
4100
- #: ../../admin/view/wp-slimstat-reports.php:971
4101
  msgid "Scan for Hostile Strings"
4102
  msgstr ""
4103
 
4104
- #: ../../admin/view/wp-slimstat-reports.php:972
4105
  msgid "Generic Web Bot test"
4106
  msgstr "Test par d'autres robots."
4107
 
4108
- #: ../../admin/view/wp-slimstat-reports.php:973
4109
  msgid "Google Safe Browsing List"
4110
- msgstr ""
4111
 
4112
- #: ../../admin/view/wp-slimstat-reports.php:974
4113
  msgid "Hostile External Links"
4114
  msgstr "Liens externes hostiles"
4115
 
4116
- #: ../../admin/view/wp-slimstat-reports.php:975
4117
- #, fuzzy
4118
  msgid "Other Treats"
4119
- msgstr "Autres humains"
4120
 
4121
- #: ../../admin/view/wp-slimstat-reports.php:1001
4122
  msgid "Passed"
4123
  msgstr "Réussi"
4124
 
4125
- #: ../../admin/view/wp-slimstat-reports.php:1001
4126
  msgid "At Risk"
4127
  msgstr "Risqué"
4128
 
4129
- #: ../../admin/view/wp-slimstat-reports.php:1004
4130
  msgid "Timed Out"
4131
  msgstr "Expiration du délai"
4132
 
4133
  # Unknown
4134
- #: ../../admin/view/wp-slimstat-reports.php:1018
4135
  msgid "c-xx"
4136
  msgstr "Inconnu"
4137
 
4138
  # Afghanistan
4139
- #: ../../admin/view/wp-slimstat-reports.php:1018
4140
  msgid "c-af"
4141
  msgstr "Afghanistan"
4142
 
4143
  # Åland Islands
4144
- #: ../../admin/view/wp-slimstat-reports.php:1018
4145
  msgid "c-ax"
4146
  msgstr "Îles Åland"
4147
 
4148
  # Albania
4149
- #: ../../admin/view/wp-slimstat-reports.php:1018
4150
  msgid "c-al"
4151
  msgstr "Albanie"
4152
 
4153
  # Algeria
4154
- #: ../../admin/view/wp-slimstat-reports.php:1018
4155
  msgid "c-dz"
4156
  msgstr "Algérie"
4157
 
4158
  # Andorra
4159
- #: ../../admin/view/wp-slimstat-reports.php:1018
4160
  msgid "c-ad"
4161
  msgstr "Andorre"
4162
 
4163
  # Angola
4164
- #: ../../admin/view/wp-slimstat-reports.php:1018
4165
  msgid "c-ao"
4166
  msgstr "Angola"
4167
 
4168
  # Anguilla
4169
- #: ../../admin/view/wp-slimstat-reports.php:1018
4170
  msgid "c-ai"
4171
  msgstr "Anguilla"
4172
 
4173
  # Antigua and Barbuda
4174
- #: ../../admin/view/wp-slimstat-reports.php:1018
4175
  msgid "c-ag"
4176
  msgstr "Antigua et Barbuda"
4177
 
4178
  # Argentina
4179
- #: ../../admin/view/wp-slimstat-reports.php:1018
4180
  msgid "c-ar"
4181
  msgstr "Argentine"
4182
 
4183
  # Armenia
4184
- #: ../../admin/view/wp-slimstat-reports.php:1018
4185
  msgid "c-am"
4186
  msgstr "Arménie"
4187
 
4188
  # Aruba
4189
- #: ../../admin/view/wp-slimstat-reports.php:1018
4190
  msgid "c-aw"
4191
  msgstr "Aruba"
4192
 
4193
  # Australia
4194
- #: ../../admin/view/wp-slimstat-reports.php:1018
4195
  msgid "c-au"
4196
  msgstr "Australie"
4197
 
4198
  # Austria
4199
- #: ../../admin/view/wp-slimstat-reports.php:1018
4200
  msgid "c-at"
4201
  msgstr "Autriche"
4202
 
4203
  # Azerbaijan
4204
- #: ../../admin/view/wp-slimstat-reports.php:1018
4205
  msgid "c-az"
4206
  msgstr "Azerbaïdjan"
4207
 
4208
  # Bahamas
4209
- #: ../../admin/view/wp-slimstat-reports.php:1018
4210
  msgid "c-bs"
4211
  msgstr "Bahamas"
4212
 
4213
  # Bahrain
4214
- #: ../../admin/view/wp-slimstat-reports.php:1018
4215
  msgid "c-bh"
4216
  msgstr "Bahreïn"
4217
 
4218
  # Bangladesh
4219
- #: ../../admin/view/wp-slimstat-reports.php:1018
4220
  msgid "c-bd"
4221
  msgstr "Bangladesh"
4222
 
4223
  # Barbados
4224
- #: ../../admin/view/wp-slimstat-reports.php:1018
4225
  msgid "c-bb"
4226
  msgstr "Barbade"
4227
 
4228
  # Belarus
4229
- #: ../../admin/view/wp-slimstat-reports.php:1018
4230
  msgid "c-by"
4231
  msgstr "Bélarus"
4232
 
4233
  # Belgium
4234
- #: ../../admin/view/wp-slimstat-reports.php:1018
4235
  msgid "c-be"
4236
  msgstr "Belgique"
4237
 
4238
  # Belize
4239
- #: ../../admin/view/wp-slimstat-reports.php:1018
4240
  msgid "c-bz"
4241
  msgstr "Belize"
4242
 
4243
  # Benin
4244
- #: ../../admin/view/wp-slimstat-reports.php:1018
4245
  msgid "c-bj"
4246
  msgstr "Bénin"
4247
 
4248
  # Bermuda
4249
- #: ../../admin/view/wp-slimstat-reports.php:1018
4250
  msgid "c-bm"
4251
  msgstr "Bermudes"
4252
 
4253
  # Bhutan
4254
- #: ../../admin/view/wp-slimstat-reports.php:1018
4255
  msgid "c-bt"
4256
  msgstr "Bhoutan"
4257
 
4258
  # Bolivia
4259
- #: ../../admin/view/wp-slimstat-reports.php:1018
4260
  msgid "c-bo"
4261
  msgstr "État plurinational de Bolivie"
4262
 
4263
  # Bosnia and Herzegovina
4264
- #: ../../admin/view/wp-slimstat-reports.php:1018
4265
  msgid "c-ba"
4266
  msgstr "Bosnie-Herzégovine"
4267
 
4268
  # Botswana
4269
- #: ../../admin/view/wp-slimstat-reports.php:1018
4270
  msgid "c-bw"
4271
  msgstr "Botswana"
4272
 
4273
  # Brazil
4274
- #: ../../admin/view/wp-slimstat-reports.php:1018
4275
  msgid "c-br"
4276
  msgstr "Brésil"
4277
 
4278
  # Brunei Darussalam
4279
- #: ../../admin/view/wp-slimstat-reports.php:1018
4280
  msgid "c-bn"
4281
  msgstr "Brunéi Darussalam"
4282
 
4283
  # Bulgaria
4284
- #: ../../admin/view/wp-slimstat-reports.php:1018
4285
  msgid "c-bg"
4286
  msgstr "Bulgarie"
4287
 
4288
  # Burkina Faso
4289
- #: ../../admin/view/wp-slimstat-reports.php:1018
4290
  msgid "c-bf"
4291
  msgstr "Burkina Faso"
4292
 
4293
  # Burundi
4294
- #: ../../admin/view/wp-slimstat-reports.php:1018
4295
  msgid "c-bi"
4296
  msgstr "Burundi"
4297
 
4298
  # Cambodia
4299
- #: ../../admin/view/wp-slimstat-reports.php:1018
4300
  msgid "c-kh"
4301
  msgstr "Cambodge"
4302
 
4303
  # Cameroon
4304
- #: ../../admin/view/wp-slimstat-reports.php:1018
4305
  msgid "c-cm"
4306
  msgstr "Cameroun"
4307
 
4308
  # Canada
4309
- #: ../../admin/view/wp-slimstat-reports.php:1018
4310
  msgid "c-ca"
4311
  msgstr "Canada"
4312
 
4313
  # Cape Verde
4314
- #: ../../admin/view/wp-slimstat-reports.php:1018
4315
  msgid "c-cv"
4316
  msgstr "Cap-Vert"
4317
 
4318
  # Cayman Islands
4319
- #: ../../admin/view/wp-slimstat-reports.php:1018
4320
  msgid "c-ky"
4321
  msgstr "Îles Caïmans"
4322
 
4323
  # Central African Republic
4324
- #: ../../admin/view/wp-slimstat-reports.php:1018
4325
  msgid "c-cf"
4326
  msgstr "République Centrafricaine"
4327
 
4328
  # Chad
4329
- #: ../../admin/view/wp-slimstat-reports.php:1018
4330
  msgid "c-td"
4331
  msgstr "Tchad"
4332
 
4333
  # Chile
4334
- #: ../../admin/view/wp-slimstat-reports.php:1018
4335
  msgid "c-cl"
4336
  msgstr "Chili"
4337
 
4338
  # China
4339
- #: ../../admin/view/wp-slimstat-reports.php:1018
4340
  msgid "c-cn"
4341
  msgstr "Chine"
4342
 
4343
  # Colombia
4344
- #: ../../admin/view/wp-slimstat-reports.php:1018
4345
  msgid "c-co"
4346
  msgstr "Colombie"
4347
 
4348
  # Comoros
4349
- #: ../../admin/view/wp-slimstat-reports.php:1018
4350
  msgid "c-km"
4351
  msgstr "Comores"
4352
 
4353
  # Congo
4354
- #: ../../admin/view/wp-slimstat-reports.php:1018
4355
  msgid "c-cg"
4356
  msgstr "Congo"
4357
 
4358
  # The Democratic Republic of the Congo
4359
- #: ../../admin/view/wp-slimstat-reports.php:1018
4360
  msgid "c-cd"
4361
  msgstr "République Démocratique du Congo"
4362
 
4363
  # Costa Rica
4364
- #: ../../admin/view/wp-slimstat-reports.php:1018
4365
  msgid "c-cr"
4366
  msgstr "Costa Rica"
4367
 
4368
  # Côte d'Ivoire
4369
- #: ../../admin/view/wp-slimstat-reports.php:1018
4370
  msgid "c-ci"
4371
  msgstr "Côte d'Ivoire"
4372
 
4373
  # Croatia
4374
- #: ../../admin/view/wp-slimstat-reports.php:1018
4375
  msgid "c-hr"
4376
  msgstr "Croatie"
4377
 
4378
  # Cuba
4379
- #: ../../admin/view/wp-slimstat-reports.php:1018
4380
  msgid "c-cu"
4381
  msgstr "Cuba"
4382
 
4383
  # Cyprus
4384
- #: ../../admin/view/wp-slimstat-reports.php:1018
4385
  msgid "c-cy"
4386
  msgstr "Chypre"
4387
 
4388
  # Czech Republic
4389
- #: ../../admin/view/wp-slimstat-reports.php:1018
4390
  msgid "c-cz"
4391
  msgstr "République tchèque"
4392
 
4393
  # Denmark
4394
- #: ../../admin/view/wp-slimstat-reports.php:1018
4395
  msgid "c-dk"
4396
  msgstr "Danemark"
4397
 
4398
  # Djibouti
4399
- #: ../../admin/view/wp-slimstat-reports.php:1018
4400
  msgid "c-dj"
4401
  msgstr "Djibouti"
4402
 
4403
  # Dominica
4404
- #: ../../admin/view/wp-slimstat-reports.php:1018
4405
  msgid "c-dm"
4406
  msgstr "Dominique"
4407
 
4408
  # Dominican Republic
4409
- #: ../../admin/view/wp-slimstat-reports.php:1018
4410
  msgid "c-do"
4411
  msgstr "République dominicaine"
4412
 
4413
  # Ecuador
4414
- #: ../../admin/view/wp-slimstat-reports.php:1018
4415
  msgid "c-ec"
4416
  msgstr "Équateur"
4417
 
4418
  # Egypt
4419
- #: ../../admin/view/wp-slimstat-reports.php:1018
4420
  msgid "c-eg"
4421
  msgstr "Égypte"
4422
 
4423
  # El Salvador
4424
- #: ../../admin/view/wp-slimstat-reports.php:1018
4425
  msgid "c-sv"
4426
  msgstr "El Salvador"
4427
 
4428
  # Equatorial Guinea
4429
- #: ../../admin/view/wp-slimstat-reports.php:1018
4430
  msgid "c-gq"
4431
  msgstr "Guinée équatoriale"
4432
 
4433
  # Eritrea
4434
- #: ../../admin/view/wp-slimstat-reports.php:1018
4435
  msgid "c-er"
4436
  msgstr "Érythrée"
4437
 
4438
  # Estonia
4439
- #: ../../admin/view/wp-slimstat-reports.php:1018
4440
  msgid "c-ee"
4441
  msgstr "Estonie"
4442
 
4443
  # Ethiopia
4444
- #: ../../admin/view/wp-slimstat-reports.php:1018
4445
  msgid "c-et"
4446
  msgstr "Éthiopie"
4447
 
4448
  # Faroe Islands
4449
- #: ../../admin/view/wp-slimstat-reports.php:1018
4450
  msgid "c-fo"
4451
  msgstr "Îles Féroé"
4452
 
4453
  # Falkland Islands (Malvinas)
4454
- #: ../../admin/view/wp-slimstat-reports.php:1018
4455
  msgid "c-fk"
4456
  msgstr "Îles Falkland (Malvinas)"
4457
 
4458
  # Fiji
4459
- #: ../../admin/view/wp-slimstat-reports.php:1018
4460
  msgid "c-fj"
4461
  msgstr "Fidji"
4462
 
4463
  # Finland
4464
- #: ../../admin/view/wp-slimstat-reports.php:1018
4465
  msgid "c-fi"
4466
  msgstr "Finlande"
4467
 
4468
  # France
4469
- #: ../../admin/view/wp-slimstat-reports.php:1018
4470
  msgid "c-fr"
4471
  msgstr "France"
4472
 
4473
  # French Guiana
4474
- #: ../../admin/view/wp-slimstat-reports.php:1018
4475
  msgid "c-gf"
4476
  msgstr "Guyane française"
4477
 
4478
  # Gabon
4479
- #: ../../admin/view/wp-slimstat-reports.php:1018
4480
  msgid "c-ga"
4481
  msgstr "Gabon"
4482
 
4483
  # Gambia
4484
- #: ../../admin/view/wp-slimstat-reports.php:1018
4485
  msgid "c-gm"
4486
  msgstr "Gambie"
4487
 
4488
  # Georgia
4489
- #: ../../admin/view/wp-slimstat-reports.php:1018
4490
  msgid "c-ge"
4491
  msgstr "Géorgie"
4492
 
4493
  # Germany
4494
- #: ../../admin/view/wp-slimstat-reports.php:1018
4495
  msgid "c-de"
4496
  msgstr "Allemagne"
4497
 
4498
  # Ghana
4499
- #: ../../admin/view/wp-slimstat-reports.php:1018
4500
  msgid "c-gh"
4501
  msgstr "Ghana"
4502
 
4503
  # Greece
4504
- #: ../../admin/view/wp-slimstat-reports.php:1018
4505
  msgid "c-gr"
4506
  msgstr "Grèce"
4507
 
4508
  # Greenland
4509
- #: ../../admin/view/wp-slimstat-reports.php:1018
4510
  msgid "c-gl"
4511
  msgstr "Groenland"
4512
 
4513
  # Grenada
4514
- #: ../../admin/view/wp-slimstat-reports.php:1018
4515
  msgid "c-gd"
4516
  msgstr "Grenade"
4517
 
4518
  # Guadeloupe
4519
- #: ../../admin/view/wp-slimstat-reports.php:1018
4520
  msgid "c-gp"
4521
  msgstr "Guadeloupe"
4522
 
4523
  # Guatemala
4524
- #: ../../admin/view/wp-slimstat-reports.php:1018
4525
  msgid "c-gt"
4526
  msgstr "Guatemala"
4527
 
4528
  # Guinea
4529
- #: ../../admin/view/wp-slimstat-reports.php:1018
4530
  msgid "c-gn"
4531
  msgstr "Guinée"
4532
 
4533
  # Guinea-Bissau
4534
- #: ../../admin/view/wp-slimstat-reports.php:1018
4535
  msgid "c-gw"
4536
  msgstr "Guinée-Bissau"
4537
 
4538
  # Guyana
4539
- #: ../../admin/view/wp-slimstat-reports.php:1018
4540
  msgid "c-gy"
4541
  msgstr "Guyana"
4542
 
4543
  # Haiti
4544
- #: ../../admin/view/wp-slimstat-reports.php:1018
4545
  msgid "c-ht"
4546
  msgstr "Haïti"
4547
 
4548
  # Honduras
4549
- #: ../../admin/view/wp-slimstat-reports.php:1018
4550
  msgid "c-hn"
4551
  msgstr "Honduras"
4552
 
4553
  # Hong Kong
4554
- #: ../../admin/view/wp-slimstat-reports.php:1018
4555
  msgid "c-hk"
4556
  msgstr "Hong Kong"
4557
 
4558
  # Hungary
4559
- #: ../../admin/view/wp-slimstat-reports.php:1018
4560
  msgid "c-hu"
4561
  msgstr "Hongrie"
4562
 
4563
  # Iceland
4564
- #: ../../admin/view/wp-slimstat-reports.php:1018
4565
  msgid "c-is"
4566
  msgstr "Islande"
4567
 
4568
  # India
4569
- #: ../../admin/view/wp-slimstat-reports.php:1018
4570
  msgid "c-in"
4571
  msgstr "Inde"
4572
 
4573
  # Indonesia
4574
- #: ../../admin/view/wp-slimstat-reports.php:1018
4575
  msgid "c-id"
4576
  msgstr "Indonésie"
4577
 
4578
  # Islamic Republic of Iran
4579
- #: ../../admin/view/wp-slimstat-reports.php:1018
4580
  msgid "c-ir"
4581
  msgstr "République islamique d'Iran"
4582
 
4583
  # Iraq
4584
- #: ../../admin/view/wp-slimstat-reports.php:1018
4585
  msgid "c-iq"
4586
  msgstr "Irak"
4587
 
4588
  # Ireland
4589
- #: ../../admin/view/wp-slimstat-reports.php:1018
4590
  msgid "c-ie"
4591
  msgstr "Irlande"
4592
 
4593
  # Israel
4594
- #: ../../admin/view/wp-slimstat-reports.php:1018
4595
  msgid "c-il"
4596
  msgstr "Israël"
4597
 
4598
  # Italy
4599
- #: ../../admin/view/wp-slimstat-reports.php:1018
4600
  msgid "c-it"
4601
  msgstr "Italie"
4602
 
4603
  # Jamaica
4604
- #: ../../admin/view/wp-slimstat-reports.php:1018
4605
  msgid "c-jm"
4606
  msgstr "Jamaïque"
4607
 
4608
  # Japan
4609
- #: ../../admin/view/wp-slimstat-reports.php:1018
4610
  msgid "c-jp"
4611
  msgstr "Japon"
4612
 
4613
  # Jordan
4614
- #: ../../admin/view/wp-slimstat-reports.php:1018
4615
  msgid "c-jo"
4616
  msgstr "Jordanie"
4617
 
4618
  # Kazakhstan
4619
- #: ../../admin/view/wp-slimstat-reports.php:1018
4620
  msgid "c-kz"
4621
  msgstr "Kazakhstan"
4622
 
4623
  # Kenya
4624
- #: ../../admin/view/wp-slimstat-reports.php:1018
4625
  msgid "c-ke"
4626
  msgstr "Kenya"
4627
 
4628
  # Nauru
4629
- #: ../../admin/view/wp-slimstat-reports.php:1018
4630
  msgid "c-nr"
4631
  msgstr "Nauru"
4632
 
4633
  # Democratic People's Republic of Korea
4634
- #: ../../admin/view/wp-slimstat-reports.php:1018
4635
  msgid "c-kp"
4636
  msgstr "République populaire démocratique de Corée"
4637
 
4638
  # Republic of Korea
4639
- #: ../../admin/view/wp-slimstat-reports.php:1018
4640
  msgid "c-kr"
4641
  msgstr "République de Corée"
4642
 
4643
- #: ../../admin/view/wp-slimstat-reports.php:1018
4644
  msgid "c-kv"
4645
  msgstr "Kossovo"
4646
 
4647
  # Kuwait
4648
- #: ../../admin/view/wp-slimstat-reports.php:1018
4649
  msgid "c-kw"
4650
  msgstr "Koweït"
4651
 
4652
  # Kyrgyzstan
4653
- #: ../../admin/view/wp-slimstat-reports.php:1018
4654
  msgid "c-kg"
4655
  msgstr "Kirghizistan"
4656
 
4657
  # Lao People's Democratic Republic
4658
- #: ../../admin/view/wp-slimstat-reports.php:1018
4659
  msgid "c-la"
4660
  msgstr "République démocratique populaire lao"
4661
 
4662
  # Latvia
4663
- #: ../../admin/view/wp-slimstat-reports.php:1018
4664
  msgid "c-lv"
4665
  msgstr "Lettonie"
4666
 
4667
  # Lebanon
4668
- #: ../../admin/view/wp-slimstat-reports.php:1018
4669
  msgid "c-lb"
4670
  msgstr "Liban"
4671
 
4672
  # Lesotho
4673
- #: ../../admin/view/wp-slimstat-reports.php:1018
4674
  msgid "c-ls"
4675
  msgstr "Lesotho"
4676
 
4677
  # Liberia
4678
- #: ../../admin/view/wp-slimstat-reports.php:1018
4679
  msgid "c-lr"
4680
  msgstr "Libéria"
4681
 
4682
  # Libyan Arab Jamahiriya
4683
- #: ../../admin/view/wp-slimstat-reports.php:1018
4684
  msgid "c-ly"
4685
  msgstr "Jamahiriya arabe libyenne"
4686
 
4687
  # Liechtenstein
4688
- #: ../../admin/view/wp-slimstat-reports.php:1018
4689
  msgid "c-li"
4690
  msgstr "Liechtenstein"
4691
 
4692
  # Lithuania
4693
- #: ../../admin/view/wp-slimstat-reports.php:1018
4694
  msgid "c-lt"
4695
  msgstr "Lituanie"
4696
 
4697
  # Luxembourg
4698
- #: ../../admin/view/wp-slimstat-reports.php:1018
4699
  msgid "c-lu"
4700
  msgstr "Luxembourg"
4701
 
4702
  # The Former Yugoslav Republic of Macedonia
4703
- #: ../../admin/view/wp-slimstat-reports.php:1018
4704
  msgid "c-mk"
4705
  msgstr "Ex-république yougoslave de Macédoine"
4706
 
4707
  # Madagascar
4708
- #: ../../admin/view/wp-slimstat-reports.php:1018
4709
  msgid "c-mg"
4710
  msgstr "Madagascar"
4711
 
4712
  # Malawi
4713
- #: ../../admin/view/wp-slimstat-reports.php:1018
4714
  msgid "c-mw"
4715
  msgstr "Malawi"
4716
 
4717
  # Malaysia
4718
- #: ../../admin/view/wp-slimstat-reports.php:1018
4719
  msgid "c-my"
4720
  msgstr "Malaisie"
4721
 
4722
  # Mali
4723
- #: ../../admin/view/wp-slimstat-reports.php:1018
4724
  msgid "c-ml"
4725
  msgstr "Mali"
4726
 
4727
  # Malta
4728
- #: ../../admin/view/wp-slimstat-reports.php:1018
4729
  msgid "c-mt"
4730
  msgstr "Malte"
4731
 
4732
  # Martinique
4733
- #: ../../admin/view/wp-slimstat-reports.php:1018
4734
  msgid "c-mq"
4735
  msgstr "Martinique"
4736
 
4737
  # Mauritania
4738
- #: ../../admin/view/wp-slimstat-reports.php:1018
4739
  msgid "c-mr"
4740
  msgstr "Mauritanie"
4741
 
4742
  # Mauritius
4743
- #: ../../admin/view/wp-slimstat-reports.php:1018
4744
  msgid "c-mu"
4745
  msgstr "Maurice"
4746
 
4747
  # Mexico
4748
- #: ../../admin/view/wp-slimstat-reports.php:1018
4749
  msgid "c-mx"
4750
  msgstr "Mexique"
4751
 
4752
  # Moldova
4753
- #: ../../admin/view/wp-slimstat-reports.php:1018
4754
  msgid "c-md"
4755
  msgstr "République de Moldova"
4756
 
4757
  # Mongolia
4758
- #: ../../admin/view/wp-slimstat-reports.php:1018
4759
  msgid "c-mn"
4760
  msgstr "Mongolie"
4761
 
4762
  # Montenegro
4763
- #: ../../admin/view/wp-slimstat-reports.php:1018
4764
  msgid "c-me"
4765
  msgstr "Monténégro"
4766
 
4767
  # Montserrat
4768
- #: ../../admin/view/wp-slimstat-reports.php:1018
4769
  msgid "c-ms"
4770
  msgstr "Montserrat"
4771
 
4772
  # Morocco
4773
- #: ../../admin/view/wp-slimstat-reports.php:1018
4774
  msgid "c-ma"
4775
  msgstr "Maroc"
4776
 
4777
  # Mozambique
4778
- #: ../../admin/view/wp-slimstat-reports.php:1018
4779
  msgid "c-mz"
4780
  msgstr "Mozambique"
4781
 
4782
  # Myanmar
4783
- #: ../../admin/view/wp-slimstat-reports.php:1018
4784
  msgid "c-mm"
4785
  msgstr "Myanmar"
4786
 
4787
  # Namibia
4788
- #: ../../admin/view/wp-slimstat-reports.php:1018
4789
  msgid "c-na"
4790
  msgstr "Namibie"
4791
 
4792
  # Nepal
4793
- #: ../../admin/view/wp-slimstat-reports.php:1018
4794
  msgid "c-np"
4795
  msgstr "Népal"
4796
 
4797
  # Netherlands
4798
- #: ../../admin/view/wp-slimstat-reports.php:1018
4799
  msgid "c-nl"
4800
  msgstr "Pays-bas"
4801
 
4802
  # New Caledonia
4803
- #: ../../admin/view/wp-slimstat-reports.php:1018
4804
  msgid "c-nc"
4805
  msgstr "Nouvelle-Calédonie"
4806
 
4807
  # New Zealand
4808
- #: ../../admin/view/wp-slimstat-reports.php:1018
4809
  msgid "c-nz"
4810
  msgstr "Nouvelle-Zélande"
4811
 
4812
  # Nicaragua
4813
- #: ../../admin/view/wp-slimstat-reports.php:1018
4814
  msgid "c-ni"
4815
  msgstr "Nicaragua"
4816
 
4817
  # Niger
4818
- #: ../../admin/view/wp-slimstat-reports.php:1018
4819
  msgid "c-ne"
4820
  msgstr "Niger"
4821
 
4822
  # Nigeria
4823
- #: ../../admin/view/wp-slimstat-reports.php:1018
4824
  msgid "c-ng"
4825
  msgstr "Nigéria"
4826
 
4827
  # Norway
4828
- #: ../../admin/view/wp-slimstat-reports.php:1018
4829
  msgid "c-no"
4830
  msgstr "Norvège"
4831
 
4832
  # Oman
4833
- #: ../../admin/view/wp-slimstat-reports.php:1018
4834
  msgid "c-om"
4835
  msgstr "Oman"
4836
 
4837
  # Pakistan
4838
- #: ../../admin/view/wp-slimstat-reports.php:1018
4839
  msgid "c-pk"
4840
  msgstr "Pakistan"
4841
 
4842
  # Palau
4843
- #: ../../admin/view/wp-slimstat-reports.php:1018
4844
  msgid "c-pw"
4845
  msgstr "Palaos"
4846
 
4847
  # Occupied Palestinian Territory
4848
- #: ../../admin/view/wp-slimstat-reports.php:1018
4849
  msgid "c-ps"
4850
  msgstr "Territoire palestinien occupé"
4851
 
4852
  # Panama
4853
- #: ../../admin/view/wp-slimstat-reports.php:1018
4854
  msgid "c-pa"
4855
  msgstr "Panama"
4856
 
4857
  # Papua New Guinea
4858
- #: ../../admin/view/wp-slimstat-reports.php:1018
4859
  msgid "c-pg"
4860
  msgstr "Papouasie-Nouvelle-Guinée"
4861
 
4862
  # Paraguay
4863
- #: ../../admin/view/wp-slimstat-reports.php:1018
4864
  msgid "c-py"
4865
  msgstr "Paraguay"
4866
 
4867
  # Peru
4868
- #: ../../admin/view/wp-slimstat-reports.php:1018
4869
  msgid "c-pe"
4870
  msgstr "Pérou"
4871
 
4872
  # Philippines
4873
- #: ../../admin/view/wp-slimstat-reports.php:1018
4874
  msgid "c-ph"
4875
  msgstr "Philippines"
4876
 
4877
  # Poland
4878
- #: ../../admin/view/wp-slimstat-reports.php:1018
4879
  msgid "c-pl"
4880
  msgstr "Pologne"
4881
 
4882
  # Portugal
4883
- #: ../../admin/view/wp-slimstat-reports.php:1018
4884
  msgid "c-pt"
4885
  msgstr "Portugal"
4886
 
4887
  # Puerto Rico
4888
- #: ../../admin/view/wp-slimstat-reports.php:1018
4889
  msgid "c-pr"
4890
  msgstr "Porto Rico"
4891
 
4892
  # Qatar
4893
- #: ../../admin/view/wp-slimstat-reports.php:1018
4894
  msgid "c-qa"
4895
  msgstr "Qatar"
4896
 
4897
  # Réunion
4898
- #: ../../admin/view/wp-slimstat-reports.php:1018
4899
  msgid "c-re"
4900
  msgstr "Réunion"
4901
 
4902
  # Romania
4903
- #: ../../admin/view/wp-slimstat-reports.php:1018
4904
  msgid "c-ro"
4905
  msgstr "Roumanie"
4906
 
4907
  # Russian Federation
4908
- #: ../../admin/view/wp-slimstat-reports.php:1018
4909
  msgid "c-ru"
4910
  msgstr "Fédération de Russie"
4911
 
4912
  # Rwanda
4913
- #: ../../admin/view/wp-slimstat-reports.php:1018
4914
  msgid "c-rw"
4915
  msgstr "Rwanda"
4916
 
4917
  # Saint Kitts and Nevis
4918
- #: ../../admin/view/wp-slimstat-reports.php:1018
4919
  msgid "c-kn"
4920
  msgstr "Saint-Kitts-et-Nevis"
4921
 
4922
  # Saint Lucia
4923
- #: ../../admin/view/wp-slimstat-reports.php:1018
4924
  msgid "c-lc"
4925
  msgstr "Sainte-Lucie"
4926
 
4927
  # Saint Martin
4928
- #: ../../admin/view/wp-slimstat-reports.php:1018
4929
  msgid "c-mf"
4930
  msgstr "Saint-Martin"
4931
 
4932
  # Saint Vincent and the Grenadines
4933
- #: ../../admin/view/wp-slimstat-reports.php:1018
4934
  msgid "c-vc"
4935
  msgstr "Saint-Vincent-et-les Grenadines"
4936
 
4937
  # Samoa
4938
- #: ../../admin/view/wp-slimstat-reports.php:1018
4939
  msgid "c-ws"
4940
  msgstr "Samoa"
4941
 
4942
  # Sao Tome and Principe
4943
- #: ../../admin/view/wp-slimstat-reports.php:1018
4944
  msgid "c-st"
4945
  msgstr "Sao Tomé-et-Principe"
4946
 
4947
  # Saudi Arabia
4948
- #: ../../admin/view/wp-slimstat-reports.php:1018
4949
  msgid "c-sa"
4950
  msgstr "Arabie saoudite"
4951
 
4952
  # Senegal
4953
- #: ../../admin/view/wp-slimstat-reports.php:1018
4954
  msgid "c-sn"
4955
  msgstr "Sénégal"
4956
 
4957
  # Serbia
4958
- #: ../../admin/view/wp-slimstat-reports.php:1018
4959
  msgid "c-rs"
4960
  msgstr "Serbie"
4961
 
4962
  # Sierra Leone
4963
- #: ../../admin/view/wp-slimstat-reports.php:1018
4964
  msgid "c-sl"
4965
  msgstr "Sierra Leone"
4966
 
4967
  # Singapore
4968
- #: ../../admin/view/wp-slimstat-reports.php:1018
4969
  msgid "c-sg"
4970
  msgstr "Singapour"
4971
 
4972
  # Slovakia
4973
- #: ../../admin/view/wp-slimstat-reports.php:1018
4974
  msgid "c-sk"
4975
  msgstr "Slovaquie"
4976
 
4977
  # Slovenia
4978
- #: ../../admin/view/wp-slimstat-reports.php:1018
4979
  msgid "c-si"
4980
  msgstr "Slovénie"
4981
 
4982
  # Solomon Islands
4983
- #: ../../admin/view/wp-slimstat-reports.php:1018
4984
  msgid "c-sb"
4985
  msgstr "Îles Salomon"
4986
 
4987
  # Somalia
4988
- #: ../../admin/view/wp-slimstat-reports.php:1018
4989
  msgid "c-so"
4990
  msgstr "Somalie"
4991
 
4992
  # South Africa
4993
- #: ../../admin/view/wp-slimstat-reports.php:1018
4994
  msgid "c-za"
4995
  msgstr "Afrique du sud"
4996
 
4997
  # South Georgia and the South Sandwich Islands
4998
- #: ../../admin/view/wp-slimstat-reports.php:1018
4999
  msgid "c-gs"
5000
  msgstr "Géorgie du sud et les Îles Sandwich du sud"
5001
 
5002
  # Spain
5003
- #: ../../admin/view/wp-slimstat-reports.php:1018
5004
  msgid "c-es"
5005
  msgstr "Espagne"
5006
 
5007
  # Sri Lanka
5008
- #: ../../admin/view/wp-slimstat-reports.php:1018
5009
  msgid "c-lk"
5010
  msgstr "Sri Lanka"
5011
 
 
 
 
 
 
5012
  # Sudan
5013
- #: ../../admin/view/wp-slimstat-reports.php:1018
5014
  msgid "c-sd"
5015
  msgstr "Soudan"
5016
 
5017
- #: ../../admin/view/wp-slimstat-reports.php:1018
5018
  msgid "c-ss"
5019
  msgstr "Soudan du Sud"
5020
 
5021
  # Suriname
5022
- #: ../../admin/view/wp-slimstat-reports.php:1018
5023
  msgid "c-sr"
5024
  msgstr "Suriname"
5025
 
5026
  # Svalbard and Jan Mayen
5027
- #: ../../admin/view/wp-slimstat-reports.php:1018
5028
  msgid "c-sj"
5029
  msgstr "Svalbard et île Jan Mayen"
5030
 
5031
  # Swaziland
5032
- #: ../../admin/view/wp-slimstat-reports.php:1018
5033
  msgid "c-sz"
5034
  msgstr "Swaziland"
5035
 
5036
  # Sweden
5037
- #: ../../admin/view/wp-slimstat-reports.php:1018
5038
  msgid "c-se"
5039
  msgstr "Suède"
5040
 
5041
  # Switzerland
5042
- #: ../../admin/view/wp-slimstat-reports.php:1018
5043
  msgid "c-ch"
5044
  msgstr "Suisse"
5045
 
5046
  # Syrian Arab Republic
5047
- #: ../../admin/view/wp-slimstat-reports.php:1018
5048
  msgid "c-sy"
5049
  msgstr "République arabe syrienne"
5050
 
5051
  # Taiwan, Province of China
5052
- #: ../../admin/view/wp-slimstat-reports.php:1018
5053
  msgid "c-tw"
5054
  msgstr "Taïwan, province de Chine"
5055
 
5056
  # Tajikistan
5057
- #: ../../admin/view/wp-slimstat-reports.php:1018
5058
  msgid "c-tj"
5059
  msgstr "Tadjikistan"
5060
 
5061
  # United Republic of Tanzania
5062
- #: ../../admin/view/wp-slimstat-reports.php:1018
5063
  msgid "c-tz"
5064
  msgstr "République-unie de Tanzanie"
5065
 
5066
  # Thailand
5067
- #: ../../admin/view/wp-slimstat-reports.php:1018
5068
  msgid "c-th"
5069
  msgstr "Thaïlande"
5070
 
5071
  # Timor-Leste
5072
- #: ../../admin/view/wp-slimstat-reports.php:1018
5073
  msgid "c-tl"
5074
  msgstr "Timor-Leste"
5075
 
5076
  # Togo
5077
- #: ../../admin/view/wp-slimstat-reports.php:1018
5078
  msgid "c-tg"
5079
  msgstr "Togo"
5080
 
5081
  # Tonga
5082
- #: ../../admin/view/wp-slimstat-reports.php:1018
5083
  msgid "c-to"
5084
  msgstr "Tonga"
5085
 
5086
  # Trinidad and Tobago
5087
- #: ../../admin/view/wp-slimstat-reports.php:1018
5088
  msgid "c-tt"
5089
  msgstr "Trinité-et-Tobago "
5090
 
5091
  # Tunisia
5092
- #: ../../admin/view/wp-slimstat-reports.php:1018
5093
  msgid "c-tn"
5094
  msgstr "Tunisie"
5095
 
5096
  # Turkey
5097
- #: ../../admin/view/wp-slimstat-reports.php:1018
5098
  msgid "c-tr"
5099
  msgstr "Turquie "
5100
 
5101
  # Turkmenistan
5102
- #: ../../admin/view/wp-slimstat-reports.php:1018
5103
  msgid "c-tm"
5104
  msgstr "Turkménistan"
5105
 
5106
  # Turks and Caicos Islands
5107
- #: ../../admin/view/wp-slimstat-reports.php:1018
5108
  msgid "c-tc"
5109
  msgstr "Îles Turks et Caïques"
5110
 
5111
  # Uganda
5112
- #: ../../admin/view/wp-slimstat-reports.php:1018
5113
  msgid "c-ug"
5114
  msgstr "Ouganda"
5115
 
5116
  # Ukraine
5117
- #: ../../admin/view/wp-slimstat-reports.php:1018
5118
  msgid "c-ua"
5119
  msgstr "Ukraine"
5120
 
5121
  # United Arab Emirates
5122
- #: ../../admin/view/wp-slimstat-reports.php:1018
5123
  msgid "c-ae"
5124
  msgstr "Émirats arabes unis"
5125
 
5126
  # United Kingdom
5127
- #: ../../admin/view/wp-slimstat-reports.php:1018
5128
  msgid "c-gb"
5129
  msgstr "Royaume-Uni"
5130
 
5131
  # United States
5132
- #: ../../admin/view/wp-slimstat-reports.php:1018
5133
  msgid "c-us"
5134
  msgstr "États-Unis"
5135
 
5136
  # Uruguay
5137
- #: ../../admin/view/wp-slimstat-reports.php:1018
5138
  msgid "c-uy"
5139
  msgstr "Uruguay"
5140
 
5141
  # Uzbekistan
5142
- #: ../../admin/view/wp-slimstat-reports.php:1018
5143
  msgid "c-uz"
5144
  msgstr "Ouzbékistan "
5145
 
5146
  # Vanuatu
5147
- #: ../../admin/view/wp-slimstat-reports.php:1018
5148
  msgid "c-vu"
5149
  msgstr "Vanuatu"
5150
 
5151
  # Venezuela
5152
- #: ../../admin/view/wp-slimstat-reports.php:1018
5153
  msgid "c-ve"
5154
  msgstr "République bolivarienne du Venezuela"
5155
 
5156
  # Viet Nam
5157
- #: ../../admin/view/wp-slimstat-reports.php:1018
5158
  msgid "c-vn"
5159
  msgstr "Viet Nam"
5160
 
5161
  # British Virgin Islands
5162
- #: ../../admin/view/wp-slimstat-reports.php:1018
5163
  msgid "c-vg"
5164
  msgstr "Îles vierges britanniques"
5165
 
5166
  # U.S. Virgin Islands
5167
- #: ../../admin/view/wp-slimstat-reports.php:1018
5168
  msgid "c-vi"
5169
  msgstr "Îles vierges des États-Unis"
5170
 
5171
  # Western Sahara
5172
- #: ../../admin/view/wp-slimstat-reports.php:1018
5173
  msgid "c-eh"
5174
  msgstr "Sahara occidental"
5175
 
5176
  # Yemen
5177
- #: ../../admin/view/wp-slimstat-reports.php:1018
5178
  msgid "c-ye"
5179
  msgstr "Yémen"
5180
 
5181
  # Zambia
5182
- #: ../../admin/view/wp-slimstat-reports.php:1018
5183
  msgid "c-zm"
5184
  msgstr "Zambie"
5185
 
5186
  # Zimbabwe
5187
- #: ../../admin/view/wp-slimstat-reports.php:1018
5188
  msgid "c-zw"
5189
  msgstr "Zimbabwe"
5190
 
5191
  # Guernsey
5192
- #: ../../admin/view/wp-slimstat-reports.php:1018
5193
  msgid "c-gg"
5194
  msgstr "Guernesey"
5195
 
5196
  # Jersey
5197
- #: ../../admin/view/wp-slimstat-reports.php:1018
5198
  msgid "c-je"
5199
  msgstr "Jersey"
5200
 
5201
  # Isle of Man
5202
- #: ../../admin/view/wp-slimstat-reports.php:1018
5203
  msgid "c-im"
5204
  msgstr "Île de Man"
5205
 
5206
  # Maldives
5207
- #: ../../admin/view/wp-slimstat-reports.php:1018
5208
  msgid "c-mv"
5209
  msgstr "Maldives"
5210
 
5211
  # European Union
5212
- #: ../../admin/view/wp-slimstat-reports.php:1019
5213
  msgid "c-eu"
5214
  msgstr "Union européenne"
5215
 
5216
- #: ../../admin/view/wp-slimstat-reports.php:1108
5217
  msgid ""
5218
  "This value includes not only posts, but also custom post types, regardless "
5219
  "of their status"
5220
  msgstr ""
5221
 
5222
- #: ../../admin/view/wp-slimstat-reports.php:1109
5223
  msgid "Content Items"
5224
  msgstr "Contenus"
5225
 
5226
- #: ../../admin/view/wp-slimstat-reports.php:1110
5227
  msgid "Total Comments"
5228
  msgstr "Nombre de commentaires"
5229
 
5230
- #: ../../admin/view/wp-slimstat-reports.php:1111
5231
  msgid "Pingbacks"
5232
  msgstr "Pingbacks"
5233
 
5234
- #: ../../admin/view/wp-slimstat-reports.php:1112
5235
  msgid "Trackbacks"
5236
  msgstr "Trackbacks"
5237
 
5238
- #: ../../admin/view/wp-slimstat-reports.php:1113
5239
  msgid "Longest Post (ID)"
5240
  msgstr "ID du post leplus long"
5241
 
5242
- #: ../../admin/view/wp-slimstat-reports.php:1114
5243
  msgid "Longest Comment (ID)"
5244
  msgstr "Commentaire le plus long (ID)"
5245
 
5246
- #: ../../admin/view/wp-slimstat-reports.php:1115
5247
  msgid "Avg Comments Per Post"
5248
  msgstr "Moyenne de commentaires par Post"
5249
 
5250
- #: ../../admin/view/wp-slimstat-reports.php:1116
5251
  msgid "Avg Posts Per Day"
5252
  msgstr "Nombre moyen de posts par jour"
5253
 
5254
- #: ../../admin/view/wp-slimstat-reports.php:1144
5255
  msgid "Visits"
5256
  msgstr "Visites"
5257
 
5258
- #: ../../admin/view/wp-slimstat-reports.php:1148
5259
  msgid "Domains"
5260
  msgstr "Domaines"
5261
 
5262
- #: ../../admin/view/wp-slimstat-reports.php:1153
5263
  msgid "Avg Pageviews"
5264
  msgstr "Moyenne des pages vues"
5265
 
@@ -7389,10 +7370,6 @@ msgstr "Moyenne des pages vues"
7389
  #~ msgid "c-pn"
7390
  #~ msgstr "Pitcairn"
7391
 
7392
- # Seychelles
7393
- #~ msgid "c-sc"
7394
- #~ msgstr "Seychelles"
7395
-
7396
  # Saint Helena, Ascension and Tristan da Cunha
7397
  #~ msgid "c-sh"
7398
  #~ msgstr "Sainte-Hélène, Ascension et Tristan da Cunha"
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-01-29 22:05-0500\n"
6
+ "PO-Revision-Date: 2014-01-29 22:05-0500\n"
7
  "Last-Translator: Get Used To IT <support@getused.to.it>\n"
8
  "Language-Team: Michael Bastin\n"
9
  "Language: fr_FR\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ../..\n"
19
 
20
+ #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:402
21
  #: ../../admin/view/wp-slimstat-reports.php:31
22
  msgid "Right Now"
23
+ msgstr "En ce moment"
24
 
25
+ #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:403
26
+ #: ../../admin/wp-slimstat-admin.php:420
27
  #: ../../admin/view/wp-slimstat-reports.php:32
28
  msgid "Overview"
29
  msgstr "Vue générale"
30
 
31
+ #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:404
32
+ #: ../../admin/wp-slimstat-admin.php:421
33
  #: ../../admin/view/wp-slimstat-reports.php:33
34
  msgid "Visitors"
35
  msgstr "Visiteurs"
36
 
37
+ #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:405
38
+ #: ../../admin/wp-slimstat-admin.php:422
39
  #: ../../admin/view/wp-slimstat-reports.php:34
40
  msgid "Content"
41
  msgstr "Contenu"
42
 
43
+ #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:406
44
+ #: ../../admin/wp-slimstat-admin.php:423 ../../admin/view/index.php:168
45
  #: ../../admin/view/wp-slimstat-reports.php:35
46
  msgid "Traffic Sources"
47
  msgstr "Sources de trafic"
48
 
49
+ #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:407
50
+ #: ../../admin/wp-slimstat-admin.php:424
51
  #: ../../admin/view/wp-slimstat-reports.php:36
52
  #: ../../admin/view/wp-slimstat-reports.php:105
53
  msgid "World Map"
54
  msgstr "Carte du monde"
55
 
56
+ #: ../../wp-slimstat.php:1183 ../../admin/wp-slimstat-admin.php:408
57
+ #: ../../admin/wp-slimstat-admin.php:425
58
  #: ../../admin/view/wp-slimstat-reports.php:37
59
  msgid "Custom Reports"
60
  msgstr "Rapports personnalisés"
61
 
62
+ #: ../../wp-slimstat.php:1184 ../../admin/wp-slimstat-admin.php:409
63
+ #: ../../admin/wp-slimstat-admin.php:426 ../../admin/config/addons.php:29
64
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:228
65
  msgid "Add-ons"
66
  msgstr "Add-ons"
67
 
68
+ #: ../../wp-slimstat.php:1187 ../../admin/wp-slimstat-admin.php:455
69
+ #: ../../admin/wp-slimstat-admin.php:458 ../../admin/wp-slimstat-admin.php:502
70
+ #: ../../admin/wp-slimstat-admin.php:505 ../../admin/config/index.php:14
71
  #: ../../admin/config/index.php:135
72
  msgid "Settings"
73
  msgstr "Réglages"
74
 
75
+ #: ../../admin/wp-slimstat-admin.php:401 ../../admin/wp-slimstat-admin.php:413
76
+ #: ../../admin/wp-slimstat-admin.php:416
 
77
  msgid "SlimStat"
78
+ msgstr "SlimStat"
79
 
80
+ #: ../../admin/wp-slimstat-admin.php:519
81
  msgid "Pageviews in the last 365 days"
82
  msgstr "Pages durant les 365 derniers jours"
83
 
84
+ #: ../../admin/wp-slimstat-admin.php:543
85
  msgid "Show on screen"
86
  msgstr "Montrer à l'écran"
87
 
88
+ #: ../../admin/wp-slimstat-admin.php:571
89
+ msgid "Hide this notice"
90
+ msgstr ""
91
+
92
+ #: ../../admin/wp-slimstat-admin.php:598
93
  msgid "There was an error updating the following options:"
94
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
95
 
96
+ #: ../../admin/wp-slimstat-admin.php:601
97
  msgid "Your settings have been successfully updated."
98
  msgstr "Vos réglages ont bien été mis à jour"
99
 
100
+ #: ../../admin/wp-slimstat-admin.php:624
101
  msgid "Save Changes"
102
  msgstr "Enregistrer les modifications"
103
 
104
+ #: ../../admin/wp-slimstat-admin.php:643
105
  msgid "Yes"
106
  msgstr "Oui"
107
 
108
+ #: ../../admin/wp-slimstat-admin.php:644
109
+ #: ../../admin/view/wp-slimstat-reports.php:747
110
  msgid "No"
111
  msgstr "Non"
112
 
113
+ #: ../../admin/wp-slimstat-admin.php:684
114
  msgid ""
115
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
116
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
122
  "consulter <a target=\"_blank\" href=\"http://wordpress.org/extend/plugins/wp-"
123
  "slimstat/faq/\">les FAQ</a> pour plus d'informations."
124
 
125
+ #: ../../admin/wp-slimstat-admin.php:704
126
  msgid "Definitions"
127
  msgstr "Définitions"
128
 
129
+ #: ../../admin/wp-slimstat-admin.php:707
130
  msgid "Pageview"
131
  msgstr "Page vue"
132
 
133
+ #: ../../admin/wp-slimstat-admin.php:707
134
  msgid ""
135
  "A request to load a single HTML file (\"page\"). This should be contrasted "
136
  "with a \"hit\", which refers to a request for any file from a web server. WP "
141
  "d'un serveur Web. WP SlimStat enregistre une page vue chaque fois que le "
142
  "code de traçage est exécuté"
143
 
144
+ #: ../../admin/wp-slimstat-admin.php:708
145
  msgid "(Human) Visit"
146
  msgstr "Visiteurs humains"
147
 
148
+ #: ../../admin/wp-slimstat-admin.php:708
149
  msgid ""
150
  "A period of interaction between a visitor's browser and your website, ending "
151
  "when the browser is closed or when the user has been inactive on that site "
155
  "Web se terminant lorsque le navigateur est fermé ou lorsque l'utilisateur "
156
  "est inactif sur ce site depuis 30 minutes"
157
 
158
+ #: ../../admin/wp-slimstat-admin.php:709 ../../admin/view/index.php:140
159
+ #: ../../admin/view/right-now.php:149
160
  msgid "Known Visitor"
161
  msgstr "Visiteurs connus"
162
 
163
+ #: ../../admin/wp-slimstat-admin.php:709
164
  msgid ""
165
  "Any user who has left a comment on your blog, and is thus identified by "
166
  "Wordpress as a returning visitor"
168
  "Un utilisateur qui a laissé un commentaire sur votre blog et est ainsi "
169
  "identifié par Wordpress comme un visiteur qui a déjà visité votre site"
170
 
171
+ #: ../../admin/wp-slimstat-admin.php:710
172
  msgid "Unique IP"
173
  msgstr "IP uniques"
174
 
175
+ #: ../../admin/wp-slimstat-admin.php:710
176
  msgid ""
177
  "Used to differentiate between multiple requests to download a file from one "
178
  "internet address (IP) and requests originating from many distinct addresses; "
185
  "Internet de la provenance d'une consultation, elle est utile, mais pas "
186
  "parfaite"
187
 
188
+ #: ../../admin/wp-slimstat-admin.php:711 ../../admin/wp-slimstat-admin.php:753
189
+ #: ../../admin/view/right-now.php:99 ../../admin/view/wp-slimstat-db.php:79
190
  msgid "Originating IP"
191
  msgstr "IP d'origine"
192
 
193
+ #: ../../admin/wp-slimstat-admin.php:711
194
  msgid ""
195
  "the originating IP address of a client connecting to a web server through an "
196
  "HTTP proxy or load balancer"
198
  "l'adresse IP d'origine d'un client qui se connecte à un serveur Web via un "
199
  "proxy HTTP ou équilibreur de charge"
200
 
201
+ #: ../../admin/wp-slimstat-admin.php:712
202
  msgid "Direct Traffic"
203
  msgstr "Trafic direct"
204
 
205
+ #: ../../admin/wp-slimstat-admin.php:712
206
  msgid ""
207
  "All those people showing up to your Web site by typing in the URL of your "
208
  "Web site coming or from a bookmark; some people also call this \"default "
212
  "votre site Web ou qui viennent à partir d'un signet, certaines personnes "
213
  "appellent également cela \"trafic par défaut \" ou \"trafic ambiant \""
214
 
215
+ #: ../../admin/wp-slimstat-admin.php:713
216
  msgid "Search Engine"
217
  msgstr "Moteur de recherche"
218
 
219
+ #: ../../admin/wp-slimstat-admin.php:713
220
  msgid ""
221
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
222
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
224
  "Google, Yahoo, MSN, Ask, et autres; cet item comprendra à la fois votre "
225
  "trafic rémunéré (PPC/SEM) ainsi que votre trafic organique, prenez en note"
226
 
227
+ #: ../../admin/wp-slimstat-admin.php:714 ../../admin/wp-slimstat-admin.php:730
228
+ #: ../../admin/view/right-now.php:128 ../../admin/view/wp-slimstat-db.php:60
229
  msgid "Search Terms"
230
  msgstr "Termes de recherche"
231
 
232
+ #: ../../admin/wp-slimstat-admin.php:714 ../../admin/wp-slimstat-admin.php:730
233
  msgid "Keywords used by your visitors to find your website on a search engine"
234
  msgstr ""
235
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
236
  "de recherche"
237
 
238
+ #: ../../admin/wp-slimstat-admin.php:715
239
  msgid "SERP"
240
  msgstr "SERP"
241
 
242
+ #: ../../admin/wp-slimstat-admin.php:715
243
  msgid ""
244
  "Short for search engine results page, the Web page that a search engine "
245
  "returns with the results of its search. The value shown represents your rank "
249
  "recherche renvoie les résultats de sa recherche. La valeur indiquée "
250
  "correspond à votre classement (ou la position) dans la liste des résultats"
251
 
252
+ #: ../../admin/wp-slimstat-admin.php:716
253
  #: ../../admin/view/wp-slimstat-db.php:72
254
  msgid "User Agent"
255
  msgstr "User Agent"
256
 
257
+ #: ../../admin/wp-slimstat-admin.php:716
258
  msgid ""
259
  "Any program used for accessing a website; this includes browsers, robots, "
260
  "spiders and any other program that was used to retrieve information from the "
264
  "navigateurs, robots, spiders et tout autre programme qui a été utilisé pour "
265
  "extraire des informations du site"
266
 
267
+ #: ../../admin/wp-slimstat-admin.php:717
268
  #: ../../admin/view/wp-slimstat-db.php:76
269
  msgid "Outbound Link"
270
  msgstr "Lien sortant"
271
 
272
+ #: ../../admin/wp-slimstat-admin.php:717
273
  msgid ""
274
  "A link from one domain to another is said to be outbound from its source "
275
  "anchor and inbound to its target. This report lists all the links to other "
279
  "sa cible. Ce rapport répertorie tous les liens vers d'autres sites suivis "
280
  "par vos visiteurs."
281
 
282
+ #: ../../admin/wp-slimstat-admin.php:724
283
  msgid "Basic Filters"
284
  msgstr "Filtres de base"
285
 
286
+ #: ../../admin/wp-slimstat-admin.php:727
287
  #: ../../admin/view/wp-slimstat-db.php:57
288
  msgid "Browser"
289
  msgstr "Navigateur Web"
290
 
291
+ #: ../../admin/wp-slimstat-admin.php:727
292
  msgid "User agent (Firefox, Chrome, ...)"
293
  msgstr "User agent (Firefox, Chrome, ...)"
294
 
295
+ #: ../../admin/wp-slimstat-admin.php:728
296
  #: ../../admin/view/wp-slimstat-db.php:58
297
+ #: ../../admin/view/wp-slimstat-reports.php:469
298
  msgid "Country Code"
299
  msgstr "Code du pays"
300
 
301
+ #: ../../admin/wp-slimstat-admin.php:728
302
  msgid "2-letter code (us, ru, de, it, ...)"
303
  msgstr "code pays à 2 lettres (us, ru, de, it, ...)"
304
 
305
+ #: ../../admin/wp-slimstat-admin.php:729
306
  msgid "IP"
307
  msgstr "IP"
308
 
309
+ #: ../../admin/wp-slimstat-admin.php:729
310
  msgid "Visitor's public IP address"
311
  msgstr " Adresse IP publique du visiteur"
312
 
313
+ #: ../../admin/wp-slimstat-admin.php:731
314
  #: ../../admin/view/wp-slimstat-db.php:61
315
+ #: ../../admin/view/wp-slimstat-reports.php:481
316
  msgid "Language Code"
317
  msgstr "Code langue"
318
 
319
+ #: ../../admin/wp-slimstat-admin.php:731
320
  msgid ""
321
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
322
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
326
  "microsoft.com/en-us/library/ee825488(v=cs.20).aspx\">language culture page</"
327
  "a> (première colonne) pour plus d'informations"
328
 
329
+ #: ../../admin/wp-slimstat-admin.php:732
330
  #: ../../admin/view/wp-slimstat-db.php:62
331
  msgid "Operating System"
332
  msgstr "Système d'exploitation (OS)"
333
 
334
+ #: ../../admin/wp-slimstat-admin.php:732
335
  msgid ""
336
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
337
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
341
  "référez-vous à <a target=\"_blank\" href=\"http://php.net/manual/en/function."
342
  "get-browser.php\">cette page de manuel </a> pour plus d'informations"
343
 
344
+ #: ../../admin/wp-slimstat-admin.php:733
345
  #: ../../admin/view/wp-slimstat-db.php:63
346
  msgid "Permalink"
347
  msgstr "Permalien"
348
 
349
+ #: ../../admin/wp-slimstat-admin.php:733
350
  msgid "URL accessed on your site"
351
  msgstr "URL accessible sur votre site"
352
 
353
+ #: ../../admin/wp-slimstat-admin.php:734
354
  #: ../../admin/view/wp-slimstat-db.php:65
355
  msgid "Referer"
356
  msgstr "Référent"
357
 
358
+ #: ../../admin/wp-slimstat-admin.php:734
359
  msgid "Complete address of the referrer page"
360
  msgstr "Adresse complète dune lpage référente"
361
 
362
+ #: ../../admin/wp-slimstat-admin.php:735
363
  #: ../../admin/view/wp-slimstat-db.php:66
364
  msgid "Visitor's Name"
365
  msgstr "le nom des visiteurs"
366
 
367
+ #: ../../admin/wp-slimstat-admin.php:735
368
  msgid ""
369
  "Visitors' names according to the cookie set by Wordpress after they leave a "
370
  "comment"
372
  "Les noms des visiteurs selon le cookie enregistré par Wordpress, après avoir "
373
  "laissé un commentaire"
374
 
375
+ #: ../../admin/wp-slimstat-admin.php:743
376
  msgid "Advanced Filters"
377
  msgstr "Filtres Avancés"
378
 
379
+ #: ../../admin/wp-slimstat-admin.php:746
380
  #: ../../admin/view/wp-slimstat-db.php:70
381
  msgid "Browser Version"
382
  msgstr "Version de navigateur"
383
 
384
+ #: ../../admin/wp-slimstat-admin.php:746
385
  msgid "user agent version (9.0, 11, ...)"
386
  msgstr "user agent version (9.0, 11, ...)"
387
 
388
+ #: ../../admin/wp-slimstat-admin.php:747
389
  #: ../../admin/view/wp-slimstat-db.php:71
390
  msgid "Browser Type"
391
  msgstr "le type de navigateur Web"
392
 
393
+ #: ../../admin/wp-slimstat-admin.php:747
394
  msgid ""
395
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
396
  "all others"
398
  "1 = moteur de recherche, 2 = appareil mobile, 3 = lecteur de flux "
399
  "(syndication) , 0 = tous les autres"
400
 
401
+ #: ../../admin/wp-slimstat-admin.php:748
402
  #: ../../admin/view/wp-slimstat-db.php:73
403
  msgid "Color Depth"
404
  msgstr "Profondeur de couleur"
405
 
406
+ #: ../../admin/wp-slimstat-admin.php:748
407
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
408
  msgstr "couleur de la profondeur de l'écran du visiteur (8, 16, 24, ...)"
409
 
410
+ #: ../../admin/wp-slimstat-admin.php:749
411
  #: ../../admin/view/wp-slimstat-db.php:74
412
  msgid "CSS Version"
413
  msgstr "Version CSS"
414
 
415
+ #: ../../admin/wp-slimstat-admin.php:749
416
  msgid ""
417
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
418
  "values)"
420
  "quelle est la norme CSS supportée par ce navigateur (1, 2, 3 et d'autres "
421
  "valeurs entières)"
422
 
423
+ #: ../../admin/wp-slimstat-admin.php:750
424
  #: ../../admin/view/wp-slimstat-db.php:75
425
  msgid "Pageview Attributes"
426
  msgstr "l'attribut des Pages Vues"
427
 
428
+ #: ../../admin/wp-slimstat-admin.php:750
429
  msgid ""
430
  "this field is set to <em>[pre]</em> if the resource has been accessed "
431
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
436
  "Link_prefetching_FAQ\"> préchargement des liens</a> ou d'autres techniques "
437
  "similaires"
438
 
439
+ #: ../../admin/wp-slimstat-admin.php:751
440
  #: ../../admin/view/wp-slimstat-db.php:77
441
  msgid "Post Author"
442
  msgstr "l'auteur de l'article"
443
 
444
+ #: ../../admin/wp-slimstat-admin.php:751
445
  msgid "author associated to that post/page when the resource was accessed"
446
  msgstr "auteur associé à cet article/page lorsque la ressource est accessible"
447
 
448
+ #: ../../admin/wp-slimstat-admin.php:752
449
  #: ../../admin/view/wp-slimstat-db.php:78
450
  msgid "Post Category ID"
451
  msgstr "ID de la catégorie de l'article"
452
 
453
+ #: ../../admin/wp-slimstat-admin.php:752
454
  msgid "ID of the category/term associated to the resource, when available"
455
  msgstr "ID de la catégorie/terme associée à la ressource, lorsqu'il y en a"
456
 
457
+ #: ../../admin/wp-slimstat-admin.php:753
458
  msgid "visitor's originating IP address, if available"
459
  msgstr "adresse IP d'origine du visiteur, s'il est disponible"
460
 
461
+ #: ../../admin/wp-slimstat-admin.php:754
462
  #: ../../admin/view/wp-slimstat-db.php:80
463
  msgid "Resource Content Type"
464
  msgstr "le type de source de contenu"
465
 
466
+ #: ../../admin/wp-slimstat-admin.php:754
467
  msgid ""
468
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
469
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
477
  "\" href=\"http://codex.wordpress.org/Conditional_Tags\">Conditional Tags</a> "
478
  "pour plus d'informations"
479
 
480
+ #: ../../admin/wp-slimstat-admin.php:755
481
  #: ../../admin/view/wp-slimstat-db.php:82
482
  msgid "Screen Resolution"
483
  msgstr "la résolution de l'écran"
484
 
485
+ #: ../../admin/wp-slimstat-admin.php:755
486
  msgid "viewport width and height (1024x768, 800x600, ...)"
487
  msgstr "résolution de l'écran (1024x768, 800x600, ...)"
488
 
489
+ #: ../../admin/wp-slimstat-admin.php:756
490
  #: ../../admin/view/wp-slimstat-db.php:83
491
  msgid "Visit ID"
492
  msgstr "Visites ID"
493
 
494
+ #: ../../admin/wp-slimstat-admin.php:756
495
  msgid ""
496
  "generally used in conjunction with <em>is not empty</em>, identifies human "
497
  "visitors"
499
  "généralement utilisé en conjonction avec <em>n'est pas vide </em>, identifie "
500
  "les visiteurs humains"
501
 
502
+ #: ../../admin/wp-slimstat-admin.php:757
503
  msgid "Date Filters"
504
  msgstr "Filtres de dates"
505
 
506
+ #: ../../admin/wp-slimstat-admin.php:757
507
  msgid ""
508
  "you can specify the timeframe by entering a number in the <em>interval</em> "
509
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
514
  "ex : jour = 1, mois = 1, année = vide, intervalle = -1 fixera un filtre "
515
  "année à date)"
516
 
517
+ #: ../../admin/wp-slimstat-admin.php:758
518
  msgid "SERP Position"
519
  msgstr "Position SERP "
520
 
521
+ #: ../../admin/wp-slimstat-admin.php:758
522
  msgid ""
523
  "set the filter to Referer contains cd=N&, where N is the position you are "
524
  "looking for"
526
  "Réglez le filtre sur Référent contient cd=N&, où N est la position que vous "
527
  "recherchez"
528
 
529
+ #: ../../admin/wp-slimstat-admin.php:767
530
  msgid ""
531
  " And for keeping an eye on your visitors with <a href=\"http://slimstat."
532
  "getused.to.it/\">WP SlimStat</a>."
603
  msgstr "Traçage"
604
 
605
  #: ../../admin/config/index.php:21
 
606
  msgid "Enable Tracking"
607
+ msgstr "Activer le traçage"
608
 
609
  #: ../../admin/config/index.php:21
610
  msgid ""
615
  "que vous n'auriez pas si vous désactiviez le plugin.)"
616
 
617
  #: ../../admin/config/index.php:22
 
618
  msgid "Monitor Admin Pages"
619
+ msgstr "Traçage Pages administrateur"
620
 
621
  #: ../../admin/config/index.php:22
 
622
  msgid "Enable this option to track your users' activity within the admin."
623
  msgstr ""
624
+ "Activez cette option si vous souhaitez suivre l'activité de vos utilisateurs "
625
  "dans l'admin."
626
 
627
  #: ../../admin/config/index.php:23
629
  msgstr "Activer le mode espion"
630
 
631
  #: ../../admin/config/index.php:23
 
632
  msgid ""
633
  "Collect information about screen resolutions, outbound links, downloads, "
634
  "etc. If Tracking Mode is set to Javascript, this data will be tracked "
635
  "regardless of which value you set for this option."
636
  msgstr ""
637
+ "Permet de recueillir des données sur les résolutions d'écran, les liens "
638
+ "sortants, les téléchargements et autres informations pertinentes. Si le mode "
639
+ "Javascript est activé, ces informations seront suivies indépendamment de la "
640
+ "valeur que vous définissez pour cette option."
 
641
 
642
  #: ../../admin/config/index.php:24
 
643
  msgid "Tracking Mode"
644
+ msgstr "Mode traçage"
645
 
646
  #: ../../admin/config/index.php:24
 
647
  msgid ""
648
  "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
649
  "Total Cache, WP SuperCache, HyperCache, etc). WP SlimStat will behave pretty "
654
  "Activez cette fonction si vous utilisez un plugin de mise en cache (W3 Total "
655
  "Cache et autres). WP SlimStat va se comporter un peu comme Google Analytics, "
656
  "et les visiteurs dont le navigateur ne supporte pas le Javascript seront "
657
+ "ignorés. D'autant plus qu'ainsi, <strong>la plupart</strong> des spammeurs, "
658
  "moteurs de recherche et autres robots ne seront pas suivis."
659
 
660
  #: ../../admin/config/index.php:24
 
661
  msgid "Javascript"
662
  msgstr "Mode Javascript"
663
 
674
  msgstr "Position du Menu"
675
 
676
  #: ../../admin/config/index.php:27
 
677
  msgid ""
678
  "Choose between a standalone admin menu for WP SlimStat or a drop down in the "
679
  "admin bar (if visible)."
680
  msgstr ""
681
+ "Choisir entre un menu d'administration dans la barre latérale de WordPress "
682
+ "ou un menu déroulant dans la barre d'administrateur."
 
683
 
684
  #: ../../admin/config/index.php:27
685
  msgid "Side Menu"
690
  msgstr "Barre d'Administration"
691
 
692
  #: ../../admin/config/index.php:28
 
693
  msgid "Add Stats to Posts"
694
+ msgstr "Etendre les Stats aux Posts"
695
 
696
  #: ../../admin/config/index.php:28
 
697
  msgid ""
698
  "Add a new column to the Edit Posts screen, with the number of hits per post."
699
  msgstr ""
700
+ "Ajoute une nouvelle colonne à l'écran d'édition des posts, en indiquant le "
701
+ "nombre de visites par Post (peut ralentir le rendu des pages)."
702
 
703
  #: ../../admin/config/index.php:30
704
  msgid "Database"
723
  msgstr "Prochain nettoyage le"
724
 
725
  #: ../../admin/config/index.php:31
726
+ #, php-format
727
  msgid "Entries logged on or before %s will be permanently deleted."
728
  msgstr ""
729
+ "Les données enregistrées le ou avant le %s seront définitivement supprimées. "
730
 
731
  #: ../../admin/config/index.php:31 ../../admin/view/index.php:77
732
  #: ../../admin/view/wp-slimstat-db.php:90
733
+ #: ../../admin/view/wp-slimstat-reports.php:747
734
  msgid "days"
735
  msgstr "jours"
736
 
737
  #: ../../admin/config/index.php:46
 
738
  msgid "Data and Formats"
739
+ msgstr "Données et Formats"
740
 
741
  #: ../../admin/config/index.php:47
742
  msgid "Convert IP Addresses"
751
  msgstr "Format des nombres"
752
 
753
  #: ../../admin/config/index.php:48
 
754
  msgid ""
755
  "Choose the number format you want to use for your reports, European or "
756
  "American."
757
  msgstr ""
758
+ "Choisissez le format numérique que vous souhaitez utiliser, européen ou "
759
  "américain."
760
 
761
  #: ../../admin/config/index.php:49
763
  msgstr "Voir Nom d'affichage"
764
 
765
  #: ../../admin/config/index.php:49
 
766
  msgid ""
767
  "By default, users are listed by their usernames. Use this option to "
768
  "visualize their display names instead."
804
  msgstr "Vues asynchrones"
805
 
806
  #: ../../admin/config/index.php:54
 
807
  msgid ""
808
  "Load all the reports dynamically. It makes the reports render faster, but it "
809
  "increases the load on your server."
810
  msgstr ""
811
+ "Utiliser Ajax pour charger toutes les statistiques dynamiquement. Fait "
812
+ "apparaitre les rapports plus rapidement, mais consomme plus de ressources "
813
+ "sur votre serveur."
814
 
815
  #: ../../admin/config/index.php:55
816
  msgid "Expand Details"
823
  "souris."
824
 
825
  #: ../../admin/config/index.php:56 ../../admin/config/index.php:60
 
826
  msgid "Rows to Display"
827
+ msgstr "Colonnes à afficher"
828
 
829
  #: ../../admin/config/index.php:56
830
  msgid "Specify the number of items in each report."
831
  msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
832
 
833
  #: ../../admin/config/index.php:58
 
834
  msgid "Right Now Screen"
835
+ msgstr "Actuellement sur le site"
836
 
837
  #: ../../admin/config/index.php:59
838
  msgid "Live Stream"
839
  msgstr "Flux en temps réel (Flux live)"
840
 
841
  #: ../../admin/config/index.php:59
 
842
  msgid ""
843
  "Enable the Live view, which refreshes the Right Now screen every X seconds. "
844
  "Enter <strong>0</strong> (number zero) to disable this functionality."
845
  msgstr ""
846
+ "Actualisez la vue 'Maintenant' toutes les X secondes. Entrer <strong>0</"
847
+ "strong> pour désactiver cette fonctionnalité."
848
 
849
  #: ../../admin/config/index.php:59 ../../admin/config/index.php:210
850
  msgid "seconds"
855
  msgstr ""
856
 
857
  #: ../../admin/config/index.php:61
 
858
  msgid "Right Now Extended"
859
+ msgstr ""
860
 
861
  #: ../../admin/config/index.php:61
862
  #, fuzzy
869
  "les systèmes plus lents."
870
 
871
  #: ../../admin/config/index.php:66
 
872
  msgid "Visitors and Known Users"
873
+ msgstr "Visiteurs et utilisateurs connus"
874
 
875
  #: ../../admin/config/index.php:67
 
876
  msgid "Track Registered Users"
877
+ msgstr "Tracer les utilisateurs enregistrés"
878
 
879
  #: ../../admin/config/index.php:67
 
880
  msgid "Enable this option to track logged in users."
881
+ msgstr "Activez cette option pour tracer les utilisateurs connectés"
882
 
883
  #: ../../admin/config/index.php:68
 
884
  msgid "Blacklist by Username"
885
+ msgstr "Liste noire basée sur le nom d'utilisateur"
886
 
887
  #: ../../admin/config/index.php:68
 
888
  msgid ""
889
  "List all the usernames you don't want to track, separated by commas. Please "
890
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
891
  "sensitive."
892
  msgstr ""
893
  "Entrez une liste d'utilisateurs WordPress que vous ne voulez pas suivre, "
894
+ "séparés par des virgules. Veuillez noter que les espaces <em>sont </em> pris "
895
+ "en compte et que les noms d'utilisateurs sont sensibles à la casse. (min-maj)"
896
 
897
  #: ../../admin/config/index.php:69
 
898
  msgid "Blacklist by IP Address"
899
+ msgstr "Liste noire par adresse IP"
900
 
901
  #: ../../admin/config/index.php:69
902
  #, fuzzy
915
  "pas suivre correctement les pages vues."
916
 
917
  #: ../../admin/config/index.php:70
 
918
  msgid "Blacklist by Capability"
919
+ msgstr ""
920
 
921
  #: ../../admin/config/index.php:70
922
  msgid ""
1038
  msgstr "Activer le mode privé"
1039
 
1040
  #: ../../admin/config/index.php:80
 
1041
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
1042
  msgstr ""
1043
+ "Cette option masque l'adresse IP de vos visiteurs afin de se conformer aux "
1044
+ "lois de confidentialité européennes."
1045
 
1046
  #: ../../admin/config/index.php:81
1047
  msgid "Ignore Prefetch Requests"
1048
+ msgstr "Ignorer les requêtes anticipées"
1049
 
1050
  #: ../../admin/config/index.php:81
1051
  #, fuzzy
1072
  "d'informations"
1073
 
1074
  #: ../../admin/config/index.php:130
 
1075
  msgid "Reports"
1076
+ msgstr "Rapports"
1077
 
1078
  #: ../../admin/config/index.php:131
1079
  msgid "Restrict Authors"
1088
  "statistiques relatives à leur propre contenu."
1089
 
1090
  #: ../../admin/config/index.php:132 ../../admin/config/index.php:136
 
1091
  msgid "Capability"
1092
+ msgstr "Aptitude"
1093
 
1094
  #: ../../admin/config/index.php:132
1095
  #, fuzzy
1141
  "Dans ce cas, la liste a la priorité sur la capacité."
1142
 
1143
  #: ../../admin/config/index.php:137
 
1144
  msgid ""
1145
  "List all the users who can edit these options, separated by commas. Please "
1146
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
1147
  "not forget to include yourself! Usernames are case sensitive."
1148
  msgstr ""
1149
+ "Lister tous les utilisateurs qui peuvent modifier ces options, séparés par "
1150
  "des virgules. Veuillez noter que les administrateurs <strong>ne sont pas</"
1151
+ "strong> implicitement autorisés, alors n'oubliez pas, vous même, de vous "
1152
+ "inscrire! Les noms d'utilisateurs sont sensibles à la casse. (Majuscules-"
1153
+ "minuscules)"
 
 
1154
 
1155
  #: ../../admin/config/index.php:153
1156
  msgid "Read access: username not found"
1214
  msgstr "Etendre la session"
1215
 
1216
  #: ../../admin/config/index.php:211
 
1217
  msgid "Extend the duration of a session each time the user visits a new page."
1218
  msgstr ""
1219
+ "Prolonger la durée d'une session à chaque fois que l'utilisateur visite une "
1220
+ "page."
1221
 
1222
  #: ../../admin/config/index.php:212
1223
  msgid "Enable CDN"
1239
  msgstr "Extensions du traçage"
1240
 
1241
  #: ../../admin/config/index.php:213
 
1242
  msgid ""
1243
  "List all the file extensions that you want to be treated as Downloads. "
1244
  "Please note that links pointing to external resources (i.e. PDFs on a "
1341
  msgstr "changer pour InnoDB"
1342
 
1343
  #: ../../admin/config/maintenance.php:101
 
1344
  msgid "records"
1345
  msgstr "Enregistrements"
1346
 
1347
  #: ../../admin/config/maintenance.php:106
 
1348
  msgid "Data Maintenance"
1349
+ msgstr "Maintenance des données"
1350
 
1351
  #: ../../admin/config/maintenance.php:109
 
1352
  msgid "Delete pageviews where"
1353
+ msgstr "Supprimer les pages où"
1354
 
1355
  #: ../../admin/config/maintenance.php:123 ../../admin/view/index.php:17
1356
  msgid "equals"
1410
  msgstr "Appliquer"
1411
 
1412
  #: ../../admin/config/maintenance.php:139
 
1413
  msgid ""
1414
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1415
  msgstr ""
1416
+ "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT ces enregistrement de "
1417
+ "votre base de données ?"
1418
 
1419
  #: ../../admin/config/maintenance.php:144
1420
  msgid "Empty Database"
1421
  msgstr "Vider la base de données"
1422
 
1423
  #: ../../admin/config/maintenance.php:147
 
1424
  msgid ""
1425
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1426
  "database?"
1427
  msgstr ""
1428
+ "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1429
+ "votre base de données ?"
1430
 
1431
  #: ../../admin/config/maintenance.php:147
 
1432
  msgid "Delete All Pageviews"
1433
+ msgstr "Supprimer toutes les pages vues"
1434
 
1435
  #: ../../admin/config/maintenance.php:148
1436
  msgid ""
1437
  "Erase all the information collected so far by WP SlimStat. This operation "
1438
  "<strong>does not</strong> reset your settings."
1439
  msgstr ""
1440
+ "Effacer les informations collecter par WP Slimstat jusqu'à present. Cette "
1441
+ "opération <strong>ne réinitialise pas </strong>vos paramétrages."
1442
 
1443
  #: ../../admin/config/maintenance.php:152
 
1444
  msgid "Reset Reports"
1445
+ msgstr "Réinitialiser les rapports"
1446
 
1447
  #: ../../admin/config/maintenance.php:155
 
1448
  msgid ""
1449
  "Are you sure you want to restore the default arrangement of your reports?"
1450
+ msgstr "Etes-vous sûr de vouloir réinitialiser vos rapports ?"
1451
 
1452
  #: ../../admin/config/maintenance.php:155
1453
  msgid "No Panic Button"
1454
+ msgstr "Pas de panique !"
1455
 
1456
  #: ../../admin/config/maintenance.php:156
1457
  msgid ""
1458
  "Reset the default arrangement of your reports. Helpful when, for some "
1459
  "reason, reports disappear from your panels."
1460
+ msgstr "Réinitialiser la mise en page par défaut de vos rapports."
1461
 
1462
  #: ../../admin/config/maintenance.php:160
1463
  msgid "Performance"
1468
  msgstr "Improve la performance"
1469
 
1470
  #: ../../admin/config/maintenance.php:164
 
1471
  msgid ""
1472
  "Please note that you will need about 30% more DB space to store the extra "
1473
  "information required."
1474
  msgstr ""
1475
+ "Vous aurez besoin d'environ 30% de plus d'espace de base de données pour "
1476
+ "stocker les informations supplémentaires nécessaires."
 
1477
 
1478
  #: ../../admin/config/maintenance.php:168
1479
  msgid "Save DB Space"
1488
  "SlimStats seront impactées."
1489
 
1490
  #: ../../admin/config/maintenance.php:174
 
1491
  msgid "Import and Export"
1492
+ msgstr "Import-Export"
1493
 
1494
  #: ../../admin/config/maintenance.php:178
1495
  msgid ""
1499
  msgstr ""
1500
 
1501
  #: ../../admin/config/maintenance.php:183
 
1502
  msgid "Import"
1503
+ msgstr "Importer"
1504
 
1505
  #: ../../admin/config/maintenance.php:184
1506
  msgid "Are you sure you want to OVERWRITE your current settings?"
1930
 
1931
  # Azerbaijani
1932
  #: ../../admin/lang/dynamic_strings.php:92
1933
+ #, fuzzy
1934
  msgid "l-az-az"
1935
+ msgstr "Azéri"
1936
 
1937
  # Belarusian
1938
  #: ../../admin/lang/dynamic_strings.php:93
1942
  # Belarusian
1943
  #: ../../admin/lang/dynamic_strings.php:94
1944
  msgid "l-be-by"
1945
+ msgstr "Biélorusse"
1946
 
1947
  # Bulgarian
1948
  #: ../../admin/lang/dynamic_strings.php:95
1967
 
1968
  # Catalan; Valencian
1969
  #: ../../admin/lang/dynamic_strings.php:99
1970
+ #, fuzzy
1971
  msgid "l-ca-es"
1972
  msgstr "Catalan; Valencien"
1973
 
1979
  # Czech
1980
  #: ../../admin/lang/dynamic_strings.php:101
1981
  msgid "l-cs-cz"
1982
+ msgstr "Tchèque"
1983
 
1984
  # Welsh
1985
  #: ../../admin/lang/dynamic_strings.php:102
1988
 
1989
  # Welsh
1990
  #: ../../admin/lang/dynamic_strings.php:103
1991
+ #, fuzzy
1992
  msgid "l-cy-gb"
1993
  msgstr "Gallois"
1994
 
1999
 
2000
  # Danish
2001
  #: ../../admin/lang/dynamic_strings.php:105
2002
+ #, fuzzy
2003
  msgid "l-da-dk"
2004
  msgstr "Danois"
2005
 
2040
 
2041
  # Dhivehi; Divehi; Maldivian
2042
  #: ../../admin/lang/dynamic_strings.php:113
2043
+ #, fuzzy
2044
  msgid "l-dv-mv"
2045
  msgstr "Dhivehi; Divehi; Maldivien"
2046
 
2283
 
2284
  # Faroese
2285
  #: ../../admin/lang/dynamic_strings.php:160
2286
+ #, fuzzy
2287
  msgid "l-fo-fo"
2288
+ msgstr "Féringien"
2289
 
2290
  # French
2291
  #: ../../admin/lang/dynamic_strings.php:161
2319
 
2320
  # French (Switzerland)
2321
  #: ../../admin/lang/dynamic_strings.php:167
2322
+ #, fuzzy
2323
  msgid "l-fr-mc"
2324
+ msgstr "Français (Suisse)"
2325
 
2326
  # Galician
2327
  #: ../../admin/lang/dynamic_strings.php:168
2340
 
2341
  # Gujarati
2342
  #: ../../admin/lang/dynamic_strings.php:171
2343
+ #, fuzzy
2344
  msgid "l-gu-in"
2345
+ msgstr "Gujarâtî"
2346
 
2347
  # Hebrew
2348
  #: ../../admin/lang/dynamic_strings.php:172
2361
 
2362
  # Hindi
2363
  #: ../../admin/lang/dynamic_strings.php:175
2364
+ #, fuzzy
2365
  msgid "l-hi-in"
2366
+ msgstr "Hindî"
2367
 
2368
  # Croatian
2369
  #: ../../admin/lang/dynamic_strings.php:176
2399
 
2400
  # Armenian
2401
  #: ../../admin/lang/dynamic_strings.php:182
2402
+ #, fuzzy
2403
  msgid "l-hy-am"
2404
+ msgstr "Arménien"
2405
 
2406
  # Indonesian
2407
  #: ../../admin/lang/dynamic_strings.php:183
2410
 
2411
  # Indonesian
2412
  #: ../../admin/lang/dynamic_strings.php:184
2413
+ #, fuzzy
2414
  msgid "l-id-id"
2415
+ msgstr "Indonésien"
2416
 
2417
  # Icelandic
2418
  #: ../../admin/lang/dynamic_strings.php:185
2457
 
2458
  # Georgian
2459
  #: ../../admin/lang/dynamic_strings.php:193
2460
+ #, fuzzy
2461
  msgid "l-ka-ge"
2462
+ msgstr "Géorgien"
2463
 
2464
  # Kazakh
2465
  #: ../../admin/lang/dynamic_strings.php:194
2495
 
2496
  # Korean
2497
  #: ../../admin/lang/dynamic_strings.php:200
2498
+ #, fuzzy
2499
  msgid "l-kok"
2500
+ msgstr "Coréen"
2501
 
2502
  # Korean
2503
  #: ../../admin/lang/dynamic_strings.php:201
2504
+ #, fuzzy
2505
  msgid "l-kok-in"
2506
+ msgstr "Coréen"
2507
 
2508
  # Kirghiz; Kyrgyz
2509
  #: ../../admin/lang/dynamic_strings.php:202
2555
 
2556
  # Macedonian
2557
  #: ../../admin/lang/dynamic_strings.php:211
2558
+ #, fuzzy
2559
  msgid "l-mk-ml"
2560
+ msgstr "Macédonien"
2561
 
2562
  # Mongolian
2563
  #: ../../admin/lang/dynamic_strings.php:212
2577
 
2578
  # Marathi
2579
  #: ../../admin/lang/dynamic_strings.php:215
2580
+ #, fuzzy
2581
  msgid "l-mr-in"
2582
+ msgstr "Marâthî"
2583
 
2584
  # Malay
2585
  #: ../../admin/lang/dynamic_strings.php:216
2616
 
2617
  # Norwegian BokmÃ¥l
2618
  #: ../../admin/lang/dynamic_strings.php:222
2619
+ #, fuzzy
2620
  msgid "l-nb-no"
2621
+ msgstr "Norvégien Bokmål"
2622
 
2623
  # Dutch; Flemish
2624
  #: ../../admin/lang/dynamic_strings.php:223
2637
 
2638
  # Norwegian Nynorsk
2639
  #: ../../admin/lang/dynamic_strings.php:226
2640
+ #, fuzzy
2641
  msgid "l-nn-no"
2642
+ msgstr "Norvégien Nynorsk"
2643
 
2644
  #: ../../admin/lang/dynamic_strings.php:227
2645
  msgid "l-ns"
2656
 
2657
  # Panjabi; Punjabi
2658
  #: ../../admin/lang/dynamic_strings.php:230
2659
+ #, fuzzy
2660
  msgid "l-pa-in"
2661
+ msgstr "Panjâbî"
2662
 
2663
  # Polish
2664
  #: ../../admin/lang/dynamic_strings.php:231
2746
 
2747
  # Sanskrit
2748
  #: ../../admin/lang/dynamic_strings.php:247
2749
+ #, fuzzy
2750
  msgid "l-sa-in"
2751
  msgstr "Sanskrit"
2752
 
2780
 
2781
  # Slovak
2782
  #: ../../admin/lang/dynamic_strings.php:253
2783
+ #, fuzzy
2784
  msgid "l-sk-sk"
2785
  msgstr "Slovaque"
2786
 
2791
 
2792
  # Slovenian
2793
  #: ../../admin/lang/dynamic_strings.php:255
2794
+ #, fuzzy
2795
  msgid "l-sl-si"
2796
+ msgstr "Slovène"
2797
 
2798
  # Albanian
2799
  #: ../../admin/lang/dynamic_strings.php:256
2862
 
2863
  # Telugu
2864
  #: ../../admin/lang/dynamic_strings.php:268
2865
+ #, fuzzy
2866
  msgid "l-te-in"
2867
+ msgstr "Télougou"
2868
 
2869
  # Thai
2870
  #: ../../admin/lang/dynamic_strings.php:269
3020
 
3021
  # Unknown
3022
  #: ../../admin/lang/dynamic_strings.php:298
3023
+ #: ../../admin/view/wp-slimstat-reports.php:482
3024
  msgid "l-"
3025
  msgstr "Inconnue"
3026
 
3038
  msgid "c-xy"
3039
  msgstr "Local"
3040
 
3041
+ #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:768
3042
  msgid "Today"
3043
  msgstr "Aujourd'hui"
3044
 
3045
+ #: ../../admin/view/index.php:49 ../../admin/view/wp-slimstat-reports.php:769
3046
  msgid "Yesterday"
3047
  msgstr "Hier"
3048
 
3051
  msgstr "7 derniers jours"
3052
 
3053
  #: ../../admin/view/index.php:51
 
3054
  msgid "Last 60 Days"
3055
+ msgstr "60 derniers jours"
3056
 
3057
  #: ../../admin/view/index.php:52
 
3058
  msgid "Last 90 Days"
3059
+ msgstr "90 derniers jours"
3060
 
3061
  #: ../../admin/view/index.php:53
3062
  #, fuzzy
3063
+ msgid "This Year So Far"
3064
+ msgstr "Cette année"
3065
 
3066
  #: ../../admin/view/index.php:54
 
3067
  msgid "Date Range"
3068
+ msgstr "Intervalle de date"
3069
 
3070
  #: ../../admin/view/index.php:56 ../../admin/view/wp-slimstat-db.php:87
3071
  msgid "Day"
3080
  msgstr "Année"
3081
 
3082
  #: ../../admin/view/index.php:80
 
3083
  msgid "Reset Filters"
3084
+ msgstr "Réinitialiser les filtres"
3085
 
3086
  #: ../../admin/view/index.php:117
3087
  msgid "Your report here"
3105
  "mon <a href=\"http://lab.duechiacchiere.it/\" target=\"_blank\">forum "
3106
  "d'aide</a>."
3107
 
3108
+ #: ../../admin/view/index.php:133 ../../admin/view/wp-slimstat-reports.php:759
3109
+ #: ../../admin/view/wp-slimstat-reports.php:861
3110
+ #: ../../admin/view/wp-slimstat-reports.php:1145
3111
  msgid "Pageviews"
3112
  msgstr "Pages vues"
3113
 
3122
  "les visiteurs qui reviennent, y compris les utilisateurs enregistrés."
3123
 
3124
  #: ../../admin/view/index.php:140
 
3125
  msgid "Take a sneak peek at what human visitors are doing on your website."
3126
+ msgstr "Jetez un oeil sur ce que font vos visiteurs humains sur le site"
 
3127
 
3128
  #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
3129
+ #: ../../admin/view/index.php:184 ../../admin/view/right-now.php:147
3130
  msgid "Color codes"
3131
  msgstr "Codes couleur"
3132
 
3145
  msgstr "Autres humains"
3146
 
3147
  #: ../../admin/view/index.php:144
 
3148
  msgid "Keywords used by your visitors to find your website on a search engine."
3149
  msgstr ""
3150
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
3151
+ "de recherche."
3152
 
3153
  #: ../../admin/view/index.php:147
3154
  msgid ""
3156
  "measures your site's rankings. Values are updated every 12 hours. Filters "
3157
  "set above don't apply to this report."
3158
  msgstr ""
3159
+ "WP SlimStat récupère les informations d'Alexa, facebook, et Google, pour "
3160
+ "mesurer le classement de votre site. Les données sont actualisées toutes les "
3161
+ "12 heures. Les filtres indiqués ci-dessus ne sont pas pris en compte dans ce "
3162
+ "rapport."
3163
 
3164
  #: ../../admin/view/index.php:150
3165
  msgid ""
3168
  "detect viruses and other treats. Please note that no confidential "
3169
  "information is being sent to HackerNinja."
3170
  msgstr ""
3171
+ "Nous avons établi un partenariat avec HackerNinja.com afin de pouvoir vous "
3172
+ "proposer un scan de sécurité gratuit de votre site. En cliquant sur \"Lancer "
3173
+ "le scan gratuit\", votre site sera analysé pour détecter les virus et autres "
3174
+ "menaces. Notez qu'aucune informations confidentielles ne seront transmises à "
3175
+ "HackerNinja.com."
3176
 
3177
  #: ../../admin/view/index.php:153
3178
  msgid "Human Visits"
3266
  msgstr "Humain"
3267
 
3268
  #: ../../admin/view/right-now.php:8
 
3269
  msgid "Bot/Crawler"
3270
+ msgstr "Robot / Crawler"
3271
 
3272
  #: ../../admin/view/right-now.php:8
3273
  msgid "Mobile Device"
3278
  msgstr "Lecteur de Flux (Syndication)"
3279
 
3280
  #: ../../admin/view/right-now.php:28
3281
+ #: ../../admin/view/wp-slimstat-reports.php:425
3282
+ #: ../../admin/view/wp-slimstat-reports.php:670
3283
  msgid "No data to display"
3284
  msgstr "Aucune donnée à afficher"
3285
 
3286
  # Unknown
3287
+ #: ../../admin/view/right-now.php:54
3288
+ #: ../../admin/view/wp-slimstat-reports.php:470
3289
+ #: ../../admin/view/wp-slimstat-reports.php:708
3290
+ #: ../../admin/view/wp-slimstat-reports.php:1032
3291
  msgid "c-"
3292
  msgstr "Inconnu"
3293
 
3294
+ #: ../../admin/view/right-now.php:120
3295
+ #: ../../admin/view/wp-slimstat-reports.php:524
3296
+ #: ../../admin/view/wp-slimstat-reports.php:528
3297
+ #: ../../admin/view/wp-slimstat-reports.php:690
3298
+ #: ../../admin/view/wp-slimstat-reports.php:728
3299
  msgid "Open this URL in a new window"
3300
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
3301
 
3302
+ #: ../../admin/view/right-now.php:123
3303
  msgid "Local search results page"
3304
  msgstr "Page de résultat d'une recherche locale"
3305
 
3306
+ #: ../../admin/view/right-now.php:130
3307
  msgid "Open this referrer in a new window"
3308
  msgstr "Ouvrir ce référent dans une nouvelle fenêtre"
3309
 
3310
+ #: ../../admin/view/right-now.php:131
3311
  msgid "Open this outbound link in a new window"
3312
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
3313
 
3314
+ #: ../../admin/view/right-now.php:132
 
3315
  msgid "Date and Time"
3316
  msgstr "Date/Heure"
3317
 
3318
+ #: ../../admin/view/right-now.php:133
 
3319
  msgid "Content Type"
3320
+ msgstr "Type de contenu"
3321
 
3322
+ #: ../../admin/view/right-now.php:148
3323
  msgid "Visit with keywords"
3324
  msgstr "Visite avec mots clés"
3325
 
3326
+ #: ../../admin/view/right-now.php:150
 
3327
  msgid "Known User"
3328
+ msgstr "Utilisateur connu"
3329
 
3330
+ #: ../../admin/view/right-now.php:151
3331
  #, fuzzy
3332
  msgid "Human Visitor"
3333
  msgstr "Visiteurs humains"
3334
 
3335
+ #: ../../admin/view/right-now.php:152
3336
  msgid "Bot or Crawler"
3337
  msgstr "Robot ou Crawler"
3338
 
3362
  msgstr "Heure"
3363
 
3364
  #: ../../admin/view/wp-slimstat-db.php:92
 
3365
  msgid "Order Direction"
3366
+ msgstr "Ordre de tri"
3367
 
3368
  #: ../../admin/view/wp-slimstat-db.php:93
3369
  msgid "Limit Results"
3371
 
3372
  #: ../../admin/view/wp-slimstat-db.php:94
3373
  msgid "Start From"
3374
+ msgstr "Commencer à partir de"
3375
 
3376
  #: ../../admin/view/wp-slimstat-reports.php:41
3377
  msgid "Pageviews (chart)"
3431
 
3432
  #: ../../admin/view/wp-slimstat-reports.php:53
3433
  msgid "Security Scan"
3434
+ msgstr "Scan de sécurité"
3435
 
3436
  #: ../../admin/view/wp-slimstat-reports.php:54
 
3437
  msgid "Top Language Families"
3438
  msgstr "Top Langues"
3439
 
3687
  msgid "Monthly %s"
3688
  msgstr "%s par Mois"
3689
 
3690
+ #: ../../admin/view/wp-slimstat-reports.php:452
3691
  msgid "Category ID"
3692
  msgstr "l'ID de la catégorie de l'article"
3693
 
3694
+ #: ../../admin/view/wp-slimstat-reports.php:485
3695
  msgid "OS Code"
3696
  msgstr "Code OS "
3697
 
3698
+ #: ../../admin/view/wp-slimstat-reports.php:495
3699
  msgid "Referrer"
3700
  msgstr "Référent"
3701
 
3702
+ #: ../../admin/view/wp-slimstat-reports.php:519
3703
+ #: ../../admin/view/wp-slimstat-reports.php:796
3704
+ #: ../../admin/view/wp-slimstat-reports.php:805
3705
+ #: ../../admin/view/wp-slimstat-reports.php:811
3706
+ #: ../../admin/view/wp-slimstat-reports.php:817
3707
+ #: ../../admin/view/wp-slimstat-reports.php:823
3708
+ #: ../../admin/view/wp-slimstat-reports.php:829
3709
+ #: ../../admin/view/wp-slimstat-reports.php:835
3710
+ #: ../../admin/view/wp-slimstat-reports.php:841
3711
  msgid "Hits"
3712
  msgstr "Hits"
3713
 
3714
+ #: ../../admin/view/wp-slimstat-reports.php:687
3715
  msgid "Search for"
3716
  msgstr "Recherche pour"
3717
 
3718
+ #: ../../admin/view/wp-slimstat-reports.php:718
3719
+ #: ../../admin/view/wp-slimstat-reports.php:728
3720
  msgid "Source"
3721
  msgstr "Source"
3722
 
3723
+ #: ../../admin/view/wp-slimstat-reports.php:720
3724
  msgid "Keywords"
3725
  msgstr "les mots clés"
3726
 
3727
+ #: ../../admin/view/wp-slimstat-reports.php:728
3728
  #, php-format
3729
  msgid "Filter results where resource equals %s"
3730
  msgstr "Filtrer les résultats où la ressource égale %s"
3731
 
3732
+ #: ../../admin/view/wp-slimstat-reports.php:742
3733
  msgid "Total Pageviews"
3734
  msgstr "Total Pages Vues"
3735
 
3736
+ #: ../../admin/view/wp-slimstat-reports.php:743
3737
  msgid "DB Size"
3738
  msgstr "Taille de la base de données"
3739
 
3740
+ #: ../../admin/view/wp-slimstat-reports.php:744
3741
  msgid "Tracking Active"
3742
  msgstr "Traçage actif"
3743
 
3744
+ #: ../../admin/view/wp-slimstat-reports.php:745
3745
  msgid "Javascript Mode"
3746
  msgstr "Mode Javascript"
3747
 
3748
+ #: ../../admin/view/wp-slimstat-reports.php:746
3749
  msgid "Tracking Browser Caps"
3750
  msgstr "Traçage Capacités Navigateurs"
3751
 
3752
+ #: ../../admin/view/wp-slimstat-reports.php:747
3753
  msgid "Auto purge"
3754
  msgstr "Purge automatique"
3755
 
3756
+ #: ../../admin/view/wp-slimstat-reports.php:748
3757
  msgid "Oldest pageview"
3758
  msgstr "Plus ancienne page vue"
3759
 
3760
+ #: ../../admin/view/wp-slimstat-reports.php:748
3761
  msgid "No visits"
3762
  msgstr "Aucune visite"
3763
 
3764
+ #: ../../admin/view/wp-slimstat-reports.php:758
3765
+ #: ../../admin/view/wp-slimstat-reports.php:860
3766
  msgid ""
3767
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
3768
  "time the tracking code is executed."
3770
  "Une demande pour charger un fichier HTML. WP SlimStat enregistre un \"pages "
3771
  "vues \" chaque fois que le code de traçage est exécuté."
3772
 
3773
+ #: ../../admin/view/wp-slimstat-reports.php:760
3774
  msgid "How many pages have been visited on average during the current period."
3775
  msgstr ""
3776
  "Combien de pages ont été visitées en moyenne au cours de la période en cours."
3777
 
3778
+ #: ../../admin/view/wp-slimstat-reports.php:761
3779
  msgid "Average Pageviews"
3780
  msgstr "Nombre de pages vues en moyenne"
3781
 
3782
+ #: ../../admin/view/wp-slimstat-reports.php:762
3783
  msgid ""
3784
  "Visitors who landed on your site after searching for a keyword on Google, "
3785
  "Yahoo, etc."
3787
  "Visiteurs qui sont arrivés sur votre site après une recherche par mots clés "
3788
  "sur Google, Yahoo, etc"
3789
 
3790
+ #: ../../admin/view/wp-slimstat-reports.php:763
3791
  msgid "From Search Results"
3792
  msgstr "Résultat de recherches"
3793
 
3794
+ #: ../../admin/view/wp-slimstat-reports.php:764
3795
  msgid ""
3796
  "Used to differentiate between multiple requests to download a file from one "
3797
  "internet address (IP) and requests originating from many distinct addresses"
3800
  "fichier à partir d'une adresse Internet (IP) unique et les demandes "
3801
  "provenant de plusieurs adresses distinctes"
3802
 
3803
+ #: ../../admin/view/wp-slimstat-reports.php:765
3804
+ #: ../../admin/view/wp-slimstat-reports.php:780
3805
+ #: ../../admin/view/wp-slimstat-reports.php:1145
3806
+ #: ../../admin/view/wp-slimstat-reports.php:1149
3807
+ #: ../../admin/view/wp-slimstat-reports.php:1153
3808
  msgid "Unique IPs"
3809
  msgstr "IPs uniques"
3810
 
3811
+ #: ../../admin/view/wp-slimstat-reports.php:766
3812
  msgid "Last 5 minutes"
3813
  msgstr "5 dernières minutes"
3814
 
3815
+ #: ../../admin/view/wp-slimstat-reports.php:767
3816
  msgid "Last 30 minutes"
3817
  msgstr "30 dernières minutes"
3818
 
3819
+ #: ../../admin/view/wp-slimstat-reports.php:777
3820
  msgid ""
3821
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3822
  "multiple times if they perform multiple visits."
3825
  "reviennent sont comptés plusieurs fois s'ils effectuent des visites "
3826
  "multiples."
3827
 
3828
+ #: ../../admin/view/wp-slimstat-reports.php:778
3829
  msgid "Human visits"
3830
  msgstr "Visiteurs humains"
3831
 
3832
+ #: ../../admin/view/wp-slimstat-reports.php:779
3833
  msgid "It includes only traffic generated by human visitors."
3834
  msgstr "Cela ne comprend que les visites dites humaines."
3835
 
3836
+ #: ../../admin/view/wp-slimstat-reports.php:781
3837
+ #: ../../admin/view/wp-slimstat-reports.php:872
3838
  msgid ""
3839
  "Percentage of single-page visits, i.e. visits in which the person left your "
3840
  "site from the entrance page."
3842
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
3843
  "desquelles la personne a quitté votre site dès la page d'entrée."
3844
 
3845
+ #: ../../admin/view/wp-slimstat-reports.php:782
3846
  msgid "Bounce rate"
3847
  msgstr "Taux de rebond"
3848
 
3849
+ #: ../../admin/view/wp-slimstat-reports.php:783
3850
  msgid "Visitors who had previously left a comment on your blog."
3851
  msgstr "Visiteurs qui ont déjà laissé un commentaire sur votre blog."
3852
 
3853
+ #: ../../admin/view/wp-slimstat-reports.php:784
3854
  msgid "Known visitors"
3855
  msgstr "Visiteurs connus"
3856
 
3857
+ #: ../../admin/view/wp-slimstat-reports.php:785
3858
  msgid "Human users who visited your site only once."
3859
  msgstr "Visiteurs humains qui ont visité votre site une seule fois."
3860
 
3861
+ #: ../../admin/view/wp-slimstat-reports.php:786
3862
  msgid "New visitors"
3863
  msgstr "Nouveaux visiteurs"
3864
 
3865
+ #: ../../admin/view/wp-slimstat-reports.php:787
3866
  msgid "Bots"
3867
  msgstr "Robots"
3868
 
3869
+ #: ../../admin/view/wp-slimstat-reports.php:788
3870
  msgid "Pages per visit"
3871
  msgstr "Pages vues par visite"
3872
 
3873
+ #: ../../admin/view/wp-slimstat-reports.php:789
3874
+ #: ../../admin/view/wp-slimstat-reports.php:1158
3875
  msgid "Longest visit"
3876
  msgstr "Visite la plus longue"
3877
 
3878
+ #: ../../admin/view/wp-slimstat-reports.php:789
3879
  msgid "hits"
3880
  msgstr "hits"
3881
 
3882
+ #: ../../admin/view/wp-slimstat-reports.php:807
3883
  msgid "0 - 30 seconds"
3884
  msgstr "0 - 30 secondes"
3885
 
3886
+ #: ../../admin/view/wp-slimstat-reports.php:813
3887
  msgid "31 - 60 seconds"
3888
  msgstr "31 - 60 secondes"
3889
 
3890
+ #: ../../admin/view/wp-slimstat-reports.php:819
3891
  msgid "1 - 3 minutes"
3892
  msgstr "1 - 3 minutes"
3893
 
3894
+ #: ../../admin/view/wp-slimstat-reports.php:825
3895
  msgid "3 - 5 minutes"
3896
  msgstr "3 - 5 minutes"
3897
 
3898
+ #: ../../admin/view/wp-slimstat-reports.php:831
3899
  msgid "5 - 7 minutes"
3900
  msgstr "5 - 7 minutes"
3901
 
3902
+ #: ../../admin/view/wp-slimstat-reports.php:837
3903
  msgid "7 - 10 minutes"
3904
  msgstr "7 - 10 minutes"
3905
 
3906
+ #: ../../admin/view/wp-slimstat-reports.php:843
3907
  msgid "More than 10 minutes"
3908
  msgstr "Plus de 10 minutes"
3909
 
3910
+ #: ../../admin/view/wp-slimstat-reports.php:852
3911
  msgid "Average time on site"
3912
  msgstr "Moyenne du temps passé sur le site"
3913
 
3914
+ #: ../../admin/view/wp-slimstat-reports.php:862
3915
  msgid ""
3916
  "A referrer (or referring site) is the site that a visitor previously visited "
3917
  "before following a link to your site."
3919
  "Un référent (ou site référent) est le site que le visiteur a visité avant de "
3920
  "suivre un lien vers votre site."
3921
 
3922
+ #: ../../admin/view/wp-slimstat-reports.php:863
3923
  msgid "Unique Referrers"
3924
  msgstr "Référents uniques"
3925
 
3926
+ #: ../../admin/view/wp-slimstat-reports.php:864
3927
  msgid ""
3928
  "Visitors who visited the site by typing the URL directly into their browser. "
3929
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
3936
  "courriels non marquées, ou des liens à partir de documents qui ne "
3937
  "contiennent pas de variables de suivi."
3938
 
3939
+ #: ../../admin/view/wp-slimstat-reports.php:865
3940
  msgid "Direct Pageviews"
3941
  msgstr "Pages Vues Directes"
3942
 
3943
+ #: ../../admin/view/wp-slimstat-reports.php:866
3944
  msgid ""
3945
  "Visitors who came to your site via searches on Google or some other search "
3946
  "engine."
3948
  "Visiteurs qui sont venus sur le site via un moteur de recherche comme Google "
3949
  "ou autre."
3950
 
3951
+ #: ../../admin/view/wp-slimstat-reports.php:867
3952
  msgid "From a search result"
3953
  msgstr "Depuis un moteur de recherche"
3954
 
3955
+ #: ../../admin/view/wp-slimstat-reports.php:868
3956
  msgid ""
3957
  "The first page that a user views during a session. This is also known as the "
3958
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
3964
  "mots clés 'Brooklyn Office Space' et arrive sur votre page d'accueil, elle "
3965
  "sera comptée (pour cette visite) comme la page d'entrée."
3966
 
3967
+ #: ../../admin/view/wp-slimstat-reports.php:869
3968
  msgid "Unique Landing Pages"
3969
  msgstr "Pages d'Entrées Uniques"
3970
 
3971
+ #: ../../admin/view/wp-slimstat-reports.php:870
3972
  msgid "Number of single-page visits to your site over the selected period."
3973
  msgstr ""
3974
  "Nombre de visites d'une seule page de votre site au cours de la période "
3975
  "sélectionnée."
3976
 
3977
+ #: ../../admin/view/wp-slimstat-reports.php:871
3978
  msgid "Bounce Pages"
3979
  msgstr "Pages de Rebonds"
3980
 
3981
+ #: ../../admin/view/wp-slimstat-reports.php:873
3982
  msgid "New Visitors Rate"
3983
  msgstr "Taux de Nouveaux Visiteurs"
3984
 
3985
+ #: ../../admin/view/wp-slimstat-reports.php:874
3986
  msgid ""
3987
  "Visitors who visited the site in the last 5 minutes coming from a search "
3988
  "engine."
3990
  "Visiteurs qui ont visité le site dans les 5 dernières visites, provenant "
3991
  "d'un moteur de recherche."
3992
 
3993
+ #: ../../admin/view/wp-slimstat-reports.php:875
3994
  msgid "Currently from search engines"
3995
  msgstr "Moteurs de recherche récents"
3996
 
3997
+ #: ../../admin/view/wp-slimstat-reports.php:943
3998
  msgid "Number of pages in your site included in Google's index."
3999
  msgstr "Nombre de pages de votre site indexées par Google."
4000
 
4001
+ #: ../../admin/view/wp-slimstat-reports.php:944
4002
  msgid "Google Index"
4003
  msgstr "Index Google"
4004
 
4005
+ #: ../../admin/view/wp-slimstat-reports.php:945
4006
  msgid "Number of pages, according to Google, that link back to your site."
4007
  msgstr ""
4008
  "Nombre de pages qui pointent sur votre site, d'après les informations "
4009
  "fournies par Google."
4010
 
4011
+ #: ../../admin/view/wp-slimstat-reports.php:946
4012
  msgid "Google Backlinks"
4013
  msgstr "Backlinks Google"
4014
 
4015
+ #: ../../admin/view/wp-slimstat-reports.php:947
4016
  msgid ""
4017
  "How many times the Facebook Like button has been approximately clicked on "
4018
  "your site."
4019
  msgstr ""
4020
  "Nombre de fois que votre site a été Liké par quelqu'un sur le réseau social."
4021
 
4022
+ #: ../../admin/view/wp-slimstat-reports.php:948
4023
  msgid "Facebook Likes"
4024
  msgstr "\"J'aime\" Facebook"
4025
 
4026
+ #: ../../admin/view/wp-slimstat-reports.php:949
4027
  msgid ""
4028
  "How many times your site has been shared by someone on the social network."
4029
  msgstr ""
4030
  "Nombre de fois que votre site a été partagé par quelqu'un sur le réseau "
4031
  "social."
4032
 
4033
+ #: ../../admin/view/wp-slimstat-reports.php:950
4034
  msgid "Facebook Shares"
4035
  msgstr "Partages Facebook"
4036
 
4037
+ #: ../../admin/view/wp-slimstat-reports.php:951
4038
  msgid "How many times links to your website have been clicked on Facebook."
4039
  msgstr "Nombre de fois que vos liens ont été activés sur Facebook"
4040
 
4041
+ #: ../../admin/view/wp-slimstat-reports.php:952
4042
  msgid "Facebook Clicks"
4043
  msgstr "Clicks Facebook"
4044
 
4045
+ #: ../../admin/view/wp-slimstat-reports.php:953
4046
  msgid ""
4047
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
4048
  "traffic data."
4050
  "Alexa est une filiale d'Amazon.com qui fournit des données commerciales "
4051
  "concernant le trafic web."
4052
 
4053
+ #: ../../admin/view/wp-slimstat-reports.php:954
4054
  msgid "Alexa World Rank"
4055
  msgstr "Alexa, Classement mondial"
4056
 
4057
+ #: ../../admin/view/wp-slimstat-reports.php:955
4058
  msgid "Alexa Country Rank"
4059
  msgstr "Alexa, Classement par pays"
4060
 
4061
+ #: ../../admin/view/wp-slimstat-reports.php:956
4062
  msgid "Alexa Popularity"
4063
  msgstr "Alexa, Popularité"
4064
 
4065
+ #: ../../admin/view/wp-slimstat-reports.php:973
4066
  msgid "Bing Test"
4067
  msgstr "Test Bing"
4068
 
4069
+ #: ../../admin/view/wp-slimstat-reports.php:974
4070
  msgid "AntiVirus Scan"
4071
  msgstr "Scan Antivirus"
4072
 
4073
+ #: ../../admin/view/wp-slimstat-reports.php:975
4074
  msgid "Google Bot Test"
4075
  msgstr "Test du Google Bot"
4076
 
4077
+ #: ../../admin/view/wp-slimstat-reports.php:976
4078
  msgid "Scan for Hostile Strings"
4079
  msgstr ""
4080
 
4081
+ #: ../../admin/view/wp-slimstat-reports.php:977
4082
  msgid "Generic Web Bot test"
4083
  msgstr "Test par d'autres robots."
4084
 
4085
+ #: ../../admin/view/wp-slimstat-reports.php:978
4086
  msgid "Google Safe Browsing List"
4087
+ msgstr "Google Safe Browsing List"
4088
 
4089
+ #: ../../admin/view/wp-slimstat-reports.php:979
4090
  msgid "Hostile External Links"
4091
  msgstr "Liens externes hostiles"
4092
 
4093
+ #: ../../admin/view/wp-slimstat-reports.php:980
 
4094
  msgid "Other Treats"
4095
+ msgstr "Autres menaces"
4096
 
4097
+ #: ../../admin/view/wp-slimstat-reports.php:1006
4098
  msgid "Passed"
4099
  msgstr "Réussi"
4100
 
4101
+ #: ../../admin/view/wp-slimstat-reports.php:1006
4102
  msgid "At Risk"
4103
  msgstr "Risqué"
4104
 
4105
+ #: ../../admin/view/wp-slimstat-reports.php:1009
4106
  msgid "Timed Out"
4107
  msgstr "Expiration du délai"
4108
 
4109
  # Unknown
4110
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4111
  msgid "c-xx"
4112
  msgstr "Inconnu"
4113
 
4114
  # Afghanistan
4115
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4116
  msgid "c-af"
4117
  msgstr "Afghanistan"
4118
 
4119
  # Åland Islands
4120
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4121
  msgid "c-ax"
4122
  msgstr "Îles Åland"
4123
 
4124
  # Albania
4125
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4126
  msgid "c-al"
4127
  msgstr "Albanie"
4128
 
4129
  # Algeria
4130
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4131
  msgid "c-dz"
4132
  msgstr "Algérie"
4133
 
4134
  # Andorra
4135
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4136
  msgid "c-ad"
4137
  msgstr "Andorre"
4138
 
4139
  # Angola
4140
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4141
  msgid "c-ao"
4142
  msgstr "Angola"
4143
 
4144
  # Anguilla
4145
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4146
  msgid "c-ai"
4147
  msgstr "Anguilla"
4148
 
4149
  # Antigua and Barbuda
4150
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4151
  msgid "c-ag"
4152
  msgstr "Antigua et Barbuda"
4153
 
4154
  # Argentina
4155
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4156
  msgid "c-ar"
4157
  msgstr "Argentine"
4158
 
4159
  # Armenia
4160
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4161
  msgid "c-am"
4162
  msgstr "Arménie"
4163
 
4164
  # Aruba
4165
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4166
  msgid "c-aw"
4167
  msgstr "Aruba"
4168
 
4169
  # Australia
4170
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4171
  msgid "c-au"
4172
  msgstr "Australie"
4173
 
4174
  # Austria
4175
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4176
  msgid "c-at"
4177
  msgstr "Autriche"
4178
 
4179
  # Azerbaijan
4180
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4181
  msgid "c-az"
4182
  msgstr "Azerbaïdjan"
4183
 
4184
  # Bahamas
4185
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4186
  msgid "c-bs"
4187
  msgstr "Bahamas"
4188
 
4189
  # Bahrain
4190
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4191
  msgid "c-bh"
4192
  msgstr "Bahreïn"
4193
 
4194
  # Bangladesh
4195
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4196
  msgid "c-bd"
4197
  msgstr "Bangladesh"
4198
 
4199
  # Barbados
4200
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4201
  msgid "c-bb"
4202
  msgstr "Barbade"
4203
 
4204
  # Belarus
4205
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4206
  msgid "c-by"
4207
  msgstr "Bélarus"
4208
 
4209
  # Belgium
4210
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4211
  msgid "c-be"
4212
  msgstr "Belgique"
4213
 
4214
  # Belize
4215
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4216
  msgid "c-bz"
4217
  msgstr "Belize"
4218
 
4219
  # Benin
4220
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4221
  msgid "c-bj"
4222
  msgstr "Bénin"
4223
 
4224
  # Bermuda
4225
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4226
  msgid "c-bm"
4227
  msgstr "Bermudes"
4228
 
4229
  # Bhutan
4230
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4231
  msgid "c-bt"
4232
  msgstr "Bhoutan"
4233
 
4234
  # Bolivia
4235
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4236
  msgid "c-bo"
4237
  msgstr "État plurinational de Bolivie"
4238
 
4239
  # Bosnia and Herzegovina
4240
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4241
  msgid "c-ba"
4242
  msgstr "Bosnie-Herzégovine"
4243
 
4244
  # Botswana
4245
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4246
  msgid "c-bw"
4247
  msgstr "Botswana"
4248
 
4249
  # Brazil
4250
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4251
  msgid "c-br"
4252
  msgstr "Brésil"
4253
 
4254
  # Brunei Darussalam
4255
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4256
  msgid "c-bn"
4257
  msgstr "Brunéi Darussalam"
4258
 
4259
  # Bulgaria
4260
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4261
  msgid "c-bg"
4262
  msgstr "Bulgarie"
4263
 
4264
  # Burkina Faso
4265
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4266
  msgid "c-bf"
4267
  msgstr "Burkina Faso"
4268
 
4269
  # Burundi
4270
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4271
  msgid "c-bi"
4272
  msgstr "Burundi"
4273
 
4274
  # Cambodia
4275
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4276
  msgid "c-kh"
4277
  msgstr "Cambodge"
4278
 
4279
  # Cameroon
4280
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4281
  msgid "c-cm"
4282
  msgstr "Cameroun"
4283
 
4284
  # Canada
4285
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4286
  msgid "c-ca"
4287
  msgstr "Canada"
4288
 
4289
  # Cape Verde
4290
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4291
  msgid "c-cv"
4292
  msgstr "Cap-Vert"
4293
 
4294
  # Cayman Islands
4295
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4296
  msgid "c-ky"
4297
  msgstr "Îles Caïmans"
4298
 
4299
  # Central African Republic
4300
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4301
  msgid "c-cf"
4302
  msgstr "République Centrafricaine"
4303
 
4304
  # Chad
4305
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4306
  msgid "c-td"
4307
  msgstr "Tchad"
4308
 
4309
  # Chile
4310
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4311
  msgid "c-cl"
4312
  msgstr "Chili"
4313
 
4314
  # China
4315
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4316
  msgid "c-cn"
4317
  msgstr "Chine"
4318
 
4319
  # Colombia
4320
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4321
  msgid "c-co"
4322
  msgstr "Colombie"
4323
 
4324
  # Comoros
4325
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4326
  msgid "c-km"
4327
  msgstr "Comores"
4328
 
4329
  # Congo
4330
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4331
  msgid "c-cg"
4332
  msgstr "Congo"
4333
 
4334
  # The Democratic Republic of the Congo
4335
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4336
  msgid "c-cd"
4337
  msgstr "République Démocratique du Congo"
4338
 
4339
  # Costa Rica
4340
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4341
  msgid "c-cr"
4342
  msgstr "Costa Rica"
4343
 
4344
  # Côte d'Ivoire
4345
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4346
  msgid "c-ci"
4347
  msgstr "Côte d'Ivoire"
4348
 
4349
  # Croatia
4350
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4351
  msgid "c-hr"
4352
  msgstr "Croatie"
4353
 
4354
  # Cuba
4355
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4356
  msgid "c-cu"
4357
  msgstr "Cuba"
4358
 
4359
  # Cyprus
4360
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4361
  msgid "c-cy"
4362
  msgstr "Chypre"
4363
 
4364
  # Czech Republic
4365
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4366
  msgid "c-cz"
4367
  msgstr "République tchèque"
4368
 
4369
  # Denmark
4370
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4371
  msgid "c-dk"
4372
  msgstr "Danemark"
4373
 
4374
  # Djibouti
4375
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4376
  msgid "c-dj"
4377
  msgstr "Djibouti"
4378
 
4379
  # Dominica
4380
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4381
  msgid "c-dm"
4382
  msgstr "Dominique"
4383
 
4384
  # Dominican Republic
4385
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4386
  msgid "c-do"
4387
  msgstr "République dominicaine"
4388
 
4389
  # Ecuador
4390
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4391
  msgid "c-ec"
4392
  msgstr "Équateur"
4393
 
4394
  # Egypt
4395
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4396
  msgid "c-eg"
4397
  msgstr "Égypte"
4398
 
4399
  # El Salvador
4400
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4401
  msgid "c-sv"
4402
  msgstr "El Salvador"
4403
 
4404
  # Equatorial Guinea
4405
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4406
  msgid "c-gq"
4407
  msgstr "Guinée équatoriale"
4408
 
4409
  # Eritrea
4410
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4411
  msgid "c-er"
4412
  msgstr "Érythrée"
4413
 
4414
  # Estonia
4415
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4416
  msgid "c-ee"
4417
  msgstr "Estonie"
4418
 
4419
  # Ethiopia
4420
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4421
  msgid "c-et"
4422
  msgstr "Éthiopie"
4423
 
4424
  # Faroe Islands
4425
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4426
  msgid "c-fo"
4427
  msgstr "Îles Féroé"
4428
 
4429
  # Falkland Islands (Malvinas)
4430
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4431
  msgid "c-fk"
4432
  msgstr "Îles Falkland (Malvinas)"
4433
 
4434
  # Fiji
4435
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4436
  msgid "c-fj"
4437
  msgstr "Fidji"
4438
 
4439
  # Finland
4440
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4441
  msgid "c-fi"
4442
  msgstr "Finlande"
4443
 
4444
  # France
4445
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4446
  msgid "c-fr"
4447
  msgstr "France"
4448
 
4449
  # French Guiana
4450
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4451
  msgid "c-gf"
4452
  msgstr "Guyane française"
4453
 
4454
  # Gabon
4455
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4456
  msgid "c-ga"
4457
  msgstr "Gabon"
4458
 
4459
  # Gambia
4460
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4461
  msgid "c-gm"
4462
  msgstr "Gambie"
4463
 
4464
  # Georgia
4465
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4466
  msgid "c-ge"
4467
  msgstr "Géorgie"
4468
 
4469
  # Germany
4470
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4471
  msgid "c-de"
4472
  msgstr "Allemagne"
4473
 
4474
  # Ghana
4475
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4476
  msgid "c-gh"
4477
  msgstr "Ghana"
4478
 
4479
  # Greece
4480
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4481
  msgid "c-gr"
4482
  msgstr "Grèce"
4483
 
4484
  # Greenland
4485
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4486
  msgid "c-gl"
4487
  msgstr "Groenland"
4488
 
4489
  # Grenada
4490
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4491
  msgid "c-gd"
4492
  msgstr "Grenade"
4493
 
4494
  # Guadeloupe
4495
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4496
  msgid "c-gp"
4497
  msgstr "Guadeloupe"
4498
 
4499
  # Guatemala
4500
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4501
  msgid "c-gt"
4502
  msgstr "Guatemala"
4503
 
4504
  # Guinea
4505
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4506
  msgid "c-gn"
4507
  msgstr "Guinée"
4508
 
4509
  # Guinea-Bissau
4510
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4511
  msgid "c-gw"
4512
  msgstr "Guinée-Bissau"
4513
 
4514
  # Guyana
4515
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4516
  msgid "c-gy"
4517
  msgstr "Guyana"
4518
 
4519
  # Haiti
4520
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4521
  msgid "c-ht"
4522
  msgstr "Haïti"
4523
 
4524
  # Honduras
4525
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4526
  msgid "c-hn"
4527
  msgstr "Honduras"
4528
 
4529
  # Hong Kong
4530
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4531
  msgid "c-hk"
4532
  msgstr "Hong Kong"
4533
 
4534
  # Hungary
4535
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4536
  msgid "c-hu"
4537
  msgstr "Hongrie"
4538
 
4539
  # Iceland
4540
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4541
  msgid "c-is"
4542
  msgstr "Islande"
4543
 
4544
  # India
4545
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4546
  msgid "c-in"
4547
  msgstr "Inde"
4548
 
4549
  # Indonesia
4550
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4551
  msgid "c-id"
4552
  msgstr "Indonésie"
4553
 
4554
  # Islamic Republic of Iran
4555
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4556
  msgid "c-ir"
4557
  msgstr "République islamique d'Iran"
4558
 
4559
  # Iraq
4560
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4561
  msgid "c-iq"
4562
  msgstr "Irak"
4563
 
4564
  # Ireland
4565
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4566
  msgid "c-ie"
4567
  msgstr "Irlande"
4568
 
4569
  # Israel
4570
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4571
  msgid "c-il"
4572
  msgstr "Israël"
4573
 
4574
  # Italy
4575
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4576
  msgid "c-it"
4577
  msgstr "Italie"
4578
 
4579
  # Jamaica
4580
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4581
  msgid "c-jm"
4582
  msgstr "Jamaïque"
4583
 
4584
  # Japan
4585
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4586
  msgid "c-jp"
4587
  msgstr "Japon"
4588
 
4589
  # Jordan
4590
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4591
  msgid "c-jo"
4592
  msgstr "Jordanie"
4593
 
4594
  # Kazakhstan
4595
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4596
  msgid "c-kz"
4597
  msgstr "Kazakhstan"
4598
 
4599
  # Kenya
4600
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4601
  msgid "c-ke"
4602
  msgstr "Kenya"
4603
 
4604
  # Nauru
4605
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4606
  msgid "c-nr"
4607
  msgstr "Nauru"
4608
 
4609
  # Democratic People's Republic of Korea
4610
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4611
  msgid "c-kp"
4612
  msgstr "République populaire démocratique de Corée"
4613
 
4614
  # Republic of Korea
4615
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4616
  msgid "c-kr"
4617
  msgstr "République de Corée"
4618
 
4619
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4620
  msgid "c-kv"
4621
  msgstr "Kossovo"
4622
 
4623
  # Kuwait
4624
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4625
  msgid "c-kw"
4626
  msgstr "Koweït"
4627
 
4628
  # Kyrgyzstan
4629
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4630
  msgid "c-kg"
4631
  msgstr "Kirghizistan"
4632
 
4633
  # Lao People's Democratic Republic
4634
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4635
  msgid "c-la"
4636
  msgstr "République démocratique populaire lao"
4637
 
4638
  # Latvia
4639
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4640
  msgid "c-lv"
4641
  msgstr "Lettonie"
4642
 
4643
  # Lebanon
4644
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4645
  msgid "c-lb"
4646
  msgstr "Liban"
4647
 
4648
  # Lesotho
4649
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4650
  msgid "c-ls"
4651
  msgstr "Lesotho"
4652
 
4653
  # Liberia
4654
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4655
  msgid "c-lr"
4656
  msgstr "Libéria"
4657
 
4658
  # Libyan Arab Jamahiriya
4659
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4660
  msgid "c-ly"
4661
  msgstr "Jamahiriya arabe libyenne"
4662
 
4663
  # Liechtenstein
4664
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4665
  msgid "c-li"
4666
  msgstr "Liechtenstein"
4667
 
4668
  # Lithuania
4669
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4670
  msgid "c-lt"
4671
  msgstr "Lituanie"
4672
 
4673
  # Luxembourg
4674
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4675
  msgid "c-lu"
4676
  msgstr "Luxembourg"
4677
 
4678
  # The Former Yugoslav Republic of Macedonia
4679
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4680
  msgid "c-mk"
4681
  msgstr "Ex-république yougoslave de Macédoine"
4682
 
4683
  # Madagascar
4684
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4685
  msgid "c-mg"
4686
  msgstr "Madagascar"
4687
 
4688
  # Malawi
4689
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4690
  msgid "c-mw"
4691
  msgstr "Malawi"
4692
 
4693
  # Malaysia
4694
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4695
  msgid "c-my"
4696
  msgstr "Malaisie"
4697
 
4698
  # Mali
4699
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4700
  msgid "c-ml"
4701
  msgstr "Mali"
4702
 
4703
  # Malta
4704
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4705
  msgid "c-mt"
4706
  msgstr "Malte"
4707
 
4708
  # Martinique
4709
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4710
  msgid "c-mq"
4711
  msgstr "Martinique"
4712
 
4713
  # Mauritania
4714
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4715
  msgid "c-mr"
4716
  msgstr "Mauritanie"
4717
 
4718
  # Mauritius
4719
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4720
  msgid "c-mu"
4721
  msgstr "Maurice"
4722
 
4723
  # Mexico
4724
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4725
  msgid "c-mx"
4726
  msgstr "Mexique"
4727
 
4728
  # Moldova
4729
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4730
  msgid "c-md"
4731
  msgstr "République de Moldova"
4732
 
4733
  # Mongolia
4734
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4735
  msgid "c-mn"
4736
  msgstr "Mongolie"
4737
 
4738
  # Montenegro
4739
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4740
  msgid "c-me"
4741
  msgstr "Monténégro"
4742
 
4743
  # Montserrat
4744
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4745
  msgid "c-ms"
4746
  msgstr "Montserrat"
4747
 
4748
  # Morocco
4749
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4750
  msgid "c-ma"
4751
  msgstr "Maroc"
4752
 
4753
  # Mozambique
4754
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4755
  msgid "c-mz"
4756
  msgstr "Mozambique"
4757
 
4758
  # Myanmar
4759
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4760
  msgid "c-mm"
4761
  msgstr "Myanmar"
4762
 
4763
  # Namibia
4764
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4765
  msgid "c-na"
4766
  msgstr "Namibie"
4767
 
4768
  # Nepal
4769
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4770
  msgid "c-np"
4771
  msgstr "Népal"
4772
 
4773
  # Netherlands
4774
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4775
  msgid "c-nl"
4776
  msgstr "Pays-bas"
4777
 
4778
  # New Caledonia
4779
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4780
  msgid "c-nc"
4781
  msgstr "Nouvelle-Calédonie"
4782
 
4783
  # New Zealand
4784
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4785
  msgid "c-nz"
4786
  msgstr "Nouvelle-Zélande"
4787
 
4788
  # Nicaragua
4789
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4790
  msgid "c-ni"
4791
  msgstr "Nicaragua"
4792
 
4793
  # Niger
4794
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4795
  msgid "c-ne"
4796
  msgstr "Niger"
4797
 
4798
  # Nigeria
4799
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4800
  msgid "c-ng"
4801
  msgstr "Nigéria"
4802
 
4803
  # Norway
4804
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4805
  msgid "c-no"
4806
  msgstr "Norvège"
4807
 
4808
  # Oman
4809
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4810
  msgid "c-om"
4811
  msgstr "Oman"
4812
 
4813
  # Pakistan
4814
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4815
  msgid "c-pk"
4816
  msgstr "Pakistan"
4817
 
4818
  # Palau
4819
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4820
  msgid "c-pw"
4821
  msgstr "Palaos"
4822
 
4823
  # Occupied Palestinian Territory
4824
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4825
  msgid "c-ps"
4826
  msgstr "Territoire palestinien occupé"
4827
 
4828
  # Panama
4829
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4830
  msgid "c-pa"
4831
  msgstr "Panama"
4832
 
4833
  # Papua New Guinea
4834
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4835
  msgid "c-pg"
4836
  msgstr "Papouasie-Nouvelle-Guinée"
4837
 
4838
  # Paraguay
4839
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4840
  msgid "c-py"
4841
  msgstr "Paraguay"
4842
 
4843
  # Peru
4844
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4845
  msgid "c-pe"
4846
  msgstr "Pérou"
4847
 
4848
  # Philippines
4849
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4850
  msgid "c-ph"
4851
  msgstr "Philippines"
4852
 
4853
  # Poland
4854
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4855
  msgid "c-pl"
4856
  msgstr "Pologne"
4857
 
4858
  # Portugal
4859
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4860
  msgid "c-pt"
4861
  msgstr "Portugal"
4862
 
4863
  # Puerto Rico
4864
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4865
  msgid "c-pr"
4866
  msgstr "Porto Rico"
4867
 
4868
  # Qatar
4869
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4870
  msgid "c-qa"
4871
  msgstr "Qatar"
4872
 
4873
  # Réunion
4874
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4875
  msgid "c-re"
4876
  msgstr "Réunion"
4877
 
4878
  # Romania
4879
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4880
  msgid "c-ro"
4881
  msgstr "Roumanie"
4882
 
4883
  # Russian Federation
4884
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4885
  msgid "c-ru"
4886
  msgstr "Fédération de Russie"
4887
 
4888
  # Rwanda
4889
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4890
  msgid "c-rw"
4891
  msgstr "Rwanda"
4892
 
4893
  # Saint Kitts and Nevis
4894
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4895
  msgid "c-kn"
4896
  msgstr "Saint-Kitts-et-Nevis"
4897
 
4898
  # Saint Lucia
4899
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4900
  msgid "c-lc"
4901
  msgstr "Sainte-Lucie"
4902
 
4903
  # Saint Martin
4904
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4905
  msgid "c-mf"
4906
  msgstr "Saint-Martin"
4907
 
4908
  # Saint Vincent and the Grenadines
4909
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4910
  msgid "c-vc"
4911
  msgstr "Saint-Vincent-et-les Grenadines"
4912
 
4913
  # Samoa
4914
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4915
  msgid "c-ws"
4916
  msgstr "Samoa"
4917
 
4918
  # Sao Tome and Principe
4919
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4920
  msgid "c-st"
4921
  msgstr "Sao Tomé-et-Principe"
4922
 
4923
  # Saudi Arabia
4924
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4925
  msgid "c-sa"
4926
  msgstr "Arabie saoudite"
4927
 
4928
  # Senegal
4929
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4930
  msgid "c-sn"
4931
  msgstr "Sénégal"
4932
 
4933
  # Serbia
4934
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4935
  msgid "c-rs"
4936
  msgstr "Serbie"
4937
 
4938
  # Sierra Leone
4939
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4940
  msgid "c-sl"
4941
  msgstr "Sierra Leone"
4942
 
4943
  # Singapore
4944
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4945
  msgid "c-sg"
4946
  msgstr "Singapour"
4947
 
4948
  # Slovakia
4949
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4950
  msgid "c-sk"
4951
  msgstr "Slovaquie"
4952
 
4953
  # Slovenia
4954
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4955
  msgid "c-si"
4956
  msgstr "Slovénie"
4957
 
4958
  # Solomon Islands
4959
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4960
  msgid "c-sb"
4961
  msgstr "Îles Salomon"
4962
 
4963
  # Somalia
4964
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4965
  msgid "c-so"
4966
  msgstr "Somalie"
4967
 
4968
  # South Africa
4969
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4970
  msgid "c-za"
4971
  msgstr "Afrique du sud"
4972
 
4973
  # South Georgia and the South Sandwich Islands
4974
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4975
  msgid "c-gs"
4976
  msgstr "Géorgie du sud et les Îles Sandwich du sud"
4977
 
4978
  # Spain
4979
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4980
  msgid "c-es"
4981
  msgstr "Espagne"
4982
 
4983
  # Sri Lanka
4984
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4985
  msgid "c-lk"
4986
  msgstr "Sri Lanka"
4987
 
4988
+ # Seychelles
4989
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4990
+ msgid "c-sc"
4991
+ msgstr "Seychelles"
4992
+
4993
  # Sudan
4994
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4995
  msgid "c-sd"
4996
  msgstr "Soudan"
4997
 
4998
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4999
  msgid "c-ss"
5000
  msgstr "Soudan du Sud"
5001
 
5002
  # Suriname
5003
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5004
  msgid "c-sr"
5005
  msgstr "Suriname"
5006
 
5007
  # Svalbard and Jan Mayen
5008
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5009
  msgid "c-sj"
5010
  msgstr "Svalbard et île Jan Mayen"
5011
 
5012
  # Swaziland
5013
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5014
  msgid "c-sz"
5015
  msgstr "Swaziland"
5016
 
5017
  # Sweden
5018
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5019
  msgid "c-se"
5020
  msgstr "Suède"
5021
 
5022
  # Switzerland
5023
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5024
  msgid "c-ch"
5025
  msgstr "Suisse"
5026
 
5027
  # Syrian Arab Republic
5028
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5029
  msgid "c-sy"
5030
  msgstr "République arabe syrienne"
5031
 
5032
  # Taiwan, Province of China
5033
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5034
  msgid "c-tw"
5035
  msgstr "Taïwan, province de Chine"
5036
 
5037
  # Tajikistan
5038
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5039
  msgid "c-tj"
5040
  msgstr "Tadjikistan"
5041
 
5042
  # United Republic of Tanzania
5043
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5044
  msgid "c-tz"
5045
  msgstr "République-unie de Tanzanie"
5046
 
5047
  # Thailand
5048
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5049
  msgid "c-th"
5050
  msgstr "Thaïlande"
5051
 
5052
  # Timor-Leste
5053
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5054
  msgid "c-tl"
5055
  msgstr "Timor-Leste"
5056
 
5057
  # Togo
5058
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5059
  msgid "c-tg"
5060
  msgstr "Togo"
5061
 
5062
  # Tonga
5063
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5064
  msgid "c-to"
5065
  msgstr "Tonga"
5066
 
5067
  # Trinidad and Tobago
5068
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5069
  msgid "c-tt"
5070
  msgstr "Trinité-et-Tobago "
5071
 
5072
  # Tunisia
5073
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5074
  msgid "c-tn"
5075
  msgstr "Tunisie"
5076
 
5077
  # Turkey
5078
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5079
  msgid "c-tr"
5080
  msgstr "Turquie "
5081
 
5082
  # Turkmenistan
5083
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5084
  msgid "c-tm"
5085
  msgstr "Turkménistan"
5086
 
5087
  # Turks and Caicos Islands
5088
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5089
  msgid "c-tc"
5090
  msgstr "Îles Turks et Caïques"
5091
 
5092
  # Uganda
5093
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5094
  msgid "c-ug"
5095
  msgstr "Ouganda"
5096
 
5097
  # Ukraine
5098
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5099
  msgid "c-ua"
5100
  msgstr "Ukraine"
5101
 
5102
  # United Arab Emirates
5103
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5104
  msgid "c-ae"
5105
  msgstr "Émirats arabes unis"
5106
 
5107
  # United Kingdom
5108
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5109
  msgid "c-gb"
5110
  msgstr "Royaume-Uni"
5111
 
5112
  # United States
5113
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5114
  msgid "c-us"
5115
  msgstr "États-Unis"
5116
 
5117
  # Uruguay
5118
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5119
  msgid "c-uy"
5120
  msgstr "Uruguay"
5121
 
5122
  # Uzbekistan
5123
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5124
  msgid "c-uz"
5125
  msgstr "Ouzbékistan "
5126
 
5127
  # Vanuatu
5128
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5129
  msgid "c-vu"
5130
  msgstr "Vanuatu"
5131
 
5132
  # Venezuela
5133
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5134
  msgid "c-ve"
5135
  msgstr "République bolivarienne du Venezuela"
5136
 
5137
  # Viet Nam
5138
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5139
  msgid "c-vn"
5140
  msgstr "Viet Nam"
5141
 
5142
  # British Virgin Islands
5143
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5144
  msgid "c-vg"
5145
  msgstr "Îles vierges britanniques"
5146
 
5147
  # U.S. Virgin Islands
5148
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5149
  msgid "c-vi"
5150
  msgstr "Îles vierges des États-Unis"
5151
 
5152
  # Western Sahara
5153
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5154
  msgid "c-eh"
5155
  msgstr "Sahara occidental"
5156
 
5157
  # Yemen
5158
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5159
  msgid "c-ye"
5160
  msgstr "Yémen"
5161
 
5162
  # Zambia
5163
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5164
  msgid "c-zm"
5165
  msgstr "Zambie"
5166
 
5167
  # Zimbabwe
5168
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5169
  msgid "c-zw"
5170
  msgstr "Zimbabwe"
5171
 
5172
  # Guernsey
5173
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5174
  msgid "c-gg"
5175
  msgstr "Guernesey"
5176
 
5177
  # Jersey
5178
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5179
  msgid "c-je"
5180
  msgstr "Jersey"
5181
 
5182
  # Isle of Man
5183
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5184
  msgid "c-im"
5185
  msgstr "Île de Man"
5186
 
5187
  # Maldives
5188
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5189
  msgid "c-mv"
5190
  msgstr "Maldives"
5191
 
5192
  # European Union
5193
+ #: ../../admin/view/wp-slimstat-reports.php:1024
5194
  msgid "c-eu"
5195
  msgstr "Union européenne"
5196
 
5197
+ #: ../../admin/view/wp-slimstat-reports.php:1113
5198
  msgid ""
5199
  "This value includes not only posts, but also custom post types, regardless "
5200
  "of their status"
5201
  msgstr ""
5202
 
5203
+ #: ../../admin/view/wp-slimstat-reports.php:1114
5204
  msgid "Content Items"
5205
  msgstr "Contenus"
5206
 
5207
+ #: ../../admin/view/wp-slimstat-reports.php:1115
5208
  msgid "Total Comments"
5209
  msgstr "Nombre de commentaires"
5210
 
5211
+ #: ../../admin/view/wp-slimstat-reports.php:1116
5212
  msgid "Pingbacks"
5213
  msgstr "Pingbacks"
5214
 
5215
+ #: ../../admin/view/wp-slimstat-reports.php:1117
5216
  msgid "Trackbacks"
5217
  msgstr "Trackbacks"
5218
 
5219
+ #: ../../admin/view/wp-slimstat-reports.php:1118
5220
  msgid "Longest Post (ID)"
5221
  msgstr "ID du post leplus long"
5222
 
5223
+ #: ../../admin/view/wp-slimstat-reports.php:1119
5224
  msgid "Longest Comment (ID)"
5225
  msgstr "Commentaire le plus long (ID)"
5226
 
5227
+ #: ../../admin/view/wp-slimstat-reports.php:1120
5228
  msgid "Avg Comments Per Post"
5229
  msgstr "Moyenne de commentaires par Post"
5230
 
5231
+ #: ../../admin/view/wp-slimstat-reports.php:1121
5232
  msgid "Avg Posts Per Day"
5233
  msgstr "Nombre moyen de posts par jour"
5234
 
5235
+ #: ../../admin/view/wp-slimstat-reports.php:1149
5236
  msgid "Visits"
5237
  msgstr "Visites"
5238
 
5239
+ #: ../../admin/view/wp-slimstat-reports.php:1153
5240
  msgid "Domains"
5241
  msgstr "Domaines"
5242
 
5243
+ #: ../../admin/view/wp-slimstat-reports.php:1158
5244
  msgid "Avg Pageviews"
5245
  msgstr "Moyenne des pages vues"
5246
 
7370
  #~ msgid "c-pn"
7371
  #~ msgstr "Pitcairn"
7372
 
 
 
 
 
7373
  # Saint Helena, Ascension and Tristan da Cunha
7374
  #~ msgid "c-sh"
7375
  #~ msgstr "Sainte-Hélène, Ascension et Tristan da Cunha"
admin/lang/wp-slimstat-it_IT.mo CHANGED
Binary file
admin/lang/wp-slimstat-it_IT.po CHANGED
@@ -1,110 +1,114 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
- "POT-Creation-Date: 2013-12-30 22:37-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"
8
  "Language: it\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.5.5\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: ../..\n"
16
 
17
- #: ../../wp-slimstat.php:1175 ../../admin/wp-slimstat-admin.php:396
18
- #: ../../admin/view/wp-slimstat-reports.php:32
19
  msgid "Right Now"
20
  msgstr "In questo momento"
21
 
22
- #: ../../wp-slimstat.php:1176 ../../admin/wp-slimstat-admin.php:397
23
- #: ../../admin/wp-slimstat-admin.php:414
24
- #: ../../admin/view/wp-slimstat-reports.php:33
25
  msgid "Overview"
26
  msgstr "Panoramica"
27
 
28
- #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:398
29
- #: ../../admin/wp-slimstat-admin.php:415
30
- #: ../../admin/view/wp-slimstat-reports.php:34
31
  msgid "Visitors"
32
  msgstr "Visitatori"
33
 
34
- #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:399
35
- #: ../../admin/wp-slimstat-admin.php:416
36
- #: ../../admin/view/wp-slimstat-reports.php:35
37
  msgid "Content"
38
  msgstr "Contenuto"
39
 
40
- #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:400
41
- #: ../../admin/wp-slimstat-admin.php:417 ../../admin/view/index.php:160
42
- #: ../../admin/view/wp-slimstat-reports.php:36
43
  msgid "Traffic Sources"
44
  msgstr "Sorgenti di traffico"
45
 
46
- #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:401
47
- #: ../../admin/wp-slimstat-admin.php:418
48
- #: ../../admin/view/wp-slimstat-reports.php:37
49
- #: ../../admin/view/wp-slimstat-reports.php:142
50
  msgid "World Map"
51
  msgstr "Mappa"
52
 
53
- #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:402
54
- #: ../../admin/wp-slimstat-admin.php:419
55
- #: ../../admin/view/wp-slimstat-reports.php:38
56
  msgid "Custom Reports"
57
  msgstr "Rapporti personali"
58
 
59
- #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:403
60
- #: ../../admin/wp-slimstat-admin.php:420 ../../admin/config/addons.php:29
61
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:228
62
  msgid "Add-ons"
63
  msgstr "Add-ons"
64
 
65
- #: ../../wp-slimstat.php:1185 ../../admin/wp-slimstat-admin.php:449
66
- #: ../../admin/wp-slimstat-admin.php:452 ../../admin/wp-slimstat-admin.php:496
67
- #: ../../admin/wp-slimstat-admin.php:499 ../../admin/config/index.php:14
68
- #: ../../admin/config/index.php:134
69
  msgid "Settings"
70
  msgstr "Impostazioni"
71
 
72
- #: ../../admin/wp-slimstat-admin.php:395 ../../admin/wp-slimstat-admin.php:407
73
- #: ../../admin/wp-slimstat-admin.php:410
74
  msgid "SlimStat"
75
  msgstr "SlimStat"
76
 
77
- #: ../../admin/wp-slimstat-admin.php:513
78
  msgid "Pageviews in the last 365 days"
79
- msgstr ""
80
 
81
- #: ../../admin/wp-slimstat-admin.php:537
82
  msgid "Show on screen"
83
  msgstr "Scegli cosa visualizzare"
84
 
85
- #: ../../admin/wp-slimstat-admin.php:584
 
 
 
 
86
  msgid "There was an error updating the following options:"
87
  msgstr ""
88
  "Si è verificato un errore nell'aggiornamento delle seguente impostazioni:"
89
 
90
- #: ../../admin/wp-slimstat-admin.php:587
91
  msgid "Your settings have been successfully updated."
92
  msgstr "Le impostazioni sono state salvate con successo."
93
 
94
- #: ../../admin/wp-slimstat-admin.php:610
95
  msgid "Save Changes"
96
  msgstr "Salva"
97
 
98
- #: ../../admin/wp-slimstat-admin.php:629
99
  msgid "Yes"
100
  msgstr "Si"
101
 
102
- #: ../../admin/wp-slimstat-admin.php:630
103
- #: ../../admin/view/wp-slimstat-reports.php:656
104
  msgid "No"
105
  msgstr "No"
106
 
107
- #: ../../admin/wp-slimstat-admin.php:670
108
  msgid ""
109
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
110
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
@@ -116,48 +120,48 @@ msgstr ""
116
  "favore, <a target=\"_blank\" href=\"http://wordpress.org/extend/plugins/wp-"
117
  "slimstat/faq/\">leggi le FAQ</a> per ulteriori informazioni."
118
 
119
- #: ../../admin/wp-slimstat-admin.php:690
120
  msgid "Definitions"
121
  msgstr "Definizioni"
122
 
123
- #: ../../admin/wp-slimstat-admin.php:693
124
  msgid "Pageview"
125
  msgstr "Accesso"
126
 
127
- #: ../../admin/wp-slimstat-admin.php:693
128
  msgid ""
129
  "A request to load a single HTML file (\"page\"). This should be contrasted "
130
  "with a \"hit\", which refers to a request for any file from a web server. WP "
131
  "SlimStat logs a pageview each time the tracking code is executed"
132
  msgstr ""
133
 
134
- #: ../../admin/wp-slimstat-admin.php:694
135
  msgid "(Human) Visit"
136
  msgstr "Visita umana"
137
 
138
- #: ../../admin/wp-slimstat-admin.php:694
139
  msgid ""
140
  "A period of interaction between a visitor's browser and your website, ending "
141
  "when the browser is closed or when the user has been inactive on that site "
142
  "for 30 minutes"
143
  msgstr ""
144
 
145
- #: ../../admin/wp-slimstat-admin.php:695 ../../admin/view/index.php:132
146
- #: ../../admin/view/right-now.php:148
147
  msgid "Known Visitor"
148
  msgstr "Visitatore noto"
149
 
150
- #: ../../admin/wp-slimstat-admin.php:695
151
  msgid ""
152
  "Any user who has left a comment on your blog, and is thus identified by "
153
  "Wordpress as a returning visitor"
154
  msgstr ""
155
 
156
- #: ../../admin/wp-slimstat-admin.php:696
157
  msgid "Unique IP"
158
  msgstr "IP unico"
159
 
160
- #: ../../admin/wp-slimstat-admin.php:696
161
  msgid ""
162
  "Used to differentiate between multiple requests to download a file from one "
163
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -165,122 +169,120 @@ msgid ""
165
  "from, it is useful, but not perfect"
166
  msgstr ""
167
 
168
- #: ../../admin/wp-slimstat-admin.php:697 ../../admin/wp-slimstat-admin.php:739
169
- #: ../../admin/view/right-now.php:98
170
- #: ../../admin/view/wp-slimstat-reports.php:64
171
  msgid "Originating IP"
172
  msgstr "IP originante"
173
 
174
- #: ../../admin/wp-slimstat-admin.php:697
175
  msgid ""
176
  "the originating IP address of a client connecting to a web server through an "
177
  "HTTP proxy or load balancer"
178
  msgstr ""
179
 
180
- #: ../../admin/wp-slimstat-admin.php:698
181
  msgid "Direct Traffic"
182
  msgstr "Visita diretta"
183
 
184
- #: ../../admin/wp-slimstat-admin.php:698
185
  msgid ""
186
  "All those people showing up to your Web site by typing in the URL of your "
187
  "Web site coming or from a bookmark; some people also call this \"default "
188
  "traffic\" or \"ambient traffic\""
189
  msgstr ""
190
 
191
- #: ../../admin/wp-slimstat-admin.php:699
192
  msgid "Search Engine"
193
  msgstr "Motore di ricerca"
194
 
195
- #: ../../admin/wp-slimstat-admin.php:699
196
  msgid ""
197
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
198
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
199
  msgstr ""
200
 
201
- #: ../../admin/wp-slimstat-admin.php:700 ../../admin/wp-slimstat-admin.php:716
202
- #: ../../admin/view/right-now.php:127
203
- #: ../../admin/view/wp-slimstat-reports.php:45
204
  msgid "Search Terms"
205
  msgstr "Parole chiave"
206
 
207
- #: ../../admin/wp-slimstat-admin.php:700 ../../admin/wp-slimstat-admin.php:716
208
  msgid "Keywords used by your visitors to find your website on a search engine"
209
  msgstr "Parole chiave che i visitatori hanno inserito nel motore di ricerca"
210
 
211
- #: ../../admin/wp-slimstat-admin.php:701
212
  msgid "SERP"
213
  msgstr "SERP"
214
 
215
- #: ../../admin/wp-slimstat-admin.php:701
216
  msgid ""
217
  "Short for search engine results page, the Web page that a search engine "
218
  "returns with the results of its search. The value shown represents your rank "
219
  "(or position) within that list of results"
220
  msgstr ""
221
 
222
- #: ../../admin/wp-slimstat-admin.php:702
223
- #: ../../admin/view/wp-slimstat-reports.php:57
224
  msgid "User Agent"
225
  msgstr "Browser"
226
 
227
- #: ../../admin/wp-slimstat-admin.php:702
228
  msgid ""
229
  "Any program used for accessing a website; this includes browsers, robots, "
230
  "spiders and any other program that was used to retrieve information from the "
231
  "site"
232
  msgstr ""
233
 
234
- #: ../../admin/wp-slimstat-admin.php:703
235
- #: ../../admin/view/wp-slimstat-reports.php:61
236
  msgid "Outbound Link"
237
  msgstr "Link in uscita"
238
 
239
- #: ../../admin/wp-slimstat-admin.php:703
240
  msgid ""
241
  "A link from one domain to another is said to be outbound from its source "
242
  "anchor and inbound to its target. This report lists all the links to other "
243
  "websites followed by your visitors."
244
  msgstr ""
245
 
246
- #: ../../admin/wp-slimstat-admin.php:710
247
  msgid "Basic Filters"
248
  msgstr "Filtri di base"
249
 
250
- #: ../../admin/wp-slimstat-admin.php:713
251
- #: ../../admin/view/wp-slimstat-reports.php:42
252
  msgid "Browser"
253
  msgstr "Browser"
254
 
255
- #: ../../admin/wp-slimstat-admin.php:713
256
  msgid "User agent (Firefox, Chrome, ...)"
257
  msgstr "programma usato per visualizzare il sito (Firefox, Chrome, ...)"
258
 
259
- #: ../../admin/wp-slimstat-admin.php:714
260
- #: ../../admin/view/wp-slimstat-reports.php:43
261
- #: ../../admin/view/wp-slimstat-reports.php:482
262
  msgid "Country Code"
263
  msgstr "Codice Paese"
264
 
265
- #: ../../admin/wp-slimstat-admin.php:714
266
  msgid "2-letter code (us, ru, de, it, ...)"
267
  msgstr "codice di 2 lettere (us, ru, it, de, ...)"
268
 
269
- #: ../../admin/wp-slimstat-admin.php:715
270
  msgid "IP"
271
  msgstr "IP"
272
 
273
- #: ../../admin/wp-slimstat-admin.php:715
274
  msgid "Visitor's public IP address"
275
  msgstr "indirizzo pubblico del visitatore"
276
 
277
- #: ../../admin/wp-slimstat-admin.php:717
278
- #: ../../admin/view/wp-slimstat-reports.php:46
279
- #: ../../admin/view/wp-slimstat-reports.php:494
280
  msgid "Language Code"
281
  msgstr "Codice Lingua"
282
 
283
- #: ../../admin/wp-slimstat-admin.php:717
284
  msgid ""
285
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
286
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -290,12 +292,12 @@ msgstr ""
290
  "href=\"http://msdn.microsoft.com/en-us/library/ee825488(v=cs.20).aspx"
291
  "\">pagina su linguaggi e culture</a> (prima colonna)"
292
 
293
- #: ../../admin/wp-slimstat-admin.php:718
294
- #: ../../admin/view/wp-slimstat-reports.php:47
295
  msgid "Operating System"
296
  msgstr "Sistema operativo"
297
 
298
- #: ../../admin/wp-slimstat-admin.php:718
299
  msgid ""
300
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
301
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -305,30 +307,30 @@ msgstr ""
305
  "visita <a target=\"_blank\" href=\"http://php.net/manual/en/function.get-"
306
  "browser.php\">questa pagina</a>"
307
 
308
- #: ../../admin/wp-slimstat-admin.php:719
309
- #: ../../admin/view/wp-slimstat-reports.php:48
310
  msgid "Permalink"
311
  msgstr "Permalink"
312
 
313
- #: ../../admin/wp-slimstat-admin.php:719
314
  msgid "URL accessed on your site"
315
  msgstr "URL acceduta sul sito"
316
 
317
- #: ../../admin/wp-slimstat-admin.php:720
318
- #: ../../admin/view/wp-slimstat-reports.php:50
319
  msgid "Referer"
320
  msgstr "Riferimento"
321
 
322
- #: ../../admin/wp-slimstat-admin.php:720
323
  msgid "Complete address of the referrer page"
324
  msgstr "Indirizzo completo della pagina di riferimento"
325
 
326
- #: ../../admin/wp-slimstat-admin.php:721
327
- #: ../../admin/view/wp-slimstat-reports.php:51
328
  msgid "Visitor's Name"
329
  msgstr "Nome del visitatore"
330
 
331
- #: ../../admin/wp-slimstat-admin.php:721
332
  msgid ""
333
  "Visitors' names according to the cookie set by Wordpress after they leave a "
334
  "comment"
@@ -336,25 +338,25 @@ msgstr ""
336
  "Nome del visitatore come impostato da Wordpress durante l'inserimento di un "
337
  "commento"
338
 
339
- #: ../../admin/wp-slimstat-admin.php:729
340
  msgid "Advanced Filters"
341
  msgstr "Filtri avanzati"
342
 
343
- #: ../../admin/wp-slimstat-admin.php:732
344
- #: ../../admin/view/wp-slimstat-reports.php:55
345
  msgid "Browser Version"
346
  msgstr "Versione Browser"
347
 
348
- #: ../../admin/wp-slimstat-admin.php:732
349
  msgid "user agent version (9.0, 11, ...)"
350
  msgstr "versione del browser (9.0, 11, ...)"
351
 
352
- #: ../../admin/wp-slimstat-admin.php:733
353
- #: ../../admin/view/wp-slimstat-reports.php:56
354
  msgid "Browser Type"
355
  msgstr "Tipo di browser"
356
 
357
- #: ../../admin/wp-slimstat-admin.php:733
358
  msgid ""
359
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
360
  "all others"
@@ -362,21 +364,21 @@ msgstr ""
362
  "1 = motore di ricerca, 2 = dispositivo mobile, 3 = lettore RSS, 0 = tutti "
363
  "gli altri"
364
 
365
- #: ../../admin/wp-slimstat-admin.php:734
366
- #: ../../admin/view/wp-slimstat-reports.php:58
367
  msgid "Color Depth"
368
  msgstr "Profondità dei colori"
369
 
370
- #: ../../admin/wp-slimstat-admin.php:734
371
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
372
  msgstr "profondit&agrave; di colore dello schermo (8, 16, 24, ...)"
373
 
374
- #: ../../admin/wp-slimstat-admin.php:735
375
- #: ../../admin/view/wp-slimstat-reports.php:59
376
  msgid "CSS Version"
377
  msgstr "Versione CSS"
378
 
379
- #: ../../admin/wp-slimstat-admin.php:735
380
  msgid ""
381
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
382
  "values)"
@@ -384,46 +386,46 @@ msgstr ""
384
  "standard CSS supportato dal browser di quell'utente (1, 2, 3 ed altri valori "
385
  "interi)"
386
 
387
- #: ../../admin/wp-slimstat-admin.php:736
388
- #: ../../admin/view/wp-slimstat-reports.php:60
389
  msgid "Pageview Attributes"
390
  msgstr "Attributi visita"
391
 
392
- #: ../../admin/wp-slimstat-admin.php:736
393
  msgid ""
394
  "this field is set to <em>[pre]</em> if the resource has been accessed "
395
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
396
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
397
  msgstr ""
398
 
399
- #: ../../admin/wp-slimstat-admin.php:737
400
- #: ../../admin/view/wp-slimstat-reports.php:62
401
  msgid "Post Author"
402
  msgstr "Autore articolo"
403
 
404
- #: ../../admin/wp-slimstat-admin.php:737
405
  msgid "author associated to that post/page when the resource was accessed"
406
  msgstr "autore associato al post quando la risorsa &egrave; stata acceduta"
407
 
408
- #: ../../admin/wp-slimstat-admin.php:738
409
- #: ../../admin/view/wp-slimstat-reports.php:63
410
  msgid "Post Category ID"
411
  msgstr "ID Categoria"
412
 
413
- #: ../../admin/wp-slimstat-admin.php:738
414
  msgid "ID of the category/term associated to the resource, when available"
415
  msgstr "ID della categoria associata alla risorsa, se disponibile"
416
 
417
- #: ../../admin/wp-slimstat-admin.php:739
418
  msgid "visitor's originating IP address, if available"
419
  msgstr "indirizzo IP privato del visitatore, se disponibile"
420
 
421
- #: ../../admin/wp-slimstat-admin.php:740
422
- #: ../../admin/view/wp-slimstat-reports.php:65
423
  msgid "Resource Content Type"
424
  msgstr "Tipo di contenuto"
425
 
426
- #: ../../admin/wp-slimstat-admin.php:740
427
  msgid ""
428
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
429
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -437,21 +439,21 @@ msgstr ""
437
  "\"_blank\" href=\"http://codex.wordpress.org/Conditional_Tags\">Conditional "
438
  "Tag</a> del Codex"
439
 
440
- #: ../../admin/wp-slimstat-admin.php:741
441
- #: ../../admin/view/wp-slimstat-reports.php:67
442
  msgid "Screen Resolution"
443
  msgstr "Risoluzione schermo"
444
 
445
- #: ../../admin/wp-slimstat-admin.php:741
446
  msgid "viewport width and height (1024x768, 800x600, ...)"
447
  msgstr "dimensioni della finestra del browser (1024x768, 800x600, ...)"
448
 
449
- #: ../../admin/wp-slimstat-admin.php:742
450
- #: ../../admin/view/wp-slimstat-reports.php:68
451
  msgid "Visit ID"
452
  msgstr "ID Visita"
453
 
454
- #: ../../admin/wp-slimstat-admin.php:742
455
  msgid ""
456
  "generally used in conjunction with <em>is not empty</em>, identifies human "
457
  "visitors"
@@ -459,28 +461,28 @@ msgstr ""
459
  "generalmente usato con l'operatore <em>non &egrave; vuoto</em>, identifica i "
460
  "visitatori umani"
461
 
462
- #: ../../admin/wp-slimstat-admin.php:743
463
  msgid "Date Filters"
464
  msgstr "Filtri sulla data"
465
 
466
- #: ../../admin/wp-slimstat-admin.php:743
467
  msgid ""
468
  "you can specify the timeframe by entering a number in the <em>interval</em> "
469
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
470
  "year=blank, interval=-1 will set a year-to-date filter)"
471
  msgstr ""
472
 
473
- #: ../../admin/wp-slimstat-admin.php:744
474
  msgid "SERP Position"
475
  msgstr "SERP"
476
 
477
- #: ../../admin/wp-slimstat-admin.php:744
478
  msgid ""
479
  "set the filter to Referer contains cd=N&, where N is the position you are "
480
  "looking for"
481
  msgstr ""
482
 
483
- #: ../../admin/wp-slimstat-admin.php:753
484
  msgid ""
485
  " And for keeping an eye on your visitors with <a href=\"http://slimstat."
486
  "getused.to.it/\">WP SlimStat</a>."
@@ -516,23 +518,23 @@ msgstr "Add-on"
516
  msgid "Description"
517
  msgstr "Definizione"
518
 
519
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:17
520
  msgid "General"
521
  msgstr "Generale"
522
 
523
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:43
524
  msgid "Views"
525
  msgstr "Viste"
526
 
527
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:63
528
  msgid "Filters"
529
  msgstr "Filtri"
530
 
531
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:127
532
  msgid "Permissions"
533
  msgstr "Permessi"
534
 
535
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:204
536
  msgid "Advanced"
537
  msgstr "Filtri avanzati"
538
 
@@ -540,44 +542,44 @@ msgstr "Filtri avanzati"
540
  msgid "Maintenance"
541
  msgstr "Manutenzione"
542
 
543
- #: ../../admin/config/index.php:19 ../../admin/config/index.php:206
544
  msgid "Tracker"
545
  msgstr "Sistema di tracciamento"
546
 
547
- #: ../../admin/config/index.php:20
548
  msgid "Enable Tracking"
549
  msgstr "Attiva tracciamento"
550
 
551
- #: ../../admin/config/index.php:20
552
  msgid ""
553
  "Turn the tracker on or off, but keep the reports accessible (which you would "
554
  "not have, if you just disabled the plugin)."
555
  msgstr ""
556
 
557
- #: ../../admin/config/index.php:21
558
  msgid "Monitor Admin Pages"
559
  msgstr "Traccia pagine admin"
560
 
561
- #: ../../admin/config/index.php:21
562
  msgid "Enable this option to track your users' activity within the admin."
563
  msgstr ""
564
 
565
- #: ../../admin/config/index.php:22
566
  msgid "Enable Spy Mode"
567
  msgstr "Attiva Modo Spia"
568
 
569
- #: ../../admin/config/index.php:22
570
  msgid ""
571
  "Collect information about screen resolutions, outbound links, downloads, "
572
  "etc. If Tracking Mode is set to Javascript, this data will be tracked "
573
  "regardless of which value you set for this option."
574
  msgstr ""
575
 
576
- #: ../../admin/config/index.php:23
577
  msgid "Tracking Mode"
578
  msgstr "Tipo Tracciamento"
579
 
580
- #: ../../admin/config/index.php:23
581
  msgid ""
582
  "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
583
  "Total Cache, WP SuperCache, HyperCache, etc). WP SlimStat will behave pretty "
@@ -586,23 +588,23 @@ msgid ""
586
  "spammers, search engines and other crawlers</strong> will not be tracked."
587
  msgstr ""
588
 
589
- #: ../../admin/config/index.php:23
590
  msgid "Javascript"
591
  msgstr "Javascript"
592
 
593
- #: ../../admin/config/index.php:23
594
  msgid "Server-side"
595
  msgstr "Lato server"
596
 
597
- #: ../../admin/config/index.php:25
598
  msgid "WordPress Integration"
599
  msgstr "Integrazione con WordPress"
600
 
601
- #: ../../admin/config/index.php:26
602
  msgid "Menu Position"
603
  msgstr "Posizione Menu"
604
 
605
- #: ../../admin/config/index.php:26
606
  #, fuzzy
607
  msgid ""
608
  "Choose between a standalone admin menu for WP SlimStat or a drop down in the "
@@ -611,195 +613,195 @@ msgstr ""
611
  "Ti consente di decidere se vuoi avere il menu di WP SlimStat nella "
612
  "navigazione qui a fianco o nella barra di amministrazione."
613
 
614
- #: ../../admin/config/index.php:26
615
  msgid "Side Menu"
616
  msgstr "Navigazione laterale"
617
 
618
- #: ../../admin/config/index.php:26
619
  msgid "Admin Bar"
620
  msgstr "Barra di amministrazione"
621
 
622
- #: ../../admin/config/index.php:27
623
  msgid "Add Stats to Posts"
624
  msgstr "Mostra contatore in Articoli"
625
 
626
- #: ../../admin/config/index.php:27
627
  msgid ""
628
  "Add a new column to the Edit Posts screen, with the number of hits per post."
629
  msgstr ""
630
 
631
- #: ../../admin/config/index.php:29
632
  msgid "Database"
633
  msgstr "Database"
634
 
635
- #: ../../admin/config/index.php:30
636
  msgid "Retain data for"
637
  msgstr "Preserva log per"
638
 
639
- #: ../../admin/config/index.php:30
640
  msgid ""
641
  "Delete log entries older than the number of days specified here above. Enter "
642
  "<strong>0</strong> (number zero) if you want to preserve your data "
643
  "regardless of its age."
644
  msgstr ""
645
 
646
- #: ../../admin/config/index.php:30
647
  msgid "Next clean-up on"
648
  msgstr "Prossima pulizia il"
649
 
650
- #: ../../admin/config/index.php:30
651
  #, php-format
652
  msgid "Entries logged on or before %s will be permanently deleted."
653
  msgstr ""
654
 
655
- #: ../../admin/config/index.php:30 ../../admin/view/index.php:76
656
- #: ../../admin/view/wp-slimstat-reports.php:75
657
- #: ../../admin/view/wp-slimstat-reports.php:656
658
  msgid "days"
659
  msgstr "giorni"
660
 
661
- #: ../../admin/config/index.php:45
662
  msgid "Data and Formats"
663
  msgstr "Dati e formati"
664
 
665
- #: ../../admin/config/index.php:46
666
  msgid "Convert IP Addresses"
667
  msgstr "Converti indirizzi IP"
668
 
669
- #: ../../admin/config/index.php:46
670
  msgid "Display provider names instead of IP addresses."
671
  msgstr ""
672
 
673
- #: ../../admin/config/index.php:47
674
  msgid "Number Format"
675
  msgstr "Formato dei numeri"
676
 
677
- #: ../../admin/config/index.php:47
678
  msgid ""
679
  "Choose the number format you want to use for your reports, European or "
680
  "American."
681
  msgstr ""
682
 
683
- #: ../../admin/config/index.php:48
684
  msgid "Show Display Name"
685
  msgstr "Mostra nome completo"
686
 
687
- #: ../../admin/config/index.php:48
688
  msgid ""
689
  "By default, users are listed by their usernames. Use this option to "
690
  "visualize their display names instead."
691
  msgstr ""
692
 
693
- #: ../../admin/config/index.php:49
694
  msgid "Show User Agent"
695
  msgstr "Mostra user agent"
696
 
697
- #: ../../admin/config/index.php:49
698
  msgid ""
699
  "Choose if you want to see the browser name or a complete user agent string "
700
  "when hovering on browser icons."
701
  msgstr ""
702
 
703
- #: ../../admin/config/index.php:50
704
  msgid "Show Titles"
705
  msgstr "Mostra titoli"
706
 
707
- #: ../../admin/config/index.php:50
708
  msgid ""
709
  "WP SlimStat converts your permalinks into post and page titles. Disable this "
710
  "feature if you need to see the URL in your reports."
711
  msgstr ""
712
 
713
- #: ../../admin/config/index.php:52
714
  msgid "Functionality"
715
  msgstr "Funzionalit&agrave;"
716
 
717
- #: ../../admin/config/index.php:53
718
  msgid "Asynchronous Views"
719
  msgstr "Viste asincrone"
720
 
721
- #: ../../admin/config/index.php:53
722
  msgid ""
723
  "Load all the reports dynamically. It makes the reports render faster, but it "
724
  "increases the load on your server."
725
  msgstr ""
726
 
727
- #: ../../admin/config/index.php:54
728
  msgid "Expand Details"
729
  msgstr "Espandi dettagli"
730
 
731
- #: ../../admin/config/index.php:54
732
  msgid "Expand each row's details by default, insted of on mousehover."
733
  msgstr ""
734
 
735
- #: ../../admin/config/index.php:55 ../../admin/config/index.php:59
736
  msgid "Rows to Display"
737
  msgstr "Righe da visualizzare"
738
 
739
- #: ../../admin/config/index.php:55
740
  msgid "Specify the number of items in each report."
741
  msgstr ""
742
 
743
- #: ../../admin/config/index.php:57
744
  msgid "Right Now Screen"
745
  msgstr "In questo momento"
746
 
747
- #: ../../admin/config/index.php:58
748
  msgid "Live Stream"
749
  msgstr "Aggiornamento in diretta"
750
 
751
- #: ../../admin/config/index.php:58
752
  msgid ""
753
  "Enable the Live view, which refreshes the Right Now screen every X seconds. "
754
  "Enter <strong>0</strong> (number zero) to disable this functionality."
755
  msgstr ""
756
 
757
- #: ../../admin/config/index.php:58 ../../admin/config/index.php:209
758
  msgid "seconds"
759
  msgstr "secondi"
760
 
761
- #: ../../admin/config/index.php:59
762
  msgid "Specify the number of items in Right Now."
763
  msgstr ""
764
 
765
- #: ../../admin/config/index.php:60
766
  msgid "Right Now Extended"
767
  msgstr "Dettaglio informazioni"
768
 
769
- #: ../../admin/config/index.php:60
770
  msgid ""
771
  "Choose if you want to see outbound links listed under Right Now. It might "
772
  "slow down the rendering of this report."
773
  msgstr ""
774
 
775
- #: ../../admin/config/index.php:65
776
  msgid "Visitors and Known Users"
777
  msgstr "Visitatori ed utenti noti"
778
 
779
- #: ../../admin/config/index.php:66
780
  msgid "Track Registered Users"
781
  msgstr "Traccia utenti"
782
 
783
- #: ../../admin/config/index.php:66
784
  msgid "Enable this option to track logged in users."
785
  msgstr "Attiva questa opzione se vuoi tracciare gli utenti autenticati."
786
 
787
- #: ../../admin/config/index.php:67
788
  msgid "Blacklist by Username"
789
  msgstr "Lista nera degli username"
790
 
791
- #: ../../admin/config/index.php:67
792
  msgid ""
793
  "List all the usernames you don't want to track, separated by commas. Please "
794
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
795
  "sensitive."
796
  msgstr ""
797
 
798
- #: ../../admin/config/index.php:68
799
  msgid "Blacklist by IP Address"
800
  msgstr "Lista nera degli indirizzi IP"
801
 
802
- #: ../../admin/config/index.php:68
803
  msgid ""
804
  "List all the IP addresses you don't want to track, separated by commas. Each "
805
  "network <strong>must</strong> be defined using the <a href='http://en."
@@ -808,26 +810,26 @@ msgid ""
808
  "SlimStat may not track pageviews properly."
809
  msgstr ""
810
 
811
- #: ../../admin/config/index.php:69
812
  msgid "Blacklist by Capability"
813
  msgstr "Lista nera delle capability"
814
 
815
- #: ../../admin/config/index.php:69
816
  msgid ""
817
  "Users having at least one of the <a href='http://codex.wordpress.org/"
818
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
819
  "will not be tracked. Capabilities are case-insensitive."
820
  msgstr ""
821
 
822
- #: ../../admin/config/index.php:71
823
  msgid "Profiling"
824
  msgstr "Profili"
825
 
826
- #: ../../admin/config/index.php:72
827
  msgid "Ignore Spammers"
828
  msgstr "Ignora spam"
829
 
830
- #: ../../admin/config/index.php:72
831
  msgid ""
832
  "Enable this option if you don't want to track visits from users identified "
833
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -835,11 +837,11 @@ msgid ""
835
  "database."
836
  msgstr ""
837
 
838
- #: ../../admin/config/index.php:73
839
  msgid "Permalinks"
840
  msgstr "Permalink"
841
 
842
- #: ../../admin/config/index.php:73
843
  msgid ""
844
  "List all the URLs on your website that you don't want to track, separated by "
845
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -850,21 +852,21 @@ msgid ""
850
  "case-insensitive."
851
  msgstr ""
852
 
853
- #: ../../admin/config/index.php:74
854
  msgid "Countries"
855
  msgstr "Classifica Paesi"
856
 
857
- #: ../../admin/config/index.php:74
858
  msgid ""
859
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
860
  "track, separated by commas."
861
  msgstr ""
862
 
863
- #: ../../admin/config/index.php:75
864
  msgid "User Agents"
865
  msgstr "Browser"
866
 
867
- #: ../../admin/config/index.php:75
868
  msgid ""
869
  "Browsers (user agents) you don't want to track, separated by commas. You can "
870
  "specify the browser's version adding a slash after the name (i.e. "
@@ -874,11 +876,11 @@ msgid ""
874
  "code> will match IE/7.0 and IE/8.0. Strings are case-insensitive."
875
  msgstr ""
876
 
877
- #: ../../admin/config/index.php:76
878
  msgid "Referring Sites"
879
  msgstr "Domini sorgente"
880
 
881
- #: ../../admin/config/index.php:76
882
  msgid ""
883
  "Referring URLs that you don't want to track, separated by commas: "
884
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -888,79 +890,79 @@ msgid ""
888
  "https://)."
889
  msgstr ""
890
 
891
- #: ../../admin/config/index.php:78 ../../admin/config/index.php:214
892
  msgid "Miscellaneous"
893
  msgstr "Altre impostazioni"
894
 
895
- #: ../../admin/config/index.php:79
896
  msgid "Enable Privacy Mode"
897
  msgstr "Attiva privacy"
898
 
899
- #: ../../admin/config/index.php:79
900
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
901
  msgstr ""
902
 
903
- #: ../../admin/config/index.php:80
904
  msgid "Ignore Prefetch Requests"
905
  msgstr "Ignora requeste prefetch"
906
 
907
- #: ../../admin/config/index.php:80
908
  msgid ""
909
  "Prevent WP SlimStat from tracking pageviews generated by Firefox's <a "
910
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
911
  "target='_blank'>Link Prefetching functionality</a>."
912
  msgstr ""
913
 
914
- #: ../../admin/config/index.php:96
915
  msgid "Ignore users (username not found)"
916
  msgstr "Ignora utenti (nome utente non trovato)"
917
 
918
- #: ../../admin/config/index.php:119
919
  msgid ""
920
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
921
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
922
  msgstr ""
923
 
924
- #: ../../admin/config/index.php:129
925
  msgid "Reports"
926
  msgstr "Rapporti"
927
 
928
- #: ../../admin/config/index.php:130
929
  msgid "Restrict Authors"
930
  msgstr "Limita autori"
931
 
932
- #: ../../admin/config/index.php:130
933
  msgid ""
934
  "Enable this option if you want your authours to only see stats related to "
935
  "their own content."
936
  msgstr ""
937
 
938
- #: ../../admin/config/index.php:131 ../../admin/config/index.php:135
939
  msgid "Capability"
940
  msgstr "Capability"
941
 
942
- #: ../../admin/config/index.php:131
943
  msgid ""
944
  "Specify the minimum <a href='http://codex.wordpress.org/"
945
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
946
- "reports (default: <code>read</code>). If this field is empty, <strong>all "
947
- "your users</strong> (including subscribers) will have access to the reports, "
948
- "unless a 'Read access' whitelist has been specified here below. In this "
949
- "case, the list has precedence over the capability."
950
  msgstr ""
951
 
952
- #: ../../admin/config/index.php:132 ../../admin/config/index.php:136
953
  msgid "Whitelist"
954
  msgstr "Lista bianca"
955
 
956
- #: ../../admin/config/index.php:132
957
  msgid ""
958
  "List all the users who should have access to the reports, separated by "
959
  "commas. Administrators are implicitly allowed, so you don't need to list "
960
  "them in here. Usernames are case sensitive."
961
  msgstr ""
962
 
963
- #: ../../admin/config/index.php:135
964
  msgid ""
965
  "Specify the minimum <a href='http://codex.wordpress.org/"
966
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
@@ -968,82 +970,82 @@ msgid ""
968
  "below can be used to override this option for specific users."
969
  msgstr ""
970
 
971
- #: ../../admin/config/index.php:136
972
  msgid ""
973
  "List all the users who can edit these options, separated by commas. Please "
974
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
975
  "not forget to include yourself! Usernames are case sensitive."
976
  msgstr ""
977
 
978
- #: ../../admin/config/index.php:152
979
  msgid "Read access: username not found"
980
- msgstr ""
981
 
982
- #: ../../admin/config/index.php:165 ../../admin/config/index.php:196
983
  msgid ""
984
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
985
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
986
  "information"
987
  msgstr ""
988
 
989
- #: ../../admin/config/index.php:183
990
  msgid "Config access: username not found"
991
- msgstr ""
992
 
993
- #: ../../admin/config/index.php:207
994
  msgid "Detect Smoothing"
995
  msgstr "Test smoothing"
996
 
997
- #: ../../admin/config/index.php:207
998
  msgid ""
999
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
1000
  "This option required Spy Mode to be enabled."
1001
  msgstr ""
1002
 
1003
- #: ../../admin/config/index.php:208
1004
  msgid "Track Outbound Clicks"
1005
  msgstr "Traccia link in uscita"
1006
 
1007
- #: ../../admin/config/index.php:208
1008
  msgid ""
1009
  "Track when your visitors click on link to external websites. This option "
1010
  "required Spy Mode to be enabled."
1011
  msgstr ""
1012
 
1013
- #: ../../admin/config/index.php:209
1014
  msgid "Session Duration"
1015
  msgstr "Durata della sessione"
1016
 
1017
- #: ../../admin/config/index.php:209
1018
  msgid ""
1019
- "How many seconds should a human session on your site last? Google Analytics "
1020
- "sets it to 1800 seconds."
1021
  msgstr ""
1022
 
1023
- #: ../../admin/config/index.php:210
1024
  msgid "Extend Session"
1025
  msgstr "Estendi sessione"
1026
 
1027
- #: ../../admin/config/index.php:210
1028
  msgid "Extend the duration of a session each time the user visits a new page."
1029
  msgstr ""
1030
 
1031
- #: ../../admin/config/index.php:211
1032
  msgid "Enable CDN"
1033
  msgstr "Attiva CDN"
1034
 
1035
- #: ../../admin/config/index.php:211
1036
  msgid ""
1037
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
1038
  "by serving our tracking code from their fast and reliable network (free "
1039
  "service)."
1040
  msgstr ""
1041
 
1042
- #: ../../admin/config/index.php:212
1043
  msgid "Extensions to Track"
1044
  msgstr "Estensioni da tracciare"
1045
 
1046
- #: ../../admin/config/index.php:212
1047
  msgid ""
1048
  "List all the file extensions that you want to be treated as Downloads. "
1049
  "Please note that links pointing to external resources (i.e. PDFs on a "
@@ -1052,37 +1054,24 @@ msgid ""
1052
  "below."
1053
  msgstr ""
1054
 
1055
- #: ../../admin/config/index.php:215
1056
  msgid "IP Lookup"
1057
  msgstr "Geolocalizzazione"
1058
 
1059
- #: ../../admin/config/index.php:215
1060
  msgid "Customize the Geolocation service to be used in the reports."
1061
  msgstr ""
1062
 
1063
- #: ../../admin/config/index.php:216
1064
  msgid "Custom CSS"
1065
  msgstr "Personalizza CSS "
1066
 
1067
- #: ../../admin/config/index.php:216
1068
  msgid ""
1069
  "Paste here your custom stylesheet to personalize the way your reports look. "
1070
  "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1071
  "target='_blank'>Check the FAQ</a> for more information on how to use this "
1072
- "functionality."
1073
- msgstr ""
1074
-
1075
- #: ../../admin/config/index.php:217
1076
- msgid "Chart Annotations"
1077
- msgstr "Annotazioni sui grafici"
1078
-
1079
- #: ../../admin/config/index.php:217
1080
- msgid ""
1081
- "Add <em>markings</em> to each chart by specifying a date and its description "
1082
- "in the field below. Useful to keep track of special events and correlate "
1083
- "them to your analytics. Please use the following format:<code>YYYY MM DD HH:"
1084
- "mm=Description 1,YYYY MM DD HH:mm=Description 2</code>. For example: 2012 12 "
1085
- "31 23:55=New Year's Eve."
1086
  msgstr ""
1087
 
1088
  #: ../../admin/config/index.php:218
@@ -1091,39 +1080,44 @@ msgstr "Attiva UAN"
1091
 
1092
  #: ../../admin/config/index.php:218
1093
  msgid ""
1094
- "Collect data about unknown user agents, and send it anonymously to our "
1095
- "server for analysis. This allows us to contribute to the <a href='http://"
1096
- "browscap.co/' target='_blank'>BrowsCap opensource project</a>, and improve "
1097
- "the accuracy of SlimStat's browser detection functionality."
1098
  msgstr ""
1099
 
1100
  #: ../../admin/config/maintenance.php:20
1101
  msgid "Your WP SlimStat tables have been successfully converted to InnoDB."
1102
- msgstr ""
1103
 
1104
  #: ../../admin/config/maintenance.php:30
1105
  msgid "records deleted from your database."
1106
- msgstr ""
1107
 
1108
  #: ../../admin/config/maintenance.php:34
1109
  msgid "All the records were successfully deleted."
1110
- msgstr ""
1111
 
1112
  #: ../../admin/config/maintenance.php:38
1113
  msgid "Your reports were successfully restored to their default arrangement."
1114
- msgstr ""
1115
 
1116
  #: ../../admin/config/maintenance.php:45
1117
  msgid ""
1118
  "Congrats! WP SlimStat is now optimized for <a href=\"http://www.youtube.com/"
1119
  "watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
1120
  msgstr ""
 
 
 
1121
 
1122
  #: ../../admin/config/maintenance.php:52
1123
  msgid ""
1124
  "Indexing has been successfully disabled. Enjoy the extra database space you "
1125
  "just gained!"
1126
  msgstr ""
 
 
1127
 
1128
  #: ../../admin/config/maintenance.php:83
1129
  msgid "Database Information"
@@ -1202,14 +1196,14 @@ msgid "is not empty"
1202
  msgstr "non è vuoto"
1203
 
1204
  #: ../../admin/config/maintenance.php:138 ../../admin/view/index.php:32
1205
- #: ../../admin/view/index.php:77
1206
  msgid "Apply"
1207
  msgstr "Applica"
1208
 
1209
  #: ../../admin/config/maintenance.php:139
1210
  msgid ""
1211
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1212
- msgstr ""
1213
 
1214
  #: ../../admin/config/maintenance.php:144
1215
  msgid "Empty Database"
@@ -1219,7 +1213,7 @@ msgstr "Svuota database"
1219
  msgid ""
1220
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1221
  "database?"
1222
- msgstr ""
1223
 
1224
  #: ../../admin/config/maintenance.php:147
1225
  msgid "Delete All Pageviews"
@@ -1576,9 +1570,8 @@ msgstr "Afrikaans"
1576
 
1577
  # Afrikaans
1578
  #: ../../admin/lang/dynamic_strings.php:73
1579
- #, fuzzy
1580
  msgid "l-af-za"
1581
- msgstr "Afrikaans"
1582
 
1583
  # Arabic/Saudi Arabia
1584
  #: ../../admin/lang/dynamic_strings.php:74
@@ -1667,11 +1660,11 @@ msgstr "Arabo/Yemen"
1667
 
1668
  #: ../../admin/lang/dynamic_strings.php:91
1669
  msgid "l-az"
1670
- msgstr ""
1671
 
1672
  #: ../../admin/lang/dynamic_strings.php:92
1673
  msgid "l-az-az"
1674
- msgstr ""
1675
 
1676
  # Belarusian
1677
  #: ../../admin/lang/dynamic_strings.php:93
@@ -1696,7 +1689,7 @@ msgstr "Bulgaro"
1696
 
1697
  #: ../../admin/lang/dynamic_strings.php:97
1698
  msgid "l-bs-ba"
1699
- msgstr ""
1700
 
1701
  # Catalan
1702
  #: ../../admin/lang/dynamic_strings.php:98
@@ -1722,11 +1715,11 @@ msgstr "Ceco"
1722
 
1723
  #: ../../admin/lang/dynamic_strings.php:102
1724
  msgid "l-cy"
1725
- msgstr ""
1726
 
1727
  #: ../../admin/lang/dynamic_strings.php:103
1728
  msgid "l-cy-gb"
1729
- msgstr ""
1730
 
1731
  # Danish
1732
  #: ../../admin/lang/dynamic_strings.php:104
@@ -1770,11 +1763,11 @@ msgstr "Tedesco/Lussemburgo"
1770
 
1771
  #: ../../admin/lang/dynamic_strings.php:112
1772
  msgid "l-dv"
1773
- msgstr ""
1774
 
1775
  #: ../../admin/lang/dynamic_strings.php:113
1776
  msgid "l-dv-mv"
1777
- msgstr ""
1778
 
1779
  # Greek
1780
  #: ../../admin/lang/dynamic_strings.php:114
@@ -2068,11 +2061,11 @@ msgstr "Spagnolo"
2068
 
2069
  #: ../../admin/lang/dynamic_strings.php:170
2070
  msgid "l-gu"
2071
- msgstr ""
2072
 
2073
  #: ../../admin/lang/dynamic_strings.php:171
2074
  msgid "l-gu-in"
2075
- msgstr ""
2076
 
2077
  # Hebrew
2078
  #: ../../admin/lang/dynamic_strings.php:172
@@ -2124,11 +2117,11 @@ msgstr "Ungherese/Ungheria"
2124
 
2125
  #: ../../admin/lang/dynamic_strings.php:181
2126
  msgid "l-hy"
2127
- msgstr ""
2128
 
2129
  #: ../../admin/lang/dynamic_strings.php:182
2130
  msgid "l-hy-am"
2131
- msgstr ""
2132
 
2133
  # Indonesian
2134
  #: ../../admin/lang/dynamic_strings.php:183
@@ -2179,27 +2172,27 @@ msgstr "Giapponese"
2179
 
2180
  #: ../../admin/lang/dynamic_strings.php:192
2181
  msgid "l-ka"
2182
- msgstr ""
2183
 
2184
  #: ../../admin/lang/dynamic_strings.php:193
2185
  msgid "l-ka-ge"
2186
- msgstr ""
2187
 
2188
  #: ../../admin/lang/dynamic_strings.php:194
2189
  msgid "l-kk"
2190
- msgstr ""
2191
 
2192
  #: ../../admin/lang/dynamic_strings.php:195
2193
  msgid "l-kk-kz"
2194
- msgstr ""
2195
 
2196
  #: ../../admin/lang/dynamic_strings.php:196
2197
  msgid "l-kn"
2198
- msgstr ""
2199
 
2200
  #: ../../admin/lang/dynamic_strings.php:197
2201
  msgid "l-kn-in"
2202
- msgstr ""
2203
 
2204
  # Korean
2205
  #: ../../admin/lang/dynamic_strings.php:198
@@ -2225,11 +2218,11 @@ msgstr "Coreano"
2225
 
2226
  #: ../../admin/lang/dynamic_strings.php:202
2227
  msgid "l-ky"
2228
- msgstr ""
2229
 
2230
  #: ../../admin/lang/dynamic_strings.php:203
2231
  msgid "l-ky-kg"
2232
- msgstr ""
2233
 
2234
  # Lithuanian
2235
  #: ../../admin/lang/dynamic_strings.php:204
@@ -2255,11 +2248,11 @@ msgstr "Latviano"
2255
 
2256
  #: ../../admin/lang/dynamic_strings.php:208
2257
  msgid "l-mi"
2258
- msgstr ""
2259
 
2260
  #: ../../admin/lang/dynamic_strings.php:209
2261
  msgid "l-mi-nz"
2262
- msgstr ""
2263
 
2264
  # Macedonian
2265
  #: ../../admin/lang/dynamic_strings.php:210
@@ -2274,19 +2267,19 @@ msgstr "Macedone"
2274
 
2275
  #: ../../admin/lang/dynamic_strings.php:212
2276
  msgid "l-mn"
2277
- msgstr ""
2278
 
2279
  #: ../../admin/lang/dynamic_strings.php:213
2280
  msgid "l-mn-mn"
2281
- msgstr ""
2282
 
2283
  #: ../../admin/lang/dynamic_strings.php:214
2284
  msgid "l-mr"
2285
- msgstr ""
2286
 
2287
  #: ../../admin/lang/dynamic_strings.php:215
2288
  msgid "l-mr-in"
2289
- msgstr ""
2290
 
2291
  # Malaysian
2292
  #: ../../admin/lang/dynamic_strings.php:216
@@ -2318,11 +2311,11 @@ msgstr "Maltese"
2318
 
2319
  #: ../../admin/lang/dynamic_strings.php:221
2320
  msgid "l-nb"
2321
- msgstr ""
2322
 
2323
  #: ../../admin/lang/dynamic_strings.php:222
2324
  msgid "l-nb-no"
2325
- msgstr ""
2326
 
2327
  # Dutch
2328
  #: ../../admin/lang/dynamic_strings.php:223
@@ -2341,23 +2334,23 @@ msgstr "Olandese/Olanda"
2341
 
2342
  #: ../../admin/lang/dynamic_strings.php:226
2343
  msgid "l-nn-no"
2344
- msgstr ""
2345
 
2346
  #: ../../admin/lang/dynamic_strings.php:227
2347
  msgid "l-ns"
2348
- msgstr ""
2349
 
2350
  #: ../../admin/lang/dynamic_strings.php:228
2351
  msgid "l-ns-za"
2352
- msgstr ""
2353
 
2354
  #: ../../admin/lang/dynamic_strings.php:229
2355
  msgid "l-pa"
2356
- msgstr ""
2357
 
2358
  #: ../../admin/lang/dynamic_strings.php:230
2359
  msgid "l-pa-in"
2360
- msgstr ""
2361
 
2362
  # Polish
2363
  #: ../../admin/lang/dynamic_strings.php:231
@@ -2371,7 +2364,7 @@ msgstr "Polacco"
2371
 
2372
  #: ../../admin/lang/dynamic_strings.php:233
2373
  msgid "l-ps"
2374
- msgstr ""
2375
 
2376
  # Spanish/Argentina
2377
  #: ../../admin/lang/dynamic_strings.php:234
@@ -2396,19 +2389,19 @@ msgstr "Portoghese"
2396
 
2397
  #: ../../admin/lang/dynamic_strings.php:238
2398
  msgid "l-qu"
2399
- msgstr ""
2400
 
2401
  #: ../../admin/lang/dynamic_strings.php:239
2402
  msgid "l-qu-bo"
2403
- msgstr ""
2404
 
2405
  #: ../../admin/lang/dynamic_strings.php:240
2406
  msgid "l-qu-ec"
2407
- msgstr ""
2408
 
2409
  #: ../../admin/lang/dynamic_strings.php:241
2410
  msgid "l-qu-pe"
2411
- msgstr ""
2412
 
2413
  # Romanian
2414
  #: ../../admin/lang/dynamic_strings.php:242
@@ -2433,27 +2426,27 @@ msgstr "Russo/Russia"
2433
 
2434
  #: ../../admin/lang/dynamic_strings.php:246
2435
  msgid "l-sa"
2436
- msgstr ""
2437
 
2438
  #: ../../admin/lang/dynamic_strings.php:247
2439
  msgid "l-sa-in"
2440
- msgstr ""
2441
 
2442
  #: ../../admin/lang/dynamic_strings.php:248
2443
  msgid "l-se"
2444
- msgstr ""
2445
 
2446
  #: ../../admin/lang/dynamic_strings.php:249
2447
  msgid "l-se-fi"
2448
- msgstr ""
2449
 
2450
  #: ../../admin/lang/dynamic_strings.php:250
2451
  msgid "l-se-no"
2452
- msgstr ""
2453
 
2454
  #: ../../admin/lang/dynamic_strings.php:251
2455
  msgid "l-se-se"
2456
- msgstr ""
2457
 
2458
  # Slovack
2459
  #: ../../admin/lang/dynamic_strings.php:252
@@ -2517,27 +2510,27 @@ msgstr "Svedese/Svezia"
2517
 
2518
  #: ../../admin/lang/dynamic_strings.php:263
2519
  msgid "l-sw"
2520
- msgstr ""
2521
 
2522
  #: ../../admin/lang/dynamic_strings.php:264
2523
  msgid "l-sw-ke"
2524
- msgstr ""
2525
 
2526
  #: ../../admin/lang/dynamic_strings.php:265
2527
  msgid "l-ta"
2528
- msgstr ""
2529
 
2530
  #: ../../admin/lang/dynamic_strings.php:266
2531
  msgid "l-ta-in"
2532
- msgstr ""
2533
 
2534
  #: ../../admin/lang/dynamic_strings.php:267
2535
  msgid "l-te"
2536
- msgstr ""
2537
 
2538
  #: ../../admin/lang/dynamic_strings.php:268
2539
  msgid "l-te-in"
2540
- msgstr ""
2541
 
2542
  # Thai
2543
  #: ../../admin/lang/dynamic_strings.php:269
@@ -2551,11 +2544,11 @@ msgstr "Thai"
2551
 
2552
  #: ../../admin/lang/dynamic_strings.php:271
2553
  msgid "l-tl"
2554
- msgstr ""
2555
 
2556
  #: ../../admin/lang/dynamic_strings.php:272
2557
  msgid "l-tl-ph"
2558
- msgstr ""
2559
 
2560
  # Tswana
2561
  #: ../../admin/lang/dynamic_strings.php:273
@@ -2580,15 +2573,15 @@ msgstr "Turco"
2580
 
2581
  #: ../../admin/lang/dynamic_strings.php:277
2582
  msgid "l-tt"
2583
- msgstr ""
2584
 
2585
  #: ../../admin/lang/dynamic_strings.php:278
2586
  msgid "l-tt-ru"
2587
- msgstr ""
2588
 
2589
  #: ../../admin/lang/dynamic_strings.php:279
2590
  msgid "l-ts"
2591
- msgstr ""
2592
 
2593
  # Ukrainian
2594
  #: ../../admin/lang/dynamic_strings.php:280
@@ -2614,11 +2607,11 @@ msgstr "Urdu"
2614
 
2615
  #: ../../admin/lang/dynamic_strings.php:284
2616
  msgid "l-uz"
2617
- msgstr ""
2618
 
2619
  #: ../../admin/lang/dynamic_strings.php:285
2620
  msgid "l-uz-uz"
2621
- msgstr ""
2622
 
2623
  # Vietnamese
2624
  #: ../../admin/lang/dynamic_strings.php:286
@@ -2685,7 +2678,7 @@ msgstr "Zulu"
2685
 
2686
  # Unknown
2687
  #: ../../admin/lang/dynamic_strings.php:298
2688
- #: ../../admin/view/wp-slimstat-reports.php:495
2689
  msgid "l-"
2690
  msgstr "Sconosciuto"
2691
 
@@ -2703,51 +2696,55 @@ msgstr "Sconosciuto"
2703
  msgid "c-xy"
2704
  msgstr "IP Locale"
2705
 
2706
- #: ../../admin/view/index.php:47 ../../admin/view/wp-slimstat-reports.php:680
2707
  msgid "Today"
2708
  msgstr "Oggi"
2709
 
2710
- #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:681
2711
  msgid "Yesterday"
2712
  msgstr "Ieri"
2713
 
2714
- #: ../../admin/view/index.php:49
2715
- msgid "Last 7 Days"
2716
- msgstr ""
2717
-
2718
  #: ../../admin/view/index.php:50
2719
- msgid "Last 30 Days"
2720
- msgstr "Ultimi 30 giorni"
2721
 
2722
  #: ../../admin/view/index.php:51
 
 
 
 
2723
  msgid "Last 90 Days"
2724
  msgstr "Ultimi 90 giorni"
2725
 
2726
- #: ../../admin/view/index.php:52
2727
- msgid "This Year"
2728
  msgstr "Anno Corrente"
2729
 
2730
- #: ../../admin/view/index.php:53
2731
  msgid "Date Range"
2732
  msgstr "Filtra per Data"
2733
 
2734
- #: ../../admin/view/index.php:55 ../../admin/view/wp-slimstat-reports.php:72
2735
  msgid "Day"
2736
  msgstr "Giorno"
2737
 
2738
- #: ../../admin/view/index.php:65 ../../admin/view/wp-slimstat-reports.php:73
2739
  msgid "Month"
2740
  msgstr "Mese"
2741
 
2742
- #: ../../admin/view/index.php:74 ../../admin/view/wp-slimstat-reports.php:74
2743
  msgid "Year"
2744
  msgstr "Anno"
2745
 
2746
- #: ../../admin/view/index.php:109
 
 
 
 
2747
  msgid "Your report here"
2748
  msgstr "Le tue statistiche qui"
2749
 
2750
- #: ../../admin/view/index.php:111
2751
  msgid ""
2752
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
2753
  "Just write a new plugin that retrieves the desired information from the "
@@ -2762,13 +2759,13 @@ msgstr ""
2762
  "il <a href=\"http://wordpress.org/tags/wp-slimstat?forum_id=10\" target="
2763
  "\"_blank\">forum di supporto</a>."
2764
 
2765
- #: ../../admin/view/index.php:125 ../../admin/view/wp-slimstat-reports.php:671
2766
- #: ../../admin/view/wp-slimstat-reports.php:774
2767
- #: ../../admin/view/wp-slimstat-reports.php:1040
2768
  msgid "Pageviews"
2769
  msgstr "Accessi"
2770
 
2771
- #: ../../admin/view/index.php:128
2772
  msgid ""
2773
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2774
  "WP SlimStat leverages this information to identify returning visitors. "
@@ -2778,41 +2775,41 @@ msgstr ""
2778
  "memorizzati sui loro computer. WP SlimStat sfrutta queste informazioni per "
2779
  "identificare i visitatori noti."
2780
 
2781
- #: ../../admin/view/index.php:132
2782
  msgid "Take a sneak peek at what human visitors are doing on your website."
2783
  msgstr "Dai un'occhiata a cosa fanno i visitatori sul tuo sito."
2784
 
2785
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
2786
- #: ../../admin/view/index.php:176 ../../admin/view/right-now.php:146
2787
  msgid "Color codes"
2788
  msgstr "Significato dei colori"
2789
 
2790
- #: ../../admin/view/index.php:132
2791
  msgid "From a search result page"
2792
  msgstr "Da una pagina di ricerca"
2793
 
2794
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
2795
- #: ../../admin/view/index.php:176
2796
  msgid "Known Users"
2797
  msgstr "Utenti noti"
2798
 
2799
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
2800
- #: ../../admin/view/index.php:176
2801
  msgid "Other Humans"
2802
  msgstr "Altri visitatori umani"
2803
 
2804
- #: ../../admin/view/index.php:136
2805
  msgid "Keywords used by your visitors to find your website on a search engine."
2806
  msgstr "Parole chiave che i visitatori hanno inserito nel motore di ricerca."
2807
 
2808
- #: ../../admin/view/index.php:139
2809
  msgid ""
2810
  "WP SlimStat retrieves live information from Alexa, Facebook and Google, to "
2811
  "measures your site's rankings. Values are updated every 12 hours. Filters "
2812
  "set above don't apply to this report."
2813
  msgstr ""
2814
 
2815
- #: ../../admin/view/index.php:142
2816
  msgid ""
2817
  "We have teamed up with HackerNinja.com to offer you a free website security "
2818
  "scan. By clicking on Start Free Scan, your website will be analyzed to "
@@ -2820,11 +2817,11 @@ msgid ""
2820
  "information is being sent to HackerNinja."
2821
  msgstr ""
2822
 
2823
- #: ../../admin/view/index.php:145
2824
  msgid "Human Visits"
2825
  msgstr "Visite umane"
2826
 
2827
- #: ../../admin/view/index.php:148
2828
  msgid ""
2829
  "Internet Service Provider: a company which provides other companies or "
2830
  "individuals with access to the Internet. Your DSL or cable internet service "
@@ -2832,29 +2829,29 @@ msgid ""
2832
  "by setting the corresponding filter under Settings > SlimStat > Filters."
2833
  msgstr ""
2834
 
2835
- #: ../../admin/view/index.php:151
2836
  msgid ""
2837
  "You can configure WP SlimStat to ignore a specific Country by setting the "
2838
  "corresponding filter under Settings > SlimStat > Filters."
2839
  msgstr ""
2840
 
2841
- #: ../../admin/view/index.php:154
2842
  msgid ""
2843
  "This report shows you what user agent families (no version considered) are "
2844
  "popular among your visitors."
2845
  msgstr ""
2846
 
2847
- #: ../../admin/view/index.php:157
2848
  msgid ""
2849
  "This report shows you what operating system families (no version considered) "
2850
  "are popular among your visitors."
2851
  msgstr ""
2852
 
2853
- #: ../../admin/view/index.php:163
2854
  msgid "Average Pageviews per Visit"
2855
  msgstr "Media delle pagine per visita"
2856
 
2857
- #: ../../admin/view/index.php:166
2858
  msgid ""
2859
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
2860
  "left your site from the entrance (landing) page."
@@ -2862,11 +2859,11 @@ msgstr ""
2862
  "Una <em>pagina di rimbalzo</em> fa riferimento ad una visita di una pagina, "
2863
  "in cui l'utente è uscito dal sito dalla stessa pagina da cui era entrato."
2864
 
2865
- #: ../../admin/view/index.php:169
2866
  msgid "Searches performed using Wordpress' built-in search functionality."
2867
  msgstr ""
2868
 
2869
- #: ../../admin/view/index.php:173
2870
  msgid ""
2871
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
2872
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
@@ -2876,13 +2873,13 @@ msgstr ""
2876
  "stato cliccato su quella pagina.<br>- <em>ID:xxx</em> mostra invece "
2877
  "l'identificativo del tag HTML, se disponibile."
2878
 
2879
- #: ../../admin/view/index.php:176
2880
  msgid ""
2881
  "This report lists any <em>event</em> occurred on your website. Please refer "
2882
  "to the FAQ for more information on how to leverage this functionality."
2883
  msgstr ""
2884
 
2885
- #: ../../admin/view/index.php:179
2886
  msgid ""
2887
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2888
  "this report is not affected by the filters set here above."
@@ -2890,535 +2887,546 @@ msgstr ""
2890
 
2891
  #: ../../admin/view/right-now.php:8
2892
  msgid "Human"
2893
- msgstr ""
2894
 
2895
  #: ../../admin/view/right-now.php:8
2896
  msgid "Bot/Crawler"
2897
- msgstr ""
2898
 
2899
  #: ../../admin/view/right-now.php:8
2900
  msgid "Mobile Device"
2901
- msgstr ""
2902
 
2903
  #: ../../admin/view/right-now.php:8
2904
  msgid "Syndication Reader"
2905
- msgstr ""
2906
 
2907
  #: ../../admin/view/right-now.php:28
2908
- #: ../../admin/view/wp-slimstat-reports.php:438
2909
- #: ../../admin/view/wp-slimstat-reports.php:583
2910
  msgid "No data to display"
2911
  msgstr "Nessun dato da visualizzare"
2912
 
2913
  # Unknown
2914
- #: ../../admin/view/right-now.php:53
2915
- #: ../../admin/view/wp-slimstat-reports.php:483
2916
- #: ../../admin/view/wp-slimstat-reports.php:621
2917
- #: ../../admin/view/wp-slimstat-reports.php:928
2918
  msgid "c-"
2919
  msgstr "Sconosciuto"
2920
 
2921
- #: ../../admin/view/right-now.php:119
2922
- #: ../../admin/view/wp-slimstat-reports.php:537
2923
- #: ../../admin/view/wp-slimstat-reports.php:541
2924
- #: ../../admin/view/wp-slimstat-reports.php:603
2925
- #: ../../admin/view/wp-slimstat-reports.php:641
2926
  msgid "Open this URL in a new window"
2927
  msgstr "Apri questo indirizzo in una nuova finestra"
2928
 
2929
- #: ../../admin/view/right-now.php:122
2930
  msgid "Local search results page"
2931
  msgstr "Ricerca locale"
2932
 
2933
- #: ../../admin/view/right-now.php:129
2934
  msgid "Open this referrer in a new window"
2935
  msgstr "Apri questa pagina in una nuova finestra"
2936
 
2937
- #: ../../admin/view/right-now.php:130
2938
  msgid "Open this outbound link in a new window"
2939
  msgstr "Apri questo indirizzo in una nuova finestra"
2940
 
2941
- #: ../../admin/view/right-now.php:131
2942
  msgid "Date and Time"
2943
  msgstr "Data e ora"
2944
 
2945
- #: ../../admin/view/right-now.php:132
2946
  msgid "Content Type"
2947
  msgstr "Tipo di contenuto"
2948
 
2949
- #: ../../admin/view/right-now.php:147
2950
  msgid "Visit with keywords"
2951
  msgstr "Visita con parole chiave"
2952
 
2953
- #: ../../admin/view/right-now.php:149
2954
  msgid "Known User"
2955
- msgstr "Utente Noto"
2956
 
2957
- #: ../../admin/view/right-now.php:150
2958
  msgid "Human Visitor"
2959
- msgstr "Visitatore Umano"
2960
 
2961
- #: ../../admin/view/right-now.php:151
2962
  msgid "Bot or Crawler"
2963
- msgstr ""
2964
 
2965
- #: ../../admin/view/wp-slimstat-reports.php:44
2966
  msgid "IP Address"
2967
  msgstr "Indirizzo IP"
2968
 
2969
- #: ../../admin/view/wp-slimstat-reports.php:49
2970
  msgid "Domain"
2971
  msgstr "Dominio"
2972
 
2973
- #: ../../admin/view/wp-slimstat-reports.php:53
2974
  msgid "-- Advanced filters --"
2975
  msgstr "-- Filtri avanzati --"
2976
 
2977
- #: ../../admin/view/wp-slimstat-reports.php:54
2978
- #: ../../admin/view/wp-slimstat-reports.php:99
2979
  msgid "Browser Capabilities"
2980
  msgstr "Estensioni del browser"
2981
 
2982
- #: ../../admin/view/wp-slimstat-reports.php:66
2983
  msgid "Resource ID"
2984
  msgstr "ID del post"
2985
 
2986
- #: ../../admin/view/wp-slimstat-reports.php:71
2987
  msgid "Hour"
2988
  msgstr "Ora"
2989
 
2990
- #: ../../admin/view/wp-slimstat-reports.php:78
 
 
 
 
 
 
 
 
 
 
 
 
2991
  msgid "Pageviews (chart)"
2992
  msgstr "Accessi (grafico)"
2993
 
2994
- #: ../../admin/view/wp-slimstat-reports.php:79
2995
  msgid "About WP SlimStat"
2996
  msgstr "Informazioni su WP SlimStat"
2997
 
2998
- #: ../../admin/view/wp-slimstat-reports.php:80
2999
- #: ../../admin/view/wp-slimstat-reports.php:93
3000
  msgid "At a Glance"
3001
- msgstr ""
3002
 
3003
- #: ../../admin/view/wp-slimstat-reports.php:81
3004
  msgid "Currently Online"
3005
  msgstr "Collegati in questo momento"
3006
 
3007
- #: ../../admin/view/wp-slimstat-reports.php:82
3008
- #: ../../admin/view/wp-slimstat-reports.php:117
3009
  msgid "Spy View"
3010
  msgstr "Spioncino"
3011
 
3012
- #: ../../admin/view/wp-slimstat-reports.php:83
3013
- #: ../../admin/view/wp-slimstat-reports.php:118
3014
  msgid "Recent Search Terms"
3015
  msgstr "Parole chiave recenti"
3016
 
3017
- #: ../../admin/view/wp-slimstat-reports.php:84
3018
  msgid "Top Pages"
3019
- msgstr "Classifica Pagine"
3020
 
3021
- #: ../../admin/view/wp-slimstat-reports.php:85
3022
- #: ../../admin/view/wp-slimstat-reports.php:115
3023
  msgid "Top Traffic Sources"
3024
  msgstr "Sorgenti di traffico"
3025
 
3026
- #: ../../admin/view/wp-slimstat-reports.php:86
3027
  msgid "Top Known Visitors"
3028
- msgstr "Classifica Visitatori"
3029
 
3030
- #: ../../admin/view/wp-slimstat-reports.php:87
3031
- #: ../../admin/view/wp-slimstat-reports.php:113
3032
- #: ../../admin/view/wp-slimstat-reports.php:133
3033
  msgid "Top Search Terms"
3034
  msgstr "Parole chiave popolari"
3035
 
3036
- #: ../../admin/view/wp-slimstat-reports.php:88
3037
- #: ../../admin/view/wp-slimstat-reports.php:100
3038
- #: ../../admin/view/wp-slimstat-reports.php:114
3039
  msgid "Top Countries"
3040
  msgstr "Classifica Paesi"
3041
 
3042
- #: ../../admin/view/wp-slimstat-reports.php:89
3043
  msgid "Rankings"
3044
- msgstr ""
3045
 
3046
- #: ../../admin/view/wp-slimstat-reports.php:90
3047
  msgid "Security Scan"
3048
- msgstr ""
3049
 
3050
- #: ../../admin/view/wp-slimstat-reports.php:91
3051
  msgid "Top Language Families"
3052
- msgstr "Famiglie Linguistiche"
3053
 
3054
- #: ../../admin/view/wp-slimstat-reports.php:92
3055
  msgid "Human Visits (chart)"
3056
  msgstr "Visite umane (grafico)"
3057
 
3058
- #: ../../admin/view/wp-slimstat-reports.php:94
3059
  msgid "Top Languages"
3060
- msgstr "Classifica Lingue"
3061
 
3062
- #: ../../admin/view/wp-slimstat-reports.php:95
3063
  msgid "Top Browsers"
3064
- msgstr "Classifica Browser"
3065
 
3066
- #: ../../admin/view/wp-slimstat-reports.php:96
3067
  msgid "Top Service Providers"
3068
  msgstr "Classifica provider"
3069
 
3070
- #: ../../admin/view/wp-slimstat-reports.php:97
3071
  msgid "Top Operating Systems"
3072
  msgstr "Classifica sistemi operativi"
3073
 
3074
- #: ../../admin/view/wp-slimstat-reports.php:98
3075
  msgid "Top Screen Resolutions"
3076
  msgstr "Classifica risoluzioni"
3077
 
3078
- #: ../../admin/view/wp-slimstat-reports.php:101
3079
  msgid "Visit Duration"
3080
  msgstr "Durata delle visite"
3081
 
3082
- #: ../../admin/view/wp-slimstat-reports.php:102
3083
- #: ../../admin/view/wp-slimstat-reports.php:119
3084
  msgid "Recent Countries"
3085
  msgstr "Paesi recenti"
3086
 
3087
- #: ../../admin/view/wp-slimstat-reports.php:103
3088
  msgid "Recent Screen Resolutions"
3089
  msgstr "Risoluzioni recenti"
3090
 
3091
- #: ../../admin/view/wp-slimstat-reports.php:104
3092
  msgid "Recent Operating Systems"
3093
  msgstr "Sistemi operativi recenti"
3094
 
3095
- #: ../../admin/view/wp-slimstat-reports.php:105
3096
  msgid "Recent Browsers"
3097
  msgstr "Browser recenti"
3098
 
3099
- #: ../../admin/view/wp-slimstat-reports.php:106
3100
  msgid "Recent Languages"
3101
  msgstr "Lingue recenti"
3102
 
3103
- #: ../../admin/view/wp-slimstat-reports.php:107
3104
  msgid "Top Browser Families"
3105
  msgstr "Famiglie di Browser"
3106
 
3107
- #: ../../admin/view/wp-slimstat-reports.php:108
3108
  msgid "Top OS Families"
3109
- msgstr ""
3110
 
3111
- #: ../../admin/view/wp-slimstat-reports.php:109
3112
  msgid "Recent Users"
3113
  msgstr "Utenti Recenti"
3114
 
3115
- #: ../../admin/view/wp-slimstat-reports.php:110
3116
  msgid "Top Users"
3117
  msgstr "Classifica Utenti"
3118
 
3119
- #: ../../admin/view/wp-slimstat-reports.php:111
3120
  msgid "Traffic Sources (chart)"
3121
  msgstr "Sorgenti di traffico (grafico)"
3122
 
3123
- #: ../../admin/view/wp-slimstat-reports.php:112
3124
  msgid "Summary"
3125
  msgstr "Panoramica"
3126
 
3127
- #: ../../admin/view/wp-slimstat-reports.php:116
3128
  msgid "Top Referring Search Engines"
3129
  msgstr "Classifica motori di ricerca"
3130
 
3131
- #: ../../admin/view/wp-slimstat-reports.php:120
3132
- #: ../../admin/view/wp-slimstat-reports.php:136
3133
  msgid "Top Landing Pages"
3134
  msgstr "Classifica pagine d'ingresso"
3135
 
3136
- #: ../../admin/view/wp-slimstat-reports.php:121
3137
  msgid "Average Pageviews per Visit (chart)"
3138
  msgstr "Media quotidiana delle pagine per visita (grafico)"
3139
 
3140
- #: ../../admin/view/wp-slimstat-reports.php:122
3141
  msgid "Recent Posts"
3142
  msgstr "Articoli recenti"
3143
 
3144
- #: ../../admin/view/wp-slimstat-reports.php:123
3145
  msgid "Recent Bounce Pages"
3146
  msgstr "Pagine di rimbalzo"
3147
 
3148
- #: ../../admin/view/wp-slimstat-reports.php:124
3149
  msgid "Recent Feeds"
3150
  msgstr "Feed recenti"
3151
 
3152
- #: ../../admin/view/wp-slimstat-reports.php:125
3153
  msgid "Recent Pages Not Found"
3154
- msgstr ""
3155
 
3156
- #: ../../admin/view/wp-slimstat-reports.php:126
3157
  msgid "Recent Internal Searches"
3158
  msgstr "Ricerche interne"
3159
 
3160
- #: ../../admin/view/wp-slimstat-reports.php:127
3161
  msgid "Top Categories"
3162
  msgstr "Classifica categorie "
3163
 
3164
- #: ../../admin/view/wp-slimstat-reports.php:128
3165
  msgid "Recent Outbound Links"
3166
  msgstr "Link in uscita"
3167
 
3168
- #: ../../admin/view/wp-slimstat-reports.php:129
3169
  msgid "Recent Events"
3170
  msgstr "Eventi Recenti"
3171
 
3172
- #: ../../admin/view/wp-slimstat-reports.php:130
3173
  msgid "Top Posts"
3174
  msgstr "Classifica articoli"
3175
 
3176
- #: ../../admin/view/wp-slimstat-reports.php:131
3177
  msgid "Top Feeds"
3178
  msgstr "Classifica parole chiave"
3179
 
3180
- #: ../../admin/view/wp-slimstat-reports.php:132
3181
  msgid "Top Internal Searches"
3182
  msgstr "Classifica ricerche interne"
3183
 
3184
- #: ../../admin/view/wp-slimstat-reports.php:134
3185
  msgid "Recent Categories"
3186
  msgstr "Categorie recenti"
3187
 
3188
- #: ../../admin/view/wp-slimstat-reports.php:135
3189
  msgid "Top Pages Not Found"
3190
  msgstr "Classifica Pagine non trovate"
3191
 
3192
- #: ../../admin/view/wp-slimstat-reports.php:137
3193
  msgid "Top Authors"
3194
  msgstr "Classifica autori"
3195
 
3196
- #: ../../admin/view/wp-slimstat-reports.php:138
3197
  msgid "Top Tags"
3198
  msgstr "Classifica Tag"
3199
 
3200
- #: ../../admin/view/wp-slimstat-reports.php:139
3201
  msgid "Recent Downloads"
3202
  msgstr "Download recenti"
3203
 
3204
- #: ../../admin/view/wp-slimstat-reports.php:140
3205
  msgid "Top Outbound Links and Downloads"
3206
  msgstr ""
3207
 
3208
- #: ../../admin/view/wp-slimstat-reports.php:141
3209
  msgid "Your Website"
3210
- msgstr ""
3211
 
3212
- #: ../../admin/view/wp-slimstat-reports.php:143
3213
  msgid "Activity Log"
3214
- msgstr ""
3215
 
3216
- #: ../../admin/view/wp-slimstat-reports.php:241
3217
  msgid "Chart controls"
3218
  msgstr "Controlli del grafico"
3219
 
3220
- #: ../../admin/view/wp-slimstat-reports.php:241
3221
  msgid "Use your mouse wheel to zoom in and out"
3222
  msgstr "Usa la rotellina del mouse per ingrandire o rimpicciolire"
3223
 
3224
- #: ../../admin/view/wp-slimstat-reports.php:241
3225
  msgid "While zooming in, drag the chart to move to a different area"
3226
  msgstr "Mentre ingrandisci, trascina il grafico per spostarti"
3227
 
3228
- #: ../../admin/view/wp-slimstat-reports.php:241
3229
  msgid "Double click on an empty region to reset the zoom level"
3230
  msgstr "Fai doppio click in una zona vuota per azzerare l'ingrandimento"
3231
 
3232
- #: ../../admin/view/wp-slimstat-reports.php:242
3233
  msgid ""
3234
  "Click on a data point to display the activity chart for each hour of that day"
3235
  msgstr "Clicca su un punto del grafico per visualizzare l'attività oraria"
3236
 
3237
- #: ../../admin/view/wp-slimstat-reports.php:274
3238
  msgid "src"
3239
  msgstr "src"
3240
 
3241
- #: ../../admin/view/wp-slimstat-reports.php:275
3242
  msgid "serp"
3243
  msgstr "serp"
3244
 
3245
- #: ../../admin/view/wp-slimstat-reports.php:280
3246
  msgid "Go to the corresponding search engine result page"
3247
  msgstr "Vai alla corrispondente pagina sul motore di ricerca"
3248
 
3249
- #: ../../admin/view/wp-slimstat-reports.php:283
3250
  msgid "Go to the referring page"
3251
  msgstr "Vai alla pagina corrispondente"
3252
 
3253
- #: ../../admin/view/wp-slimstat-reports.php:302
3254
  msgid "Remove filter for"
3255
  msgstr "Rimuovi il filtro per"
3256
 
3257
- #: ../../admin/view/wp-slimstat-reports.php:309
3258
  msgid "Reset All"
3259
  msgstr "Rimuovi tutti"
3260
 
3261
- #: ../../admin/view/wp-slimstat-reports.php:312
3262
  msgid "Current filters:"
3263
  msgstr "Filtri attivi:"
3264
 
3265
- #: ../../admin/view/wp-slimstat-reports.php:316
3266
  msgid "Refresh"
3267
  msgstr "Aggiorna"
3268
 
3269
- #: ../../admin/view/wp-slimstat-reports.php:353
3270
  #, php-format
3271
  msgid "Results %s - %s of %s"
3272
  msgstr "Risultati %s - %s di %s"
3273
 
3274
- #: ../../admin/view/wp-slimstat-reports.php:355
3275
  msgid "Refresh in"
3276
  msgstr "Aggiornamento in"
3277
 
3278
- #: ../../admin/view/wp-slimstat-reports.php:377
3279
- #: ../../admin/view/wp-slimstat-reports.php:389
3280
  #, php-format
3281
  msgid "Daily %s"
3282
  msgstr "%s al giorno"
3283
 
3284
- #: ../../admin/view/wp-slimstat-reports.php:380
3285
  #, php-format
3286
  msgid "%s Minute by Minute"
3287
  msgstr "%s minuto per minuto"
3288
 
3289
- #: ../../admin/view/wp-slimstat-reports.php:383
3290
  #, php-format
3291
  msgid "Hourly %s"
3292
  msgstr "%s ora per ora"
3293
 
3294
- #: ../../admin/view/wp-slimstat-reports.php:386
3295
  #, php-format
3296
  msgid "Monthly %s"
3297
  msgstr "%s al mese"
3298
 
3299
- #: ../../admin/view/wp-slimstat-reports.php:465
3300
  msgid "Category ID"
3301
  msgstr "ID categoria"
3302
 
3303
- #: ../../admin/view/wp-slimstat-reports.php:498
3304
  msgid "OS Code"
3305
  msgstr "Codice SO"
3306
 
3307
- #: ../../admin/view/wp-slimstat-reports.php:508
3308
  msgid "Referrer"
3309
  msgstr "Riferimento"
3310
 
3311
- #: ../../admin/view/wp-slimstat-reports.php:532
3312
- #: ../../admin/view/wp-slimstat-reports.php:709
3313
- #: ../../admin/view/wp-slimstat-reports.php:718
3314
- #: ../../admin/view/wp-slimstat-reports.php:724
3315
- #: ../../admin/view/wp-slimstat-reports.php:730
3316
- #: ../../admin/view/wp-slimstat-reports.php:736
3317
- #: ../../admin/view/wp-slimstat-reports.php:742
3318
- #: ../../admin/view/wp-slimstat-reports.php:748
3319
- #: ../../admin/view/wp-slimstat-reports.php:754
3320
  msgid "Hits"
3321
  msgstr "Visite"
3322
 
3323
- #: ../../admin/view/wp-slimstat-reports.php:600
3324
  msgid "Search for"
3325
  msgstr "Ricerca per"
3326
 
3327
- #: ../../admin/view/wp-slimstat-reports.php:631
3328
- #: ../../admin/view/wp-slimstat-reports.php:641
3329
  msgid "Source"
3330
  msgstr "Sorgente"
3331
 
3332
- #: ../../admin/view/wp-slimstat-reports.php:633
3333
  msgid "Keywords"
3334
  msgstr "Parola chiave"
3335
 
3336
- #: ../../admin/view/wp-slimstat-reports.php:641
3337
  #, php-format
3338
  msgid "Filter results where resource equals %s"
3339
  msgstr "Filtra risultati dove la URL è uguale a %s"
3340
 
3341
- #: ../../admin/view/wp-slimstat-reports.php:651
3342
  msgid "Total Pageviews"
3343
  msgstr "Accessi totali"
3344
 
3345
- #: ../../admin/view/wp-slimstat-reports.php:652
3346
  msgid "DB Size"
3347
  msgstr "Dimensione DB"
3348
 
3349
- #: ../../admin/view/wp-slimstat-reports.php:653
3350
  msgid "Tracking Active"
3351
  msgstr "Tracciamento attivo"
3352
 
3353
- #: ../../admin/view/wp-slimstat-reports.php:654
3354
  msgid "Javascript Mode"
3355
  msgstr "Modalità Javascript"
3356
 
3357
- #: ../../admin/view/wp-slimstat-reports.php:655
3358
  msgid "Tracking Browser Caps"
3359
  msgstr "Traccia Capacità Browser"
3360
 
3361
- #: ../../admin/view/wp-slimstat-reports.php:656
3362
  msgid "Auto purge"
3363
  msgstr "Pulizia DB"
3364
 
3365
- #: ../../admin/view/wp-slimstat-reports.php:657
3366
  msgid "Oldest pageview"
3367
  msgstr "Visita più vecchia"
3368
 
3369
- #: ../../admin/view/wp-slimstat-reports.php:657
3370
  msgid "No visits"
3371
  msgstr "Nessuna visita"
3372
 
3373
- #: ../../admin/view/wp-slimstat-reports.php:670
3374
- #: ../../admin/view/wp-slimstat-reports.php:773
3375
  msgid ""
3376
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
3377
  "time the tracking code is executed."
3378
  msgstr ""
3379
 
3380
- #: ../../admin/view/wp-slimstat-reports.php:672
3381
  msgid "How many pages have been visited on average during the current period."
3382
  msgstr ""
3383
 
3384
- #: ../../admin/view/wp-slimstat-reports.php:673
3385
- #: ../../admin/view/wp-slimstat-reports.php:1053
3386
- msgid "Avg Pageviews"
3387
  msgstr "Media accessi"
3388
 
3389
- #: ../../admin/view/wp-slimstat-reports.php:674
3390
  msgid ""
3391
  "Visitors who landed on your site after searching for a keyword on Google, "
3392
  "Yahoo, etc."
3393
  msgstr ""
3394
 
3395
- #: ../../admin/view/wp-slimstat-reports.php:675
3396
  msgid "From Search Results"
3397
  msgstr "Da risultati di ricerca"
3398
 
3399
- #: ../../admin/view/wp-slimstat-reports.php:676
3400
  msgid ""
3401
  "Used to differentiate between multiple requests to download a file from one "
3402
  "internet address (IP) and requests originating from many distinct addresses"
3403
  msgstr ""
3404
 
3405
- #: ../../admin/view/wp-slimstat-reports.php:677
3406
- #: ../../admin/view/wp-slimstat-reports.php:693
3407
- #: ../../admin/view/wp-slimstat-reports.php:1040
3408
- #: ../../admin/view/wp-slimstat-reports.php:1044
3409
- #: ../../admin/view/wp-slimstat-reports.php:1048
3410
  msgid "Unique IPs"
3411
  msgstr "IP unici"
3412
 
3413
- #: ../../admin/view/wp-slimstat-reports.php:678
3414
  msgid "Last 5 minutes"
3415
  msgstr "Ultimi 5 minuti"
3416
 
3417
- #: ../../admin/view/wp-slimstat-reports.php:679
3418
  msgid "Last 30 minutes"
3419
  msgstr "Ultimi 30 minuti"
3420
 
3421
- #: ../../admin/view/wp-slimstat-reports.php:690
3422
  msgid ""
3423
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3424
  "multiple times if they perform multiple visits."
@@ -3426,16 +3434,16 @@ msgstr ""
3426
  "Una visita è una sessione di al massimo 30 minuti. I visitatori di ritorno "
3427
  "sono contati più volte se effettuano visite multiple."
3428
 
3429
- #: ../../admin/view/wp-slimstat-reports.php:691
3430
  msgid "Human visits"
3431
  msgstr "Visitatori umani"
3432
 
3433
- #: ../../admin/view/wp-slimstat-reports.php:692
3434
  msgid "It includes only traffic generated by human visitors."
3435
  msgstr ""
3436
 
3437
- #: ../../admin/view/wp-slimstat-reports.php:694
3438
- #: ../../admin/view/wp-slimstat-reports.php:785
3439
  msgid ""
3440
  "Percentage of single-page visits, i.e. visits in which the person left your "
3441
  "site from the entrance page."
@@ -3443,86 +3451,86 @@ msgstr ""
3443
  "Percentuale di visite di una sola pagina, ovvero visite in cui la persona ha "
3444
  "lasciato il sito dopo aver visto la pagina su cui è arrivata."
3445
 
3446
- #: ../../admin/view/wp-slimstat-reports.php:695
3447
  msgid "Bounce rate"
3448
  msgstr "Tasso di rimbalzo"
3449
 
3450
- #: ../../admin/view/wp-slimstat-reports.php:696
3451
  msgid "Visitors who had previously left a comment on your blog."
3452
  msgstr ""
3453
 
3454
- #: ../../admin/view/wp-slimstat-reports.php:697
3455
  msgid "Known visitors"
3456
  msgstr "Visitatori noti"
3457
 
3458
- #: ../../admin/view/wp-slimstat-reports.php:698
3459
  msgid "Human users who visited your site only once."
3460
  msgstr ""
3461
 
3462
- #: ../../admin/view/wp-slimstat-reports.php:699
3463
  msgid "New visitors"
3464
  msgstr "Nuovi visitatori"
3465
 
3466
- #: ../../admin/view/wp-slimstat-reports.php:700
3467
  msgid "Bots"
3468
  msgstr "Bot"
3469
 
3470
- #: ../../admin/view/wp-slimstat-reports.php:701
3471
  msgid "Pages per visit"
3472
  msgstr "Pagine per visita"
3473
 
3474
- #: ../../admin/view/wp-slimstat-reports.php:702
3475
- #: ../../admin/view/wp-slimstat-reports.php:1053
3476
  msgid "Longest visit"
3477
  msgstr "Visita più lunga"
3478
 
3479
- #: ../../admin/view/wp-slimstat-reports.php:702
3480
  msgid "hits"
3481
  msgstr "visite"
3482
 
3483
- #: ../../admin/view/wp-slimstat-reports.php:720
3484
  msgid "0 - 30 seconds"
3485
  msgstr "0 - 30 secondi"
3486
 
3487
- #: ../../admin/view/wp-slimstat-reports.php:726
3488
  msgid "31 - 60 seconds"
3489
  msgstr "31 - 60 secondi"
3490
 
3491
- #: ../../admin/view/wp-slimstat-reports.php:732
3492
  msgid "1 - 3 minutes"
3493
  msgstr "1 -3 minuti"
3494
 
3495
- #: ../../admin/view/wp-slimstat-reports.php:738
3496
  msgid "3 - 5 minutes"
3497
  msgstr "3 - 5 minuti"
3498
 
3499
- #: ../../admin/view/wp-slimstat-reports.php:744
3500
  msgid "5 - 7 minutes"
3501
  msgstr "5 - 7 minuti"
3502
 
3503
- #: ../../admin/view/wp-slimstat-reports.php:750
3504
  msgid "7 - 10 minutes"
3505
  msgstr "7 - 10 minuti"
3506
 
3507
- #: ../../admin/view/wp-slimstat-reports.php:756
3508
  msgid "More than 10 minutes"
3509
  msgstr "Più di 10 minuti"
3510
 
3511
- #: ../../admin/view/wp-slimstat-reports.php:765
3512
  msgid "Average time on site"
3513
  msgstr "Tempo medio sul sito"
3514
 
3515
- #: ../../admin/view/wp-slimstat-reports.php:775
3516
  msgid ""
3517
  "A referrer (or referring site) is the site that a visitor previously visited "
3518
  "before following a link to your site."
3519
  msgstr ""
3520
 
3521
- #: ../../admin/view/wp-slimstat-reports.php:776
3522
  msgid "Unique Referrers"
3523
  msgstr "Sorgenti uniche"
3524
 
3525
- #: ../../admin/view/wp-slimstat-reports.php:777
3526
  msgid ""
3527
  "Visitors who visited the site by typing the URL directly into their browser. "
3528
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -3530,21 +3538,21 @@ msgid ""
3530
  "documents that don't include tracking variables."
3531
  msgstr ""
3532
 
3533
- #: ../../admin/view/wp-slimstat-reports.php:778
3534
  msgid "Direct Pageviews"
3535
  msgstr "Accessi diretti"
3536
 
3537
- #: ../../admin/view/wp-slimstat-reports.php:779
3538
  msgid ""
3539
  "Visitors who came to your site via searches on Google or some other search "
3540
  "engine."
3541
  msgstr ""
3542
 
3543
- #: ../../admin/view/wp-slimstat-reports.php:780
3544
  msgid "From a search result"
3545
  msgstr "Da una ricerca"
3546
 
3547
- #: ../../admin/view/wp-slimstat-reports.php:781
3548
  msgid ""
3549
  "The first page that a user views during a session. This is also known as the "
3550
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -3552,1258 +3560,1269 @@ msgid ""
3552
  "a landing page."
3553
  msgstr ""
3554
 
3555
- #: ../../admin/view/wp-slimstat-reports.php:782
3556
  msgid "Unique Landing Pages"
3557
  msgstr "Pagine d'ingresso uniche"
3558
 
3559
- #: ../../admin/view/wp-slimstat-reports.php:783
3560
  msgid "Number of single-page visits to your site over the selected period."
3561
  msgstr ""
3562
  "Questo campo identifica il numero di visite di una sola pagina nel periodo "
3563
  "selezionato."
3564
 
3565
- #: ../../admin/view/wp-slimstat-reports.php:784
3566
  msgid "Bounce Pages"
3567
  msgstr "Tasso di rimbalzo"
3568
 
3569
- #: ../../admin/view/wp-slimstat-reports.php:786
3570
  msgid "New Visitors Rate"
3571
  msgstr "% Nuovi visitatori"
3572
 
3573
- #: ../../admin/view/wp-slimstat-reports.php:787
3574
  msgid ""
3575
  "Visitors who visited the site in the last 5 minutes coming from a search "
3576
  "engine."
3577
  msgstr ""
3578
 
3579
- #: ../../admin/view/wp-slimstat-reports.php:788
3580
  msgid "Currently from search engines"
3581
  msgstr "Attualmente da motori di ricerca"
3582
 
3583
- #: ../../admin/view/wp-slimstat-reports.php:856
3584
  msgid "Number of pages in your site included in Google's index."
3585
  msgstr ""
3586
 
3587
- #: ../../admin/view/wp-slimstat-reports.php:857
3588
  msgid "Google Index"
3589
  msgstr "Indice Google"
3590
 
3591
- #: ../../admin/view/wp-slimstat-reports.php:858
3592
  msgid "Number of pages, according to Google, that link back to your site."
3593
  msgstr ""
3594
 
3595
- #: ../../admin/view/wp-slimstat-reports.php:859
3596
  msgid "Google Backlinks"
3597
  msgstr ""
3598
 
3599
- #: ../../admin/view/wp-slimstat-reports.php:860
3600
  msgid ""
3601
  "How many times the Facebook Like button has been approximately clicked on "
3602
  "your site."
3603
  msgstr ""
3604
 
3605
- #: ../../admin/view/wp-slimstat-reports.php:861
3606
  msgid "Facebook Likes"
3607
  msgstr ""
3608
 
3609
- #: ../../admin/view/wp-slimstat-reports.php:862
3610
  msgid ""
3611
  "How many times your site has been shared by someone on the social network."
3612
  msgstr ""
3613
 
3614
- #: ../../admin/view/wp-slimstat-reports.php:863
3615
  msgid "Facebook Shares"
3616
  msgstr ""
3617
 
3618
- #: ../../admin/view/wp-slimstat-reports.php:864
3619
  msgid "How many times links to your website have been clicked on Facebook."
3620
  msgstr ""
3621
 
3622
- #: ../../admin/view/wp-slimstat-reports.php:865
3623
  msgid "Facebook Clicks"
3624
  msgstr "Click da Facebook"
3625
 
3626
- #: ../../admin/view/wp-slimstat-reports.php:866
3627
  msgid ""
3628
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3629
  "traffic data."
3630
  msgstr ""
3631
 
3632
- #: ../../admin/view/wp-slimstat-reports.php:867
3633
  msgid "Alexa World Rank"
3634
  msgstr ""
3635
 
3636
- #: ../../admin/view/wp-slimstat-reports.php:868
3637
  msgid "Alexa Country Rank"
3638
  msgstr ""
3639
 
3640
- #: ../../admin/view/wp-slimstat-reports.php:869
3641
  msgid "Alexa Popularity"
3642
  msgstr ""
3643
 
3644
- #: ../../admin/view/wp-slimstat-reports.php:882
3645
  msgid "Bing Test"
3646
  msgstr ""
3647
 
3648
- #: ../../admin/view/wp-slimstat-reports.php:883
3649
  msgid "AntiVirus Scan"
3650
  msgstr ""
3651
 
3652
- #: ../../admin/view/wp-slimstat-reports.php:884
3653
  msgid "Google Bot Test"
3654
  msgstr ""
3655
 
3656
- #: ../../admin/view/wp-slimstat-reports.php:885
3657
  msgid "Scan for Hostile Strings"
3658
  msgstr ""
3659
 
3660
- #: ../../admin/view/wp-slimstat-reports.php:886
3661
  msgid "Generic Web Bot test"
3662
  msgstr ""
3663
 
3664
- #: ../../admin/view/wp-slimstat-reports.php:887
3665
  msgid "Google Safe Browsing List"
3666
  msgstr ""
3667
 
3668
- #: ../../admin/view/wp-slimstat-reports.php:888
3669
  msgid "Hostile External Links"
3670
  msgstr ""
3671
 
3672
- #: ../../admin/view/wp-slimstat-reports.php:889
3673
  msgid "Other Treats"
3674
  msgstr "Altre minacce"
3675
 
3676
- #: ../../admin/view/wp-slimstat-reports.php:902
3677
  msgid "Passed"
3678
  msgstr ""
3679
 
3680
- #: ../../admin/view/wp-slimstat-reports.php:902
3681
  msgid "At Risk"
3682
  msgstr ""
3683
 
3684
- #: ../../admin/view/wp-slimstat-reports.php:905
3685
  msgid "Timed Out"
3686
  msgstr ""
3687
 
3688
  # Unknown
3689
- #: ../../admin/view/wp-slimstat-reports.php:919
3690
  msgid "c-xx"
3691
  msgstr "Sconosciuto"
3692
 
3693
  # Afghanistan
3694
- #: ../../admin/view/wp-slimstat-reports.php:919
3695
  msgid "c-af"
3696
  msgstr "Afghanistan"
3697
 
3698
- #: ../../admin/view/wp-slimstat-reports.php:919
3699
  msgid "c-ax"
3700
  msgstr "Isole Aland"
3701
 
3702
  # Albania
3703
- #: ../../admin/view/wp-slimstat-reports.php:919
3704
  msgid "c-al"
3705
  msgstr "Albania"
3706
 
3707
  # Algeria
3708
- #: ../../admin/view/wp-slimstat-reports.php:919
3709
  msgid "c-dz"
3710
  msgstr "Algeria"
3711
 
3712
  # Andorra, Principality of
3713
- #: ../../admin/view/wp-slimstat-reports.php:919
3714
  msgid "c-ad"
3715
  msgstr "Principato di Andorra"
3716
 
3717
  # Angola
3718
- #: ../../admin/view/wp-slimstat-reports.php:919
3719
  msgid "c-ao"
3720
  msgstr "Angola"
3721
 
3722
  # Anguilla
3723
- #: ../../admin/view/wp-slimstat-reports.php:919
3724
  msgid "c-ai"
3725
  msgstr "Anguilla"
3726
 
3727
  # Antigua and Barbuda
3728
- #: ../../admin/view/wp-slimstat-reports.php:919
3729
  msgid "c-ag"
3730
  msgstr "Antigua e Barbuda"
3731
 
3732
  # Argentina
3733
- #: ../../admin/view/wp-slimstat-reports.php:919
3734
  msgid "c-ar"
3735
  msgstr "Argentina"
3736
 
3737
  # Armenia
3738
- #: ../../admin/view/wp-slimstat-reports.php:919
3739
  msgid "c-am"
3740
  msgstr "Armenia"
3741
 
3742
  # Aruba
3743
- #: ../../admin/view/wp-slimstat-reports.php:919
3744
  msgid "c-aw"
3745
  msgstr "Aruba"
3746
 
3747
  # Australia
3748
- #: ../../admin/view/wp-slimstat-reports.php:919
3749
  msgid "c-au"
3750
  msgstr "Australia"
3751
 
3752
  # Austria
3753
- #: ../../admin/view/wp-slimstat-reports.php:919
3754
  msgid "c-at"
3755
  msgstr "Austria"
3756
 
3757
  # Azerbaidjan
3758
- #: ../../admin/view/wp-slimstat-reports.php:919
3759
  msgid "c-az"
3760
  msgstr "Azerbaidjan"
3761
 
3762
  # Bahamas
3763
- #: ../../admin/view/wp-slimstat-reports.php:919
3764
  msgid "c-bs"
3765
  msgstr "Bahamas"
3766
 
3767
  # Bahrain
3768
- #: ../../admin/view/wp-slimstat-reports.php:919
3769
  msgid "c-bh"
3770
  msgstr "Bahrain"
3771
 
3772
  # Bangladesh
3773
- #: ../../admin/view/wp-slimstat-reports.php:919
3774
  msgid "c-bd"
3775
  msgstr "Bangladesh"
3776
 
3777
  # Barbados
3778
- #: ../../admin/view/wp-slimstat-reports.php:919
3779
  msgid "c-bb"
3780
  msgstr "Barbados"
3781
 
3782
  # Belarus
3783
- #: ../../admin/view/wp-slimstat-reports.php:919
3784
  msgid "c-by"
3785
  msgstr "Belarus"
3786
 
3787
  # Belgium
3788
- #: ../../admin/view/wp-slimstat-reports.php:919
3789
  msgid "c-be"
3790
  msgstr "Belgio"
3791
 
3792
  # Belize
3793
- #: ../../admin/view/wp-slimstat-reports.php:919
3794
  msgid "c-bz"
3795
  msgstr "Belize"
3796
 
3797
  # Benin
3798
- #: ../../admin/view/wp-slimstat-reports.php:919
3799
  msgid "c-bj"
3800
  msgstr "Benin"
3801
 
3802
  # Bermuda
3803
- #: ../../admin/view/wp-slimstat-reports.php:919
3804
  msgid "c-bm"
3805
  msgstr "Bermuda"
3806
 
3807
  # Bhutan
3808
- #: ../../admin/view/wp-slimstat-reports.php:919
3809
  msgid "c-bt"
3810
  msgstr "Bhutan"
3811
 
3812
  # Bolivia
3813
- #: ../../admin/view/wp-slimstat-reports.php:919
3814
  msgid "c-bo"
3815
  msgstr "Bolivia"
3816
 
3817
  # Bosnia-Herzegovina
3818
- #: ../../admin/view/wp-slimstat-reports.php:919
3819
  msgid "c-ba"
3820
  msgstr "Bosnia-Erzegovina"
3821
 
3822
  # Botswana
3823
- #: ../../admin/view/wp-slimstat-reports.php:919
3824
  msgid "c-bw"
3825
  msgstr "Botswana"
3826
 
3827
  # Brazil
3828
- #: ../../admin/view/wp-slimstat-reports.php:919
3829
  msgid "c-br"
3830
  msgstr "Brasile"
3831
 
3832
  # Brunei Darussalam
3833
- #: ../../admin/view/wp-slimstat-reports.php:919
3834
  msgid "c-bn"
3835
  msgstr "Brunei"
3836
 
3837
  # Bulgaria
3838
- #: ../../admin/view/wp-slimstat-reports.php:919
3839
  msgid "c-bg"
3840
  msgstr "Bulgaria"
3841
 
3842
  # Burkina Faso
3843
- #: ../../admin/view/wp-slimstat-reports.php:919
3844
  msgid "c-bf"
3845
  msgstr "Burkina Faso"
3846
 
3847
  # Burundi
3848
- #: ../../admin/view/wp-slimstat-reports.php:919
3849
  msgid "c-bi"
3850
  msgstr "Burundi"
3851
 
3852
  # Cambodia, Kingdom of
3853
- #: ../../admin/view/wp-slimstat-reports.php:919
3854
  msgid "c-kh"
3855
  msgstr "Cambodiaf"
3856
 
3857
  # Cameroon
3858
- #: ../../admin/view/wp-slimstat-reports.php:919
3859
  msgid "c-cm"
3860
  msgstr "Camerun"
3861
 
3862
  # Canada
3863
- #: ../../admin/view/wp-slimstat-reports.php:919
3864
  msgid "c-ca"
3865
  msgstr "Canada"
3866
 
3867
  # Cape Verde
3868
- #: ../../admin/view/wp-slimstat-reports.php:919
3869
  msgid "c-cv"
3870
  msgstr "Capo Verde"
3871
 
3872
  # Cayman Islands
3873
- #: ../../admin/view/wp-slimstat-reports.php:919
3874
  msgid "c-ky"
3875
  msgstr "Isole Cayman"
3876
 
3877
  # Central African Republic
3878
- #: ../../admin/view/wp-slimstat-reports.php:919
3879
  msgid "c-cf"
3880
  msgstr "Repubblica Centro-africana"
3881
 
3882
  # Chad
3883
- #: ../../admin/view/wp-slimstat-reports.php:919
3884
  msgid "c-td"
3885
  msgstr "Chad"
3886
 
3887
  # Chile
3888
- #: ../../admin/view/wp-slimstat-reports.php:919
3889
  msgid "c-cl"
3890
  msgstr "Cile"
3891
 
3892
  # China
3893
- #: ../../admin/view/wp-slimstat-reports.php:919
3894
  msgid "c-cn"
3895
  msgstr "Cina"
3896
 
3897
  # Colombia
3898
- #: ../../admin/view/wp-slimstat-reports.php:919
3899
  msgid "c-co"
3900
  msgstr "Colombia"
3901
 
3902
  # Comoros
3903
- #: ../../admin/view/wp-slimstat-reports.php:919
3904
  msgid "c-km"
3905
  msgstr "Comore"
3906
 
3907
  # Congo
3908
- #: ../../admin/view/wp-slimstat-reports.php:919
3909
  msgid "c-cg"
3910
  msgstr "Congo"
3911
 
3912
  # Congo, The Democratic Republic of the
3913
- #: ../../admin/view/wp-slimstat-reports.php:919
3914
  msgid "c-cd"
3915
  msgstr "Repubblica del Congo"
3916
 
3917
  # Costa Rica
3918
- #: ../../admin/view/wp-slimstat-reports.php:919
3919
  msgid "c-cr"
3920
  msgstr "Costa Rica"
3921
 
3922
  # Ivory Coast (Cote D'Ivoire)
3923
- #: ../../admin/view/wp-slimstat-reports.php:919
3924
  msgid "c-ci"
3925
  msgstr "Costa d'avorio"
3926
 
3927
  # Croatia
3928
- #: ../../admin/view/wp-slimstat-reports.php:919
3929
  msgid "c-hr"
3930
  msgstr "Croazia"
3931
 
3932
  # Cuba
3933
- #: ../../admin/view/wp-slimstat-reports.php:919
3934
  msgid "c-cu"
3935
  msgstr "Cuba"
3936
 
3937
  # Cyprus
3938
- #: ../../admin/view/wp-slimstat-reports.php:919
3939
  msgid "c-cy"
3940
  msgstr "Cipro"
3941
 
3942
  # Czech Republic
3943
- #: ../../admin/view/wp-slimstat-reports.php:919
3944
  msgid "c-cz"
3945
  msgstr "Repubblica Ceca"
3946
 
3947
  # Denmark
3948
- #: ../../admin/view/wp-slimstat-reports.php:919
3949
  msgid "c-dk"
3950
  msgstr "Danimarca"
3951
 
3952
  # Djibouti
3953
- #: ../../admin/view/wp-slimstat-reports.php:919
3954
  msgid "c-dj"
3955
  msgstr "Gibbuti"
3956
 
3957
  # Dominica
3958
- #: ../../admin/view/wp-slimstat-reports.php:919
3959
  msgid "c-dm"
3960
  msgstr "Dominica"
3961
 
3962
  # Dominican Republic
3963
- #: ../../admin/view/wp-slimstat-reports.php:919
3964
  msgid "c-do"
3965
  msgstr "Repubblica Dominicana"
3966
 
3967
  # Ecuador
3968
- #: ../../admin/view/wp-slimstat-reports.php:919
3969
  msgid "c-ec"
3970
  msgstr "Ecuador"
3971
 
3972
  # Egypt
3973
- #: ../../admin/view/wp-slimstat-reports.php:919
3974
  msgid "c-eg"
3975
  msgstr "Egitto"
3976
 
3977
  # El Salvador
3978
- #: ../../admin/view/wp-slimstat-reports.php:919
3979
  msgid "c-sv"
3980
  msgstr "El Salvador"
3981
 
3982
  # Equatorial Guinea
3983
- #: ../../admin/view/wp-slimstat-reports.php:919
3984
  msgid "c-gq"
3985
  msgstr "Guinea equatoriale"
3986
 
3987
  # Eritrea
3988
- #: ../../admin/view/wp-slimstat-reports.php:919
3989
  msgid "c-er"
3990
  msgstr "Eritrea"
3991
 
3992
  # Estonia
3993
- #: ../../admin/view/wp-slimstat-reports.php:919
3994
  msgid "c-ee"
3995
  msgstr "Estonia"
3996
 
3997
  # Ethiopia
3998
- #: ../../admin/view/wp-slimstat-reports.php:919
3999
  msgid "c-et"
4000
  msgstr "Etiopia"
4001
 
4002
  # Faroe Islands
4003
- #: ../../admin/view/wp-slimstat-reports.php:919
4004
  msgid "c-fo"
4005
  msgstr "Isole Faroe"
4006
 
4007
  # Falkland Islands
4008
- #: ../../admin/view/wp-slimstat-reports.php:919
4009
  msgid "c-fk"
4010
  msgstr "Isole Falkland"
4011
 
4012
  # Fiji
4013
- #: ../../admin/view/wp-slimstat-reports.php:919
4014
  msgid "c-fj"
4015
  msgstr "Fiji"
4016
 
4017
  # Finland
4018
- #: ../../admin/view/wp-slimstat-reports.php:919
4019
  msgid "c-fi"
4020
  msgstr "Finlandia"
4021
 
4022
  # France
4023
- #: ../../admin/view/wp-slimstat-reports.php:919
4024
  msgid "c-fr"
4025
  msgstr "Francia"
4026
 
4027
  # French Guyana
4028
- #: ../../admin/view/wp-slimstat-reports.php:919
4029
  msgid "c-gf"
4030
  msgstr "Guyana francese"
4031
 
4032
  # Gabon
4033
- #: ../../admin/view/wp-slimstat-reports.php:919
4034
  msgid "c-ga"
4035
  msgstr "Gabon"
4036
 
4037
  # Gambia
4038
- #: ../../admin/view/wp-slimstat-reports.php:919
4039
  msgid "c-gm"
4040
  msgstr "Gambia"
4041
 
4042
  # Georgia
4043
- #: ../../admin/view/wp-slimstat-reports.php:919
4044
  msgid "c-ge"
4045
  msgstr "Georgia"
4046
 
4047
  # Germany
4048
- #: ../../admin/view/wp-slimstat-reports.php:919
4049
  msgid "c-de"
4050
  msgstr "Germania"
4051
 
4052
  # Ghana
4053
- #: ../../admin/view/wp-slimstat-reports.php:919
4054
  msgid "c-gh"
4055
  msgstr "Ghana"
4056
 
4057
  # Greece
4058
- #: ../../admin/view/wp-slimstat-reports.php:919
4059
  msgid "c-gr"
4060
  msgstr "Grecia"
4061
 
4062
  # Greenland
4063
- #: ../../admin/view/wp-slimstat-reports.php:919
4064
  msgid "c-gl"
4065
  msgstr "Groenlandia"
4066
 
4067
  # Grenada
4068
- #: ../../admin/view/wp-slimstat-reports.php:919
4069
  msgid "c-gd"
4070
  msgstr "Grenada"
4071
 
4072
  # Guadeloupe (French)
4073
- #: ../../admin/view/wp-slimstat-reports.php:919
4074
  msgid "c-gp"
4075
  msgstr "Guadalupe"
4076
 
4077
  # Guatemala
4078
- #: ../../admin/view/wp-slimstat-reports.php:919
4079
  msgid "c-gt"
4080
  msgstr "Guatemala"
4081
 
4082
  # Guinea
4083
- #: ../../admin/view/wp-slimstat-reports.php:919
4084
  msgid "c-gn"
4085
  msgstr "Guinea"
4086
 
4087
  # Guinea Bissau
4088
- #: ../../admin/view/wp-slimstat-reports.php:919
4089
  msgid "c-gw"
4090
  msgstr "Guinea Bissau"
4091
 
4092
  # Guyana
4093
- #: ../../admin/view/wp-slimstat-reports.php:919
4094
  msgid "c-gy"
4095
  msgstr "Guyana"
4096
 
4097
  # Haiti
4098
- #: ../../admin/view/wp-slimstat-reports.php:919
4099
  msgid "c-ht"
4100
  msgstr "Haiti"
4101
 
4102
  # Honduras
4103
- #: ../../admin/view/wp-slimstat-reports.php:919
4104
  msgid "c-hn"
4105
  msgstr "Honduras"
4106
 
4107
  # Hong Kong
4108
- #: ../../admin/view/wp-slimstat-reports.php:919
4109
  msgid "c-hk"
4110
  msgstr "Hong Kong"
4111
 
4112
  # Hungary
4113
- #: ../../admin/view/wp-slimstat-reports.php:919
4114
  msgid "c-hu"
4115
  msgstr "Ungheria"
4116
 
4117
  # Iceland
4118
- #: ../../admin/view/wp-slimstat-reports.php:919
4119
  msgid "c-is"
4120
  msgstr "Islanda"
4121
 
4122
  # India
4123
- #: ../../admin/view/wp-slimstat-reports.php:919
4124
  msgid "c-in"
4125
  msgstr "India"
4126
 
4127
  # Indonesia
4128
- #: ../../admin/view/wp-slimstat-reports.php:919
4129
  msgid "c-id"
4130
  msgstr "Indonesia"
4131
 
4132
  # Iran
4133
- #: ../../admin/view/wp-slimstat-reports.php:919
4134
  msgid "c-ir"
4135
  msgstr "Iran"
4136
 
4137
  # Iraq
4138
- #: ../../admin/view/wp-slimstat-reports.php:919
4139
  msgid "c-iq"
4140
  msgstr "Iraq"
4141
 
4142
  # Ireland
4143
- #: ../../admin/view/wp-slimstat-reports.php:919
4144
  msgid "c-ie"
4145
  msgstr "Irlanda"
4146
 
4147
  # Israel
4148
- #: ../../admin/view/wp-slimstat-reports.php:919
4149
  msgid "c-il"
4150
  msgstr "Israele"
4151
 
4152
  # Italy
4153
- #: ../../admin/view/wp-slimstat-reports.php:919
4154
  msgid "c-it"
4155
  msgstr "Italia"
4156
 
4157
  # Jamaica
4158
- #: ../../admin/view/wp-slimstat-reports.php:919
4159
  msgid "c-jm"
4160
  msgstr "Giamaica"
4161
 
4162
  # Japan
4163
- #: ../../admin/view/wp-slimstat-reports.php:919
4164
  msgid "c-jp"
4165
  msgstr "Giappone"
4166
 
4167
  # Jordan
4168
- #: ../../admin/view/wp-slimstat-reports.php:919
4169
  msgid "c-jo"
4170
  msgstr "Giordania"
4171
 
4172
  # Kazakhstan
4173
- #: ../../admin/view/wp-slimstat-reports.php:919
4174
  msgid "c-kz"
4175
  msgstr "Kazakistan"
4176
 
4177
  # Kenya
4178
- #: ../../admin/view/wp-slimstat-reports.php:919
4179
  msgid "c-ke"
4180
  msgstr "Kenia"
4181
 
4182
  # Nauru
4183
- #: ../../admin/view/wp-slimstat-reports.php:919
4184
  msgid "c-nr"
4185
  msgstr "Nauru"
4186
 
4187
  # North Korea
4188
- #: ../../admin/view/wp-slimstat-reports.php:919
4189
  msgid "c-kp"
4190
  msgstr "Corea del Nord"
4191
 
4192
  # South Korea
4193
- #: ../../admin/view/wp-slimstat-reports.php:919
4194
  msgid "c-kr"
4195
  msgstr "Corea del Sud"
4196
 
4197
- #: ../../admin/view/wp-slimstat-reports.php:919
4198
  msgid "c-kv"
4199
  msgstr "Kossovo"
4200
 
4201
  # Kuwait
4202
- #: ../../admin/view/wp-slimstat-reports.php:919
4203
  msgid "c-kw"
4204
  msgstr "Kuwait"
4205
 
4206
  # Kyrgyz Republic (Kyrgyzstan)
4207
- #: ../../admin/view/wp-slimstat-reports.php:919
4208
  msgid "c-kg"
4209
  msgstr "Kyrgyzstan"
4210
 
4211
  # Laos
4212
- #: ../../admin/view/wp-slimstat-reports.php:919
4213
  msgid "c-la"
4214
  msgstr "Laos"
4215
 
4216
  # Latvia
4217
- #: ../../admin/view/wp-slimstat-reports.php:919
4218
  msgid "c-lv"
4219
  msgstr "Latvia"
4220
 
4221
  # Lebanon
4222
- #: ../../admin/view/wp-slimstat-reports.php:919
4223
  msgid "c-lb"
4224
  msgstr "Libano"
4225
 
4226
  # Lesotho
4227
- #: ../../admin/view/wp-slimstat-reports.php:919
4228
  msgid "c-ls"
4229
  msgstr "Lesotho"
4230
 
4231
  # Liberia
4232
- #: ../../admin/view/wp-slimstat-reports.php:919
4233
  msgid "c-lr"
4234
  msgstr "Liberia"
4235
 
4236
  # Libya
4237
- #: ../../admin/view/wp-slimstat-reports.php:919
4238
  msgid "c-ly"
4239
  msgstr "Libia"
4240
 
4241
  # Liechtenstein
4242
- #: ../../admin/view/wp-slimstat-reports.php:919
4243
  msgid "c-li"
4244
  msgstr "Liechtenstein"
4245
 
4246
  # Lithuania
4247
- #: ../../admin/view/wp-slimstat-reports.php:919
4248
  msgid "c-lt"
4249
  msgstr "Lituania"
4250
 
4251
  # Luxembourg
4252
- #: ../../admin/view/wp-slimstat-reports.php:919
4253
  msgid "c-lu"
4254
  msgstr "Lussemburgo"
4255
 
4256
  # Macedonia
4257
- #: ../../admin/view/wp-slimstat-reports.php:919
4258
  msgid "c-mk"
4259
  msgstr "Macedonia"
4260
 
4261
  # Madagascar
4262
- #: ../../admin/view/wp-slimstat-reports.php:919
4263
  msgid "c-mg"
4264
  msgstr "Madagascar"
4265
 
4266
  # Malawi
4267
- #: ../../admin/view/wp-slimstat-reports.php:919
4268
  msgid "c-mw"
4269
  msgstr "Malawi"
4270
 
4271
  # Malaysia
4272
- #: ../../admin/view/wp-slimstat-reports.php:919
4273
  msgid "c-my"
4274
  msgstr "Malesia"
4275
 
4276
  # Mali
4277
- #: ../../admin/view/wp-slimstat-reports.php:919
4278
  msgid "c-ml"
4279
  msgstr "Mali"
4280
 
4281
  # Malta
4282
- #: ../../admin/view/wp-slimstat-reports.php:919
4283
  msgid "c-mt"
4284
  msgstr "Malta"
4285
 
4286
  # Martinique (French)
4287
- #: ../../admin/view/wp-slimstat-reports.php:919
4288
  msgid "c-mq"
4289
  msgstr "Martinica"
4290
 
4291
  # Mauritania
4292
- #: ../../admin/view/wp-slimstat-reports.php:919
4293
  msgid "c-mr"
4294
  msgstr "Mauritania"
4295
 
4296
  # Mauritius
4297
- #: ../../admin/view/wp-slimstat-reports.php:919
4298
  msgid "c-mu"
4299
  msgstr "Mauritius"
4300
 
4301
  # Mexico
4302
- #: ../../admin/view/wp-slimstat-reports.php:919
4303
  msgid "c-mx"
4304
  msgstr "Messico"
4305
 
4306
  # Moldavia
4307
- #: ../../admin/view/wp-slimstat-reports.php:919
4308
  msgid "c-md"
4309
  msgstr "Moldavia"
4310
 
4311
  # Mongolia
4312
- #: ../../admin/view/wp-slimstat-reports.php:919
4313
  msgid "c-mn"
4314
  msgstr "Mongolia"
4315
 
4316
- #: ../../admin/view/wp-slimstat-reports.php:919
4317
  msgid "c-me"
4318
  msgstr "Montenegro"
4319
 
4320
  # Montserrat
4321
- #: ../../admin/view/wp-slimstat-reports.php:919
4322
  msgid "c-ms"
4323
  msgstr "Montserrat"
4324
 
4325
  # Morocco
4326
- #: ../../admin/view/wp-slimstat-reports.php:919
4327
  msgid "c-ma"
4328
  msgstr "Marocco"
4329
 
4330
  # Mozambique
4331
- #: ../../admin/view/wp-slimstat-reports.php:919
4332
  msgid "c-mz"
4333
  msgstr "Mozambico"
4334
 
4335
  # Myanmar
4336
- #: ../../admin/view/wp-slimstat-reports.php:919
4337
  msgid "c-mm"
4338
  msgstr "Birmania"
4339
 
4340
  # Namibia
4341
- #: ../../admin/view/wp-slimstat-reports.php:919
4342
  msgid "c-na"
4343
  msgstr "Namibia"
4344
 
4345
  # Nepal
4346
- #: ../../admin/view/wp-slimstat-reports.php:919
4347
  msgid "c-np"
4348
  msgstr "Nepal"
4349
 
4350
  # Netherlands
4351
- #: ../../admin/view/wp-slimstat-reports.php:919
4352
  msgid "c-nl"
4353
  msgstr "Olanda"
4354
 
4355
  # New Caledonia (French)
4356
- #: ../../admin/view/wp-slimstat-reports.php:919
4357
  msgid "c-nc"
4358
  msgstr "Nuova Caledonia"
4359
 
4360
  # New Zealand
4361
- #: ../../admin/view/wp-slimstat-reports.php:919
4362
  msgid "c-nz"
4363
  msgstr "Nuova Zelanda"
4364
 
4365
  # Nicaragua
4366
- #: ../../admin/view/wp-slimstat-reports.php:919
4367
  msgid "c-ni"
4368
  msgstr "Nicaragua"
4369
 
4370
  # Niger
4371
- #: ../../admin/view/wp-slimstat-reports.php:919
4372
  msgid "c-ne"
4373
  msgstr "Nigeria"
4374
 
4375
  # Nigeria
4376
- #: ../../admin/view/wp-slimstat-reports.php:919
4377
  msgid "c-ng"
4378
  msgstr "Nigeria"
4379
 
4380
  # Norway
4381
- #: ../../admin/view/wp-slimstat-reports.php:919
4382
  msgid "c-no"
4383
  msgstr "Norvegia"
4384
 
4385
  # Oman
4386
- #: ../../admin/view/wp-slimstat-reports.php:919
4387
  msgid "c-om"
4388
  msgstr "Oman"
4389
 
4390
  # Pakistan
4391
- #: ../../admin/view/wp-slimstat-reports.php:919
4392
  msgid "c-pk"
4393
  msgstr "Pakistan"
4394
 
4395
  # Palau
4396
- #: ../../admin/view/wp-slimstat-reports.php:919
4397
  msgid "c-pw"
4398
  msgstr "Palau"
4399
 
4400
- #: ../../admin/view/wp-slimstat-reports.php:919
4401
  msgid "c-ps"
4402
  msgstr "Stato della Palestina"
4403
 
4404
  # Panama
4405
- #: ../../admin/view/wp-slimstat-reports.php:919
4406
  msgid "c-pa"
4407
  msgstr "Panama"
4408
 
4409
  # Papua New Guinea
4410
- #: ../../admin/view/wp-slimstat-reports.php:919
4411
  msgid "c-pg"
4412
  msgstr "Papua Nuova Guinea"
4413
 
4414
  # Paraguay
4415
- #: ../../admin/view/wp-slimstat-reports.php:919
4416
  msgid "c-py"
4417
  msgstr "Paraguay"
4418
 
4419
  # Peru
4420
- #: ../../admin/view/wp-slimstat-reports.php:919
4421
  msgid "c-pe"
4422
  msgstr "Peru"
4423
 
4424
  # Philippines
4425
- #: ../../admin/view/wp-slimstat-reports.php:919
4426
  msgid "c-ph"
4427
  msgstr "Filippine"
4428
 
4429
  # Poland
4430
- #: ../../admin/view/wp-slimstat-reports.php:919
4431
  msgid "c-pl"
4432
  msgstr "Polonia"
4433
 
4434
  # Portugal
4435
- #: ../../admin/view/wp-slimstat-reports.php:919
4436
  msgid "c-pt"
4437
  msgstr "Portogallo"
4438
 
4439
  # Puerto Rico
4440
- #: ../../admin/view/wp-slimstat-reports.php:919
4441
  msgid "c-pr"
4442
  msgstr "Porto Rico"
4443
 
4444
  # Qatar
4445
- #: ../../admin/view/wp-slimstat-reports.php:919
4446
  msgid "c-qa"
4447
  msgstr "Qatar"
4448
 
4449
  # Reunion (French)
4450
- #: ../../admin/view/wp-slimstat-reports.php:919
4451
  msgid "c-re"
4452
  msgstr "Reunion"
4453
 
4454
  # Romania
4455
- #: ../../admin/view/wp-slimstat-reports.php:919
4456
  msgid "c-ro"
4457
  msgstr "Romania"
4458
 
4459
  # Russian Federation
4460
- #: ../../admin/view/wp-slimstat-reports.php:919
4461
  msgid "c-ru"
4462
  msgstr "Russia"
4463
 
4464
  # Rwanda
4465
- #: ../../admin/view/wp-slimstat-reports.php:919
4466
  msgid "c-rw"
4467
  msgstr "Ruanda"
4468
 
4469
  # Saint Kitts & Nevis Anguilla
4470
- #: ../../admin/view/wp-slimstat-reports.php:919
4471
  msgid "c-kn"
4472
  msgstr "Saint Kitts e Nevis Anguilla"
4473
 
4474
  # Saint Lucia
4475
- #: ../../admin/view/wp-slimstat-reports.php:919
4476
  msgid "c-lc"
4477
  msgstr "Santa Lucia"
4478
 
4479
- #: ../../admin/view/wp-slimstat-reports.php:919
4480
  msgid "c-mf"
4481
  msgstr "San Martino"
4482
 
4483
  # Saint Vincent & Grenadines
4484
- #: ../../admin/view/wp-slimstat-reports.php:919
4485
  msgid "c-vc"
4486
  msgstr "Saint Vincent e Grenadines"
4487
 
4488
  # Samoa
4489
- #: ../../admin/view/wp-slimstat-reports.php:919
4490
  msgid "c-ws"
4491
  msgstr "Samoa"
4492
 
4493
  # Saint Tome (Sao Tome) and Principe
4494
- #: ../../admin/view/wp-slimstat-reports.php:919
4495
  msgid "c-st"
4496
  msgstr "Sao Tome"
4497
 
4498
  # Saudi Arabia
4499
- #: ../../admin/view/wp-slimstat-reports.php:919
4500
  msgid "c-sa"
4501
  msgstr "Arabia Saudita"
4502
 
4503
  # Senegal
4504
- #: ../../admin/view/wp-slimstat-reports.php:919
4505
  msgid "c-sn"
4506
  msgstr "Senegal"
4507
 
4508
- #: ../../admin/view/wp-slimstat-reports.php:919
4509
  msgid "c-rs"
4510
  msgstr "Serbia"
4511
 
4512
  # Sierra Leone
4513
- #: ../../admin/view/wp-slimstat-reports.php:919
4514
  msgid "c-sl"
4515
  msgstr "Sierra Leone"
4516
 
4517
  # Singapore
4518
- #: ../../admin/view/wp-slimstat-reports.php:919
4519
  msgid "c-sg"
4520
  msgstr "Singapore"
4521
 
4522
  # Slovak Republic
4523
- #: ../../admin/view/wp-slimstat-reports.php:919
4524
  msgid "c-sk"
4525
  msgstr "Slovacchia"
4526
 
4527
  # Slovenia
4528
- #: ../../admin/view/wp-slimstat-reports.php:919
4529
  msgid "c-si"
4530
  msgstr "Slovenia"
4531
 
4532
  # Solomon Islands
4533
- #: ../../admin/view/wp-slimstat-reports.php:919
4534
  msgid "c-sb"
4535
  msgstr "Isole Salomone"
4536
 
4537
  # Somalia
4538
- #: ../../admin/view/wp-slimstat-reports.php:919
4539
  msgid "c-so"
4540
  msgstr "Somalia"
4541
 
4542
  # South Africa
4543
- #: ../../admin/view/wp-slimstat-reports.php:919
4544
  msgid "c-za"
4545
  msgstr "Sud Africa"
4546
 
4547
  # S. Georgia & S. Sandwich Isls.
4548
- #: ../../admin/view/wp-slimstat-reports.php:919
4549
  msgid "c-gs"
4550
  msgstr "S. Georgia e S. Sandwich"
4551
 
4552
  # Spain
4553
- #: ../../admin/view/wp-slimstat-reports.php:919
4554
  msgid "c-es"
4555
  msgstr "Spagna"
4556
 
4557
  # Sri Lanka
4558
- #: ../../admin/view/wp-slimstat-reports.php:919
4559
  msgid "c-lk"
4560
  msgstr "Sri Lanka"
4561
 
 
 
 
 
4562
  # Sudan
4563
- #: ../../admin/view/wp-slimstat-reports.php:919
4564
  msgid "c-sd"
4565
  msgstr "Sudan"
4566
 
4567
- #: ../../admin/view/wp-slimstat-reports.php:919
4568
  msgid "c-ss"
4569
  msgstr "Sud Sudan"
4570
 
4571
  # Suriname
4572
- #: ../../admin/view/wp-slimstat-reports.php:919
4573
  msgid "c-sr"
4574
  msgstr "Suriname"
4575
 
4576
  # Svalbard and Jan Mayen Islands
4577
- #: ../../admin/view/wp-slimstat-reports.php:919
4578
  msgid "c-sj"
4579
  msgstr "Svalbard and Jan Mayen"
4580
 
4581
  # Swaziland
4582
- #: ../../admin/view/wp-slimstat-reports.php:919
4583
  msgid "c-sz"
4584
  msgstr "Swaziland"
4585
 
4586
  # Sweden
4587
- #: ../../admin/view/wp-slimstat-reports.php:919
4588
  msgid "c-se"
4589
  msgstr "Svezia"
4590
 
4591
  # Switzerland
4592
- #: ../../admin/view/wp-slimstat-reports.php:919
4593
  msgid "c-ch"
4594
  msgstr "Svizzera"
4595
 
4596
  # Syria
4597
- #: ../../admin/view/wp-slimstat-reports.php:919
4598
  msgid "c-sy"
4599
  msgstr "Siria"
4600
 
4601
  # Taiwan
4602
- #: ../../admin/view/wp-slimstat-reports.php:919
4603
  msgid "c-tw"
4604
  msgstr "Taiwan"
4605
 
4606
  # Tadjikistan
4607
- #: ../../admin/view/wp-slimstat-reports.php:919
4608
  msgid "c-tj"
4609
  msgstr "Tadjikistan"
4610
 
4611
  # Tanzania
4612
- #: ../../admin/view/wp-slimstat-reports.php:919
4613
  msgid "c-tz"
4614
  msgstr "Tanzania"
4615
 
4616
  # Thailand
4617
- #: ../../admin/view/wp-slimstat-reports.php:919
4618
  msgid "c-th"
4619
  msgstr "Tailandia"
4620
 
4621
- #: ../../admin/view/wp-slimstat-reports.php:919
4622
  msgid "c-tl"
4623
  msgstr "Timor-Leste"
4624
 
4625
  # Togo
4626
- #: ../../admin/view/wp-slimstat-reports.php:919
4627
  msgid "c-tg"
4628
  msgstr "Togo"
4629
 
4630
  # Tonga
4631
- #: ../../admin/view/wp-slimstat-reports.php:919
4632
  msgid "c-to"
4633
  msgstr "Tonga"
4634
 
4635
  # Trinidad and Tobago
4636
- #: ../../admin/view/wp-slimstat-reports.php:919
4637
  msgid "c-tt"
4638
  msgstr "Trinidad e Tobago"
4639
 
4640
  # Tunisia
4641
- #: ../../admin/view/wp-slimstat-reports.php:919
4642
  msgid "c-tn"
4643
  msgstr "Tunisia"
4644
 
4645
  # Turkey
4646
- #: ../../admin/view/wp-slimstat-reports.php:919
4647
  msgid "c-tr"
4648
  msgstr "Turchia"
4649
 
4650
  # Turkmenistan
4651
- #: ../../admin/view/wp-slimstat-reports.php:919
4652
  msgid "c-tm"
4653
  msgstr "Turkmenistan"
4654
 
4655
  # Turks and Caicos Islands
4656
- #: ../../admin/view/wp-slimstat-reports.php:919
4657
  msgid "c-tc"
4658
  msgstr "Isole Caicos"
4659
 
4660
  # Uganda
4661
- #: ../../admin/view/wp-slimstat-reports.php:919
4662
  msgid "c-ug"
4663
  msgstr "Uganda"
4664
 
4665
  # Ukraine
4666
- #: ../../admin/view/wp-slimstat-reports.php:919
4667
  msgid "c-ua"
4668
  msgstr "Ucraina"
4669
 
4670
  # United Arab Emirates
4671
- #: ../../admin/view/wp-slimstat-reports.php:919
4672
  msgid "c-ae"
4673
  msgstr "Emirati Arabi"
4674
 
4675
  # Great Britain
4676
- #: ../../admin/view/wp-slimstat-reports.php:919
4677
  msgid "c-gb"
4678
  msgstr "Gran Bretagna"
4679
 
4680
  # United States
4681
- #: ../../admin/view/wp-slimstat-reports.php:919
4682
  msgid "c-us"
4683
  msgstr "Stati Uniti"
4684
 
4685
  # Uruguay
4686
- #: ../../admin/view/wp-slimstat-reports.php:919
4687
  msgid "c-uy"
4688
  msgstr "Uruguay"
4689
 
4690
  # Uzbekistan
4691
- #: ../../admin/view/wp-slimstat-reports.php:919
4692
  msgid "c-uz"
4693
  msgstr "Uzbekistan"
4694
 
4695
  # Vanuatu
4696
- #: ../../admin/view/wp-slimstat-reports.php:919
4697
  msgid "c-vu"
4698
  msgstr "Vanuatu"
4699
 
4700
  # Venezuela
4701
- #: ../../admin/view/wp-slimstat-reports.php:919
4702
  msgid "c-ve"
4703
  msgstr "Venezuela"
4704
 
4705
  # Vietnam
4706
- #: ../../admin/view/wp-slimstat-reports.php:919
4707
  msgid "c-vn"
4708
  msgstr "Vietnam"
4709
 
4710
  # Virgin Islands (British)
4711
- #: ../../admin/view/wp-slimstat-reports.php:919
4712
  msgid "c-vg"
4713
  msgstr "Isole Vergini (GB)"
4714
 
4715
  # Virgin Islands (USA)
4716
- #: ../../admin/view/wp-slimstat-reports.php:919
4717
  msgid "c-vi"
4718
  msgstr "Isole Vergini (USA)"
4719
 
4720
  # Western Sahara
4721
- #: ../../admin/view/wp-slimstat-reports.php:919
4722
  msgid "c-eh"
4723
  msgstr "Sahara Occ"
4724
 
4725
  # Yemen
4726
- #: ../../admin/view/wp-slimstat-reports.php:919
4727
  msgid "c-ye"
4728
  msgstr "Yemen"
4729
 
4730
  # Zambia
4731
- #: ../../admin/view/wp-slimstat-reports.php:919
4732
  msgid "c-zm"
4733
  msgstr "Zambia"
4734
 
4735
  # Zimbabwe
4736
- #: ../../admin/view/wp-slimstat-reports.php:919
4737
  msgid "c-zw"
4738
  msgstr "Zimbabwe"
4739
 
4740
- #: ../../admin/view/wp-slimstat-reports.php:919
4741
  msgid "c-gg"
4742
  msgstr "Guernsey"
4743
 
4744
- #: ../../admin/view/wp-slimstat-reports.php:919
4745
  msgid "c-je"
4746
  msgstr "Jersey"
4747
 
4748
- #: ../../admin/view/wp-slimstat-reports.php:919
4749
  msgid "c-im"
4750
  msgstr "Isola di Man"
4751
 
4752
  # Maldives
4753
- #: ../../admin/view/wp-slimstat-reports.php:919
4754
  msgid "c-mv"
4755
  msgstr "Maldive"
4756
 
4757
- #: ../../admin/view/wp-slimstat-reports.php:920
4758
  msgid "c-eu"
4759
- msgstr ""
4760
 
4761
- #: ../../admin/view/wp-slimstat-reports.php:1008
4762
  msgid ""
4763
  "This value includes not only posts, but also custom post types, regardless "
4764
  "of their status"
4765
  msgstr ""
4766
 
4767
- #: ../../admin/view/wp-slimstat-reports.php:1009
4768
  msgid "Content Items"
4769
  msgstr "Articoli"
4770
 
4771
- #: ../../admin/view/wp-slimstat-reports.php:1010
4772
  msgid "Total Comments"
4773
  msgstr ""
4774
 
4775
- #: ../../admin/view/wp-slimstat-reports.php:1011
4776
  msgid "Pingbacks"
4777
- msgstr ""
4778
 
4779
- #: ../../admin/view/wp-slimstat-reports.php:1012
4780
  msgid "Trackbacks"
4781
- msgstr ""
4782
 
4783
- #: ../../admin/view/wp-slimstat-reports.php:1013
4784
  msgid "Longest Post (ID)"
4785
  msgstr "ID del post pi&ugrave; lungo"
4786
 
4787
- #: ../../admin/view/wp-slimstat-reports.php:1014
4788
  msgid "Longest Comment (ID)"
4789
  msgstr ""
4790
 
4791
- #: ../../admin/view/wp-slimstat-reports.php:1015
4792
  msgid "Avg Comments Per Post"
4793
  msgstr "Commenti medi per post"
4794
 
4795
- #: ../../admin/view/wp-slimstat-reports.php:1016
4796
  msgid "Avg Posts Per Day"
4797
  msgstr ""
4798
 
4799
- #: ../../admin/view/wp-slimstat-reports.php:1044
4800
  msgid "Visits"
4801
  msgstr "Visite"
4802
 
4803
- #: ../../admin/view/wp-slimstat-reports.php:1048
4804
  msgid "Domains"
4805
  msgstr "Domini"
4806
 
 
 
 
 
 
 
 
4807
  #~ msgid "Stats"
4808
  #~ msgstr "Statistiche"
4809
 
@@ -4862,9 +4881,6 @@ msgstr "Domini"
4862
  #~ msgid "Store Data For"
4863
  #~ msgstr "Conserva dati per"
4864
 
4865
- #~ msgid "Limit Results to"
4866
- #~ msgstr "Limite risultati"
4867
-
4868
  #, fuzzy
4869
  #~ msgid "Right Now Rows"
4870
  #~ msgstr "In questo momento"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
+ "POT-Creation-Date: 2014-01-29 21:33-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"
8
  "Language: it\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: ../..\n"
16
 
17
+ #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:402
18
+ #: ../../admin/view/wp-slimstat-reports.php:31
19
  msgid "Right Now"
20
  msgstr "In questo momento"
21
 
22
+ #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:403
23
+ #: ../../admin/wp-slimstat-admin.php:420
24
+ #: ../../admin/view/wp-slimstat-reports.php:32
25
  msgid "Overview"
26
  msgstr "Panoramica"
27
 
28
+ #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:404
29
+ #: ../../admin/wp-slimstat-admin.php:421
30
+ #: ../../admin/view/wp-slimstat-reports.php:33
31
  msgid "Visitors"
32
  msgstr "Visitatori"
33
 
34
+ #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:405
35
+ #: ../../admin/wp-slimstat-admin.php:422
36
+ #: ../../admin/view/wp-slimstat-reports.php:34
37
  msgid "Content"
38
  msgstr "Contenuto"
39
 
40
+ #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:406
41
+ #: ../../admin/wp-slimstat-admin.php:423 ../../admin/view/index.php:168
42
+ #: ../../admin/view/wp-slimstat-reports.php:35
43
  msgid "Traffic Sources"
44
  msgstr "Sorgenti di traffico"
45
 
46
+ #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:407
47
+ #: ../../admin/wp-slimstat-admin.php:424
48
+ #: ../../admin/view/wp-slimstat-reports.php:36
49
+ #: ../../admin/view/wp-slimstat-reports.php:105
50
  msgid "World Map"
51
  msgstr "Mappa"
52
 
53
+ #: ../../wp-slimstat.php:1183 ../../admin/wp-slimstat-admin.php:408
54
+ #: ../../admin/wp-slimstat-admin.php:425
55
+ #: ../../admin/view/wp-slimstat-reports.php:37
56
  msgid "Custom Reports"
57
  msgstr "Rapporti personali"
58
 
59
+ #: ../../wp-slimstat.php:1184 ../../admin/wp-slimstat-admin.php:409
60
+ #: ../../admin/wp-slimstat-admin.php:426 ../../admin/config/addons.php:29
61
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:228
62
  msgid "Add-ons"
63
  msgstr "Add-ons"
64
 
65
+ #: ../../wp-slimstat.php:1187 ../../admin/wp-slimstat-admin.php:455
66
+ #: ../../admin/wp-slimstat-admin.php:458 ../../admin/wp-slimstat-admin.php:502
67
+ #: ../../admin/wp-slimstat-admin.php:505 ../../admin/config/index.php:14
68
+ #: ../../admin/config/index.php:135
69
  msgid "Settings"
70
  msgstr "Impostazioni"
71
 
72
+ #: ../../admin/wp-slimstat-admin.php:401 ../../admin/wp-slimstat-admin.php:413
73
+ #: ../../admin/wp-slimstat-admin.php:416
74
  msgid "SlimStat"
75
  msgstr "SlimStat"
76
 
77
+ #: ../../admin/wp-slimstat-admin.php:519
78
  msgid "Pageviews in the last 365 days"
79
+ msgstr "Accessi negli ultimi 365 giorni"
80
 
81
+ #: ../../admin/wp-slimstat-admin.php:543
82
  msgid "Show on screen"
83
  msgstr "Scegli cosa visualizzare"
84
 
85
+ #: ../../admin/wp-slimstat-admin.php:571
86
+ msgid "Hide this notice"
87
+ msgstr "Nascondi questa nota"
88
+
89
+ #: ../../admin/wp-slimstat-admin.php:598
90
  msgid "There was an error updating the following options:"
91
  msgstr ""
92
  "Si è verificato un errore nell'aggiornamento delle seguente impostazioni:"
93
 
94
+ #: ../../admin/wp-slimstat-admin.php:601
95
  msgid "Your settings have been successfully updated."
96
  msgstr "Le impostazioni sono state salvate con successo."
97
 
98
+ #: ../../admin/wp-slimstat-admin.php:624
99
  msgid "Save Changes"
100
  msgstr "Salva"
101
 
102
+ #: ../../admin/wp-slimstat-admin.php:643
103
  msgid "Yes"
104
  msgstr "Si"
105
 
106
+ #: ../../admin/wp-slimstat-admin.php:644
107
+ #: ../../admin/view/wp-slimstat-reports.php:747
108
  msgid "No"
109
  msgstr "No"
110
 
111
+ #: ../../admin/wp-slimstat-admin.php:684
112
  msgid ""
113
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
114
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
120
  "favore, <a target=\"_blank\" href=\"http://wordpress.org/extend/plugins/wp-"
121
  "slimstat/faq/\">leggi le FAQ</a> per ulteriori informazioni."
122
 
123
+ #: ../../admin/wp-slimstat-admin.php:704
124
  msgid "Definitions"
125
  msgstr "Definizioni"
126
 
127
+ #: ../../admin/wp-slimstat-admin.php:707
128
  msgid "Pageview"
129
  msgstr "Accesso"
130
 
131
+ #: ../../admin/wp-slimstat-admin.php:707
132
  msgid ""
133
  "A request to load a single HTML file (\"page\"). This should be contrasted "
134
  "with a \"hit\", which refers to a request for any file from a web server. WP "
135
  "SlimStat logs a pageview each time the tracking code is executed"
136
  msgstr ""
137
 
138
+ #: ../../admin/wp-slimstat-admin.php:708
139
  msgid "(Human) Visit"
140
  msgstr "Visita umana"
141
 
142
+ #: ../../admin/wp-slimstat-admin.php:708
143
  msgid ""
144
  "A period of interaction between a visitor's browser and your website, ending "
145
  "when the browser is closed or when the user has been inactive on that site "
146
  "for 30 minutes"
147
  msgstr ""
148
 
149
+ #: ../../admin/wp-slimstat-admin.php:709 ../../admin/view/index.php:140
150
+ #: ../../admin/view/right-now.php:149
151
  msgid "Known Visitor"
152
  msgstr "Visitatore noto"
153
 
154
+ #: ../../admin/wp-slimstat-admin.php:709
155
  msgid ""
156
  "Any user who has left a comment on your blog, and is thus identified by "
157
  "Wordpress as a returning visitor"
158
  msgstr ""
159
 
160
+ #: ../../admin/wp-slimstat-admin.php:710
161
  msgid "Unique IP"
162
  msgstr "IP unico"
163
 
164
+ #: ../../admin/wp-slimstat-admin.php:710
165
  msgid ""
166
  "Used to differentiate between multiple requests to download a file from one "
167
  "internet address (IP) and requests originating from many distinct addresses; "
169
  "from, it is useful, but not perfect"
170
  msgstr ""
171
 
172
+ #: ../../admin/wp-slimstat-admin.php:711 ../../admin/wp-slimstat-admin.php:753
173
+ #: ../../admin/view/right-now.php:99 ../../admin/view/wp-slimstat-db.php:79
 
174
  msgid "Originating IP"
175
  msgstr "IP originante"
176
 
177
+ #: ../../admin/wp-slimstat-admin.php:711
178
  msgid ""
179
  "the originating IP address of a client connecting to a web server through an "
180
  "HTTP proxy or load balancer"
181
  msgstr ""
182
 
183
+ #: ../../admin/wp-slimstat-admin.php:712
184
  msgid "Direct Traffic"
185
  msgstr "Visita diretta"
186
 
187
+ #: ../../admin/wp-slimstat-admin.php:712
188
  msgid ""
189
  "All those people showing up to your Web site by typing in the URL of your "
190
  "Web site coming or from a bookmark; some people also call this \"default "
191
  "traffic\" or \"ambient traffic\""
192
  msgstr ""
193
 
194
+ #: ../../admin/wp-slimstat-admin.php:713
195
  msgid "Search Engine"
196
  msgstr "Motore di ricerca"
197
 
198
+ #: ../../admin/wp-slimstat-admin.php:713
199
  msgid ""
200
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
201
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
202
  msgstr ""
203
 
204
+ #: ../../admin/wp-slimstat-admin.php:714 ../../admin/wp-slimstat-admin.php:730
205
+ #: ../../admin/view/right-now.php:128 ../../admin/view/wp-slimstat-db.php:60
 
206
  msgid "Search Terms"
207
  msgstr "Parole chiave"
208
 
209
+ #: ../../admin/wp-slimstat-admin.php:714 ../../admin/wp-slimstat-admin.php:730
210
  msgid "Keywords used by your visitors to find your website on a search engine"
211
  msgstr "Parole chiave che i visitatori hanno inserito nel motore di ricerca"
212
 
213
+ #: ../../admin/wp-slimstat-admin.php:715
214
  msgid "SERP"
215
  msgstr "SERP"
216
 
217
+ #: ../../admin/wp-slimstat-admin.php:715
218
  msgid ""
219
  "Short for search engine results page, the Web page that a search engine "
220
  "returns with the results of its search. The value shown represents your rank "
221
  "(or position) within that list of results"
222
  msgstr ""
223
 
224
+ #: ../../admin/wp-slimstat-admin.php:716
225
+ #: ../../admin/view/wp-slimstat-db.php:72
226
  msgid "User Agent"
227
  msgstr "Browser"
228
 
229
+ #: ../../admin/wp-slimstat-admin.php:716
230
  msgid ""
231
  "Any program used for accessing a website; this includes browsers, robots, "
232
  "spiders and any other program that was used to retrieve information from the "
233
  "site"
234
  msgstr ""
235
 
236
+ #: ../../admin/wp-slimstat-admin.php:717
237
+ #: ../../admin/view/wp-slimstat-db.php:76
238
  msgid "Outbound Link"
239
  msgstr "Link in uscita"
240
 
241
+ #: ../../admin/wp-slimstat-admin.php:717
242
  msgid ""
243
  "A link from one domain to another is said to be outbound from its source "
244
  "anchor and inbound to its target. This report lists all the links to other "
245
  "websites followed by your visitors."
246
  msgstr ""
247
 
248
+ #: ../../admin/wp-slimstat-admin.php:724
249
  msgid "Basic Filters"
250
  msgstr "Filtri di base"
251
 
252
+ #: ../../admin/wp-slimstat-admin.php:727
253
+ #: ../../admin/view/wp-slimstat-db.php:57
254
  msgid "Browser"
255
  msgstr "Browser"
256
 
257
+ #: ../../admin/wp-slimstat-admin.php:727
258
  msgid "User agent (Firefox, Chrome, ...)"
259
  msgstr "programma usato per visualizzare il sito (Firefox, Chrome, ...)"
260
 
261
+ #: ../../admin/wp-slimstat-admin.php:728
262
+ #: ../../admin/view/wp-slimstat-db.php:58
263
+ #: ../../admin/view/wp-slimstat-reports.php:469
264
  msgid "Country Code"
265
  msgstr "Codice Paese"
266
 
267
+ #: ../../admin/wp-slimstat-admin.php:728
268
  msgid "2-letter code (us, ru, de, it, ...)"
269
  msgstr "codice di 2 lettere (us, ru, it, de, ...)"
270
 
271
+ #: ../../admin/wp-slimstat-admin.php:729
272
  msgid "IP"
273
  msgstr "IP"
274
 
275
+ #: ../../admin/wp-slimstat-admin.php:729
276
  msgid "Visitor's public IP address"
277
  msgstr "indirizzo pubblico del visitatore"
278
 
279
+ #: ../../admin/wp-slimstat-admin.php:731
280
+ #: ../../admin/view/wp-slimstat-db.php:61
281
+ #: ../../admin/view/wp-slimstat-reports.php:481
282
  msgid "Language Code"
283
  msgstr "Codice Lingua"
284
 
285
+ #: ../../admin/wp-slimstat-admin.php:731
286
  msgid ""
287
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
288
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
292
  "href=\"http://msdn.microsoft.com/en-us/library/ee825488(v=cs.20).aspx"
293
  "\">pagina su linguaggi e culture</a> (prima colonna)"
294
 
295
+ #: ../../admin/wp-slimstat-admin.php:732
296
+ #: ../../admin/view/wp-slimstat-db.php:62
297
  msgid "Operating System"
298
  msgstr "Sistema operativo"
299
 
300
+ #: ../../admin/wp-slimstat-admin.php:732
301
  msgid ""
302
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
303
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
307
  "visita <a target=\"_blank\" href=\"http://php.net/manual/en/function.get-"
308
  "browser.php\">questa pagina</a>"
309
 
310
+ #: ../../admin/wp-slimstat-admin.php:733
311
+ #: ../../admin/view/wp-slimstat-db.php:63
312
  msgid "Permalink"
313
  msgstr "Permalink"
314
 
315
+ #: ../../admin/wp-slimstat-admin.php:733
316
  msgid "URL accessed on your site"
317
  msgstr "URL acceduta sul sito"
318
 
319
+ #: ../../admin/wp-slimstat-admin.php:734
320
+ #: ../../admin/view/wp-slimstat-db.php:65
321
  msgid "Referer"
322
  msgstr "Riferimento"
323
 
324
+ #: ../../admin/wp-slimstat-admin.php:734
325
  msgid "Complete address of the referrer page"
326
  msgstr "Indirizzo completo della pagina di riferimento"
327
 
328
+ #: ../../admin/wp-slimstat-admin.php:735
329
+ #: ../../admin/view/wp-slimstat-db.php:66
330
  msgid "Visitor's Name"
331
  msgstr "Nome del visitatore"
332
 
333
+ #: ../../admin/wp-slimstat-admin.php:735
334
  msgid ""
335
  "Visitors' names according to the cookie set by Wordpress after they leave a "
336
  "comment"
338
  "Nome del visitatore come impostato da Wordpress durante l'inserimento di un "
339
  "commento"
340
 
341
+ #: ../../admin/wp-slimstat-admin.php:743
342
  msgid "Advanced Filters"
343
  msgstr "Filtri avanzati"
344
 
345
+ #: ../../admin/wp-slimstat-admin.php:746
346
+ #: ../../admin/view/wp-slimstat-db.php:70
347
  msgid "Browser Version"
348
  msgstr "Versione Browser"
349
 
350
+ #: ../../admin/wp-slimstat-admin.php:746
351
  msgid "user agent version (9.0, 11, ...)"
352
  msgstr "versione del browser (9.0, 11, ...)"
353
 
354
+ #: ../../admin/wp-slimstat-admin.php:747
355
+ #: ../../admin/view/wp-slimstat-db.php:71
356
  msgid "Browser Type"
357
  msgstr "Tipo di browser"
358
 
359
+ #: ../../admin/wp-slimstat-admin.php:747
360
  msgid ""
361
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
362
  "all others"
364
  "1 = motore di ricerca, 2 = dispositivo mobile, 3 = lettore RSS, 0 = tutti "
365
  "gli altri"
366
 
367
+ #: ../../admin/wp-slimstat-admin.php:748
368
+ #: ../../admin/view/wp-slimstat-db.php:73
369
  msgid "Color Depth"
370
  msgstr "Profondità dei colori"
371
 
372
+ #: ../../admin/wp-slimstat-admin.php:748
373
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
374
  msgstr "profondit&agrave; di colore dello schermo (8, 16, 24, ...)"
375
 
376
+ #: ../../admin/wp-slimstat-admin.php:749
377
+ #: ../../admin/view/wp-slimstat-db.php:74
378
  msgid "CSS Version"
379
  msgstr "Versione CSS"
380
 
381
+ #: ../../admin/wp-slimstat-admin.php:749
382
  msgid ""
383
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
384
  "values)"
386
  "standard CSS supportato dal browser di quell'utente (1, 2, 3 ed altri valori "
387
  "interi)"
388
 
389
+ #: ../../admin/wp-slimstat-admin.php:750
390
+ #: ../../admin/view/wp-slimstat-db.php:75
391
  msgid "Pageview Attributes"
392
  msgstr "Attributi visita"
393
 
394
+ #: ../../admin/wp-slimstat-admin.php:750
395
  msgid ""
396
  "this field is set to <em>[pre]</em> if the resource has been accessed "
397
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
398
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
399
  msgstr ""
400
 
401
+ #: ../../admin/wp-slimstat-admin.php:751
402
+ #: ../../admin/view/wp-slimstat-db.php:77
403
  msgid "Post Author"
404
  msgstr "Autore articolo"
405
 
406
+ #: ../../admin/wp-slimstat-admin.php:751
407
  msgid "author associated to that post/page when the resource was accessed"
408
  msgstr "autore associato al post quando la risorsa &egrave; stata acceduta"
409
 
410
+ #: ../../admin/wp-slimstat-admin.php:752
411
+ #: ../../admin/view/wp-slimstat-db.php:78
412
  msgid "Post Category ID"
413
  msgstr "ID Categoria"
414
 
415
+ #: ../../admin/wp-slimstat-admin.php:752
416
  msgid "ID of the category/term associated to the resource, when available"
417
  msgstr "ID della categoria associata alla risorsa, se disponibile"
418
 
419
+ #: ../../admin/wp-slimstat-admin.php:753
420
  msgid "visitor's originating IP address, if available"
421
  msgstr "indirizzo IP privato del visitatore, se disponibile"
422
 
423
+ #: ../../admin/wp-slimstat-admin.php:754
424
+ #: ../../admin/view/wp-slimstat-db.php:80
425
  msgid "Resource Content Type"
426
  msgstr "Tipo di contenuto"
427
 
428
+ #: ../../admin/wp-slimstat-admin.php:754
429
  msgid ""
430
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
431
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
439
  "\"_blank\" href=\"http://codex.wordpress.org/Conditional_Tags\">Conditional "
440
  "Tag</a> del Codex"
441
 
442
+ #: ../../admin/wp-slimstat-admin.php:755
443
+ #: ../../admin/view/wp-slimstat-db.php:82
444
  msgid "Screen Resolution"
445
  msgstr "Risoluzione schermo"
446
 
447
+ #: ../../admin/wp-slimstat-admin.php:755
448
  msgid "viewport width and height (1024x768, 800x600, ...)"
449
  msgstr "dimensioni della finestra del browser (1024x768, 800x600, ...)"
450
 
451
+ #: ../../admin/wp-slimstat-admin.php:756
452
+ #: ../../admin/view/wp-slimstat-db.php:83
453
  msgid "Visit ID"
454
  msgstr "ID Visita"
455
 
456
+ #: ../../admin/wp-slimstat-admin.php:756
457
  msgid ""
458
  "generally used in conjunction with <em>is not empty</em>, identifies human "
459
  "visitors"
461
  "generalmente usato con l'operatore <em>non &egrave; vuoto</em>, identifica i "
462
  "visitatori umani"
463
 
464
+ #: ../../admin/wp-slimstat-admin.php:757
465
  msgid "Date Filters"
466
  msgstr "Filtri sulla data"
467
 
468
+ #: ../../admin/wp-slimstat-admin.php:757
469
  msgid ""
470
  "you can specify the timeframe by entering a number in the <em>interval</em> "
471
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
472
  "year=blank, interval=-1 will set a year-to-date filter)"
473
  msgstr ""
474
 
475
+ #: ../../admin/wp-slimstat-admin.php:758
476
  msgid "SERP Position"
477
  msgstr "SERP"
478
 
479
+ #: ../../admin/wp-slimstat-admin.php:758
480
  msgid ""
481
  "set the filter to Referer contains cd=N&, where N is the position you are "
482
  "looking for"
483
  msgstr ""
484
 
485
+ #: ../../admin/wp-slimstat-admin.php:767
486
  msgid ""
487
  " And for keeping an eye on your visitors with <a href=\"http://slimstat."
488
  "getused.to.it/\">WP SlimStat</a>."
518
  msgid "Description"
519
  msgstr "Definizione"
520
 
521
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:18
522
  msgid "General"
523
  msgstr "Generale"
524
 
525
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:44
526
  msgid "Views"
527
  msgstr "Viste"
528
 
529
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:64
530
  msgid "Filters"
531
  msgstr "Filtri"
532
 
533
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:128
534
  msgid "Permissions"
535
  msgstr "Permessi"
536
 
537
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:205
538
  msgid "Advanced"
539
  msgstr "Filtri avanzati"
540
 
542
  msgid "Maintenance"
543
  msgstr "Manutenzione"
544
 
545
+ #: ../../admin/config/index.php:20 ../../admin/config/index.php:207
546
  msgid "Tracker"
547
  msgstr "Sistema di tracciamento"
548
 
549
+ #: ../../admin/config/index.php:21
550
  msgid "Enable Tracking"
551
  msgstr "Attiva tracciamento"
552
 
553
+ #: ../../admin/config/index.php:21
554
  msgid ""
555
  "Turn the tracker on or off, but keep the reports accessible (which you would "
556
  "not have, if you just disabled the plugin)."
557
  msgstr ""
558
 
559
+ #: ../../admin/config/index.php:22
560
  msgid "Monitor Admin Pages"
561
  msgstr "Traccia pagine admin"
562
 
563
+ #: ../../admin/config/index.php:22
564
  msgid "Enable this option to track your users' activity within the admin."
565
  msgstr ""
566
 
567
+ #: ../../admin/config/index.php:23
568
  msgid "Enable Spy Mode"
569
  msgstr "Attiva Modo Spia"
570
 
571
+ #: ../../admin/config/index.php:23
572
  msgid ""
573
  "Collect information about screen resolutions, outbound links, downloads, "
574
  "etc. If Tracking Mode is set to Javascript, this data will be tracked "
575
  "regardless of which value you set for this option."
576
  msgstr ""
577
 
578
+ #: ../../admin/config/index.php:24
579
  msgid "Tracking Mode"
580
  msgstr "Tipo Tracciamento"
581
 
582
+ #: ../../admin/config/index.php:24
583
  msgid ""
584
  "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
585
  "Total Cache, WP SuperCache, HyperCache, etc). WP SlimStat will behave pretty "
588
  "spammers, search engines and other crawlers</strong> will not be tracked."
589
  msgstr ""
590
 
591
+ #: ../../admin/config/index.php:24
592
  msgid "Javascript"
593
  msgstr "Javascript"
594
 
595
+ #: ../../admin/config/index.php:24
596
  msgid "Server-side"
597
  msgstr "Lato server"
598
 
599
+ #: ../../admin/config/index.php:26
600
  msgid "WordPress Integration"
601
  msgstr "Integrazione con WordPress"
602
 
603
+ #: ../../admin/config/index.php:27
604
  msgid "Menu Position"
605
  msgstr "Posizione Menu"
606
 
607
+ #: ../../admin/config/index.php:27
608
  #, fuzzy
609
  msgid ""
610
  "Choose between a standalone admin menu for WP SlimStat or a drop down in the "
613
  "Ti consente di decidere se vuoi avere il menu di WP SlimStat nella "
614
  "navigazione qui a fianco o nella barra di amministrazione."
615
 
616
+ #: ../../admin/config/index.php:27
617
  msgid "Side Menu"
618
  msgstr "Navigazione laterale"
619
 
620
+ #: ../../admin/config/index.php:27
621
  msgid "Admin Bar"
622
  msgstr "Barra di amministrazione"
623
 
624
+ #: ../../admin/config/index.php:28
625
  msgid "Add Stats to Posts"
626
  msgstr "Mostra contatore in Articoli"
627
 
628
+ #: ../../admin/config/index.php:28
629
  msgid ""
630
  "Add a new column to the Edit Posts screen, with the number of hits per post."
631
  msgstr ""
632
 
633
+ #: ../../admin/config/index.php:30
634
  msgid "Database"
635
  msgstr "Database"
636
 
637
+ #: ../../admin/config/index.php:31
638
  msgid "Retain data for"
639
  msgstr "Preserva log per"
640
 
641
+ #: ../../admin/config/index.php:31
642
  msgid ""
643
  "Delete log entries older than the number of days specified here above. Enter "
644
  "<strong>0</strong> (number zero) if you want to preserve your data "
645
  "regardless of its age."
646
  msgstr ""
647
 
648
+ #: ../../admin/config/index.php:31
649
  msgid "Next clean-up on"
650
  msgstr "Prossima pulizia il"
651
 
652
+ #: ../../admin/config/index.php:31
653
  #, php-format
654
  msgid "Entries logged on or before %s will be permanently deleted."
655
  msgstr ""
656
 
657
+ #: ../../admin/config/index.php:31 ../../admin/view/index.php:77
658
+ #: ../../admin/view/wp-slimstat-db.php:90
659
+ #: ../../admin/view/wp-slimstat-reports.php:747
660
  msgid "days"
661
  msgstr "giorni"
662
 
663
+ #: ../../admin/config/index.php:46
664
  msgid "Data and Formats"
665
  msgstr "Dati e formati"
666
 
667
+ #: ../../admin/config/index.php:47
668
  msgid "Convert IP Addresses"
669
  msgstr "Converti indirizzi IP"
670
 
671
+ #: ../../admin/config/index.php:47
672
  msgid "Display provider names instead of IP addresses."
673
  msgstr ""
674
 
675
+ #: ../../admin/config/index.php:48
676
  msgid "Number Format"
677
  msgstr "Formato dei numeri"
678
 
679
+ #: ../../admin/config/index.php:48
680
  msgid ""
681
  "Choose the number format you want to use for your reports, European or "
682
  "American."
683
  msgstr ""
684
 
685
+ #: ../../admin/config/index.php:49
686
  msgid "Show Display Name"
687
  msgstr "Mostra nome completo"
688
 
689
+ #: ../../admin/config/index.php:49
690
  msgid ""
691
  "By default, users are listed by their usernames. Use this option to "
692
  "visualize their display names instead."
693
  msgstr ""
694
 
695
+ #: ../../admin/config/index.php:50
696
  msgid "Show User Agent"
697
  msgstr "Mostra user agent"
698
 
699
+ #: ../../admin/config/index.php:50
700
  msgid ""
701
  "Choose if you want to see the browser name or a complete user agent string "
702
  "when hovering on browser icons."
703
  msgstr ""
704
 
705
+ #: ../../admin/config/index.php:51
706
  msgid "Show Titles"
707
  msgstr "Mostra titoli"
708
 
709
+ #: ../../admin/config/index.php:51
710
  msgid ""
711
  "WP SlimStat converts your permalinks into post and page titles. Disable this "
712
  "feature if you need to see the URL in your reports."
713
  msgstr ""
714
 
715
+ #: ../../admin/config/index.php:53
716
  msgid "Functionality"
717
  msgstr "Funzionalit&agrave;"
718
 
719
+ #: ../../admin/config/index.php:54
720
  msgid "Asynchronous Views"
721
  msgstr "Viste asincrone"
722
 
723
+ #: ../../admin/config/index.php:54
724
  msgid ""
725
  "Load all the reports dynamically. It makes the reports render faster, but it "
726
  "increases the load on your server."
727
  msgstr ""
728
 
729
+ #: ../../admin/config/index.php:55
730
  msgid "Expand Details"
731
  msgstr "Espandi dettagli"
732
 
733
+ #: ../../admin/config/index.php:55
734
  msgid "Expand each row's details by default, insted of on mousehover."
735
  msgstr ""
736
 
737
+ #: ../../admin/config/index.php:56 ../../admin/config/index.php:60
738
  msgid "Rows to Display"
739
  msgstr "Righe da visualizzare"
740
 
741
+ #: ../../admin/config/index.php:56
742
  msgid "Specify the number of items in each report."
743
  msgstr ""
744
 
745
+ #: ../../admin/config/index.php:58
746
  msgid "Right Now Screen"
747
  msgstr "In questo momento"
748
 
749
+ #: ../../admin/config/index.php:59
750
  msgid "Live Stream"
751
  msgstr "Aggiornamento in diretta"
752
 
753
+ #: ../../admin/config/index.php:59
754
  msgid ""
755
  "Enable the Live view, which refreshes the Right Now screen every X seconds. "
756
  "Enter <strong>0</strong> (number zero) to disable this functionality."
757
  msgstr ""
758
 
759
+ #: ../../admin/config/index.php:59 ../../admin/config/index.php:210
760
  msgid "seconds"
761
  msgstr "secondi"
762
 
763
+ #: ../../admin/config/index.php:60
764
  msgid "Specify the number of items in Right Now."
765
  msgstr ""
766
 
767
+ #: ../../admin/config/index.php:61
768
  msgid "Right Now Extended"
769
  msgstr "Dettaglio informazioni"
770
 
771
+ #: ../../admin/config/index.php:61
772
  msgid ""
773
  "Choose if you want to see outbound links listed under Right Now. It might "
774
  "slow down the rendering of this report."
775
  msgstr ""
776
 
777
+ #: ../../admin/config/index.php:66
778
  msgid "Visitors and Known Users"
779
  msgstr "Visitatori ed utenti noti"
780
 
781
+ #: ../../admin/config/index.php:67
782
  msgid "Track Registered Users"
783
  msgstr "Traccia utenti"
784
 
785
+ #: ../../admin/config/index.php:67
786
  msgid "Enable this option to track logged in users."
787
  msgstr "Attiva questa opzione se vuoi tracciare gli utenti autenticati."
788
 
789
+ #: ../../admin/config/index.php:68
790
  msgid "Blacklist by Username"
791
  msgstr "Lista nera degli username"
792
 
793
+ #: ../../admin/config/index.php:68
794
  msgid ""
795
  "List all the usernames you don't want to track, separated by commas. Please "
796
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
797
  "sensitive."
798
  msgstr ""
799
 
800
+ #: ../../admin/config/index.php:69
801
  msgid "Blacklist by IP Address"
802
  msgstr "Lista nera degli indirizzi IP"
803
 
804
+ #: ../../admin/config/index.php:69
805
  msgid ""
806
  "List all the IP addresses you don't want to track, separated by commas. Each "
807
  "network <strong>must</strong> be defined using the <a href='http://en."
810
  "SlimStat may not track pageviews properly."
811
  msgstr ""
812
 
813
+ #: ../../admin/config/index.php:70
814
  msgid "Blacklist by Capability"
815
  msgstr "Lista nera delle capability"
816
 
817
+ #: ../../admin/config/index.php:70
818
  msgid ""
819
  "Users having at least one of the <a href='http://codex.wordpress.org/"
820
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
821
  "will not be tracked. Capabilities are case-insensitive."
822
  msgstr ""
823
 
824
+ #: ../../admin/config/index.php:72
825
  msgid "Profiling"
826
  msgstr "Profili"
827
 
828
+ #: ../../admin/config/index.php:73
829
  msgid "Ignore Spammers"
830
  msgstr "Ignora spam"
831
 
832
+ #: ../../admin/config/index.php:73
833
  msgid ""
834
  "Enable this option if you don't want to track visits from users identified "
835
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
837
  "database."
838
  msgstr ""
839
 
840
+ #: ../../admin/config/index.php:74
841
  msgid "Permalinks"
842
  msgstr "Permalink"
843
 
844
+ #: ../../admin/config/index.php:74
845
  msgid ""
846
  "List all the URLs on your website that you don't want to track, separated by "
847
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
852
  "case-insensitive."
853
  msgstr ""
854
 
855
+ #: ../../admin/config/index.php:75
856
  msgid "Countries"
857
  msgstr "Classifica Paesi"
858
 
859
+ #: ../../admin/config/index.php:75
860
  msgid ""
861
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
862
  "track, separated by commas."
863
  msgstr ""
864
 
865
+ #: ../../admin/config/index.php:76
866
  msgid "User Agents"
867
  msgstr "Browser"
868
 
869
+ #: ../../admin/config/index.php:76
870
  msgid ""
871
  "Browsers (user agents) you don't want to track, separated by commas. You can "
872
  "specify the browser's version adding a slash after the name (i.e. "
876
  "code> will match IE/7.0 and IE/8.0. Strings are case-insensitive."
877
  msgstr ""
878
 
879
+ #: ../../admin/config/index.php:77
880
  msgid "Referring Sites"
881
  msgstr "Domini sorgente"
882
 
883
+ #: ../../admin/config/index.php:77
884
  msgid ""
885
  "Referring URLs that you don't want to track, separated by commas: "
886
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
890
  "https://)."
891
  msgstr ""
892
 
893
+ #: ../../admin/config/index.php:79 ../../admin/config/index.php:215
894
  msgid "Miscellaneous"
895
  msgstr "Altre impostazioni"
896
 
897
+ #: ../../admin/config/index.php:80
898
  msgid "Enable Privacy Mode"
899
  msgstr "Attiva privacy"
900
 
901
+ #: ../../admin/config/index.php:80
902
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
903
  msgstr ""
904
 
905
+ #: ../../admin/config/index.php:81
906
  msgid "Ignore Prefetch Requests"
907
  msgstr "Ignora requeste prefetch"
908
 
909
+ #: ../../admin/config/index.php:81
910
  msgid ""
911
  "Prevent WP SlimStat from tracking pageviews generated by Firefox's <a "
912
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
913
  "target='_blank'>Link Prefetching functionality</a>."
914
  msgstr ""
915
 
916
+ #: ../../admin/config/index.php:97
917
  msgid "Ignore users (username not found)"
918
  msgstr "Ignora utenti (nome utente non trovato)"
919
 
920
+ #: ../../admin/config/index.php:120
921
  msgid ""
922
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
923
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
924
  msgstr ""
925
 
926
+ #: ../../admin/config/index.php:130
927
  msgid "Reports"
928
  msgstr "Rapporti"
929
 
930
+ #: ../../admin/config/index.php:131
931
  msgid "Restrict Authors"
932
  msgstr "Limita autori"
933
 
934
+ #: ../../admin/config/index.php:131
935
  msgid ""
936
  "Enable this option if you want your authours to only see stats related to "
937
  "their own content."
938
  msgstr ""
939
 
940
+ #: ../../admin/config/index.php:132 ../../admin/config/index.php:136
941
  msgid "Capability"
942
  msgstr "Capability"
943
 
944
+ #: ../../admin/config/index.php:132
945
  msgid ""
946
  "Specify the minimum <a href='http://codex.wordpress.org/"
947
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
948
+ "reports (default: <code>activate_plugins</code>). If this field is empty, "
949
+ "<strong>all your users</strong> (including subscribers) will have access to "
950
+ "the reports, unless a 'Read access' whitelist has been specified here below. "
951
+ "In this case, the list has precedence over the capability."
952
  msgstr ""
953
 
954
+ #: ../../admin/config/index.php:133 ../../admin/config/index.php:137
955
  msgid "Whitelist"
956
  msgstr "Lista bianca"
957
 
958
+ #: ../../admin/config/index.php:133
959
  msgid ""
960
  "List all the users who should have access to the reports, separated by "
961
  "commas. Administrators are implicitly allowed, so you don't need to list "
962
  "them in here. Usernames are case sensitive."
963
  msgstr ""
964
 
965
+ #: ../../admin/config/index.php:136
966
  msgid ""
967
  "Specify the minimum <a href='http://codex.wordpress.org/"
968
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
970
  "below can be used to override this option for specific users."
971
  msgstr ""
972
 
973
+ #: ../../admin/config/index.php:137
974
  msgid ""
975
  "List all the users who can edit these options, separated by commas. Please "
976
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
977
  "not forget to include yourself! Usernames are case sensitive."
978
  msgstr ""
979
 
980
+ #: ../../admin/config/index.php:153
981
  msgid "Read access: username not found"
982
+ msgstr "Accesso ai rapporti: nome utente non valido"
983
 
984
+ #: ../../admin/config/index.php:166 ../../admin/config/index.php:197
985
  msgid ""
986
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
987
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
988
  "information"
989
  msgstr ""
990
 
991
+ #: ../../admin/config/index.php:184
992
  msgid "Config access: username not found"
993
+ msgstr "Accesso alle impostazioni: nome utente non valido"
994
 
995
+ #: ../../admin/config/index.php:208
996
  msgid "Detect Smoothing"
997
  msgstr "Test smoothing"
998
 
999
+ #: ../../admin/config/index.php:208
1000
  msgid ""
1001
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
1002
  "This option required Spy Mode to be enabled."
1003
  msgstr ""
1004
 
1005
+ #: ../../admin/config/index.php:209
1006
  msgid "Track Outbound Clicks"
1007
  msgstr "Traccia link in uscita"
1008
 
1009
+ #: ../../admin/config/index.php:209
1010
  msgid ""
1011
  "Track when your visitors click on link to external websites. This option "
1012
  "required Spy Mode to be enabled."
1013
  msgstr ""
1014
 
1015
+ #: ../../admin/config/index.php:210
1016
  msgid "Session Duration"
1017
  msgstr "Durata della sessione"
1018
 
1019
+ #: ../../admin/config/index.php:210
1020
  msgid ""
1021
+ "How many seconds should a human session last? Google Analytics sets it to "
1022
+ "1800 seconds."
1023
  msgstr ""
1024
 
1025
+ #: ../../admin/config/index.php:211
1026
  msgid "Extend Session"
1027
  msgstr "Estendi sessione"
1028
 
1029
+ #: ../../admin/config/index.php:211
1030
  msgid "Extend the duration of a session each time the user visits a new page."
1031
  msgstr ""
1032
 
1033
+ #: ../../admin/config/index.php:212
1034
  msgid "Enable CDN"
1035
  msgstr "Attiva CDN"
1036
 
1037
+ #: ../../admin/config/index.php:212
1038
  msgid ""
1039
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
1040
  "by serving our tracking code from their fast and reliable network (free "
1041
  "service)."
1042
  msgstr ""
1043
 
1044
+ #: ../../admin/config/index.php:213
1045
  msgid "Extensions to Track"
1046
  msgstr "Estensioni da tracciare"
1047
 
1048
+ #: ../../admin/config/index.php:213
1049
  msgid ""
1050
  "List all the file extensions that you want to be treated as Downloads. "
1051
  "Please note that links pointing to external resources (i.e. PDFs on a "
1054
  "below."
1055
  msgstr ""
1056
 
1057
+ #: ../../admin/config/index.php:216
1058
  msgid "IP Lookup"
1059
  msgstr "Geolocalizzazione"
1060
 
1061
+ #: ../../admin/config/index.php:216
1062
  msgid "Customize the Geolocation service to be used in the reports."
1063
  msgstr ""
1064
 
1065
+ #: ../../admin/config/index.php:217
1066
  msgid "Custom CSS"
1067
  msgstr "Personalizza CSS "
1068
 
1069
+ #: ../../admin/config/index.php:217
1070
  msgid ""
1071
  "Paste here your custom stylesheet to personalize the way your reports look. "
1072
  "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1073
  "target='_blank'>Check the FAQ</a> for more information on how to use this "
1074
+ "setting."
 
 
 
 
 
 
 
 
 
 
 
 
 
1075
  msgstr ""
1076
 
1077
  #: ../../admin/config/index.php:218
1080
 
1081
  #: ../../admin/config/index.php:218
1082
  msgid ""
1083
+ "Send anonymous data about unknown user agents to our server for analysis. "
1084
+ "This allows us to contribute to the <a href='http://browscap.org/' "
1085
+ "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
1086
+ "WP SlimStat's browser detection functionality."
1087
  msgstr ""
1088
 
1089
  #: ../../admin/config/maintenance.php:20
1090
  msgid "Your WP SlimStat tables have been successfully converted to InnoDB."
1091
+ msgstr "Le tabelle di WP SlimStat sono state convertite ad InnoDB."
1092
 
1093
  #: ../../admin/config/maintenance.php:30
1094
  msgid "records deleted from your database."
1095
+ msgstr "righe cancellate dal database."
1096
 
1097
  #: ../../admin/config/maintenance.php:34
1098
  msgid "All the records were successfully deleted."
1099
+ msgstr "Tutti i dati sono stati cancellati dal database."
1100
 
1101
  #: ../../admin/config/maintenance.php:38
1102
  msgid "Your reports were successfully restored to their default arrangement."
1103
+ msgstr "I rapporti sono stati ripristinati con successo."
1104
 
1105
  #: ../../admin/config/maintenance.php:45
1106
  msgid ""
1107
  "Congrats! WP SlimStat is now optimized for <a href=\"http://www.youtube.com/"
1108
  "watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
1109
  msgstr ""
1110
+ "Congratulazioni. WP SlimStat &egrave; stato ottimizzato per la <a href="
1111
+ "\"http://www.youtube.com/watch?v=ygE01sOhzz0\" target=\"_blank"
1112
+ "\">velocit&agrave; smodata</a>."
1113
 
1114
  #: ../../admin/config/maintenance.php:52
1115
  msgid ""
1116
  "Indexing has been successfully disabled. Enjoy the extra database space you "
1117
  "just gained!"
1118
  msgstr ""
1119
+ "Gli indici sono stati disattivati. Goditi lo spazio extra nel tuo database "
1120
+ "che hai appena guadagnato!"
1121
 
1122
  #: ../../admin/config/maintenance.php:83
1123
  msgid "Database Information"
1196
  msgstr "non è vuoto"
1197
 
1198
  #: ../../admin/config/maintenance.php:138 ../../admin/view/index.php:32
1199
+ #: ../../admin/view/index.php:78
1200
  msgid "Apply"
1201
  msgstr "Applica"
1202
 
1203
  #: ../../admin/config/maintenance.php:139
1204
  msgid ""
1205
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1206
+ msgstr "Vuoi davvero cancellare PERMANENTEMENTE queste visite dal database?"
1207
 
1208
  #: ../../admin/config/maintenance.php:144
1209
  msgid "Empty Database"
1213
  msgid ""
1214
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1215
  "database?"
1216
+ msgstr "Vuoi davvero cancellare PER SEMPRE TUTTE LE VISITE dal database?"
1217
 
1218
  #: ../../admin/config/maintenance.php:147
1219
  msgid "Delete All Pageviews"
1570
 
1571
  # Afrikaans
1572
  #: ../../admin/lang/dynamic_strings.php:73
 
1573
  msgid "l-af-za"
1574
+ msgstr "Afrikaans (Sud Africa)"
1575
 
1576
  # Arabic/Saudi Arabia
1577
  #: ../../admin/lang/dynamic_strings.php:74
1660
 
1661
  #: ../../admin/lang/dynamic_strings.php:91
1662
  msgid "l-az"
1663
+ msgstr "Azeri"
1664
 
1665
  #: ../../admin/lang/dynamic_strings.php:92
1666
  msgid "l-az-az"
1667
+ msgstr "Russo (Azerbaijan)"
1668
 
1669
  # Belarusian
1670
  #: ../../admin/lang/dynamic_strings.php:93
1689
 
1690
  #: ../../admin/lang/dynamic_strings.php:97
1691
  msgid "l-bs-ba"
1692
+ msgstr "Bosniaco (Bosnia)"
1693
 
1694
  # Catalan
1695
  #: ../../admin/lang/dynamic_strings.php:98
1715
 
1716
  #: ../../admin/lang/dynamic_strings.php:102
1717
  msgid "l-cy"
1718
+ msgstr "Gallese"
1719
 
1720
  #: ../../admin/lang/dynamic_strings.php:103
1721
  msgid "l-cy-gb"
1722
+ msgstr "Gallese (Regno Unito)"
1723
 
1724
  # Danish
1725
  #: ../../admin/lang/dynamic_strings.php:104
1763
 
1764
  #: ../../admin/lang/dynamic_strings.php:112
1765
  msgid "l-dv"
1766
+ msgstr "Divehi"
1767
 
1768
  #: ../../admin/lang/dynamic_strings.php:113
1769
  msgid "l-dv-mv"
1770
+ msgstr "Divehi (Maldive)"
1771
 
1772
  # Greek
1773
  #: ../../admin/lang/dynamic_strings.php:114
2061
 
2062
  #: ../../admin/lang/dynamic_strings.php:170
2063
  msgid "l-gu"
2064
+ msgstr "Gujarati"
2065
 
2066
  #: ../../admin/lang/dynamic_strings.php:171
2067
  msgid "l-gu-in"
2068
+ msgstr "Gujarati (India)"
2069
 
2070
  # Hebrew
2071
  #: ../../admin/lang/dynamic_strings.php:172
2117
 
2118
  #: ../../admin/lang/dynamic_strings.php:181
2119
  msgid "l-hy"
2120
+ msgstr "Armeno"
2121
 
2122
  #: ../../admin/lang/dynamic_strings.php:182
2123
  msgid "l-hy-am"
2124
+ msgstr "Armeno (Armenia)"
2125
 
2126
  # Indonesian
2127
  #: ../../admin/lang/dynamic_strings.php:183
2172
 
2173
  #: ../../admin/lang/dynamic_strings.php:192
2174
  msgid "l-ka"
2175
+ msgstr "Georgiano"
2176
 
2177
  #: ../../admin/lang/dynamic_strings.php:193
2178
  msgid "l-ka-ge"
2179
+ msgstr "Georgiano (Georgia)"
2180
 
2181
  #: ../../admin/lang/dynamic_strings.php:194
2182
  msgid "l-kk"
2183
+ msgstr "Kazako"
2184
 
2185
  #: ../../admin/lang/dynamic_strings.php:195
2186
  msgid "l-kk-kz"
2187
+ msgstr "Kazako (Kirghizistan)"
2188
 
2189
  #: ../../admin/lang/dynamic_strings.php:196
2190
  msgid "l-kn"
2191
+ msgstr "Kannada"
2192
 
2193
  #: ../../admin/lang/dynamic_strings.php:197
2194
  msgid "l-kn-in"
2195
+ msgstr "Kannada (India)"
2196
 
2197
  # Korean
2198
  #: ../../admin/lang/dynamic_strings.php:198
2218
 
2219
  #: ../../admin/lang/dynamic_strings.php:202
2220
  msgid "l-ky"
2221
+ msgstr "Kirghizo"
2222
 
2223
  #: ../../admin/lang/dynamic_strings.php:203
2224
  msgid "l-ky-kg"
2225
+ msgstr "Kirghizo (Kirghizistan)"
2226
 
2227
  # Lithuanian
2228
  #: ../../admin/lang/dynamic_strings.php:204
2248
 
2249
  #: ../../admin/lang/dynamic_strings.php:208
2250
  msgid "l-mi"
2251
+ msgstr "Maori"
2252
 
2253
  #: ../../admin/lang/dynamic_strings.php:209
2254
  msgid "l-mi-nz"
2255
+ msgstr "Maori (Nuova Zelanda)"
2256
 
2257
  # Macedonian
2258
  #: ../../admin/lang/dynamic_strings.php:210
2267
 
2268
  #: ../../admin/lang/dynamic_strings.php:212
2269
  msgid "l-mn"
2270
+ msgstr "Mongolo"
2271
 
2272
  #: ../../admin/lang/dynamic_strings.php:213
2273
  msgid "l-mn-mn"
2274
+ msgstr "Mongolo (Mongolia)"
2275
 
2276
  #: ../../admin/lang/dynamic_strings.php:214
2277
  msgid "l-mr"
2278
+ msgstr "Marathi"
2279
 
2280
  #: ../../admin/lang/dynamic_strings.php:215
2281
  msgid "l-mr-in"
2282
+ msgstr "Marathi (India)"
2283
 
2284
  # Malaysian
2285
  #: ../../admin/lang/dynamic_strings.php:216
2311
 
2312
  #: ../../admin/lang/dynamic_strings.php:221
2313
  msgid "l-nb"
2314
+ msgstr "Norvegese"
2315
 
2316
  #: ../../admin/lang/dynamic_strings.php:222
2317
  msgid "l-nb-no"
2318
+ msgstr "Norvegese (Norvegia)"
2319
 
2320
  # Dutch
2321
  #: ../../admin/lang/dynamic_strings.php:223
2334
 
2335
  #: ../../admin/lang/dynamic_strings.php:226
2336
  msgid "l-nn-no"
2337
+ msgstr "Inglese (Norvegia)"
2338
 
2339
  #: ../../admin/lang/dynamic_strings.php:227
2340
  msgid "l-ns"
2341
+ msgstr "Northern Sotho"
2342
 
2343
  #: ../../admin/lang/dynamic_strings.php:228
2344
  msgid "l-ns-za"
2345
+ msgstr "Northern Sotho (Sud Africa)"
2346
 
2347
  #: ../../admin/lang/dynamic_strings.php:229
2348
  msgid "l-pa"
2349
+ msgstr "Punjabi"
2350
 
2351
  #: ../../admin/lang/dynamic_strings.php:230
2352
  msgid "l-pa-in"
2353
+ msgstr "Punjabi (India)"
2354
 
2355
  # Polish
2356
  #: ../../admin/lang/dynamic_strings.php:231
2364
 
2365
  #: ../../admin/lang/dynamic_strings.php:233
2366
  msgid "l-ps"
2367
+ msgstr "Pashto"
2368
 
2369
  # Spanish/Argentina
2370
  #: ../../admin/lang/dynamic_strings.php:234
2389
 
2390
  #: ../../admin/lang/dynamic_strings.php:238
2391
  msgid "l-qu"
2392
+ msgstr "Quechua"
2393
 
2394
  #: ../../admin/lang/dynamic_strings.php:239
2395
  msgid "l-qu-bo"
2396
+ msgstr "Quechua (Bolivia)"
2397
 
2398
  #: ../../admin/lang/dynamic_strings.php:240
2399
  msgid "l-qu-ec"
2400
+ msgstr "Quechua (Ecuador)"
2401
 
2402
  #: ../../admin/lang/dynamic_strings.php:241
2403
  msgid "l-qu-pe"
2404
+ msgstr "Quechua (Peru)"
2405
 
2406
  # Romanian
2407
  #: ../../admin/lang/dynamic_strings.php:242
2426
 
2427
  #: ../../admin/lang/dynamic_strings.php:246
2428
  msgid "l-sa"
2429
+ msgstr "Sanscrito"
2430
 
2431
  #: ../../admin/lang/dynamic_strings.php:247
2432
  msgid "l-sa-in"
2433
+ msgstr "Sanscrito (India)"
2434
 
2435
  #: ../../admin/lang/dynamic_strings.php:248
2436
  msgid "l-se"
2437
+ msgstr "Sami"
2438
 
2439
  #: ../../admin/lang/dynamic_strings.php:249
2440
  msgid "l-se-fi"
2441
+ msgstr "Sami (Finlandia)"
2442
 
2443
  #: ../../admin/lang/dynamic_strings.php:250
2444
  msgid "l-se-no"
2445
+ msgstr "Sami (Norvegia)"
2446
 
2447
  #: ../../admin/lang/dynamic_strings.php:251
2448
  msgid "l-se-se"
2449
+ msgstr "Sami (Svezia)"
2450
 
2451
  # Slovack
2452
  #: ../../admin/lang/dynamic_strings.php:252
2510
 
2511
  #: ../../admin/lang/dynamic_strings.php:263
2512
  msgid "l-sw"
2513
+ msgstr "Swahili"
2514
 
2515
  #: ../../admin/lang/dynamic_strings.php:264
2516
  msgid "l-sw-ke"
2517
+ msgstr "Swahili (Kenia)"
2518
 
2519
  #: ../../admin/lang/dynamic_strings.php:265
2520
  msgid "l-ta"
2521
+ msgstr "Tamil"
2522
 
2523
  #: ../../admin/lang/dynamic_strings.php:266
2524
  msgid "l-ta-in"
2525
+ msgstr "Tamil (India)"
2526
 
2527
  #: ../../admin/lang/dynamic_strings.php:267
2528
  msgid "l-te"
2529
+ msgstr "Telugu"
2530
 
2531
  #: ../../admin/lang/dynamic_strings.php:268
2532
  msgid "l-te-in"
2533
+ msgstr "Telugu (India)"
2534
 
2535
  # Thai
2536
  #: ../../admin/lang/dynamic_strings.php:269
2544
 
2545
  #: ../../admin/lang/dynamic_strings.php:271
2546
  msgid "l-tl"
2547
+ msgstr "Tagalog"
2548
 
2549
  #: ../../admin/lang/dynamic_strings.php:272
2550
  msgid "l-tl-ph"
2551
+ msgstr "Tagalog (Filippine)"
2552
 
2553
  # Tswana
2554
  #: ../../admin/lang/dynamic_strings.php:273
2573
 
2574
  #: ../../admin/lang/dynamic_strings.php:277
2575
  msgid "l-tt"
2576
+ msgstr "Tatar"
2577
 
2578
  #: ../../admin/lang/dynamic_strings.php:278
2579
  msgid "l-tt-ru"
2580
+ msgstr "Tatar (Russia)"
2581
 
2582
  #: ../../admin/lang/dynamic_strings.php:279
2583
  msgid "l-ts"
2584
+ msgstr "Tsonga"
2585
 
2586
  # Ukrainian
2587
  #: ../../admin/lang/dynamic_strings.php:280
2607
 
2608
  #: ../../admin/lang/dynamic_strings.php:284
2609
  msgid "l-uz"
2610
+ msgstr "Uzbeco"
2611
 
2612
  #: ../../admin/lang/dynamic_strings.php:285
2613
  msgid "l-uz-uz"
2614
+ msgstr "Uzbeco (Uzbekistan)"
2615
 
2616
  # Vietnamese
2617
  #: ../../admin/lang/dynamic_strings.php:286
2678
 
2679
  # Unknown
2680
  #: ../../admin/lang/dynamic_strings.php:298
2681
+ #: ../../admin/view/wp-slimstat-reports.php:482
2682
  msgid "l-"
2683
  msgstr "Sconosciuto"
2684
 
2696
  msgid "c-xy"
2697
  msgstr "IP Locale"
2698
 
2699
+ #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:768
2700
  msgid "Today"
2701
  msgstr "Oggi"
2702
 
2703
+ #: ../../admin/view/index.php:49 ../../admin/view/wp-slimstat-reports.php:769
2704
  msgid "Yesterday"
2705
  msgstr "Ieri"
2706
 
 
 
 
 
2707
  #: ../../admin/view/index.php:50
2708
+ msgid "Last 7 Days"
2709
+ msgstr "Ultimi 7 giorni"
2710
 
2711
  #: ../../admin/view/index.php:51
2712
+ msgid "Last 60 Days"
2713
+ msgstr "Ultimi 60 giorni"
2714
+
2715
+ #: ../../admin/view/index.php:52
2716
  msgid "Last 90 Days"
2717
  msgstr "Ultimi 90 giorni"
2718
 
2719
+ #: ../../admin/view/index.php:53
2720
+ msgid "This Year So Far"
2721
  msgstr "Anno Corrente"
2722
 
2723
+ #: ../../admin/view/index.php:54
2724
  msgid "Date Range"
2725
  msgstr "Filtra per Data"
2726
 
2727
+ #: ../../admin/view/index.php:56 ../../admin/view/wp-slimstat-db.php:87
2728
  msgid "Day"
2729
  msgstr "Giorno"
2730
 
2731
+ #: ../../admin/view/index.php:66 ../../admin/view/wp-slimstat-db.php:88
2732
  msgid "Month"
2733
  msgstr "Mese"
2734
 
2735
+ #: ../../admin/view/index.php:75 ../../admin/view/wp-slimstat-db.php:89
2736
  msgid "Year"
2737
  msgstr "Anno"
2738
 
2739
+ #: ../../admin/view/index.php:80
2740
+ msgid "Reset Filters"
2741
+ msgstr "Rimuovi filtri"
2742
+
2743
+ #: ../../admin/view/index.php:117
2744
  msgid "Your report here"
2745
  msgstr "Le tue statistiche qui"
2746
 
2747
+ #: ../../admin/view/index.php:119
2748
  msgid ""
2749
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
2750
  "Just write a new plugin that retrieves the desired information from the "
2759
  "il <a href=\"http://wordpress.org/tags/wp-slimstat?forum_id=10\" target="
2760
  "\"_blank\">forum di supporto</a>."
2761
 
2762
+ #: ../../admin/view/index.php:133 ../../admin/view/wp-slimstat-reports.php:759
2763
+ #: ../../admin/view/wp-slimstat-reports.php:861
2764
+ #: ../../admin/view/wp-slimstat-reports.php:1145
2765
  msgid "Pageviews"
2766
  msgstr "Accessi"
2767
 
2768
+ #: ../../admin/view/index.php:136
2769
  msgid ""
2770
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2771
  "WP SlimStat leverages this information to identify returning visitors. "
2775
  "memorizzati sui loro computer. WP SlimStat sfrutta queste informazioni per "
2776
  "identificare i visitatori noti."
2777
 
2778
+ #: ../../admin/view/index.php:140
2779
  msgid "Take a sneak peek at what human visitors are doing on your website."
2780
  msgstr "Dai un'occhiata a cosa fanno i visitatori sul tuo sito."
2781
 
2782
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
2783
+ #: ../../admin/view/index.php:184 ../../admin/view/right-now.php:147
2784
  msgid "Color codes"
2785
  msgstr "Significato dei colori"
2786
 
2787
+ #: ../../admin/view/index.php:140
2788
  msgid "From a search result page"
2789
  msgstr "Da una pagina di ricerca"
2790
 
2791
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
2792
+ #: ../../admin/view/index.php:184
2793
  msgid "Known Users"
2794
  msgstr "Utenti noti"
2795
 
2796
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
2797
+ #: ../../admin/view/index.php:184
2798
  msgid "Other Humans"
2799
  msgstr "Altri visitatori umani"
2800
 
2801
+ #: ../../admin/view/index.php:144
2802
  msgid "Keywords used by your visitors to find your website on a search engine."
2803
  msgstr "Parole chiave che i visitatori hanno inserito nel motore di ricerca."
2804
 
2805
+ #: ../../admin/view/index.php:147
2806
  msgid ""
2807
  "WP SlimStat retrieves live information from Alexa, Facebook and Google, to "
2808
  "measures your site's rankings. Values are updated every 12 hours. Filters "
2809
  "set above don't apply to this report."
2810
  msgstr ""
2811
 
2812
+ #: ../../admin/view/index.php:150
2813
  msgid ""
2814
  "We have teamed up with HackerNinja.com to offer you a free website security "
2815
  "scan. By clicking on Start Free Scan, your website will be analyzed to "
2817
  "information is being sent to HackerNinja."
2818
  msgstr ""
2819
 
2820
+ #: ../../admin/view/index.php:153
2821
  msgid "Human Visits"
2822
  msgstr "Visite umane"
2823
 
2824
+ #: ../../admin/view/index.php:156
2825
  msgid ""
2826
  "Internet Service Provider: a company which provides other companies or "
2827
  "individuals with access to the Internet. Your DSL or cable internet service "
2829
  "by setting the corresponding filter under Settings > SlimStat > Filters."
2830
  msgstr ""
2831
 
2832
+ #: ../../admin/view/index.php:159
2833
  msgid ""
2834
  "You can configure WP SlimStat to ignore a specific Country by setting the "
2835
  "corresponding filter under Settings > SlimStat > Filters."
2836
  msgstr ""
2837
 
2838
+ #: ../../admin/view/index.php:162
2839
  msgid ""
2840
  "This report shows you what user agent families (no version considered) are "
2841
  "popular among your visitors."
2842
  msgstr ""
2843
 
2844
+ #: ../../admin/view/index.php:165
2845
  msgid ""
2846
  "This report shows you what operating system families (no version considered) "
2847
  "are popular among your visitors."
2848
  msgstr ""
2849
 
2850
+ #: ../../admin/view/index.php:171
2851
  msgid "Average Pageviews per Visit"
2852
  msgstr "Media delle pagine per visita"
2853
 
2854
+ #: ../../admin/view/index.php:174
2855
  msgid ""
2856
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
2857
  "left your site from the entrance (landing) page."
2859
  "Una <em>pagina di rimbalzo</em> fa riferimento ad una visita di una pagina, "
2860
  "in cui l'utente è uscito dal sito dalla stessa pagina da cui era entrato."
2861
 
2862
+ #: ../../admin/view/index.php:177
2863
  msgid "Searches performed using Wordpress' built-in search functionality."
2864
  msgstr ""
2865
 
2866
+ #: ../../admin/view/index.php:181
2867
  msgid ""
2868
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
2869
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
2873
  "stato cliccato su quella pagina.<br>- <em>ID:xxx</em> mostra invece "
2874
  "l'identificativo del tag HTML, se disponibile."
2875
 
2876
+ #: ../../admin/view/index.php:184
2877
  msgid ""
2878
  "This report lists any <em>event</em> occurred on your website. Please refer "
2879
  "to the FAQ for more information on how to leverage this functionality."
2880
  msgstr ""
2881
 
2882
+ #: ../../admin/view/index.php:187
2883
  msgid ""
2884
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2885
  "this report is not affected by the filters set here above."
2887
 
2888
  #: ../../admin/view/right-now.php:8
2889
  msgid "Human"
2890
+ msgstr "Umano"
2891
 
2892
  #: ../../admin/view/right-now.php:8
2893
  msgid "Bot/Crawler"
2894
+ msgstr "Bot/Motore"
2895
 
2896
  #: ../../admin/view/right-now.php:8
2897
  msgid "Mobile Device"
2898
+ msgstr "Dispositivo mobile"
2899
 
2900
  #: ../../admin/view/right-now.php:8
2901
  msgid "Syndication Reader"
2902
+ msgstr "Lettore RSS"
2903
 
2904
  #: ../../admin/view/right-now.php:28
2905
+ #: ../../admin/view/wp-slimstat-reports.php:425
2906
+ #: ../../admin/view/wp-slimstat-reports.php:670
2907
  msgid "No data to display"
2908
  msgstr "Nessun dato da visualizzare"
2909
 
2910
  # Unknown
2911
+ #: ../../admin/view/right-now.php:54
2912
+ #: ../../admin/view/wp-slimstat-reports.php:470
2913
+ #: ../../admin/view/wp-slimstat-reports.php:708
2914
+ #: ../../admin/view/wp-slimstat-reports.php:1032
2915
  msgid "c-"
2916
  msgstr "Sconosciuto"
2917
 
2918
+ #: ../../admin/view/right-now.php:120
2919
+ #: ../../admin/view/wp-slimstat-reports.php:524
2920
+ #: ../../admin/view/wp-slimstat-reports.php:528
2921
+ #: ../../admin/view/wp-slimstat-reports.php:690
2922
+ #: ../../admin/view/wp-slimstat-reports.php:728
2923
  msgid "Open this URL in a new window"
2924
  msgstr "Apri questo indirizzo in una nuova finestra"
2925
 
2926
+ #: ../../admin/view/right-now.php:123
2927
  msgid "Local search results page"
2928
  msgstr "Ricerca locale"
2929
 
2930
+ #: ../../admin/view/right-now.php:130
2931
  msgid "Open this referrer in a new window"
2932
  msgstr "Apri questa pagina in una nuova finestra"
2933
 
2934
+ #: ../../admin/view/right-now.php:131
2935
  msgid "Open this outbound link in a new window"
2936
  msgstr "Apri questo indirizzo in una nuova finestra"
2937
 
2938
+ #: ../../admin/view/right-now.php:132
2939
  msgid "Date and Time"
2940
  msgstr "Data e ora"
2941
 
2942
+ #: ../../admin/view/right-now.php:133
2943
  msgid "Content Type"
2944
  msgstr "Tipo di contenuto"
2945
 
2946
+ #: ../../admin/view/right-now.php:148
2947
  msgid "Visit with keywords"
2948
  msgstr "Visita con parole chiave"
2949
 
2950
+ #: ../../admin/view/right-now.php:150
2951
  msgid "Known User"
2952
+ msgstr "Utente noto"
2953
 
2954
+ #: ../../admin/view/right-now.php:151
2955
  msgid "Human Visitor"
2956
+ msgstr "Visitatore umano"
2957
 
2958
+ #: ../../admin/view/right-now.php:152
2959
  msgid "Bot or Crawler"
2960
+ msgstr "Bot o motore"
2961
 
2962
+ #: ../../admin/view/wp-slimstat-db.php:59
2963
  msgid "IP Address"
2964
  msgstr "Indirizzo IP"
2965
 
2966
+ #: ../../admin/view/wp-slimstat-db.php:64
2967
  msgid "Domain"
2968
  msgstr "Dominio"
2969
 
2970
+ #: ../../admin/view/wp-slimstat-db.php:68
2971
  msgid "-- Advanced filters --"
2972
  msgstr "-- Filtri avanzati --"
2973
 
2974
+ #: ../../admin/view/wp-slimstat-db.php:69
2975
+ #: ../../admin/view/wp-slimstat-reports.php:62
2976
  msgid "Browser Capabilities"
2977
  msgstr "Estensioni del browser"
2978
 
2979
+ #: ../../admin/view/wp-slimstat-db.php:81
2980
  msgid "Resource ID"
2981
  msgstr "ID del post"
2982
 
2983
+ #: ../../admin/view/wp-slimstat-db.php:86
2984
  msgid "Hour"
2985
  msgstr "Ora"
2986
 
2987
+ #: ../../admin/view/wp-slimstat-db.php:92
2988
+ msgid "Order Direction"
2989
+ msgstr "Ordinamento"
2990
+
2991
+ #: ../../admin/view/wp-slimstat-db.php:93
2992
+ msgid "Limit Results"
2993
+ msgstr "Limite risultati"
2994
+
2995
+ #: ../../admin/view/wp-slimstat-db.php:94
2996
+ msgid "Start From"
2997
+ msgstr "A partire da"
2998
+
2999
+ #: ../../admin/view/wp-slimstat-reports.php:41
3000
  msgid "Pageviews (chart)"
3001
  msgstr "Accessi (grafico)"
3002
 
3003
+ #: ../../admin/view/wp-slimstat-reports.php:42
3004
  msgid "About WP SlimStat"
3005
  msgstr "Informazioni su WP SlimStat"
3006
 
3007
+ #: ../../admin/view/wp-slimstat-reports.php:43
3008
+ #: ../../admin/view/wp-slimstat-reports.php:56
3009
  msgid "At a Glance"
3010
+ msgstr "Colpo d'occhio"
3011
 
3012
+ #: ../../admin/view/wp-slimstat-reports.php:44
3013
  msgid "Currently Online"
3014
  msgstr "Collegati in questo momento"
3015
 
3016
+ #: ../../admin/view/wp-slimstat-reports.php:45
3017
+ #: ../../admin/view/wp-slimstat-reports.php:80
3018
  msgid "Spy View"
3019
  msgstr "Spioncino"
3020
 
3021
+ #: ../../admin/view/wp-slimstat-reports.php:46
3022
+ #: ../../admin/view/wp-slimstat-reports.php:81
3023
  msgid "Recent Search Terms"
3024
  msgstr "Parole chiave recenti"
3025
 
3026
+ #: ../../admin/view/wp-slimstat-reports.php:47
3027
  msgid "Top Pages"
3028
+ msgstr "Classifica pagine"
3029
 
3030
+ #: ../../admin/view/wp-slimstat-reports.php:48
3031
+ #: ../../admin/view/wp-slimstat-reports.php:78
3032
  msgid "Top Traffic Sources"
3033
  msgstr "Sorgenti di traffico"
3034
 
3035
+ #: ../../admin/view/wp-slimstat-reports.php:49
3036
  msgid "Top Known Visitors"
3037
+ msgstr "Classifica visitatori"
3038
 
3039
+ #: ../../admin/view/wp-slimstat-reports.php:50
3040
+ #: ../../admin/view/wp-slimstat-reports.php:76
3041
+ #: ../../admin/view/wp-slimstat-reports.php:96
3042
  msgid "Top Search Terms"
3043
  msgstr "Parole chiave popolari"
3044
 
3045
+ #: ../../admin/view/wp-slimstat-reports.php:51
3046
+ #: ../../admin/view/wp-slimstat-reports.php:63
3047
+ #: ../../admin/view/wp-slimstat-reports.php:77
3048
  msgid "Top Countries"
3049
  msgstr "Classifica Paesi"
3050
 
3051
+ #: ../../admin/view/wp-slimstat-reports.php:52
3052
  msgid "Rankings"
3053
+ msgstr "Posizionamenti"
3054
 
3055
+ #: ../../admin/view/wp-slimstat-reports.php:53
3056
  msgid "Security Scan"
3057
+ msgstr "Scansione sulla sicurezza"
3058
 
3059
+ #: ../../admin/view/wp-slimstat-reports.php:54
3060
  msgid "Top Language Families"
3061
+ msgstr "Famiglie linguistiche"
3062
 
3063
+ #: ../../admin/view/wp-slimstat-reports.php:55
3064
  msgid "Human Visits (chart)"
3065
  msgstr "Visite umane (grafico)"
3066
 
3067
+ #: ../../admin/view/wp-slimstat-reports.php:57
3068
  msgid "Top Languages"
3069
+ msgstr "Classifica lingue"
3070
 
3071
+ #: ../../admin/view/wp-slimstat-reports.php:58
3072
  msgid "Top Browsers"
3073
+ msgstr "Classifica browser"
3074
 
3075
+ #: ../../admin/view/wp-slimstat-reports.php:59
3076
  msgid "Top Service Providers"
3077
  msgstr "Classifica provider"
3078
 
3079
+ #: ../../admin/view/wp-slimstat-reports.php:60
3080
  msgid "Top Operating Systems"
3081
  msgstr "Classifica sistemi operativi"
3082
 
3083
+ #: ../../admin/view/wp-slimstat-reports.php:61
3084
  msgid "Top Screen Resolutions"
3085
  msgstr "Classifica risoluzioni"
3086
 
3087
+ #: ../../admin/view/wp-slimstat-reports.php:64
3088
  msgid "Visit Duration"
3089
  msgstr "Durata delle visite"
3090
 
3091
+ #: ../../admin/view/wp-slimstat-reports.php:65
3092
+ #: ../../admin/view/wp-slimstat-reports.php:82
3093
  msgid "Recent Countries"
3094
  msgstr "Paesi recenti"
3095
 
3096
+ #: ../../admin/view/wp-slimstat-reports.php:66
3097
  msgid "Recent Screen Resolutions"
3098
  msgstr "Risoluzioni recenti"
3099
 
3100
+ #: ../../admin/view/wp-slimstat-reports.php:67
3101
  msgid "Recent Operating Systems"
3102
  msgstr "Sistemi operativi recenti"
3103
 
3104
+ #: ../../admin/view/wp-slimstat-reports.php:68
3105
  msgid "Recent Browsers"
3106
  msgstr "Browser recenti"
3107
 
3108
+ #: ../../admin/view/wp-slimstat-reports.php:69
3109
  msgid "Recent Languages"
3110
  msgstr "Lingue recenti"
3111
 
3112
+ #: ../../admin/view/wp-slimstat-reports.php:70
3113
  msgid "Top Browser Families"
3114
  msgstr "Famiglie di Browser"
3115
 
3116
+ #: ../../admin/view/wp-slimstat-reports.php:71
3117
  msgid "Top OS Families"
3118
+ msgstr "Famiglie di sistemi operativi"
3119
 
3120
+ #: ../../admin/view/wp-slimstat-reports.php:72
3121
  msgid "Recent Users"
3122
  msgstr "Utenti Recenti"
3123
 
3124
+ #: ../../admin/view/wp-slimstat-reports.php:73
3125
  msgid "Top Users"
3126
  msgstr "Classifica Utenti"
3127
 
3128
+ #: ../../admin/view/wp-slimstat-reports.php:74
3129
  msgid "Traffic Sources (chart)"
3130
  msgstr "Sorgenti di traffico (grafico)"
3131
 
3132
+ #: ../../admin/view/wp-slimstat-reports.php:75
3133
  msgid "Summary"
3134
  msgstr "Panoramica"
3135
 
3136
+ #: ../../admin/view/wp-slimstat-reports.php:79
3137
  msgid "Top Referring Search Engines"
3138
  msgstr "Classifica motori di ricerca"
3139
 
3140
+ #: ../../admin/view/wp-slimstat-reports.php:83
3141
+ #: ../../admin/view/wp-slimstat-reports.php:99
3142
  msgid "Top Landing Pages"
3143
  msgstr "Classifica pagine d'ingresso"
3144
 
3145
+ #: ../../admin/view/wp-slimstat-reports.php:84
3146
  msgid "Average Pageviews per Visit (chart)"
3147
  msgstr "Media quotidiana delle pagine per visita (grafico)"
3148
 
3149
+ #: ../../admin/view/wp-slimstat-reports.php:85
3150
  msgid "Recent Posts"
3151
  msgstr "Articoli recenti"
3152
 
3153
+ #: ../../admin/view/wp-slimstat-reports.php:86
3154
  msgid "Recent Bounce Pages"
3155
  msgstr "Pagine di rimbalzo"
3156
 
3157
+ #: ../../admin/view/wp-slimstat-reports.php:87
3158
  msgid "Recent Feeds"
3159
  msgstr "Feed recenti"
3160
 
3161
+ #: ../../admin/view/wp-slimstat-reports.php:88
3162
  msgid "Recent Pages Not Found"
3163
+ msgstr "Pagine non trovate recenti"
3164
 
3165
+ #: ../../admin/view/wp-slimstat-reports.php:89
3166
  msgid "Recent Internal Searches"
3167
  msgstr "Ricerche interne"
3168
 
3169
+ #: ../../admin/view/wp-slimstat-reports.php:90
3170
  msgid "Top Categories"
3171
  msgstr "Classifica categorie "
3172
 
3173
+ #: ../../admin/view/wp-slimstat-reports.php:91
3174
  msgid "Recent Outbound Links"
3175
  msgstr "Link in uscita"
3176
 
3177
+ #: ../../admin/view/wp-slimstat-reports.php:92
3178
  msgid "Recent Events"
3179
  msgstr "Eventi Recenti"
3180
 
3181
+ #: ../../admin/view/wp-slimstat-reports.php:93
3182
  msgid "Top Posts"
3183
  msgstr "Classifica articoli"
3184
 
3185
+ #: ../../admin/view/wp-slimstat-reports.php:94
3186
  msgid "Top Feeds"
3187
  msgstr "Classifica parole chiave"
3188
 
3189
+ #: ../../admin/view/wp-slimstat-reports.php:95
3190
  msgid "Top Internal Searches"
3191
  msgstr "Classifica ricerche interne"
3192
 
3193
+ #: ../../admin/view/wp-slimstat-reports.php:97
3194
  msgid "Recent Categories"
3195
  msgstr "Categorie recenti"
3196
 
3197
+ #: ../../admin/view/wp-slimstat-reports.php:98
3198
  msgid "Top Pages Not Found"
3199
  msgstr "Classifica Pagine non trovate"
3200
 
3201
+ #: ../../admin/view/wp-slimstat-reports.php:100
3202
  msgid "Top Authors"
3203
  msgstr "Classifica autori"
3204
 
3205
+ #: ../../admin/view/wp-slimstat-reports.php:101
3206
  msgid "Top Tags"
3207
  msgstr "Classifica Tag"
3208
 
3209
+ #: ../../admin/view/wp-slimstat-reports.php:102
3210
  msgid "Recent Downloads"
3211
  msgstr "Download recenti"
3212
 
3213
+ #: ../../admin/view/wp-slimstat-reports.php:103
3214
  msgid "Top Outbound Links and Downloads"
3215
  msgstr ""
3216
 
3217
+ #: ../../admin/view/wp-slimstat-reports.php:104
3218
  msgid "Your Website"
3219
+ msgstr "Il tuo sito"
3220
 
3221
+ #: ../../admin/view/wp-slimstat-reports.php:106
3222
  msgid "Activity Log"
3223
+ msgstr "Registro delle attivit&agrave;"
3224
 
3225
+ #: ../../admin/view/wp-slimstat-reports.php:222
3226
  msgid "Chart controls"
3227
  msgstr "Controlli del grafico"
3228
 
3229
+ #: ../../admin/view/wp-slimstat-reports.php:222
3230
  msgid "Use your mouse wheel to zoom in and out"
3231
  msgstr "Usa la rotellina del mouse per ingrandire o rimpicciolire"
3232
 
3233
+ #: ../../admin/view/wp-slimstat-reports.php:222
3234
  msgid "While zooming in, drag the chart to move to a different area"
3235
  msgstr "Mentre ingrandisci, trascina il grafico per spostarti"
3236
 
3237
+ #: ../../admin/view/wp-slimstat-reports.php:222
3238
  msgid "Double click on an empty region to reset the zoom level"
3239
  msgstr "Fai doppio click in una zona vuota per azzerare l'ingrandimento"
3240
 
3241
+ #: ../../admin/view/wp-slimstat-reports.php:223
3242
  msgid ""
3243
  "Click on a data point to display the activity chart for each hour of that day"
3244
  msgstr "Clicca su un punto del grafico per visualizzare l'attività oraria"
3245
 
3246
+ #: ../../admin/view/wp-slimstat-reports.php:256
3247
  msgid "src"
3248
  msgstr "src"
3249
 
3250
+ #: ../../admin/view/wp-slimstat-reports.php:257
3251
  msgid "serp"
3252
  msgstr "serp"
3253
 
3254
+ #: ../../admin/view/wp-slimstat-reports.php:262
3255
  msgid "Go to the corresponding search engine result page"
3256
  msgstr "Vai alla corrispondente pagina sul motore di ricerca"
3257
 
3258
+ #: ../../admin/view/wp-slimstat-reports.php:265
3259
  msgid "Go to the referring page"
3260
  msgstr "Vai alla pagina corrispondente"
3261
 
3262
+ #: ../../admin/view/wp-slimstat-reports.php:288
3263
  msgid "Remove filter for"
3264
  msgstr "Rimuovi il filtro per"
3265
 
3266
+ #: ../../admin/view/wp-slimstat-reports.php:295
3267
  msgid "Reset All"
3268
  msgstr "Rimuovi tutti"
3269
 
3270
+ #: ../../admin/view/wp-slimstat-reports.php:298
3271
  msgid "Current filters:"
3272
  msgstr "Filtri attivi:"
3273
 
3274
+ #: ../../admin/view/wp-slimstat-reports.php:302
3275
  msgid "Refresh"
3276
  msgstr "Aggiorna"
3277
 
3278
+ #: ../../admin/view/wp-slimstat-reports.php:339
3279
  #, php-format
3280
  msgid "Results %s - %s of %s"
3281
  msgstr "Risultati %s - %s di %s"
3282
 
3283
+ #: ../../admin/view/wp-slimstat-reports.php:341
3284
  msgid "Refresh in"
3285
  msgstr "Aggiornamento in"
3286
 
3287
+ #: ../../admin/view/wp-slimstat-reports.php:363
3288
+ #: ../../admin/view/wp-slimstat-reports.php:375
3289
  #, php-format
3290
  msgid "Daily %s"
3291
  msgstr "%s al giorno"
3292
 
3293
+ #: ../../admin/view/wp-slimstat-reports.php:366
3294
  #, php-format
3295
  msgid "%s Minute by Minute"
3296
  msgstr "%s minuto per minuto"
3297
 
3298
+ #: ../../admin/view/wp-slimstat-reports.php:369
3299
  #, php-format
3300
  msgid "Hourly %s"
3301
  msgstr "%s ora per ora"
3302
 
3303
+ #: ../../admin/view/wp-slimstat-reports.php:372
3304
  #, php-format
3305
  msgid "Monthly %s"
3306
  msgstr "%s al mese"
3307
 
3308
+ #: ../../admin/view/wp-slimstat-reports.php:452
3309
  msgid "Category ID"
3310
  msgstr "ID categoria"
3311
 
3312
+ #: ../../admin/view/wp-slimstat-reports.php:485
3313
  msgid "OS Code"
3314
  msgstr "Codice SO"
3315
 
3316
+ #: ../../admin/view/wp-slimstat-reports.php:495
3317
  msgid "Referrer"
3318
  msgstr "Riferimento"
3319
 
3320
+ #: ../../admin/view/wp-slimstat-reports.php:519
3321
+ #: ../../admin/view/wp-slimstat-reports.php:796
3322
+ #: ../../admin/view/wp-slimstat-reports.php:805
3323
+ #: ../../admin/view/wp-slimstat-reports.php:811
3324
+ #: ../../admin/view/wp-slimstat-reports.php:817
3325
+ #: ../../admin/view/wp-slimstat-reports.php:823
3326
+ #: ../../admin/view/wp-slimstat-reports.php:829
3327
+ #: ../../admin/view/wp-slimstat-reports.php:835
3328
+ #: ../../admin/view/wp-slimstat-reports.php:841
3329
  msgid "Hits"
3330
  msgstr "Visite"
3331
 
3332
+ #: ../../admin/view/wp-slimstat-reports.php:687
3333
  msgid "Search for"
3334
  msgstr "Ricerca per"
3335
 
3336
+ #: ../../admin/view/wp-slimstat-reports.php:718
3337
+ #: ../../admin/view/wp-slimstat-reports.php:728
3338
  msgid "Source"
3339
  msgstr "Sorgente"
3340
 
3341
+ #: ../../admin/view/wp-slimstat-reports.php:720
3342
  msgid "Keywords"
3343
  msgstr "Parola chiave"
3344
 
3345
+ #: ../../admin/view/wp-slimstat-reports.php:728
3346
  #, php-format
3347
  msgid "Filter results where resource equals %s"
3348
  msgstr "Filtra risultati dove la URL è uguale a %s"
3349
 
3350
+ #: ../../admin/view/wp-slimstat-reports.php:742
3351
  msgid "Total Pageviews"
3352
  msgstr "Accessi totali"
3353
 
3354
+ #: ../../admin/view/wp-slimstat-reports.php:743
3355
  msgid "DB Size"
3356
  msgstr "Dimensione DB"
3357
 
3358
+ #: ../../admin/view/wp-slimstat-reports.php:744
3359
  msgid "Tracking Active"
3360
  msgstr "Tracciamento attivo"
3361
 
3362
+ #: ../../admin/view/wp-slimstat-reports.php:745
3363
  msgid "Javascript Mode"
3364
  msgstr "Modalità Javascript"
3365
 
3366
+ #: ../../admin/view/wp-slimstat-reports.php:746
3367
  msgid "Tracking Browser Caps"
3368
  msgstr "Traccia Capacità Browser"
3369
 
3370
+ #: ../../admin/view/wp-slimstat-reports.php:747
3371
  msgid "Auto purge"
3372
  msgstr "Pulizia DB"
3373
 
3374
+ #: ../../admin/view/wp-slimstat-reports.php:748
3375
  msgid "Oldest pageview"
3376
  msgstr "Visita più vecchia"
3377
 
3378
+ #: ../../admin/view/wp-slimstat-reports.php:748
3379
  msgid "No visits"
3380
  msgstr "Nessuna visita"
3381
 
3382
+ #: ../../admin/view/wp-slimstat-reports.php:758
3383
+ #: ../../admin/view/wp-slimstat-reports.php:860
3384
  msgid ""
3385
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
3386
  "time the tracking code is executed."
3387
  msgstr ""
3388
 
3389
+ #: ../../admin/view/wp-slimstat-reports.php:760
3390
  msgid "How many pages have been visited on average during the current period."
3391
  msgstr ""
3392
 
3393
+ #: ../../admin/view/wp-slimstat-reports.php:761
3394
+ msgid "Average Pageviews"
 
3395
  msgstr "Media accessi"
3396
 
3397
+ #: ../../admin/view/wp-slimstat-reports.php:762
3398
  msgid ""
3399
  "Visitors who landed on your site after searching for a keyword on Google, "
3400
  "Yahoo, etc."
3401
  msgstr ""
3402
 
3403
+ #: ../../admin/view/wp-slimstat-reports.php:763
3404
  msgid "From Search Results"
3405
  msgstr "Da risultati di ricerca"
3406
 
3407
+ #: ../../admin/view/wp-slimstat-reports.php:764
3408
  msgid ""
3409
  "Used to differentiate between multiple requests to download a file from one "
3410
  "internet address (IP) and requests originating from many distinct addresses"
3411
  msgstr ""
3412
 
3413
+ #: ../../admin/view/wp-slimstat-reports.php:765
3414
+ #: ../../admin/view/wp-slimstat-reports.php:780
3415
+ #: ../../admin/view/wp-slimstat-reports.php:1145
3416
+ #: ../../admin/view/wp-slimstat-reports.php:1149
3417
+ #: ../../admin/view/wp-slimstat-reports.php:1153
3418
  msgid "Unique IPs"
3419
  msgstr "IP unici"
3420
 
3421
+ #: ../../admin/view/wp-slimstat-reports.php:766
3422
  msgid "Last 5 minutes"
3423
  msgstr "Ultimi 5 minuti"
3424
 
3425
+ #: ../../admin/view/wp-slimstat-reports.php:767
3426
  msgid "Last 30 minutes"
3427
  msgstr "Ultimi 30 minuti"
3428
 
3429
+ #: ../../admin/view/wp-slimstat-reports.php:777
3430
  msgid ""
3431
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3432
  "multiple times if they perform multiple visits."
3434
  "Una visita è una sessione di al massimo 30 minuti. I visitatori di ritorno "
3435
  "sono contati più volte se effettuano visite multiple."
3436
 
3437
+ #: ../../admin/view/wp-slimstat-reports.php:778
3438
  msgid "Human visits"
3439
  msgstr "Visitatori umani"
3440
 
3441
+ #: ../../admin/view/wp-slimstat-reports.php:779
3442
  msgid "It includes only traffic generated by human visitors."
3443
  msgstr ""
3444
 
3445
+ #: ../../admin/view/wp-slimstat-reports.php:781
3446
+ #: ../../admin/view/wp-slimstat-reports.php:872
3447
  msgid ""
3448
  "Percentage of single-page visits, i.e. visits in which the person left your "
3449
  "site from the entrance page."
3451
  "Percentuale di visite di una sola pagina, ovvero visite in cui la persona ha "
3452
  "lasciato il sito dopo aver visto la pagina su cui è arrivata."
3453
 
3454
+ #: ../../admin/view/wp-slimstat-reports.php:782
3455
  msgid "Bounce rate"
3456
  msgstr "Tasso di rimbalzo"
3457
 
3458
+ #: ../../admin/view/wp-slimstat-reports.php:783
3459
  msgid "Visitors who had previously left a comment on your blog."
3460
  msgstr ""
3461
 
3462
+ #: ../../admin/view/wp-slimstat-reports.php:784
3463
  msgid "Known visitors"
3464
  msgstr "Visitatori noti"
3465
 
3466
+ #: ../../admin/view/wp-slimstat-reports.php:785
3467
  msgid "Human users who visited your site only once."
3468
  msgstr ""
3469
 
3470
+ #: ../../admin/view/wp-slimstat-reports.php:786
3471
  msgid "New visitors"
3472
  msgstr "Nuovi visitatori"
3473
 
3474
+ #: ../../admin/view/wp-slimstat-reports.php:787
3475
  msgid "Bots"
3476
  msgstr "Bot"
3477
 
3478
+ #: ../../admin/view/wp-slimstat-reports.php:788
3479
  msgid "Pages per visit"
3480
  msgstr "Pagine per visita"
3481
 
3482
+ #: ../../admin/view/wp-slimstat-reports.php:789
3483
+ #: ../../admin/view/wp-slimstat-reports.php:1158
3484
  msgid "Longest visit"
3485
  msgstr "Visita più lunga"
3486
 
3487
+ #: ../../admin/view/wp-slimstat-reports.php:789
3488
  msgid "hits"
3489
  msgstr "visite"
3490
 
3491
+ #: ../../admin/view/wp-slimstat-reports.php:807
3492
  msgid "0 - 30 seconds"
3493
  msgstr "0 - 30 secondi"
3494
 
3495
+ #: ../../admin/view/wp-slimstat-reports.php:813
3496
  msgid "31 - 60 seconds"
3497
  msgstr "31 - 60 secondi"
3498
 
3499
+ #: ../../admin/view/wp-slimstat-reports.php:819
3500
  msgid "1 - 3 minutes"
3501
  msgstr "1 -3 minuti"
3502
 
3503
+ #: ../../admin/view/wp-slimstat-reports.php:825
3504
  msgid "3 - 5 minutes"
3505
  msgstr "3 - 5 minuti"
3506
 
3507
+ #: ../../admin/view/wp-slimstat-reports.php:831
3508
  msgid "5 - 7 minutes"
3509
  msgstr "5 - 7 minuti"
3510
 
3511
+ #: ../../admin/view/wp-slimstat-reports.php:837
3512
  msgid "7 - 10 minutes"
3513
  msgstr "7 - 10 minuti"
3514
 
3515
+ #: ../../admin/view/wp-slimstat-reports.php:843
3516
  msgid "More than 10 minutes"
3517
  msgstr "Più di 10 minuti"
3518
 
3519
+ #: ../../admin/view/wp-slimstat-reports.php:852
3520
  msgid "Average time on site"
3521
  msgstr "Tempo medio sul sito"
3522
 
3523
+ #: ../../admin/view/wp-slimstat-reports.php:862
3524
  msgid ""
3525
  "A referrer (or referring site) is the site that a visitor previously visited "
3526
  "before following a link to your site."
3527
  msgstr ""
3528
 
3529
+ #: ../../admin/view/wp-slimstat-reports.php:863
3530
  msgid "Unique Referrers"
3531
  msgstr "Sorgenti uniche"
3532
 
3533
+ #: ../../admin/view/wp-slimstat-reports.php:864
3534
  msgid ""
3535
  "Visitors who visited the site by typing the URL directly into their browser. "
3536
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
3538
  "documents that don't include tracking variables."
3539
  msgstr ""
3540
 
3541
+ #: ../../admin/view/wp-slimstat-reports.php:865
3542
  msgid "Direct Pageviews"
3543
  msgstr "Accessi diretti"
3544
 
3545
+ #: ../../admin/view/wp-slimstat-reports.php:866
3546
  msgid ""
3547
  "Visitors who came to your site via searches on Google or some other search "
3548
  "engine."
3549
  msgstr ""
3550
 
3551
+ #: ../../admin/view/wp-slimstat-reports.php:867
3552
  msgid "From a search result"
3553
  msgstr "Da una ricerca"
3554
 
3555
+ #: ../../admin/view/wp-slimstat-reports.php:868
3556
  msgid ""
3557
  "The first page that a user views during a session. This is also known as the "
3558
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
3560
  "a landing page."
3561
  msgstr ""
3562
 
3563
+ #: ../../admin/view/wp-slimstat-reports.php:869
3564
  msgid "Unique Landing Pages"
3565
  msgstr "Pagine d'ingresso uniche"
3566
 
3567
+ #: ../../admin/view/wp-slimstat-reports.php:870
3568
  msgid "Number of single-page visits to your site over the selected period."
3569
  msgstr ""
3570
  "Questo campo identifica il numero di visite di una sola pagina nel periodo "
3571
  "selezionato."
3572
 
3573
+ #: ../../admin/view/wp-slimstat-reports.php:871
3574
  msgid "Bounce Pages"
3575
  msgstr "Tasso di rimbalzo"
3576
 
3577
+ #: ../../admin/view/wp-slimstat-reports.php:873
3578
  msgid "New Visitors Rate"
3579
  msgstr "% Nuovi visitatori"
3580
 
3581
+ #: ../../admin/view/wp-slimstat-reports.php:874
3582
  msgid ""
3583
  "Visitors who visited the site in the last 5 minutes coming from a search "
3584
  "engine."
3585
  msgstr ""
3586
 
3587
+ #: ../../admin/view/wp-slimstat-reports.php:875
3588
  msgid "Currently from search engines"
3589
  msgstr "Attualmente da motori di ricerca"
3590
 
3591
+ #: ../../admin/view/wp-slimstat-reports.php:943
3592
  msgid "Number of pages in your site included in Google's index."
3593
  msgstr ""
3594
 
3595
+ #: ../../admin/view/wp-slimstat-reports.php:944
3596
  msgid "Google Index"
3597
  msgstr "Indice Google"
3598
 
3599
+ #: ../../admin/view/wp-slimstat-reports.php:945
3600
  msgid "Number of pages, according to Google, that link back to your site."
3601
  msgstr ""
3602
 
3603
+ #: ../../admin/view/wp-slimstat-reports.php:946
3604
  msgid "Google Backlinks"
3605
  msgstr ""
3606
 
3607
+ #: ../../admin/view/wp-slimstat-reports.php:947
3608
  msgid ""
3609
  "How many times the Facebook Like button has been approximately clicked on "
3610
  "your site."
3611
  msgstr ""
3612
 
3613
+ #: ../../admin/view/wp-slimstat-reports.php:948
3614
  msgid "Facebook Likes"
3615
  msgstr ""
3616
 
3617
+ #: ../../admin/view/wp-slimstat-reports.php:949
3618
  msgid ""
3619
  "How many times your site has been shared by someone on the social network."
3620
  msgstr ""
3621
 
3622
+ #: ../../admin/view/wp-slimstat-reports.php:950
3623
  msgid "Facebook Shares"
3624
  msgstr ""
3625
 
3626
+ #: ../../admin/view/wp-slimstat-reports.php:951
3627
  msgid "How many times links to your website have been clicked on Facebook."
3628
  msgstr ""
3629
 
3630
+ #: ../../admin/view/wp-slimstat-reports.php:952
3631
  msgid "Facebook Clicks"
3632
  msgstr "Click da Facebook"
3633
 
3634
+ #: ../../admin/view/wp-slimstat-reports.php:953
3635
  msgid ""
3636
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3637
  "traffic data."
3638
  msgstr ""
3639
 
3640
+ #: ../../admin/view/wp-slimstat-reports.php:954
3641
  msgid "Alexa World Rank"
3642
  msgstr ""
3643
 
3644
+ #: ../../admin/view/wp-slimstat-reports.php:955
3645
  msgid "Alexa Country Rank"
3646
  msgstr ""
3647
 
3648
+ #: ../../admin/view/wp-slimstat-reports.php:956
3649
  msgid "Alexa Popularity"
3650
  msgstr ""
3651
 
3652
+ #: ../../admin/view/wp-slimstat-reports.php:973
3653
  msgid "Bing Test"
3654
  msgstr ""
3655
 
3656
+ #: ../../admin/view/wp-slimstat-reports.php:974
3657
  msgid "AntiVirus Scan"
3658
  msgstr ""
3659
 
3660
+ #: ../../admin/view/wp-slimstat-reports.php:975
3661
  msgid "Google Bot Test"
3662
  msgstr ""
3663
 
3664
+ #: ../../admin/view/wp-slimstat-reports.php:976
3665
  msgid "Scan for Hostile Strings"
3666
  msgstr ""
3667
 
3668
+ #: ../../admin/view/wp-slimstat-reports.php:977
3669
  msgid "Generic Web Bot test"
3670
  msgstr ""
3671
 
3672
+ #: ../../admin/view/wp-slimstat-reports.php:978
3673
  msgid "Google Safe Browsing List"
3674
  msgstr ""
3675
 
3676
+ #: ../../admin/view/wp-slimstat-reports.php:979
3677
  msgid "Hostile External Links"
3678
  msgstr ""
3679
 
3680
+ #: ../../admin/view/wp-slimstat-reports.php:980
3681
  msgid "Other Treats"
3682
  msgstr "Altre minacce"
3683
 
3684
+ #: ../../admin/view/wp-slimstat-reports.php:1006
3685
  msgid "Passed"
3686
  msgstr ""
3687
 
3688
+ #: ../../admin/view/wp-slimstat-reports.php:1006
3689
  msgid "At Risk"
3690
  msgstr ""
3691
 
3692
+ #: ../../admin/view/wp-slimstat-reports.php:1009
3693
  msgid "Timed Out"
3694
  msgstr ""
3695
 
3696
  # Unknown
3697
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3698
  msgid "c-xx"
3699
  msgstr "Sconosciuto"
3700
 
3701
  # Afghanistan
3702
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3703
  msgid "c-af"
3704
  msgstr "Afghanistan"
3705
 
3706
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3707
  msgid "c-ax"
3708
  msgstr "Isole Aland"
3709
 
3710
  # Albania
3711
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3712
  msgid "c-al"
3713
  msgstr "Albania"
3714
 
3715
  # Algeria
3716
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3717
  msgid "c-dz"
3718
  msgstr "Algeria"
3719
 
3720
  # Andorra, Principality of
3721
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3722
  msgid "c-ad"
3723
  msgstr "Principato di Andorra"
3724
 
3725
  # Angola
3726
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3727
  msgid "c-ao"
3728
  msgstr "Angola"
3729
 
3730
  # Anguilla
3731
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3732
  msgid "c-ai"
3733
  msgstr "Anguilla"
3734
 
3735
  # Antigua and Barbuda
3736
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3737
  msgid "c-ag"
3738
  msgstr "Antigua e Barbuda"
3739
 
3740
  # Argentina
3741
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3742
  msgid "c-ar"
3743
  msgstr "Argentina"
3744
 
3745
  # Armenia
3746
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3747
  msgid "c-am"
3748
  msgstr "Armenia"
3749
 
3750
  # Aruba
3751
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3752
  msgid "c-aw"
3753
  msgstr "Aruba"
3754
 
3755
  # Australia
3756
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3757
  msgid "c-au"
3758
  msgstr "Australia"
3759
 
3760
  # Austria
3761
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3762
  msgid "c-at"
3763
  msgstr "Austria"
3764
 
3765
  # Azerbaidjan
3766
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3767
  msgid "c-az"
3768
  msgstr "Azerbaidjan"
3769
 
3770
  # Bahamas
3771
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3772
  msgid "c-bs"
3773
  msgstr "Bahamas"
3774
 
3775
  # Bahrain
3776
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3777
  msgid "c-bh"
3778
  msgstr "Bahrain"
3779
 
3780
  # Bangladesh
3781
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3782
  msgid "c-bd"
3783
  msgstr "Bangladesh"
3784
 
3785
  # Barbados
3786
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3787
  msgid "c-bb"
3788
  msgstr "Barbados"
3789
 
3790
  # Belarus
3791
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3792
  msgid "c-by"
3793
  msgstr "Belarus"
3794
 
3795
  # Belgium
3796
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3797
  msgid "c-be"
3798
  msgstr "Belgio"
3799
 
3800
  # Belize
3801
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3802
  msgid "c-bz"
3803
  msgstr "Belize"
3804
 
3805
  # Benin
3806
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3807
  msgid "c-bj"
3808
  msgstr "Benin"
3809
 
3810
  # Bermuda
3811
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3812
  msgid "c-bm"
3813
  msgstr "Bermuda"
3814
 
3815
  # Bhutan
3816
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3817
  msgid "c-bt"
3818
  msgstr "Bhutan"
3819
 
3820
  # Bolivia
3821
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3822
  msgid "c-bo"
3823
  msgstr "Bolivia"
3824
 
3825
  # Bosnia-Herzegovina
3826
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3827
  msgid "c-ba"
3828
  msgstr "Bosnia-Erzegovina"
3829
 
3830
  # Botswana
3831
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3832
  msgid "c-bw"
3833
  msgstr "Botswana"
3834
 
3835
  # Brazil
3836
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3837
  msgid "c-br"
3838
  msgstr "Brasile"
3839
 
3840
  # Brunei Darussalam
3841
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3842
  msgid "c-bn"
3843
  msgstr "Brunei"
3844
 
3845
  # Bulgaria
3846
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3847
  msgid "c-bg"
3848
  msgstr "Bulgaria"
3849
 
3850
  # Burkina Faso
3851
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3852
  msgid "c-bf"
3853
  msgstr "Burkina Faso"
3854
 
3855
  # Burundi
3856
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3857
  msgid "c-bi"
3858
  msgstr "Burundi"
3859
 
3860
  # Cambodia, Kingdom of
3861
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3862
  msgid "c-kh"
3863
  msgstr "Cambodiaf"
3864
 
3865
  # Cameroon
3866
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3867
  msgid "c-cm"
3868
  msgstr "Camerun"
3869
 
3870
  # Canada
3871
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3872
  msgid "c-ca"
3873
  msgstr "Canada"
3874
 
3875
  # Cape Verde
3876
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3877
  msgid "c-cv"
3878
  msgstr "Capo Verde"
3879
 
3880
  # Cayman Islands
3881
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3882
  msgid "c-ky"
3883
  msgstr "Isole Cayman"
3884
 
3885
  # Central African Republic
3886
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3887
  msgid "c-cf"
3888
  msgstr "Repubblica Centro-africana"
3889
 
3890
  # Chad
3891
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3892
  msgid "c-td"
3893
  msgstr "Chad"
3894
 
3895
  # Chile
3896
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3897
  msgid "c-cl"
3898
  msgstr "Cile"
3899
 
3900
  # China
3901
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3902
  msgid "c-cn"
3903
  msgstr "Cina"
3904
 
3905
  # Colombia
3906
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3907
  msgid "c-co"
3908
  msgstr "Colombia"
3909
 
3910
  # Comoros
3911
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3912
  msgid "c-km"
3913
  msgstr "Comore"
3914
 
3915
  # Congo
3916
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3917
  msgid "c-cg"
3918
  msgstr "Congo"
3919
 
3920
  # Congo, The Democratic Republic of the
3921
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3922
  msgid "c-cd"
3923
  msgstr "Repubblica del Congo"
3924
 
3925
  # Costa Rica
3926
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3927
  msgid "c-cr"
3928
  msgstr "Costa Rica"
3929
 
3930
  # Ivory Coast (Cote D'Ivoire)
3931
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3932
  msgid "c-ci"
3933
  msgstr "Costa d'avorio"
3934
 
3935
  # Croatia
3936
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3937
  msgid "c-hr"
3938
  msgstr "Croazia"
3939
 
3940
  # Cuba
3941
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3942
  msgid "c-cu"
3943
  msgstr "Cuba"
3944
 
3945
  # Cyprus
3946
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3947
  msgid "c-cy"
3948
  msgstr "Cipro"
3949
 
3950
  # Czech Republic
3951
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3952
  msgid "c-cz"
3953
  msgstr "Repubblica Ceca"
3954
 
3955
  # Denmark
3956
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3957
  msgid "c-dk"
3958
  msgstr "Danimarca"
3959
 
3960
  # Djibouti
3961
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3962
  msgid "c-dj"
3963
  msgstr "Gibbuti"
3964
 
3965
  # Dominica
3966
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3967
  msgid "c-dm"
3968
  msgstr "Dominica"
3969
 
3970
  # Dominican Republic
3971
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3972
  msgid "c-do"
3973
  msgstr "Repubblica Dominicana"
3974
 
3975
  # Ecuador
3976
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3977
  msgid "c-ec"
3978
  msgstr "Ecuador"
3979
 
3980
  # Egypt
3981
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3982
  msgid "c-eg"
3983
  msgstr "Egitto"
3984
 
3985
  # El Salvador
3986
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3987
  msgid "c-sv"
3988
  msgstr "El Salvador"
3989
 
3990
  # Equatorial Guinea
3991
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3992
  msgid "c-gq"
3993
  msgstr "Guinea equatoriale"
3994
 
3995
  # Eritrea
3996
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3997
  msgid "c-er"
3998
  msgstr "Eritrea"
3999
 
4000
  # Estonia
4001
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4002
  msgid "c-ee"
4003
  msgstr "Estonia"
4004
 
4005
  # Ethiopia
4006
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4007
  msgid "c-et"
4008
  msgstr "Etiopia"
4009
 
4010
  # Faroe Islands
4011
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4012
  msgid "c-fo"
4013
  msgstr "Isole Faroe"
4014
 
4015
  # Falkland Islands
4016
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4017
  msgid "c-fk"
4018
  msgstr "Isole Falkland"
4019
 
4020
  # Fiji
4021
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4022
  msgid "c-fj"
4023
  msgstr "Fiji"
4024
 
4025
  # Finland
4026
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4027
  msgid "c-fi"
4028
  msgstr "Finlandia"
4029
 
4030
  # France
4031
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4032
  msgid "c-fr"
4033
  msgstr "Francia"
4034
 
4035
  # French Guyana
4036
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4037
  msgid "c-gf"
4038
  msgstr "Guyana francese"
4039
 
4040
  # Gabon
4041
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4042
  msgid "c-ga"
4043
  msgstr "Gabon"
4044
 
4045
  # Gambia
4046
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4047
  msgid "c-gm"
4048
  msgstr "Gambia"
4049
 
4050
  # Georgia
4051
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4052
  msgid "c-ge"
4053
  msgstr "Georgia"
4054
 
4055
  # Germany
4056
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4057
  msgid "c-de"
4058
  msgstr "Germania"
4059
 
4060
  # Ghana
4061
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4062
  msgid "c-gh"
4063
  msgstr "Ghana"
4064
 
4065
  # Greece
4066
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4067
  msgid "c-gr"
4068
  msgstr "Grecia"
4069
 
4070
  # Greenland
4071
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4072
  msgid "c-gl"
4073
  msgstr "Groenlandia"
4074
 
4075
  # Grenada
4076
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4077
  msgid "c-gd"
4078
  msgstr "Grenada"
4079
 
4080
  # Guadeloupe (French)
4081
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4082
  msgid "c-gp"
4083
  msgstr "Guadalupe"
4084
 
4085
  # Guatemala
4086
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4087
  msgid "c-gt"
4088
  msgstr "Guatemala"
4089
 
4090
  # Guinea
4091
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4092
  msgid "c-gn"
4093
  msgstr "Guinea"
4094
 
4095
  # Guinea Bissau
4096
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4097
  msgid "c-gw"
4098
  msgstr "Guinea Bissau"
4099
 
4100
  # Guyana
4101
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4102
  msgid "c-gy"
4103
  msgstr "Guyana"
4104
 
4105
  # Haiti
4106
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4107
  msgid "c-ht"
4108
  msgstr "Haiti"
4109
 
4110
  # Honduras
4111
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4112
  msgid "c-hn"
4113
  msgstr "Honduras"
4114
 
4115
  # Hong Kong
4116
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4117
  msgid "c-hk"
4118
  msgstr "Hong Kong"
4119
 
4120
  # Hungary
4121
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4122
  msgid "c-hu"
4123
  msgstr "Ungheria"
4124
 
4125
  # Iceland
4126
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4127
  msgid "c-is"
4128
  msgstr "Islanda"
4129
 
4130
  # India
4131
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4132
  msgid "c-in"
4133
  msgstr "India"
4134
 
4135
  # Indonesia
4136
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4137
  msgid "c-id"
4138
  msgstr "Indonesia"
4139
 
4140
  # Iran
4141
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4142
  msgid "c-ir"
4143
  msgstr "Iran"
4144
 
4145
  # Iraq
4146
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4147
  msgid "c-iq"
4148
  msgstr "Iraq"
4149
 
4150
  # Ireland
4151
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4152
  msgid "c-ie"
4153
  msgstr "Irlanda"
4154
 
4155
  # Israel
4156
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4157
  msgid "c-il"
4158
  msgstr "Israele"
4159
 
4160
  # Italy
4161
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4162
  msgid "c-it"
4163
  msgstr "Italia"
4164
 
4165
  # Jamaica
4166
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4167
  msgid "c-jm"
4168
  msgstr "Giamaica"
4169
 
4170
  # Japan
4171
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4172
  msgid "c-jp"
4173
  msgstr "Giappone"
4174
 
4175
  # Jordan
4176
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4177
  msgid "c-jo"
4178
  msgstr "Giordania"
4179
 
4180
  # Kazakhstan
4181
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4182
  msgid "c-kz"
4183
  msgstr "Kazakistan"
4184
 
4185
  # Kenya
4186
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4187
  msgid "c-ke"
4188
  msgstr "Kenia"
4189
 
4190
  # Nauru
4191
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4192
  msgid "c-nr"
4193
  msgstr "Nauru"
4194
 
4195
  # North Korea
4196
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4197
  msgid "c-kp"
4198
  msgstr "Corea del Nord"
4199
 
4200
  # South Korea
4201
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4202
  msgid "c-kr"
4203
  msgstr "Corea del Sud"
4204
 
4205
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4206
  msgid "c-kv"
4207
  msgstr "Kossovo"
4208
 
4209
  # Kuwait
4210
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4211
  msgid "c-kw"
4212
  msgstr "Kuwait"
4213
 
4214
  # Kyrgyz Republic (Kyrgyzstan)
4215
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4216
  msgid "c-kg"
4217
  msgstr "Kyrgyzstan"
4218
 
4219
  # Laos
4220
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4221
  msgid "c-la"
4222
  msgstr "Laos"
4223
 
4224
  # Latvia
4225
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4226
  msgid "c-lv"
4227
  msgstr "Latvia"
4228
 
4229
  # Lebanon
4230
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4231
  msgid "c-lb"
4232
  msgstr "Libano"
4233
 
4234
  # Lesotho
4235
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4236
  msgid "c-ls"
4237
  msgstr "Lesotho"
4238
 
4239
  # Liberia
4240
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4241
  msgid "c-lr"
4242
  msgstr "Liberia"
4243
 
4244
  # Libya
4245
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4246
  msgid "c-ly"
4247
  msgstr "Libia"
4248
 
4249
  # Liechtenstein
4250
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4251
  msgid "c-li"
4252
  msgstr "Liechtenstein"
4253
 
4254
  # Lithuania
4255
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4256
  msgid "c-lt"
4257
  msgstr "Lituania"
4258
 
4259
  # Luxembourg
4260
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4261
  msgid "c-lu"
4262
  msgstr "Lussemburgo"
4263
 
4264
  # Macedonia
4265
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4266
  msgid "c-mk"
4267
  msgstr "Macedonia"
4268
 
4269
  # Madagascar
4270
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4271
  msgid "c-mg"
4272
  msgstr "Madagascar"
4273
 
4274
  # Malawi
4275
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4276
  msgid "c-mw"
4277
  msgstr "Malawi"
4278
 
4279
  # Malaysia
4280
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4281
  msgid "c-my"
4282
  msgstr "Malesia"
4283
 
4284
  # Mali
4285
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4286
  msgid "c-ml"
4287
  msgstr "Mali"
4288
 
4289
  # Malta
4290
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4291
  msgid "c-mt"
4292
  msgstr "Malta"
4293
 
4294
  # Martinique (French)
4295
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4296
  msgid "c-mq"
4297
  msgstr "Martinica"
4298
 
4299
  # Mauritania
4300
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4301
  msgid "c-mr"
4302
  msgstr "Mauritania"
4303
 
4304
  # Mauritius
4305
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4306
  msgid "c-mu"
4307
  msgstr "Mauritius"
4308
 
4309
  # Mexico
4310
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4311
  msgid "c-mx"
4312
  msgstr "Messico"
4313
 
4314
  # Moldavia
4315
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4316
  msgid "c-md"
4317
  msgstr "Moldavia"
4318
 
4319
  # Mongolia
4320
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4321
  msgid "c-mn"
4322
  msgstr "Mongolia"
4323
 
4324
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4325
  msgid "c-me"
4326
  msgstr "Montenegro"
4327
 
4328
  # Montserrat
4329
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4330
  msgid "c-ms"
4331
  msgstr "Montserrat"
4332
 
4333
  # Morocco
4334
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4335
  msgid "c-ma"
4336
  msgstr "Marocco"
4337
 
4338
  # Mozambique
4339
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4340
  msgid "c-mz"
4341
  msgstr "Mozambico"
4342
 
4343
  # Myanmar
4344
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4345
  msgid "c-mm"
4346
  msgstr "Birmania"
4347
 
4348
  # Namibia
4349
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4350
  msgid "c-na"
4351
  msgstr "Namibia"
4352
 
4353
  # Nepal
4354
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4355
  msgid "c-np"
4356
  msgstr "Nepal"
4357
 
4358
  # Netherlands
4359
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4360
  msgid "c-nl"
4361
  msgstr "Olanda"
4362
 
4363
  # New Caledonia (French)
4364
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4365
  msgid "c-nc"
4366
  msgstr "Nuova Caledonia"
4367
 
4368
  # New Zealand
4369
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4370
  msgid "c-nz"
4371
  msgstr "Nuova Zelanda"
4372
 
4373
  # Nicaragua
4374
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4375
  msgid "c-ni"
4376
  msgstr "Nicaragua"
4377
 
4378
  # Niger
4379
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4380
  msgid "c-ne"
4381
  msgstr "Nigeria"
4382
 
4383
  # Nigeria
4384
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4385
  msgid "c-ng"
4386
  msgstr "Nigeria"
4387
 
4388
  # Norway
4389
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4390
  msgid "c-no"
4391
  msgstr "Norvegia"
4392
 
4393
  # Oman
4394
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4395
  msgid "c-om"
4396
  msgstr "Oman"
4397
 
4398
  # Pakistan
4399
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4400
  msgid "c-pk"
4401
  msgstr "Pakistan"
4402
 
4403
  # Palau
4404
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4405
  msgid "c-pw"
4406
  msgstr "Palau"
4407
 
4408
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4409
  msgid "c-ps"
4410
  msgstr "Stato della Palestina"
4411
 
4412
  # Panama
4413
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4414
  msgid "c-pa"
4415
  msgstr "Panama"
4416
 
4417
  # Papua New Guinea
4418
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4419
  msgid "c-pg"
4420
  msgstr "Papua Nuova Guinea"
4421
 
4422
  # Paraguay
4423
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4424
  msgid "c-py"
4425
  msgstr "Paraguay"
4426
 
4427
  # Peru
4428
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4429
  msgid "c-pe"
4430
  msgstr "Peru"
4431
 
4432
  # Philippines
4433
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4434
  msgid "c-ph"
4435
  msgstr "Filippine"
4436
 
4437
  # Poland
4438
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4439
  msgid "c-pl"
4440
  msgstr "Polonia"
4441
 
4442
  # Portugal
4443
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4444
  msgid "c-pt"
4445
  msgstr "Portogallo"
4446
 
4447
  # Puerto Rico
4448
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4449
  msgid "c-pr"
4450
  msgstr "Porto Rico"
4451
 
4452
  # Qatar
4453
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4454
  msgid "c-qa"
4455
  msgstr "Qatar"
4456
 
4457
  # Reunion (French)
4458
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4459
  msgid "c-re"
4460
  msgstr "Reunion"
4461
 
4462
  # Romania
4463
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4464
  msgid "c-ro"
4465
  msgstr "Romania"
4466
 
4467
  # Russian Federation
4468
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4469
  msgid "c-ru"
4470
  msgstr "Russia"
4471
 
4472
  # Rwanda
4473
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4474
  msgid "c-rw"
4475
  msgstr "Ruanda"
4476
 
4477
  # Saint Kitts & Nevis Anguilla
4478
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4479
  msgid "c-kn"
4480
  msgstr "Saint Kitts e Nevis Anguilla"
4481
 
4482
  # Saint Lucia
4483
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4484
  msgid "c-lc"
4485
  msgstr "Santa Lucia"
4486
 
4487
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4488
  msgid "c-mf"
4489
  msgstr "San Martino"
4490
 
4491
  # Saint Vincent & Grenadines
4492
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4493
  msgid "c-vc"
4494
  msgstr "Saint Vincent e Grenadines"
4495
 
4496
  # Samoa
4497
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4498
  msgid "c-ws"
4499
  msgstr "Samoa"
4500
 
4501
  # Saint Tome (Sao Tome) and Principe
4502
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4503
  msgid "c-st"
4504
  msgstr "Sao Tome"
4505
 
4506
  # Saudi Arabia
4507
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4508
  msgid "c-sa"
4509
  msgstr "Arabia Saudita"
4510
 
4511
  # Senegal
4512
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4513
  msgid "c-sn"
4514
  msgstr "Senegal"
4515
 
4516
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4517
  msgid "c-rs"
4518
  msgstr "Serbia"
4519
 
4520
  # Sierra Leone
4521
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4522
  msgid "c-sl"
4523
  msgstr "Sierra Leone"
4524
 
4525
  # Singapore
4526
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4527
  msgid "c-sg"
4528
  msgstr "Singapore"
4529
 
4530
  # Slovak Republic
4531
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4532
  msgid "c-sk"
4533
  msgstr "Slovacchia"
4534
 
4535
  # Slovenia
4536
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4537
  msgid "c-si"
4538
  msgstr "Slovenia"
4539
 
4540
  # Solomon Islands
4541
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4542
  msgid "c-sb"
4543
  msgstr "Isole Salomone"
4544
 
4545
  # Somalia
4546
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4547
  msgid "c-so"
4548
  msgstr "Somalia"
4549
 
4550
  # South Africa
4551
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4552
  msgid "c-za"
4553
  msgstr "Sud Africa"
4554
 
4555
  # S. Georgia & S. Sandwich Isls.
4556
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4557
  msgid "c-gs"
4558
  msgstr "S. Georgia e S. Sandwich"
4559
 
4560
  # Spain
4561
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4562
  msgid "c-es"
4563
  msgstr "Spagna"
4564
 
4565
  # Sri Lanka
4566
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4567
  msgid "c-lk"
4568
  msgstr "Sri Lanka"
4569
 
4570
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4571
+ msgid "c-sc"
4572
+ msgstr "Seychelles"
4573
+
4574
  # Sudan
4575
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4576
  msgid "c-sd"
4577
  msgstr "Sudan"
4578
 
4579
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4580
  msgid "c-ss"
4581
  msgstr "Sud Sudan"
4582
 
4583
  # Suriname
4584
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4585
  msgid "c-sr"
4586
  msgstr "Suriname"
4587
 
4588
  # Svalbard and Jan Mayen Islands
4589
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4590
  msgid "c-sj"
4591
  msgstr "Svalbard and Jan Mayen"
4592
 
4593
  # Swaziland
4594
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4595
  msgid "c-sz"
4596
  msgstr "Swaziland"
4597
 
4598
  # Sweden
4599
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4600
  msgid "c-se"
4601
  msgstr "Svezia"
4602
 
4603
  # Switzerland
4604
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4605
  msgid "c-ch"
4606
  msgstr "Svizzera"
4607
 
4608
  # Syria
4609
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4610
  msgid "c-sy"
4611
  msgstr "Siria"
4612
 
4613
  # Taiwan
4614
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4615
  msgid "c-tw"
4616
  msgstr "Taiwan"
4617
 
4618
  # Tadjikistan
4619
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4620
  msgid "c-tj"
4621
  msgstr "Tadjikistan"
4622
 
4623
  # Tanzania
4624
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4625
  msgid "c-tz"
4626
  msgstr "Tanzania"
4627
 
4628
  # Thailand
4629
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4630
  msgid "c-th"
4631
  msgstr "Tailandia"
4632
 
4633
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4634
  msgid "c-tl"
4635
  msgstr "Timor-Leste"
4636
 
4637
  # Togo
4638
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4639
  msgid "c-tg"
4640
  msgstr "Togo"
4641
 
4642
  # Tonga
4643
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4644
  msgid "c-to"
4645
  msgstr "Tonga"
4646
 
4647
  # Trinidad and Tobago
4648
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4649
  msgid "c-tt"
4650
  msgstr "Trinidad e Tobago"
4651
 
4652
  # Tunisia
4653
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4654
  msgid "c-tn"
4655
  msgstr "Tunisia"
4656
 
4657
  # Turkey
4658
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4659
  msgid "c-tr"
4660
  msgstr "Turchia"
4661
 
4662
  # Turkmenistan
4663
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4664
  msgid "c-tm"
4665
  msgstr "Turkmenistan"
4666
 
4667
  # Turks and Caicos Islands
4668
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4669
  msgid "c-tc"
4670
  msgstr "Isole Caicos"
4671
 
4672
  # Uganda
4673
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4674
  msgid "c-ug"
4675
  msgstr "Uganda"
4676
 
4677
  # Ukraine
4678
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4679
  msgid "c-ua"
4680
  msgstr "Ucraina"
4681
 
4682
  # United Arab Emirates
4683
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4684
  msgid "c-ae"
4685
  msgstr "Emirati Arabi"
4686
 
4687
  # Great Britain
4688
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4689
  msgid "c-gb"
4690
  msgstr "Gran Bretagna"
4691
 
4692
  # United States
4693
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4694
  msgid "c-us"
4695
  msgstr "Stati Uniti"
4696
 
4697
  # Uruguay
4698
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4699
  msgid "c-uy"
4700
  msgstr "Uruguay"
4701
 
4702
  # Uzbekistan
4703
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4704
  msgid "c-uz"
4705
  msgstr "Uzbekistan"
4706
 
4707
  # Vanuatu
4708
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4709
  msgid "c-vu"
4710
  msgstr "Vanuatu"
4711
 
4712
  # Venezuela
4713
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4714
  msgid "c-ve"
4715
  msgstr "Venezuela"
4716
 
4717
  # Vietnam
4718
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4719
  msgid "c-vn"
4720
  msgstr "Vietnam"
4721
 
4722
  # Virgin Islands (British)
4723
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4724
  msgid "c-vg"
4725
  msgstr "Isole Vergini (GB)"
4726
 
4727
  # Virgin Islands (USA)
4728
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4729
  msgid "c-vi"
4730
  msgstr "Isole Vergini (USA)"
4731
 
4732
  # Western Sahara
4733
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4734
  msgid "c-eh"
4735
  msgstr "Sahara Occ"
4736
 
4737
  # Yemen
4738
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4739
  msgid "c-ye"
4740
  msgstr "Yemen"
4741
 
4742
  # Zambia
4743
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4744
  msgid "c-zm"
4745
  msgstr "Zambia"
4746
 
4747
  # Zimbabwe
4748
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4749
  msgid "c-zw"
4750
  msgstr "Zimbabwe"
4751
 
4752
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4753
  msgid "c-gg"
4754
  msgstr "Guernsey"
4755
 
4756
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4757
  msgid "c-je"
4758
  msgstr "Jersey"
4759
 
4760
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4761
  msgid "c-im"
4762
  msgstr "Isola di Man"
4763
 
4764
  # Maldives
4765
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4766
  msgid "c-mv"
4767
  msgstr "Maldive"
4768
 
4769
+ #: ../../admin/view/wp-slimstat-reports.php:1024
4770
  msgid "c-eu"
4771
+ msgstr "Europa"
4772
 
4773
+ #: ../../admin/view/wp-slimstat-reports.php:1113
4774
  msgid ""
4775
  "This value includes not only posts, but also custom post types, regardless "
4776
  "of their status"
4777
  msgstr ""
4778
 
4779
+ #: ../../admin/view/wp-slimstat-reports.php:1114
4780
  msgid "Content Items"
4781
  msgstr "Articoli"
4782
 
4783
+ #: ../../admin/view/wp-slimstat-reports.php:1115
4784
  msgid "Total Comments"
4785
  msgstr ""
4786
 
4787
+ #: ../../admin/view/wp-slimstat-reports.php:1116
4788
  msgid "Pingbacks"
4789
+ msgstr "Pingback"
4790
 
4791
+ #: ../../admin/view/wp-slimstat-reports.php:1117
4792
  msgid "Trackbacks"
4793
+ msgstr "Trackback"
4794
 
4795
+ #: ../../admin/view/wp-slimstat-reports.php:1118
4796
  msgid "Longest Post (ID)"
4797
  msgstr "ID del post pi&ugrave; lungo"
4798
 
4799
+ #: ../../admin/view/wp-slimstat-reports.php:1119
4800
  msgid "Longest Comment (ID)"
4801
  msgstr ""
4802
 
4803
+ #: ../../admin/view/wp-slimstat-reports.php:1120
4804
  msgid "Avg Comments Per Post"
4805
  msgstr "Commenti medi per post"
4806
 
4807
+ #: ../../admin/view/wp-slimstat-reports.php:1121
4808
  msgid "Avg Posts Per Day"
4809
  msgstr ""
4810
 
4811
+ #: ../../admin/view/wp-slimstat-reports.php:1149
4812
  msgid "Visits"
4813
  msgstr "Visite"
4814
 
4815
+ #: ../../admin/view/wp-slimstat-reports.php:1153
4816
  msgid "Domains"
4817
  msgstr "Domini"
4818
 
4819
+ #: ../../admin/view/wp-slimstat-reports.php:1158
4820
+ msgid "Avg Pageviews"
4821
+ msgstr "Media accessi"
4822
+
4823
+ #~ msgid "Chart Annotations"
4824
+ #~ msgstr "Annotazioni sui grafici"
4825
+
4826
  #~ msgid "Stats"
4827
  #~ msgstr "Statistiche"
4828
 
4881
  #~ msgid "Store Data For"
4882
  #~ msgstr "Conserva dati per"
4883
 
 
 
 
4884
  #, fuzzy
4885
  #~ msgid "Right Now Rows"
4886
  #~ msgstr "In questo momento"
admin/lang/wp-slimstat-ru_RU.mo CHANGED
Binary file
admin/lang/wp-slimstat-ru_RU.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat 3.5\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-12-30 22:37-0500\n"
6
- "PO-Revision-Date: 2013-12-30 22:37-0500\n"
7
- "Last-Translator: get used to it <support@getused.to.it>\n"
8
  "Language-Team: Виталий МакЛауд <http://www.visbiz.org/?page_id=324>\n"
9
  "Language: ru\n"
10
  "MIME-Version: 1.0\n"
@@ -14,100 +14,104 @@ msgstr ""
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
16
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
17
- "X-Generator: Poedit 1.5.5\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
  "X-Poedit-SearchPath-0: ../..\n"
20
 
21
- #: ../../wp-slimstat.php:1175 ../../admin/wp-slimstat-admin.php:396
22
- #: ../../admin/view/wp-slimstat-reports.php:32
23
  msgid "Right Now"
24
  msgstr "Активность"
25
 
26
- #: ../../wp-slimstat.php:1176 ../../admin/wp-slimstat-admin.php:397
27
- #: ../../admin/wp-slimstat-admin.php:414
28
- #: ../../admin/view/wp-slimstat-reports.php:33
29
  msgid "Overview"
30
  msgstr "Общий обзор"
31
 
32
- #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:398
33
- #: ../../admin/wp-slimstat-admin.php:415
34
- #: ../../admin/view/wp-slimstat-reports.php:34
35
  msgid "Visitors"
36
  msgstr "Посетители"
37
 
38
- #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:399
39
- #: ../../admin/wp-slimstat-admin.php:416
40
- #: ../../admin/view/wp-slimstat-reports.php:35
41
  msgid "Content"
42
  msgstr "Содержание сайта"
43
 
44
- #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:400
45
- #: ../../admin/wp-slimstat-admin.php:417 ../../admin/view/index.php:160
46
- #: ../../admin/view/wp-slimstat-reports.php:36
47
  msgid "Traffic Sources"
48
  msgstr "Источники трафика"
49
 
50
- #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:401
51
- #: ../../admin/wp-slimstat-admin.php:418
52
- #: ../../admin/view/wp-slimstat-reports.php:37
53
- #: ../../admin/view/wp-slimstat-reports.php:142
54
  msgid "World Map"
55
  msgstr "Карта мира"
56
 
57
- #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:402
58
- #: ../../admin/wp-slimstat-admin.php:419
59
- #: ../../admin/view/wp-slimstat-reports.php:38
60
  msgid "Custom Reports"
61
  msgstr "Пользовательский отчет"
62
 
63
- #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:403
64
- #: ../../admin/wp-slimstat-admin.php:420 ../../admin/config/addons.php:29
65
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:228
66
  msgid "Add-ons"
67
  msgstr "Дополнения"
68
 
69
- #: ../../wp-slimstat.php:1185 ../../admin/wp-slimstat-admin.php:449
70
- #: ../../admin/wp-slimstat-admin.php:452 ../../admin/wp-slimstat-admin.php:496
71
- #: ../../admin/wp-slimstat-admin.php:499 ../../admin/config/index.php:14
72
- #: ../../admin/config/index.php:134
73
  msgid "Settings"
74
  msgstr "Настройки"
75
 
76
- #: ../../admin/wp-slimstat-admin.php:395 ../../admin/wp-slimstat-admin.php:407
77
- #: ../../admin/wp-slimstat-admin.php:410
78
  msgid "SlimStat"
79
  msgstr "SlimStat"
80
 
81
- #: ../../admin/wp-slimstat-admin.php:513
82
  msgid "Pageviews in the last 365 days"
83
  msgstr ""
84
 
85
- #: ../../admin/wp-slimstat-admin.php:537
86
  msgid "Show on screen"
87
  msgstr "Показать на экране"
88
 
89
- #: ../../admin/wp-slimstat-admin.php:584
 
 
 
 
90
  msgid "There was an error updating the following options:"
91
  msgstr "Возникла ошибка при обновлении следующих настроек:"
92
 
93
- #: ../../admin/wp-slimstat-admin.php:587
94
  msgid "Your settings have been successfully updated."
95
  msgstr "Ваши настройки были успешно обновлены."
96
 
97
- #: ../../admin/wp-slimstat-admin.php:610
98
  msgid "Save Changes"
99
  msgstr "Сохранить изменения"
100
 
101
- #: ../../admin/wp-slimstat-admin.php:629
102
  msgid "Yes"
103
  msgstr "Да"
104
 
105
- #: ../../admin/wp-slimstat-admin.php:630
106
- #: ../../admin/view/wp-slimstat-reports.php:656
107
  msgid "No"
108
  msgstr "Нет"
109
 
110
- #: ../../admin/wp-slimstat-admin.php:670
111
  msgid ""
112
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
113
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
@@ -119,15 +123,15 @@ msgstr ""
119
  "\"_blank\" href=\"http://wordpress.org/extend/plugins/wp-slimstat/faq/"
120
  "\">проверьте ЧаВо</a> для дополнительной информации."
121
 
122
- #: ../../admin/wp-slimstat-admin.php:690
123
  msgid "Definitions"
124
  msgstr "Определения"
125
 
126
- #: ../../admin/wp-slimstat-admin.php:693
127
  msgid "Pageview"
128
  msgstr "Просмотр"
129
 
130
- #: ../../admin/wp-slimstat-admin.php:693
131
  msgid ""
132
  "A request to load a single HTML file (\"page\"). This should be contrasted "
133
  "with a \"hit\", which refers to a request for any file from a web server. WP "
@@ -138,11 +142,11 @@ msgstr ""
138
  "сервера. WP SlimStat записывает просмотры страниц каждый раз, когда "
139
  "выполняется код отслеживания."
140
 
141
- #: ../../admin/wp-slimstat-admin.php:694
142
  msgid "(Human) Visit"
143
  msgstr "Посетитель"
144
 
145
- #: ../../admin/wp-slimstat-admin.php:694
146
  msgid ""
147
  "A period of interaction between a visitor's browser and your website, ending "
148
  "when the browser is closed or when the user has been inactive on that site "
@@ -152,12 +156,12 @@ msgstr ""
152
  "при закрытии его браузера или когда пользователь будет неактивен на этом "
153
  "сайте в течение 30 минут"
154
 
155
- #: ../../admin/wp-slimstat-admin.php:695 ../../admin/view/index.php:132
156
- #: ../../admin/view/right-now.php:148
157
  msgid "Known Visitor"
158
  msgstr "Известный пользователь"
159
 
160
- #: ../../admin/wp-slimstat-admin.php:695
161
  msgid ""
162
  "Any user who has left a comment on your blog, and is thus identified by "
163
  "Wordpress as a returning visitor"
@@ -165,11 +169,11 @@ msgstr ""
165
  "Любой пользователь, который оставил комментарий в вашем блоге, и, таким "
166
  "образом, определен Wordpress в качестве вернувшегося посетителя"
167
 
168
- #: ../../admin/wp-slimstat-admin.php:696
169
  msgid "Unique IP"
170
  msgstr "Уникальный IP"
171
 
172
- #: ../../admin/wp-slimstat-admin.php:696
173
  msgid ""
174
  "Used to differentiate between multiple requests to download a file from one "
175
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -181,13 +185,12 @@ msgstr ""
181
  "проводится на основании только адреса в Интернете, это полезное, но не "
182
  "идеальное решение"
183
 
184
- #: ../../admin/wp-slimstat-admin.php:697 ../../admin/wp-slimstat-admin.php:739
185
- #: ../../admin/view/right-now.php:98
186
- #: ../../admin/view/wp-slimstat-reports.php:64
187
  msgid "Originating IP"
188
  msgstr "Настоящий IP"
189
 
190
- #: ../../admin/wp-slimstat-admin.php:697
191
  msgid ""
192
  "the originating IP address of a client connecting to a web server through an "
193
  "HTTP proxy or load balancer"
@@ -195,11 +198,11 @@ msgstr ""
195
  "исходный IP клиента, который подключается к серверу через HTTP прокси или "
196
  "систему распределения нагрузки"
197
 
198
- #: ../../admin/wp-slimstat-admin.php:698
199
  msgid "Direct Traffic"
200
  msgstr "Прямой трафик"
201
 
202
- #: ../../admin/wp-slimstat-admin.php:698
203
  msgid ""
204
  "All those people showing up to your Web site by typing in the URL of your "
205
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -209,11 +212,11 @@ msgstr ""
209
  "сайта или пришедшие с закладки; некоторые также называют это 'трафик по "
210
  "умолчанию' или 'внешний трафик'."
211
 
212
- #: ../../admin/wp-slimstat-admin.php:699
213
  msgid "Search Engine"
214
  msgstr "Поисковая система"
215
 
216
- #: ../../admin/wp-slimstat-admin.php:699
217
  msgid ""
218
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
219
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -221,23 +224,22 @@ msgstr ""
221
  "Google, Yahoo, MSN, Ask, другие; этот набор будет включать как ваш обычный, "
222
  "так и ваш платный (PPC/SEM) трафик, так что будьте в курсе этого"
223
 
224
- #: ../../admin/wp-slimstat-admin.php:700 ../../admin/wp-slimstat-admin.php:716
225
- #: ../../admin/view/right-now.php:127
226
- #: ../../admin/view/wp-slimstat-reports.php:45
227
  msgid "Search Terms"
228
  msgstr "Поисковые запросы"
229
 
230
- #: ../../admin/wp-slimstat-admin.php:700 ../../admin/wp-slimstat-admin.php:716
231
  msgid "Keywords used by your visitors to find your website on a search engine"
232
  msgstr ""
233
  "Ключевые слова, которыми пользуются посетители, чтобы найти ваш сайт в "
234
  "поисковой системе"
235
 
236
- #: ../../admin/wp-slimstat-admin.php:701
237
  msgid "SERP"
238
  msgstr "Страница результатов поиска"
239
 
240
- #: ../../admin/wp-slimstat-admin.php:701
241
  msgid ""
242
  "Short for search engine results page, the Web page that a search engine "
243
  "returns with the results of its search. The value shown represents your rank "
@@ -247,12 +249,12 @@ msgstr ""
247
  "система возвращает с результатами поиска. Показанное значение означает ваше "
248
  "положение в этом списке результатов"
249
 
250
- #: ../../admin/wp-slimstat-admin.php:702
251
- #: ../../admin/view/wp-slimstat-reports.php:57
252
  msgid "User Agent"
253
  msgstr "Клиентское приложение"
254
 
255
- #: ../../admin/wp-slimstat-admin.php:702
256
  msgid ""
257
  "Any program used for accessing a website; this includes browsers, robots, "
258
  "spiders and any other program that was used to retrieve information from the "
@@ -262,12 +264,12 @@ msgstr ""
262
  "себя браузеры, боты, поисковые роботы и любые другие программы, которые были "
263
  "использованы для получения информации с сайта"
264
 
265
- #: ../../admin/wp-slimstat-admin.php:703
266
- #: ../../admin/view/wp-slimstat-reports.php:61
267
  msgid "Outbound Link"
268
  msgstr "Внешняя ссылка"
269
 
270
- #: ../../admin/wp-slimstat-admin.php:703
271
  msgid ""
272
  "A link from one domain to another is said to be outbound from its source "
273
  "anchor and inbound to its target. This report lists all the links to other "
@@ -276,44 +278,44 @@ msgstr ""
276
  "В этом отчете перечислены все ссылки на другие сайты, на которые ушли ваши "
277
  "посетители."
278
 
279
- #: ../../admin/wp-slimstat-admin.php:710
280
  msgid "Basic Filters"
281
  msgstr "Основные фильтры"
282
 
283
- #: ../../admin/wp-slimstat-admin.php:713
284
- #: ../../admin/view/wp-slimstat-reports.php:42
285
  msgid "Browser"
286
  msgstr "Обозреватель"
287
 
288
- #: ../../admin/wp-slimstat-admin.php:713
289
  msgid "User agent (Firefox, Chrome, ...)"
290
  msgstr "Клиентское приложение (Firefox, Chrome, ...)"
291
 
292
- #: ../../admin/wp-slimstat-admin.php:714
293
- #: ../../admin/view/wp-slimstat-reports.php:43
294
- #: ../../admin/view/wp-slimstat-reports.php:482
295
  msgid "Country Code"
296
  msgstr "Код страны"
297
 
298
- #: ../../admin/wp-slimstat-admin.php:714
299
  msgid "2-letter code (us, ru, de, it, ...)"
300
  msgstr "2-буквенный код (us, ru, de, it, ...)"
301
 
302
- #: ../../admin/wp-slimstat-admin.php:715
303
  msgid "IP"
304
  msgstr "IP"
305
 
306
- #: ../../admin/wp-slimstat-admin.php:715
307
  msgid "Visitor's public IP address"
308
  msgstr "Публичный IP посетителя"
309
 
310
- #: ../../admin/wp-slimstat-admin.php:717
311
- #: ../../admin/view/wp-slimstat-reports.php:46
312
- #: ../../admin/view/wp-slimstat-reports.php:494
313
  msgid "Language Code"
314
  msgstr "Код языка"
315
 
316
- #: ../../admin/wp-slimstat-admin.php:717
317
  msgid ""
318
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
319
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -323,12 +325,12 @@ msgstr ""
323
  "com/en-us/library/ee825488(v=cs.20).aspx\">страницу 'Правильность "
324
  "отображения языков'</a> - (первая колонка) для дополнительной информации."
325
 
326
- #: ../../admin/wp-slimstat-admin.php:718
327
- #: ../../admin/view/wp-slimstat-reports.php:47
328
  msgid "Operating System"
329
  msgstr "Операционная система"
330
 
331
- #: ../../admin/wp-slimstat-admin.php:718
332
  msgid ""
333
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
334
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -338,30 +340,30 @@ msgstr ""
338
  "target=\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php"
339
  "\">эту страницу руководства</a> для дополнительной информации."
340
 
341
- #: ../../admin/wp-slimstat-admin.php:719
342
- #: ../../admin/view/wp-slimstat-reports.php:48
343
  msgid "Permalink"
344
  msgstr "Постоянная ссылка"
345
 
346
- #: ../../admin/wp-slimstat-admin.php:719
347
  msgid "URL accessed on your site"
348
  msgstr "Посещенная страница на вашем сайте"
349
 
350
- #: ../../admin/wp-slimstat-admin.php:720
351
- #: ../../admin/view/wp-slimstat-reports.php:50
352
  msgid "Referer"
353
  msgstr "Источник запроса"
354
 
355
- #: ../../admin/wp-slimstat-admin.php:720
356
  msgid "Complete address of the referrer page"
357
  msgstr "Полный адрес источника запроса"
358
 
359
- #: ../../admin/wp-slimstat-admin.php:721
360
- #: ../../admin/view/wp-slimstat-reports.php:51
361
  msgid "Visitor's Name"
362
  msgstr "Имя посетителя"
363
 
364
- #: ../../admin/wp-slimstat-admin.php:721
365
  msgid ""
366
  "Visitors' names according to the cookie set by Wordpress after they leave a "
367
  "comment"
@@ -369,25 +371,25 @@ msgstr ""
369
  "Имена посетителей в соответствии с установленным Wordpress cookie после того "
370
  "как они оставить комментарий"
371
 
372
- #: ../../admin/wp-slimstat-admin.php:729
373
  msgid "Advanced Filters"
374
  msgstr "Расширенные фильтры"
375
 
376
- #: ../../admin/wp-slimstat-admin.php:732
377
- #: ../../admin/view/wp-slimstat-reports.php:55
378
  msgid "Browser Version"
379
  msgstr "Версия браузера"
380
 
381
- #: ../../admin/wp-slimstat-admin.php:732
382
  msgid "user agent version (9.0, 11, ...)"
383
  msgstr "версия клиентского приложения (9.0, 11, ...)"
384
 
385
- #: ../../admin/wp-slimstat-admin.php:733
386
- #: ../../admin/view/wp-slimstat-reports.php:56
387
  msgid "Browser Type"
388
  msgstr "Тип браузера"
389
 
390
- #: ../../admin/wp-slimstat-admin.php:733
391
  msgid ""
392
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
393
  "all others"
@@ -395,21 +397,21 @@ msgstr ""
395
  "1 = поисковый робот, 2 = мобильное устройство, 3 = читатель новостной ленты, "
396
  "0 = все остальные"
397
 
398
- #: ../../admin/wp-slimstat-admin.php:734
399
- #: ../../admin/view/wp-slimstat-reports.php:58
400
  msgid "Color Depth"
401
  msgstr "Глубина цвета"
402
 
403
- #: ../../admin/wp-slimstat-admin.php:734
404
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
405
  msgstr "глубина цвета экрана посетителя (8, 16, 24, ...)"
406
 
407
- #: ../../admin/wp-slimstat-admin.php:735
408
- #: ../../admin/view/wp-slimstat-reports.php:59
409
  msgid "CSS Version"
410
  msgstr "Версия CSS"
411
 
412
- #: ../../admin/wp-slimstat-admin.php:735
413
  msgid ""
414
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
415
  "values)"
@@ -417,12 +419,12 @@ msgstr ""
417
  "стандарт CSS, который поддерживался тем браузером (1, 2, 3 и другие целые "
418
  "числа)"
419
 
420
- #: ../../admin/wp-slimstat-admin.php:736
421
- #: ../../admin/view/wp-slimstat-reports.php:60
422
  msgid "Pageview Attributes"
423
  msgstr "Атрибуты просмотра"
424
 
425
- #: ../../admin/wp-slimstat-admin.php:736
426
  msgid ""
427
  "this field is set to <em>[pre]</em> if the resource has been accessed "
428
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -433,34 +435,34 @@ msgstr ""
433
  "Link_prefetching_FAQ\">предварительную выборку для ссылки</a> или "
434
  "аналогичным методом"
435
 
436
- #: ../../admin/wp-slimstat-admin.php:737
437
- #: ../../admin/view/wp-slimstat-reports.php:62
438
  msgid "Post Author"
439
  msgstr "Автор записи"
440
 
441
- #: ../../admin/wp-slimstat-admin.php:737
442
  msgid "author associated to that post/page when the resource was accessed"
443
  msgstr "автор был связан с этой записью/страницей, когда ресурс был доступен"
444
 
445
- #: ../../admin/wp-slimstat-admin.php:738
446
- #: ../../admin/view/wp-slimstat-reports.php:63
447
  msgid "Post Category ID"
448
  msgstr "ID Категории записи"
449
 
450
- #: ../../admin/wp-slimstat-admin.php:738
451
  msgid "ID of the category/term associated to the resource, when available"
452
  msgstr "ID категории/термина, связанный с ресурсом, если такой имеется"
453
 
454
- #: ../../admin/wp-slimstat-admin.php:739
455
  msgid "visitor's originating IP address, if available"
456
  msgstr "настоящий IP посетителя, если возможно"
457
 
458
- #: ../../admin/wp-slimstat-admin.php:740
459
- #: ../../admin/view/wp-slimstat-reports.php:65
460
  msgid "Resource Content Type"
461
  msgstr "Тип содержания ресурса"
462
 
463
- #: ../../admin/wp-slimstat-admin.php:740
464
  msgid ""
465
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
466
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -474,21 +476,21 @@ msgstr ""
474
  "\"http://codex.wordpress.org/Conditional_Tags\"> Условные теги</a> за "
475
  "дополнительной информацией"
476
 
477
- #: ../../admin/wp-slimstat-admin.php:741
478
- #: ../../admin/view/wp-slimstat-reports.php:67
479
  msgid "Screen Resolution"
480
  msgstr "Разрешение экрана"
481
 
482
- #: ../../admin/wp-slimstat-admin.php:741
483
  msgid "viewport width and height (1024x768, 800x600, ...)"
484
  msgstr "просмотр ширины и высоты (1024x768, 800x600, ...)"
485
 
486
- #: ../../admin/wp-slimstat-admin.php:742
487
- #: ../../admin/view/wp-slimstat-reports.php:68
488
  msgid "Visit ID"
489
  msgstr "ID Посещения"
490
 
491
- #: ../../admin/wp-slimstat-admin.php:742
492
  msgid ""
493
  "generally used in conjunction with <em>is not empty</em>, identifies human "
494
  "visitors"
@@ -496,11 +498,11 @@ msgstr ""
496
  "как правило, используется в сочетании с <em>не пустой</em>, определяет "
497
  "настоящих посетителей"
498
 
499
- #: ../../admin/wp-slimstat-admin.php:743
500
  msgid "Date Filters"
501
  msgstr "Фильтры даты"
502
 
503
- #: ../../admin/wp-slimstat-admin.php:743
504
  msgid ""
505
  "you can specify the timeframe by entering a number in the <em>interval</em> "
506
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -510,11 +512,11 @@ msgstr ""
510
  "используется для указания <em>на сегодняшний день</em> (т.е. день=1, "
511
  "месяц=1, год=пустой, интервал=-1 задаст фильтрацию года к дате)"
512
 
513
- #: ../../admin/wp-slimstat-admin.php:744
514
  msgid "SERP Position"
515
  msgstr "Позиция поискового запроса"
516
 
517
- #: ../../admin/wp-slimstat-admin.php:744
518
  msgid ""
519
  "set the filter to Referer contains cd=N&, where N is the position you are "
520
  "looking for"
@@ -522,7 +524,7 @@ msgstr ""
522
  "установливает фильтр на источник запроса, который содержит cd=N&, где N "
523
  "является положением, которое вы ищете"
524
 
525
- #: ../../admin/wp-slimstat-admin.php:753
526
  msgid ""
527
  " And for keeping an eye on your visitors with <a href=\"http://slimstat."
528
  "getused.to.it/\">WP SlimStat</a>."
@@ -571,23 +573,23 @@ msgstr "Дополнение"
571
  msgid "Description"
572
  msgstr "Описание"
573
 
574
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:17
575
  msgid "General"
576
  msgstr "Общие"
577
 
578
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:43
579
  msgid "Views"
580
  msgstr "Просмотры"
581
 
582
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:63
583
  msgid "Filters"
584
  msgstr "Фильтры"
585
 
586
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:127
587
  msgid "Permissions"
588
  msgstr "Доступ"
589
 
590
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:204
591
  msgid "Advanced"
592
  msgstr "Расширенные"
593
 
@@ -595,15 +597,15 @@ msgstr "Расширенные"
595
  msgid "Maintenance"
596
  msgstr "Обслуживание"
597
 
598
- #: ../../admin/config/index.php:19 ../../admin/config/index.php:206
599
  msgid "Tracker"
600
  msgstr "Отслеживание"
601
 
602
- #: ../../admin/config/index.php:20
603
  msgid "Enable Tracking"
604
  msgstr "Включить отслеживание"
605
 
606
- #: ../../admin/config/index.php:20
607
  msgid ""
608
  "Turn the tracker on or off, but keep the reports accessible (which you would "
609
  "not have, if you just disabled the plugin)."
@@ -611,21 +613,21 @@ msgstr ""
611
  "Включите или выключите режим отслеживания, но сохраните отчеты доступними "
612
  "(которых бы у вас не было, если просто отключить плагин)."
613
 
614
- #: ../../admin/config/index.php:21
615
  msgid "Monitor Admin Pages"
616
  msgstr "Отслеживать страницы администратора"
617
 
618
- #: ../../admin/config/index.php:21
619
  msgid "Enable this option to track your users' activity within the admin."
620
  msgstr ""
621
  "Включите этот параметр, если вы хотите отслеживать активность ваших "
622
  "пользователей на страницах администрирования."
623
 
624
- #: ../../admin/config/index.php:22
625
  msgid "Enable Spy Mode"
626
  msgstr "Включить шпионский режим"
627
 
628
- #: ../../admin/config/index.php:22
629
  msgid ""
630
  "Collect information about screen resolutions, outbound links, downloads, "
631
  "etc. If Tracking Mode is set to Javascript, this data will be tracked "
@@ -635,11 +637,11 @@ msgstr ""
635
  "Если режим отслеживания установлен на JavaScript, эти данные будут "
636
  "отслеживаться независимо от значения, установленного для этой опции."
637
 
638
- #: ../../admin/config/index.php:23
639
  msgid "Tracking Mode"
640
  msgstr "Режим отслеживания"
641
 
642
- #: ../../admin/config/index.php:23
643
  msgid ""
644
  "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
645
  "Total Cache, WP SuperCache, HyperCache, etc). WP SlimStat will behave pretty "
@@ -654,23 +656,23 @@ msgstr ""
654
  "том, что <strong>большинство спамеров, поисковых систем и других сканеров</"
655
  "strong> не будут отслеживаться."
656
 
657
- #: ../../admin/config/index.php:23
658
  msgid "Javascript"
659
  msgstr "JavaScript"
660
 
661
- #: ../../admin/config/index.php:23
662
  msgid "Server-side"
663
  msgstr "Серверный"
664
 
665
- #: ../../admin/config/index.php:25
666
  msgid "WordPress Integration"
667
  msgstr "Интеграция WordPress"
668
 
669
- #: ../../admin/config/index.php:26
670
  msgid "Menu Position"
671
  msgstr "Позиция меню"
672
 
673
- #: ../../admin/config/index.php:26
674
  msgid ""
675
  "Choose between a standalone admin menu for WP SlimStat or a drop down in the "
676
  "admin bar (if visible)."
@@ -678,20 +680,20 @@ msgstr ""
678
  "Выбор между автономным меню администратора для WP SlimStat или выпадающим в "
679
  "админ-панели (если она видна)."
680
 
681
- #: ../../admin/config/index.php:26
682
  msgid "Side Menu"
683
  msgstr "Боковое меню"
684
 
685
- #: ../../admin/config/index.php:26
686
  msgid "Admin Bar"
687
  msgstr "Панель администратора"
688
 
689
- #: ../../admin/config/index.php:27
690
  #, fuzzy
691
  msgid "Add Stats to Posts"
692
  msgstr "Добавить столбик к записям"
693
 
694
- #: ../../admin/config/index.php:27
695
  #, fuzzy
696
  msgid ""
697
  "Add a new column to the Edit Posts screen, with the number of hits per post."
@@ -699,15 +701,15 @@ msgstr ""
699
  "Добавляет новый столбец к экрану редактирования сообщений с количеством "
700
  "просмотров записи (может замедлить визуализацию страниц)."
701
 
702
- #: ../../admin/config/index.php:29
703
  msgid "Database"
704
  msgstr "База данных"
705
 
706
- #: ../../admin/config/index.php:30
707
  msgid "Retain data for"
708
  msgstr "Сохранить данные за"
709
 
710
- #: ../../admin/config/index.php:30
711
  msgid ""
712
  "Delete log entries older than the number of days specified here above. Enter "
713
  "<strong>0</strong> (number zero) if you want to preserve your data "
@@ -717,38 +719,38 @@ msgstr ""
717
  "<strong>0</strong> (ноль), если вы хотите сохранить ваши данные вне "
718
  "зависимости от их возраста."
719
 
720
- #: ../../admin/config/index.php:30
721
  msgid "Next clean-up on"
722
  msgstr "Следующая очистка"
723
 
724
- #: ../../admin/config/index.php:30
725
  #, php-format
726
  msgid "Entries logged on or before %s will be permanently deleted."
727
  msgstr "Значения, записанные в или до %s будут безвозвратно удалены."
728
 
729
- #: ../../admin/config/index.php:30 ../../admin/view/index.php:76
730
- #: ../../admin/view/wp-slimstat-reports.php:75
731
- #: ../../admin/view/wp-slimstat-reports.php:656
732
  msgid "days"
733
  msgstr "дней"
734
 
735
- #: ../../admin/config/index.php:45
736
  msgid "Data and Formats"
737
  msgstr "Данные и форматы"
738
 
739
- #: ../../admin/config/index.php:46
740
  msgid "Convert IP Addresses"
741
  msgstr "Конвертировать IP-адреса"
742
 
743
- #: ../../admin/config/index.php:46
744
  msgid "Display provider names instead of IP addresses."
745
  msgstr "Показывать имена провайдеров вместо IP-адресов."
746
 
747
- #: ../../admin/config/index.php:47
748
  msgid "Number Format"
749
  msgstr "Формат чисел"
750
 
751
- #: ../../admin/config/index.php:47
752
  msgid ""
753
  "Choose the number format you want to use for your reports, European or "
754
  "American."
@@ -756,11 +758,11 @@ msgstr ""
756
  "Выберите, какой формат чисел вы хотите использовать в ваших отчетах, "
757
  "европейский или американский."
758
 
759
- #: ../../admin/config/index.php:48
760
  msgid "Show Display Name"
761
  msgstr "Показать имя пользователя"
762
 
763
- #: ../../admin/config/index.php:48
764
  msgid ""
765
  "By default, users are listed by their usernames. Use this option to "
766
  "visualize their display names instead."
@@ -768,11 +770,11 @@ msgstr ""
768
  "По умолчанию пользователи перечисляются по их именам пользователей. "
769
  "Используйте эту опцию, чтобы вместо этого видеть их зарегистрированные имена."
770
 
771
- #: ../../admin/config/index.php:49
772
  msgid "Show User Agent"
773
  msgstr "Показать клиентское приложение"
774
 
775
- #: ../../admin/config/index.php:49
776
  msgid ""
777
  "Choose if you want to see the browser name or a complete user agent string "
778
  "when hovering on browser icons."
@@ -780,11 +782,11 @@ msgstr ""
780
  "Укажите, если хотите видеть название браузера или полную строку клиентского "
781
  "приложения при наведении курсора на иконку браузера."
782
 
783
- #: ../../admin/config/index.php:50
784
  msgid "Show Titles"
785
  msgstr "Показать заголовки"
786
 
787
- #: ../../admin/config/index.php:50
788
  msgid ""
789
  "WP SlimStat converts your permalinks into post and page titles. Disable this "
790
  "feature if you need to see the URL in your reports."
@@ -792,15 +794,15 @@ msgstr ""
792
  "WP SlimStat преобразует ваши постоянные ссылки в заголовках записей и "
793
  "страниц. Отключите эту функцию, если вам нужно видеть ссылки в отчетах."
794
 
795
- #: ../../admin/config/index.php:52
796
  msgid "Functionality"
797
  msgstr "Функциональность"
798
 
799
- #: ../../admin/config/index.php:53
800
  msgid "Asynchronous Views"
801
  msgstr "Асинхронный просмотр"
802
 
803
- #: ../../admin/config/index.php:53
804
  msgid ""
805
  "Load all the reports dynamically. It makes the reports render faster, but it "
806
  "increases the load on your server."
@@ -808,31 +810,31 @@ msgstr ""
808
  "Загружает все отчеты динамически. Это делает визуализацию панелей быстрее, "
809
  "но увеличивает нагрузку на сервер."
810
 
811
- #: ../../admin/config/index.php:54
812
  msgid "Expand Details"
813
  msgstr "Показать детали"
814
 
815
- #: ../../admin/config/index.php:54
816
  msgid "Expand each row's details by default, insted of on mousehover."
817
  msgstr "Развернуть, по умолчанию, каждую строку вместо наведения мышкой."
818
 
819
- #: ../../admin/config/index.php:55 ../../admin/config/index.php:59
820
  msgid "Rows to Display"
821
  msgstr "Строки для отображения"
822
 
823
- #: ../../admin/config/index.php:55
824
  msgid "Specify the number of items in each report."
825
  msgstr "Укажите количество элементов в каждом отчете."
826
 
827
- #: ../../admin/config/index.php:57
828
  msgid "Right Now Screen"
829
  msgstr "Экран 'Активность'"
830
 
831
- #: ../../admin/config/index.php:58
832
  msgid "Live Stream"
833
  msgstr "Режим реального времени"
834
 
835
- #: ../../admin/config/index.php:58
836
  msgid ""
837
  "Enable the Live view, which refreshes the Right Now screen every X seconds. "
838
  "Enter <strong>0</strong> (number zero) to disable this functionality."
@@ -840,19 +842,19 @@ msgstr ""
840
  "Включает режим реального времени, который обновляет окно 'Активность' каждые "
841
  "X секунд. Введите <strong>0</strong> (ноль), чтобы отключить эту функцию."
842
 
843
- #: ../../admin/config/index.php:58 ../../admin/config/index.php:209
844
  msgid "seconds"
845
  msgstr "секунд"
846
 
847
- #: ../../admin/config/index.php:59
848
  msgid "Specify the number of items in Right Now."
849
  msgstr "Укажите количество элементов в панели 'Активность'."
850
 
851
- #: ../../admin/config/index.php:60
852
  msgid "Right Now Extended"
853
  msgstr "Видеть исходящие ссылки"
854
 
855
- #: ../../admin/config/index.php:60
856
  msgid ""
857
  "Choose if you want to see outbound links listed under Right Now. It might "
858
  "slow down the rendering of this report."
@@ -860,25 +862,25 @@ msgstr ""
860
  "Укажите, если вы хотите видеть список исходящих ссылок в панели "
861
  "'Активность'. Это может замедлить визуализацию отчета."
862
 
863
- #: ../../admin/config/index.php:65
864
  msgid "Visitors and Known Users"
865
  msgstr "Посетители и известные пользователи"
866
 
867
- #: ../../admin/config/index.php:66
868
  msgid "Track Registered Users"
869
  msgstr "Отслеживать зарегистрированных пользователей"
870
 
871
- #: ../../admin/config/index.php:66
872
  msgid "Enable this option to track logged in users."
873
  msgstr ""
874
  "Включите этот параметр, чтобы отслеживать зарегистрированных пользователей."
875
 
876
- #: ../../admin/config/index.php:67
877
  #, fuzzy
878
  msgid "Blacklist by Username"
879
  msgstr "Черный список по IP-адресу"
880
 
881
- #: ../../admin/config/index.php:67
882
  msgid ""
883
  "List all the usernames you don't want to track, separated by commas. Please "
884
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
@@ -888,11 +890,11 @@ msgstr ""
888
  "запятыми. Помните, что пробелы <em>не</em> игнорируются и имена "
889
  "пользователей чувствительны к регистру."
890
 
891
- #: ../../admin/config/index.php:68
892
  msgid "Blacklist by IP Address"
893
  msgstr "Черный список по IP-адресу"
894
 
895
- #: ../../admin/config/index.php:68
896
  msgid ""
897
  "List all the IP addresses you don't want to track, separated by commas. Each "
898
  "network <strong>must</strong> be defined using the <a href='http://en."
@@ -909,11 +911,11 @@ msgstr ""
909
  "Если формат неправильный, WP SlimStat не сможет отслеживать просмотры "
910
  "страниц должным образом."
911
 
912
- #: ../../admin/config/index.php:69
913
  msgid "Blacklist by Capability"
914
  msgstr "Черный список по возможностям доступа"
915
 
916
- #: ../../admin/config/index.php:69
917
  msgid ""
918
  "Users having at least one of the <a href='http://codex.wordpress.org/"
919
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
@@ -923,15 +925,15 @@ msgstr ""
923
  "wordpress.org/Roles_and_Capabilities' target='_new'>этих возможностей</a>, "
924
  "не будут отслеживаться. Эти возможности не чувствительны к регистру."
925
 
926
- #: ../../admin/config/index.php:71
927
  msgid "Profiling"
928
  msgstr "Установка характеристик"
929
 
930
- #: ../../admin/config/index.php:72
931
  msgid "Ignore Spammers"
932
  msgstr "Игнорировать спамеров"
933
 
934
- #: ../../admin/config/index.php:72
935
  msgid ""
936
  "Enable this option if you don't want to track visits from users identified "
937
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -943,11 +945,11 @@ msgstr ""
943
  "такими как Akismet. Посещения людей, чьи комментарии позже будут обозначены "
944
  "как спам также будут удалены из базы данных."
945
 
946
- #: ../../admin/config/index.php:73
947
  msgid "Permalinks"
948
  msgstr "Постоянные ссылки"
949
 
950
- #: ../../admin/config/index.php:73
951
  msgid ""
952
  "List all the URLs on your website that you don't want to track, separated by "
953
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -965,11 +967,11 @@ msgstr ""
965
  "aboundant и /about, <code>/abo!t</code> будет соответствовать /about и /"
966
  "abort. Эти строки не чувствительны к регистру."
967
 
968
- #: ../../admin/config/index.php:74
969
  msgid "Countries"
970
  msgstr "Страны"
971
 
972
- #: ../../admin/config/index.php:74
973
  msgid ""
974
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
975
  "track, separated by commas."
@@ -977,11 +979,11 @@ msgstr ""
977
  "Коды стран (то есть: <code>en-us, it, ru</code>), которые вы не хотите "
978
  "отслеживать; разделяются запятыми."
979
 
980
- #: ../../admin/config/index.php:75
981
  msgid "User Agents"
982
  msgstr "Клиентские приложения"
983
 
984
- #: ../../admin/config/index.php:75
985
  msgid ""
986
  "Browsers (user agents) you don't want to track, separated by commas. You can "
987
  "specify the browser's version adding a slash after the name (i.e. "
@@ -998,11 +1000,11 @@ msgstr ""
998
  "<code>IE/!.0</code> будет соответствовать IE/7.0 и IE/8.0. Эти строки не "
999
  "чувствительны к регистру."
1000
 
1001
- #: ../../admin/config/index.php:76
1002
  msgid "Referring Sites"
1003
  msgstr "Ссылающиеся сайты"
1004
 
1005
- #: ../../admin/config/index.php:76
1006
  msgid ""
1007
  "Referring URLs that you don't want to track, separated by commas: "
1008
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -1018,25 +1020,25 @@ msgstr ""
1018
  "Пожалуйста, используйте либо символы, либо протокол, который хотите "
1019
  "отфильтровать (http://, https://)."
1020
 
1021
- #: ../../admin/config/index.php:78 ../../admin/config/index.php:214
1022
  msgid "Miscellaneous"
1023
  msgstr "Разное"
1024
 
1025
- #: ../../admin/config/index.php:79
1026
  msgid "Enable Privacy Mode"
1027
  msgstr "Включить режим конфиденциальности"
1028
 
1029
- #: ../../admin/config/index.php:79
1030
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
1031
  msgstr ""
1032
  "Маскирует IP-адреса ваших посетителей в соответствии с европейскими законами "
1033
  "о конфиденциальности."
1034
 
1035
- #: ../../admin/config/index.php:80
1036
  msgid "Ignore Prefetch Requests"
1037
  msgstr "Игнорировать запросы предварительной выборки"
1038
 
1039
- #: ../../admin/config/index.php:80
1040
  msgid ""
1041
  "Prevent WP SlimStat from tracking pageviews generated by Firefox's <a "
1042
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
@@ -1047,11 +1049,11 @@ msgstr ""
1047
  "en/Link_prefetching_FAQ' target='_blank'>предварительной выборкой для "
1048
  "ссылок</a>."
1049
 
1050
- #: ../../admin/config/index.php:96
1051
  msgid "Ignore users (username not found)"
1052
  msgstr "Игнорируемые пользователи (имя пользователя не найдено)"
1053
 
1054
- #: ../../admin/config/index.php:119
1055
  msgid ""
1056
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
1057
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
@@ -1060,15 +1062,15 @@ msgstr ""
1060
  "org/Roles_and_Capabilities\" target=\"_new\">эту страницу</a> для получения "
1061
  "дополнительной информации."
1062
 
1063
- #: ../../admin/config/index.php:129
1064
  msgid "Reports"
1065
  msgstr "Отчеты"
1066
 
1067
- #: ../../admin/config/index.php:130
1068
  msgid "Restrict Authors"
1069
  msgstr "Запретить авторам"
1070
 
1071
- #: ../../admin/config/index.php:130
1072
  msgid ""
1073
  "Enable this option if you want your authours to only see stats related to "
1074
  "their own content."
@@ -1076,18 +1078,19 @@ msgstr ""
1076
  "Включите этот параметр, если хотите, чтобы ваши авторы видели только ту "
1077
  "статистику, которая связана с их собственным содержанием."
1078
 
1079
- #: ../../admin/config/index.php:131 ../../admin/config/index.php:135
1080
  msgid "Capability"
1081
  msgstr "Возможности"
1082
 
1083
- #: ../../admin/config/index.php:131
 
1084
  msgid ""
1085
  "Specify the minimum <a href='http://codex.wordpress.org/"
1086
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
1087
- "reports (default: <code>read</code>). If this field is empty, <strong>all "
1088
- "your users</strong> (including subscribers) will have access to the reports, "
1089
- "unless a 'Read access' whitelist has been specified here below. In this "
1090
- "case, the list has precedence over the capability."
1091
  msgstr ""
1092
  "Определите минимальные <a href='http://codex.wordpress.org/"
1093
  "Roles_and_Capabilities' target='_new'>возможности</a>, необходимые для "
@@ -1096,11 +1099,11 @@ msgstr ""
1096
  "к отчетам, пока не обозначено 'только для чтения' в белом списке, который "
1097
  "указан ниже. В этом случае, список имеет приоритет над возможностями."
1098
 
1099
- #: ../../admin/config/index.php:132 ../../admin/config/index.php:136
1100
  msgid "Whitelist"
1101
  msgstr "Белый список"
1102
 
1103
- #: ../../admin/config/index.php:132
1104
  msgid ""
1105
  "List all the users who should have access to the reports, separated by "
1106
  "commas. Administrators are implicitly allowed, so you don't need to list "
@@ -1110,7 +1113,7 @@ msgstr ""
1110
  "запятыми. Администраторы разрешены автоматически, так что вам не нужно "
1111
  "перечислить их здесь. Имена пользователей чувствительны к регистру."
1112
 
1113
- #: ../../admin/config/index.php:135
1114
  msgid ""
1115
  "Specify the minimum <a href='http://codex.wordpress.org/"
1116
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
@@ -1123,7 +1126,7 @@ msgstr ""
1123
  "<code>activate_plugins</code>). Белый список ниже может быть использован для "
1124
  "обхода этой настройки определенными пользователями."
1125
 
1126
- #: ../../admin/config/index.php:136
1127
  msgid ""
1128
  "List all the users who can edit these options, separated by commas. Please "
1129
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
@@ -1134,11 +1137,11 @@ msgstr ""
1134
  "разрешены автоматически, так что не забудьте включить себя! Имена "
1135
  "пользователей чувствительны к регистру."
1136
 
1137
- #: ../../admin/config/index.php:152
1138
  msgid "Read access: username not found"
1139
  msgstr "Доступ для чтения: имя пользователя не найдено"
1140
 
1141
- #: ../../admin/config/index.php:165 ../../admin/config/index.php:196
1142
  msgid ""
1143
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
1144
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
@@ -1148,15 +1151,15 @@ msgstr ""
1148
  "codex.wordpress.org/Roles_and_Capabilities\" target=\"_new\">эту страницу</"
1149
  "a> для получения дополнительной информации."
1150
 
1151
- #: ../../admin/config/index.php:183
1152
  msgid "Config access: username not found"
1153
  msgstr "Доступ для настройки: имя пользователя не найдено"
1154
 
1155
- #: ../../admin/config/index.php:207
1156
  msgid "Detect Smoothing"
1157
  msgstr "Выявлять сглаживание шрифтов"
1158
 
1159
- #: ../../admin/config/index.php:207
1160
  msgid ""
1161
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
1162
  "This option required Spy Mode to be enabled."
@@ -1164,11 +1167,11 @@ msgstr ""
1164
  "Обнаруживать поддержку браузером антиалиасинга (сглаживание шрифтов). Эта "
1165
  "опция требует включение шпионского режима."
1166
 
1167
- #: ../../admin/config/index.php:208
1168
  msgid "Track Outbound Clicks"
1169
  msgstr "Отслеживать исходящие ссылки"
1170
 
1171
- #: ../../admin/config/index.php:208
1172
  msgid ""
1173
  "Track when your visitors click on link to external websites. This option "
1174
  "required Spy Mode to be enabled."
@@ -1176,33 +1179,34 @@ msgstr ""
1176
  "Отслеживать нажатия ссылок на внешние веб-сайты. Эта опция требует включение "
1177
  "шпионского режима."
1178
 
1179
- #: ../../admin/config/index.php:209
1180
  msgid "Session Duration"
1181
  msgstr "Продолжительность сеанса"
1182
 
1183
- #: ../../admin/config/index.php:209
 
1184
  msgid ""
1185
- "How many seconds should a human session on your site last? Google Analytics "
1186
- "sets it to 1800 seconds."
1187
  msgstr ""
1188
  "Сколько секунд должен длиться сеанс на вашем сайте? Google Analytics "
1189
  "устанавливает его продолжительность на 1800 секунд."
1190
 
1191
- #: ../../admin/config/index.php:210
1192
  msgid "Extend Session"
1193
  msgstr "Продлить сеанс"
1194
 
1195
- #: ../../admin/config/index.php:210
1196
  msgid "Extend the duration of a session each time the user visits a new page."
1197
  msgstr ""
1198
  "Увеличить длительность сеанса каждый раз, когда пользователь посещает новую "
1199
  "страницу."
1200
 
1201
- #: ../../admin/config/index.php:211
1202
  msgid "Enable CDN"
1203
  msgstr "Включить сеть доставки контента"
1204
 
1205
- #: ../../admin/config/index.php:211
1206
  msgid ""
1207
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
1208
  "by serving our tracking code from their fast and reliable network (free "
@@ -1212,11 +1216,11 @@ msgstr ""
1212
  "target='_blank'>JSDelivr</a>, которая обслуживает наш код отслеживания с их "
1213
  "быстрой и надежной сетью (бесплатная услуга)."
1214
 
1215
- #: ../../admin/config/index.php:212
1216
  msgid "Extensions to Track"
1217
  msgstr "Отслеживать расширения"
1218
 
1219
- #: ../../admin/config/index.php:212
1220
  msgid ""
1221
  "List all the file extensions that you want to be treated as Downloads. "
1222
  "Please note that links pointing to external resources (i.e. PDFs on a "
@@ -1230,58 +1234,42 @@ msgstr ""
1230
  "(и будут отслеживаться соответственно), если их расширение совпадет с одним "
1231
  "из перечисленных здесь."
1232
 
1233
- #: ../../admin/config/index.php:215
1234
  msgid "IP Lookup"
1235
  msgstr "Поиск IP"
1236
 
1237
- #: ../../admin/config/index.php:215
1238
  msgid "Customize the Geolocation service to be used in the reports."
1239
  msgstr "Настроить услугу геолокации, которая будет использоваться в отчетах."
1240
 
1241
- #: ../../admin/config/index.php:216
1242
  msgid "Custom CSS"
1243
  msgstr "Настраиваемый CSS"
1244
 
1245
- #: ../../admin/config/index.php:216
 
1246
  msgid ""
1247
  "Paste here your custom stylesheet to personalize the way your reports look. "
1248
  "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1249
  "target='_blank'>Check the FAQ</a> for more information on how to use this "
1250
- "functionality."
1251
  msgstr ""
1252
  "Скопируйте сюда ваши таблицы стилей, чтобы персонализировать внешний вид "
1253
  "отчетов. <a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1254
  "target='_blank'>Проверьте справку</a> для получения дополнительной "
1255
  "информации о том, как использовать эту функциональность."
1256
 
1257
- #: ../../admin/config/index.php:217
1258
- msgid "Chart Annotations"
1259
- msgstr "Примечания диаграммы"
1260
-
1261
- #: ../../admin/config/index.php:217
1262
- msgid ""
1263
- "Add <em>markings</em> to each chart by specifying a date and its description "
1264
- "in the field below. Useful to keep track of special events and correlate "
1265
- "them to your analytics. Please use the following format:<code>YYYY MM DD HH:"
1266
- "mm=Description 1,YYYY MM DD HH:mm=Description 2</code>. For example: 2012 12 "
1267
- "31 23:55=New Year's Eve."
1268
- msgstr ""
1269
- "Добавьте <em>маркировку</em> на каждую диаграмму, указав дату и ее описание "
1270
- "в поле ниже. Это будет полезным для отслеживания специальных мероприятий и "
1271
- "соотносить их с веб-аналитикой. Пожалуйста, используйте следующий формат: "
1272
- "<code>ГГГГ ММ ДД ЧЧ:мм=Описание 1, YYYY MM DD HH:мм=Описание 2</code>. "
1273
- "Например: 2013 12 31 23:55 = Канун Нового Года."
1274
-
1275
  #: ../../admin/config/index.php:218
1276
  msgid "Enable UAN"
1277
  msgstr "Включить сеть неизвестных клиентских приложений"
1278
 
1279
  #: ../../admin/config/index.php:218
 
1280
  msgid ""
1281
- "Collect data about unknown user agents, and send it anonymously to our "
1282
- "server for analysis. This allows us to contribute to the <a href='http://"
1283
- "browscap.co/' target='_blank'>BrowsCap opensource project</a>, and improve "
1284
- "the accuracy of SlimStat's browser detection functionality."
1285
  msgstr ""
1286
  "Собирает данные о неизвестных клиентских приложениях и отправляет их "
1287
  "анонимно на наш сервер для анализа. Это позволяет нам внести свой вклад в <a "
@@ -1399,7 +1387,7 @@ msgid "is not empty"
1399
  msgstr "не пустой"
1400
 
1401
  #: ../../admin/config/maintenance.php:138 ../../admin/view/index.php:32
1402
- #: ../../admin/view/index.php:77
1403
  msgid "Apply"
1404
  msgstr "Применить"
1405
 
@@ -2899,7 +2887,7 @@ msgid "l-zu-za"
2899
  msgstr "Зулу"
2900
 
2901
  #: ../../admin/lang/dynamic_strings.php:298
2902
- #: ../../admin/view/wp-slimstat-reports.php:495
2903
  msgid "l-"
2904
  msgstr "Не указан"
2905
 
@@ -2917,53 +2905,59 @@ msgstr "Не указан"
2917
  msgid "c-xy"
2918
  msgstr "Локальный IP-адрес"
2919
 
2920
- #: ../../admin/view/index.php:47 ../../admin/view/wp-slimstat-reports.php:680
2921
  msgid "Today"
2922
  msgstr "За сегодня"
2923
 
2924
- #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:681
2925
  msgid "Yesterday"
2926
  msgstr "За вчера"
2927
 
2928
- #: ../../admin/view/index.php:49
2929
  msgid "Last 7 Days"
2930
  msgstr "За последние 7 дней"
2931
 
2932
- #: ../../admin/view/index.php:50
2933
- msgid "Last 30 Days"
 
2934
  msgstr "За последние 30 дней"
2935
 
2936
- #: ../../admin/view/index.php:51
2937
  #, fuzzy
2938
  msgid "Last 90 Days"
2939
  msgstr "За последние 30 дней"
2940
 
2941
- #: ../../admin/view/index.php:52
2942
  #, fuzzy
2943
- msgid "This Year"
2944
  msgstr "Год"
2945
 
2946
- #: ../../admin/view/index.php:53
2947
  msgid "Date Range"
2948
  msgstr "Интервал дат"
2949
 
2950
- #: ../../admin/view/index.php:55 ../../admin/view/wp-slimstat-reports.php:72
2951
  msgid "Day"
2952
  msgstr "День"
2953
 
2954
- #: ../../admin/view/index.php:65 ../../admin/view/wp-slimstat-reports.php:73
2955
  msgid "Month"
2956
  msgstr "Месяц"
2957
 
2958
- #: ../../admin/view/index.php:74 ../../admin/view/wp-slimstat-reports.php:74
2959
  msgid "Year"
2960
  msgstr "Год"
2961
 
2962
- #: ../../admin/view/index.php:109
 
 
 
 
 
2963
  msgid "Your report here"
2964
  msgstr "Ваш отчет"
2965
 
2966
- #: ../../admin/view/index.php:111
2967
  msgid ""
2968
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
2969
  "Just write a new plugin that retrieves the desired information from the "
@@ -2978,13 +2972,13 @@ msgstr ""
2978
  "\"http://wordpress.org/tags/wp-slimstat?forum_id=10\" target=\"_blank"
2979
  "\">форум поддержки</a>."
2980
 
2981
- #: ../../admin/view/index.php:125 ../../admin/view/wp-slimstat-reports.php:671
2982
- #: ../../admin/view/wp-slimstat-reports.php:774
2983
- #: ../../admin/view/wp-slimstat-reports.php:1040
2984
  msgid "Pageviews"
2985
  msgstr "Просмотры"
2986
 
2987
- #: ../../admin/view/index.php:128
2988
  msgid ""
2989
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2990
  "WP SlimStat leverages this information to identify returning visitors. "
@@ -2995,36 +2989,36 @@ msgstr ""
2995
  "посетителей. Эти посетители также включают в себя зарегистрированных "
2996
  "пользователей."
2997
 
2998
- #: ../../admin/view/index.php:132
2999
  msgid "Take a sneak peek at what human visitors are doing on your website."
3000
  msgstr "Предварительный просмотр того, что посетители делают на вашем сайте."
3001
 
3002
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
3003
- #: ../../admin/view/index.php:176 ../../admin/view/right-now.php:146
3004
  msgid "Color codes"
3005
  msgstr "Цветовые коды"
3006
 
3007
- #: ../../admin/view/index.php:132
3008
  msgid "From a search result page"
3009
  msgstr "Со страницы результатов поиска"
3010
 
3011
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
3012
- #: ../../admin/view/index.php:176
3013
  msgid "Known Users"
3014
  msgstr "Известные пользователи"
3015
 
3016
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
3017
- #: ../../admin/view/index.php:176
3018
  msgid "Other Humans"
3019
  msgstr "Другие посетители"
3020
 
3021
- #: ../../admin/view/index.php:136
3022
  msgid "Keywords used by your visitors to find your website on a search engine."
3023
  msgstr ""
3024
  "Ключевые слова, которыми пользуются посетители, чтобы найти ваш сайт в "
3025
  "поисковых системах."
3026
 
3027
- #: ../../admin/view/index.php:139
3028
  msgid ""
3029
  "WP SlimStat retrieves live information from Alexa, Facebook and Google, to "
3030
  "measures your site's rankings. Values are updated every 12 hours. Filters "
@@ -3034,7 +3028,7 @@ msgstr ""
3034
  "Google для измерения рейтинга вашего сайта. Значения обновляются каждые 12 "
3035
  "часов. Установленные выше фильтры не применяются к данному отчету."
3036
 
3037
- #: ../../admin/view/index.php:142
3038
  msgid ""
3039
  "We have teamed up with HackerNinja.com to offer you a free website security "
3040
  "scan. By clicking on Start Free Scan, your website will be analyzed to "
@@ -3046,11 +3040,11 @@ msgstr ""
3046
  "сайт будет проанализирован для выявления вирусов и других неполадок. "
3047
  "Примечание: только ваше доменное имя (адрес сайта) передается на HackerNinja."
3048
 
3049
- #: ../../admin/view/index.php:145
3050
  msgid "Human Visits"
3051
  msgstr "Посещение сайта человеком"
3052
 
3053
- #: ../../admin/view/index.php:148
3054
  msgid ""
3055
  "Internet Service Provider: a company which provides other companies or "
3056
  "individuals with access to the Internet. Your DSL or cable internet service "
@@ -3063,7 +3057,7 @@ msgstr ""
3063
  "IP-адреса, установив соответствующий фильтр в меню Настройки > SlimStat > "
3064
  "Фильтры."
3065
 
3066
- #: ../../admin/view/index.php:151
3067
  msgid ""
3068
  "You can configure WP SlimStat to ignore a specific Country by setting the "
3069
  "corresponding filter under Settings > SlimStat > Filters."
@@ -3071,7 +3065,7 @@ msgstr ""
3071
  "Вы можете настроить WP SlimStat для игнорирования конкретной страны, "
3072
  "установив соответствующий фильтр в меню Настройки > SlimStat > Фильтры."
3073
 
3074
- #: ../../admin/view/index.php:154
3075
  msgid ""
3076
  "This report shows you what user agent families (no version considered) are "
3077
  "popular among your visitors."
@@ -3079,7 +3073,7 @@ msgstr ""
3079
  "Этот отчет обобщает клиентские приложения (версии не рассматриваются), "
3080
  "которые пользуются популярностью у посетителей."
3081
 
3082
- #: ../../admin/view/index.php:157
3083
  msgid ""
3084
  "This report shows you what operating system families (no version considered) "
3085
  "are popular among your visitors."
@@ -3087,11 +3081,11 @@ msgstr ""
3087
  "Этот отчет обобщает операционные системы (версии не рассматриваются), "
3088
  "которые пользуются популярностью у посетителей."
3089
 
3090
- #: ../../admin/view/index.php:163
3091
  msgid "Average Pageviews per Visit"
3092
  msgstr "Среднее кол-во просмотров за посещение"
3093
 
3094
- #: ../../admin/view/index.php:166
3095
  msgid ""
3096
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
3097
  "left your site from the entrance (landing) page."
@@ -3099,11 +3093,11 @@ msgstr ""
3099
  "<em>Страница отказа</em> - это одностраничное посещение, или посещение в "
3100
  "котором пользователь покидает сайт со страницы входа."
3101
 
3102
- #: ../../admin/view/index.php:169
3103
  msgid "Searches performed using Wordpress' built-in search functionality."
3104
  msgstr "Поиски, выполненные с помощью встроенного поиска Wordpress."
3105
 
3106
- #: ../../admin/view/index.php:173
3107
  msgid ""
3108
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
3109
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
@@ -3113,7 +3107,7 @@ msgstr ""
3113
  "ссылка на странице была нажата.<br>- <em>ID:xx</em> показывает, когда "
3114
  "соответствующая ссылка имеет связанный с ним атрибут ID."
3115
 
3116
- #: ../../admin/view/index.php:176
3117
  msgid ""
3118
  "This report lists any <em>event</em> occurred on your website. Please refer "
3119
  "to the FAQ for more information on how to leverage this functionality."
@@ -3122,7 +3116,7 @@ msgstr ""
3122
  "сайте. Пожалуйста, посмотрите ЧаВо для получения дополнительной информации о "
3123
  "том, как использовать эту функциональность."
3124
 
3125
- #: ../../admin/view/index.php:179
3126
  msgid ""
3127
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
3128
  "this report is not affected by the filters set here above."
@@ -3147,477 +3141,490 @@ msgid "Syndication Reader"
3147
  msgstr "Читалка новостной ленты"
3148
 
3149
  #: ../../admin/view/right-now.php:28
3150
- #: ../../admin/view/wp-slimstat-reports.php:438
3151
- #: ../../admin/view/wp-slimstat-reports.php:583
3152
  msgid "No data to display"
3153
  msgstr "Нет данных"
3154
 
3155
  # Unknown
3156
- #: ../../admin/view/right-now.php:53
3157
- #: ../../admin/view/wp-slimstat-reports.php:483
3158
- #: ../../admin/view/wp-slimstat-reports.php:621
3159
- #: ../../admin/view/wp-slimstat-reports.php:928
3160
  msgid "c-"
3161
  msgstr "Неизвестно"
3162
 
3163
- #: ../../admin/view/right-now.php:119
3164
- #: ../../admin/view/wp-slimstat-reports.php:537
3165
- #: ../../admin/view/wp-slimstat-reports.php:541
3166
- #: ../../admin/view/wp-slimstat-reports.php:603
3167
- #: ../../admin/view/wp-slimstat-reports.php:641
3168
  msgid "Open this URL in a new window"
3169
  msgstr "Открыть страницу в новом окне"
3170
 
3171
- #: ../../admin/view/right-now.php:122
3172
  msgid "Local search results page"
3173
  msgstr "Страница локальных результатов поиска"
3174
 
3175
- #: ../../admin/view/right-now.php:129
3176
  msgid "Open this referrer in a new window"
3177
  msgstr "Открыть ссылающуюся страницу в новом окне"
3178
 
3179
- #: ../../admin/view/right-now.php:130
3180
  msgid "Open this outbound link in a new window"
3181
  msgstr "Открыть исходящую ссылку в новом окне"
3182
 
3183
- #: ../../admin/view/right-now.php:131
3184
  #, fuzzy
3185
  msgid "Date and Time"
3186
  msgstr "Интервал дат"
3187
 
3188
- #: ../../admin/view/right-now.php:132
3189
  #, fuzzy
3190
  msgid "Content Type"
3191
  msgstr "Содержание сайта"
3192
 
3193
- #: ../../admin/view/right-now.php:147
3194
  msgid "Visit with keywords"
3195
  msgstr "Посещение с ключевыми словами"
3196
 
3197
- #: ../../admin/view/right-now.php:149
3198
  msgid "Known User"
3199
  msgstr "Известный пользователь"
3200
 
3201
- #: ../../admin/view/right-now.php:150
3202
  msgid "Human Visitor"
3203
  msgstr "Посещение сайта человеком"
3204
 
3205
- #: ../../admin/view/right-now.php:151
3206
  msgid "Bot or Crawler"
3207
  msgstr "Поисковый робот"
3208
 
3209
- #: ../../admin/view/wp-slimstat-reports.php:44
3210
  msgid "IP Address"
3211
  msgstr "IP-адрес"
3212
 
3213
- #: ../../admin/view/wp-slimstat-reports.php:49
3214
  msgid "Domain"
3215
  msgstr "Домен"
3216
 
3217
- #: ../../admin/view/wp-slimstat-reports.php:53
3218
  msgid "-- Advanced filters --"
3219
  msgstr "-- Расширенные фильтры --"
3220
 
3221
- #: ../../admin/view/wp-slimstat-reports.php:54
3222
- #: ../../admin/view/wp-slimstat-reports.php:99
3223
  msgid "Browser Capabilities"
3224
  msgstr "Возможности браузера"
3225
 
3226
- #: ../../admin/view/wp-slimstat-reports.php:66
3227
  msgid "Resource ID"
3228
  msgstr "ID ресурса"
3229
 
3230
- #: ../../admin/view/wp-slimstat-reports.php:71
3231
  msgid "Hour"
3232
  msgstr "Час"
3233
 
3234
- #: ../../admin/view/wp-slimstat-reports.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
3235
  msgid "Pageviews (chart)"
3236
  msgstr "Просмотры (диаграмма)"
3237
 
3238
- #: ../../admin/view/wp-slimstat-reports.php:79
3239
  msgid "About WP SlimStat"
3240
  msgstr "О плагине WP-SlimStat"
3241
 
3242
- #: ../../admin/view/wp-slimstat-reports.php:80
3243
- #: ../../admin/view/wp-slimstat-reports.php:93
3244
  msgid "At a Glance"
3245
  msgstr ""
3246
 
3247
- #: ../../admin/view/wp-slimstat-reports.php:81
3248
  msgid "Currently Online"
3249
  msgstr "Сейчас на сайте"
3250
 
3251
- #: ../../admin/view/wp-slimstat-reports.php:82
3252
- #: ../../admin/view/wp-slimstat-reports.php:117
3253
  msgid "Spy View"
3254
  msgstr "Беглый просмотр активности"
3255
 
3256
- #: ../../admin/view/wp-slimstat-reports.php:83
3257
- #: ../../admin/view/wp-slimstat-reports.php:118
3258
  msgid "Recent Search Terms"
3259
  msgstr "Последние поисковые запросы"
3260
 
3261
- #: ../../admin/view/wp-slimstat-reports.php:84
3262
  msgid "Top Pages"
3263
  msgstr "ТОП страниц"
3264
 
3265
- #: ../../admin/view/wp-slimstat-reports.php:85
3266
- #: ../../admin/view/wp-slimstat-reports.php:115
3267
  msgid "Top Traffic Sources"
3268
  msgstr "ТОП источников трафика"
3269
 
3270
- #: ../../admin/view/wp-slimstat-reports.php:86
3271
  msgid "Top Known Visitors"
3272
  msgstr "ТОП известных пользователей"
3273
 
3274
- #: ../../admin/view/wp-slimstat-reports.php:87
3275
- #: ../../admin/view/wp-slimstat-reports.php:113
3276
- #: ../../admin/view/wp-slimstat-reports.php:133
3277
  msgid "Top Search Terms"
3278
  msgstr "ТОП поисковых запросов"
3279
 
3280
- #: ../../admin/view/wp-slimstat-reports.php:88
3281
- #: ../../admin/view/wp-slimstat-reports.php:100
3282
- #: ../../admin/view/wp-slimstat-reports.php:114
3283
  msgid "Top Countries"
3284
  msgstr "ТОП стран"
3285
 
3286
- #: ../../admin/view/wp-slimstat-reports.php:89
3287
  msgid "Rankings"
3288
  msgstr "Рейтинг сайта"
3289
 
3290
- #: ../../admin/view/wp-slimstat-reports.php:90
3291
  msgid "Security Scan"
3292
  msgstr "Проверка на безопасность"
3293
 
3294
- #: ../../admin/view/wp-slimstat-reports.php:91
3295
  msgid "Top Language Families"
3296
  msgstr "ТОП классификаций языков"
3297
 
3298
- #: ../../admin/view/wp-slimstat-reports.php:92
3299
  msgid "Human Visits (chart)"
3300
  msgstr "Посетители (диаграмма)"
3301
 
3302
- #: ../../admin/view/wp-slimstat-reports.php:94
3303
  msgid "Top Languages"
3304
  msgstr "ТОП языков"
3305
 
3306
- #: ../../admin/view/wp-slimstat-reports.php:95
3307
  msgid "Top Browsers"
3308
  msgstr "ТОП браузеров"
3309
 
3310
- #: ../../admin/view/wp-slimstat-reports.php:96
3311
  msgid "Top Service Providers"
3312
  msgstr "ТОП провайдеров"
3313
 
3314
- #: ../../admin/view/wp-slimstat-reports.php:97
3315
  msgid "Top Operating Systems"
3316
  msgstr "ТОП операционных систем"
3317
 
3318
- #: ../../admin/view/wp-slimstat-reports.php:98
3319
  msgid "Top Screen Resolutions"
3320
  msgstr "ТОП разрешений экранов"
3321
 
3322
- #: ../../admin/view/wp-slimstat-reports.php:101
3323
  msgid "Visit Duration"
3324
  msgstr "Длительность посещений"
3325
 
3326
- #: ../../admin/view/wp-slimstat-reports.php:102
3327
- #: ../../admin/view/wp-slimstat-reports.php:119
3328
  msgid "Recent Countries"
3329
  msgstr "Последние страны"
3330
 
3331
- #: ../../admin/view/wp-slimstat-reports.php:103
3332
  msgid "Recent Screen Resolutions"
3333
  msgstr "Последние разрешения экранов"
3334
 
3335
- #: ../../admin/view/wp-slimstat-reports.php:104
3336
  msgid "Recent Operating Systems"
3337
  msgstr "Последние ОС"
3338
 
3339
- #: ../../admin/view/wp-slimstat-reports.php:105
3340
  msgid "Recent Browsers"
3341
  msgstr "Последние браузеры"
3342
 
3343
- #: ../../admin/view/wp-slimstat-reports.php:106
3344
  msgid "Recent Languages"
3345
  msgstr "Последние языки"
3346
 
3347
- #: ../../admin/view/wp-slimstat-reports.php:107
3348
  msgid "Top Browser Families"
3349
  msgstr "ТОП классификаций браузеров"
3350
 
3351
- #: ../../admin/view/wp-slimstat-reports.php:108
3352
  msgid "Top OS Families"
3353
  msgstr "ТОП классификаций ОС"
3354
 
3355
- #: ../../admin/view/wp-slimstat-reports.php:109
3356
  msgid "Recent Users"
3357
  msgstr "Последние пользователи"
3358
 
3359
- #: ../../admin/view/wp-slimstat-reports.php:110
3360
  msgid "Top Users"
3361
  msgstr "ТОП пользователей"
3362
 
3363
- #: ../../admin/view/wp-slimstat-reports.php:111
3364
  msgid "Traffic Sources (chart)"
3365
  msgstr "Источники трафика (диаграмма)"
3366
 
3367
- #: ../../admin/view/wp-slimstat-reports.php:112
3368
  msgid "Summary"
3369
  msgstr "Сводная"
3370
 
3371
- #: ../../admin/view/wp-slimstat-reports.php:116
3372
  msgid "Top Referring Search Engines"
3373
  msgstr "ТОП ссылающихся поисковых систем"
3374
 
3375
- #: ../../admin/view/wp-slimstat-reports.php:120
3376
- #: ../../admin/view/wp-slimstat-reports.php:136
3377
  msgid "Top Landing Pages"
3378
  msgstr "ТОП страниц входа"
3379
 
3380
- #: ../../admin/view/wp-slimstat-reports.php:121
3381
  msgid "Average Pageviews per Visit (chart)"
3382
  msgstr "Среднее кол-во просмотров за визит (диаграмма)"
3383
 
3384
- #: ../../admin/view/wp-slimstat-reports.php:122
3385
  msgid "Recent Posts"
3386
  msgstr "Последние записи"
3387
 
3388
- #: ../../admin/view/wp-slimstat-reports.php:123
3389
  msgid "Recent Bounce Pages"
3390
  msgstr "Последние страницы отказа"
3391
 
3392
- #: ../../admin/view/wp-slimstat-reports.php:124
3393
  msgid "Recent Feeds"
3394
  msgstr "Последние новостные ленты"
3395
 
3396
- #: ../../admin/view/wp-slimstat-reports.php:125
3397
  msgid "Recent Pages Not Found"
3398
  msgstr "Последние ненайденные страницы"
3399
 
3400
- #: ../../admin/view/wp-slimstat-reports.php:126
3401
  msgid "Recent Internal Searches"
3402
  msgstr "Последние внутренние поиски"
3403
 
3404
- #: ../../admin/view/wp-slimstat-reports.php:127
3405
  msgid "Top Categories"
3406
  msgstr "ТОП категорий"
3407
 
3408
- #: ../../admin/view/wp-slimstat-reports.php:128
3409
  msgid "Recent Outbound Links"
3410
  msgstr "Последние исходящие ссылки"
3411
 
3412
- #: ../../admin/view/wp-slimstat-reports.php:129
3413
  msgid "Recent Events"
3414
  msgstr "Последние события"
3415
 
3416
- #: ../../admin/view/wp-slimstat-reports.php:130
3417
  msgid "Top Posts"
3418
  msgstr "ТОП записей"
3419
 
3420
- #: ../../admin/view/wp-slimstat-reports.php:131
3421
  msgid "Top Feeds"
3422
  msgstr "ТОП новостных лент"
3423
 
3424
- #: ../../admin/view/wp-slimstat-reports.php:132
3425
  msgid "Top Internal Searches"
3426
  msgstr "ТОП внутренних поисков"
3427
 
3428
- #: ../../admin/view/wp-slimstat-reports.php:134
3429
  msgid "Recent Categories"
3430
  msgstr "Последние категории"
3431
 
3432
- #: ../../admin/view/wp-slimstat-reports.php:135
3433
  msgid "Top Pages Not Found"
3434
  msgstr "ТОП ненайденных страниц"
3435
 
3436
- #: ../../admin/view/wp-slimstat-reports.php:137
3437
  msgid "Top Authors"
3438
  msgstr "ТОП авторов"
3439
 
3440
- #: ../../admin/view/wp-slimstat-reports.php:138
3441
  msgid "Top Tags"
3442
  msgstr "ТОП тегов"
3443
 
3444
- #: ../../admin/view/wp-slimstat-reports.php:139
3445
  msgid "Recent Downloads"
3446
  msgstr "Последние загрузки"
3447
 
3448
- #: ../../admin/view/wp-slimstat-reports.php:140
3449
  msgid "Top Outbound Links and Downloads"
3450
  msgstr "ТОП исходящих ссылок и загрузок"
3451
 
3452
- #: ../../admin/view/wp-slimstat-reports.php:141
3453
  msgid "Your Website"
3454
  msgstr "Ваш сайт"
3455
 
3456
- #: ../../admin/view/wp-slimstat-reports.php:143
3457
  msgid "Activity Log"
3458
  msgstr "Журнал активности"
3459
 
3460
- #: ../../admin/view/wp-slimstat-reports.php:241
3461
  msgid "Chart controls"
3462
  msgstr "Управление диаграммой"
3463
 
3464
- #: ../../admin/view/wp-slimstat-reports.php:241
3465
  msgid "Use your mouse wheel to zoom in and out"
3466
  msgstr "Используйте колесико мыши для масштабирования"
3467
 
3468
- #: ../../admin/view/wp-slimstat-reports.php:241
3469
  msgid "While zooming in, drag the chart to move to a different area"
3470
  msgstr ""
3471
  "Во время масштабирования, перетащите диаграмму, чтобы перейти в другое место"
3472
 
3473
- #: ../../admin/view/wp-slimstat-reports.php:241
3474
  msgid "Double click on an empty region to reset the zoom level"
3475
  msgstr "Дважды щелкните на пустой области, чтобы сбросить масштаб"
3476
 
3477
- #: ../../admin/view/wp-slimstat-reports.php:242
3478
  msgid ""
3479
  "Click on a data point to display the activity chart for each hour of that day"
3480
  msgstr ""
3481
  "Нажмите на кружочек для отображения деятельности за каждый час этого дня"
3482
 
3483
- #: ../../admin/view/wp-slimstat-reports.php:274
3484
  msgid "src"
3485
  msgstr "источник"
3486
 
3487
- #: ../../admin/view/wp-slimstat-reports.php:275
3488
  msgid "serp"
3489
  msgstr "страница результатов поиска"
3490
 
3491
- #: ../../admin/view/wp-slimstat-reports.php:280
3492
  msgid "Go to the corresponding search engine result page"
3493
  msgstr "Перейти на соответствующую страницу поискового запроса"
3494
 
3495
- #: ../../admin/view/wp-slimstat-reports.php:283
3496
  msgid "Go to the referring page"
3497
  msgstr "Перейти на страницу источника запроса"
3498
 
3499
- #: ../../admin/view/wp-slimstat-reports.php:302
3500
  msgid "Remove filter for"
3501
  msgstr "Удалить фильтр для"
3502
 
3503
- #: ../../admin/view/wp-slimstat-reports.php:309
3504
  msgid "Reset All"
3505
  msgstr "Полный сброс"
3506
 
3507
- #: ../../admin/view/wp-slimstat-reports.php:312
3508
  msgid "Current filters:"
3509
  msgstr "Текущие фильтры:"
3510
 
3511
- #: ../../admin/view/wp-slimstat-reports.php:316
3512
  msgid "Refresh"
3513
  msgstr "Обновить"
3514
 
3515
- #: ../../admin/view/wp-slimstat-reports.php:353
3516
  #, php-format
3517
  msgid "Results %s - %s of %s"
3518
  msgstr "Результаты %s - %s из %s"
3519
 
3520
- #: ../../admin/view/wp-slimstat-reports.php:355
3521
  msgid "Refresh in"
3522
  msgstr "Обновить"
3523
 
3524
- #: ../../admin/view/wp-slimstat-reports.php:377
3525
- #: ../../admin/view/wp-slimstat-reports.php:389
3526
  #, php-format
3527
  msgid "Daily %s"
3528
  msgstr "Ежедневный отчет: %s "
3529
 
3530
- #: ../../admin/view/wp-slimstat-reports.php:380
3531
  #, php-format
3532
  msgid "%s Minute by Minute"
3533
  msgstr "Поминутный %s"
3534
 
3535
- #: ../../admin/view/wp-slimstat-reports.php:383
3536
  #, php-format
3537
  msgid "Hourly %s"
3538
  msgstr "Ежечасный отчет: %s "
3539
 
3540
- #: ../../admin/view/wp-slimstat-reports.php:386
3541
  #, php-format
3542
  msgid "Monthly %s"
3543
  msgstr "Ежемесячный отчет: %s "
3544
 
3545
- #: ../../admin/view/wp-slimstat-reports.php:465
3546
  msgid "Category ID"
3547
  msgstr "ID категорий"
3548
 
3549
- #: ../../admin/view/wp-slimstat-reports.php:498
3550
  msgid "OS Code"
3551
  msgstr "Код операционной системы"
3552
 
3553
- #: ../../admin/view/wp-slimstat-reports.php:508
3554
  msgid "Referrer"
3555
  msgstr "Источник запроса"
3556
 
3557
- #: ../../admin/view/wp-slimstat-reports.php:532
3558
- #: ../../admin/view/wp-slimstat-reports.php:709
3559
- #: ../../admin/view/wp-slimstat-reports.php:718
3560
- #: ../../admin/view/wp-slimstat-reports.php:724
3561
- #: ../../admin/view/wp-slimstat-reports.php:730
3562
- #: ../../admin/view/wp-slimstat-reports.php:736
3563
- #: ../../admin/view/wp-slimstat-reports.php:742
3564
- #: ../../admin/view/wp-slimstat-reports.php:748
3565
- #: ../../admin/view/wp-slimstat-reports.php:754
3566
  msgid "Hits"
3567
  msgstr "Просмотры"
3568
 
3569
- #: ../../admin/view/wp-slimstat-reports.php:600
3570
  msgid "Search for"
3571
  msgstr "Искать"
3572
 
3573
- #: ../../admin/view/wp-slimstat-reports.php:631
3574
- #: ../../admin/view/wp-slimstat-reports.php:641
3575
  msgid "Source"
3576
  msgstr "Источник"
3577
 
3578
- #: ../../admin/view/wp-slimstat-reports.php:633
3579
  msgid "Keywords"
3580
  msgstr "Ключевые слова"
3581
 
3582
- #: ../../admin/view/wp-slimstat-reports.php:641
3583
  #, php-format
3584
  msgid "Filter results where resource equals %s"
3585
  msgstr "Отфильтровать результаты, где ресурс равен %s"
3586
 
3587
- #: ../../admin/view/wp-slimstat-reports.php:651
3588
  msgid "Total Pageviews"
3589
  msgstr "Всего просмотров"
3590
 
3591
- #: ../../admin/view/wp-slimstat-reports.php:652
3592
  msgid "DB Size"
3593
  msgstr "Размер базы данных"
3594
 
3595
- #: ../../admin/view/wp-slimstat-reports.php:653
3596
  msgid "Tracking Active"
3597
  msgstr "Отслеживание включено"
3598
 
3599
- #: ../../admin/view/wp-slimstat-reports.php:654
3600
  msgid "Javascript Mode"
3601
  msgstr "Режим JavaScript"
3602
 
3603
- #: ../../admin/view/wp-slimstat-reports.php:655
3604
  msgid "Tracking Browser Caps"
3605
  msgstr "Отслеживание возможностей браузеров"
3606
 
3607
- #: ../../admin/view/wp-slimstat-reports.php:656
3608
  msgid "Auto purge"
3609
  msgstr "Автоматическая очистка"
3610
 
3611
- #: ../../admin/view/wp-slimstat-reports.php:657
3612
  msgid "Oldest pageview"
3613
  msgstr "Самое первое посещение"
3614
 
3615
- #: ../../admin/view/wp-slimstat-reports.php:657
3616
  msgid "No visits"
3617
  msgstr "Нет посетителей"
3618
 
3619
- #: ../../admin/view/wp-slimstat-reports.php:670
3620
- #: ../../admin/view/wp-slimstat-reports.php:773
3621
  msgid ""
3622
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
3623
  "time the tracking code is executed."
@@ -3625,16 +3632,16 @@ msgstr ""
3625
  "Запрос на загрузку одного файла HTML. WP SlimStat ведет запись просмотров "
3626
  "каждый раз, когда выполняется код отслеживания."
3627
 
3628
- #: ../../admin/view/wp-slimstat-reports.php:672
3629
  msgid "How many pages have been visited on average during the current period."
3630
  msgstr "Сколько страниц были посещены в среднем за текущий период."
3631
 
3632
- #: ../../admin/view/wp-slimstat-reports.php:673
3633
- #: ../../admin/view/wp-slimstat-reports.php:1053
3634
- msgid "Avg Pageviews"
3635
  msgstr "Среднее кол-во просмотров"
3636
 
3637
- #: ../../admin/view/wp-slimstat-reports.php:674
3638
  msgid ""
3639
  "Visitors who landed on your site after searching for a keyword on Google, "
3640
  "Yahoo, etc."
@@ -3642,11 +3649,11 @@ msgstr ""
3642
  "Посетители, которые вошли на сайт по ключевому слову с поиска по Google, "
3643
  "Yahoo, и т.д."
3644
 
3645
- #: ../../admin/view/wp-slimstat-reports.php:675
3646
  msgid "From Search Results"
3647
  msgstr "Со страницы результатов поиска"
3648
 
3649
- #: ../../admin/view/wp-slimstat-reports.php:676
3650
  msgid ""
3651
  "Used to differentiate between multiple requests to download a file from one "
3652
  "internet address (IP) and requests originating from many distinct addresses"
@@ -3654,23 +3661,23 @@ msgstr ""
3654
  "Используется для различения нескольких запросов загрузки с одного IP и "
3655
  "запросов, поступающих от множественных IP."
3656
 
3657
- #: ../../admin/view/wp-slimstat-reports.php:677
3658
- #: ../../admin/view/wp-slimstat-reports.php:693
3659
- #: ../../admin/view/wp-slimstat-reports.php:1040
3660
- #: ../../admin/view/wp-slimstat-reports.php:1044
3661
- #: ../../admin/view/wp-slimstat-reports.php:1048
3662
  msgid "Unique IPs"
3663
  msgstr "Уникальные IP"
3664
 
3665
- #: ../../admin/view/wp-slimstat-reports.php:678
3666
  msgid "Last 5 minutes"
3667
  msgstr "За последние 5 минут"
3668
 
3669
- #: ../../admin/view/wp-slimstat-reports.php:679
3670
  msgid "Last 30 minutes"
3671
  msgstr "За последние 30 минут"
3672
 
3673
- #: ../../admin/view/wp-slimstat-reports.php:690
3674
  msgid ""
3675
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3676
  "multiple times if they perform multiple visits."
@@ -3678,16 +3685,16 @@ msgstr ""
3678
  "Посещение - это сеанс не более 30 минут. Повторные посетители считаются "
3679
  "несколько раз, если они выполняют несколько посещений."
3680
 
3681
- #: ../../admin/view/wp-slimstat-reports.php:691
3682
  msgid "Human visits"
3683
  msgstr "Посещение сайта человеком"
3684
 
3685
- #: ../../admin/view/wp-slimstat-reports.php:692
3686
  msgid "It includes only traffic generated by human visitors."
3687
  msgstr "Это включает в себя только трафик, генерируемый людьми."
3688
 
3689
- #: ../../admin/view/wp-slimstat-reports.php:694
3690
- #: ../../admin/view/wp-slimstat-reports.php:785
3691
  msgid ""
3692
  "Percentage of single-page visits, i.e. visits in which the person left your "
3693
  "site from the entrance page."
@@ -3695,76 +3702,76 @@ msgstr ""
3695
  "Процент одностраничного посещения, т.е. посещения сайта, в котором "
3696
  "пользователь покидает сайт со страницы входа."
3697
 
3698
- #: ../../admin/view/wp-slimstat-reports.php:695
3699
  msgid "Bounce rate"
3700
  msgstr "Показатель отказов"
3701
 
3702
- #: ../../admin/view/wp-slimstat-reports.php:696
3703
  msgid "Visitors who had previously left a comment on your blog."
3704
  msgstr "Посетители, которые ранее оставили комментарий на вашем блоге."
3705
 
3706
- #: ../../admin/view/wp-slimstat-reports.php:697
3707
  msgid "Known visitors"
3708
  msgstr "Известные пользователи"
3709
 
3710
- #: ../../admin/view/wp-slimstat-reports.php:698
3711
  msgid "Human users who visited your site only once."
3712
  msgstr "Посетители, которые заходили на ваш сайт только один раз."
3713
 
3714
- #: ../../admin/view/wp-slimstat-reports.php:699
3715
  msgid "New visitors"
3716
  msgstr "Новые посетители"
3717
 
3718
- #: ../../admin/view/wp-slimstat-reports.php:700
3719
  msgid "Bots"
3720
  msgstr "Боты"
3721
 
3722
- #: ../../admin/view/wp-slimstat-reports.php:701
3723
  msgid "Pages per visit"
3724
  msgstr "Страниц за посещение"
3725
 
3726
- #: ../../admin/view/wp-slimstat-reports.php:702
3727
- #: ../../admin/view/wp-slimstat-reports.php:1053
3728
  msgid "Longest visit"
3729
  msgstr "Самый долгий визит"
3730
 
3731
- #: ../../admin/view/wp-slimstat-reports.php:702
3732
  msgid "hits"
3733
  msgstr "просмотров"
3734
 
3735
- #: ../../admin/view/wp-slimstat-reports.php:720
3736
  msgid "0 - 30 seconds"
3737
  msgstr "0-30 секунд"
3738
 
3739
- #: ../../admin/view/wp-slimstat-reports.php:726
3740
  msgid "31 - 60 seconds"
3741
  msgstr "31-60 секунд"
3742
 
3743
- #: ../../admin/view/wp-slimstat-reports.php:732
3744
  msgid "1 - 3 minutes"
3745
  msgstr "1-3 минуты"
3746
 
3747
- #: ../../admin/view/wp-slimstat-reports.php:738
3748
  msgid "3 - 5 minutes"
3749
  msgstr "3-5 минут"
3750
 
3751
- #: ../../admin/view/wp-slimstat-reports.php:744
3752
  msgid "5 - 7 minutes"
3753
  msgstr "5-7 минут"
3754
 
3755
- #: ../../admin/view/wp-slimstat-reports.php:750
3756
  msgid "7 - 10 minutes"
3757
  msgstr "7-10 минут"
3758
 
3759
- #: ../../admin/view/wp-slimstat-reports.php:756
3760
  msgid "More than 10 minutes"
3761
  msgstr "Более 10 минут"
3762
 
3763
- #: ../../admin/view/wp-slimstat-reports.php:765
3764
  msgid "Average time on site"
3765
  msgstr "Среднее кол-во времени на сайте"
3766
 
3767
- #: ../../admin/view/wp-slimstat-reports.php:775
3768
  msgid ""
3769
  "A referrer (or referring site) is the site that a visitor previously visited "
3770
  "before following a link to your site."
@@ -3772,11 +3779,11 @@ msgstr ""
3772
  "Источник запроса (или ссылающийся сайт) является сайтом, на котором ранее "
3773
  "побывал посетитель до того как перейти с него по ссылке на ваш сайт."
3774
 
3775
- #: ../../admin/view/wp-slimstat-reports.php:776
3776
  msgid "Unique Referrers"
3777
  msgstr "Уникальные источники запроса"
3778
 
3779
- #: ../../admin/view/wp-slimstat-reports.php:777
3780
  msgid ""
3781
  "Visitors who visited the site by typing the URL directly into their browser. "
3782
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -3789,11 +3796,11 @@ msgstr ""
3789
  "это могут быть немаркированные ссылки в электронных письмах или ссылки из "
3790
  "документов, которые не включают в себя отслеживание переменных."
3791
 
3792
- #: ../../admin/view/wp-slimstat-reports.php:778
3793
  msgid "Direct Pageviews"
3794
  msgstr "Прямые переходы"
3795
 
3796
- #: ../../admin/view/wp-slimstat-reports.php:779
3797
  msgid ""
3798
  "Visitors who came to your site via searches on Google or some other search "
3799
  "engine."
@@ -3801,11 +3808,11 @@ msgstr ""
3801
  "Посетители, которые пришли на ваш сайт через поиск в Google или другой "
3802
  "поисковой системы."
3803
 
3804
- #: ../../admin/view/wp-slimstat-reports.php:780
3805
  msgid "From a search result"
3806
  msgstr "Со страницы результатов поиска"
3807
 
3808
- #: ../../admin/view/wp-slimstat-reports.php:781
3809
  msgid ""
3810
  "The first page that a user views during a session. This is also known as the "
3811
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -3818,50 +3825,50 @@ msgstr ""
3818
  "главную страницу вашего сайта, то она учитывается (для этого посещения) в "
3819
  "качестве страницы входа."
3820
 
3821
- #: ../../admin/view/wp-slimstat-reports.php:782
3822
  msgid "Unique Landing Pages"
3823
  msgstr "Уникальные страницы входа"
3824
 
3825
- #: ../../admin/view/wp-slimstat-reports.php:783
3826
  msgid "Number of single-page visits to your site over the selected period."
3827
  msgstr "Число одностраничных посещений на ваш сайт за выбранный период."
3828
 
3829
- #: ../../admin/view/wp-slimstat-reports.php:784
3830
  msgid "Bounce Pages"
3831
  msgstr "Страницы отказов"
3832
 
3833
- #: ../../admin/view/wp-slimstat-reports.php:786
3834
  msgid "New Visitors Rate"
3835
  msgstr "Показатель новых посетителей"
3836
 
3837
- #: ../../admin/view/wp-slimstat-reports.php:787
3838
  msgid ""
3839
  "Visitors who visited the site in the last 5 minutes coming from a search "
3840
  "engine."
3841
  msgstr ""
3842
  "Посетители, которые посетили сайт из поисковой системы за последние 5 минут."
3843
 
3844
- #: ../../admin/view/wp-slimstat-reports.php:788
3845
  msgid "Currently from search engines"
3846
  msgstr "В настоящее время из поисковых систем"
3847
 
3848
- #: ../../admin/view/wp-slimstat-reports.php:856
3849
  msgid "Number of pages in your site included in Google's index."
3850
  msgstr "Количество страниц вашего сайта, проиндексированные Google."
3851
 
3852
- #: ../../admin/view/wp-slimstat-reports.php:857
3853
  msgid "Google Index"
3854
  msgstr "Указатели Google"
3855
 
3856
- #: ../../admin/view/wp-slimstat-reports.php:858
3857
  msgid "Number of pages, according to Google, that link back to your site."
3858
  msgstr "Количество страниц, по мнению Google, которые ссылаются на ваш сайт."
3859
 
3860
- #: ../../admin/view/wp-slimstat-reports.php:859
3861
  msgid "Google Backlinks"
3862
  msgstr "Внешние ссылки Google"
3863
 
3864
- #: ../../admin/view/wp-slimstat-reports.php:860
3865
  msgid ""
3866
  "How many times the Facebook Like button has been approximately clicked on "
3867
  "your site."
@@ -3869,28 +3876,28 @@ msgstr ""
3869
  "Сколько раз кнопка 'нравится на Фейсбуке' примерно была нажата на Вашем "
3870
  "сайте."
3871
 
3872
- #: ../../admin/view/wp-slimstat-reports.php:861
3873
  msgid "Facebook Likes"
3874
  msgstr "Понравилось на Фейсбуке"
3875
 
3876
- #: ../../admin/view/wp-slimstat-reports.php:862
3877
  msgid ""
3878
  "How many times your site has been shared by someone on the social network."
3879
  msgstr "Сколько раз вашим сайтом кто-то поделился в социальной сети."
3880
 
3881
- #: ../../admin/view/wp-slimstat-reports.php:863
3882
  msgid "Facebook Shares"
3883
  msgstr "Поделились на Фейсбуке"
3884
 
3885
- #: ../../admin/view/wp-slimstat-reports.php:864
3886
  msgid "How many times links to your website have been clicked on Facebook."
3887
  msgstr "Сколько раз ссылки на ваш сайт были нажаты на Фейсбуке."
3888
 
3889
- #: ../../admin/view/wp-slimstat-reports.php:865
3890
  msgid "Facebook Clicks"
3891
  msgstr "Переходы с Фейсбука"
3892
 
3893
- #: ../../admin/view/wp-slimstat-reports.php:866
3894
  msgid ""
3895
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3896
  "traffic data."
@@ -3898,1145 +3905,1149 @@ msgstr ""
3898
  "Alexa является дочерней компанией Amazon.com, которая предоставляет "
3899
  "коммерческие данные интернет-трафика."
3900
 
3901
- #: ../../admin/view/wp-slimstat-reports.php:867
3902
  msgid "Alexa World Rank"
3903
  msgstr "Всемирный рейтинг от Alexa"
3904
 
3905
- #: ../../admin/view/wp-slimstat-reports.php:868
3906
  msgid "Alexa Country Rank"
3907
  msgstr "Рейтинг стран от Alexa"
3908
 
3909
- #: ../../admin/view/wp-slimstat-reports.php:869
3910
  msgid "Alexa Popularity"
3911
  msgstr "Популярность от Alexa"
3912
 
3913
- #: ../../admin/view/wp-slimstat-reports.php:882
3914
  msgid "Bing Test"
3915
  msgstr "Bing тест"
3916
 
3917
- #: ../../admin/view/wp-slimstat-reports.php:883
3918
  msgid "AntiVirus Scan"
3919
  msgstr "Антивирусное сканирование"
3920
 
3921
- #: ../../admin/view/wp-slimstat-reports.php:884
3922
  msgid "Google Bot Test"
3923
  msgstr "Google Бот тест"
3924
 
3925
- #: ../../admin/view/wp-slimstat-reports.php:885
3926
  msgid "Scan for Hostile Strings"
3927
  msgstr "Проверка на враждебные строки"
3928
 
3929
- #: ../../admin/view/wp-slimstat-reports.php:886
3930
  msgid "Generic Web Bot test"
3931
  msgstr "Общий Интернет Бот тест"
3932
 
3933
- #: ../../admin/view/wp-slimstat-reports.php:887
3934
  msgid "Google Safe Browsing List"
3935
  msgstr "Список безопасного просмота Google"
3936
 
3937
- #: ../../admin/view/wp-slimstat-reports.php:888
3938
  msgid "Hostile External Links"
3939
  msgstr "Враждебные внешние ссылки"
3940
 
3941
- #: ../../admin/view/wp-slimstat-reports.php:889
3942
  msgid "Other Treats"
3943
  msgstr "Другие посетители"
3944
 
3945
- #: ../../admin/view/wp-slimstat-reports.php:902
3946
  msgid "Passed"
3947
  msgstr "Прошел"
3948
 
3949
- #: ../../admin/view/wp-slimstat-reports.php:902
3950
  msgid "At Risk"
3951
  msgstr "Под угрозой"
3952
 
3953
- #: ../../admin/view/wp-slimstat-reports.php:905
3954
  msgid "Timed Out"
3955
  msgstr "Сбой проверки"
3956
 
3957
  # Unknown
3958
- #: ../../admin/view/wp-slimstat-reports.php:919
3959
  msgid "c-xx"
3960
  msgstr "Неизвестно"
3961
 
3962
  # Afghanistan
3963
- #: ../../admin/view/wp-slimstat-reports.php:919
3964
  msgid "c-af"
3965
  msgstr "Афганистан"
3966
 
3967
  # Åland Islands
3968
- #: ../../admin/view/wp-slimstat-reports.php:919
3969
  msgid "c-ax"
3970
  msgstr "Аландские острова"
3971
 
3972
  # Albania
3973
- #: ../../admin/view/wp-slimstat-reports.php:919
3974
  msgid "c-al"
3975
  msgstr "Албания"
3976
 
3977
  # Algeria
3978
- #: ../../admin/view/wp-slimstat-reports.php:919
3979
  msgid "c-dz"
3980
  msgstr "Алжир"
3981
 
3982
  # Andorra
3983
- #: ../../admin/view/wp-slimstat-reports.php:919
3984
  msgid "c-ad"
3985
  msgstr "Андорра"
3986
 
3987
  # Angola
3988
- #: ../../admin/view/wp-slimstat-reports.php:919
3989
  msgid "c-ao"
3990
  msgstr "Ангола"
3991
 
3992
  # Anguilla
3993
- #: ../../admin/view/wp-slimstat-reports.php:919
3994
  msgid "c-ai"
3995
  msgstr "Ангилья"
3996
 
3997
  # Antigua and Barbuda
3998
- #: ../../admin/view/wp-slimstat-reports.php:919
3999
  msgid "c-ag"
4000
  msgstr "Антигуа и Барбуда"
4001
 
4002
  # Argentina
4003
- #: ../../admin/view/wp-slimstat-reports.php:919
4004
  msgid "c-ar"
4005
  msgstr "Аргентина"
4006
 
4007
  # Armenia
4008
- #: ../../admin/view/wp-slimstat-reports.php:919
4009
  msgid "c-am"
4010
  msgstr "Армения"
4011
 
4012
  # Aruba
4013
- #: ../../admin/view/wp-slimstat-reports.php:919
4014
  msgid "c-aw"
4015
  msgstr "Аруба"
4016
 
4017
  # Australia
4018
- #: ../../admin/view/wp-slimstat-reports.php:919
4019
  msgid "c-au"
4020
  msgstr "Австралия"
4021
 
4022
  # Austria
4023
- #: ../../admin/view/wp-slimstat-reports.php:919
4024
  msgid "c-at"
4025
  msgstr "Австрия"
4026
 
4027
  # Azerbaijan
4028
- #: ../../admin/view/wp-slimstat-reports.php:919
4029
  msgid "c-az"
4030
  msgstr "Азербайджан"
4031
 
4032
  # Bahamas
4033
- #: ../../admin/view/wp-slimstat-reports.php:919
4034
  msgid "c-bs"
4035
  msgstr "Багамы"
4036
 
4037
  # Bahrain
4038
- #: ../../admin/view/wp-slimstat-reports.php:919
4039
  msgid "c-bh"
4040
  msgstr "Бахрейн"
4041
 
4042
  # Bangladesh
4043
- #: ../../admin/view/wp-slimstat-reports.php:919
4044
  msgid "c-bd"
4045
  msgstr "Бангладеш"
4046
 
4047
  # Barbados
4048
- #: ../../admin/view/wp-slimstat-reports.php:919
4049
  msgid "c-bb"
4050
  msgstr "Барбадос"
4051
 
4052
  # Belarus
4053
- #: ../../admin/view/wp-slimstat-reports.php:919
4054
  msgid "c-by"
4055
  msgstr "Беларусь"
4056
 
4057
  # Belgium
4058
- #: ../../admin/view/wp-slimstat-reports.php:919
4059
  msgid "c-be"
4060
  msgstr "Бельгия"
4061
 
4062
  # Belize
4063
- #: ../../admin/view/wp-slimstat-reports.php:919
4064
  msgid "c-bz"
4065
  msgstr "Белиз"
4066
 
4067
  # Benin
4068
- #: ../../admin/view/wp-slimstat-reports.php:919
4069
  msgid "c-bj"
4070
  msgstr "Бенин"
4071
 
4072
  # Bermuda
4073
- #: ../../admin/view/wp-slimstat-reports.php:919
4074
  msgid "c-bm"
4075
  msgstr "Бермуды"
4076
 
4077
  # Bhutan
4078
- #: ../../admin/view/wp-slimstat-reports.php:919
4079
  msgid "c-bt"
4080
  msgstr "Бутан"
4081
 
4082
  # Bolivia
4083
- #: ../../admin/view/wp-slimstat-reports.php:919
4084
  msgid "c-bo"
4085
  msgstr "Боливия"
4086
 
4087
  # Bosnia and Herzegovina
4088
- #: ../../admin/view/wp-slimstat-reports.php:919
4089
  msgid "c-ba"
4090
  msgstr "Босния и Герцеговина"
4091
 
4092
  # Botswana
4093
- #: ../../admin/view/wp-slimstat-reports.php:919
4094
  msgid "c-bw"
4095
  msgstr "Ботсвана"
4096
 
4097
  # Brazil
4098
- #: ../../admin/view/wp-slimstat-reports.php:919
4099
  msgid "c-br"
4100
  msgstr "Бразилия"
4101
 
4102
  # Brunei Darussalam
4103
- #: ../../admin/view/wp-slimstat-reports.php:919
4104
  msgid "c-bn"
4105
  msgstr "Бруней"
4106
 
4107
  # Bulgaria
4108
- #: ../../admin/view/wp-slimstat-reports.php:919
4109
  msgid "c-bg"
4110
  msgstr "Болгария"
4111
 
4112
  # Burkina Faso
4113
- #: ../../admin/view/wp-slimstat-reports.php:919
4114
  msgid "c-bf"
4115
  msgstr "Буркина-Фасо"
4116
 
4117
  # Burundi
4118
- #: ../../admin/view/wp-slimstat-reports.php:919
4119
  msgid "c-bi"
4120
  msgstr "Бурунди"
4121
 
4122
  # Cambodia
4123
- #: ../../admin/view/wp-slimstat-reports.php:919
4124
  msgid "c-kh"
4125
  msgstr "Камбоджа"
4126
 
4127
  # Cameroon
4128
- #: ../../admin/view/wp-slimstat-reports.php:919
4129
  msgid "c-cm"
4130
  msgstr "Камерун"
4131
 
4132
  # Canada
4133
- #: ../../admin/view/wp-slimstat-reports.php:919
4134
  msgid "c-ca"
4135
  msgstr "Канада"
4136
 
4137
  # Cape Verde
4138
- #: ../../admin/view/wp-slimstat-reports.php:919
4139
  msgid "c-cv"
4140
  msgstr "Кабо-Верде"
4141
 
4142
  # Cayman Islands
4143
- #: ../../admin/view/wp-slimstat-reports.php:919
4144
  msgid "c-ky"
4145
  msgstr "Каймановы острова"
4146
 
4147
  # Central African Republic
4148
- #: ../../admin/view/wp-slimstat-reports.php:919
4149
  msgid "c-cf"
4150
  msgstr "ЦАР"
4151
 
4152
  # Chad
4153
- #: ../../admin/view/wp-slimstat-reports.php:919
4154
  msgid "c-td"
4155
  msgstr "Чад"
4156
 
4157
  # Chile
4158
- #: ../../admin/view/wp-slimstat-reports.php:919
4159
  msgid "c-cl"
4160
  msgstr "Чили"
4161
 
4162
  # China
4163
- #: ../../admin/view/wp-slimstat-reports.php:919
4164
  msgid "c-cn"
4165
  msgstr "Китай"
4166
 
4167
  # Colombia
4168
- #: ../../admin/view/wp-slimstat-reports.php:919
4169
  msgid "c-co"
4170
  msgstr "Колумбия"
4171
 
4172
  # Comoros
4173
- #: ../../admin/view/wp-slimstat-reports.php:919
4174
  msgid "c-km"
4175
  msgstr "Коморы"
4176
 
4177
  # Congo
4178
- #: ../../admin/view/wp-slimstat-reports.php:919
4179
  msgid "c-cg"
4180
  msgstr "Конго"
4181
 
4182
  # The Democratic Republic of the Congo
4183
- #: ../../admin/view/wp-slimstat-reports.php:919
4184
  msgid "c-cd"
4185
  msgstr "Демократическая Республика Конго"
4186
 
4187
  # Costa Rica
4188
- #: ../../admin/view/wp-slimstat-reports.php:919
4189
  msgid "c-cr"
4190
  msgstr "Коста-Рика"
4191
 
4192
  # Côte d'Ivoire
4193
- #: ../../admin/view/wp-slimstat-reports.php:919
4194
  msgid "c-ci"
4195
  msgstr "Кот-д’Ивуар"
4196
 
4197
  # Croatia
4198
- #: ../../admin/view/wp-slimstat-reports.php:919
4199
  msgid "c-hr"
4200
  msgstr "Хорватия"
4201
 
4202
  # Cuba
4203
- #: ../../admin/view/wp-slimstat-reports.php:919
4204
  msgid "c-cu"
4205
  msgstr "Куба"
4206
 
4207
  # Cyprus
4208
- #: ../../admin/view/wp-slimstat-reports.php:919
4209
  msgid "c-cy"
4210
  msgstr "Кипр"
4211
 
4212
  # Czech Republic
4213
- #: ../../admin/view/wp-slimstat-reports.php:919
4214
  msgid "c-cz"
4215
  msgstr "Чехия"
4216
 
4217
  # Denmark
4218
- #: ../../admin/view/wp-slimstat-reports.php:919
4219
  msgid "c-dk"
4220
  msgstr "Дания"
4221
 
4222
  # Djibouti
4223
- #: ../../admin/view/wp-slimstat-reports.php:919
4224
  msgid "c-dj"
4225
  msgstr "Джибути"
4226
 
4227
  # Dominica
4228
- #: ../../admin/view/wp-slimstat-reports.php:919
4229
  msgid "c-dm"
4230
  msgstr "Доминика"
4231
 
4232
  # Dominican Republic
4233
- #: ../../admin/view/wp-slimstat-reports.php:919
4234
  msgid "c-do"
4235
  msgstr "Доминиканская Республика"
4236
 
4237
  # Ecuador
4238
- #: ../../admin/view/wp-slimstat-reports.php:919
4239
  msgid "c-ec"
4240
  msgstr "Эквадор"
4241
 
4242
  # Egypt
4243
- #: ../../admin/view/wp-slimstat-reports.php:919
4244
  msgid "c-eg"
4245
  msgstr "Египет"
4246
 
4247
  # El Salvador
4248
- #: ../../admin/view/wp-slimstat-reports.php:919
4249
  msgid "c-sv"
4250
  msgstr "Сальвадор"
4251
 
4252
  # Equatorial Guinea
4253
- #: ../../admin/view/wp-slimstat-reports.php:919
4254
  msgid "c-gq"
4255
  msgstr "Экваториальная Гвинея"
4256
 
4257
  # Eritrea
4258
- #: ../../admin/view/wp-slimstat-reports.php:919
4259
  msgid "c-er"
4260
  msgstr "Эритрея"
4261
 
4262
  # Estonia
4263
- #: ../../admin/view/wp-slimstat-reports.php:919
4264
  msgid "c-ee"
4265
  msgstr "Эстония"
4266
 
4267
  # Ethiopia
4268
- #: ../../admin/view/wp-slimstat-reports.php:919
4269
  msgid "c-et"
4270
  msgstr "Эфиопия"
4271
 
4272
  # Faroe Islands
4273
- #: ../../admin/view/wp-slimstat-reports.php:919
4274
  msgid "c-fo"
4275
  msgstr "Фарерские острова"
4276
 
4277
  # Falkland Islands (Malvinas)
4278
- #: ../../admin/view/wp-slimstat-reports.php:919
4279
  msgid "c-fk"
4280
  msgstr "Фолклендские острова"
4281
 
4282
  # Fiji
4283
- #: ../../admin/view/wp-slimstat-reports.php:919
4284
  msgid "c-fj"
4285
  msgstr "Фиджи"
4286
 
4287
  # Finland
4288
- #: ../../admin/view/wp-slimstat-reports.php:919
4289
  msgid "c-fi"
4290
  msgstr "Финляндия"
4291
 
4292
  # France
4293
- #: ../../admin/view/wp-slimstat-reports.php:919
4294
  msgid "c-fr"
4295
  msgstr "Франция"
4296
 
4297
  # French Guiana
4298
- #: ../../admin/view/wp-slimstat-reports.php:919
4299
  msgid "c-gf"
4300
  msgstr "Французская Гвиана"
4301
 
4302
  # Gabon
4303
- #: ../../admin/view/wp-slimstat-reports.php:919
4304
  msgid "c-ga"
4305
  msgstr "Габон"
4306
 
4307
  # Gambia
4308
- #: ../../admin/view/wp-slimstat-reports.php:919
4309
  msgid "c-gm"
4310
  msgstr "Гамбия"
4311
 
4312
  # Georgia
4313
- #: ../../admin/view/wp-slimstat-reports.php:919
4314
  msgid "c-ge"
4315
  msgstr "Грузия"
4316
 
4317
  # Germany
4318
- #: ../../admin/view/wp-slimstat-reports.php:919
4319
  msgid "c-de"
4320
  msgstr "Германия"
4321
 
4322
  # Ghana
4323
- #: ../../admin/view/wp-slimstat-reports.php:919
4324
  msgid "c-gh"
4325
  msgstr "Гана"
4326
 
4327
  # Greece
4328
- #: ../../admin/view/wp-slimstat-reports.php:919
4329
  msgid "c-gr"
4330
  msgstr "Греция"
4331
 
4332
  # Greenland
4333
- #: ../../admin/view/wp-slimstat-reports.php:919
4334
  msgid "c-gl"
4335
  msgstr "Гренландия"
4336
 
4337
  # Grenada
4338
- #: ../../admin/view/wp-slimstat-reports.php:919
4339
  msgid "c-gd"
4340
  msgstr "Гренада"
4341
 
4342
  # Guadeloupe
4343
- #: ../../admin/view/wp-slimstat-reports.php:919
4344
  msgid "c-gp"
4345
  msgstr "Гваделупа"
4346
 
4347
  # Guatemala
4348
- #: ../../admin/view/wp-slimstat-reports.php:919
4349
  msgid "c-gt"
4350
  msgstr "Гватемала"
4351
 
4352
  # Guinea
4353
- #: ../../admin/view/wp-slimstat-reports.php:919
4354
  msgid "c-gn"
4355
  msgstr "Гвинея"
4356
 
4357
  # Guinea-Bissau
4358
- #: ../../admin/view/wp-slimstat-reports.php:919
4359
  msgid "c-gw"
4360
  msgstr "Гвинея-Бисау"
4361
 
4362
  # Guyana
4363
- #: ../../admin/view/wp-slimstat-reports.php:919
4364
  msgid "c-gy"
4365
  msgstr "Гайана"
4366
 
4367
  # Haiti
4368
- #: ../../admin/view/wp-slimstat-reports.php:919
4369
  msgid "c-ht"
4370
  msgstr "Гаити"
4371
 
4372
  # Honduras
4373
- #: ../../admin/view/wp-slimstat-reports.php:919
4374
  msgid "c-hn"
4375
  msgstr "Гондурас"
4376
 
4377
  # Hong Kong
4378
- #: ../../admin/view/wp-slimstat-reports.php:919
4379
  msgid "c-hk"
4380
  msgstr "Гонконг"
4381
 
4382
  # Hungary
4383
- #: ../../admin/view/wp-slimstat-reports.php:919
4384
  msgid "c-hu"
4385
  msgstr "Венгрия"
4386
 
4387
  # Iceland
4388
- #: ../../admin/view/wp-slimstat-reports.php:919
4389
  msgid "c-is"
4390
  msgstr "Исландия"
4391
 
4392
  # India
4393
- #: ../../admin/view/wp-slimstat-reports.php:919
4394
  msgid "c-in"
4395
  msgstr "Индия"
4396
 
4397
  # Indonesia
4398
- #: ../../admin/view/wp-slimstat-reports.php:919
4399
  msgid "c-id"
4400
  msgstr "Индонезия"
4401
 
4402
  # Islamic Republic of Iran
4403
- #: ../../admin/view/wp-slimstat-reports.php:919
4404
  msgid "c-ir"
4405
  msgstr "Иран"
4406
 
4407
  # Iraq
4408
- #: ../../admin/view/wp-slimstat-reports.php:919
4409
  msgid "c-iq"
4410
  msgstr "Ирак"
4411
 
4412
  # Ireland
4413
- #: ../../admin/view/wp-slimstat-reports.php:919
4414
  msgid "c-ie"
4415
  msgstr "Ирландия"
4416
 
4417
  # Israel
4418
- #: ../../admin/view/wp-slimstat-reports.php:919
4419
  msgid "c-il"
4420
  msgstr "Израиль"
4421
 
4422
  # Italy
4423
- #: ../../admin/view/wp-slimstat-reports.php:919
4424
  msgid "c-it"
4425
  msgstr "Италия"
4426
 
4427
  # Jamaica
4428
- #: ../../admin/view/wp-slimstat-reports.php:919
4429
  msgid "c-jm"
4430
  msgstr "Ямайка"
4431
 
4432
  # Japan
4433
- #: ../../admin/view/wp-slimstat-reports.php:919
4434
  msgid "c-jp"
4435
  msgstr "Япония"
4436
 
4437
  # Jordan
4438
- #: ../../admin/view/wp-slimstat-reports.php:919
4439
  msgid "c-jo"
4440
  msgstr "Иордания"
4441
 
4442
  # Kazakhstan
4443
- #: ../../admin/view/wp-slimstat-reports.php:919
4444
  msgid "c-kz"
4445
  msgstr "Казахстан"
4446
 
4447
  # Kenya
4448
- #: ../../admin/view/wp-slimstat-reports.php:919
4449
  msgid "c-ke"
4450
  msgstr "Кения"
4451
 
4452
  # Nauru
4453
- #: ../../admin/view/wp-slimstat-reports.php:919
4454
  msgid "c-nr"
4455
  msgstr "Науру"
4456
 
4457
  # Democratic People's Republic of Korea
4458
- #: ../../admin/view/wp-slimstat-reports.php:919
4459
  msgid "c-kp"
4460
  msgstr "Северная Корея"
4461
 
4462
  # Republic of Korea
4463
- #: ../../admin/view/wp-slimstat-reports.php:919
4464
  msgid "c-kr"
4465
  msgstr "Южная Корея"
4466
 
4467
- #: ../../admin/view/wp-slimstat-reports.php:919
4468
  msgid "c-kv"
4469
  msgstr "Республика Косово"
4470
 
4471
  # Kuwait
4472
- #: ../../admin/view/wp-slimstat-reports.php:919
4473
  msgid "c-kw"
4474
  msgstr "Кувейт"
4475
 
4476
  # Kyrgyzstan
4477
- #: ../../admin/view/wp-slimstat-reports.php:919
4478
  msgid "c-kg"
4479
  msgstr "Киргизия"
4480
 
4481
  # Lao People's Democratic Republic
4482
- #: ../../admin/view/wp-slimstat-reports.php:919
4483
  msgid "c-la"
4484
  msgstr "Лаос"
4485
 
4486
  # Latvia
4487
- #: ../../admin/view/wp-slimstat-reports.php:919
4488
  msgid "c-lv"
4489
  msgstr "Латвия"
4490
 
4491
  # Lebanon
4492
- #: ../../admin/view/wp-slimstat-reports.php:919
4493
  msgid "c-lb"
4494
  msgstr "Ливан"
4495
 
4496
  # Lesotho
4497
- #: ../../admin/view/wp-slimstat-reports.php:919
4498
  msgid "c-ls"
4499
  msgstr "Лесото"
4500
 
4501
  # Liberia
4502
- #: ../../admin/view/wp-slimstat-reports.php:919
4503
  msgid "c-lr"
4504
  msgstr "Либерия"
4505
 
4506
  # Libyan Arab Jamahiriya
4507
- #: ../../admin/view/wp-slimstat-reports.php:919
4508
  msgid "c-ly"
4509
  msgstr "Ливия"
4510
 
4511
  # Liechtenstein
4512
- #: ../../admin/view/wp-slimstat-reports.php:919
4513
  msgid "c-li"
4514
  msgstr "Лихтенштейн"
4515
 
4516
  # Lithuania
4517
- #: ../../admin/view/wp-slimstat-reports.php:919
4518
  msgid "c-lt"
4519
  msgstr "Литва"
4520
 
4521
  # Luxembourg
4522
- #: ../../admin/view/wp-slimstat-reports.php:919
4523
  msgid "c-lu"
4524
  msgstr "Люксембург"
4525
 
4526
  # The Former Yugoslav Republic of Macedonia
4527
- #: ../../admin/view/wp-slimstat-reports.php:919
4528
  msgid "c-mk"
4529
  msgstr "Республика Македония"
4530
 
4531
  # Madagascar
4532
- #: ../../admin/view/wp-slimstat-reports.php:919
4533
  msgid "c-mg"
4534
  msgstr "Мадагаскар"
4535
 
4536
  # Malawi
4537
- #: ../../admin/view/wp-slimstat-reports.php:919
4538
  msgid "c-mw"
4539
  msgstr "Малави"
4540
 
4541
  # Malaysia
4542
- #: ../../admin/view/wp-slimstat-reports.php:919
4543
  msgid "c-my"
4544
  msgstr "Малайзия"
4545
 
4546
  # Mali
4547
- #: ../../admin/view/wp-slimstat-reports.php:919
4548
  msgid "c-ml"
4549
  msgstr "Мали"
4550
 
4551
  # Malta
4552
- #: ../../admin/view/wp-slimstat-reports.php:919
4553
  msgid "c-mt"
4554
  msgstr "Мальта"
4555
 
4556
  # Martinique
4557
- #: ../../admin/view/wp-slimstat-reports.php:919
4558
  msgid "c-mq"
4559
  msgstr "Мартиника"
4560
 
4561
  # Mauritania
4562
- #: ../../admin/view/wp-slimstat-reports.php:919
4563
  msgid "c-mr"
4564
  msgstr "Мавритания"
4565
 
4566
  # Mauritius
4567
- #: ../../admin/view/wp-slimstat-reports.php:919
4568
  msgid "c-mu"
4569
  msgstr "Маврикий"
4570
 
4571
  # Mexico
4572
- #: ../../admin/view/wp-slimstat-reports.php:919
4573
  msgid "c-mx"
4574
  msgstr "Мексика"
4575
 
4576
  # Moldova
4577
- #: ../../admin/view/wp-slimstat-reports.php:919
4578
  msgid "c-md"
4579
  msgstr "Молдавия"
4580
 
4581
  # Mongolia
4582
- #: ../../admin/view/wp-slimstat-reports.php:919
4583
  msgid "c-mn"
4584
  msgstr "Монголия"
4585
 
4586
  # Montenegro
4587
- #: ../../admin/view/wp-slimstat-reports.php:919
4588
  msgid "c-me"
4589
  msgstr "Черногория"
4590
 
4591
  # Montserrat
4592
- #: ../../admin/view/wp-slimstat-reports.php:919
4593
  msgid "c-ms"
4594
  msgstr "Монтсеррат"
4595
 
4596
  # Morocco
4597
- #: ../../admin/view/wp-slimstat-reports.php:919
4598
  msgid "c-ma"
4599
  msgstr "Марокко"
4600
 
4601
  # Mozambique
4602
- #: ../../admin/view/wp-slimstat-reports.php:919
4603
  msgid "c-mz"
4604
  msgstr "Мозамбик"
4605
 
4606
  # Myanmar
4607
- #: ../../admin/view/wp-slimstat-reports.php:919
4608
  msgid "c-mm"
4609
  msgstr "Мьянма"
4610
 
4611
  # Namibia
4612
- #: ../../admin/view/wp-slimstat-reports.php:919
4613
  msgid "c-na"
4614
  msgstr "Намибия"
4615
 
4616
  # Nepal
4617
- #: ../../admin/view/wp-slimstat-reports.php:919
4618
  msgid "c-np"
4619
  msgstr "Непал"
4620
 
4621
  # Netherlands
4622
- #: ../../admin/view/wp-slimstat-reports.php:919
4623
  msgid "c-nl"
4624
  msgstr "Нидерланды"
4625
 
4626
  # New Caledonia
4627
- #: ../../admin/view/wp-slimstat-reports.php:919
4628
  msgid "c-nc"
4629
  msgstr "Новая Каледония"
4630
 
4631
  # New Zealand
4632
- #: ../../admin/view/wp-slimstat-reports.php:919
4633
  msgid "c-nz"
4634
  msgstr "Новая Зеландия"
4635
 
4636
  # Nicaragua
4637
- #: ../../admin/view/wp-slimstat-reports.php:919
4638
  msgid "c-ni"
4639
  msgstr "Никарагуа"
4640
 
4641
  # Niger
4642
- #: ../../admin/view/wp-slimstat-reports.php:919
4643
  msgid "c-ne"
4644
  msgstr "Нигер"
4645
 
4646
  # Nigeria
4647
- #: ../../admin/view/wp-slimstat-reports.php:919
4648
  msgid "c-ng"
4649
  msgstr "Нигерия"
4650
 
4651
  # Norway
4652
- #: ../../admin/view/wp-slimstat-reports.php:919
4653
  msgid "c-no"
4654
  msgstr "Норвегия"
4655
 
4656
  # Oman
4657
- #: ../../admin/view/wp-slimstat-reports.php:919
4658
  msgid "c-om"
4659
  msgstr "Оман"
4660
 
4661
  # Pakistan
4662
- #: ../../admin/view/wp-slimstat-reports.php:919
4663
  msgid "c-pk"
4664
  msgstr "Пакистан"
4665
 
4666
  # Palau
4667
- #: ../../admin/view/wp-slimstat-reports.php:919
4668
  msgid "c-pw"
4669
  msgstr "Палау"
4670
 
4671
  # Occupied Palestinian Territory
4672
- #: ../../admin/view/wp-slimstat-reports.php:919
4673
  msgid "c-ps"
4674
  msgstr "Палестинская автономия"
4675
 
4676
  # Panama
4677
- #: ../../admin/view/wp-slimstat-reports.php:919
4678
  msgid "c-pa"
4679
  msgstr "Панама"
4680
 
4681
  # Papua New Guinea
4682
- #: ../../admin/view/wp-slimstat-reports.php:919
4683
  msgid "c-pg"
4684
  msgstr "Папуа - Новая Гвинея"
4685
 
4686
  # Paraguay
4687
- #: ../../admin/view/wp-slimstat-reports.php:919
4688
  msgid "c-py"
4689
  msgstr "Парагвай"
4690
 
4691
  # Peru
4692
- #: ../../admin/view/wp-slimstat-reports.php:919
4693
  msgid "c-pe"
4694
  msgstr "Перу"
4695
 
4696
  # Philippines
4697
- #: ../../admin/view/wp-slimstat-reports.php:919
4698
  msgid "c-ph"
4699
  msgstr "Филиппины"
4700
 
4701
  # Poland
4702
- #: ../../admin/view/wp-slimstat-reports.php:919
4703
  msgid "c-pl"
4704
  msgstr "Польша"
4705
 
4706
  # Portugal
4707
- #: ../../admin/view/wp-slimstat-reports.php:919
4708
  msgid "c-pt"
4709
  msgstr "Португалия"
4710
 
4711
  # Puerto Rico
4712
- #: ../../admin/view/wp-slimstat-reports.php:919
4713
  msgid "c-pr"
4714
  msgstr "Пуэрто-Рико"
4715
 
4716
  # Qatar
4717
- #: ../../admin/view/wp-slimstat-reports.php:919
4718
  msgid "c-qa"
4719
  msgstr "Катар"
4720
 
4721
  # Réunion
4722
- #: ../../admin/view/wp-slimstat-reports.php:919
4723
  msgid "c-re"
4724
  msgstr "Реюньон"
4725
 
4726
  # Romania
4727
- #: ../../admin/view/wp-slimstat-reports.php:919
4728
  msgid "c-ro"
4729
  msgstr "Румыния"
4730
 
4731
  # Russian Federation
4732
- #: ../../admin/view/wp-slimstat-reports.php:919
4733
  msgid "c-ru"
4734
  msgstr "Россия"
4735
 
4736
  # Rwanda
4737
- #: ../../admin/view/wp-slimstat-reports.php:919
4738
  msgid "c-rw"
4739
  msgstr "Руанда"
4740
 
4741
  # Saint Kitts and Nevis
4742
- #: ../../admin/view/wp-slimstat-reports.php:919
4743
  msgid "c-kn"
4744
  msgstr "Сент-Китс и Невис"
4745
 
4746
  # Saint Lucia
4747
- #: ../../admin/view/wp-slimstat-reports.php:919
4748
  msgid "c-lc"
4749
  msgstr "Сент-Люсия"
4750
 
4751
  # Saint Martin
4752
- #: ../../admin/view/wp-slimstat-reports.php:919
4753
  msgid "c-mf"
4754
  msgstr "Сен-Мартен"
4755
 
4756
  # Saint Vincent and the Grenadines
4757
- #: ../../admin/view/wp-slimstat-reports.php:919
4758
  msgid "c-vc"
4759
  msgstr "Сент-Винсент и Гренадины"
4760
 
4761
  # Samoa
4762
- #: ../../admin/view/wp-slimstat-reports.php:919
4763
  msgid "c-ws"
4764
  msgstr "Самоа"
4765
 
4766
  # Sao Tome and Principe
4767
- #: ../../admin/view/wp-slimstat-reports.php:919
4768
  msgid "c-st"
4769
  msgstr "Сан-Томе и Принсипи"
4770
 
4771
  # Saudi Arabia
4772
- #: ../../admin/view/wp-slimstat-reports.php:919
4773
  msgid "c-sa"
4774
  msgstr "Саудовская Аравия"
4775
 
4776
  # Senegal
4777
- #: ../../admin/view/wp-slimstat-reports.php:919
4778
  msgid "c-sn"
4779
  msgstr "Сенегал"
4780
 
4781
  # Serbia
4782
- #: ../../admin/view/wp-slimstat-reports.php:919
4783
  msgid "c-rs"
4784
  msgstr "Сербия"
4785
 
4786
  # Sierra Leone
4787
- #: ../../admin/view/wp-slimstat-reports.php:919
4788
  msgid "c-sl"
4789
  msgstr "Сьерра-Леоне"
4790
 
4791
  # Singapore
4792
- #: ../../admin/view/wp-slimstat-reports.php:919
4793
  msgid "c-sg"
4794
  msgstr "Сингапур"
4795
 
4796
  # Slovakia
4797
- #: ../../admin/view/wp-slimstat-reports.php:919
4798
  msgid "c-sk"
4799
  msgstr "Словакия"
4800
 
4801
  # Slovenia
4802
- #: ../../admin/view/wp-slimstat-reports.php:919
4803
  msgid "c-si"
4804
  msgstr "Словения"
4805
 
4806
  # Solomon Islands
4807
- #: ../../admin/view/wp-slimstat-reports.php:919
4808
  msgid "c-sb"
4809
  msgstr "Соломоновы Острова"
4810
 
4811
  # Somalia
4812
- #: ../../admin/view/wp-slimstat-reports.php:919
4813
  msgid "c-so"
4814
  msgstr "Сомали"
4815
 
4816
  # South Africa
4817
- #: ../../admin/view/wp-slimstat-reports.php:919
4818
  msgid "c-za"
4819
  msgstr "ЮАР"
4820
 
4821
  # South Georgia and the South Sandwich Islands
4822
- #: ../../admin/view/wp-slimstat-reports.php:919
4823
  msgid "c-gs"
4824
  msgstr "Южная Георгия и Южные Сандвичевы острова"
4825
 
4826
  # Spain
4827
- #: ../../admin/view/wp-slimstat-reports.php:919
4828
  msgid "c-es"
4829
  msgstr "Испания"
4830
 
4831
  # Sri Lanka
4832
- #: ../../admin/view/wp-slimstat-reports.php:919
4833
  msgid "c-lk"
4834
  msgstr "Шри-Ланка"
4835
 
 
 
 
 
4836
  # Sudan
4837
- #: ../../admin/view/wp-slimstat-reports.php:919
4838
  msgid "c-sd"
4839
  msgstr "Судан"
4840
 
4841
- #: ../../admin/view/wp-slimstat-reports.php:919
4842
  msgid "c-ss"
4843
  msgstr "Южный Судан"
4844
 
4845
  # Suriname
4846
- #: ../../admin/view/wp-slimstat-reports.php:919
4847
  msgid "c-sr"
4848
  msgstr "Суринам"
4849
 
4850
  # Svalbard and Jan Mayen
4851
- #: ../../admin/view/wp-slimstat-reports.php:919
4852
  msgid "c-sj"
4853
  msgstr "Шпицберген и Ян-Майен"
4854
 
4855
  # Swaziland
4856
- #: ../../admin/view/wp-slimstat-reports.php:919
4857
  msgid "c-sz"
4858
  msgstr "Свазиленд"
4859
 
4860
  # Sweden
4861
- #: ../../admin/view/wp-slimstat-reports.php:919
4862
  msgid "c-se"
4863
  msgstr "Швеция"
4864
 
4865
  # Switzerland
4866
- #: ../../admin/view/wp-slimstat-reports.php:919
4867
  msgid "c-ch"
4868
  msgstr "Швейцария"
4869
 
4870
  # Syrian Arab Republic
4871
- #: ../../admin/view/wp-slimstat-reports.php:919
4872
  msgid "c-sy"
4873
  msgstr "Сирия"
4874
 
4875
  # Taiwan, Province of China
4876
- #: ../../admin/view/wp-slimstat-reports.php:919
4877
  msgid "c-tw"
4878
  msgstr "Тайвань"
4879
 
4880
  # Tajikistan
4881
- #: ../../admin/view/wp-slimstat-reports.php:919
4882
  msgid "c-tj"
4883
  msgstr "Таджикистан"
4884
 
4885
  # United Republic of Tanzania
4886
- #: ../../admin/view/wp-slimstat-reports.php:919
4887
  msgid "c-tz"
4888
  msgstr "Танзания"
4889
 
4890
  # Thailand
4891
- #: ../../admin/view/wp-slimstat-reports.php:919
4892
  msgid "c-th"
4893
  msgstr "Таиланд"
4894
 
4895
  # Timor-Leste
4896
- #: ../../admin/view/wp-slimstat-reports.php:919
4897
  msgid "c-tl"
4898
  msgstr "Восточный Тимор"
4899
 
4900
  # Togo
4901
- #: ../../admin/view/wp-slimstat-reports.php:919
4902
  msgid "c-tg"
4903
  msgstr "Того"
4904
 
4905
  # Tonga
4906
- #: ../../admin/view/wp-slimstat-reports.php:919
4907
  msgid "c-to"
4908
  msgstr "Тонга"
4909
 
4910
  # Trinidad and Tobago
4911
- #: ../../admin/view/wp-slimstat-reports.php:919
4912
  msgid "c-tt"
4913
  msgstr "Тринидад и Тобаго"
4914
 
4915
  # Tunisia
4916
- #: ../../admin/view/wp-slimstat-reports.php:919
4917
  msgid "c-tn"
4918
  msgstr "Тунис"
4919
 
4920
  # Turkey
4921
- #: ../../admin/view/wp-slimstat-reports.php:919
4922
  msgid "c-tr"
4923
  msgstr "Турция"
4924
 
4925
  # Turkmenistan
4926
- #: ../../admin/view/wp-slimstat-reports.php:919
4927
  msgid "c-tm"
4928
  msgstr "Туркменистан"
4929
 
4930
  # Turks and Caicos Islands
4931
- #: ../../admin/view/wp-slimstat-reports.php:919
4932
  msgid "c-tc"
4933
  msgstr "Теркс и Кайкос"
4934
 
4935
  # Uganda
4936
- #: ../../admin/view/wp-slimstat-reports.php:919
4937
  msgid "c-ug"
4938
  msgstr "Уганда"
4939
 
4940
  # Ukraine
4941
- #: ../../admin/view/wp-slimstat-reports.php:919
4942
  msgid "c-ua"
4943
  msgstr "Украина"
4944
 
4945
  # United Arab Emirates
4946
- #: ../../admin/view/wp-slimstat-reports.php:919
4947
  msgid "c-ae"
4948
  msgstr "ОАЭ"
4949
 
4950
  # United Kingdom
4951
- #: ../../admin/view/wp-slimstat-reports.php:919
4952
  msgid "c-gb"
4953
  msgstr "Великобритания"
4954
 
4955
  # United States
4956
- #: ../../admin/view/wp-slimstat-reports.php:919
4957
  msgid "c-us"
4958
  msgstr "США"
4959
 
4960
  # Uruguay
4961
- #: ../../admin/view/wp-slimstat-reports.php:919
4962
  msgid "c-uy"
4963
  msgstr "Уругвай"
4964
 
4965
  # Uzbekistan
4966
- #: ../../admin/view/wp-slimstat-reports.php:919
4967
  msgid "c-uz"
4968
  msgstr "Узбекистан"
4969
 
4970
  # Vanuatu
4971
- #: ../../admin/view/wp-slimstat-reports.php:919
4972
  msgid "c-vu"
4973
  msgstr "Вануату"
4974
 
4975
  # Venezuela
4976
- #: ../../admin/view/wp-slimstat-reports.php:919
4977
  msgid "c-ve"
4978
  msgstr "Венесуэла"
4979
 
4980
  # Viet Nam
4981
- #: ../../admin/view/wp-slimstat-reports.php:919
4982
  msgid "c-vn"
4983
  msgstr "Вьетнам"
4984
 
4985
  # British Virgin Islands
4986
- #: ../../admin/view/wp-slimstat-reports.php:919
4987
  msgid "c-vg"
4988
  msgstr "Британские Виргинские острова"
4989
 
4990
  # U.S. Virgin Islands
4991
- #: ../../admin/view/wp-slimstat-reports.php:919
4992
  msgid "c-vi"
4993
  msgstr "Виргинские Острова"
4994
 
4995
  # Western Sahara
4996
- #: ../../admin/view/wp-slimstat-reports.php:919
4997
  msgid "c-eh"
4998
  msgstr "Западная Сахара"
4999
 
5000
  # Yemen
5001
- #: ../../admin/view/wp-slimstat-reports.php:919
5002
  msgid "c-ye"
5003
  msgstr "Йемен"
5004
 
5005
  # Zambia
5006
- #: ../../admin/view/wp-slimstat-reports.php:919
5007
  msgid "c-zm"
5008
  msgstr "Замбия"
5009
 
5010
  # Zimbabwe
5011
- #: ../../admin/view/wp-slimstat-reports.php:919
5012
  msgid "c-zw"
5013
  msgstr "Зимбабве"
5014
 
5015
  # Guernsey
5016
- #: ../../admin/view/wp-slimstat-reports.php:919
5017
  msgid "c-gg"
5018
  msgstr "Гернси"
5019
 
5020
  # Jersey
5021
- #: ../../admin/view/wp-slimstat-reports.php:919
5022
  msgid "c-je"
5023
  msgstr "Джерси"
5024
 
5025
  # Isle of Man
5026
- #: ../../admin/view/wp-slimstat-reports.php:919
5027
  msgid "c-im"
5028
  msgstr "Остров Мэн"
5029
 
5030
  # Maldives
5031
- #: ../../admin/view/wp-slimstat-reports.php:919
5032
  msgid "c-mv"
5033
  msgstr "Мальдивы"
5034
 
5035
- #: ../../admin/view/wp-slimstat-reports.php:920
5036
  msgid "c-eu"
5037
  msgstr "Евросоюз"
5038
 
5039
- #: ../../admin/view/wp-slimstat-reports.php:1008
5040
  msgid ""
5041
  "This value includes not only posts, but also custom post types, regardless "
5042
  "of their status"
@@ -5044,46 +5055,66 @@ msgstr ""
5044
  "Эта величина включает в себя не только записи, но и пользовательские типы "
5045
  "этих записей, независимо от их статуса"
5046
 
5047
- #: ../../admin/view/wp-slimstat-reports.php:1009
5048
  msgid "Content Items"
5049
  msgstr "Содержимое сайта"
5050
 
5051
- #: ../../admin/view/wp-slimstat-reports.php:1010
5052
  msgid "Total Comments"
5053
  msgstr "Всего комментариев"
5054
 
5055
- #: ../../admin/view/wp-slimstat-reports.php:1011
5056
  msgid "Pingbacks"
5057
  msgstr "Пингбэки"
5058
 
5059
- #: ../../admin/view/wp-slimstat-reports.php:1012
5060
  msgid "Trackbacks"
5061
  msgstr "Трэкбэки"
5062
 
5063
- #: ../../admin/view/wp-slimstat-reports.php:1013
5064
  msgid "Longest Post (ID)"
5065
  msgstr "Самая длинная запись (ID)"
5066
 
5067
- #: ../../admin/view/wp-slimstat-reports.php:1014
5068
  msgid "Longest Comment (ID)"
5069
  msgstr "Самый длинный комментарий (ID)"
5070
 
5071
- #: ../../admin/view/wp-slimstat-reports.php:1015
5072
  msgid "Avg Comments Per Post"
5073
  msgstr "В среднем комментариев за запись"
5074
 
5075
- #: ../../admin/view/wp-slimstat-reports.php:1016
5076
  msgid "Avg Posts Per Day"
5077
  msgstr "В среднем сообщений за день"
5078
 
5079
- #: ../../admin/view/wp-slimstat-reports.php:1044
5080
  msgid "Visits"
5081
  msgstr "Посещения"
5082
 
5083
- #: ../../admin/view/wp-slimstat-reports.php:1048
5084
  msgid "Domains"
5085
  msgstr "Домены"
5086
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5087
  #~ msgid "Stats"
5088
  #~ msgstr "Статистика"
5089
 
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat 3.5\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-01-29 21:59-0500\n"
6
+ "PO-Revision-Date: 2014-01-29 22:00-0500\n"
7
+ "Last-Translator: Get Used To IT <support@getused.to.it>\n"
8
  "Language-Team: Виталий МакЛауд <http://www.visbiz.org/?page_id=324>\n"
9
  "Language: ru\n"
10
  "MIME-Version: 1.0\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
16
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
17
+ "X-Generator: Poedit 1.6.3\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
  "X-Poedit-SearchPath-0: ../..\n"
20
 
21
+ #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:402
22
+ #: ../../admin/view/wp-slimstat-reports.php:31
23
  msgid "Right Now"
24
  msgstr "Активность"
25
 
26
+ #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:403
27
+ #: ../../admin/wp-slimstat-admin.php:420
28
+ #: ../../admin/view/wp-slimstat-reports.php:32
29
  msgid "Overview"
30
  msgstr "Общий обзор"
31
 
32
+ #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:404
33
+ #: ../../admin/wp-slimstat-admin.php:421
34
+ #: ../../admin/view/wp-slimstat-reports.php:33
35
  msgid "Visitors"
36
  msgstr "Посетители"
37
 
38
+ #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:405
39
+ #: ../../admin/wp-slimstat-admin.php:422
40
+ #: ../../admin/view/wp-slimstat-reports.php:34
41
  msgid "Content"
42
  msgstr "Содержание сайта"
43
 
44
+ #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:406
45
+ #: ../../admin/wp-slimstat-admin.php:423 ../../admin/view/index.php:168
46
+ #: ../../admin/view/wp-slimstat-reports.php:35
47
  msgid "Traffic Sources"
48
  msgstr "Источники трафика"
49
 
50
+ #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:407
51
+ #: ../../admin/wp-slimstat-admin.php:424
52
+ #: ../../admin/view/wp-slimstat-reports.php:36
53
+ #: ../../admin/view/wp-slimstat-reports.php:105
54
  msgid "World Map"
55
  msgstr "Карта мира"
56
 
57
+ #: ../../wp-slimstat.php:1183 ../../admin/wp-slimstat-admin.php:408
58
+ #: ../../admin/wp-slimstat-admin.php:425
59
+ #: ../../admin/view/wp-slimstat-reports.php:37
60
  msgid "Custom Reports"
61
  msgstr "Пользовательский отчет"
62
 
63
+ #: ../../wp-slimstat.php:1184 ../../admin/wp-slimstat-admin.php:409
64
+ #: ../../admin/wp-slimstat-admin.php:426 ../../admin/config/addons.php:29
65
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:228
66
  msgid "Add-ons"
67
  msgstr "Дополнения"
68
 
69
+ #: ../../wp-slimstat.php:1187 ../../admin/wp-slimstat-admin.php:455
70
+ #: ../../admin/wp-slimstat-admin.php:458 ../../admin/wp-slimstat-admin.php:502
71
+ #: ../../admin/wp-slimstat-admin.php:505 ../../admin/config/index.php:14
72
+ #: ../../admin/config/index.php:135
73
  msgid "Settings"
74
  msgstr "Настройки"
75
 
76
+ #: ../../admin/wp-slimstat-admin.php:401 ../../admin/wp-slimstat-admin.php:413
77
+ #: ../../admin/wp-slimstat-admin.php:416
78
  msgid "SlimStat"
79
  msgstr "SlimStat"
80
 
81
+ #: ../../admin/wp-slimstat-admin.php:519
82
  msgid "Pageviews in the last 365 days"
83
  msgstr ""
84
 
85
+ #: ../../admin/wp-slimstat-admin.php:543
86
  msgid "Show on screen"
87
  msgstr "Показать на экране"
88
 
89
+ #: ../../admin/wp-slimstat-admin.php:571
90
+ msgid "Hide this notice"
91
+ msgstr ""
92
+
93
+ #: ../../admin/wp-slimstat-admin.php:598
94
  msgid "There was an error updating the following options:"
95
  msgstr "Возникла ошибка при обновлении следующих настроек:"
96
 
97
+ #: ../../admin/wp-slimstat-admin.php:601
98
  msgid "Your settings have been successfully updated."
99
  msgstr "Ваши настройки были успешно обновлены."
100
 
101
+ #: ../../admin/wp-slimstat-admin.php:624
102
  msgid "Save Changes"
103
  msgstr "Сохранить изменения"
104
 
105
+ #: ../../admin/wp-slimstat-admin.php:643
106
  msgid "Yes"
107
  msgstr "Да"
108
 
109
+ #: ../../admin/wp-slimstat-admin.php:644
110
+ #: ../../admin/view/wp-slimstat-reports.php:747
111
  msgid "No"
112
  msgstr "Нет"
113
 
114
+ #: ../../admin/wp-slimstat-admin.php:684
115
  msgid ""
116
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
117
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
123
  "\"_blank\" href=\"http://wordpress.org/extend/plugins/wp-slimstat/faq/"
124
  "\">проверьте ЧаВо</a> для дополнительной информации."
125
 
126
+ #: ../../admin/wp-slimstat-admin.php:704
127
  msgid "Definitions"
128
  msgstr "Определения"
129
 
130
+ #: ../../admin/wp-slimstat-admin.php:707
131
  msgid "Pageview"
132
  msgstr "Просмотр"
133
 
134
+ #: ../../admin/wp-slimstat-admin.php:707
135
  msgid ""
136
  "A request to load a single HTML file (\"page\"). This should be contrasted "
137
  "with a \"hit\", which refers to a request for any file from a web server. WP "
142
  "сервера. WP SlimStat записывает просмотры страниц каждый раз, когда "
143
  "выполняется код отслеживания."
144
 
145
+ #: ../../admin/wp-slimstat-admin.php:708
146
  msgid "(Human) Visit"
147
  msgstr "Посетитель"
148
 
149
+ #: ../../admin/wp-slimstat-admin.php:708
150
  msgid ""
151
  "A period of interaction between a visitor's browser and your website, ending "
152
  "when the browser is closed or when the user has been inactive on that site "
156
  "при закрытии его браузера или когда пользователь будет неактивен на этом "
157
  "сайте в течение 30 минут"
158
 
159
+ #: ../../admin/wp-slimstat-admin.php:709 ../../admin/view/index.php:140
160
+ #: ../../admin/view/right-now.php:149
161
  msgid "Known Visitor"
162
  msgstr "Известный пользователь"
163
 
164
+ #: ../../admin/wp-slimstat-admin.php:709
165
  msgid ""
166
  "Any user who has left a comment on your blog, and is thus identified by "
167
  "Wordpress as a returning visitor"
169
  "Любой пользователь, который оставил комментарий в вашем блоге, и, таким "
170
  "образом, определен Wordpress в качестве вернувшегося посетителя"
171
 
172
+ #: ../../admin/wp-slimstat-admin.php:710
173
  msgid "Unique IP"
174
  msgstr "Уникальный IP"
175
 
176
+ #: ../../admin/wp-slimstat-admin.php:710
177
  msgid ""
178
  "Used to differentiate between multiple requests to download a file from one "
179
  "internet address (IP) and requests originating from many distinct addresses; "
185
  "проводится на основании только адреса в Интернете, это полезное, но не "
186
  "идеальное решение"
187
 
188
+ #: ../../admin/wp-slimstat-admin.php:711 ../../admin/wp-slimstat-admin.php:753
189
+ #: ../../admin/view/right-now.php:99 ../../admin/view/wp-slimstat-db.php:79
 
190
  msgid "Originating IP"
191
  msgstr "Настоящий IP"
192
 
193
+ #: ../../admin/wp-slimstat-admin.php:711
194
  msgid ""
195
  "the originating IP address of a client connecting to a web server through an "
196
  "HTTP proxy or load balancer"
198
  "исходный IP клиента, который подключается к серверу через HTTP прокси или "
199
  "систему распределения нагрузки"
200
 
201
+ #: ../../admin/wp-slimstat-admin.php:712
202
  msgid "Direct Traffic"
203
  msgstr "Прямой трафик"
204
 
205
+ #: ../../admin/wp-slimstat-admin.php:712
206
  msgid ""
207
  "All those people showing up to your Web site by typing in the URL of your "
208
  "Web site coming or from a bookmark; some people also call this \"default "
212
  "сайта или пришедшие с закладки; некоторые также называют это 'трафик по "
213
  "умолчанию' или 'внешний трафик'."
214
 
215
+ #: ../../admin/wp-slimstat-admin.php:713
216
  msgid "Search Engine"
217
  msgstr "Поисковая система"
218
 
219
+ #: ../../admin/wp-slimstat-admin.php:713
220
  msgid ""
221
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
222
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
224
  "Google, Yahoo, MSN, Ask, другие; этот набор будет включать как ваш обычный, "
225
  "так и ваш платный (PPC/SEM) трафик, так что будьте в курсе этого"
226
 
227
+ #: ../../admin/wp-slimstat-admin.php:714 ../../admin/wp-slimstat-admin.php:730
228
+ #: ../../admin/view/right-now.php:128 ../../admin/view/wp-slimstat-db.php:60
 
229
  msgid "Search Terms"
230
  msgstr "Поисковые запросы"
231
 
232
+ #: ../../admin/wp-slimstat-admin.php:714 ../../admin/wp-slimstat-admin.php:730
233
  msgid "Keywords used by your visitors to find your website on a search engine"
234
  msgstr ""
235
  "Ключевые слова, которыми пользуются посетители, чтобы найти ваш сайт в "
236
  "поисковой системе"
237
 
238
+ #: ../../admin/wp-slimstat-admin.php:715
239
  msgid "SERP"
240
  msgstr "Страница результатов поиска"
241
 
242
+ #: ../../admin/wp-slimstat-admin.php:715
243
  msgid ""
244
  "Short for search engine results page, the Web page that a search engine "
245
  "returns with the results of its search. The value shown represents your rank "
249
  "система возвращает с результатами поиска. Показанное значение означает ваше "
250
  "положение в этом списке результатов"
251
 
252
+ #: ../../admin/wp-slimstat-admin.php:716
253
+ #: ../../admin/view/wp-slimstat-db.php:72
254
  msgid "User Agent"
255
  msgstr "Клиентское приложение"
256
 
257
+ #: ../../admin/wp-slimstat-admin.php:716
258
  msgid ""
259
  "Any program used for accessing a website; this includes browsers, robots, "
260
  "spiders and any other program that was used to retrieve information from the "
264
  "себя браузеры, боты, поисковые роботы и любые другие программы, которые были "
265
  "использованы для получения информации с сайта"
266
 
267
+ #: ../../admin/wp-slimstat-admin.php:717
268
+ #: ../../admin/view/wp-slimstat-db.php:76
269
  msgid "Outbound Link"
270
  msgstr "Внешняя ссылка"
271
 
272
+ #: ../../admin/wp-slimstat-admin.php:717
273
  msgid ""
274
  "A link from one domain to another is said to be outbound from its source "
275
  "anchor and inbound to its target. This report lists all the links to other "
278
  "В этом отчете перечислены все ссылки на другие сайты, на которые ушли ваши "
279
  "посетители."
280
 
281
+ #: ../../admin/wp-slimstat-admin.php:724
282
  msgid "Basic Filters"
283
  msgstr "Основные фильтры"
284
 
285
+ #: ../../admin/wp-slimstat-admin.php:727
286
+ #: ../../admin/view/wp-slimstat-db.php:57
287
  msgid "Browser"
288
  msgstr "Обозреватель"
289
 
290
+ #: ../../admin/wp-slimstat-admin.php:727
291
  msgid "User agent (Firefox, Chrome, ...)"
292
  msgstr "Клиентское приложение (Firefox, Chrome, ...)"
293
 
294
+ #: ../../admin/wp-slimstat-admin.php:728
295
+ #: ../../admin/view/wp-slimstat-db.php:58
296
+ #: ../../admin/view/wp-slimstat-reports.php:469
297
  msgid "Country Code"
298
  msgstr "Код страны"
299
 
300
+ #: ../../admin/wp-slimstat-admin.php:728
301
  msgid "2-letter code (us, ru, de, it, ...)"
302
  msgstr "2-буквенный код (us, ru, de, it, ...)"
303
 
304
+ #: ../../admin/wp-slimstat-admin.php:729
305
  msgid "IP"
306
  msgstr "IP"
307
 
308
+ #: ../../admin/wp-slimstat-admin.php:729
309
  msgid "Visitor's public IP address"
310
  msgstr "Публичный IP посетителя"
311
 
312
+ #: ../../admin/wp-slimstat-admin.php:731
313
+ #: ../../admin/view/wp-slimstat-db.php:61
314
+ #: ../../admin/view/wp-slimstat-reports.php:481
315
  msgid "Language Code"
316
  msgstr "Код языка"
317
 
318
+ #: ../../admin/wp-slimstat-admin.php:731
319
  msgid ""
320
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
321
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
325
  "com/en-us/library/ee825488(v=cs.20).aspx\">страницу 'Правильность "
326
  "отображения языков'</a> - (первая колонка) для дополнительной информации."
327
 
328
+ #: ../../admin/wp-slimstat-admin.php:732
329
+ #: ../../admin/view/wp-slimstat-db.php:62
330
  msgid "Operating System"
331
  msgstr "Операционная система"
332
 
333
+ #: ../../admin/wp-slimstat-admin.php:732
334
  msgid ""
335
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
336
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
340
  "target=\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php"
341
  "\">эту страницу руководства</a> для дополнительной информации."
342
 
343
+ #: ../../admin/wp-slimstat-admin.php:733
344
+ #: ../../admin/view/wp-slimstat-db.php:63
345
  msgid "Permalink"
346
  msgstr "Постоянная ссылка"
347
 
348
+ #: ../../admin/wp-slimstat-admin.php:733
349
  msgid "URL accessed on your site"
350
  msgstr "Посещенная страница на вашем сайте"
351
 
352
+ #: ../../admin/wp-slimstat-admin.php:734
353
+ #: ../../admin/view/wp-slimstat-db.php:65
354
  msgid "Referer"
355
  msgstr "Источник запроса"
356
 
357
+ #: ../../admin/wp-slimstat-admin.php:734
358
  msgid "Complete address of the referrer page"
359
  msgstr "Полный адрес источника запроса"
360
 
361
+ #: ../../admin/wp-slimstat-admin.php:735
362
+ #: ../../admin/view/wp-slimstat-db.php:66
363
  msgid "Visitor's Name"
364
  msgstr "Имя посетителя"
365
 
366
+ #: ../../admin/wp-slimstat-admin.php:735
367
  msgid ""
368
  "Visitors' names according to the cookie set by Wordpress after they leave a "
369
  "comment"
371
  "Имена посетителей в соответствии с установленным Wordpress cookie после того "
372
  "как они оставить комментарий"
373
 
374
+ #: ../../admin/wp-slimstat-admin.php:743
375
  msgid "Advanced Filters"
376
  msgstr "Расширенные фильтры"
377
 
378
+ #: ../../admin/wp-slimstat-admin.php:746
379
+ #: ../../admin/view/wp-slimstat-db.php:70
380
  msgid "Browser Version"
381
  msgstr "Версия браузера"
382
 
383
+ #: ../../admin/wp-slimstat-admin.php:746
384
  msgid "user agent version (9.0, 11, ...)"
385
  msgstr "версия клиентского приложения (9.0, 11, ...)"
386
 
387
+ #: ../../admin/wp-slimstat-admin.php:747
388
+ #: ../../admin/view/wp-slimstat-db.php:71
389
  msgid "Browser Type"
390
  msgstr "Тип браузера"
391
 
392
+ #: ../../admin/wp-slimstat-admin.php:747
393
  msgid ""
394
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
395
  "all others"
397
  "1 = поисковый робот, 2 = мобильное устройство, 3 = читатель новостной ленты, "
398
  "0 = все остальные"
399
 
400
+ #: ../../admin/wp-slimstat-admin.php:748
401
+ #: ../../admin/view/wp-slimstat-db.php:73
402
  msgid "Color Depth"
403
  msgstr "Глубина цвета"
404
 
405
+ #: ../../admin/wp-slimstat-admin.php:748
406
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
407
  msgstr "глубина цвета экрана посетителя (8, 16, 24, ...)"
408
 
409
+ #: ../../admin/wp-slimstat-admin.php:749
410
+ #: ../../admin/view/wp-slimstat-db.php:74
411
  msgid "CSS Version"
412
  msgstr "Версия CSS"
413
 
414
+ #: ../../admin/wp-slimstat-admin.php:749
415
  msgid ""
416
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
417
  "values)"
419
  "стандарт CSS, который поддерживался тем браузером (1, 2, 3 и другие целые "
420
  "числа)"
421
 
422
+ #: ../../admin/wp-slimstat-admin.php:750
423
+ #: ../../admin/view/wp-slimstat-db.php:75
424
  msgid "Pageview Attributes"
425
  msgstr "Атрибуты просмотра"
426
 
427
+ #: ../../admin/wp-slimstat-admin.php:750
428
  msgid ""
429
  "this field is set to <em>[pre]</em> if the resource has been accessed "
430
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
435
  "Link_prefetching_FAQ\">предварительную выборку для ссылки</a> или "
436
  "аналогичным методом"
437
 
438
+ #: ../../admin/wp-slimstat-admin.php:751
439
+ #: ../../admin/view/wp-slimstat-db.php:77
440
  msgid "Post Author"
441
  msgstr "Автор записи"
442
 
443
+ #: ../../admin/wp-slimstat-admin.php:751
444
  msgid "author associated to that post/page when the resource was accessed"
445
  msgstr "автор был связан с этой записью/страницей, когда ресурс был доступен"
446
 
447
+ #: ../../admin/wp-slimstat-admin.php:752
448
+ #: ../../admin/view/wp-slimstat-db.php:78
449
  msgid "Post Category ID"
450
  msgstr "ID Категории записи"
451
 
452
+ #: ../../admin/wp-slimstat-admin.php:752
453
  msgid "ID of the category/term associated to the resource, when available"
454
  msgstr "ID категории/термина, связанный с ресурсом, если такой имеется"
455
 
456
+ #: ../../admin/wp-slimstat-admin.php:753
457
  msgid "visitor's originating IP address, if available"
458
  msgstr "настоящий IP посетителя, если возможно"
459
 
460
+ #: ../../admin/wp-slimstat-admin.php:754
461
+ #: ../../admin/view/wp-slimstat-db.php:80
462
  msgid "Resource Content Type"
463
  msgstr "Тип содержания ресурса"
464
 
465
+ #: ../../admin/wp-slimstat-admin.php:754
466
  msgid ""
467
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
468
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
476
  "\"http://codex.wordpress.org/Conditional_Tags\"> Условные теги</a> за "
477
  "дополнительной информацией"
478
 
479
+ #: ../../admin/wp-slimstat-admin.php:755
480
+ #: ../../admin/view/wp-slimstat-db.php:82
481
  msgid "Screen Resolution"
482
  msgstr "Разрешение экрана"
483
 
484
+ #: ../../admin/wp-slimstat-admin.php:755
485
  msgid "viewport width and height (1024x768, 800x600, ...)"
486
  msgstr "просмотр ширины и высоты (1024x768, 800x600, ...)"
487
 
488
+ #: ../../admin/wp-slimstat-admin.php:756
489
+ #: ../../admin/view/wp-slimstat-db.php:83
490
  msgid "Visit ID"
491
  msgstr "ID Посещения"
492
 
493
+ #: ../../admin/wp-slimstat-admin.php:756
494
  msgid ""
495
  "generally used in conjunction with <em>is not empty</em>, identifies human "
496
  "visitors"
498
  "как правило, используется в сочетании с <em>не пустой</em>, определяет "
499
  "настоящих посетителей"
500
 
501
+ #: ../../admin/wp-slimstat-admin.php:757
502
  msgid "Date Filters"
503
  msgstr "Фильтры даты"
504
 
505
+ #: ../../admin/wp-slimstat-admin.php:757
506
  msgid ""
507
  "you can specify the timeframe by entering a number in the <em>interval</em> "
508
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
512
  "используется для указания <em>на сегодняшний день</em> (т.е. день=1, "
513
  "месяц=1, год=пустой, интервал=-1 задаст фильтрацию года к дате)"
514
 
515
+ #: ../../admin/wp-slimstat-admin.php:758
516
  msgid "SERP Position"
517
  msgstr "Позиция поискового запроса"
518
 
519
+ #: ../../admin/wp-slimstat-admin.php:758
520
  msgid ""
521
  "set the filter to Referer contains cd=N&, where N is the position you are "
522
  "looking for"
524
  "установливает фильтр на источник запроса, который содержит cd=N&, где N "
525
  "является положением, которое вы ищете"
526
 
527
+ #: ../../admin/wp-slimstat-admin.php:767
528
  msgid ""
529
  " And for keeping an eye on your visitors with <a href=\"http://slimstat."
530
  "getused.to.it/\">WP SlimStat</a>."
573
  msgid "Description"
574
  msgstr "Описание"
575
 
576
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:18
577
  msgid "General"
578
  msgstr "Общие"
579
 
580
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:44
581
  msgid "Views"
582
  msgstr "Просмотры"
583
 
584
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:64
585
  msgid "Filters"
586
  msgstr "Фильтры"
587
 
588
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:128
589
  msgid "Permissions"
590
  msgstr "Доступ"
591
 
592
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:205
593
  msgid "Advanced"
594
  msgstr "Расширенные"
595
 
597
  msgid "Maintenance"
598
  msgstr "Обслуживание"
599
 
600
+ #: ../../admin/config/index.php:20 ../../admin/config/index.php:207
601
  msgid "Tracker"
602
  msgstr "Отслеживание"
603
 
604
+ #: ../../admin/config/index.php:21
605
  msgid "Enable Tracking"
606
  msgstr "Включить отслеживание"
607
 
608
+ #: ../../admin/config/index.php:21
609
  msgid ""
610
  "Turn the tracker on or off, but keep the reports accessible (which you would "
611
  "not have, if you just disabled the plugin)."
613
  "Включите или выключите режим отслеживания, но сохраните отчеты доступними "
614
  "(которых бы у вас не было, если просто отключить плагин)."
615
 
616
+ #: ../../admin/config/index.php:22
617
  msgid "Monitor Admin Pages"
618
  msgstr "Отслеживать страницы администратора"
619
 
620
+ #: ../../admin/config/index.php:22
621
  msgid "Enable this option to track your users' activity within the admin."
622
  msgstr ""
623
  "Включите этот параметр, если вы хотите отслеживать активность ваших "
624
  "пользователей на страницах администрирования."
625
 
626
+ #: ../../admin/config/index.php:23
627
  msgid "Enable Spy Mode"
628
  msgstr "Включить шпионский режим"
629
 
630
+ #: ../../admin/config/index.php:23
631
  msgid ""
632
  "Collect information about screen resolutions, outbound links, downloads, "
633
  "etc. If Tracking Mode is set to Javascript, this data will be tracked "
637
  "Если режим отслеживания установлен на JavaScript, эти данные будут "
638
  "отслеживаться независимо от значения, установленного для этой опции."
639
 
640
+ #: ../../admin/config/index.php:24
641
  msgid "Tracking Mode"
642
  msgstr "Режим отслеживания"
643
 
644
+ #: ../../admin/config/index.php:24
645
  msgid ""
646
  "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
647
  "Total Cache, WP SuperCache, HyperCache, etc). WP SlimStat will behave pretty "
656
  "том, что <strong>большинство спамеров, поисковых систем и других сканеров</"
657
  "strong> не будут отслеживаться."
658
 
659
+ #: ../../admin/config/index.php:24
660
  msgid "Javascript"
661
  msgstr "JavaScript"
662
 
663
+ #: ../../admin/config/index.php:24
664
  msgid "Server-side"
665
  msgstr "Серверный"
666
 
667
+ #: ../../admin/config/index.php:26
668
  msgid "WordPress Integration"
669
  msgstr "Интеграция WordPress"
670
 
671
+ #: ../../admin/config/index.php:27
672
  msgid "Menu Position"
673
  msgstr "Позиция меню"
674
 
675
+ #: ../../admin/config/index.php:27
676
  msgid ""
677
  "Choose between a standalone admin menu for WP SlimStat or a drop down in the "
678
  "admin bar (if visible)."
680
  "Выбор между автономным меню администратора для WP SlimStat или выпадающим в "
681
  "админ-панели (если она видна)."
682
 
683
+ #: ../../admin/config/index.php:27
684
  msgid "Side Menu"
685
  msgstr "Боковое меню"
686
 
687
+ #: ../../admin/config/index.php:27
688
  msgid "Admin Bar"
689
  msgstr "Панель администратора"
690
 
691
+ #: ../../admin/config/index.php:28
692
  #, fuzzy
693
  msgid "Add Stats to Posts"
694
  msgstr "Добавить столбик к записям"
695
 
696
+ #: ../../admin/config/index.php:28
697
  #, fuzzy
698
  msgid ""
699
  "Add a new column to the Edit Posts screen, with the number of hits per post."
701
  "Добавляет новый столбец к экрану редактирования сообщений с количеством "
702
  "просмотров записи (может замедлить визуализацию страниц)."
703
 
704
+ #: ../../admin/config/index.php:30
705
  msgid "Database"
706
  msgstr "База данных"
707
 
708
+ #: ../../admin/config/index.php:31
709
  msgid "Retain data for"
710
  msgstr "Сохранить данные за"
711
 
712
+ #: ../../admin/config/index.php:31
713
  msgid ""
714
  "Delete log entries older than the number of days specified here above. Enter "
715
  "<strong>0</strong> (number zero) if you want to preserve your data "
719
  "<strong>0</strong> (ноль), если вы хотите сохранить ваши данные вне "
720
  "зависимости от их возраста."
721
 
722
+ #: ../../admin/config/index.php:31
723
  msgid "Next clean-up on"
724
  msgstr "Следующая очистка"
725
 
726
+ #: ../../admin/config/index.php:31
727
  #, php-format
728
  msgid "Entries logged on or before %s will be permanently deleted."
729
  msgstr "Значения, записанные в или до %s будут безвозвратно удалены."
730
 
731
+ #: ../../admin/config/index.php:31 ../../admin/view/index.php:77
732
+ #: ../../admin/view/wp-slimstat-db.php:90
733
+ #: ../../admin/view/wp-slimstat-reports.php:747
734
  msgid "days"
735
  msgstr "дней"
736
 
737
+ #: ../../admin/config/index.php:46
738
  msgid "Data and Formats"
739
  msgstr "Данные и форматы"
740
 
741
+ #: ../../admin/config/index.php:47
742
  msgid "Convert IP Addresses"
743
  msgstr "Конвертировать IP-адреса"
744
 
745
+ #: ../../admin/config/index.php:47
746
  msgid "Display provider names instead of IP addresses."
747
  msgstr "Показывать имена провайдеров вместо IP-адресов."
748
 
749
+ #: ../../admin/config/index.php:48
750
  msgid "Number Format"
751
  msgstr "Формат чисел"
752
 
753
+ #: ../../admin/config/index.php:48
754
  msgid ""
755
  "Choose the number format you want to use for your reports, European or "
756
  "American."
758
  "Выберите, какой формат чисел вы хотите использовать в ваших отчетах, "
759
  "европейский или американский."
760
 
761
+ #: ../../admin/config/index.php:49
762
  msgid "Show Display Name"
763
  msgstr "Показать имя пользователя"
764
 
765
+ #: ../../admin/config/index.php:49
766
  msgid ""
767
  "By default, users are listed by their usernames. Use this option to "
768
  "visualize their display names instead."
770
  "По умолчанию пользователи перечисляются по их именам пользователей. "
771
  "Используйте эту опцию, чтобы вместо этого видеть их зарегистрированные имена."
772
 
773
+ #: ../../admin/config/index.php:50
774
  msgid "Show User Agent"
775
  msgstr "Показать клиентское приложение"
776
 
777
+ #: ../../admin/config/index.php:50
778
  msgid ""
779
  "Choose if you want to see the browser name or a complete user agent string "
780
  "when hovering on browser icons."
782
  "Укажите, если хотите видеть название браузера или полную строку клиентского "
783
  "приложения при наведении курсора на иконку браузера."
784
 
785
+ #: ../../admin/config/index.php:51
786
  msgid "Show Titles"
787
  msgstr "Показать заголовки"
788
 
789
+ #: ../../admin/config/index.php:51
790
  msgid ""
791
  "WP SlimStat converts your permalinks into post and page titles. Disable this "
792
  "feature if you need to see the URL in your reports."
794
  "WP SlimStat преобразует ваши постоянные ссылки в заголовках записей и "
795
  "страниц. Отключите эту функцию, если вам нужно видеть ссылки в отчетах."
796
 
797
+ #: ../../admin/config/index.php:53
798
  msgid "Functionality"
799
  msgstr "Функциональность"
800
 
801
+ #: ../../admin/config/index.php:54
802
  msgid "Asynchronous Views"
803
  msgstr "Асинхронный просмотр"
804
 
805
+ #: ../../admin/config/index.php:54
806
  msgid ""
807
  "Load all the reports dynamically. It makes the reports render faster, but it "
808
  "increases the load on your server."
810
  "Загружает все отчеты динамически. Это делает визуализацию панелей быстрее, "
811
  "но увеличивает нагрузку на сервер."
812
 
813
+ #: ../../admin/config/index.php:55
814
  msgid "Expand Details"
815
  msgstr "Показать детали"
816
 
817
+ #: ../../admin/config/index.php:55
818
  msgid "Expand each row's details by default, insted of on mousehover."
819
  msgstr "Развернуть, по умолчанию, каждую строку вместо наведения мышкой."
820
 
821
+ #: ../../admin/config/index.php:56 ../../admin/config/index.php:60
822
  msgid "Rows to Display"
823
  msgstr "Строки для отображения"
824
 
825
+ #: ../../admin/config/index.php:56
826
  msgid "Specify the number of items in each report."
827
  msgstr "Укажите количество элементов в каждом отчете."
828
 
829
+ #: ../../admin/config/index.php:58
830
  msgid "Right Now Screen"
831
  msgstr "Экран 'Активность'"
832
 
833
+ #: ../../admin/config/index.php:59
834
  msgid "Live Stream"
835
  msgstr "Режим реального времени"
836
 
837
+ #: ../../admin/config/index.php:59
838
  msgid ""
839
  "Enable the Live view, which refreshes the Right Now screen every X seconds. "
840
  "Enter <strong>0</strong> (number zero) to disable this functionality."
842
  "Включает режим реального времени, который обновляет окно 'Активность' каждые "
843
  "X секунд. Введите <strong>0</strong> (ноль), чтобы отключить эту функцию."
844
 
845
+ #: ../../admin/config/index.php:59 ../../admin/config/index.php:210
846
  msgid "seconds"
847
  msgstr "секунд"
848
 
849
+ #: ../../admin/config/index.php:60
850
  msgid "Specify the number of items in Right Now."
851
  msgstr "Укажите количество элементов в панели 'Активность'."
852
 
853
+ #: ../../admin/config/index.php:61
854
  msgid "Right Now Extended"
855
  msgstr "Видеть исходящие ссылки"
856
 
857
+ #: ../../admin/config/index.php:61
858
  msgid ""
859
  "Choose if you want to see outbound links listed under Right Now. It might "
860
  "slow down the rendering of this report."
862
  "Укажите, если вы хотите видеть список исходящих ссылок в панели "
863
  "'Активность'. Это может замедлить визуализацию отчета."
864
 
865
+ #: ../../admin/config/index.php:66
866
  msgid "Visitors and Known Users"
867
  msgstr "Посетители и известные пользователи"
868
 
869
+ #: ../../admin/config/index.php:67
870
  msgid "Track Registered Users"
871
  msgstr "Отслеживать зарегистрированных пользователей"
872
 
873
+ #: ../../admin/config/index.php:67
874
  msgid "Enable this option to track logged in users."
875
  msgstr ""
876
  "Включите этот параметр, чтобы отслеживать зарегистрированных пользователей."
877
 
878
+ #: ../../admin/config/index.php:68
879
  #, fuzzy
880
  msgid "Blacklist by Username"
881
  msgstr "Черный список по IP-адресу"
882
 
883
+ #: ../../admin/config/index.php:68
884
  msgid ""
885
  "List all the usernames you don't want to track, separated by commas. Please "
886
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
890
  "запятыми. Помните, что пробелы <em>не</em> игнорируются и имена "
891
  "пользователей чувствительны к регистру."
892
 
893
+ #: ../../admin/config/index.php:69
894
  msgid "Blacklist by IP Address"
895
  msgstr "Черный список по IP-адресу"
896
 
897
+ #: ../../admin/config/index.php:69
898
  msgid ""
899
  "List all the IP addresses you don't want to track, separated by commas. Each "
900
  "network <strong>must</strong> be defined using the <a href='http://en."
911
  "Если формат неправильный, WP SlimStat не сможет отслеживать просмотры "
912
  "страниц должным образом."
913
 
914
+ #: ../../admin/config/index.php:70
915
  msgid "Blacklist by Capability"
916
  msgstr "Черный список по возможностям доступа"
917
 
918
+ #: ../../admin/config/index.php:70
919
  msgid ""
920
  "Users having at least one of the <a href='http://codex.wordpress.org/"
921
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
925
  "wordpress.org/Roles_and_Capabilities' target='_new'>этих возможностей</a>, "
926
  "не будут отслеживаться. Эти возможности не чувствительны к регистру."
927
 
928
+ #: ../../admin/config/index.php:72
929
  msgid "Profiling"
930
  msgstr "Установка характеристик"
931
 
932
+ #: ../../admin/config/index.php:73
933
  msgid "Ignore Spammers"
934
  msgstr "Игнорировать спамеров"
935
 
936
+ #: ../../admin/config/index.php:73
937
  msgid ""
938
  "Enable this option if you don't want to track visits from users identified "
939
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
945
  "такими как Akismet. Посещения людей, чьи комментарии позже будут обозначены "
946
  "как спам также будут удалены из базы данных."
947
 
948
+ #: ../../admin/config/index.php:74
949
  msgid "Permalinks"
950
  msgstr "Постоянные ссылки"
951
 
952
+ #: ../../admin/config/index.php:74
953
  msgid ""
954
  "List all the URLs on your website that you don't want to track, separated by "
955
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
967
  "aboundant и /about, <code>/abo!t</code> будет соответствовать /about и /"
968
  "abort. Эти строки не чувствительны к регистру."
969
 
970
+ #: ../../admin/config/index.php:75
971
  msgid "Countries"
972
  msgstr "Страны"
973
 
974
+ #: ../../admin/config/index.php:75
975
  msgid ""
976
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
977
  "track, separated by commas."
979
  "Коды стран (то есть: <code>en-us, it, ru</code>), которые вы не хотите "
980
  "отслеживать; разделяются запятыми."
981
 
982
+ #: ../../admin/config/index.php:76
983
  msgid "User Agents"
984
  msgstr "Клиентские приложения"
985
 
986
+ #: ../../admin/config/index.php:76
987
  msgid ""
988
  "Browsers (user agents) you don't want to track, separated by commas. You can "
989
  "specify the browser's version adding a slash after the name (i.e. "
1000
  "<code>IE/!.0</code> будет соответствовать IE/7.0 и IE/8.0. Эти строки не "
1001
  "чувствительны к регистру."
1002
 
1003
+ #: ../../admin/config/index.php:77
1004
  msgid "Referring Sites"
1005
  msgstr "Ссылающиеся сайты"
1006
 
1007
+ #: ../../admin/config/index.php:77
1008
  msgid ""
1009
  "Referring URLs that you don't want to track, separated by commas: "
1010
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
1020
  "Пожалуйста, используйте либо символы, либо протокол, который хотите "
1021
  "отфильтровать (http://, https://)."
1022
 
1023
+ #: ../../admin/config/index.php:79 ../../admin/config/index.php:215
1024
  msgid "Miscellaneous"
1025
  msgstr "Разное"
1026
 
1027
+ #: ../../admin/config/index.php:80
1028
  msgid "Enable Privacy Mode"
1029
  msgstr "Включить режим конфиденциальности"
1030
 
1031
+ #: ../../admin/config/index.php:80
1032
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
1033
  msgstr ""
1034
  "Маскирует IP-адреса ваших посетителей в соответствии с европейскими законами "
1035
  "о конфиденциальности."
1036
 
1037
+ #: ../../admin/config/index.php:81
1038
  msgid "Ignore Prefetch Requests"
1039
  msgstr "Игнорировать запросы предварительной выборки"
1040
 
1041
+ #: ../../admin/config/index.php:81
1042
  msgid ""
1043
  "Prevent WP SlimStat from tracking pageviews generated by Firefox's <a "
1044
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
1049
  "en/Link_prefetching_FAQ' target='_blank'>предварительной выборкой для "
1050
  "ссылок</a>."
1051
 
1052
+ #: ../../admin/config/index.php:97
1053
  msgid "Ignore users (username not found)"
1054
  msgstr "Игнорируемые пользователи (имя пользователя не найдено)"
1055
 
1056
+ #: ../../admin/config/index.php:120
1057
  msgid ""
1058
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
1059
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
1062
  "org/Roles_and_Capabilities\" target=\"_new\">эту страницу</a> для получения "
1063
  "дополнительной информации."
1064
 
1065
+ #: ../../admin/config/index.php:130
1066
  msgid "Reports"
1067
  msgstr "Отчеты"
1068
 
1069
+ #: ../../admin/config/index.php:131
1070
  msgid "Restrict Authors"
1071
  msgstr "Запретить авторам"
1072
 
1073
+ #: ../../admin/config/index.php:131
1074
  msgid ""
1075
  "Enable this option if you want your authours to only see stats related to "
1076
  "their own content."
1078
  "Включите этот параметр, если хотите, чтобы ваши авторы видели только ту "
1079
  "статистику, которая связана с их собственным содержанием."
1080
 
1081
+ #: ../../admin/config/index.php:132 ../../admin/config/index.php:136
1082
  msgid "Capability"
1083
  msgstr "Возможности"
1084
 
1085
+ #: ../../admin/config/index.php:132
1086
+ #, fuzzy
1087
  msgid ""
1088
  "Specify the minimum <a href='http://codex.wordpress.org/"
1089
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
1090
+ "reports (default: <code>activate_plugins</code>). If this field is empty, "
1091
+ "<strong>all your users</strong> (including subscribers) will have access to "
1092
+ "the reports, unless a 'Read access' whitelist has been specified here below. "
1093
+ "In this case, the list has precedence over the capability."
1094
  msgstr ""
1095
  "Определите минимальные <a href='http://codex.wordpress.org/"
1096
  "Roles_and_Capabilities' target='_new'>возможности</a>, необходимые для "
1099
  "к отчетам, пока не обозначено 'только для чтения' в белом списке, который "
1100
  "указан ниже. В этом случае, список имеет приоритет над возможностями."
1101
 
1102
+ #: ../../admin/config/index.php:133 ../../admin/config/index.php:137
1103
  msgid "Whitelist"
1104
  msgstr "Белый список"
1105
 
1106
+ #: ../../admin/config/index.php:133
1107
  msgid ""
1108
  "List all the users who should have access to the reports, separated by "
1109
  "commas. Administrators are implicitly allowed, so you don't need to list "
1113
  "запятыми. Администраторы разрешены автоматически, так что вам не нужно "
1114
  "перечислить их здесь. Имена пользователей чувствительны к регистру."
1115
 
1116
+ #: ../../admin/config/index.php:136
1117
  msgid ""
1118
  "Specify the minimum <a href='http://codex.wordpress.org/"
1119
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
1126
  "<code>activate_plugins</code>). Белый список ниже может быть использован для "
1127
  "обхода этой настройки определенными пользователями."
1128
 
1129
+ #: ../../admin/config/index.php:137
1130
  msgid ""
1131
  "List all the users who can edit these options, separated by commas. Please "
1132
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
1137
  "разрешены автоматически, так что не забудьте включить себя! Имена "
1138
  "пользователей чувствительны к регистру."
1139
 
1140
+ #: ../../admin/config/index.php:153
1141
  msgid "Read access: username not found"
1142
  msgstr "Доступ для чтения: имя пользователя не найдено"
1143
 
1144
+ #: ../../admin/config/index.php:166 ../../admin/config/index.php:197
1145
  msgid ""
1146
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
1147
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
1151
  "codex.wordpress.org/Roles_and_Capabilities\" target=\"_new\">эту страницу</"
1152
  "a> для получения дополнительной информации."
1153
 
1154
+ #: ../../admin/config/index.php:184
1155
  msgid "Config access: username not found"
1156
  msgstr "Доступ для настройки: имя пользователя не найдено"
1157
 
1158
+ #: ../../admin/config/index.php:208
1159
  msgid "Detect Smoothing"
1160
  msgstr "Выявлять сглаживание шрифтов"
1161
 
1162
+ #: ../../admin/config/index.php:208
1163
  msgid ""
1164
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
1165
  "This option required Spy Mode to be enabled."
1167
  "Обнаруживать поддержку браузером антиалиасинга (сглаживание шрифтов). Эта "
1168
  "опция требует включение шпионского режима."
1169
 
1170
+ #: ../../admin/config/index.php:209
1171
  msgid "Track Outbound Clicks"
1172
  msgstr "Отслеживать исходящие ссылки"
1173
 
1174
+ #: ../../admin/config/index.php:209
1175
  msgid ""
1176
  "Track when your visitors click on link to external websites. This option "
1177
  "required Spy Mode to be enabled."
1179
  "Отслеживать нажатия ссылок на внешние веб-сайты. Эта опция требует включение "
1180
  "шпионского режима."
1181
 
1182
+ #: ../../admin/config/index.php:210
1183
  msgid "Session Duration"
1184
  msgstr "Продолжительность сеанса"
1185
 
1186
+ #: ../../admin/config/index.php:210
1187
+ #, fuzzy
1188
  msgid ""
1189
+ "How many seconds should a human session last? Google Analytics sets it to "
1190
+ "1800 seconds."
1191
  msgstr ""
1192
  "Сколько секунд должен длиться сеанс на вашем сайте? Google Analytics "
1193
  "устанавливает его продолжительность на 1800 секунд."
1194
 
1195
+ #: ../../admin/config/index.php:211
1196
  msgid "Extend Session"
1197
  msgstr "Продлить сеанс"
1198
 
1199
+ #: ../../admin/config/index.php:211
1200
  msgid "Extend the duration of a session each time the user visits a new page."
1201
  msgstr ""
1202
  "Увеличить длительность сеанса каждый раз, когда пользователь посещает новую "
1203
  "страницу."
1204
 
1205
+ #: ../../admin/config/index.php:212
1206
  msgid "Enable CDN"
1207
  msgstr "Включить сеть доставки контента"
1208
 
1209
+ #: ../../admin/config/index.php:212
1210
  msgid ""
1211
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
1212
  "by serving our tracking code from their fast and reliable network (free "
1216
  "target='_blank'>JSDelivr</a>, которая обслуживает наш код отслеживания с их "
1217
  "быстрой и надежной сетью (бесплатная услуга)."
1218
 
1219
+ #: ../../admin/config/index.php:213
1220
  msgid "Extensions to Track"
1221
  msgstr "Отслеживать расширения"
1222
 
1223
+ #: ../../admin/config/index.php:213
1224
  msgid ""
1225
  "List all the file extensions that you want to be treated as Downloads. "
1226
  "Please note that links pointing to external resources (i.e. PDFs on a "
1234
  "(и будут отслеживаться соответственно), если их расширение совпадет с одним "
1235
  "из перечисленных здесь."
1236
 
1237
+ #: ../../admin/config/index.php:216
1238
  msgid "IP Lookup"
1239
  msgstr "Поиск IP"
1240
 
1241
+ #: ../../admin/config/index.php:216
1242
  msgid "Customize the Geolocation service to be used in the reports."
1243
  msgstr "Настроить услугу геолокации, которая будет использоваться в отчетах."
1244
 
1245
+ #: ../../admin/config/index.php:217
1246
  msgid "Custom CSS"
1247
  msgstr "Настраиваемый CSS"
1248
 
1249
+ #: ../../admin/config/index.php:217
1250
+ #, fuzzy
1251
  msgid ""
1252
  "Paste here your custom stylesheet to personalize the way your reports look. "
1253
  "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1254
  "target='_blank'>Check the FAQ</a> for more information on how to use this "
1255
+ "setting."
1256
  msgstr ""
1257
  "Скопируйте сюда ваши таблицы стилей, чтобы персонализировать внешний вид "
1258
  "отчетов. <a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1259
  "target='_blank'>Проверьте справку</a> для получения дополнительной "
1260
  "информации о том, как использовать эту функциональность."
1261
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1262
  #: ../../admin/config/index.php:218
1263
  msgid "Enable UAN"
1264
  msgstr "Включить сеть неизвестных клиентских приложений"
1265
 
1266
  #: ../../admin/config/index.php:218
1267
+ #, fuzzy
1268
  msgid ""
1269
+ "Send anonymous data about unknown user agents to our server for analysis. "
1270
+ "This allows us to contribute to the <a href='http://browscap.org/' "
1271
+ "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
1272
+ "WP SlimStat's browser detection functionality."
1273
  msgstr ""
1274
  "Собирает данные о неизвестных клиентских приложениях и отправляет их "
1275
  "анонимно на наш сервер для анализа. Это позволяет нам внести свой вклад в <a "
1387
  msgstr "не пустой"
1388
 
1389
  #: ../../admin/config/maintenance.php:138 ../../admin/view/index.php:32
1390
+ #: ../../admin/view/index.php:78
1391
  msgid "Apply"
1392
  msgstr "Применить"
1393
 
2887
  msgstr "Зулу"
2888
 
2889
  #: ../../admin/lang/dynamic_strings.php:298
2890
+ #: ../../admin/view/wp-slimstat-reports.php:482
2891
  msgid "l-"
2892
  msgstr "Не указан"
2893
 
2905
  msgid "c-xy"
2906
  msgstr "Локальный IP-адрес"
2907
 
2908
+ #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:768
2909
  msgid "Today"
2910
  msgstr "За сегодня"
2911
 
2912
+ #: ../../admin/view/index.php:49 ../../admin/view/wp-slimstat-reports.php:769
2913
  msgid "Yesterday"
2914
  msgstr "За вчера"
2915
 
2916
+ #: ../../admin/view/index.php:50
2917
  msgid "Last 7 Days"
2918
  msgstr "За последние 7 дней"
2919
 
2920
+ #: ../../admin/view/index.php:51
2921
+ #, fuzzy
2922
+ msgid "Last 60 Days"
2923
  msgstr "За последние 30 дней"
2924
 
2925
+ #: ../../admin/view/index.php:52
2926
  #, fuzzy
2927
  msgid "Last 90 Days"
2928
  msgstr "За последние 30 дней"
2929
 
2930
+ #: ../../admin/view/index.php:53
2931
  #, fuzzy
2932
+ msgid "This Year So Far"
2933
  msgstr "Год"
2934
 
2935
+ #: ../../admin/view/index.php:54
2936
  msgid "Date Range"
2937
  msgstr "Интервал дат"
2938
 
2939
+ #: ../../admin/view/index.php:56 ../../admin/view/wp-slimstat-db.php:87
2940
  msgid "Day"
2941
  msgstr "День"
2942
 
2943
+ #: ../../admin/view/index.php:66 ../../admin/view/wp-slimstat-db.php:88
2944
  msgid "Month"
2945
  msgstr "Месяц"
2946
 
2947
+ #: ../../admin/view/index.php:75 ../../admin/view/wp-slimstat-db.php:89
2948
  msgid "Year"
2949
  msgstr "Год"
2950
 
2951
+ #: ../../admin/view/index.php:80
2952
+ #, fuzzy
2953
+ msgid "Reset Filters"
2954
+ msgstr "Фильтры даты"
2955
+
2956
+ #: ../../admin/view/index.php:117
2957
  msgid "Your report here"
2958
  msgstr "Ваш отчет"
2959
 
2960
+ #: ../../admin/view/index.php:119
2961
  msgid ""
2962
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
2963
  "Just write a new plugin that retrieves the desired information from the "
2972
  "\"http://wordpress.org/tags/wp-slimstat?forum_id=10\" target=\"_blank"
2973
  "\">форум поддержки</a>."
2974
 
2975
+ #: ../../admin/view/index.php:133 ../../admin/view/wp-slimstat-reports.php:759
2976
+ #: ../../admin/view/wp-slimstat-reports.php:861
2977
+ #: ../../admin/view/wp-slimstat-reports.php:1145
2978
  msgid "Pageviews"
2979
  msgstr "Просмотры"
2980
 
2981
+ #: ../../admin/view/index.php:136
2982
  msgid ""
2983
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2984
  "WP SlimStat leverages this information to identify returning visitors. "
2989
  "посетителей. Эти посетители также включают в себя зарегистрированных "
2990
  "пользователей."
2991
 
2992
+ #: ../../admin/view/index.php:140
2993
  msgid "Take a sneak peek at what human visitors are doing on your website."
2994
  msgstr "Предварительный просмотр того, что посетители делают на вашем сайте."
2995
 
2996
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
2997
+ #: ../../admin/view/index.php:184 ../../admin/view/right-now.php:147
2998
  msgid "Color codes"
2999
  msgstr "Цветовые коды"
3000
 
3001
+ #: ../../admin/view/index.php:140
3002
  msgid "From a search result page"
3003
  msgstr "Со страницы результатов поиска"
3004
 
3005
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
3006
+ #: ../../admin/view/index.php:184
3007
  msgid "Known Users"
3008
  msgstr "Известные пользователи"
3009
 
3010
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
3011
+ #: ../../admin/view/index.php:184
3012
  msgid "Other Humans"
3013
  msgstr "Другие посетители"
3014
 
3015
+ #: ../../admin/view/index.php:144
3016
  msgid "Keywords used by your visitors to find your website on a search engine."
3017
  msgstr ""
3018
  "Ключевые слова, которыми пользуются посетители, чтобы найти ваш сайт в "
3019
  "поисковых системах."
3020
 
3021
+ #: ../../admin/view/index.php:147
3022
  msgid ""
3023
  "WP SlimStat retrieves live information from Alexa, Facebook and Google, to "
3024
  "measures your site's rankings. Values are updated every 12 hours. Filters "
3028
  "Google для измерения рейтинга вашего сайта. Значения обновляются каждые 12 "
3029
  "часов. Установленные выше фильтры не применяются к данному отчету."
3030
 
3031
+ #: ../../admin/view/index.php:150
3032
  msgid ""
3033
  "We have teamed up with HackerNinja.com to offer you a free website security "
3034
  "scan. By clicking on Start Free Scan, your website will be analyzed to "
3040
  "сайт будет проанализирован для выявления вирусов и других неполадок. "
3041
  "Примечание: только ваше доменное имя (адрес сайта) передается на HackerNinja."
3042
 
3043
+ #: ../../admin/view/index.php:153
3044
  msgid "Human Visits"
3045
  msgstr "Посещение сайта человеком"
3046
 
3047
+ #: ../../admin/view/index.php:156
3048
  msgid ""
3049
  "Internet Service Provider: a company which provides other companies or "
3050
  "individuals with access to the Internet. Your DSL or cable internet service "
3057
  "IP-адреса, установив соответствующий фильтр в меню Настройки > SlimStat > "
3058
  "Фильтры."
3059
 
3060
+ #: ../../admin/view/index.php:159
3061
  msgid ""
3062
  "You can configure WP SlimStat to ignore a specific Country by setting the "
3063
  "corresponding filter under Settings > SlimStat > Filters."
3065
  "Вы можете настроить WP SlimStat для игнорирования конкретной страны, "
3066
  "установив соответствующий фильтр в меню Настройки > SlimStat > Фильтры."
3067
 
3068
+ #: ../../admin/view/index.php:162
3069
  msgid ""
3070
  "This report shows you what user agent families (no version considered) are "
3071
  "popular among your visitors."
3073
  "Этот отчет обобщает клиентские приложения (версии не рассматриваются), "
3074
  "которые пользуются популярностью у посетителей."
3075
 
3076
+ #: ../../admin/view/index.php:165
3077
  msgid ""
3078
  "This report shows you what operating system families (no version considered) "
3079
  "are popular among your visitors."
3081
  "Этот отчет обобщает операционные системы (версии не рассматриваются), "
3082
  "которые пользуются популярностью у посетителей."
3083
 
3084
+ #: ../../admin/view/index.php:171
3085
  msgid "Average Pageviews per Visit"
3086
  msgstr "Среднее кол-во просмотров за посещение"
3087
 
3088
+ #: ../../admin/view/index.php:174
3089
  msgid ""
3090
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
3091
  "left your site from the entrance (landing) page."
3093
  "<em>Страница отказа</em> - это одностраничное посещение, или посещение в "
3094
  "котором пользователь покидает сайт со страницы входа."
3095
 
3096
+ #: ../../admin/view/index.php:177
3097
  msgid "Searches performed using Wordpress' built-in search functionality."
3098
  msgstr "Поиски, выполненные с помощью встроенного поиска Wordpress."
3099
 
3100
+ #: ../../admin/view/index.php:181
3101
  msgid ""
3102
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
3103
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
3107
  "ссылка на странице была нажата.<br>- <em>ID:xx</em> показывает, когда "
3108
  "соответствующая ссылка имеет связанный с ним атрибут ID."
3109
 
3110
+ #: ../../admin/view/index.php:184
3111
  msgid ""
3112
  "This report lists any <em>event</em> occurred on your website. Please refer "
3113
  "to the FAQ for more information on how to leverage this functionality."
3116
  "сайте. Пожалуйста, посмотрите ЧаВо для получения дополнительной информации о "
3117
  "том, как использовать эту функциональность."
3118
 
3119
+ #: ../../admin/view/index.php:187
3120
  msgid ""
3121
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
3122
  "this report is not affected by the filters set here above."
3141
  msgstr "Читалка новостной ленты"
3142
 
3143
  #: ../../admin/view/right-now.php:28
3144
+ #: ../../admin/view/wp-slimstat-reports.php:425
3145
+ #: ../../admin/view/wp-slimstat-reports.php:670
3146
  msgid "No data to display"
3147
  msgstr "Нет данных"
3148
 
3149
  # Unknown
3150
+ #: ../../admin/view/right-now.php:54
3151
+ #: ../../admin/view/wp-slimstat-reports.php:470
3152
+ #: ../../admin/view/wp-slimstat-reports.php:708
3153
+ #: ../../admin/view/wp-slimstat-reports.php:1032
3154
  msgid "c-"
3155
  msgstr "Неизвестно"
3156
 
3157
+ #: ../../admin/view/right-now.php:120
3158
+ #: ../../admin/view/wp-slimstat-reports.php:524
3159
+ #: ../../admin/view/wp-slimstat-reports.php:528
3160
+ #: ../../admin/view/wp-slimstat-reports.php:690
3161
+ #: ../../admin/view/wp-slimstat-reports.php:728
3162
  msgid "Open this URL in a new window"
3163
  msgstr "Открыть страницу в новом окне"
3164
 
3165
+ #: ../../admin/view/right-now.php:123
3166
  msgid "Local search results page"
3167
  msgstr "Страница локальных результатов поиска"
3168
 
3169
+ #: ../../admin/view/right-now.php:130
3170
  msgid "Open this referrer in a new window"
3171
  msgstr "Открыть ссылающуюся страницу в новом окне"
3172
 
3173
+ #: ../../admin/view/right-now.php:131
3174
  msgid "Open this outbound link in a new window"
3175
  msgstr "Открыть исходящую ссылку в новом окне"
3176
 
3177
+ #: ../../admin/view/right-now.php:132
3178
  #, fuzzy
3179
  msgid "Date and Time"
3180
  msgstr "Интервал дат"
3181
 
3182
+ #: ../../admin/view/right-now.php:133
3183
  #, fuzzy
3184
  msgid "Content Type"
3185
  msgstr "Содержание сайта"
3186
 
3187
+ #: ../../admin/view/right-now.php:148
3188
  msgid "Visit with keywords"
3189
  msgstr "Посещение с ключевыми словами"
3190
 
3191
+ #: ../../admin/view/right-now.php:150
3192
  msgid "Known User"
3193
  msgstr "Известный пользователь"
3194
 
3195
+ #: ../../admin/view/right-now.php:151
3196
  msgid "Human Visitor"
3197
  msgstr "Посещение сайта человеком"
3198
 
3199
+ #: ../../admin/view/right-now.php:152
3200
  msgid "Bot or Crawler"
3201
  msgstr "Поисковый робот"
3202
 
3203
+ #: ../../admin/view/wp-slimstat-db.php:59
3204
  msgid "IP Address"
3205
  msgstr "IP-адрес"
3206
 
3207
+ #: ../../admin/view/wp-slimstat-db.php:64
3208
  msgid "Domain"
3209
  msgstr "Домен"
3210
 
3211
+ #: ../../admin/view/wp-slimstat-db.php:68
3212
  msgid "-- Advanced filters --"
3213
  msgstr "-- Расширенные фильтры --"
3214
 
3215
+ #: ../../admin/view/wp-slimstat-db.php:69
3216
+ #: ../../admin/view/wp-slimstat-reports.php:62
3217
  msgid "Browser Capabilities"
3218
  msgstr "Возможности браузера"
3219
 
3220
+ #: ../../admin/view/wp-slimstat-db.php:81
3221
  msgid "Resource ID"
3222
  msgstr "ID ресурса"
3223
 
3224
+ #: ../../admin/view/wp-slimstat-db.php:86
3225
  msgid "Hour"
3226
  msgstr "Час"
3227
 
3228
+ #: ../../admin/view/wp-slimstat-db.php:92
3229
+ #, fuzzy
3230
+ msgid "Order Direction"
3231
+ msgstr "Director"
3232
+
3233
+ #: ../../admin/view/wp-slimstat-db.php:93
3234
+ msgid "Limit Results"
3235
+ msgstr ""
3236
+
3237
+ #: ../../admin/view/wp-slimstat-db.php:94
3238
+ msgid "Start From"
3239
+ msgstr ""
3240
+
3241
+ #: ../../admin/view/wp-slimstat-reports.php:41
3242
  msgid "Pageviews (chart)"
3243
  msgstr "Просмотры (диаграмма)"
3244
 
3245
+ #: ../../admin/view/wp-slimstat-reports.php:42
3246
  msgid "About WP SlimStat"
3247
  msgstr "О плагине WP-SlimStat"
3248
 
3249
+ #: ../../admin/view/wp-slimstat-reports.php:43
3250
+ #: ../../admin/view/wp-slimstat-reports.php:56
3251
  msgid "At a Glance"
3252
  msgstr ""
3253
 
3254
+ #: ../../admin/view/wp-slimstat-reports.php:44
3255
  msgid "Currently Online"
3256
  msgstr "Сейчас на сайте"
3257
 
3258
+ #: ../../admin/view/wp-slimstat-reports.php:45
3259
+ #: ../../admin/view/wp-slimstat-reports.php:80
3260
  msgid "Spy View"
3261
  msgstr "Беглый просмотр активности"
3262
 
3263
+ #: ../../admin/view/wp-slimstat-reports.php:46
3264
+ #: ../../admin/view/wp-slimstat-reports.php:81
3265
  msgid "Recent Search Terms"
3266
  msgstr "Последние поисковые запросы"
3267
 
3268
+ #: ../../admin/view/wp-slimstat-reports.php:47
3269
  msgid "Top Pages"
3270
  msgstr "ТОП страниц"
3271
 
3272
+ #: ../../admin/view/wp-slimstat-reports.php:48
3273
+ #: ../../admin/view/wp-slimstat-reports.php:78
3274
  msgid "Top Traffic Sources"
3275
  msgstr "ТОП источников трафика"
3276
 
3277
+ #: ../../admin/view/wp-slimstat-reports.php:49
3278
  msgid "Top Known Visitors"
3279
  msgstr "ТОП известных пользователей"
3280
 
3281
+ #: ../../admin/view/wp-slimstat-reports.php:50
3282
+ #: ../../admin/view/wp-slimstat-reports.php:76
3283
+ #: ../../admin/view/wp-slimstat-reports.php:96
3284
  msgid "Top Search Terms"
3285
  msgstr "ТОП поисковых запросов"
3286
 
3287
+ #: ../../admin/view/wp-slimstat-reports.php:51
3288
+ #: ../../admin/view/wp-slimstat-reports.php:63
3289
+ #: ../../admin/view/wp-slimstat-reports.php:77
3290
  msgid "Top Countries"
3291
  msgstr "ТОП стран"
3292
 
3293
+ #: ../../admin/view/wp-slimstat-reports.php:52
3294
  msgid "Rankings"
3295
  msgstr "Рейтинг сайта"
3296
 
3297
+ #: ../../admin/view/wp-slimstat-reports.php:53
3298
  msgid "Security Scan"
3299
  msgstr "Проверка на безопасность"
3300
 
3301
+ #: ../../admin/view/wp-slimstat-reports.php:54
3302
  msgid "Top Language Families"
3303
  msgstr "ТОП классификаций языков"
3304
 
3305
+ #: ../../admin/view/wp-slimstat-reports.php:55
3306
  msgid "Human Visits (chart)"
3307
  msgstr "Посетители (диаграмма)"
3308
 
3309
+ #: ../../admin/view/wp-slimstat-reports.php:57
3310
  msgid "Top Languages"
3311
  msgstr "ТОП языков"
3312
 
3313
+ #: ../../admin/view/wp-slimstat-reports.php:58
3314
  msgid "Top Browsers"
3315
  msgstr "ТОП браузеров"
3316
 
3317
+ #: ../../admin/view/wp-slimstat-reports.php:59
3318
  msgid "Top Service Providers"
3319
  msgstr "ТОП провайдеров"
3320
 
3321
+ #: ../../admin/view/wp-slimstat-reports.php:60
3322
  msgid "Top Operating Systems"
3323
  msgstr "ТОП операционных систем"
3324
 
3325
+ #: ../../admin/view/wp-slimstat-reports.php:61
3326
  msgid "Top Screen Resolutions"
3327
  msgstr "ТОП разрешений экранов"
3328
 
3329
+ #: ../../admin/view/wp-slimstat-reports.php:64
3330
  msgid "Visit Duration"
3331
  msgstr "Длительность посещений"
3332
 
3333
+ #: ../../admin/view/wp-slimstat-reports.php:65
3334
+ #: ../../admin/view/wp-slimstat-reports.php:82
3335
  msgid "Recent Countries"
3336
  msgstr "Последние страны"
3337
 
3338
+ #: ../../admin/view/wp-slimstat-reports.php:66
3339
  msgid "Recent Screen Resolutions"
3340
  msgstr "Последние разрешения экранов"
3341
 
3342
+ #: ../../admin/view/wp-slimstat-reports.php:67
3343
  msgid "Recent Operating Systems"
3344
  msgstr "Последние ОС"
3345
 
3346
+ #: ../../admin/view/wp-slimstat-reports.php:68
3347
  msgid "Recent Browsers"
3348
  msgstr "Последние браузеры"
3349
 
3350
+ #: ../../admin/view/wp-slimstat-reports.php:69
3351
  msgid "Recent Languages"
3352
  msgstr "Последние языки"
3353
 
3354
+ #: ../../admin/view/wp-slimstat-reports.php:70
3355
  msgid "Top Browser Families"
3356
  msgstr "ТОП классификаций браузеров"
3357
 
3358
+ #: ../../admin/view/wp-slimstat-reports.php:71
3359
  msgid "Top OS Families"
3360
  msgstr "ТОП классификаций ОС"
3361
 
3362
+ #: ../../admin/view/wp-slimstat-reports.php:72
3363
  msgid "Recent Users"
3364
  msgstr "Последние пользователи"
3365
 
3366
+ #: ../../admin/view/wp-slimstat-reports.php:73
3367
  msgid "Top Users"
3368
  msgstr "ТОП пользователей"
3369
 
3370
+ #: ../../admin/view/wp-slimstat-reports.php:74
3371
  msgid "Traffic Sources (chart)"
3372
  msgstr "Источники трафика (диаграмма)"
3373
 
3374
+ #: ../../admin/view/wp-slimstat-reports.php:75
3375
  msgid "Summary"
3376
  msgstr "Сводная"
3377
 
3378
+ #: ../../admin/view/wp-slimstat-reports.php:79
3379
  msgid "Top Referring Search Engines"
3380
  msgstr "ТОП ссылающихся поисковых систем"
3381
 
3382
+ #: ../../admin/view/wp-slimstat-reports.php:83
3383
+ #: ../../admin/view/wp-slimstat-reports.php:99
3384
  msgid "Top Landing Pages"
3385
  msgstr "ТОП страниц входа"
3386
 
3387
+ #: ../../admin/view/wp-slimstat-reports.php:84
3388
  msgid "Average Pageviews per Visit (chart)"
3389
  msgstr "Среднее кол-во просмотров за визит (диаграмма)"
3390
 
3391
+ #: ../../admin/view/wp-slimstat-reports.php:85
3392
  msgid "Recent Posts"
3393
  msgstr "Последние записи"
3394
 
3395
+ #: ../../admin/view/wp-slimstat-reports.php:86
3396
  msgid "Recent Bounce Pages"
3397
  msgstr "Последние страницы отказа"
3398
 
3399
+ #: ../../admin/view/wp-slimstat-reports.php:87
3400
  msgid "Recent Feeds"
3401
  msgstr "Последние новостные ленты"
3402
 
3403
+ #: ../../admin/view/wp-slimstat-reports.php:88
3404
  msgid "Recent Pages Not Found"
3405
  msgstr "Последние ненайденные страницы"
3406
 
3407
+ #: ../../admin/view/wp-slimstat-reports.php:89
3408
  msgid "Recent Internal Searches"
3409
  msgstr "Последние внутренние поиски"
3410
 
3411
+ #: ../../admin/view/wp-slimstat-reports.php:90
3412
  msgid "Top Categories"
3413
  msgstr "ТОП категорий"
3414
 
3415
+ #: ../../admin/view/wp-slimstat-reports.php:91
3416
  msgid "Recent Outbound Links"
3417
  msgstr "Последние исходящие ссылки"
3418
 
3419
+ #: ../../admin/view/wp-slimstat-reports.php:92
3420
  msgid "Recent Events"
3421
  msgstr "Последние события"
3422
 
3423
+ #: ../../admin/view/wp-slimstat-reports.php:93
3424
  msgid "Top Posts"
3425
  msgstr "ТОП записей"
3426
 
3427
+ #: ../../admin/view/wp-slimstat-reports.php:94
3428
  msgid "Top Feeds"
3429
  msgstr "ТОП новостных лент"
3430
 
3431
+ #: ../../admin/view/wp-slimstat-reports.php:95
3432
  msgid "Top Internal Searches"
3433
  msgstr "ТОП внутренних поисков"
3434
 
3435
+ #: ../../admin/view/wp-slimstat-reports.php:97
3436
  msgid "Recent Categories"
3437
  msgstr "Последние категории"
3438
 
3439
+ #: ../../admin/view/wp-slimstat-reports.php:98
3440
  msgid "Top Pages Not Found"
3441
  msgstr "ТОП ненайденных страниц"
3442
 
3443
+ #: ../../admin/view/wp-slimstat-reports.php:100
3444
  msgid "Top Authors"
3445
  msgstr "ТОП авторов"
3446
 
3447
+ #: ../../admin/view/wp-slimstat-reports.php:101
3448
  msgid "Top Tags"
3449
  msgstr "ТОП тегов"
3450
 
3451
+ #: ../../admin/view/wp-slimstat-reports.php:102
3452
  msgid "Recent Downloads"
3453
  msgstr "Последние загрузки"
3454
 
3455
+ #: ../../admin/view/wp-slimstat-reports.php:103
3456
  msgid "Top Outbound Links and Downloads"
3457
  msgstr "ТОП исходящих ссылок и загрузок"
3458
 
3459
+ #: ../../admin/view/wp-slimstat-reports.php:104
3460
  msgid "Your Website"
3461
  msgstr "Ваш сайт"
3462
 
3463
+ #: ../../admin/view/wp-slimstat-reports.php:106
3464
  msgid "Activity Log"
3465
  msgstr "Журнал активности"
3466
 
3467
+ #: ../../admin/view/wp-slimstat-reports.php:222
3468
  msgid "Chart controls"
3469
  msgstr "Управление диаграммой"
3470
 
3471
+ #: ../../admin/view/wp-slimstat-reports.php:222
3472
  msgid "Use your mouse wheel to zoom in and out"
3473
  msgstr "Используйте колесико мыши для масштабирования"
3474
 
3475
+ #: ../../admin/view/wp-slimstat-reports.php:222
3476
  msgid "While zooming in, drag the chart to move to a different area"
3477
  msgstr ""
3478
  "Во время масштабирования, перетащите диаграмму, чтобы перейти в другое место"
3479
 
3480
+ #: ../../admin/view/wp-slimstat-reports.php:222
3481
  msgid "Double click on an empty region to reset the zoom level"
3482
  msgstr "Дважды щелкните на пустой области, чтобы сбросить масштаб"
3483
 
3484
+ #: ../../admin/view/wp-slimstat-reports.php:223
3485
  msgid ""
3486
  "Click on a data point to display the activity chart for each hour of that day"
3487
  msgstr ""
3488
  "Нажмите на кружочек для отображения деятельности за каждый час этого дня"
3489
 
3490
+ #: ../../admin/view/wp-slimstat-reports.php:256
3491
  msgid "src"
3492
  msgstr "источник"
3493
 
3494
+ #: ../../admin/view/wp-slimstat-reports.php:257
3495
  msgid "serp"
3496
  msgstr "страница результатов поиска"
3497
 
3498
+ #: ../../admin/view/wp-slimstat-reports.php:262
3499
  msgid "Go to the corresponding search engine result page"
3500
  msgstr "Перейти на соответствующую страницу поискового запроса"
3501
 
3502
+ #: ../../admin/view/wp-slimstat-reports.php:265
3503
  msgid "Go to the referring page"
3504
  msgstr "Перейти на страницу источника запроса"
3505
 
3506
+ #: ../../admin/view/wp-slimstat-reports.php:288
3507
  msgid "Remove filter for"
3508
  msgstr "Удалить фильтр для"
3509
 
3510
+ #: ../../admin/view/wp-slimstat-reports.php:295
3511
  msgid "Reset All"
3512
  msgstr "Полный сброс"
3513
 
3514
+ #: ../../admin/view/wp-slimstat-reports.php:298
3515
  msgid "Current filters:"
3516
  msgstr "Текущие фильтры:"
3517
 
3518
+ #: ../../admin/view/wp-slimstat-reports.php:302
3519
  msgid "Refresh"
3520
  msgstr "Обновить"
3521
 
3522
+ #: ../../admin/view/wp-slimstat-reports.php:339
3523
  #, php-format
3524
  msgid "Results %s - %s of %s"
3525
  msgstr "Результаты %s - %s из %s"
3526
 
3527
+ #: ../../admin/view/wp-slimstat-reports.php:341
3528
  msgid "Refresh in"
3529
  msgstr "Обновить"
3530
 
3531
+ #: ../../admin/view/wp-slimstat-reports.php:363
3532
+ #: ../../admin/view/wp-slimstat-reports.php:375
3533
  #, php-format
3534
  msgid "Daily %s"
3535
  msgstr "Ежедневный отчет: %s "
3536
 
3537
+ #: ../../admin/view/wp-slimstat-reports.php:366
3538
  #, php-format
3539
  msgid "%s Minute by Minute"
3540
  msgstr "Поминутный %s"
3541
 
3542
+ #: ../../admin/view/wp-slimstat-reports.php:369
3543
  #, php-format
3544
  msgid "Hourly %s"
3545
  msgstr "Ежечасный отчет: %s "
3546
 
3547
+ #: ../../admin/view/wp-slimstat-reports.php:372
3548
  #, php-format
3549
  msgid "Monthly %s"
3550
  msgstr "Ежемесячный отчет: %s "
3551
 
3552
+ #: ../../admin/view/wp-slimstat-reports.php:452
3553
  msgid "Category ID"
3554
  msgstr "ID категорий"
3555
 
3556
+ #: ../../admin/view/wp-slimstat-reports.php:485
3557
  msgid "OS Code"
3558
  msgstr "Код операционной системы"
3559
 
3560
+ #: ../../admin/view/wp-slimstat-reports.php:495
3561
  msgid "Referrer"
3562
  msgstr "Источник запроса"
3563
 
3564
+ #: ../../admin/view/wp-slimstat-reports.php:519
3565
+ #: ../../admin/view/wp-slimstat-reports.php:796
3566
+ #: ../../admin/view/wp-slimstat-reports.php:805
3567
+ #: ../../admin/view/wp-slimstat-reports.php:811
3568
+ #: ../../admin/view/wp-slimstat-reports.php:817
3569
+ #: ../../admin/view/wp-slimstat-reports.php:823
3570
+ #: ../../admin/view/wp-slimstat-reports.php:829
3571
+ #: ../../admin/view/wp-slimstat-reports.php:835
3572
+ #: ../../admin/view/wp-slimstat-reports.php:841
3573
  msgid "Hits"
3574
  msgstr "Просмотры"
3575
 
3576
+ #: ../../admin/view/wp-slimstat-reports.php:687
3577
  msgid "Search for"
3578
  msgstr "Искать"
3579
 
3580
+ #: ../../admin/view/wp-slimstat-reports.php:718
3581
+ #: ../../admin/view/wp-slimstat-reports.php:728
3582
  msgid "Source"
3583
  msgstr "Источник"
3584
 
3585
+ #: ../../admin/view/wp-slimstat-reports.php:720
3586
  msgid "Keywords"
3587
  msgstr "Ключевые слова"
3588
 
3589
+ #: ../../admin/view/wp-slimstat-reports.php:728
3590
  #, php-format
3591
  msgid "Filter results where resource equals %s"
3592
  msgstr "Отфильтровать результаты, где ресурс равен %s"
3593
 
3594
+ #: ../../admin/view/wp-slimstat-reports.php:742
3595
  msgid "Total Pageviews"
3596
  msgstr "Всего просмотров"
3597
 
3598
+ #: ../../admin/view/wp-slimstat-reports.php:743
3599
  msgid "DB Size"
3600
  msgstr "Размер базы данных"
3601
 
3602
+ #: ../../admin/view/wp-slimstat-reports.php:744
3603
  msgid "Tracking Active"
3604
  msgstr "Отслеживание включено"
3605
 
3606
+ #: ../../admin/view/wp-slimstat-reports.php:745
3607
  msgid "Javascript Mode"
3608
  msgstr "Режим JavaScript"
3609
 
3610
+ #: ../../admin/view/wp-slimstat-reports.php:746
3611
  msgid "Tracking Browser Caps"
3612
  msgstr "Отслеживание возможностей браузеров"
3613
 
3614
+ #: ../../admin/view/wp-slimstat-reports.php:747
3615
  msgid "Auto purge"
3616
  msgstr "Автоматическая очистка"
3617
 
3618
+ #: ../../admin/view/wp-slimstat-reports.php:748
3619
  msgid "Oldest pageview"
3620
  msgstr "Самое первое посещение"
3621
 
3622
+ #: ../../admin/view/wp-slimstat-reports.php:748
3623
  msgid "No visits"
3624
  msgstr "Нет посетителей"
3625
 
3626
+ #: ../../admin/view/wp-slimstat-reports.php:758
3627
+ #: ../../admin/view/wp-slimstat-reports.php:860
3628
  msgid ""
3629
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
3630
  "time the tracking code is executed."
3632
  "Запрос на загрузку одного файла HTML. WP SlimStat ведет запись просмотров "
3633
  "каждый раз, когда выполняется код отслеживания."
3634
 
3635
+ #: ../../admin/view/wp-slimstat-reports.php:760
3636
  msgid "How many pages have been visited on average during the current period."
3637
  msgstr "Сколько страниц были посещены в среднем за текущий период."
3638
 
3639
+ #: ../../admin/view/wp-slimstat-reports.php:761
3640
+ #, fuzzy
3641
+ msgid "Average Pageviews"
3642
  msgstr "Среднее кол-во просмотров"
3643
 
3644
+ #: ../../admin/view/wp-slimstat-reports.php:762
3645
  msgid ""
3646
  "Visitors who landed on your site after searching for a keyword on Google, "
3647
  "Yahoo, etc."
3649
  "Посетители, которые вошли на сайт по ключевому слову с поиска по Google, "
3650
  "Yahoo, и т.д."
3651
 
3652
+ #: ../../admin/view/wp-slimstat-reports.php:763
3653
  msgid "From Search Results"
3654
  msgstr "Со страницы результатов поиска"
3655
 
3656
+ #: ../../admin/view/wp-slimstat-reports.php:764
3657
  msgid ""
3658
  "Used to differentiate between multiple requests to download a file from one "
3659
  "internet address (IP) and requests originating from many distinct addresses"
3661
  "Используется для различения нескольких запросов загрузки с одного IP и "
3662
  "запросов, поступающих от множественных IP."
3663
 
3664
+ #: ../../admin/view/wp-slimstat-reports.php:765
3665
+ #: ../../admin/view/wp-slimstat-reports.php:780
3666
+ #: ../../admin/view/wp-slimstat-reports.php:1145
3667
+ #: ../../admin/view/wp-slimstat-reports.php:1149
3668
+ #: ../../admin/view/wp-slimstat-reports.php:1153
3669
  msgid "Unique IPs"
3670
  msgstr "Уникальные IP"
3671
 
3672
+ #: ../../admin/view/wp-slimstat-reports.php:766
3673
  msgid "Last 5 minutes"
3674
  msgstr "За последние 5 минут"
3675
 
3676
+ #: ../../admin/view/wp-slimstat-reports.php:767
3677
  msgid "Last 30 minutes"
3678
  msgstr "За последние 30 минут"
3679
 
3680
+ #: ../../admin/view/wp-slimstat-reports.php:777
3681
  msgid ""
3682
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3683
  "multiple times if they perform multiple visits."
3685
  "Посещение - это сеанс не более 30 минут. Повторные посетители считаются "
3686
  "несколько раз, если они выполняют несколько посещений."
3687
 
3688
+ #: ../../admin/view/wp-slimstat-reports.php:778
3689
  msgid "Human visits"
3690
  msgstr "Посещение сайта человеком"
3691
 
3692
+ #: ../../admin/view/wp-slimstat-reports.php:779
3693
  msgid "It includes only traffic generated by human visitors."
3694
  msgstr "Это включает в себя только трафик, генерируемый людьми."
3695
 
3696
+ #: ../../admin/view/wp-slimstat-reports.php:781
3697
+ #: ../../admin/view/wp-slimstat-reports.php:872
3698
  msgid ""
3699
  "Percentage of single-page visits, i.e. visits in which the person left your "
3700
  "site from the entrance page."
3702
  "Процент одностраничного посещения, т.е. посещения сайта, в котором "
3703
  "пользователь покидает сайт со страницы входа."
3704
 
3705
+ #: ../../admin/view/wp-slimstat-reports.php:782
3706
  msgid "Bounce rate"
3707
  msgstr "Показатель отказов"
3708
 
3709
+ #: ../../admin/view/wp-slimstat-reports.php:783
3710
  msgid "Visitors who had previously left a comment on your blog."
3711
  msgstr "Посетители, которые ранее оставили комментарий на вашем блоге."
3712
 
3713
+ #: ../../admin/view/wp-slimstat-reports.php:784
3714
  msgid "Known visitors"
3715
  msgstr "Известные пользователи"
3716
 
3717
+ #: ../../admin/view/wp-slimstat-reports.php:785
3718
  msgid "Human users who visited your site only once."
3719
  msgstr "Посетители, которые заходили на ваш сайт только один раз."
3720
 
3721
+ #: ../../admin/view/wp-slimstat-reports.php:786
3722
  msgid "New visitors"
3723
  msgstr "Новые посетители"
3724
 
3725
+ #: ../../admin/view/wp-slimstat-reports.php:787
3726
  msgid "Bots"
3727
  msgstr "Боты"
3728
 
3729
+ #: ../../admin/view/wp-slimstat-reports.php:788
3730
  msgid "Pages per visit"
3731
  msgstr "Страниц за посещение"
3732
 
3733
+ #: ../../admin/view/wp-slimstat-reports.php:789
3734
+ #: ../../admin/view/wp-slimstat-reports.php:1158
3735
  msgid "Longest visit"
3736
  msgstr "Самый долгий визит"
3737
 
3738
+ #: ../../admin/view/wp-slimstat-reports.php:789
3739
  msgid "hits"
3740
  msgstr "просмотров"
3741
 
3742
+ #: ../../admin/view/wp-slimstat-reports.php:807
3743
  msgid "0 - 30 seconds"
3744
  msgstr "0-30 секунд"
3745
 
3746
+ #: ../../admin/view/wp-slimstat-reports.php:813
3747
  msgid "31 - 60 seconds"
3748
  msgstr "31-60 секунд"
3749
 
3750
+ #: ../../admin/view/wp-slimstat-reports.php:819
3751
  msgid "1 - 3 minutes"
3752
  msgstr "1-3 минуты"
3753
 
3754
+ #: ../../admin/view/wp-slimstat-reports.php:825
3755
  msgid "3 - 5 minutes"
3756
  msgstr "3-5 минут"
3757
 
3758
+ #: ../../admin/view/wp-slimstat-reports.php:831
3759
  msgid "5 - 7 minutes"
3760
  msgstr "5-7 минут"
3761
 
3762
+ #: ../../admin/view/wp-slimstat-reports.php:837
3763
  msgid "7 - 10 minutes"
3764
  msgstr "7-10 минут"
3765
 
3766
+ #: ../../admin/view/wp-slimstat-reports.php:843
3767
  msgid "More than 10 minutes"
3768
  msgstr "Более 10 минут"
3769
 
3770
+ #: ../../admin/view/wp-slimstat-reports.php:852
3771
  msgid "Average time on site"
3772
  msgstr "Среднее кол-во времени на сайте"
3773
 
3774
+ #: ../../admin/view/wp-slimstat-reports.php:862
3775
  msgid ""
3776
  "A referrer (or referring site) is the site that a visitor previously visited "
3777
  "before following a link to your site."
3779
  "Источник запроса (или ссылающийся сайт) является сайтом, на котором ранее "
3780
  "побывал посетитель до того как перейти с него по ссылке на ваш сайт."
3781
 
3782
+ #: ../../admin/view/wp-slimstat-reports.php:863
3783
  msgid "Unique Referrers"
3784
  msgstr "Уникальные источники запроса"
3785
 
3786
+ #: ../../admin/view/wp-slimstat-reports.php:864
3787
  msgid ""
3788
  "Visitors who visited the site by typing the URL directly into their browser. "
3789
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
3796
  "это могут быть немаркированные ссылки в электронных письмах или ссылки из "
3797
  "документов, которые не включают в себя отслеживание переменных."
3798
 
3799
+ #: ../../admin/view/wp-slimstat-reports.php:865
3800
  msgid "Direct Pageviews"
3801
  msgstr "Прямые переходы"
3802
 
3803
+ #: ../../admin/view/wp-slimstat-reports.php:866
3804
  msgid ""
3805
  "Visitors who came to your site via searches on Google or some other search "
3806
  "engine."
3808
  "Посетители, которые пришли на ваш сайт через поиск в Google или другой "
3809
  "поисковой системы."
3810
 
3811
+ #: ../../admin/view/wp-slimstat-reports.php:867
3812
  msgid "From a search result"
3813
  msgstr "Со страницы результатов поиска"
3814
 
3815
+ #: ../../admin/view/wp-slimstat-reports.php:868
3816
  msgid ""
3817
  "The first page that a user views during a session. This is also known as the "
3818
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
3825
  "главную страницу вашего сайта, то она учитывается (для этого посещения) в "
3826
  "качестве страницы входа."
3827
 
3828
+ #: ../../admin/view/wp-slimstat-reports.php:869
3829
  msgid "Unique Landing Pages"
3830
  msgstr "Уникальные страницы входа"
3831
 
3832
+ #: ../../admin/view/wp-slimstat-reports.php:870
3833
  msgid "Number of single-page visits to your site over the selected period."
3834
  msgstr "Число одностраничных посещений на ваш сайт за выбранный период."
3835
 
3836
+ #: ../../admin/view/wp-slimstat-reports.php:871
3837
  msgid "Bounce Pages"
3838
  msgstr "Страницы отказов"
3839
 
3840
+ #: ../../admin/view/wp-slimstat-reports.php:873
3841
  msgid "New Visitors Rate"
3842
  msgstr "Показатель новых посетителей"
3843
 
3844
+ #: ../../admin/view/wp-slimstat-reports.php:874
3845
  msgid ""
3846
  "Visitors who visited the site in the last 5 minutes coming from a search "
3847
  "engine."
3848
  msgstr ""
3849
  "Посетители, которые посетили сайт из поисковой системы за последние 5 минут."
3850
 
3851
+ #: ../../admin/view/wp-slimstat-reports.php:875
3852
  msgid "Currently from search engines"
3853
  msgstr "В настоящее время из поисковых систем"
3854
 
3855
+ #: ../../admin/view/wp-slimstat-reports.php:943
3856
  msgid "Number of pages in your site included in Google's index."
3857
  msgstr "Количество страниц вашего сайта, проиндексированные Google."
3858
 
3859
+ #: ../../admin/view/wp-slimstat-reports.php:944
3860
  msgid "Google Index"
3861
  msgstr "Указатели Google"
3862
 
3863
+ #: ../../admin/view/wp-slimstat-reports.php:945
3864
  msgid "Number of pages, according to Google, that link back to your site."
3865
  msgstr "Количество страниц, по мнению Google, которые ссылаются на ваш сайт."
3866
 
3867
+ #: ../../admin/view/wp-slimstat-reports.php:946
3868
  msgid "Google Backlinks"
3869
  msgstr "Внешние ссылки Google"
3870
 
3871
+ #: ../../admin/view/wp-slimstat-reports.php:947
3872
  msgid ""
3873
  "How many times the Facebook Like button has been approximately clicked on "
3874
  "your site."
3876
  "Сколько раз кнопка 'нравится на Фейсбуке' примерно была нажата на Вашем "
3877
  "сайте."
3878
 
3879
+ #: ../../admin/view/wp-slimstat-reports.php:948
3880
  msgid "Facebook Likes"
3881
  msgstr "Понравилось на Фейсбуке"
3882
 
3883
+ #: ../../admin/view/wp-slimstat-reports.php:949
3884
  msgid ""
3885
  "How many times your site has been shared by someone on the social network."
3886
  msgstr "Сколько раз вашим сайтом кто-то поделился в социальной сети."
3887
 
3888
+ #: ../../admin/view/wp-slimstat-reports.php:950
3889
  msgid "Facebook Shares"
3890
  msgstr "Поделились на Фейсбуке"
3891
 
3892
+ #: ../../admin/view/wp-slimstat-reports.php:951
3893
  msgid "How many times links to your website have been clicked on Facebook."
3894
  msgstr "Сколько раз ссылки на ваш сайт были нажаты на Фейсбуке."
3895
 
3896
+ #: ../../admin/view/wp-slimstat-reports.php:952
3897
  msgid "Facebook Clicks"
3898
  msgstr "Переходы с Фейсбука"
3899
 
3900
+ #: ../../admin/view/wp-slimstat-reports.php:953
3901
  msgid ""
3902
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3903
  "traffic data."
3905
  "Alexa является дочерней компанией Amazon.com, которая предоставляет "
3906
  "коммерческие данные интернет-трафика."
3907
 
3908
+ #: ../../admin/view/wp-slimstat-reports.php:954
3909
  msgid "Alexa World Rank"
3910
  msgstr "Всемирный рейтинг от Alexa"
3911
 
3912
+ #: ../../admin/view/wp-slimstat-reports.php:955
3913
  msgid "Alexa Country Rank"
3914
  msgstr "Рейтинг стран от Alexa"
3915
 
3916
+ #: ../../admin/view/wp-slimstat-reports.php:956
3917
  msgid "Alexa Popularity"
3918
  msgstr "Популярность от Alexa"
3919
 
3920
+ #: ../../admin/view/wp-slimstat-reports.php:973
3921
  msgid "Bing Test"
3922
  msgstr "Bing тест"
3923
 
3924
+ #: ../../admin/view/wp-slimstat-reports.php:974
3925
  msgid "AntiVirus Scan"
3926
  msgstr "Антивирусное сканирование"
3927
 
3928
+ #: ../../admin/view/wp-slimstat-reports.php:975
3929
  msgid "Google Bot Test"
3930
  msgstr "Google Бот тест"
3931
 
3932
+ #: ../../admin/view/wp-slimstat-reports.php:976
3933
  msgid "Scan for Hostile Strings"
3934
  msgstr "Проверка на враждебные строки"
3935
 
3936
+ #: ../../admin/view/wp-slimstat-reports.php:977
3937
  msgid "Generic Web Bot test"
3938
  msgstr "Общий Интернет Бот тест"
3939
 
3940
+ #: ../../admin/view/wp-slimstat-reports.php:978
3941
  msgid "Google Safe Browsing List"
3942
  msgstr "Список безопасного просмота Google"
3943
 
3944
+ #: ../../admin/view/wp-slimstat-reports.php:979
3945
  msgid "Hostile External Links"
3946
  msgstr "Враждебные внешние ссылки"
3947
 
3948
+ #: ../../admin/view/wp-slimstat-reports.php:980
3949
  msgid "Other Treats"
3950
  msgstr "Другие посетители"
3951
 
3952
+ #: ../../admin/view/wp-slimstat-reports.php:1006
3953
  msgid "Passed"
3954
  msgstr "Прошел"
3955
 
3956
+ #: ../../admin/view/wp-slimstat-reports.php:1006
3957
  msgid "At Risk"
3958
  msgstr "Под угрозой"
3959
 
3960
+ #: ../../admin/view/wp-slimstat-reports.php:1009
3961
  msgid "Timed Out"
3962
  msgstr "Сбой проверки"
3963
 
3964
  # Unknown
3965
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3966
  msgid "c-xx"
3967
  msgstr "Неизвестно"
3968
 
3969
  # Afghanistan
3970
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3971
  msgid "c-af"
3972
  msgstr "Афганистан"
3973
 
3974
  # Åland Islands
3975
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3976
  msgid "c-ax"
3977
  msgstr "Аландские острова"
3978
 
3979
  # Albania
3980
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3981
  msgid "c-al"
3982
  msgstr "Албания"
3983
 
3984
  # Algeria
3985
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3986
  msgid "c-dz"
3987
  msgstr "Алжир"
3988
 
3989
  # Andorra
3990
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3991
  msgid "c-ad"
3992
  msgstr "Андорра"
3993
 
3994
  # Angola
3995
+ #: ../../admin/view/wp-slimstat-reports.php:1023
3996
  msgid "c-ao"
3997
  msgstr "Ангола"
3998
 
3999
  # Anguilla
4000
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4001
  msgid "c-ai"
4002
  msgstr "Ангилья"
4003
 
4004
  # Antigua and Barbuda
4005
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4006
  msgid "c-ag"
4007
  msgstr "Антигуа и Барбуда"
4008
 
4009
  # Argentina
4010
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4011
  msgid "c-ar"
4012
  msgstr "Аргентина"
4013
 
4014
  # Armenia
4015
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4016
  msgid "c-am"
4017
  msgstr "Армения"
4018
 
4019
  # Aruba
4020
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4021
  msgid "c-aw"
4022
  msgstr "Аруба"
4023
 
4024
  # Australia
4025
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4026
  msgid "c-au"
4027
  msgstr "Австралия"
4028
 
4029
  # Austria
4030
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4031
  msgid "c-at"
4032
  msgstr "Австрия"
4033
 
4034
  # Azerbaijan
4035
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4036
  msgid "c-az"
4037
  msgstr "Азербайджан"
4038
 
4039
  # Bahamas
4040
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4041
  msgid "c-bs"
4042
  msgstr "Багамы"
4043
 
4044
  # Bahrain
4045
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4046
  msgid "c-bh"
4047
  msgstr "Бахрейн"
4048
 
4049
  # Bangladesh
4050
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4051
  msgid "c-bd"
4052
  msgstr "Бангладеш"
4053
 
4054
  # Barbados
4055
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4056
  msgid "c-bb"
4057
  msgstr "Барбадос"
4058
 
4059
  # Belarus
4060
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4061
  msgid "c-by"
4062
  msgstr "Беларусь"
4063
 
4064
  # Belgium
4065
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4066
  msgid "c-be"
4067
  msgstr "Бельгия"
4068
 
4069
  # Belize
4070
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4071
  msgid "c-bz"
4072
  msgstr "Белиз"
4073
 
4074
  # Benin
4075
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4076
  msgid "c-bj"
4077
  msgstr "Бенин"
4078
 
4079
  # Bermuda
4080
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4081
  msgid "c-bm"
4082
  msgstr "Бермуды"
4083
 
4084
  # Bhutan
4085
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4086
  msgid "c-bt"
4087
  msgstr "Бутан"
4088
 
4089
  # Bolivia
4090
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4091
  msgid "c-bo"
4092
  msgstr "Боливия"
4093
 
4094
  # Bosnia and Herzegovina
4095
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4096
  msgid "c-ba"
4097
  msgstr "Босния и Герцеговина"
4098
 
4099
  # Botswana
4100
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4101
  msgid "c-bw"
4102
  msgstr "Ботсвана"
4103
 
4104
  # Brazil
4105
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4106
  msgid "c-br"
4107
  msgstr "Бразилия"
4108
 
4109
  # Brunei Darussalam
4110
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4111
  msgid "c-bn"
4112
  msgstr "Бруней"
4113
 
4114
  # Bulgaria
4115
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4116
  msgid "c-bg"
4117
  msgstr "Болгария"
4118
 
4119
  # Burkina Faso
4120
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4121
  msgid "c-bf"
4122
  msgstr "Буркина-Фасо"
4123
 
4124
  # Burundi
4125
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4126
  msgid "c-bi"
4127
  msgstr "Бурунди"
4128
 
4129
  # Cambodia
4130
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4131
  msgid "c-kh"
4132
  msgstr "Камбоджа"
4133
 
4134
  # Cameroon
4135
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4136
  msgid "c-cm"
4137
  msgstr "Камерун"
4138
 
4139
  # Canada
4140
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4141
  msgid "c-ca"
4142
  msgstr "Канада"
4143
 
4144
  # Cape Verde
4145
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4146
  msgid "c-cv"
4147
  msgstr "Кабо-Верде"
4148
 
4149
  # Cayman Islands
4150
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4151
  msgid "c-ky"
4152
  msgstr "Каймановы острова"
4153
 
4154
  # Central African Republic
4155
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4156
  msgid "c-cf"
4157
  msgstr "ЦАР"
4158
 
4159
  # Chad
4160
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4161
  msgid "c-td"
4162
  msgstr "Чад"
4163
 
4164
  # Chile
4165
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4166
  msgid "c-cl"
4167
  msgstr "Чили"
4168
 
4169
  # China
4170
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4171
  msgid "c-cn"
4172
  msgstr "Китай"
4173
 
4174
  # Colombia
4175
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4176
  msgid "c-co"
4177
  msgstr "Колумбия"
4178
 
4179
  # Comoros
4180
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4181
  msgid "c-km"
4182
  msgstr "Коморы"
4183
 
4184
  # Congo
4185
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4186
  msgid "c-cg"
4187
  msgstr "Конго"
4188
 
4189
  # The Democratic Republic of the Congo
4190
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4191
  msgid "c-cd"
4192
  msgstr "Демократическая Республика Конго"
4193
 
4194
  # Costa Rica
4195
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4196
  msgid "c-cr"
4197
  msgstr "Коста-Рика"
4198
 
4199
  # Côte d'Ivoire
4200
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4201
  msgid "c-ci"
4202
  msgstr "Кот-д’Ивуар"
4203
 
4204
  # Croatia
4205
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4206
  msgid "c-hr"
4207
  msgstr "Хорватия"
4208
 
4209
  # Cuba
4210
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4211
  msgid "c-cu"
4212
  msgstr "Куба"
4213
 
4214
  # Cyprus
4215
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4216
  msgid "c-cy"
4217
  msgstr "Кипр"
4218
 
4219
  # Czech Republic
4220
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4221
  msgid "c-cz"
4222
  msgstr "Чехия"
4223
 
4224
  # Denmark
4225
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4226
  msgid "c-dk"
4227
  msgstr "Дания"
4228
 
4229
  # Djibouti
4230
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4231
  msgid "c-dj"
4232
  msgstr "Джибути"
4233
 
4234
  # Dominica
4235
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4236
  msgid "c-dm"
4237
  msgstr "Доминика"
4238
 
4239
  # Dominican Republic
4240
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4241
  msgid "c-do"
4242
  msgstr "Доминиканская Республика"
4243
 
4244
  # Ecuador
4245
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4246
  msgid "c-ec"
4247
  msgstr "Эквадор"
4248
 
4249
  # Egypt
4250
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4251
  msgid "c-eg"
4252
  msgstr "Египет"
4253
 
4254
  # El Salvador
4255
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4256
  msgid "c-sv"
4257
  msgstr "Сальвадор"
4258
 
4259
  # Equatorial Guinea
4260
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4261
  msgid "c-gq"
4262
  msgstr "Экваториальная Гвинея"
4263
 
4264
  # Eritrea
4265
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4266
  msgid "c-er"
4267
  msgstr "Эритрея"
4268
 
4269
  # Estonia
4270
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4271
  msgid "c-ee"
4272
  msgstr "Эстония"
4273
 
4274
  # Ethiopia
4275
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4276
  msgid "c-et"
4277
  msgstr "Эфиопия"
4278
 
4279
  # Faroe Islands
4280
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4281
  msgid "c-fo"
4282
  msgstr "Фарерские острова"
4283
 
4284
  # Falkland Islands (Malvinas)
4285
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4286
  msgid "c-fk"
4287
  msgstr "Фолклендские острова"
4288
 
4289
  # Fiji
4290
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4291
  msgid "c-fj"
4292
  msgstr "Фиджи"
4293
 
4294
  # Finland
4295
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4296
  msgid "c-fi"
4297
  msgstr "Финляндия"
4298
 
4299
  # France
4300
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4301
  msgid "c-fr"
4302
  msgstr "Франция"
4303
 
4304
  # French Guiana
4305
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4306
  msgid "c-gf"
4307
  msgstr "Французская Гвиана"
4308
 
4309
  # Gabon
4310
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4311
  msgid "c-ga"
4312
  msgstr "Габон"
4313
 
4314
  # Gambia
4315
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4316
  msgid "c-gm"
4317
  msgstr "Гамбия"
4318
 
4319
  # Georgia
4320
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4321
  msgid "c-ge"
4322
  msgstr "Грузия"
4323
 
4324
  # Germany
4325
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4326
  msgid "c-de"
4327
  msgstr "Германия"
4328
 
4329
  # Ghana
4330
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4331
  msgid "c-gh"
4332
  msgstr "Гана"
4333
 
4334
  # Greece
4335
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4336
  msgid "c-gr"
4337
  msgstr "Греция"
4338
 
4339
  # Greenland
4340
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4341
  msgid "c-gl"
4342
  msgstr "Гренландия"
4343
 
4344
  # Grenada
4345
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4346
  msgid "c-gd"
4347
  msgstr "Гренада"
4348
 
4349
  # Guadeloupe
4350
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4351
  msgid "c-gp"
4352
  msgstr "Гваделупа"
4353
 
4354
  # Guatemala
4355
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4356
  msgid "c-gt"
4357
  msgstr "Гватемала"
4358
 
4359
  # Guinea
4360
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4361
  msgid "c-gn"
4362
  msgstr "Гвинея"
4363
 
4364
  # Guinea-Bissau
4365
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4366
  msgid "c-gw"
4367
  msgstr "Гвинея-Бисау"
4368
 
4369
  # Guyana
4370
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4371
  msgid "c-gy"
4372
  msgstr "Гайана"
4373
 
4374
  # Haiti
4375
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4376
  msgid "c-ht"
4377
  msgstr "Гаити"
4378
 
4379
  # Honduras
4380
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4381
  msgid "c-hn"
4382
  msgstr "Гондурас"
4383
 
4384
  # Hong Kong
4385
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4386
  msgid "c-hk"
4387
  msgstr "Гонконг"
4388
 
4389
  # Hungary
4390
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4391
  msgid "c-hu"
4392
  msgstr "Венгрия"
4393
 
4394
  # Iceland
4395
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4396
  msgid "c-is"
4397
  msgstr "Исландия"
4398
 
4399
  # India
4400
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4401
  msgid "c-in"
4402
  msgstr "Индия"
4403
 
4404
  # Indonesia
4405
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4406
  msgid "c-id"
4407
  msgstr "Индонезия"
4408
 
4409
  # Islamic Republic of Iran
4410
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4411
  msgid "c-ir"
4412
  msgstr "Иран"
4413
 
4414
  # Iraq
4415
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4416
  msgid "c-iq"
4417
  msgstr "Ирак"
4418
 
4419
  # Ireland
4420
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4421
  msgid "c-ie"
4422
  msgstr "Ирландия"
4423
 
4424
  # Israel
4425
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4426
  msgid "c-il"
4427
  msgstr "Израиль"
4428
 
4429
  # Italy
4430
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4431
  msgid "c-it"
4432
  msgstr "Италия"
4433
 
4434
  # Jamaica
4435
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4436
  msgid "c-jm"
4437
  msgstr "Ямайка"
4438
 
4439
  # Japan
4440
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4441
  msgid "c-jp"
4442
  msgstr "Япония"
4443
 
4444
  # Jordan
4445
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4446
  msgid "c-jo"
4447
  msgstr "Иордания"
4448
 
4449
  # Kazakhstan
4450
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4451
  msgid "c-kz"
4452
  msgstr "Казахстан"
4453
 
4454
  # Kenya
4455
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4456
  msgid "c-ke"
4457
  msgstr "Кения"
4458
 
4459
  # Nauru
4460
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4461
  msgid "c-nr"
4462
  msgstr "Науру"
4463
 
4464
  # Democratic People's Republic of Korea
4465
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4466
  msgid "c-kp"
4467
  msgstr "Северная Корея"
4468
 
4469
  # Republic of Korea
4470
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4471
  msgid "c-kr"
4472
  msgstr "Южная Корея"
4473
 
4474
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4475
  msgid "c-kv"
4476
  msgstr "Республика Косово"
4477
 
4478
  # Kuwait
4479
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4480
  msgid "c-kw"
4481
  msgstr "Кувейт"
4482
 
4483
  # Kyrgyzstan
4484
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4485
  msgid "c-kg"
4486
  msgstr "Киргизия"
4487
 
4488
  # Lao People's Democratic Republic
4489
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4490
  msgid "c-la"
4491
  msgstr "Лаос"
4492
 
4493
  # Latvia
4494
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4495
  msgid "c-lv"
4496
  msgstr "Латвия"
4497
 
4498
  # Lebanon
4499
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4500
  msgid "c-lb"
4501
  msgstr "Ливан"
4502
 
4503
  # Lesotho
4504
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4505
  msgid "c-ls"
4506
  msgstr "Лесото"
4507
 
4508
  # Liberia
4509
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4510
  msgid "c-lr"
4511
  msgstr "Либерия"
4512
 
4513
  # Libyan Arab Jamahiriya
4514
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4515
  msgid "c-ly"
4516
  msgstr "Ливия"
4517
 
4518
  # Liechtenstein
4519
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4520
  msgid "c-li"
4521
  msgstr "Лихтенштейн"
4522
 
4523
  # Lithuania
4524
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4525
  msgid "c-lt"
4526
  msgstr "Литва"
4527
 
4528
  # Luxembourg
4529
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4530
  msgid "c-lu"
4531
  msgstr "Люксембург"
4532
 
4533
  # The Former Yugoslav Republic of Macedonia
4534
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4535
  msgid "c-mk"
4536
  msgstr "Республика Македония"
4537
 
4538
  # Madagascar
4539
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4540
  msgid "c-mg"
4541
  msgstr "Мадагаскар"
4542
 
4543
  # Malawi
4544
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4545
  msgid "c-mw"
4546
  msgstr "Малави"
4547
 
4548
  # Malaysia
4549
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4550
  msgid "c-my"
4551
  msgstr "Малайзия"
4552
 
4553
  # Mali
4554
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4555
  msgid "c-ml"
4556
  msgstr "Мали"
4557
 
4558
  # Malta
4559
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4560
  msgid "c-mt"
4561
  msgstr "Мальта"
4562
 
4563
  # Martinique
4564
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4565
  msgid "c-mq"
4566
  msgstr "Мартиника"
4567
 
4568
  # Mauritania
4569
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4570
  msgid "c-mr"
4571
  msgstr "Мавритания"
4572
 
4573
  # Mauritius
4574
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4575
  msgid "c-mu"
4576
  msgstr "Маврикий"
4577
 
4578
  # Mexico
4579
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4580
  msgid "c-mx"
4581
  msgstr "Мексика"
4582
 
4583
  # Moldova
4584
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4585
  msgid "c-md"
4586
  msgstr "Молдавия"
4587
 
4588
  # Mongolia
4589
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4590
  msgid "c-mn"
4591
  msgstr "Монголия"
4592
 
4593
  # Montenegro
4594
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4595
  msgid "c-me"
4596
  msgstr "Черногория"
4597
 
4598
  # Montserrat
4599
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4600
  msgid "c-ms"
4601
  msgstr "Монтсеррат"
4602
 
4603
  # Morocco
4604
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4605
  msgid "c-ma"
4606
  msgstr "Марокко"
4607
 
4608
  # Mozambique
4609
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4610
  msgid "c-mz"
4611
  msgstr "Мозамбик"
4612
 
4613
  # Myanmar
4614
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4615
  msgid "c-mm"
4616
  msgstr "Мьянма"
4617
 
4618
  # Namibia
4619
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4620
  msgid "c-na"
4621
  msgstr "Намибия"
4622
 
4623
  # Nepal
4624
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4625
  msgid "c-np"
4626
  msgstr "Непал"
4627
 
4628
  # Netherlands
4629
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4630
  msgid "c-nl"
4631
  msgstr "Нидерланды"
4632
 
4633
  # New Caledonia
4634
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4635
  msgid "c-nc"
4636
  msgstr "Новая Каледония"
4637
 
4638
  # New Zealand
4639
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4640
  msgid "c-nz"
4641
  msgstr "Новая Зеландия"
4642
 
4643
  # Nicaragua
4644
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4645
  msgid "c-ni"
4646
  msgstr "Никарагуа"
4647
 
4648
  # Niger
4649
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4650
  msgid "c-ne"
4651
  msgstr "Нигер"
4652
 
4653
  # Nigeria
4654
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4655
  msgid "c-ng"
4656
  msgstr "Нигерия"
4657
 
4658
  # Norway
4659
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4660
  msgid "c-no"
4661
  msgstr "Норвегия"
4662
 
4663
  # Oman
4664
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4665
  msgid "c-om"
4666
  msgstr "Оман"
4667
 
4668
  # Pakistan
4669
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4670
  msgid "c-pk"
4671
  msgstr "Пакистан"
4672
 
4673
  # Palau
4674
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4675
  msgid "c-pw"
4676
  msgstr "Палау"
4677
 
4678
  # Occupied Palestinian Territory
4679
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4680
  msgid "c-ps"
4681
  msgstr "Палестинская автономия"
4682
 
4683
  # Panama
4684
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4685
  msgid "c-pa"
4686
  msgstr "Панама"
4687
 
4688
  # Papua New Guinea
4689
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4690
  msgid "c-pg"
4691
  msgstr "Папуа - Новая Гвинея"
4692
 
4693
  # Paraguay
4694
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4695
  msgid "c-py"
4696
  msgstr "Парагвай"
4697
 
4698
  # Peru
4699
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4700
  msgid "c-pe"
4701
  msgstr "Перу"
4702
 
4703
  # Philippines
4704
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4705
  msgid "c-ph"
4706
  msgstr "Филиппины"
4707
 
4708
  # Poland
4709
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4710
  msgid "c-pl"
4711
  msgstr "Польша"
4712
 
4713
  # Portugal
4714
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4715
  msgid "c-pt"
4716
  msgstr "Португалия"
4717
 
4718
  # Puerto Rico
4719
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4720
  msgid "c-pr"
4721
  msgstr "Пуэрто-Рико"
4722
 
4723
  # Qatar
4724
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4725
  msgid "c-qa"
4726
  msgstr "Катар"
4727
 
4728
  # Réunion
4729
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4730
  msgid "c-re"
4731
  msgstr "Реюньон"
4732
 
4733
  # Romania
4734
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4735
  msgid "c-ro"
4736
  msgstr "Румыния"
4737
 
4738
  # Russian Federation
4739
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4740
  msgid "c-ru"
4741
  msgstr "Россия"
4742
 
4743
  # Rwanda
4744
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4745
  msgid "c-rw"
4746
  msgstr "Руанда"
4747
 
4748
  # Saint Kitts and Nevis
4749
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4750
  msgid "c-kn"
4751
  msgstr "Сент-Китс и Невис"
4752
 
4753
  # Saint Lucia
4754
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4755
  msgid "c-lc"
4756
  msgstr "Сент-Люсия"
4757
 
4758
  # Saint Martin
4759
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4760
  msgid "c-mf"
4761
  msgstr "Сен-Мартен"
4762
 
4763
  # Saint Vincent and the Grenadines
4764
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4765
  msgid "c-vc"
4766
  msgstr "Сент-Винсент и Гренадины"
4767
 
4768
  # Samoa
4769
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4770
  msgid "c-ws"
4771
  msgstr "Самоа"
4772
 
4773
  # Sao Tome and Principe
4774
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4775
  msgid "c-st"
4776
  msgstr "Сан-Томе и Принсипи"
4777
 
4778
  # Saudi Arabia
4779
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4780
  msgid "c-sa"
4781
  msgstr "Саудовская Аравия"
4782
 
4783
  # Senegal
4784
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4785
  msgid "c-sn"
4786
  msgstr "Сенегал"
4787
 
4788
  # Serbia
4789
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4790
  msgid "c-rs"
4791
  msgstr "Сербия"
4792
 
4793
  # Sierra Leone
4794
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4795
  msgid "c-sl"
4796
  msgstr "Сьерра-Леоне"
4797
 
4798
  # Singapore
4799
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4800
  msgid "c-sg"
4801
  msgstr "Сингапур"
4802
 
4803
  # Slovakia
4804
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4805
  msgid "c-sk"
4806
  msgstr "Словакия"
4807
 
4808
  # Slovenia
4809
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4810
  msgid "c-si"
4811
  msgstr "Словения"
4812
 
4813
  # Solomon Islands
4814
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4815
  msgid "c-sb"
4816
  msgstr "Соломоновы Острова"
4817
 
4818
  # Somalia
4819
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4820
  msgid "c-so"
4821
  msgstr "Сомали"
4822
 
4823
  # South Africa
4824
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4825
  msgid "c-za"
4826
  msgstr "ЮАР"
4827
 
4828
  # South Georgia and the South Sandwich Islands
4829
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4830
  msgid "c-gs"
4831
  msgstr "Южная Георгия и Южные Сандвичевы острова"
4832
 
4833
  # Spain
4834
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4835
  msgid "c-es"
4836
  msgstr "Испания"
4837
 
4838
  # Sri Lanka
4839
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4840
  msgid "c-lk"
4841
  msgstr "Шри-Ланка"
4842
 
4843
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4844
+ msgid "c-sc"
4845
+ msgstr "Seychelles"
4846
+
4847
  # Sudan
4848
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4849
  msgid "c-sd"
4850
  msgstr "Судан"
4851
 
4852
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4853
  msgid "c-ss"
4854
  msgstr "Южный Судан"
4855
 
4856
  # Suriname
4857
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4858
  msgid "c-sr"
4859
  msgstr "Суринам"
4860
 
4861
  # Svalbard and Jan Mayen
4862
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4863
  msgid "c-sj"
4864
  msgstr "Шпицберген и Ян-Майен"
4865
 
4866
  # Swaziland
4867
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4868
  msgid "c-sz"
4869
  msgstr "Свазиленд"
4870
 
4871
  # Sweden
4872
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4873
  msgid "c-se"
4874
  msgstr "Швеция"
4875
 
4876
  # Switzerland
4877
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4878
  msgid "c-ch"
4879
  msgstr "Швейцария"
4880
 
4881
  # Syrian Arab Republic
4882
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4883
  msgid "c-sy"
4884
  msgstr "Сирия"
4885
 
4886
  # Taiwan, Province of China
4887
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4888
  msgid "c-tw"
4889
  msgstr "Тайвань"
4890
 
4891
  # Tajikistan
4892
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4893
  msgid "c-tj"
4894
  msgstr "Таджикистан"
4895
 
4896
  # United Republic of Tanzania
4897
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4898
  msgid "c-tz"
4899
  msgstr "Танзания"
4900
 
4901
  # Thailand
4902
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4903
  msgid "c-th"
4904
  msgstr "Таиланд"
4905
 
4906
  # Timor-Leste
4907
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4908
  msgid "c-tl"
4909
  msgstr "Восточный Тимор"
4910
 
4911
  # Togo
4912
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4913
  msgid "c-tg"
4914
  msgstr "Того"
4915
 
4916
  # Tonga
4917
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4918
  msgid "c-to"
4919
  msgstr "Тонга"
4920
 
4921
  # Trinidad and Tobago
4922
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4923
  msgid "c-tt"
4924
  msgstr "Тринидад и Тобаго"
4925
 
4926
  # Tunisia
4927
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4928
  msgid "c-tn"
4929
  msgstr "Тунис"
4930
 
4931
  # Turkey
4932
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4933
  msgid "c-tr"
4934
  msgstr "Турция"
4935
 
4936
  # Turkmenistan
4937
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4938
  msgid "c-tm"
4939
  msgstr "Туркменистан"
4940
 
4941
  # Turks and Caicos Islands
4942
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4943
  msgid "c-tc"
4944
  msgstr "Теркс и Кайкос"
4945
 
4946
  # Uganda
4947
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4948
  msgid "c-ug"
4949
  msgstr "Уганда"
4950
 
4951
  # Ukraine
4952
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4953
  msgid "c-ua"
4954
  msgstr "Украина"
4955
 
4956
  # United Arab Emirates
4957
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4958
  msgid "c-ae"
4959
  msgstr "ОАЭ"
4960
 
4961
  # United Kingdom
4962
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4963
  msgid "c-gb"
4964
  msgstr "Великобритания"
4965
 
4966
  # United States
4967
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4968
  msgid "c-us"
4969
  msgstr "США"
4970
 
4971
  # Uruguay
4972
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4973
  msgid "c-uy"
4974
  msgstr "Уругвай"
4975
 
4976
  # Uzbekistan
4977
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4978
  msgid "c-uz"
4979
  msgstr "Узбекистан"
4980
 
4981
  # Vanuatu
4982
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4983
  msgid "c-vu"
4984
  msgstr "Вануату"
4985
 
4986
  # Venezuela
4987
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4988
  msgid "c-ve"
4989
  msgstr "Венесуэла"
4990
 
4991
  # Viet Nam
4992
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4993
  msgid "c-vn"
4994
  msgstr "Вьетнам"
4995
 
4996
  # British Virgin Islands
4997
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4998
  msgid "c-vg"
4999
  msgstr "Британские Виргинские острова"
5000
 
5001
  # U.S. Virgin Islands
5002
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5003
  msgid "c-vi"
5004
  msgstr "Виргинские Острова"
5005
 
5006
  # Western Sahara
5007
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5008
  msgid "c-eh"
5009
  msgstr "Западная Сахара"
5010
 
5011
  # Yemen
5012
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5013
  msgid "c-ye"
5014
  msgstr "Йемен"
5015
 
5016
  # Zambia
5017
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5018
  msgid "c-zm"
5019
  msgstr "Замбия"
5020
 
5021
  # Zimbabwe
5022
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5023
  msgid "c-zw"
5024
  msgstr "Зимбабве"
5025
 
5026
  # Guernsey
5027
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5028
  msgid "c-gg"
5029
  msgstr "Гернси"
5030
 
5031
  # Jersey
5032
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5033
  msgid "c-je"
5034
  msgstr "Джерси"
5035
 
5036
  # Isle of Man
5037
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5038
  msgid "c-im"
5039
  msgstr "Остров Мэн"
5040
 
5041
  # Maldives
5042
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5043
  msgid "c-mv"
5044
  msgstr "Мальдивы"
5045
 
5046
+ #: ../../admin/view/wp-slimstat-reports.php:1024
5047
  msgid "c-eu"
5048
  msgstr "Евросоюз"
5049
 
5050
+ #: ../../admin/view/wp-slimstat-reports.php:1113
5051
  msgid ""
5052
  "This value includes not only posts, but also custom post types, regardless "
5053
  "of their status"
5055
  "Эта величина включает в себя не только записи, но и пользовательские типы "
5056
  "этих записей, независимо от их статуса"
5057
 
5058
+ #: ../../admin/view/wp-slimstat-reports.php:1114
5059
  msgid "Content Items"
5060
  msgstr "Содержимое сайта"
5061
 
5062
+ #: ../../admin/view/wp-slimstat-reports.php:1115
5063
  msgid "Total Comments"
5064
  msgstr "Всего комментариев"
5065
 
5066
+ #: ../../admin/view/wp-slimstat-reports.php:1116
5067
  msgid "Pingbacks"
5068
  msgstr "Пингбэки"
5069
 
5070
+ #: ../../admin/view/wp-slimstat-reports.php:1117
5071
  msgid "Trackbacks"
5072
  msgstr "Трэкбэки"
5073
 
5074
+ #: ../../admin/view/wp-slimstat-reports.php:1118
5075
  msgid "Longest Post (ID)"
5076
  msgstr "Самая длинная запись (ID)"
5077
 
5078
+ #: ../../admin/view/wp-slimstat-reports.php:1119
5079
  msgid "Longest Comment (ID)"
5080
  msgstr "Самый длинный комментарий (ID)"
5081
 
5082
+ #: ../../admin/view/wp-slimstat-reports.php:1120
5083
  msgid "Avg Comments Per Post"
5084
  msgstr "В среднем комментариев за запись"
5085
 
5086
+ #: ../../admin/view/wp-slimstat-reports.php:1121
5087
  msgid "Avg Posts Per Day"
5088
  msgstr "В среднем сообщений за день"
5089
 
5090
+ #: ../../admin/view/wp-slimstat-reports.php:1149
5091
  msgid "Visits"
5092
  msgstr "Посещения"
5093
 
5094
+ #: ../../admin/view/wp-slimstat-reports.php:1153
5095
  msgid "Domains"
5096
  msgstr "Домены"
5097
 
5098
+ #: ../../admin/view/wp-slimstat-reports.php:1158
5099
+ msgid "Avg Pageviews"
5100
+ msgstr "Среднее кол-во просмотров"
5101
+
5102
+ #~ msgid "Chart Annotations"
5103
+ #~ msgstr "Примечания диаграммы"
5104
+
5105
+ #~ msgid ""
5106
+ #~ "Add <em>markings</em> to each chart by specifying a date and its "
5107
+ #~ "description in the field below. Useful to keep track of special events "
5108
+ #~ "and correlate them to your analytics. Please use the following format:"
5109
+ #~ "<code>YYYY MM DD HH:mm=Description 1,YYYY MM DD HH:mm=Description 2</"
5110
+ #~ "code>. For example: 2012 12 31 23:55=New Year's Eve."
5111
+ #~ msgstr ""
5112
+ #~ "Добавьте <em>маркировку</em> на каждую диаграмму, указав дату и ее "
5113
+ #~ "описание в поле ниже. Это будет полезным для отслеживания специальных "
5114
+ #~ "мероприятий и соотносить их с веб-аналитикой. Пожалуйста, используйте "
5115
+ #~ "следующий формат: <code>ГГГГ ММ ДД ЧЧ:мм=Описание 1, YYYY MM DD HH:"
5116
+ #~ "мм=Описание 2</code>. Например: 2013 12 31 23:55 = Канун Нового Года."
5117
+
5118
  #~ msgid "Stats"
5119
  #~ msgstr "Статистика"
5120
 
admin/lang/wp-slimstat-sv_SE.mo CHANGED
Binary file
admin/lang/wp-slimstat-sv_SE.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Slim Stat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-12-30 15:07-0500\n"
6
- "PO-Revision-Date: 2013-12-30 22:38-0500\n"
7
- "Last-Translator: get used to it <support@getused.to.it>\n"
8
  "Language-Team: Per Soderman <per.soderman@gmail.com>\n"
9
  "Language: sv_SE\n"
10
  "MIME-Version: 1.0\n"
@@ -13,109 +13,113 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: plurals=2; plural=1 != 1;\n"
16
- "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: ../..\n"
18
 
19
  # @ wp-slimstat-options
20
  # @ wp-slimstat-view
21
- #: ../../wp-slimstat.php:1175 ../../admin/wp-slimstat-admin.php:396
22
- #: ../../admin/view/wp-slimstat-reports.php:32
23
  msgid "Right Now"
24
  msgstr "Aktuella"
25
 
26
  # @ wp-slimstat-view
27
- #: ../../wp-slimstat.php:1176 ../../admin/wp-slimstat-admin.php:397
28
- #: ../../admin/wp-slimstat-admin.php:414
29
- #: ../../admin/view/wp-slimstat-reports.php:33
30
  msgid "Overview"
31
  msgstr "Överblick"
32
 
33
- #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:398
34
- #: ../../admin/wp-slimstat-admin.php:415
35
- #: ../../admin/view/wp-slimstat-reports.php:34
36
  msgid "Visitors"
37
  msgstr "Besökare"
38
 
39
- #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:399
40
- #: ../../admin/wp-slimstat-admin.php:416
41
- #: ../../admin/view/wp-slimstat-reports.php:35
42
  msgid "Content"
43
  msgstr "Innehåll"
44
 
45
- #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:400
46
- #: ../../admin/wp-slimstat-admin.php:417 ../../admin/view/index.php:160
47
- #: ../../admin/view/wp-slimstat-reports.php:36
48
  msgid "Traffic Sources"
49
  msgstr "Trafikkällor"
50
 
51
- #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:401
52
- #: ../../admin/wp-slimstat-admin.php:418
53
- #: ../../admin/view/wp-slimstat-reports.php:37
54
- #: ../../admin/view/wp-slimstat-reports.php:142
55
  msgid "World Map"
56
  msgstr "Världskarta"
57
 
58
- #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:402
59
- #: ../../admin/wp-slimstat-admin.php:419
60
- #: ../../admin/view/wp-slimstat-reports.php:38
61
  msgid "Custom Reports"
62
  msgstr "Anpassade Rapporter"
63
 
64
- #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:403
65
- #: ../../admin/wp-slimstat-admin.php:420 ../../admin/config/addons.php:29
66
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:228
67
  msgid "Add-ons"
68
  msgstr "Tillägg "
69
 
70
- #: ../../wp-slimstat.php:1185 ../../admin/wp-slimstat-admin.php:449
71
- #: ../../admin/wp-slimstat-admin.php:452 ../../admin/wp-slimstat-admin.php:496
72
- #: ../../admin/wp-slimstat-admin.php:499 ../../admin/config/index.php:14
73
- #: ../../admin/config/index.php:134
74
  msgid "Settings"
75
  msgstr "Inställningar"
76
 
77
  # @ wp-slimstat-view
78
- #: ../../admin/wp-slimstat-admin.php:395 ../../admin/wp-slimstat-admin.php:407
79
- #: ../../admin/wp-slimstat-admin.php:410
80
  msgid "SlimStat"
81
  msgstr "SlimStat"
82
 
83
- #: ../../admin/wp-slimstat-admin.php:513
84
  msgid "Pageviews in the last 365 days"
85
  msgstr ""
86
 
87
  # @ wp-slimstat-view
88
- #: ../../admin/wp-slimstat-admin.php:537
89
  msgid "Show on screen"
90
  msgstr "Visa på skärm"
91
 
 
 
 
 
92
  # @ wp-slimstat-options
93
- #: ../../admin/wp-slimstat-admin.php:584
94
  msgid "There was an error updating the following options:"
95
  msgstr "Ett fel uppstod vid uppdateringen av följande alternativ:"
96
 
97
  # @ wp-slimstat-options
98
- #: ../../admin/wp-slimstat-admin.php:587
99
  msgid "Your settings have been successfully updated."
100
  msgstr "Dina inställningar har framgångsrikt uppdaterats"
101
 
102
  # @ default
103
- #: ../../admin/wp-slimstat-admin.php:610
104
  msgid "Save Changes"
105
  msgstr "Spara ändringar"
106
 
107
  # @ wp-slimstat-options
108
- #: ../../admin/wp-slimstat-admin.php:629
109
  msgid "Yes"
110
  msgstr "Ja"
111
 
112
- #: ../../admin/wp-slimstat-admin.php:630
113
- #: ../../admin/view/wp-slimstat-reports.php:654
114
  msgid "No"
115
  msgstr "Nej"
116
 
117
  # @ wp-slimstat-view
118
- #: ../../admin/wp-slimstat-admin.php:670
119
  msgid ""
120
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
121
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
@@ -128,17 +132,17 @@ msgstr ""
128
  "\">checka FAQs</a> för mer information."
129
 
130
  # @ wp-slimstat-view
131
- #: ../../admin/wp-slimstat-admin.php:690
132
  msgid "Definitions"
133
  msgstr "Definitioner"
134
 
135
  # @ wp-slimstat-view
136
- #: ../../admin/wp-slimstat-admin.php:693
137
  msgid "Pageview"
138
  msgstr "Sidvisning"
139
 
140
  # @ wp-slimstat-view
141
- #: ../../admin/wp-slimstat-admin.php:693
142
  msgid ""
143
  "A request to load a single HTML file (\"page\"). This should be contrasted "
144
  "with a \"hit\", which refers to a request for any file from a web server. WP "
@@ -149,12 +153,12 @@ msgstr ""
149
  "SlimStat loggar en sidvisning varje gång en spårkod körs "
150
 
151
  # @ wp-slimstat-view
152
- #: ../../admin/wp-slimstat-admin.php:694
153
  msgid "(Human) Visit"
154
  msgstr "(Mänskliga) besök"
155
 
156
  # @ wp-slimstat-view
157
- #: ../../admin/wp-slimstat-admin.php:694
158
  msgid ""
159
  "A period of interaction between a visitor's browser and your website, ending "
160
  "when the browser is closed or when the user has been inactive on that site "
@@ -165,13 +169,13 @@ msgstr ""
165
  "denna plats i 30 minuter"
166
 
167
  # @ wp-slimstat-view
168
- #: ../../admin/wp-slimstat-admin.php:695 ../../admin/view/index.php:132
169
- #: ../../admin/view/right-now.php:148
170
  msgid "Known Visitor"
171
  msgstr "Känd besökare"
172
 
173
  # @ wp-slimstat-view
174
- #: ../../admin/wp-slimstat-admin.php:695
175
  msgid ""
176
  "Any user who has left a comment on your blog, and is thus identified by "
177
  "Wordpress as a returning visitor"
@@ -180,12 +184,12 @@ msgstr ""
180
  "identifierad av Wordpress som återkommande besökare"
181
 
182
  # @ wp-slimstat-view
183
- #: ../../admin/wp-slimstat-admin.php:696
184
  msgid "Unique IP"
185
  msgstr "Unik IP"
186
 
187
  # @ wp-slimstat-view
188
- #: ../../admin/wp-slimstat-admin.php:696
189
  msgid ""
190
  "Used to differentiate between multiple requests to download a file from one "
191
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -198,14 +202,13 @@ msgstr ""
198
  "sidvisning kom från, det är bra, men inte perfekt"
199
 
200
  # @ wp-slimstat-view
201
- #: ../../admin/wp-slimstat-admin.php:697 ../../admin/wp-slimstat-admin.php:739
202
- #: ../../admin/view/right-now.php:98
203
- #: ../../admin/view/wp-slimstat-reports.php:64
204
  msgid "Originating IP"
205
  msgstr "Ursprungs IP"
206
 
207
  # @ wp-slimstat-view
208
- #: ../../admin/wp-slimstat-admin.php:697
209
  msgid ""
210
  "the originating IP address of a client connecting to a web server through an "
211
  "HTTP proxy or load balancer"
@@ -214,12 +217,12 @@ msgstr ""
214
  "eller balanserad laddning"
215
 
216
  # @ wp-slimstat-view
217
- #: ../../admin/wp-slimstat-admin.php:698
218
  msgid "Direct Traffic"
219
  msgstr "Direkt Trafik"
220
 
221
  # @ wp-slimstat-view
222
- #: ../../admin/wp-slimstat-admin.php:698
223
  msgid ""
224
  "All those people showing up to your Web site by typing in the URL of your "
225
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -230,12 +233,12 @@ msgstr ""
230
  "detta \\ \\\"standard trafik\" eller \\ \\\"omgivande trafik\" "
231
 
232
  # @ wp-slimstat-view
233
- #: ../../admin/wp-slimstat-admin.php:699
234
  msgid "Search Engine"
235
  msgstr "Sökmotor"
236
 
237
  # @ wp-slimstat-view
238
- #: ../../admin/wp-slimstat-admin.php:699
239
  msgid ""
240
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
241
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -246,26 +249,25 @@ msgstr ""
246
 
247
  # @ wp-slimstat-options
248
  # @ wp-slimstat-view
249
- #: ../../admin/wp-slimstat-admin.php:700 ../../admin/wp-slimstat-admin.php:716
250
- #: ../../admin/view/right-now.php:127
251
- #: ../../admin/view/wp-slimstat-reports.php:45
252
  msgid "Search Terms"
253
  msgstr "Söktermer"
254
 
255
  # @ wp-slimstat-view
256
- #: ../../admin/wp-slimstat-admin.php:700 ../../admin/wp-slimstat-admin.php:716
257
  msgid "Keywords used by your visitors to find your website on a search engine"
258
  msgstr ""
259
  "Nyckelord som dina besökare använder för att hitta din webbplats på en "
260
  "sökmotor"
261
 
262
  # @ wp-slimstat-view
263
- #: ../../admin/wp-slimstat-admin.php:701
264
  msgid "SERP"
265
  msgstr "SERP"
266
 
267
  # @ wp-slimstat-view
268
- #: ../../admin/wp-slimstat-admin.php:701
269
  msgid ""
270
  "Short for search engine results page, the Web page that a search engine "
271
  "returns with the results of its search. The value shown represents your rank "
@@ -276,13 +278,13 @@ msgstr ""
276
  "position) i den förteckning av resultat"
277
 
278
  # @ wp-slimstat-view
279
- #: ../../admin/wp-slimstat-admin.php:702
280
- #: ../../admin/view/wp-slimstat-reports.php:57
281
  msgid "User Agent"
282
  msgstr "User Agent"
283
 
284
  # @ wp-slimstat-view
285
- #: ../../admin/wp-slimstat-admin.php:702
286
  msgid ""
287
  "Any program used for accessing a website; this includes browsers, robots, "
288
  "spiders and any other program that was used to retrieve information from the "
@@ -293,13 +295,13 @@ msgstr ""
293
  "att hämta information från sajten"
294
 
295
  # @ wp-slimstat-view
296
- #: ../../admin/wp-slimstat-admin.php:703
297
- #: ../../admin/view/wp-slimstat-reports.php:61
298
  msgid "Outbound Link"
299
  msgstr "Utgående Länk"
300
 
301
  # @ wp-slimstat-view
302
- #: ../../admin/wp-slimstat-admin.php:703
303
  msgid ""
304
  "A link from one domain to another is said to be outbound from its source "
305
  "anchor and inbound to its target. This report lists all the links to other "
@@ -310,51 +312,51 @@ msgstr ""
310
  "webbplatser följt av dina besökare. "
311
 
312
  # @ wp-slimstat-view
313
- #: ../../admin/wp-slimstat-admin.php:710
314
  msgid "Basic Filters"
315
  msgstr "Grundläggande filter"
316
 
317
- #: ../../admin/wp-slimstat-admin.php:713
318
- #: ../../admin/view/wp-slimstat-reports.php:42
319
  msgid "Browser"
320
  msgstr "Webbläsare"
321
 
322
  # @ wp-slimstat-view
323
- #: ../../admin/wp-slimstat-admin.php:713
324
  msgid "User agent (Firefox, Chrome, ...)"
325
  msgstr "User agent (Firefox, Chrome, ...)"
326
 
327
  # @ wp-slimstat-options
328
  # @ wp-slimstat-view
329
- #: ../../admin/wp-slimstat-admin.php:714
330
- #: ../../admin/view/wp-slimstat-reports.php:43
331
- #: ../../admin/view/wp-slimstat-reports.php:480
332
  msgid "Country Code"
333
  msgstr "Landskod"
334
 
335
  # @ wp-slimstat-view
336
- #: ../../admin/wp-slimstat-admin.php:714
337
  msgid "2-letter code (us, ru, de, it, ...)"
338
  msgstr "2-bokstavskod (us, ru, de, it, ...)"
339
 
340
- #: ../../admin/wp-slimstat-admin.php:715
341
  msgid "IP"
342
  msgstr "IP"
343
 
344
- #: ../../admin/wp-slimstat-admin.php:715
345
  msgid "Visitor's public IP address"
346
  msgstr "Besökares publika IP adress"
347
 
348
  # @ wp-slimstat-options
349
  # @ wp-slimstat-view
350
- #: ../../admin/wp-slimstat-admin.php:717
351
- #: ../../admin/view/wp-slimstat-reports.php:46
352
- #: ../../admin/view/wp-slimstat-reports.php:492
353
  msgid "Language Code"
354
  msgstr "Språkkod"
355
 
356
  # @ wp-slimstat-view
357
- #: ../../admin/wp-slimstat-admin.php:717
358
  msgid ""
359
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
360
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -365,13 +367,13 @@ msgstr ""
365
  "kolumnen) för mer information"
366
 
367
  # @ wp-slimstat-view
368
- #: ../../admin/wp-slimstat-admin.php:718
369
- #: ../../admin/view/wp-slimstat-reports.php:47
370
  msgid "Operating System"
371
  msgstr "Operativsystem"
372
 
373
  # @ wp-slimstat-view
374
- #: ../../admin/wp-slimstat-admin.php:718
375
  msgid ""
376
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
377
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -383,35 +385,35 @@ msgstr ""
383
 
384
  # @ wp-slimstat-options
385
  # @ wp-slimstat-view
386
- #: ../../admin/wp-slimstat-admin.php:719
387
- #: ../../admin/view/wp-slimstat-reports.php:48
388
  msgid "Permalink"
389
  msgstr "Permalänk"
390
 
391
  # @ wp-slimstat-view
392
- #: ../../admin/wp-slimstat-admin.php:719
393
  msgid "URL accessed on your site"
394
  msgstr "URL accessed på din webbplats"
395
 
396
  # @ wp-slimstat-view
397
- #: ../../admin/wp-slimstat-admin.php:720
398
- #: ../../admin/view/wp-slimstat-reports.php:50
399
  msgid "Referer"
400
  msgstr "Referera till"
401
 
402
  # @ wp-slimstat-view
403
- #: ../../admin/wp-slimstat-admin.php:720
404
  msgid "Complete address of the referrer page"
405
  msgstr "Fullständig adress till referrersida"
406
 
407
  # @ wp-slimstat-view
408
- #: ../../admin/wp-slimstat-admin.php:721
409
- #: ../../admin/view/wp-slimstat-reports.php:51
410
  msgid "Visitor's Name"
411
  msgstr "Besökares namn"
412
 
413
  # @ wp-slimstat-view
414
- #: ../../admin/wp-slimstat-admin.php:721
415
  msgid ""
416
  "Visitors' names according to the cookie set by Wordpress after they leave a "
417
  "comment"
@@ -419,28 +421,28 @@ msgstr ""
419
  "Besökarens namn enligt den cookie som Wordpress när de lämnar en kommentar"
420
 
421
  # @ wp-slimstat-view
422
- #: ../../admin/wp-slimstat-admin.php:729
423
  msgid "Advanced Filters"
424
  msgstr "Avancerat filter"
425
 
426
  # @ wp-slimstat-view
427
- #: ../../admin/wp-slimstat-admin.php:732
428
- #: ../../admin/view/wp-slimstat-reports.php:55
429
  msgid "Browser Version"
430
  msgstr "Webbläsarversion"
431
 
432
  # @ wp-slimstat-view
433
- #: ../../admin/wp-slimstat-admin.php:732
434
  msgid "user agent version (9.0, 11, ...)"
435
  msgstr "user agent version (9.0, 11, ...)"
436
 
437
- #: ../../admin/wp-slimstat-admin.php:733
438
- #: ../../admin/view/wp-slimstat-reports.php:56
439
  msgid "Browser Type"
440
  msgstr "Typ av Browser"
441
 
442
  # @ wp-slimstat-view
443
- #: ../../admin/wp-slimstat-admin.php:733
444
  msgid ""
445
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
446
  "all others"
@@ -449,37 +451,37 @@ msgstr ""
449
  "andra"
450
 
451
  # @ wp-slimstat-view
452
- #: ../../admin/wp-slimstat-admin.php:734
453
- #: ../../admin/view/wp-slimstat-reports.php:58
454
  msgid "Color Depth"
455
  msgstr "Färgdjup"
456
 
457
  # @ wp-slimstat-view
458
- #: ../../admin/wp-slimstat-admin.php:734
459
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
460
  msgstr "Besökarens skärm färgdjup (8, 16, 24, ...)"
461
 
462
  # @ wp-slimstat-view
463
- #: ../../admin/wp-slimstat-admin.php:735
464
- #: ../../admin/view/wp-slimstat-reports.php:59
465
  msgid "CSS Version"
466
  msgstr "CSS version"
467
 
468
  # @ wp-slimstat-view
469
- #: ../../admin/wp-slimstat-admin.php:735
470
  msgid ""
471
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
472
  "values)"
473
  msgstr "CSS-standard som stöds av browser (1, 2, 3 och andra heltal)"
474
 
475
  # @ wp-slimstat-view
476
- #: ../../admin/wp-slimstat-admin.php:736
477
- #: ../../admin/view/wp-slimstat-reports.php:60
478
  msgid "Pageview Attributes"
479
  msgstr "Sidvisnings attributer"
480
 
481
  # @ wp-slimstat-view
482
- #: ../../admin/wp-slimstat-admin.php:736
483
  msgid ""
484
  "this field is set to <em>[pre]</em> if the resource has been accessed "
485
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -490,41 +492,41 @@ msgstr ""
490
  "Link_prefetching_FAQ\">Link Prefetching</a> eller linknande tekniker"
491
 
492
  # @ wp-slimstat-view
493
- #: ../../admin/wp-slimstat-admin.php:737
494
- #: ../../admin/view/wp-slimstat-reports.php:62
495
  msgid "Post Author"
496
  msgstr "Postförfattare"
497
 
498
  # @ wp-slimstat-view
499
- #: ../../admin/wp-slimstat-admin.php:737
500
  msgid "author associated to that post/page when the resource was accessed"
501
  msgstr "författaren är associerad med den post/sida när resursen var accessad"
502
 
503
  # @ wp-slimstat-view
504
- #: ../../admin/wp-slimstat-admin.php:738
505
- #: ../../admin/view/wp-slimstat-reports.php:63
506
  msgid "Post Category ID"
507
  msgstr "Postkategori ID"
508
 
509
  # @ wp-slimstat-view
510
- #: ../../admin/wp-slimstat-admin.php:738
511
  msgid "ID of the category/term associated to the resource, when available"
512
  msgstr ""
513
  "ID-numret för den kategori/sikt kopplat till resursen, när tillgängliga"
514
 
515
  # @ wp-slimstat-view
516
- #: ../../admin/wp-slimstat-admin.php:739
517
  msgid "visitor's originating IP address, if available"
518
  msgstr "besökarens IP-adress, om tillgänglig "
519
 
520
  # @ wp-slimstat-view
521
- #: ../../admin/wp-slimstat-admin.php:740
522
- #: ../../admin/view/wp-slimstat-reports.php:65
523
  msgid "Resource Content Type"
524
  msgstr "Resurs innehållstyp"
525
 
526
  # @ wp-slimstat-view
527
- #: ../../admin/wp-slimstat-admin.php:740
528
  msgid ""
529
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
530
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -538,24 +540,24 @@ msgstr ""
538
  "Conditional_Tags\">Villkorliga taggar manual</a> för mer information "
539
 
540
  # @ wp-slimstat-view
541
- #: ../../admin/wp-slimstat-admin.php:741
542
- #: ../../admin/view/wp-slimstat-reports.php:67
543
  msgid "Screen Resolution"
544
  msgstr "Skärmupplösning"
545
 
546
  # @ wp-slimstat-view
547
- #: ../../admin/wp-slimstat-admin.php:741
548
  msgid "viewport width and height (1024x768, 800x600, ...)"
549
  msgstr "Upplösning bredd och höjd (1024x768, 800x600, ...)"
550
 
551
  # @ wp-slimstat-view
552
- #: ../../admin/wp-slimstat-admin.php:742
553
- #: ../../admin/view/wp-slimstat-reports.php:68
554
  msgid "Visit ID"
555
  msgstr "Besök ID"
556
 
557
  # @ wp-slimstat-view
558
- #: ../../admin/wp-slimstat-admin.php:742
559
  msgid ""
560
  "generally used in conjunction with <em>is not empty</em>, identifies human "
561
  "visitors"
@@ -564,12 +566,12 @@ msgstr ""
564
  "mänskliga besökare"
565
 
566
  # @ wp-slimstat-view
567
- #: ../../admin/wp-slimstat-admin.php:743
568
  msgid "Date Filters"
569
  msgstr "Datum Filter"
570
 
571
  # @ wp-slimstat-view
572
- #: ../../admin/wp-slimstat-admin.php:743
573
  msgid ""
574
  "you can specify the timeframe by entering a number in the <em>interval</em> "
575
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -579,18 +581,18 @@ msgstr ""
579
  "em>; använd -1 för att ange <em>till datum</em> (dvs dagen=1, månad=1 "
580
  "år=tomt intervall=-1 ställs ett år-till-datum filter)"
581
 
582
- #: ../../admin/wp-slimstat-admin.php:744
583
  msgid "SERP Position"
584
  msgstr "SERP Position"
585
 
586
- #: ../../admin/wp-slimstat-admin.php:744
587
  msgid ""
588
  "set the filter to Referer contains cd=N&, where N is the position you are "
589
  "looking for"
590
  msgstr ""
591
  "sätt filter till Referer innehåller cd=N&, där N är positionen du letar efter"
592
 
593
- #: ../../admin/wp-slimstat-admin.php:753
594
  msgid ""
595
  " And for keeping an eye on your visitors with <a href=\"http://slimstat."
596
  "getused.to.it/\">WP SlimStat</a>."
@@ -638,27 +640,27 @@ msgid "Description"
638
  msgstr "Beskrivning"
639
 
640
  # @ wp-slimstat-options
641
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:17
642
  msgid "General"
643
  msgstr "Allmänt"
644
 
645
  # @ wp-slimstat-options
646
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:43
647
  msgid "Views"
648
  msgstr "Översikt"
649
 
650
  # @ wp-slimstat-options
651
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:63
652
  msgid "Filters"
653
  msgstr "Filter"
654
 
655
  # @ wp-slimstat-options
656
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:127
657
  msgid "Permissions"
658
  msgstr "Behörigheter"
659
 
660
  # @ wp-slimstat-options
661
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:204
662
  msgid "Advanced"
663
  msgstr "Avancerad"
664
 
@@ -668,43 +670,43 @@ msgid "Maintenance"
668
  msgstr "Underhåll"
669
 
670
  # @ wp-slimstat-options
671
- #: ../../admin/config/index.php:19 ../../admin/config/index.php:206
672
  #, fuzzy
673
  msgid "Tracker"
674
  msgstr "Spåra användare"
675
 
676
  # @ wp-slimstat-options
677
- #: ../../admin/config/index.php:20
678
  #, fuzzy
679
  msgid "Enable Tracking"
680
  msgstr "Aktivera spårning"
681
 
682
- #: ../../admin/config/index.php:20
683
  msgid ""
684
  "Turn the tracker on or off, but keep the reports accessible (which you would "
685
  "not have, if you just disabled the plugin)."
686
  msgstr ""
687
 
688
  # @ wp-slimstat-view
689
- #: ../../admin/config/index.php:21
690
  #, fuzzy
691
  msgid "Monitor Admin Pages"
692
  msgstr "Till Adminpanelen"
693
 
694
  # @ wp-slimstat-options
695
- #: ../../admin/config/index.php:21
696
  #, fuzzy
697
  msgid "Enable this option to track your users' activity within the admin."
698
  msgstr ""
699
  "Aktivera det här alternativet om du vill att dina författare skall endast se "
700
  "statistik relaterad till sitt eget innehåll."
701
 
702
- #: ../../admin/config/index.php:22
703
  msgid "Enable Spy Mode"
704
  msgstr ""
705
 
706
  # @ wp-slimstat-options
707
- #: ../../admin/config/index.php:22
708
  #, fuzzy
709
  msgid ""
710
  "Collect information about screen resolutions, outbound links, downloads, "
@@ -717,13 +719,13 @@ msgstr ""
717
  "sätter för detta val."
718
 
719
  # @ wp-slimstat-view
720
- #: ../../admin/config/index.php:23
721
  #, fuzzy
722
  msgid "Tracking Mode"
723
  msgstr "Spårning Aktiv"
724
 
725
  # @ wp-slimstat-options
726
- #: ../../admin/config/index.php:23
727
  #, fuzzy
728
  msgid ""
729
  "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
@@ -740,25 +742,25 @@ msgstr ""
740
 
741
  # @ wp-slimstat-options
742
  # @ wp-slimstat-view
743
- #: ../../admin/config/index.php:23
744
  #, fuzzy
745
  msgid "Javascript"
746
  msgstr "Javascript-läge"
747
 
748
- #: ../../admin/config/index.php:23
749
  msgid "Server-side"
750
  msgstr ""
751
 
752
- #: ../../admin/config/index.php:25
753
  msgid "WordPress Integration"
754
  msgstr ""
755
 
756
- #: ../../admin/config/index.php:26
757
  msgid "Menu Position"
758
  msgstr "Meny Position"
759
 
760
  # @ wp-slimstat-options
761
- #: ../../admin/config/index.php:26
762
  #, fuzzy
763
  msgid ""
764
  "Choose between a standalone admin menu for WP SlimStat or a drop down in the "
@@ -766,22 +768,22 @@ msgid ""
766
  msgstr ""
767
  "Avgör om du vill ha en fristående admin-meny för WP Slimstat eller inte."
768
 
769
- #: ../../admin/config/index.php:26
770
  msgid "Side Menu"
771
  msgstr "Sido Meny"
772
 
773
- #: ../../admin/config/index.php:26
774
  msgid "Admin Bar"
775
  msgstr "Admin Bar"
776
 
777
  # @ wp-slimstat-options
778
- #: ../../admin/config/index.php:27
779
  #, fuzzy
780
  msgid "Add Stats to Posts"
781
  msgstr "Lägg till kolumn för poster"
782
 
783
  # @ wp-slimstat-options
784
- #: ../../admin/config/index.php:27
785
  #, fuzzy
786
  msgid ""
787
  "Add a new column to the Edit Posts screen, with the number of hits per post."
@@ -789,15 +791,15 @@ msgstr ""
789
  "Lägger till en ny kolumn till Redigera Poster, med antal träffar per post "
790
  "(kan påverka sidåtergivningen)."
791
 
792
- #: ../../admin/config/index.php:29
793
  msgid "Database"
794
  msgstr ""
795
 
796
- #: ../../admin/config/index.php:30
797
  msgid "Retain data for"
798
  msgstr ""
799
 
800
- #: ../../admin/config/index.php:30
801
  msgid ""
802
  "Delete log entries older than the number of days specified here above. Enter "
803
  "<strong>0</strong> (number zero) if you want to preserve your data "
@@ -805,46 +807,46 @@ msgid ""
805
  msgstr ""
806
 
807
  # @ wp-slimstat-options
808
- #: ../../admin/config/index.php:30
809
  msgid "Next clean-up on"
810
  msgstr "Nästa rensning på"
811
 
812
  # @ wp-slimstat-view
813
- #: ../../admin/config/index.php:30
814
  #, fuzzy, php-format
815
  msgid "Entries logged on or before %s will be permanently deleted."
816
  msgstr "Poster registrerade på eller innan %s kommer att tas bort permanent. "
817
 
818
  # @ wp-slimstat-options
819
  # @ wp-slimstat-view
820
- #: ../../admin/config/index.php:30 ../../admin/view/index.php:76
821
- #: ../../admin/view/wp-slimstat-reports.php:75
822
- #: ../../admin/view/wp-slimstat-reports.php:654
823
  msgid "days"
824
  msgstr "Dagar"
825
 
826
  # @ wp-slimstat-options
827
- #: ../../admin/config/index.php:45
828
  #, fuzzy
829
  msgid "Data and Formats"
830
  msgstr "Databasinformation"
831
 
832
  # @ wp-slimstat-options
833
- #: ../../admin/config/index.php:46
834
  msgid "Convert IP Addresses"
835
  msgstr "Konvertera IP-adresser"
836
 
837
- #: ../../admin/config/index.php:46
838
  msgid "Display provider names instead of IP addresses."
839
  msgstr ""
840
 
841
  # @ wp-slimstat-options
842
- #: ../../admin/config/index.php:47
843
  msgid "Number Format"
844
  msgstr "Numeriskt format"
845
 
846
  # @ wp-slimstat-options
847
- #: ../../admin/config/index.php:47
848
  #, fuzzy
849
  msgid ""
850
  "Choose the number format you want to use for your reports, European or "
@@ -852,11 +854,11 @@ msgid ""
852
  msgstr ""
853
  "Välj vilken nummerformat du vill använda, Europeiska eller Amerikanska."
854
 
855
- #: ../../admin/config/index.php:48
856
  msgid "Show Display Name"
857
  msgstr "Visa smeknamnetnamnet"
858
 
859
- #: ../../admin/config/index.php:48
860
  #, fuzzy
861
  msgid ""
862
  "By default, users are listed by their usernames. Use this option to "
@@ -866,11 +868,11 @@ msgstr ""
866
  "alternativ för att växla till sina visningsnamn istället."
867
 
868
  # @ wp-slimstat-view
869
- #: ../../admin/config/index.php:49
870
  msgid "Show User Agent"
871
  msgstr " Visa användar Agent"
872
 
873
- #: ../../admin/config/index.php:49
874
  msgid ""
875
  "Choose if you want to see the browser name or a complete user agent string "
876
  "when hovering on browser icons."
@@ -878,27 +880,27 @@ msgstr ""
878
  "Välj om du vill se webbläsarens namn eller en komplett user agent string när "
879
  "surfar på webbläsars ikoner."
880
 
881
- #: ../../admin/config/index.php:50
882
  msgid "Show Titles"
883
  msgstr ""
884
 
885
- #: ../../admin/config/index.php:50
886
  msgid ""
887
  "WP SlimStat converts your permalinks into post and page titles. Disable this "
888
  "feature if you need to see the URL in your reports."
889
  msgstr ""
890
 
891
- #: ../../admin/config/index.php:52
892
  msgid "Functionality"
893
  msgstr ""
894
 
895
  # @ wp-slimstat-options
896
- #: ../../admin/config/index.php:53
897
  msgid "Asynchronous Views"
898
  msgstr "Asynkron visning"
899
 
900
  # @ wp-slimstat-options
901
- #: ../../admin/config/index.php:53
902
  #, fuzzy
903
  msgid ""
904
  "Load all the reports dynamically. It makes the reports render faster, but it "
@@ -908,37 +910,37 @@ msgstr ""
908
  "visas upp snabbare, men det ökar belastningen på din server."
909
 
910
  # @ wp-slimstat-view
911
- #: ../../admin/config/index.php:54
912
  msgid "Expand Details"
913
  msgstr "Expandera Detaljer"
914
 
915
- #: ../../admin/config/index.php:54
916
  msgid "Expand each row's details by default, insted of on mousehover."
917
  msgstr "Expandera varje rads detaljer som default istället för mousehover"
918
 
919
  # @ wp-slimstat-view
920
- #: ../../admin/config/index.php:55 ../../admin/config/index.php:59
921
  #, fuzzy
922
  msgid "Rows to Display"
923
  msgstr "Inget data att visa"
924
 
925
- #: ../../admin/config/index.php:55
926
  msgid "Specify the number of items in each report."
927
  msgstr ""
928
 
929
  # @ wp-slimstat-options
930
  # @ wp-slimstat-view
931
- #: ../../admin/config/index.php:57
932
  #, fuzzy
933
  msgid "Right Now Screen"
934
  msgstr "Aktuella"
935
 
936
- #: ../../admin/config/index.php:58
937
  msgid "Live Stream"
938
  msgstr ""
939
 
940
  # @ wp-slimstat-options
941
- #: ../../admin/config/index.php:58
942
  #, fuzzy
943
  msgid ""
944
  "Enable the Live view, which refreshes the Right Now screen every X seconds. "
@@ -946,21 +948,21 @@ msgid ""
946
  msgstr "Uppdatera Aktuella varje X sekunder. Noll inaktiverar funktionen. "
947
 
948
  # @ wp-slimstat-options
949
- #: ../../admin/config/index.php:58 ../../admin/config/index.php:209
950
  msgid "seconds"
951
  msgstr "Sekunder"
952
 
953
- #: ../../admin/config/index.php:59
954
  msgid "Specify the number of items in Right Now."
955
  msgstr ""
956
 
957
  # @ wp-slimstat-options
958
  # @ wp-slimstat-view
959
- #: ../../admin/config/index.php:60
960
  msgid "Right Now Extended"
961
  msgstr "Aktuella utvidgningar"
962
 
963
- #: ../../admin/config/index.php:60
964
  #, fuzzy
965
  msgid ""
966
  "Choose if you want to see outbound links listed under Right Now. It might "
@@ -971,31 +973,31 @@ msgstr ""
971
  "system."
972
 
973
  # @ wp-slimstat-view
974
- #: ../../admin/config/index.php:65
975
  #, fuzzy
976
  msgid "Visitors and Known Users"
977
  msgstr "Kända användare"
978
 
979
  # @ wp-slimstat-options
980
- #: ../../admin/config/index.php:66
981
  #, fuzzy
982
  msgid "Track Registered Users"
983
  msgstr "Spåra användare"
984
 
985
  # @ wp-slimstat-options
986
- #: ../../admin/config/index.php:66
987
  #, fuzzy
988
  msgid "Enable this option to track logged in users."
989
  msgstr "Välj JA om du will spåra inloggade användare."
990
 
991
  # @ wp-slimstat-options
992
- #: ../../admin/config/index.php:67
993
  #, fuzzy
994
  msgid "Blacklist by Username"
995
  msgstr "IP-adress"
996
 
997
  # @ wp-slimstat-options
998
- #: ../../admin/config/index.php:67
999
  #, fuzzy
1000
  msgid ""
1001
  "List all the usernames you don't want to track, separated by commas. Please "
@@ -1007,13 +1009,13 @@ msgstr ""
1007
  "användarnamn är bokstavskänsligt."
1008
 
1009
  # @ wp-slimstat-options
1010
- #: ../../admin/config/index.php:68
1011
  #, fuzzy
1012
  msgid "Blacklist by IP Address"
1013
  msgstr "IP-adress"
1014
 
1015
  # @ wp-slimstat-options
1016
- #: ../../admin/config/index.php:68
1017
  #, fuzzy
1018
  msgid ""
1019
  "List all the IP addresses you don't want to track, separated by commas. Each "
@@ -1029,13 +1031,13 @@ msgstr ""
1029
  "formatet är felaktig, WP SlimStat får inte spåra pageviews ordentligt."
1030
 
1031
  # @ wp-slimstat-options
1032
- #: ../../admin/config/index.php:69
1033
  #, fuzzy
1034
  msgid "Blacklist by Capability"
1035
  msgstr "Användare per rättighet"
1036
 
1037
  # @ wp-slimstat-options
1038
- #: ../../admin/config/index.php:69
1039
  msgid ""
1040
  "Users having at least one of the <a href='http://codex.wordpress.org/"
1041
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
@@ -1045,17 +1047,17 @@ msgstr ""
1045
  "Roles_and_Capabilities' target='_new'>rättigheterna</a> listade här nedan "
1046
  "kommer inte spåras. Rättigheterna är bokstavskänsliga."
1047
 
1048
- #: ../../admin/config/index.php:71
1049
  msgid "Profiling"
1050
  msgstr ""
1051
 
1052
  # @ wp-slimstat-options
1053
- #: ../../admin/config/index.php:72
1054
  msgid "Ignore Spammers"
1055
  msgstr "Ignorera spammare"
1056
 
1057
  # @ wp-slimstat-options
1058
- #: ../../admin/config/index.php:72
1059
  #, fuzzy
1060
  msgid ""
1061
  "Enable this option if you don't want to track visits from users identified "
@@ -1070,12 +1072,12 @@ msgstr ""
1070
 
1071
  # @ wp-slimstat-options
1072
  # @ wp-slimstat-view
1073
- #: ../../admin/config/index.php:73
1074
  msgid "Permalinks"
1075
  msgstr "Permalänk"
1076
 
1077
  # @ wp-slimstat-options
1078
- #: ../../admin/config/index.php:73
1079
  #, fuzzy
1080
  msgid ""
1081
  "List all the URLs on your website that you don't want to track, separated by "
@@ -1095,12 +1097,12 @@ msgstr ""
1095
  "Strängar är bokstavsoberoende."
1096
 
1097
  # @ wp-slimstat-options
1098
- #: ../../admin/config/index.php:74
1099
  msgid "Countries"
1100
  msgstr "Länder"
1101
 
1102
  # @ wp-slimstat-options
1103
- #: ../../admin/config/index.php:74
1104
  msgid ""
1105
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
1106
  "track, separated by commas."
@@ -1109,12 +1111,12 @@ msgstr ""
1109
  "spåra, separerade med kommatecken."
1110
 
1111
  # @ wp-slimstat-options
1112
- #: ../../admin/config/index.php:75
1113
  msgid "User Agents"
1114
  msgstr "User Agents"
1115
 
1116
  # @ wp-slimstat-options
1117
- #: ../../admin/config/index.php:75
1118
  #, fuzzy
1119
  msgid ""
1120
  "Browsers (user agents) you don't want to track, separated by commas. You can "
@@ -1133,12 +1135,12 @@ msgstr ""
1133
  "är bokstavskänsliga."
1134
 
1135
  # @ wp-slimstat-options
1136
- #: ../../admin/config/index.php:76
1137
  msgid "Referring Sites"
1138
  msgstr "Hänvisnings-sajt"
1139
 
1140
  # @ wp-slimstat-options
1141
- #: ../../admin/config/index.php:76
1142
  #, fuzzy
1143
  msgid ""
1144
  "Referring URLs that you don't want to track, separated by commas: "
@@ -1155,28 +1157,28 @@ msgstr ""
1155
  "bokstavskänsliga.Ange antingen ett wildcard eller det protokoll du vill "
1156
  "filtrera (http://, https://)."
1157
 
1158
- #: ../../admin/config/index.php:78 ../../admin/config/index.php:214
1159
  msgid "Miscellaneous"
1160
  msgstr ""
1161
 
1162
- #: ../../admin/config/index.php:79
1163
  msgid "Enable Privacy Mode"
1164
  msgstr ""
1165
 
1166
  # @ wp-slimstat-options
1167
- #: ../../admin/config/index.php:79
1168
  #, fuzzy
1169
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
1170
  msgstr ""
1171
  "Det här alternativet maskerar den sista oktetten i dina besökares IP-"
1172
  "adresser för att följa Europeiska lagar om integritet."
1173
 
1174
- #: ../../admin/config/index.php:80
1175
  msgid "Ignore Prefetch Requests"
1176
  msgstr ""
1177
 
1178
  # @ wp-slimstat-options
1179
- #: ../../admin/config/index.php:80
1180
  #, fuzzy
1181
  msgid ""
1182
  "Prevent WP SlimStat from tracking pageviews generated by Firefox's <a "
@@ -1188,12 +1190,12 @@ msgstr ""
1188
  "Link_prefetching_FAQ' target='_blank'>Länk prefetching funktionalitet</a>."
1189
 
1190
  # @ wp-slimstat-options
1191
- #: ../../admin/config/index.php:96
1192
  msgid "Ignore users (username not found)"
1193
  msgstr "Ignorera användare (användarnamn ej funna)"
1194
 
1195
  # @ wp-slimstat-options
1196
- #: ../../admin/config/index.php:119
1197
  msgid ""
1198
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
1199
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
@@ -1201,18 +1203,18 @@ msgstr ""
1201
  "Ogiltig rättighet. Vänligen checka <a href=\"http://codex.wordpress.org/"
1202
  "Roles_and_Capabilities\" target=\"_new\">denna sida</a> för mer information"
1203
 
1204
- #: ../../admin/config/index.php:129
1205
  #, fuzzy
1206
  msgid "Reports"
1207
  msgstr "Anpassade Rapporter"
1208
 
1209
  # @ wp-slimstat-options
1210
- #: ../../admin/config/index.php:130
1211
  msgid "Restrict Authors"
1212
  msgstr "Begränsa Författare"
1213
 
1214
  # @ wp-slimstat-options
1215
- #: ../../admin/config/index.php:130
1216
  msgid ""
1217
  "Enable this option if you want your authours to only see stats related to "
1218
  "their own content."
@@ -1221,21 +1223,21 @@ msgstr ""
1221
  "statistik relaterad till sitt eget innehåll."
1222
 
1223
  # @ wp-slimstat-options
1224
- #: ../../admin/config/index.php:131 ../../admin/config/index.php:135
1225
  #, fuzzy
1226
  msgid "Capability"
1227
  msgstr "Användare per rättighet"
1228
 
1229
  # @ wp-slimstat-options
1230
- #: ../../admin/config/index.php:131
1231
  #, fuzzy
1232
  msgid ""
1233
  "Specify the minimum <a href='http://codex.wordpress.org/"
1234
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
1235
- "reports (default: <code>read</code>). If this field is empty, <strong>all "
1236
- "your users</strong> (including subscribers) will have access to the reports, "
1237
- "unless a 'Read access' whitelist has been specified here below. In this "
1238
- "case, the list has precedence over the capability."
1239
  msgstr ""
1240
  "Definiera minsta <a href='http://codex.wordpress.org/Roles_and_Capabilities' "
1241
  "target='_new'>rättighet</a> för att visa rapporter (standard: <code>read</"
@@ -1243,12 +1245,12 @@ msgstr ""
1243
  "subscribers) kommer ha access till rapporterna, om inte 'Read access' "
1244
  "vitlisa har specats ovan. I såfall har vitlistan företräde över rättigheten."
1245
 
1246
- #: ../../admin/config/index.php:132 ../../admin/config/index.php:136
1247
  msgid "Whitelist"
1248
  msgstr ""
1249
 
1250
  # @ wp-slimstat-options
1251
- #: ../../admin/config/index.php:132
1252
  #, fuzzy
1253
  msgid ""
1254
  "List all the users who should have access to the reports, separated by "
@@ -1261,7 +1263,7 @@ msgstr ""
1261
  "Användarnamn är bokstavskänsliga."
1262
 
1263
  # @ wp-slimstat-options
1264
- #: ../../admin/config/index.php:135
1265
  #, fuzzy
1266
  msgid ""
1267
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -1276,7 +1278,7 @@ msgstr ""
1276
  "vitlisa har specats ovan. I såfall har vitlistan företräde över rättigheten."
1277
 
1278
  # @ wp-slimstat-options
1279
- #: ../../admin/config/index.php:136
1280
  #, fuzzy
1281
  msgid ""
1282
  "List all the users who can edit these options, separated by commas. Please "
@@ -1289,12 +1291,12 @@ msgstr ""
1289
  "användare</strong> (utom <em>Subscribers</em>) kommer att beviljas tillträde."
1290
 
1291
  # @ wp-slimstat-options
1292
- #: ../../admin/config/index.php:152
1293
  msgid "Read access: username not found"
1294
  msgstr "Läs access: användarnamn ej funnet"
1295
 
1296
  # @ wp-slimstat-options
1297
- #: ../../admin/config/index.php:165 ../../admin/config/index.php:196
1298
  msgid ""
1299
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
1300
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
@@ -1305,15 +1307,15 @@ msgstr ""
1305
  "information"
1306
 
1307
  # @ wp-slimstat-options
1308
- #: ../../admin/config/index.php:183
1309
  msgid "Config access: username not found"
1310
  msgstr "Config access: användarnman ej funnet"
1311
 
1312
- #: ../../admin/config/index.php:207
1313
  msgid "Detect Smoothing"
1314
  msgstr "Identifiera Utjämning"
1315
 
1316
- #: ../../admin/config/index.php:207
1317
  #, fuzzy
1318
  msgid ""
1319
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
@@ -1324,38 +1326,38 @@ msgstr ""
1324
  "är den här inställningen ignoreras."
1325
 
1326
  # @ wp-slimstat-options
1327
- #: ../../admin/config/index.php:208
1328
  msgid "Track Outbound Clicks"
1329
  msgstr "Spåra utgående klick"
1330
 
1331
- #: ../../admin/config/index.php:208
1332
  msgid ""
1333
  "Track when your visitors click on link to external websites. This option "
1334
  "required Spy Mode to be enabled."
1335
  msgstr ""
1336
 
1337
  # @ wp-slimstat-options
1338
- #: ../../admin/config/index.php:209
1339
  msgid "Session Duration"
1340
  msgstr "Sessioners varaktighet"
1341
 
1342
  # @ wp-slimstat-options
1343
- #: ../../admin/config/index.php:209
1344
  #, fuzzy
1345
  msgid ""
1346
- "How many seconds should a human session on your site last? Google Analytics "
1347
- "sets it to 1800 seconds."
1348
  msgstr ""
1349
  "Definiera hur många sekunder ett besök skall vara. Google Analytics använder "
1350
  "1800 sekunder som minsta tid."
1351
 
1352
  # @ wp-slimstat-options
1353
- #: ../../admin/config/index.php:210
1354
  msgid "Extend Session"
1355
  msgstr "Utöka session"
1356
 
1357
  # @ wp-slimstat-options
1358
- #: ../../admin/config/index.php:210
1359
  #, fuzzy
1360
  msgid "Extend the duration of a session each time the user visits a new page."
1361
  msgstr ""
@@ -1363,12 +1365,12 @@ msgstr ""
1363
  "sida av det antal sekunder som angetts här ovan."
1364
 
1365
  # @ wp-slimstat-options
1366
- #: ../../admin/config/index.php:211
1367
  msgid "Enable CDN"
1368
  msgstr "Aktivera CDN"
1369
 
1370
  # @ wp-slimstat-options
1371
- #: ../../admin/config/index.php:211
1372
  #, fuzzy
1373
  msgid ""
1374
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
@@ -1379,11 +1381,11 @@ msgstr ""
1379
  "CDN, genom att betjäna WP SlimStat javascript tracker från deras snabba och "
1380
  "tillförlitliga nätverk."
1381
 
1382
- #: ../../admin/config/index.php:212
1383
  msgid "Extensions to Track"
1384
  msgstr "Fileändelser att spåra"
1385
 
1386
- #: ../../admin/config/index.php:212
1387
  #, fuzzy
1388
  msgid ""
1389
  "List all the file extensions that you want to be treated as Downloads. "
@@ -1398,46 +1400,26 @@ msgstr ""
1398
  "matchas med nedanstående som listas här."
1399
 
1400
  # @ wp-slimstat-options
1401
- #: ../../admin/config/index.php:215
1402
  msgid "IP Lookup"
1403
  msgstr "Leta upp IP"
1404
 
1405
- #: ../../admin/config/index.php:215
1406
  msgid "Customize the Geolocation service to be used in the reports."
1407
  msgstr ""
1408
 
1409
  # @ wp-slimstat-options
1410
- #: ../../admin/config/index.php:216
1411
  msgid "Custom CSS"
1412
  msgstr "Anpassad CSS"
1413
 
1414
- #: ../../admin/config/index.php:216
1415
  msgid ""
1416
  "Paste here your custom stylesheet to personalize the way your reports look. "
1417
  "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1418
  "target='_blank'>Check the FAQ</a> for more information on how to use this "
1419
- "functionality."
1420
- msgstr ""
1421
-
1422
- # @ wp-slimstat-options
1423
- #: ../../admin/config/index.php:217
1424
- msgid "Chart Annotations"
1425
- msgstr "Diagramnotering"
1426
-
1427
- # @ wp-slimstat-options
1428
- #: ../../admin/config/index.php:217
1429
- msgid ""
1430
- "Add <em>markings</em> to each chart by specifying a date and its description "
1431
- "in the field below. Useful to keep track of special events and correlate "
1432
- "them to your analytics. Please use the following format:<code>YYYY MM DD HH:"
1433
- "mm=Description 1,YYYY MM DD HH:mm=Description 2</code>. For example: 2012 12 "
1434
- "31 23:55=New Year's Eve."
1435
  msgstr ""
1436
- "Lägg till <em>markering</em> till varje diagram genom att specificera ett "
1437
- "datum och beskrivning i nedanstående fält. Användbart för att spåra "
1438
- "speciella händelser och korelera dem till din statistik. Använd endast dessa "
1439
- "format:<code>YYYY MM DD HH:mm=Beskrivning 1,YYYY MM DD HH:mm=Beskrivning 2</"
1440
- "code>. Till exempel: 2012 12 31 23:55=Nyårsafton."
1441
 
1442
  # @ wp-slimstat-options
1443
  #: ../../admin/config/index.php:218
@@ -1446,10 +1428,10 @@ msgstr "Aktivera UAN"
1446
 
1447
  #: ../../admin/config/index.php:218
1448
  msgid ""
1449
- "Collect data about unknown user agents, and send it anonymously to our "
1450
- "server for analysis. This allows us to contribute to the <a href='http://"
1451
- "browscap.co/' target='_blank'>BrowsCap opensource project</a>, and improve "
1452
- "the accuracy of SlimStat's browser detection functionality."
1453
  msgstr ""
1454
 
1455
  # @ wp-slimstat-options
@@ -1482,121 +1464,121 @@ msgid ""
1482
  msgstr ""
1483
 
1484
  # @ wp-slimstat-options
1485
- #: ../../admin/config/maintenance.php:92
1486
  msgid "Database Information"
1487
  msgstr "Databasinformation"
1488
 
1489
  # @ wp-slimstat-options
1490
- #: ../../admin/config/maintenance.php:95
1491
  msgid "Engine"
1492
  msgstr "Motor"
1493
 
1494
  # @ wp_slimstat_options
1495
- #: ../../admin/config/maintenance.php:99
1496
  msgid "switch to InnoDB"
1497
  msgstr "koppla om till InnoDB"
1498
 
1499
  # @ wp-slimstat-options
1500
- #: ../../admin/config/maintenance.php:110
1501
  #, fuzzy
1502
  msgid "records"
1503
  msgstr "Poster"
1504
 
1505
  # @ wp-slimstat-options
1506
- #: ../../admin/config/maintenance.php:115
1507
  #, fuzzy
1508
  msgid "Data Maintenance"
1509
  msgstr "Underhåll"
1510
 
1511
  # @ wp-slimstat-options
1512
- #: ../../admin/config/maintenance.php:118
1513
  #, fuzzy
1514
  msgid "Delete pageviews where"
1515
  msgstr "Ta bort rader där"
1516
 
1517
  # @ wp-slimstat-view
1518
- #: ../../admin/config/maintenance.php:132 ../../admin/view/index.php:17
1519
  msgid "equals"
1520
  msgstr "lika"
1521
 
1522
  # @ wp-slimstat-view
1523
- #: ../../admin/config/maintenance.php:133 ../../admin/view/index.php:18
1524
  msgid "is not equal to"
1525
  msgstr "är inte lika med"
1526
 
1527
  # @ wp-slimstat-view
1528
- #: ../../admin/config/maintenance.php:134 ../../admin/view/index.php:19
1529
  msgid "contains"
1530
  msgstr "innehåller"
1531
 
1532
  # @ wp-slimstat-view
1533
- #: ../../admin/config/maintenance.php:135 ../../admin/view/index.php:20
1534
  msgid "does not contain"
1535
  msgstr "innehåller inte"
1536
 
1537
  # @ wp-slimstat-view
1538
- #: ../../admin/config/maintenance.php:136 ../../admin/view/index.php:21
1539
  msgid "starts with"
1540
  msgstr "börjar med"
1541
 
1542
  # @ wp-slimstat-view
1543
- #: ../../admin/config/maintenance.php:137 ../../admin/view/index.php:22
1544
  msgid "ends with"
1545
  msgstr "slutar med"
1546
 
1547
  # @ wp-slimstat-view
1548
- #: ../../admin/config/maintenance.php:138 ../../admin/view/index.php:23
1549
  msgid "sounds like"
1550
  msgstr "låter som"
1551
 
1552
  # @ wp-slimstat-view
1553
- #: ../../admin/config/maintenance.php:139 ../../admin/view/index.php:24
1554
  msgid "is greater than"
1555
  msgstr "är större än"
1556
 
1557
  # @ wp-slimstat-view
1558
- #: ../../admin/config/maintenance.php:140 ../../admin/view/index.php:25
1559
  msgid "is less than"
1560
  msgstr "är mindre än"
1561
 
1562
- #: ../../admin/config/maintenance.php:141 ../../admin/view/index.php:26
1563
  msgid "matches"
1564
  msgstr "matchas"
1565
 
1566
  # @ wp-slimstat-view
1567
- #: ../../admin/config/maintenance.php:142 ../../admin/view/index.php:27
1568
  msgid "does not match"
1569
  msgstr "matchas inte"
1570
 
1571
  # @ wp-slimstat-view
1572
- #: ../../admin/config/maintenance.php:143 ../../admin/view/index.php:28
1573
  msgid "is empty"
1574
  msgstr "är tomt"
1575
 
1576
  # @ wp-slimstat-view
1577
- #: ../../admin/config/maintenance.php:144 ../../admin/view/index.php:29
1578
  msgid "is not empty"
1579
  msgstr "är inte tomt"
1580
 
1581
- #: ../../admin/config/maintenance.php:147 ../../admin/view/index.php:32
1582
- #: ../../admin/view/index.php:77
1583
  msgid "Apply"
1584
  msgstr ""
1585
 
1586
  # @ wp-slimstat-options
1587
- #: ../../admin/config/maintenance.php:148
1588
  #, fuzzy
1589
  msgid ""
1590
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1591
  msgstr ""
1592
  "Är du säker på att du vill ta bort dessa rader PERMANENT från din databas?"
1593
 
1594
- #: ../../admin/config/maintenance.php:153
1595
  msgid "Empty Database"
1596
  msgstr ""
1597
 
1598
  # @ wp-slimstat-options
1599
- #: ../../admin/config/maintenance.php:156
1600
  #, fuzzy
1601
  msgid ""
1602
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
@@ -1605,49 +1587,49 @@ msgstr ""
1605
  "Är du säker på att du vill ta bort dessa rader PERMANENT från din databas?"
1606
 
1607
  # @ wp-slimstat-view
1608
- #: ../../admin/config/maintenance.php:156
1609
  #, fuzzy
1610
  msgid "Delete All Pageviews"
1611
  msgstr "Direkt Sidvisning"
1612
 
1613
- #: ../../admin/config/maintenance.php:157
1614
  msgid ""
1615
  "Erase all the information collected so far by WP SlimStat. This operation "
1616
  "<strong>does not</strong> reset your settings."
1617
  msgstr ""
1618
 
1619
- #: ../../admin/config/maintenance.php:161
1620
  #, fuzzy
1621
  msgid "Reset Reports"
1622
  msgstr "Anpassade Rapporter"
1623
 
1624
  # @ wp-slimstat-options
1625
- #: ../../admin/config/maintenance.php:164
1626
  #, fuzzy
1627
  msgid ""
1628
  "Are you sure you want to restore the default arrangement of your reports?"
1629
  msgstr "Är du säker på att du vill återställa dina flikar?"
1630
 
1631
- #: ../../admin/config/maintenance.php:164
1632
  msgid "No Panic Button"
1633
  msgstr ""
1634
 
1635
- #: ../../admin/config/maintenance.php:165
1636
  msgid ""
1637
  "Reset the default arrangement of your reports. Helpful when, for some "
1638
  "reason, reports disappear from your panels."
1639
  msgstr ""
1640
 
1641
- #: ../../admin/config/maintenance.php:169
1642
  msgid "Performance"
1643
  msgstr ""
1644
 
1645
- #: ../../admin/config/maintenance.php:172
1646
  msgid "Improve Performance"
1647
  msgstr ""
1648
 
1649
  # @ wp-slimstat-options
1650
- #: ../../admin/config/maintenance.php:173
1651
  #, fuzzy
1652
  msgid ""
1653
  "Please note that you will need about 30% more DB space to store the extra "
@@ -1657,43 +1639,39 @@ msgstr ""
1657
  "behöver omkring 30% mer databasutrymme att spara den krävda extra "
1658
  "informationen."
1659
 
1660
- #: ../../admin/config/maintenance.php:177
1661
  msgid "Save DB Space"
1662
  msgstr ""
1663
 
1664
- #: ../../admin/config/maintenance.php:178
1665
  msgid ""
1666
  "Please note that by removing table indexes, WP SlimStat's performance will "
1667
  "be affected."
1668
  msgstr ""
1669
 
1670
- #: ../../admin/config/maintenance.php:183
1671
  msgid "Import and Export"
1672
  msgstr ""
1673
 
1674
- #: ../../admin/config/maintenance.php:187
1675
  msgid ""
1676
- "Paste your export file's content and click on the button below, to import "
1677
- "your settings."
 
1678
  msgstr ""
1679
 
1680
  # @ wp-slimstat-options
1681
  # @ wp-slimstat-view
1682
- #: ../../admin/config/maintenance.php:192
1683
  #, fuzzy
1684
  msgid "Import"
1685
  msgstr "Support"
1686
 
1687
  # @ wp-slimstat-options
1688
- #: ../../admin/config/maintenance.php:193
1689
  msgid "Are you sure you want to OVERWRITE your current settings?"
1690
  msgstr "Är du säker på att du vill återställa dina flikar?"
1691
 
1692
- #: ../../admin/config/maintenance.php:194
1693
- #, fuzzy
1694
- msgid "Export Settings"
1695
- msgstr "Inställningar"
1696
-
1697
  #: ../../admin/lang/dynamic_strings.php:3
1698
  msgid "xx"
1699
  msgstr "xx"
@@ -3166,7 +3144,7 @@ msgstr "Zulu (Sydafrika)"
3166
 
3167
  # Unknown
3168
  #: ../../admin/lang/dynamic_strings.php:298
3169
- #: ../../admin/view/wp-slimstat-reports.php:493
3170
  msgid "l-"
3171
  msgstr "Okänd"
3172
 
@@ -3186,65 +3164,71 @@ msgid "c-xy"
3186
  msgstr "Local IP Address"
3187
 
3188
  # @ wp-slimstat-view
3189
- #: ../../admin/view/index.php:47 ../../admin/view/wp-slimstat-reports.php:678
3190
  msgid "Today"
3191
  msgstr "Idag"
3192
 
3193
  # @ wp-slimstat-view
3194
- #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:679
3195
  msgid "Yesterday"
3196
  msgstr "Igår"
3197
 
3198
- #: ../../admin/view/index.php:49
3199
  msgid "Last 7 Days"
3200
  msgstr ""
3201
 
3202
  # @ wp-slimstat-view
3203
- #: ../../admin/view/index.php:50
3204
  #, fuzzy
3205
- msgid "Last 30 Days"
3206
  msgstr "Sista 30 minuterna"
3207
 
3208
  # @ wp-slimstat-view
3209
- #: ../../admin/view/index.php:51
3210
  #, fuzzy
3211
  msgid "Last 90 Days"
3212
  msgstr "Sista 30 minuterna"
3213
 
3214
  # @ wp-slimstat-view
3215
- #: ../../admin/view/index.php:52
3216
  #, fuzzy
3217
- msgid "This Year"
3218
  msgstr "År"
3219
 
3220
  # @ default
3221
- #: ../../admin/view/index.php:53
3222
  #, fuzzy
3223
  msgid "Date Range"
3224
  msgstr "Spara ändringar"
3225
 
3226
  # @ wp-slimstat-view
3227
- #: ../../admin/view/index.php:55 ../../admin/view/wp-slimstat-reports.php:72
3228
  msgid "Day"
3229
  msgstr "Dag"
3230
 
3231
  # @ wp-slimstat-view
3232
- #: ../../admin/view/index.php:65 ../../admin/view/wp-slimstat-reports.php:73
3233
  msgid "Month"
3234
  msgstr "Månad"
3235
 
3236
  # @ wp-slimstat-view
3237
- #: ../../admin/view/index.php:74 ../../admin/view/wp-slimstat-reports.php:74
3238
  msgid "Year"
3239
  msgstr "År"
3240
 
3241
  # @ wp-slimstat-view
3242
- #: ../../admin/view/index.php:109
 
 
 
 
 
 
3243
  msgid "Your report here"
3244
  msgstr "Din rapport här"
3245
 
3246
  # @ wp-slimstat-view
3247
- #: ../../admin/view/index.php:111
3248
  msgid ""
3249
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
3250
  "Just write a new plugin that retrieves the desired information from the "
@@ -3259,14 +3243,14 @@ msgstr ""
3259
  "forum_id=10\" target=\"_blank\">support forum</a>."
3260
 
3261
  # @ wp-slimstat-view
3262
- #: ../../admin/view/index.php:125 ../../admin/view/wp-slimstat-reports.php:669
3263
- #: ../../admin/view/wp-slimstat-reports.php:767
3264
- #: ../../admin/view/wp-slimstat-reports.php:1033
3265
  msgid "Pageviews"
3266
  msgstr "Sidvisningar"
3267
 
3268
  # @ wp-slimstat-view
3269
- #: ../../admin/view/index.php:128
3270
  msgid ""
3271
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
3272
  "WP SlimStat leverages this information to identify returning visitors. "
@@ -3276,50 +3260,50 @@ msgstr ""
3276
  "cookie. WP SlimStat utnyttjar informationen för att identifiera återkommande "
3277
  "besökare."
3278
 
3279
- #: ../../admin/view/index.php:132
3280
  #, fuzzy
3281
  msgid "Take a sneak peek at what human visitors are doing on your website."
3282
  msgstr "Ta en smygtitt på vad andra besökare gör på din webbsida"
3283
 
3284
  # @ wp-slimstat-view
3285
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
3286
- #: ../../admin/view/index.php:176 ../../admin/view/right-now.php:146
3287
  msgid "Color codes"
3288
  msgstr "Färgkod"
3289
 
3290
  # @ wp-slimstat-view
3291
- #: ../../admin/view/index.php:132
3292
  msgid "From a search result page"
3293
  msgstr "Från en sökresultatsida"
3294
 
3295
  # @ wp-slimstat-view
3296
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
3297
- #: ../../admin/view/index.php:176
3298
  msgid "Known Users"
3299
  msgstr "Kända användare"
3300
 
3301
  # @ wp-slimstat-view
3302
- #: ../../admin/view/index.php:132 ../../admin/view/index.php:173
3303
- #: ../../admin/view/index.php:176
3304
  msgid "Other Humans"
3305
  msgstr "Andra människor"
3306
 
3307
  # @ wp-slimstat-view
3308
- #: ../../admin/view/index.php:136
3309
  #, fuzzy
3310
  msgid "Keywords used by your visitors to find your website on a search engine."
3311
  msgstr ""
3312
  "Nyckelord som dina besökare använder för att hitta din webbplats på en "
3313
  "sökmotor"
3314
 
3315
- #: ../../admin/view/index.php:139
3316
  msgid ""
3317
  "WP SlimStat retrieves live information from Alexa, Facebook and Google, to "
3318
  "measures your site's rankings. Values are updated every 12 hours. Filters "
3319
  "set above don't apply to this report."
3320
  msgstr ""
3321
 
3322
- #: ../../admin/view/index.php:142
3323
  msgid ""
3324
  "We have teamed up with HackerNinja.com to offer you a free website security "
3325
  "scan. By clicking on Start Free Scan, your website will be analyzed to "
@@ -3328,12 +3312,12 @@ msgid ""
3328
  msgstr ""
3329
 
3330
  # @ wp-slimstat-view
3331
- #: ../../admin/view/index.php:145
3332
  msgid "Human Visits"
3333
  msgstr "Mänskliga besök"
3334
 
3335
  # @ wp-slimstat-view
3336
- #: ../../admin/view/index.php:148
3337
  msgid ""
3338
  "Internet Service Provider: a company which provides other companies or "
3339
  "individuals with access to the Internet. Your DSL or cable internet service "
@@ -3347,7 +3331,7 @@ msgstr ""
3347
  "> SlimStat > Filter."
3348
 
3349
  # @ wp-slimstat-view
3350
- #: ../../admin/view/index.php:151
3351
  msgid ""
3352
  "You can configure WP SlimStat to ignore a specific Country by setting the "
3353
  "corresponding filter under Settings > SlimStat > Filters."
@@ -3355,7 +3339,7 @@ msgstr ""
3355
  "Du kan konfigurera WP SlimStat att bortse från ett visst land genom att "
3356
  "ställa in motsvarande filter under Inställningar > SlimStat > Filter."
3357
 
3358
- #: ../../admin/view/index.php:154
3359
  msgid ""
3360
  "This report shows you what user agent families (no version considered) are "
3361
  "popular among your visitors."
@@ -3363,7 +3347,7 @@ msgstr ""
3363
  "Denna rapport visar vad användar agent (ingen version anses) är populära "
3364
  "bland besökarna."
3365
 
3366
- #: ../../admin/view/index.php:157
3367
  msgid ""
3368
  "This report shows you what operating system families (no version considered) "
3369
  "are popular among your visitors."
@@ -3372,12 +3356,12 @@ msgstr ""
3372
  "bland besökarna."
3373
 
3374
  # @ wp-slimstat-view
3375
- #: ../../admin/view/index.php:163
3376
  msgid "Average Pageviews per Visit"
3377
  msgstr "Genomsnittlig sidvisning per besök"
3378
 
3379
  # @ wp-slimstat-view
3380
- #: ../../admin/view/index.php:166
3381
  msgid ""
3382
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
3383
  "left your site from the entrance (landing) page."
@@ -3385,12 +3369,12 @@ msgstr ""
3385
  "En <em>studs-sida</em> är en singel sidbesök eller besök där personen "
3386
  "lämnade din sajt från den sida som personen landade på vid ingången."
3387
 
3388
- #: ../../admin/view/index.php:169
3389
  msgid "Searches performed using Wordpress' built-in search functionality."
3390
  msgstr "Sökning utförs genom WP inbyggda sökfunktionalitet."
3391
 
3392
  # @ wp-slimstat-view
3393
- #: ../../admin/view/index.php:173
3394
  msgid ""
3395
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
3396
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
@@ -3401,7 +3385,7 @@ msgstr ""
3401
  "attribut som hör till den."
3402
 
3403
  # @ wp-slimstat-view
3404
- #: ../../admin/view/index.php:176
3405
  msgid ""
3406
  "This report lists any <em>event</em> occurred on your website. Please refer "
3407
  "to the FAQ for more information on how to leverage this functionality."
@@ -3410,7 +3394,7 @@ msgstr ""
3410
  "din webbplats. Läs FAQ för mer information om hur du kan utnyttja denna "
3411
  "funktion."
3412
 
3413
- #: ../../admin/view/index.php:179
3414
  msgid ""
3415
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
3416
  "this report is not affected by the filters set here above."
@@ -3435,404 +3419,419 @@ msgstr ""
3435
 
3436
  # @ wp-slimstat-view
3437
  #: ../../admin/view/right-now.php:28
3438
- #: ../../admin/view/wp-slimstat-reports.php:436
3439
- #: ../../admin/view/wp-slimstat-reports.php:581
3440
  msgid "No data to display"
3441
  msgstr "Inget data att visa"
3442
 
3443
  # Unknown
3444
- #: ../../admin/view/right-now.php:53
3445
- #: ../../admin/view/wp-slimstat-reports.php:481
3446
- #: ../../admin/view/wp-slimstat-reports.php:619
3447
- #: ../../admin/view/wp-slimstat-reports.php:921
3448
  msgid "c-"
3449
  msgstr "Okänd"
3450
 
3451
  # @ wp-slimstat-view
3452
- #: ../../admin/view/right-now.php:119
3453
- #: ../../admin/view/wp-slimstat-reports.php:535
3454
- #: ../../admin/view/wp-slimstat-reports.php:539
3455
- #: ../../admin/view/wp-slimstat-reports.php:601
3456
- #: ../../admin/view/wp-slimstat-reports.php:639
3457
  msgid "Open this URL in a new window"
3458
  msgstr "Öppna denna URL i nytt fönster"
3459
 
3460
  # @ wp-slimstat-view
3461
- #: ../../admin/view/right-now.php:122
3462
  msgid "Local search results page"
3463
  msgstr "Lokala sökresultat sidan"
3464
 
3465
  # @ wp-slimstat-view
3466
- #: ../../admin/view/right-now.php:129
3467
  msgid "Open this referrer in a new window"
3468
  msgstr "Öppna denna sida i nytt fönster"
3469
 
3470
  # @ wp-slimstat-view
3471
- #: ../../admin/view/right-now.php:130
3472
  msgid "Open this outbound link in a new window"
3473
  msgstr "Öppna denna URL i nytt fönster"
3474
 
3475
  # @ default
3476
- #: ../../admin/view/right-now.php:131
3477
  #, fuzzy
3478
  msgid "Date and Time"
3479
  msgstr "Spara ändringar"
3480
 
3481
- #: ../../admin/view/right-now.php:132
3482
  #, fuzzy
3483
  msgid "Content Type"
3484
  msgstr "Innehåll"
3485
 
3486
- #: ../../admin/view/right-now.php:147
3487
  msgid "Visit with keywords"
3488
  msgstr "Besök med nyckelord"
3489
 
3490
  # @ wp-slimstat-view
3491
- #: ../../admin/view/right-now.php:149
3492
  #, fuzzy
3493
  msgid "Known User"
3494
  msgstr "Kända användare"
3495
 
3496
  # @ wp-slimstat-view
3497
- #: ../../admin/view/right-now.php:150
3498
  #, fuzzy
3499
  msgid "Human Visitor"
3500
  msgstr "Mänskliga besök"
3501
 
3502
- #: ../../admin/view/right-now.php:151
3503
  #, fuzzy
3504
  msgid "Bot or Crawler"
3505
  msgstr "Spindlar"
3506
 
3507
  # @ wp-slimstat-options
3508
- #: ../../admin/view/wp-slimstat-reports.php:44
3509
  msgid "IP Address"
3510
  msgstr "IP-adress"
3511
 
3512
  # @ wp-slimstat-view
3513
- #: ../../admin/view/wp-slimstat-reports.php:49
3514
  msgid "Domain"
3515
  msgstr "Domän"
3516
 
3517
  # @ wp-slimstat-view
3518
- #: ../../admin/view/wp-slimstat-reports.php:53
3519
  msgid "-- Advanced filters --"
3520
  msgstr "-- Avancerat filter --"
3521
 
3522
  # @ wp-slimstat-view
3523
- #: ../../admin/view/wp-slimstat-reports.php:54
3524
- #: ../../admin/view/wp-slimstat-reports.php:99
3525
  msgid "Browser Capabilities"
3526
  msgstr "Browserkapaciteter"
3527
 
3528
  # @ wp-slimstat-options
3529
- #: ../../admin/view/wp-slimstat-reports.php:66
3530
  msgid "Resource ID"
3531
  msgstr "Resurs ID"
3532
 
3533
  # @ wp-slimstat-view
3534
- #: ../../admin/view/wp-slimstat-reports.php:71
3535
  msgid "Hour"
3536
  msgstr "Timme"
3537
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3538
  # @ wp-slimstat-view
3539
- #: ../../admin/view/wp-slimstat-reports.php:78
3540
  msgid "Pageviews (chart)"
3541
  msgstr "Sidvisningar (Diagram)"
3542
 
3543
  # @ wp-slimstat-view
3544
- #: ../../admin/view/wp-slimstat-reports.php:79
3545
  msgid "About WP SlimStat"
3546
  msgstr "Om WP SlimStat"
3547
 
3548
- #: ../../admin/view/wp-slimstat-reports.php:80
3549
- #: ../../admin/view/wp-slimstat-reports.php:93
3550
  msgid "At a Glance"
3551
  msgstr ""
3552
 
3553
  # @ wp-slimstat-view
3554
- #: ../../admin/view/wp-slimstat-reports.php:81
3555
  #, fuzzy
3556
  msgid "Currently Online"
3557
  msgstr "Nuvarande filter"
3558
 
3559
  # @ wp-slimstat-view
3560
- #: ../../admin/view/wp-slimstat-reports.php:82
3561
- #: ../../admin/view/wp-slimstat-reports.php:117
3562
  msgid "Spy View"
3563
  msgstr "Spionvy"
3564
 
3565
  # @ wp-slimstat-view
3566
- #: ../../admin/view/wp-slimstat-reports.php:83
3567
- #: ../../admin/view/wp-slimstat-reports.php:118
3568
  msgid "Recent Search Terms"
3569
  msgstr "Senaste söktermer"
3570
 
3571
  # @ wp-slimstat-view
3572
- #: ../../admin/view/wp-slimstat-reports.php:84
3573
  msgid "Top Pages"
3574
  msgstr "Topp Sidor"
3575
 
3576
  # @ wp-slimstat-view
3577
- #: ../../admin/view/wp-slimstat-reports.php:85
3578
- #: ../../admin/view/wp-slimstat-reports.php:115
3579
  msgid "Top Traffic Sources"
3580
  msgstr "Topp Trafikkällor"
3581
 
3582
  # @ wp-slimstat-view
3583
- #: ../../admin/view/wp-slimstat-reports.php:86
3584
  msgid "Top Known Visitors"
3585
  msgstr "Topp Kända besökare"
3586
 
3587
  # @ wp-slimstat-view
3588
- #: ../../admin/view/wp-slimstat-reports.php:87
3589
- #: ../../admin/view/wp-slimstat-reports.php:113
3590
- #: ../../admin/view/wp-slimstat-reports.php:133
3591
  msgid "Top Search Terms"
3592
  msgstr "Topp Söktermer"
3593
 
3594
  # @ wp-slimstat-view
3595
- #: ../../admin/view/wp-slimstat-reports.php:88
3596
- #: ../../admin/view/wp-slimstat-reports.php:100
3597
- #: ../../admin/view/wp-slimstat-reports.php:114
3598
  msgid "Top Countries"
3599
  msgstr "Topp Länder"
3600
 
3601
- #: ../../admin/view/wp-slimstat-reports.php:89
3602
  msgid "Rankings"
3603
  msgstr ""
3604
 
3605
- #: ../../admin/view/wp-slimstat-reports.php:90
3606
  msgid "Security Scan"
3607
  msgstr ""
3608
 
3609
  # @ wp-slimstat-view
3610
- #: ../../admin/view/wp-slimstat-reports.php:91
3611
  #, fuzzy
3612
  msgid "Top Language Families"
3613
  msgstr "Topp Språk"
3614
 
3615
  # @ wp-slimstat-view
3616
- #: ../../admin/view/wp-slimstat-reports.php:92
3617
  msgid "Human Visits (chart)"
3618
  msgstr "Mänskliga besök (Diagram)"
3619
 
3620
  # @ wp-slimstat-view
3621
- #: ../../admin/view/wp-slimstat-reports.php:94
3622
  msgid "Top Languages"
3623
  msgstr "Topp Språk"
3624
 
3625
- #: ../../admin/view/wp-slimstat-reports.php:95
3626
  msgid "Top Browsers"
3627
  msgstr "Topp webbläsare"
3628
 
3629
  # @ wp-slimstat-view
3630
- #: ../../admin/view/wp-slimstat-reports.php:96
3631
  msgid "Top Service Providers"
3632
  msgstr "Topp Internetleverantör"
3633
 
3634
  # @ wp-slimstat-view
3635
- #: ../../admin/view/wp-slimstat-reports.php:97
3636
  msgid "Top Operating Systems"
3637
  msgstr "Topp OS"
3638
 
3639
  # @ wp-slimstat-view
3640
- #: ../../admin/view/wp-slimstat-reports.php:98
3641
  msgid "Top Screen Resolutions"
3642
  msgstr "Topp Skärmupplösning"
3643
 
3644
  # @ wp-slimstat-view
3645
- #: ../../admin/view/wp-slimstat-reports.php:101
3646
  msgid "Visit Duration"
3647
  msgstr "Besöks Varaktighet"
3648
 
3649
  # @ wp-slimstat-view
3650
- #: ../../admin/view/wp-slimstat-reports.php:102
3651
- #: ../../admin/view/wp-slimstat-reports.php:119
3652
  msgid "Recent Countries"
3653
  msgstr "Senaste Länder"
3654
 
3655
  # @ wp-slimstat-view
3656
- #: ../../admin/view/wp-slimstat-reports.php:103
3657
  msgid "Recent Screen Resolutions"
3658
  msgstr "Senaste Skärmupplösning"
3659
 
3660
  # @ wp-slimstat-view
3661
- #: ../../admin/view/wp-slimstat-reports.php:104
3662
  msgid "Recent Operating Systems"
3663
  msgstr "Senaste OS"
3664
 
3665
  # @ wp-slimstat-view
3666
- #: ../../admin/view/wp-slimstat-reports.php:105
3667
  msgid "Recent Browsers"
3668
  msgstr "Senaste webbläsarna"
3669
 
3670
  # @ wp-slimstat-view
3671
- #: ../../admin/view/wp-slimstat-reports.php:106
3672
  msgid "Recent Languages"
3673
  msgstr "Senaste Språk"
3674
 
3675
  # @ wp-slimstat-view
3676
- #: ../../admin/view/wp-slimstat-reports.php:107
3677
  msgid "Top Browser Families"
3678
  msgstr "Topp webbläsarfamiljer"
3679
 
3680
- #: ../../admin/view/wp-slimstat-reports.php:108
3681
  msgid "Top OS Families"
3682
  msgstr "Topp OS (opperativsystem) "
3683
 
3684
  # @ wp-slimstat-view
3685
- #: ../../admin/view/wp-slimstat-reports.php:109
3686
  msgid "Recent Users"
3687
  msgstr "senaste Användare"
3688
 
3689
  # @ wp-slimstat-view
3690
- #: ../../admin/view/wp-slimstat-reports.php:110
3691
  msgid "Top Users"
3692
  msgstr "Topp Användare"
3693
 
3694
  # @ wp-slimstat-view
3695
- #: ../../admin/view/wp-slimstat-reports.php:111
3696
  msgid "Traffic Sources (chart)"
3697
  msgstr "Trafikkälla (Diagram)"
3698
 
3699
  # @ wp-slimstat-view
3700
- #: ../../admin/view/wp-slimstat-reports.php:112
3701
  msgid "Summary"
3702
  msgstr "Sammanfattning"
3703
 
3704
  # @ wp-slimstat-view
3705
- #: ../../admin/view/wp-slimstat-reports.php:116
3706
  msgid "Top Referring Search Engines"
3707
  msgstr "Topp Sökmotorers hänvisning"
3708
 
3709
  # @ wp-slimstat-view
3710
- #: ../../admin/view/wp-slimstat-reports.php:120
3711
- #: ../../admin/view/wp-slimstat-reports.php:136
3712
  msgid "Top Landing Pages"
3713
  msgstr "Topp Startsida"
3714
 
3715
  # @ wp-slimstat-view
3716
- #: ../../admin/view/wp-slimstat-reports.php:121
3717
  msgid "Average Pageviews per Visit (chart)"
3718
  msgstr "Genomsnitt Sidvisning per Besök (Diagram)"
3719
 
3720
  # @ wp-slimstat-view
3721
- #: ../../admin/view/wp-slimstat-reports.php:122
3722
  msgid "Recent Posts"
3723
  msgstr "Senaste Poster"
3724
 
3725
  # @ wp-slimstat-view
3726
- #: ../../admin/view/wp-slimstat-reports.php:123
3727
  msgid "Recent Bounce Pages"
3728
  msgstr "Senaste Stuts-sidor"
3729
 
3730
  # @ wp-slimstat-view
3731
- #: ../../admin/view/wp-slimstat-reports.php:124
3732
  msgid "Recent Feeds"
3733
  msgstr "Senaste Feeds"
3734
 
3735
- #: ../../admin/view/wp-slimstat-reports.php:125
3736
  msgid "Recent Pages Not Found"
3737
  msgstr ""
3738
 
3739
  # @ wp-slimstat-view
3740
- #: ../../admin/view/wp-slimstat-reports.php:126
3741
  msgid "Recent Internal Searches"
3742
  msgstr "Senaste Interna sökningar"
3743
 
3744
  # @ wp-slimstat-view
3745
- #: ../../admin/view/wp-slimstat-reports.php:127
3746
  msgid "Top Categories"
3747
  msgstr "Topp Kategorier"
3748
 
3749
  # @ wp-slimstat-view
3750
- #: ../../admin/view/wp-slimstat-reports.php:128
3751
  msgid "Recent Outbound Links"
3752
  msgstr "Senaste Utgående Länkar"
3753
 
3754
  # @ wp-slimstat-view
3755
- #: ../../admin/view/wp-slimstat-reports.php:129
3756
  msgid "Recent Events"
3757
  msgstr "Senaste Händelserna"
3758
 
3759
  # @ wp-slimstat-view
3760
- #: ../../admin/view/wp-slimstat-reports.php:130
3761
  msgid "Top Posts"
3762
  msgstr "Topp Poster"
3763
 
3764
  # @ wp-slimstat-view
3765
- #: ../../admin/view/wp-slimstat-reports.php:131
3766
  msgid "Top Feeds"
3767
  msgstr "Topp Feeds"
3768
 
3769
  # @ wp-slimstat-view
3770
- #: ../../admin/view/wp-slimstat-reports.php:132
3771
  msgid "Top Internal Searches"
3772
  msgstr "Topp Interna Sökningar"
3773
 
3774
  # @ wp-slimstat-view
3775
- #: ../../admin/view/wp-slimstat-reports.php:134
3776
  msgid "Recent Categories"
3777
  msgstr "Senaste Kategorierna"
3778
 
3779
  # @ wp-slimstat-view
3780
- #: ../../admin/view/wp-slimstat-reports.php:135
3781
  #, fuzzy
3782
  msgid "Top Pages Not Found"
3783
  msgstr "Topp Sidor"
3784
 
3785
  # @ wp-slimstat-view
3786
- #: ../../admin/view/wp-slimstat-reports.php:137
3787
  msgid "Top Authors"
3788
  msgstr "Topp Författare"
3789
 
3790
  # @ wp-slimstat-view
3791
- #: ../../admin/view/wp-slimstat-reports.php:138
3792
  msgid "Top Tags"
3793
  msgstr "Topp Taggar"
3794
 
3795
  # @ wp-slimstat-view
3796
- #: ../../admin/view/wp-slimstat-reports.php:139
3797
  msgid "Recent Downloads"
3798
  msgstr "Senaste Nedladdningar"
3799
 
3800
- #: ../../admin/view/wp-slimstat-reports.php:140
3801
  msgid "Top Outbound Links and Downloads"
3802
  msgstr ""
3803
 
3804
- #: ../../admin/view/wp-slimstat-reports.php:141
3805
  msgid "Your Website"
3806
  msgstr ""
3807
 
3808
- #: ../../admin/view/wp-slimstat-reports.php:143
3809
  msgid "Activity Log"
3810
  msgstr ""
3811
 
3812
  # @ wp-slimstat-view
3813
- #: ../../admin/view/wp-slimstat-reports.php:239
3814
  msgid "Chart controls"
3815
  msgstr "Kontroll av Diagram"
3816
 
3817
  # @ wp-slimstat-view
3818
- #: ../../admin/view/wp-slimstat-reports.php:239
3819
  msgid "Use your mouse wheel to zoom in and out"
3820
  msgstr "Använd mus-hjulet för att zooma in eller ut."
3821
 
3822
  # @ wp-slimstat-view
3823
- #: ../../admin/view/wp-slimstat-reports.php:239
3824
  msgid "While zooming in, drag the chart to move to a different area"
3825
  msgstr ""
3826
  "Medans man zoomar in, drag i kartan för att flytta till olika ställen på "
3827
  "kartan."
3828
 
3829
  # @ wp-slimstat-view
3830
- #: ../../admin/view/wp-slimstat-reports.php:239
3831
  msgid "Double click on an empty region to reset the zoom level"
3832
  msgstr "Dubbelklicka på en tom region för att återställa zoom-nivån"
3833
 
3834
  # @ wp-slimstat-view
3835
- #: ../../admin/view/wp-slimstat-reports.php:240
3836
  msgid ""
3837
  "Click on a data point to display the activity chart for each hour of that day"
3838
  msgstr ""
@@ -3840,176 +3839,176 @@ msgstr ""
3840
  "dagen"
3841
 
3842
  # @ wp-slimstat-view
3843
- #: ../../admin/view/wp-slimstat-reports.php:272
3844
  msgid "src"
3845
  msgstr "scr"
3846
 
3847
  # @ wp-slimstat-view
3848
- #: ../../admin/view/wp-slimstat-reports.php:273
3849
  msgid "serp"
3850
  msgstr "serp"
3851
 
3852
  # @ wp-slimstat-view
3853
- #: ../../admin/view/wp-slimstat-reports.php:278
3854
  msgid "Go to the corresponding search engine result page"
3855
  msgstr "Gå till motsvarande sökningmotorresultatet"
3856
 
3857
  # @ wp-slimstat-view
3858
- #: ../../admin/view/wp-slimstat-reports.php:281
3859
  msgid "Go to the referring page"
3860
  msgstr "Gå till sidan med hänvisning"
3861
 
3862
  # @ wp-slimstat-view
3863
- #: ../../admin/view/wp-slimstat-reports.php:300
3864
  msgid "Remove filter for"
3865
  msgstr "Tabort filter för"
3866
 
3867
- #: ../../admin/view/wp-slimstat-reports.php:307
3868
  #, fuzzy
3869
  msgid "Reset All"
3870
  msgstr "Återställer flikar"
3871
 
3872
  # @ wp-slimstat-view
3873
- #: ../../admin/view/wp-slimstat-reports.php:310
3874
  msgid "Current filters:"
3875
  msgstr "Nuvarande filter"
3876
 
3877
  # @ wp-slimstat-options
3878
- #: ../../admin/view/wp-slimstat-reports.php:314
3879
  msgid "Refresh"
3880
  msgstr "Uppdatera varje"
3881
 
3882
  # @ wp-slimstat-view
3883
- #: ../../admin/view/wp-slimstat-reports.php:351
3884
  #, fuzzy, php-format
3885
  msgid "Results %s - %s of %s"
3886
  msgstr "Filtrerat resultat där %s %s %s"
3887
 
3888
  # @ wp-slimstat-options
3889
- #: ../../admin/view/wp-slimstat-reports.php:353
3890
  #, fuzzy
3891
  msgid "Refresh in"
3892
  msgstr "Uppdatera varje"
3893
 
3894
  # @ wp-slimstat-view
 
3895
  #: ../../admin/view/wp-slimstat-reports.php:375
3896
- #: ../../admin/view/wp-slimstat-reports.php:387
3897
  #, php-format
3898
  msgid "Daily %s"
3899
  msgstr "Dagliga %s"
3900
 
3901
  # @ wp-slimstat-view
3902
- #: ../../admin/view/wp-slimstat-reports.php:378
3903
  #, php-format
3904
  msgid "%s Minute by Minute"
3905
  msgstr "%s Minut för Minut"
3906
 
3907
  # @ wp-slimstat-view
3908
- #: ../../admin/view/wp-slimstat-reports.php:381
3909
  #, php-format
3910
  msgid "Hourly %s"
3911
  msgstr "Timvis %s"
3912
 
3913
  # @ wp-slimstat-view
3914
- #: ../../admin/view/wp-slimstat-reports.php:384
3915
  #, php-format
3916
  msgid "Monthly %s"
3917
  msgstr "Månadsvis %s"
3918
 
3919
  # @ wp-slimstat-view
3920
- #: ../../admin/view/wp-slimstat-reports.php:463
3921
  msgid "Category ID"
3922
  msgstr "Kategori ID"
3923
 
3924
  # @ wp-slimstat-view
3925
- #: ../../admin/view/wp-slimstat-reports.php:496
3926
  msgid "OS Code"
3927
  msgstr "OS Kod"
3928
 
3929
  # @ wp-slimstat-view
3930
- #: ../../admin/view/wp-slimstat-reports.php:506
3931
  msgid "Referrer"
3932
  msgstr "Referera till"
3933
 
3934
  # @ wp-slimstat-view
3935
- #: ../../admin/view/wp-slimstat-reports.php:530
3936
- #: ../../admin/view/wp-slimstat-reports.php:707
3937
- #: ../../admin/view/wp-slimstat-reports.php:716
3938
- #: ../../admin/view/wp-slimstat-reports.php:722
3939
- #: ../../admin/view/wp-slimstat-reports.php:728
3940
- #: ../../admin/view/wp-slimstat-reports.php:734
3941
- #: ../../admin/view/wp-slimstat-reports.php:740
3942
- #: ../../admin/view/wp-slimstat-reports.php:746
3943
- #: ../../admin/view/wp-slimstat-reports.php:752
3944
  msgid "Hits"
3945
  msgstr "Träffar"
3946
 
3947
  # @ wp-slimstat-view
3948
- #: ../../admin/view/wp-slimstat-reports.php:598
3949
  msgid "Search for"
3950
  msgstr "Sök efter"
3951
 
3952
  # @ wp-slimstat-view
3953
- #: ../../admin/view/wp-slimstat-reports.php:629
3954
- #: ../../admin/view/wp-slimstat-reports.php:639
3955
  msgid "Source"
3956
  msgstr "Källa"
3957
 
3958
  # @ wp-slimstat-view
3959
- #: ../../admin/view/wp-slimstat-reports.php:631
3960
  msgid "Keywords"
3961
  msgstr "Nycleord"
3962
 
3963
  # @ wp-slimstat-view
3964
- #: ../../admin/view/wp-slimstat-reports.php:639
3965
  #, php-format
3966
  msgid "Filter results where resource equals %s"
3967
  msgstr "Fiktrerat resultat där resurs är lika %s"
3968
 
3969
  # @ wp-slimstat-view
3970
- #: ../../admin/view/wp-slimstat-reports.php:649
3971
  msgid "Total Pageviews"
3972
  msgstr "Total Sidvisning"
3973
 
3974
  # @ wp-slimstat-view
3975
- #: ../../admin/view/wp-slimstat-reports.php:650
3976
  msgid "DB Size"
3977
  msgstr "DB Storlek"
3978
 
3979
  # @ wp-slimstat-view
3980
- #: ../../admin/view/wp-slimstat-reports.php:651
3981
  msgid "Tracking Active"
3982
  msgstr "Spårning Aktiv"
3983
 
3984
  # @ wp-slimstat-options
3985
  # @ wp-slimstat-view
3986
- #: ../../admin/view/wp-slimstat-reports.php:652
3987
  msgid "Javascript Mode"
3988
  msgstr "Javascript-läge"
3989
 
3990
  # @ wp-slimstat-view
3991
- #: ../../admin/view/wp-slimstat-reports.php:653
3992
  msgid "Tracking Browser Caps"
3993
  msgstr "Spåra Browser Caps"
3994
 
3995
  # @ wp-slimstat-view
3996
- #: ../../admin/view/wp-slimstat-reports.php:654
3997
  msgid "Auto purge"
3998
  msgstr "Autorensning"
3999
 
4000
  # @ wp-slimstat-view
4001
- #: ../../admin/view/wp-slimstat-reports.php:655
4002
  msgid "Oldest pageview"
4003
  msgstr "Äldsta sidvisning"
4004
 
4005
  # @ wp-slimstat-view
4006
- #: ../../admin/view/wp-slimstat-reports.php:655
4007
  msgid "No visits"
4008
  msgstr "Inga besök"
4009
 
4010
  # @ wp-slimstat-view
4011
- #: ../../admin/view/wp-slimstat-reports.php:668
4012
- #: ../../admin/view/wp-slimstat-reports.php:766
4013
  msgid ""
4014
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
4015
  "time the tracking code is executed."
@@ -4018,18 +4017,18 @@ msgstr ""
4018
  "varje gång spårningskoden körs."
4019
 
4020
  # @ wp-slimstat-view
4021
- #: ../../admin/view/wp-slimstat-reports.php:670
4022
  msgid "How many pages have been visited on average during the current period."
4023
  msgstr "Hur många sidor har besökt i genomsnitt under den aktuella perioden."
4024
 
4025
  # @ wp-slimstat-view
4026
- #: ../../admin/view/wp-slimstat-reports.php:671
4027
- #: ../../admin/view/wp-slimstat-reports.php:1046
4028
- msgid "Avg Pageviews"
4029
  msgstr "Genomsnittlig sidvisning"
4030
 
4031
  # @ wp-slimstat-view
4032
- #: ../../admin/view/wp-slimstat-reports.php:672
4033
  msgid ""
4034
  "Visitors who landed on your site after searching for a keyword on Google, "
4035
  "Yahoo, etc."
@@ -4038,12 +4037,12 @@ msgstr ""
4038
  "Yahoo etc."
4039
 
4040
  # @ wp-slimstat-view
4041
- #: ../../admin/view/wp-slimstat-reports.php:673
4042
  msgid "From Search Results"
4043
  msgstr "Från Sökresultat"
4044
 
4045
  # @ wp-slimstat-view
4046
- #: ../../admin/view/wp-slimstat-reports.php:674
4047
  msgid ""
4048
  "Used to differentiate between multiple requests to download a file from one "
4049
  "internet address (IP) and requests originating from many distinct addresses"
@@ -4052,26 +4051,26 @@ msgstr ""
4052
  "från en internet adress (IP) och förfrågningar från flera olika adresser"
4053
 
4054
  # @ wp-slimstat-view
4055
- #: ../../admin/view/wp-slimstat-reports.php:675
4056
- #: ../../admin/view/wp-slimstat-reports.php:691
4057
- #: ../../admin/view/wp-slimstat-reports.php:1033
4058
- #: ../../admin/view/wp-slimstat-reports.php:1037
4059
- #: ../../admin/view/wp-slimstat-reports.php:1041
4060
  msgid "Unique IPs"
4061
  msgstr "Unika IP-adresser"
4062
 
4063
  # @ wp-slimstat-view
4064
- #: ../../admin/view/wp-slimstat-reports.php:676
4065
  msgid "Last 5 minutes"
4066
  msgstr "Sista 5 minuterna"
4067
 
4068
  # @ wp-slimstat-view
4069
- #: ../../admin/view/wp-slimstat-reports.php:677
4070
  msgid "Last 30 minutes"
4071
  msgstr "Sista 30 minuterna"
4072
 
4073
  # @ wp-slimstat-view
4074
- #: ../../admin/view/wp-slimstat-reports.php:688
4075
  msgid ""
4076
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
4077
  "multiple times if they perform multiple visits."
@@ -4080,17 +4079,17 @@ msgstr ""
4080
  "flera gånger om de utför flera besök."
4081
 
4082
  # @ wp-slimstat-view
4083
- #: ../../admin/view/wp-slimstat-reports.php:689
4084
  msgid "Human visits"
4085
  msgstr "Mänskliga besök"
4086
 
4087
- #: ../../admin/view/wp-slimstat-reports.php:690
4088
  msgid "It includes only traffic generated by human visitors."
4089
  msgstr ""
4090
 
4091
  # @ wp-slimstat-view
4092
- #: ../../admin/view/wp-slimstat-reports.php:692
4093
- #: ../../admin/view/wp-slimstat-reports.php:778
4094
  msgid ""
4095
  "Percentage of single-page visits, i.e. visits in which the person left your "
4096
  "site from the entrance page."
@@ -4099,95 +4098,95 @@ msgstr ""
4099
  "ingångssidan."
4100
 
4101
  # @ wp-slimstat-view
4102
- #: ../../admin/view/wp-slimstat-reports.php:693
4103
  msgid "Bounce rate"
4104
  msgstr "Avvisningsfrekvens"
4105
 
4106
  # @ wp-slimstat-view
4107
- #: ../../admin/view/wp-slimstat-reports.php:694
4108
  msgid "Visitors who had previously left a comment on your blog."
4109
  msgstr "Besökare som tidigare lämnade en kommentar på din blogg."
4110
 
4111
  # @ wp-slimstat-view
4112
- #: ../../admin/view/wp-slimstat-reports.php:695
4113
  msgid "Known visitors"
4114
  msgstr "Kända besökare"
4115
 
4116
  # @ wp-slimstat-view
4117
- #: ../../admin/view/wp-slimstat-reports.php:696
4118
  msgid "Human users who visited your site only once."
4119
  msgstr "Mänskliga användare som besökt din sajt endast en gång."
4120
 
4121
  # @ wp-slimstat-view
4122
- #: ../../admin/view/wp-slimstat-reports.php:697
4123
  msgid "New visitors"
4124
  msgstr "Nya besökare"
4125
 
4126
  # @ wp-slimstat-view
4127
- #: ../../admin/view/wp-slimstat-reports.php:698
4128
  msgid "Bots"
4129
  msgstr "Bots"
4130
 
4131
  # @ wp-slimstat-view
4132
- #: ../../admin/view/wp-slimstat-reports.php:699
4133
  msgid "Pages per visit"
4134
  msgstr "Sidor per besök"
4135
 
4136
  # @ wp-slimstat-view
4137
- #: ../../admin/view/wp-slimstat-reports.php:700
4138
- #: ../../admin/view/wp-slimstat-reports.php:1046
4139
  msgid "Longest visit"
4140
  msgstr "Längsta besök"
4141
 
4142
  # @ wp-slimstat-view
4143
- #: ../../admin/view/wp-slimstat-reports.php:700
4144
  msgid "hits"
4145
  msgstr "träffar"
4146
 
4147
  # @ wp-slimstat-view
4148
- #: ../../admin/view/wp-slimstat-reports.php:718
4149
  msgid "0 - 30 seconds"
4150
  msgstr "0 - 30 sekunder"
4151
 
4152
  # @ wp-slimstat-view
4153
- #: ../../admin/view/wp-slimstat-reports.php:724
4154
  msgid "31 - 60 seconds"
4155
  msgstr "31 - 60 sekunder"
4156
 
4157
  # @ wp-slimstat-view
4158
- #: ../../admin/view/wp-slimstat-reports.php:730
4159
  msgid "1 - 3 minutes"
4160
  msgstr "1 - 3 minuter"
4161
 
4162
  # @ wp-slimstat-view
4163
- #: ../../admin/view/wp-slimstat-reports.php:736
4164
  msgid "3 - 5 minutes"
4165
  msgstr "3 - 5 minuter"
4166
 
4167
  # @ wp-slimstat-view
4168
- #: ../../admin/view/wp-slimstat-reports.php:742
4169
  msgid "5 - 7 minutes"
4170
  msgstr "5 - 7 minuter"
4171
 
4172
  # @ wp-slimstat-view
4173
- #: ../../admin/view/wp-slimstat-reports.php:748
4174
  msgid "7 - 10 minutes"
4175
  msgstr "7 - 10 minuter"
4176
 
4177
  # @ wp-slimstat-view
4178
- #: ../../admin/view/wp-slimstat-reports.php:754
4179
  #, fuzzy
4180
  msgid "More than 10 minutes"
4181
  msgstr "Mer än 20 minuter"
4182
 
4183
  # @ wp-slimstat-view
4184
- #: ../../admin/view/wp-slimstat-reports.php:758
4185
  #, fuzzy
4186
  msgid "Average time on site"
4187
  msgstr "Genomsnittlig sidvisning per besök"
4188
 
4189
  # @ wp-slimstat-view
4190
- #: ../../admin/view/wp-slimstat-reports.php:768
4191
  msgid ""
4192
  "A referrer (or referring site) is the site that a visitor previously visited "
4193
  "before following a link to your site."
@@ -4196,12 +4195,12 @@ msgstr ""
4196
  "tidigare besökt innan genom länk till din webbplats."
4197
 
4198
  # @ wp-slimstat-view
4199
- #: ../../admin/view/wp-slimstat-reports.php:769
4200
  msgid "Unique Referrers"
4201
  msgstr "Unika Referrers"
4202
 
4203
  # @ wp-slimstat-view
4204
- #: ../../admin/view/wp-slimstat-reports.php:770
4205
  msgid ""
4206
  "Visitors who visited the site by typing the URL directly into their browser. "
4207
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -4214,12 +4213,12 @@ msgstr ""
4214
  "eller länkar från handlingar som inte inbegriper spårnings variabler."
4215
 
4216
  # @ wp-slimstat-view
4217
- #: ../../admin/view/wp-slimstat-reports.php:771
4218
  msgid "Direct Pageviews"
4219
  msgstr "Direkt Sidvisning"
4220
 
4221
  # @ wp-slimstat-view
4222
- #: ../../admin/view/wp-slimstat-reports.php:772
4223
  msgid ""
4224
  "Visitors who came to your site via searches on Google or some other search "
4225
  "engine."
@@ -4228,12 +4227,12 @@ msgstr ""
4228
  "sökmotor."
4229
 
4230
  # @ wp-slimstat-view
4231
- #: ../../admin/view/wp-slimstat-reports.php:773
4232
  msgid "From a search result"
4233
  msgstr "Från ett sökresultat"
4234
 
4235
  # @ wp-slimstat-view
4236
- #: ../../admin/view/wp-slimstat-reports.php:774
4237
  msgid ""
4238
  "The first page that a user views during a session. This is also known as the "
4239
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -4246,27 +4245,27 @@ msgstr ""
4246
  "en landningssida."
4247
 
4248
  # @ wp-slimstat-view
4249
- #: ../../admin/view/wp-slimstat-reports.php:775
4250
  msgid "Unique Landing Pages"
4251
  msgstr "Unika Landningssidor"
4252
 
4253
  # @ wp-slimstat-view
4254
- #: ../../admin/view/wp-slimstat-reports.php:776
4255
  msgid "Number of single-page visits to your site over the selected period."
4256
  msgstr "Antalet enkelsidiga besök till din webbplats under den valda perioden."
4257
 
4258
  # @ wp-slimstat-view
4259
- #: ../../admin/view/wp-slimstat-reports.php:777
4260
  msgid "Bounce Pages"
4261
  msgstr "Avvisande Sidor"
4262
 
4263
  # @ wp-slimstat-view
4264
- #: ../../admin/view/wp-slimstat-reports.php:779
4265
  msgid "New Visitors Rate"
4266
  msgstr "Nya besökare Grad"
4267
 
4268
  # @ wp-slimstat-view
4269
- #: ../../admin/view/wp-slimstat-reports.php:780
4270
  msgid ""
4271
  "Visitors who visited the site in the last 5 minutes coming from a search "
4272
  "engine."
@@ -4275,1256 +4274,1287 @@ msgstr ""
4275
  "sökmotor."
4276
 
4277
  # @ wp-slimstat-view
4278
- #: ../../admin/view/wp-slimstat-reports.php:781
4279
  msgid "Currently from search engines"
4280
  msgstr "För närvarande från sökmotorer"
4281
 
4282
- #: ../../admin/view/wp-slimstat-reports.php:849
4283
  msgid "Number of pages in your site included in Google's index."
4284
  msgstr ""
4285
 
4286
  # @ wp-slimstat-options
4287
- #: ../../admin/view/wp-slimstat-reports.php:850
4288
  #, fuzzy
4289
  msgid "Google Index"
4290
  msgstr "Avlägsna Index"
4291
 
4292
- #: ../../admin/view/wp-slimstat-reports.php:851
4293
  msgid "Number of pages, according to Google, that link back to your site."
4294
  msgstr ""
4295
 
4296
- #: ../../admin/view/wp-slimstat-reports.php:852
4297
  msgid "Google Backlinks"
4298
  msgstr ""
4299
 
4300
- #: ../../admin/view/wp-slimstat-reports.php:853
4301
  msgid ""
4302
  "How many times the Facebook Like button has been approximately clicked on "
4303
  "your site."
4304
  msgstr ""
4305
 
4306
- #: ../../admin/view/wp-slimstat-reports.php:854
4307
  msgid "Facebook Likes"
4308
  msgstr ""
4309
 
4310
- #: ../../admin/view/wp-slimstat-reports.php:855
4311
  msgid ""
4312
  "How many times your site has been shared by someone on the social network."
4313
  msgstr ""
4314
 
4315
- #: ../../admin/view/wp-slimstat-reports.php:856
4316
  msgid "Facebook Shares"
4317
  msgstr ""
4318
 
4319
- #: ../../admin/view/wp-slimstat-reports.php:857
4320
  msgid "How many times links to your website have been clicked on Facebook."
4321
  msgstr ""
4322
 
4323
  # @ wp-slimstat-options
4324
- #: ../../admin/view/wp-slimstat-reports.php:858
4325
  #, fuzzy
4326
  msgid "Facebook Clicks"
4327
  msgstr "Spåra utgående klick"
4328
 
4329
- #: ../../admin/view/wp-slimstat-reports.php:859
4330
  msgid ""
4331
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
4332
  "traffic data."
4333
  msgstr ""
4334
 
4335
- #: ../../admin/view/wp-slimstat-reports.php:860
4336
  msgid "Alexa World Rank"
4337
  msgstr ""
4338
 
4339
- #: ../../admin/view/wp-slimstat-reports.php:861
4340
  msgid "Alexa Country Rank"
4341
  msgstr ""
4342
 
4343
- #: ../../admin/view/wp-slimstat-reports.php:862
4344
  msgid "Alexa Popularity"
4345
  msgstr ""
4346
 
4347
- #: ../../admin/view/wp-slimstat-reports.php:875
4348
  msgid "Bing Test"
4349
  msgstr ""
4350
 
4351
- #: ../../admin/view/wp-slimstat-reports.php:876
4352
  msgid "AntiVirus Scan"
4353
  msgstr ""
4354
 
4355
- #: ../../admin/view/wp-slimstat-reports.php:877
4356
  msgid "Google Bot Test"
4357
  msgstr ""
4358
 
4359
- #: ../../admin/view/wp-slimstat-reports.php:878
4360
  msgid "Scan for Hostile Strings"
4361
  msgstr ""
4362
 
4363
- #: ../../admin/view/wp-slimstat-reports.php:879
4364
  msgid "Generic Web Bot test"
4365
  msgstr ""
4366
 
4367
- #: ../../admin/view/wp-slimstat-reports.php:880
4368
  msgid "Google Safe Browsing List"
4369
  msgstr ""
4370
 
4371
- #: ../../admin/view/wp-slimstat-reports.php:881
4372
  msgid "Hostile External Links"
4373
  msgstr ""
4374
 
4375
  # @ wp-slimstat-view
4376
- #: ../../admin/view/wp-slimstat-reports.php:882
4377
  #, fuzzy
4378
  msgid "Other Treats"
4379
  msgstr "Andra människor"
4380
 
4381
- #: ../../admin/view/wp-slimstat-reports.php:895
4382
  msgid "Passed"
4383
  msgstr ""
4384
 
4385
- #: ../../admin/view/wp-slimstat-reports.php:895
4386
  msgid "At Risk"
4387
  msgstr ""
4388
 
4389
- #: ../../admin/view/wp-slimstat-reports.php:898
4390
  msgid "Timed Out"
4391
  msgstr ""
4392
 
4393
  # Unknown
4394
- #: ../../admin/view/wp-slimstat-reports.php:912
4395
  msgid "c-xx"
4396
  msgstr "Okänd"
4397
 
4398
  # Afghanistan
4399
- #: ../../admin/view/wp-slimstat-reports.php:912
4400
  msgid "c-af"
4401
  msgstr "Afghanistan"
4402
 
4403
  # Åland Islands
4404
- #: ../../admin/view/wp-slimstat-reports.php:912
4405
  msgid "c-ax"
4406
  msgstr "Åland"
4407
 
4408
  # Albania
4409
- #: ../../admin/view/wp-slimstat-reports.php:912
4410
  msgid "c-al"
4411
  msgstr "Albanien"
4412
 
4413
  # Algeria
4414
- #: ../../admin/view/wp-slimstat-reports.php:912
4415
  msgid "c-dz"
4416
  msgstr "Algeriet"
4417
 
4418
  # Andorra
4419
- #: ../../admin/view/wp-slimstat-reports.php:912
4420
  msgid "c-ad"
4421
  msgstr "Andorra"
4422
 
4423
  # Angola
4424
- #: ../../admin/view/wp-slimstat-reports.php:912
4425
  msgid "c-ao"
4426
  msgstr "Angola"
4427
 
4428
  # Anguilla
4429
- #: ../../admin/view/wp-slimstat-reports.php:912
4430
  msgid "c-ai"
4431
  msgstr "Anguilla"
4432
 
4433
  # Antigua and Barbuda
4434
- #: ../../admin/view/wp-slimstat-reports.php:912
4435
  msgid "c-ag"
4436
  msgstr "Antigua och Barbuda"
4437
 
4438
  # Argentina
4439
- #: ../../admin/view/wp-slimstat-reports.php:912
4440
  msgid "c-ar"
4441
  msgstr "Argentina"
4442
 
4443
  # Armenia
4444
- #: ../../admin/view/wp-slimstat-reports.php:912
4445
  msgid "c-am"
4446
  msgstr "Armenien"
4447
 
4448
  # Aruba
4449
- #: ../../admin/view/wp-slimstat-reports.php:912
4450
  msgid "c-aw"
4451
  msgstr "Aruba"
4452
 
4453
  # Australia
4454
- #: ../../admin/view/wp-slimstat-reports.php:912
4455
  msgid "c-au"
4456
  msgstr "Australien"
4457
 
4458
  # Austria
4459
- #: ../../admin/view/wp-slimstat-reports.php:912
4460
  msgid "c-at"
4461
  msgstr "Österrike"
4462
 
4463
  # Azerbaijan
4464
- #: ../../admin/view/wp-slimstat-reports.php:912
4465
  msgid "c-az"
4466
  msgstr "Azerbajdzjan"
4467
 
4468
  # Bahamas
4469
- #: ../../admin/view/wp-slimstat-reports.php:912
4470
  msgid "c-bs"
4471
  msgstr "Bahamas"
4472
 
4473
  # Bahrain
4474
- #: ../../admin/view/wp-slimstat-reports.php:912
4475
  msgid "c-bh"
4476
  msgstr "Bahrain"
4477
 
4478
  # Bangladesh
4479
- #: ../../admin/view/wp-slimstat-reports.php:912
4480
  msgid "c-bd"
4481
  msgstr "Bangladesh"
4482
 
4483
  # Barbados
4484
- #: ../../admin/view/wp-slimstat-reports.php:912
4485
  msgid "c-bb"
4486
  msgstr "Barbados"
4487
 
4488
  # Belarus
4489
- #: ../../admin/view/wp-slimstat-reports.php:912
4490
  msgid "c-by"
4491
  msgstr "Belarus"
4492
 
4493
  # Belgium
4494
- #: ../../admin/view/wp-slimstat-reports.php:912
4495
  msgid "c-be"
4496
  msgstr "Belgien"
4497
 
4498
  # Belize
4499
- #: ../../admin/view/wp-slimstat-reports.php:912
4500
  msgid "c-bz"
4501
  msgstr "Belize"
4502
 
4503
  # Benin
4504
- #: ../../admin/view/wp-slimstat-reports.php:912
4505
  msgid "c-bj"
4506
  msgstr "Benin"
4507
 
4508
  # Bermuda
4509
- #: ../../admin/view/wp-slimstat-reports.php:912
4510
  msgid "c-bm"
4511
  msgstr "Bermuda"
4512
 
4513
  # Bhutan
4514
- #: ../../admin/view/wp-slimstat-reports.php:912
4515
  msgid "c-bt"
4516
  msgstr "Bhutan"
4517
 
4518
  # Bolivia
4519
- #: ../../admin/view/wp-slimstat-reports.php:912
4520
  msgid "c-bo"
4521
  msgstr "Bolivia"
4522
 
4523
  # Bosnia and Herzegovina
4524
- #: ../../admin/view/wp-slimstat-reports.php:912
4525
  msgid "c-ba"
4526
  msgstr "Bosnien och Hercegovina"
4527
 
4528
  # Botswana
4529
- #: ../../admin/view/wp-slimstat-reports.php:912
4530
  msgid "c-bw"
4531
  msgstr "Botswana"
4532
 
4533
  # Brazil
4534
- #: ../../admin/view/wp-slimstat-reports.php:912
4535
  msgid "c-br"
4536
  msgstr "Brazilien"
4537
 
4538
  # Brunei Darussalam
4539
- #: ../../admin/view/wp-slimstat-reports.php:912
4540
  msgid "c-bn"
4541
  msgstr "Brunei"
4542
 
4543
  # Bulgaria
4544
- #: ../../admin/view/wp-slimstat-reports.php:912
4545
  msgid "c-bg"
4546
  msgstr "Bulgarien"
4547
 
4548
  # Burkina Faso
4549
- #: ../../admin/view/wp-slimstat-reports.php:912
4550
  msgid "c-bf"
4551
  msgstr "Burkina Faso"
4552
 
4553
  # Burundi
4554
- #: ../../admin/view/wp-slimstat-reports.php:912
4555
  msgid "c-bi"
4556
  msgstr "Burundi"
4557
 
4558
  # Cambodia
4559
- #: ../../admin/view/wp-slimstat-reports.php:912
4560
  msgid "c-kh"
4561
  msgstr "Kambodja"
4562
 
4563
  # Cameroon
4564
- #: ../../admin/view/wp-slimstat-reports.php:912
4565
  msgid "c-cm"
4566
  msgstr "Kamerun"
4567
 
4568
  # Canada
4569
- #: ../../admin/view/wp-slimstat-reports.php:912
4570
  msgid "c-ca"
4571
  msgstr "Kanada"
4572
 
4573
  # Cape Verde
4574
- #: ../../admin/view/wp-slimstat-reports.php:912
4575
  msgid "c-cv"
4576
  msgstr "Kap Verde"
4577
 
4578
  # Cayman Islands
4579
- #: ../../admin/view/wp-slimstat-reports.php:912
4580
  msgid "c-ky"
4581
  msgstr "Caymanöarna"
4582
 
4583
  # Central African Republic
4584
- #: ../../admin/view/wp-slimstat-reports.php:912
4585
  msgid "c-cf"
4586
  msgstr "Centralafricanska Republiken"
4587
 
4588
  # Chad
4589
- #: ../../admin/view/wp-slimstat-reports.php:912
4590
  msgid "c-td"
4591
  msgstr "Chad"
4592
 
4593
  # Chile
4594
- #: ../../admin/view/wp-slimstat-reports.php:912
4595
  msgid "c-cl"
4596
  msgstr "Chile"
4597
 
4598
  # China
4599
- #: ../../admin/view/wp-slimstat-reports.php:912
4600
  msgid "c-cn"
4601
  msgstr "Kina"
4602
 
4603
  # Colombia
4604
- #: ../../admin/view/wp-slimstat-reports.php:912
4605
  msgid "c-co"
4606
  msgstr "Colombia"
4607
 
4608
  # Comoros
4609
- #: ../../admin/view/wp-slimstat-reports.php:912
4610
  msgid "c-km"
4611
  msgstr "Komorerna"
4612
 
4613
  # Congo
4614
- #: ../../admin/view/wp-slimstat-reports.php:912
4615
  msgid "c-cg"
4616
  msgstr "Kongo"
4617
 
4618
  # The Democratic Republic of the Congo
4619
- #: ../../admin/view/wp-slimstat-reports.php:912
4620
  msgid "c-cd"
4621
  msgstr "Kongo, Demokratiska republiken"
4622
 
4623
  # Costa Rica
4624
- #: ../../admin/view/wp-slimstat-reports.php:912
4625
  msgid "c-cr"
4626
  msgstr "Costa Rica"
4627
 
4628
  # Côte d'Ivoire
4629
- #: ../../admin/view/wp-slimstat-reports.php:912
4630
  msgid "c-ci"
4631
  msgstr "Côte d'Ivoire"
4632
 
4633
  # Croatia
4634
- #: ../../admin/view/wp-slimstat-reports.php:912
4635
  msgid "c-hr"
4636
  msgstr "Kroatien"
4637
 
4638
  # Cuba
4639
- #: ../../admin/view/wp-slimstat-reports.php:912
4640
  msgid "c-cu"
4641
  msgstr "Kuba"
4642
 
4643
  # Cyprus
4644
- #: ../../admin/view/wp-slimstat-reports.php:912
4645
  msgid "c-cy"
4646
  msgstr "Cypern"
4647
 
4648
  # Czech Republic
4649
- #: ../../admin/view/wp-slimstat-reports.php:912
4650
  msgid "c-cz"
4651
  msgstr "Tjeckien"
4652
 
4653
  # Denmark
4654
- #: ../../admin/view/wp-slimstat-reports.php:912
4655
  msgid "c-dk"
4656
  msgstr "Danmark"
4657
 
4658
  # Djibouti
4659
- #: ../../admin/view/wp-slimstat-reports.php:912
4660
  msgid "c-dj"
4661
  msgstr "Djibouti"
4662
 
4663
  # Dominica
4664
- #: ../../admin/view/wp-slimstat-reports.php:912
4665
  msgid "c-dm"
4666
  msgstr "Dominica"
4667
 
4668
  # Dominican Republic
4669
- #: ../../admin/view/wp-slimstat-reports.php:912
4670
  msgid "c-do"
4671
  msgstr "Dominikanska republiken"
4672
 
4673
  # Ecuador
4674
- #: ../../admin/view/wp-slimstat-reports.php:912
4675
  msgid "c-ec"
4676
  msgstr "Ecuador"
4677
 
4678
  # Egypt
4679
- #: ../../admin/view/wp-slimstat-reports.php:912
4680
  msgid "c-eg"
4681
  msgstr "Egypten"
4682
 
4683
  # El Salvador
4684
- #: ../../admin/view/wp-slimstat-reports.php:912
4685
  msgid "c-sv"
4686
  msgstr "El Salvador"
4687
 
4688
  # Equatorial Guinea
4689
- #: ../../admin/view/wp-slimstat-reports.php:912
4690
  msgid "c-gq"
4691
  msgstr "Ekvatorialguinea"
4692
 
4693
  # Eritrea
4694
- #: ../../admin/view/wp-slimstat-reports.php:912
4695
  msgid "c-er"
4696
  msgstr "Eritrea"
4697
 
4698
  # Estonia
4699
- #: ../../admin/view/wp-slimstat-reports.php:912
4700
  msgid "c-ee"
4701
  msgstr "Estland"
4702
 
4703
  # Ethiopia
4704
- #: ../../admin/view/wp-slimstat-reports.php:912
4705
  msgid "c-et"
4706
  msgstr "Ethiopien"
4707
 
4708
  # Faroe Islands
4709
- #: ../../admin/view/wp-slimstat-reports.php:912
4710
  msgid "c-fo"
4711
  msgstr "Färöarna"
4712
 
4713
  # Falkland Islands (Malvinas)
4714
- #: ../../admin/view/wp-slimstat-reports.php:912
4715
  msgid "c-fk"
4716
  msgstr "Falklandsöarna"
4717
 
4718
  # Fiji
4719
- #: ../../admin/view/wp-slimstat-reports.php:912
4720
  msgid "c-fj"
4721
  msgstr "Fijiöarna"
4722
 
4723
  # Finland
4724
- #: ../../admin/view/wp-slimstat-reports.php:912
4725
  msgid "c-fi"
4726
  msgstr "Finland"
4727
 
4728
  # France
4729
- #: ../../admin/view/wp-slimstat-reports.php:912
4730
  msgid "c-fr"
4731
  msgstr "Frankrike"
4732
 
4733
  # French Guiana
4734
- #: ../../admin/view/wp-slimstat-reports.php:912
4735
  msgid "c-gf"
4736
  msgstr "Franska Guinea"
4737
 
4738
  # Gabon
4739
- #: ../../admin/view/wp-slimstat-reports.php:912
4740
  msgid "c-ga"
4741
  msgstr "Gabon, Republiken"
4742
 
4743
  # Gambia
4744
- #: ../../admin/view/wp-slimstat-reports.php:912
4745
  msgid "c-gm"
4746
  msgstr "Gambia"
4747
 
4748
  # Georgia
4749
- #: ../../admin/view/wp-slimstat-reports.php:912
4750
  msgid "c-ge"
4751
  msgstr "Georgien"
4752
 
4753
  # Germany
4754
- #: ../../admin/view/wp-slimstat-reports.php:912
4755
  msgid "c-de"
4756
  msgstr "Tyskland"
4757
 
4758
  # Ghana
4759
- #: ../../admin/view/wp-slimstat-reports.php:912
4760
  msgid "c-gh"
4761
  msgstr "Ghana"
4762
 
4763
  # Greece
4764
- #: ../../admin/view/wp-slimstat-reports.php:912
4765
  msgid "c-gr"
4766
  msgstr "Grekland"
4767
 
4768
  # Greenland
4769
- #: ../../admin/view/wp-slimstat-reports.php:912
4770
  msgid "c-gl"
4771
  msgstr "Grönland"
4772
 
4773
  # Grenada
4774
- #: ../../admin/view/wp-slimstat-reports.php:912
4775
  msgid "c-gd"
4776
  msgstr "Grenada"
4777
 
4778
  # Guadeloupe
4779
- #: ../../admin/view/wp-slimstat-reports.php:912
4780
  msgid "c-gp"
4781
  msgstr "Guadeloupe"
4782
 
4783
  # Guatemala
4784
- #: ../../admin/view/wp-slimstat-reports.php:912
4785
  msgid "c-gt"
4786
  msgstr "Guatemala"
4787
 
4788
  # Guinea
4789
- #: ../../admin/view/wp-slimstat-reports.php:912
4790
  msgid "c-gn"
4791
  msgstr "Guinea"
4792
 
4793
  # Guinea-Bissau
4794
- #: ../../admin/view/wp-slimstat-reports.php:912
4795
  msgid "c-gw"
4796
  msgstr "Guinea-Bissau"
4797
 
4798
  # Guyana
4799
- #: ../../admin/view/wp-slimstat-reports.php:912
4800
  msgid "c-gy"
4801
  msgstr "Guyana"
4802
 
4803
  # Haiti
4804
- #: ../../admin/view/wp-slimstat-reports.php:912
4805
  msgid "c-ht"
4806
  msgstr "Haiti"
4807
 
4808
  # Honduras
4809
- #: ../../admin/view/wp-slimstat-reports.php:912
4810
  msgid "c-hn"
4811
  msgstr "Honduras"
4812
 
4813
  # Hong Kong
4814
- #: ../../admin/view/wp-slimstat-reports.php:912
4815
  msgid "c-hk"
4816
  msgstr "Hongkong"
4817
 
4818
  # Hungary
4819
- #: ../../admin/view/wp-slimstat-reports.php:912
4820
  msgid "c-hu"
4821
  msgstr "Ungern"
4822
 
4823
  # Iceland
4824
- #: ../../admin/view/wp-slimstat-reports.php:912
4825
  msgid "c-is"
4826
  msgstr "Island"
4827
 
4828
  # India
4829
- #: ../../admin/view/wp-slimstat-reports.php:912
4830
  msgid "c-in"
4831
  msgstr "Indien"
4832
 
4833
  # Indonesia
4834
- #: ../../admin/view/wp-slimstat-reports.php:912
4835
  msgid "c-id"
4836
  msgstr "Indonesien"
4837
 
4838
  # Islamic Republic of Iran
4839
- #: ../../admin/view/wp-slimstat-reports.php:912
4840
  msgid "c-ir"
4841
  msgstr "Iran, Islamiska republiken"
4842
 
4843
  # Iraq
4844
- #: ../../admin/view/wp-slimstat-reports.php:912
4845
  msgid "c-iq"
4846
  msgstr "Irak"
4847
 
4848
  # Ireland
4849
- #: ../../admin/view/wp-slimstat-reports.php:912
4850
  msgid "c-ie"
4851
  msgstr "Ireland"
4852
 
4853
  # Israel
4854
- #: ../../admin/view/wp-slimstat-reports.php:912
4855
  msgid "c-il"
4856
  msgstr "Israel"
4857
 
4858
  # Italy
4859
- #: ../../admin/view/wp-slimstat-reports.php:912
4860
  msgid "c-it"
4861
  msgstr "Italien"
4862
 
4863
  # Jamaica
4864
- #: ../../admin/view/wp-slimstat-reports.php:912
4865
  msgid "c-jm"
4866
  msgstr "Jamaica"
4867
 
4868
  # Japan
4869
- #: ../../admin/view/wp-slimstat-reports.php:912
4870
  msgid "c-jp"
4871
  msgstr "Japan"
4872
 
4873
  # Jordan
4874
- #: ../../admin/view/wp-slimstat-reports.php:912
4875
  msgid "c-jo"
4876
  msgstr "Jordanien"
4877
 
4878
  # Kazakhstan
4879
- #: ../../admin/view/wp-slimstat-reports.php:912
4880
  msgid "c-kz"
4881
  msgstr "Kazakstan"
4882
 
4883
  # Kenya
4884
- #: ../../admin/view/wp-slimstat-reports.php:912
4885
  msgid "c-ke"
4886
  msgstr "Kenya"
4887
 
4888
  # Nauru
4889
- #: ../../admin/view/wp-slimstat-reports.php:912
4890
  msgid "c-nr"
4891
  msgstr "Nauru"
4892
 
4893
  # Democratic People's Republic of Korea
4894
- #: ../../admin/view/wp-slimstat-reports.php:912
4895
  msgid "c-kp"
4896
  msgstr "Korea, Demokratiska folkrepubliken"
4897
 
4898
  # Republic of Korea
4899
- #: ../../admin/view/wp-slimstat-reports.php:912
4900
  msgid "c-kr"
4901
  msgstr "Korea, Republiken"
4902
 
4903
- #: ../../admin/view/wp-slimstat-reports.php:912
4904
  msgid "c-kv"
4905
  msgstr "Kosovo"
4906
 
4907
  # Kuwait
4908
- #: ../../admin/view/wp-slimstat-reports.php:912
4909
  msgid "c-kw"
4910
  msgstr "Kuwait"
4911
 
4912
  # Kyrgyzstan
4913
- #: ../../admin/view/wp-slimstat-reports.php:912
4914
  msgid "c-kg"
4915
  msgstr "Kirgizistan, Republiken"
4916
 
4917
  # Lao People's Democratic Republic
4918
- #: ../../admin/view/wp-slimstat-reports.php:912
4919
  msgid "c-la"
4920
  msgstr "Laos, Demokratiska folkrepubliken"
4921
 
4922
  # Latvia
4923
- #: ../../admin/view/wp-slimstat-reports.php:912
4924
  msgid "c-lv"
4925
  msgstr "Lettland"
4926
 
4927
  # Lebanon
4928
- #: ../../admin/view/wp-slimstat-reports.php:912
4929
  msgid "c-lb"
4930
  msgstr "Libanon"
4931
 
4932
  # Lesotho
4933
- #: ../../admin/view/wp-slimstat-reports.php:912
4934
  msgid "c-ls"
4935
  msgstr "Lesotho"
4936
 
4937
  # Liberia
4938
- #: ../../admin/view/wp-slimstat-reports.php:912
4939
  msgid "c-lr"
4940
  msgstr "Liberia"
4941
 
4942
  # Libyan Arab Jamahiriya
4943
- #: ../../admin/view/wp-slimstat-reports.php:912
4944
  msgid "c-ly"
4945
  msgstr "Socialistiska folkliga libyska arabiska Jamahiriya"
4946
 
4947
  # Liechtenstein
4948
- #: ../../admin/view/wp-slimstat-reports.php:912
4949
  msgid "c-li"
4950
  msgstr "Liechtenstein"
4951
 
4952
  # Lithuania
4953
- #: ../../admin/view/wp-slimstat-reports.php:912
4954
  msgid "c-lt"
4955
  msgstr "Litauen"
4956
 
4957
  # Luxembourg
4958
- #: ../../admin/view/wp-slimstat-reports.php:912
4959
  msgid "c-lu"
4960
  msgstr "Luxembourg"
4961
 
4962
  # The Former Yugoslav Republic of Macedonia
4963
- #: ../../admin/view/wp-slimstat-reports.php:912
4964
  msgid "c-mk"
4965
  msgstr "Makedonien"
4966
 
4967
  # Madagascar
4968
- #: ../../admin/view/wp-slimstat-reports.php:912
4969
  msgid "c-mg"
4970
  msgstr "Madagaskar"
4971
 
4972
  # Malawi
4973
- #: ../../admin/view/wp-slimstat-reports.php:912
4974
  msgid "c-mw"
4975
  msgstr "Malawi"
4976
 
4977
  # Malaysia
4978
- #: ../../admin/view/wp-slimstat-reports.php:912
4979
  msgid "c-my"
4980
  msgstr "Malaysia"
4981
 
4982
  # Mali
4983
- #: ../../admin/view/wp-slimstat-reports.php:912
4984
  msgid "c-ml"
4985
  msgstr "Mali"
4986
 
4987
  # Malta
4988
- #: ../../admin/view/wp-slimstat-reports.php:912
4989
  msgid "c-mt"
4990
  msgstr "Malta"
4991
 
4992
  # Martinique
4993
- #: ../../admin/view/wp-slimstat-reports.php:912
4994
  msgid "c-mq"
4995
  msgstr "Martinique"
4996
 
4997
  # Mauritania
4998
- #: ../../admin/view/wp-slimstat-reports.php:912
4999
  msgid "c-mr"
5000
  msgstr "Mauritanien"
5001
 
5002
  # Mauritius
5003
- #: ../../admin/view/wp-slimstat-reports.php:912
5004
  msgid "c-mu"
5005
  msgstr "Mauritius"
5006
 
5007
  # Mexico
5008
- #: ../../admin/view/wp-slimstat-reports.php:912
5009
  msgid "c-mx"
5010
  msgstr "Mexikos förenta stater"
5011
 
5012
  # Moldova
5013
- #: ../../admin/view/wp-slimstat-reports.php:912
5014
  msgid "c-md"
5015
  msgstr "Moldovien"
5016
 
5017
  # Mongolia
5018
- #: ../../admin/view/wp-slimstat-reports.php:912
5019
  msgid "c-mn"
5020
  msgstr "Mongoliet"
5021
 
5022
  # Montenegro
5023
- #: ../../admin/view/wp-slimstat-reports.php:912
5024
  msgid "c-me"
5025
  msgstr "Montenegro, Republiken"
5026
 
5027
  # Montserrat
5028
- #: ../../admin/view/wp-slimstat-reports.php:912
5029
  msgid "c-ms"
5030
  msgstr "Montserrat"
5031
 
5032
  # Morocco
5033
- #: ../../admin/view/wp-slimstat-reports.php:912
5034
  msgid "c-ma"
5035
  msgstr "Marocko"
5036
 
5037
  # Mozambique
5038
- #: ../../admin/view/wp-slimstat-reports.php:912
5039
  msgid "c-mz"
5040
  msgstr "Moçambique"
5041
 
5042
  # Myanmar
5043
- #: ../../admin/view/wp-slimstat-reports.php:912
5044
  msgid "c-mm"
5045
  msgstr "Myanmar"
5046
 
5047
  # Namibia
5048
- #: ../../admin/view/wp-slimstat-reports.php:912
5049
  msgid "c-na"
5050
  msgstr "Namibia"
5051
 
5052
  # Nepal
5053
- #: ../../admin/view/wp-slimstat-reports.php:912
5054
  msgid "c-np"
5055
  msgstr "Nepal"
5056
 
5057
  # Netherlands
5058
- #: ../../admin/view/wp-slimstat-reports.php:912
5059
  msgid "c-nl"
5060
  msgstr "Nederländerna"
5061
 
5062
  # New Caledonia
5063
- #: ../../admin/view/wp-slimstat-reports.php:912
5064
  msgid "c-nc"
5065
  msgstr "Nya Kaledonien"
5066
 
5067
  # New Zealand
5068
- #: ../../admin/view/wp-slimstat-reports.php:912
5069
  msgid "c-nz"
5070
  msgstr "Nya Zeeland"
5071
 
5072
  # Nicaragua
5073
- #: ../../admin/view/wp-slimstat-reports.php:912
5074
  msgid "c-ni"
5075
  msgstr "Nicaragua"
5076
 
5077
  # Niger
5078
- #: ../../admin/view/wp-slimstat-reports.php:912
5079
  msgid "c-ne"
5080
  msgstr "Niger"
5081
 
5082
  # Nigeria
5083
- #: ../../admin/view/wp-slimstat-reports.php:912
5084
  msgid "c-ng"
5085
  msgstr "Nigeria"
5086
 
5087
  # Norway
5088
- #: ../../admin/view/wp-slimstat-reports.php:912
5089
  msgid "c-no"
5090
  msgstr "Norge"
5091
 
5092
  # Oman
5093
- #: ../../admin/view/wp-slimstat-reports.php:912
5094
  msgid "c-om"
5095
  msgstr "Oman"
5096
 
5097
  # Pakistan
5098
- #: ../../admin/view/wp-slimstat-reports.php:912
5099
  msgid "c-pk"
5100
  msgstr "Pakistan"
5101
 
5102
  # Palau
5103
- #: ../../admin/view/wp-slimstat-reports.php:912
5104
  msgid "c-pw"
5105
  msgstr "Palau"
5106
 
5107
  # Occupied Palestinian Territory
5108
- #: ../../admin/view/wp-slimstat-reports.php:912
5109
  msgid "c-ps"
5110
  msgstr "Palestina"
5111
 
5112
  # Panama
5113
- #: ../../admin/view/wp-slimstat-reports.php:912
5114
  msgid "c-pa"
5115
  msgstr "Panama"
5116
 
5117
  # Papua New Guinea
5118
- #: ../../admin/view/wp-slimstat-reports.php:912
5119
  msgid "c-pg"
5120
  msgstr "Papua Nya Guinea"
5121
 
5122
  # Paraguay
5123
- #: ../../admin/view/wp-slimstat-reports.php:912
5124
  msgid "c-py"
5125
  msgstr "Paraguay"
5126
 
5127
  # Peru
5128
- #: ../../admin/view/wp-slimstat-reports.php:912
5129
  msgid "c-pe"
5130
  msgstr "Peru"
5131
 
5132
  # Philippines
5133
- #: ../../admin/view/wp-slimstat-reports.php:912
5134
  msgid "c-ph"
5135
  msgstr "Filippinerna"
5136
 
5137
  # Poland
5138
- #: ../../admin/view/wp-slimstat-reports.php:912
5139
  msgid "c-pl"
5140
  msgstr "Poland"
5141
 
5142
  # Portugal
5143
- #: ../../admin/view/wp-slimstat-reports.php:912
5144
  msgid "c-pt"
5145
  msgstr "Portugal"
5146
 
5147
  # Puerto Rico
5148
- #: ../../admin/view/wp-slimstat-reports.php:912
5149
  msgid "c-pr"
5150
  msgstr "Puerto Rico"
5151
 
5152
  # Qatar
5153
- #: ../../admin/view/wp-slimstat-reports.php:912
5154
  msgid "c-qa"
5155
  msgstr "Qatar"
5156
 
5157
  # Réunion
5158
- #: ../../admin/view/wp-slimstat-reports.php:912
5159
  msgid "c-re"
5160
  msgstr "Réunion"
5161
 
5162
  # Romania
5163
- #: ../../admin/view/wp-slimstat-reports.php:912
5164
  msgid "c-ro"
5165
  msgstr "Romanien"
5166
 
5167
  # Russian Federation
5168
- #: ../../admin/view/wp-slimstat-reports.php:912
5169
  msgid "c-ru"
5170
  msgstr "Ryska federationen"
5171
 
5172
  # Rwanda
5173
- #: ../../admin/view/wp-slimstat-reports.php:912
5174
  msgid "c-rw"
5175
  msgstr "Rwanda"
5176
 
5177
  # Saint Kitts and Nevis
5178
- #: ../../admin/view/wp-slimstat-reports.php:912
5179
  msgid "c-kn"
5180
  msgstr "Saint Kitts and Nevis"
5181
 
5182
  # Saint Lucia
5183
- #: ../../admin/view/wp-slimstat-reports.php:912
5184
  msgid "c-lc"
5185
  msgstr "Saint Lucia"
5186
 
5187
  # Saint Martin
5188
- #: ../../admin/view/wp-slimstat-reports.php:912
5189
  msgid "c-mf"
5190
  msgstr "Sint Maarten"
5191
 
5192
  # Saint Vincent and the Grenadines
5193
- #: ../../admin/view/wp-slimstat-reports.php:912
5194
  msgid "c-vc"
5195
  msgstr "Saint Vincent och Grenadinerna"
5196
 
5197
  # Samoa
5198
- #: ../../admin/view/wp-slimstat-reports.php:912
5199
  msgid "c-ws"
5200
  msgstr "Samoa"
5201
 
5202
  # Sao Tome and Principe
5203
- #: ../../admin/view/wp-slimstat-reports.php:912
5204
  msgid "c-st"
5205
  msgstr "São Tomé och Príncipe"
5206
 
5207
  # Saudi Arabia
5208
- #: ../../admin/view/wp-slimstat-reports.php:912
5209
  msgid "c-sa"
5210
  msgstr "Saudi Arabien"
5211
 
5212
  # Senegal
5213
- #: ../../admin/view/wp-slimstat-reports.php:912
5214
  msgid "c-sn"
5215
  msgstr "Senegal"
5216
 
5217
  # Serbia
5218
- #: ../../admin/view/wp-slimstat-reports.php:912
5219
  msgid "c-rs"
5220
  msgstr "Serbien"
5221
 
5222
  # Sierra Leone
5223
- #: ../../admin/view/wp-slimstat-reports.php:912
5224
  msgid "c-sl"
5225
  msgstr "Sierra Leone"
5226
 
5227
  # Singapore
5228
- #: ../../admin/view/wp-slimstat-reports.php:912
5229
  msgid "c-sg"
5230
  msgstr "Singapore"
5231
 
5232
  # Slovakia
5233
- #: ../../admin/view/wp-slimstat-reports.php:912
5234
  msgid "c-sk"
5235
  msgstr "Slovakien"
5236
 
5237
  # Slovenia
5238
- #: ../../admin/view/wp-slimstat-reports.php:912
5239
  msgid "c-si"
5240
  msgstr "Slovenien"
5241
 
5242
  # Solomon Islands
5243
- #: ../../admin/view/wp-slimstat-reports.php:912
5244
  msgid "c-sb"
5245
  msgstr "Solomonöarna"
5246
 
5247
  # Somalia
5248
- #: ../../admin/view/wp-slimstat-reports.php:912
5249
  msgid "c-so"
5250
  msgstr "Somalia"
5251
 
5252
  # South Africa
5253
- #: ../../admin/view/wp-slimstat-reports.php:912
5254
  msgid "c-za"
5255
  msgstr "Sydafrika"
5256
 
5257
  # South Georgia and the South Sandwich Islands
5258
- #: ../../admin/view/wp-slimstat-reports.php:912
5259
  msgid "c-gs"
5260
  msgstr "Sydgeorgien och Sydsandwichöarna"
5261
 
5262
  # Spain
5263
- #: ../../admin/view/wp-slimstat-reports.php:912
5264
  msgid "c-es"
5265
  msgstr "Spanien"
5266
 
5267
  # Sri Lanka
5268
- #: ../../admin/view/wp-slimstat-reports.php:912
5269
  msgid "c-lk"
5270
  msgstr "Sri Lanka"
5271
 
 
 
 
 
5272
  # Sudan
5273
- #: ../../admin/view/wp-slimstat-reports.php:912
5274
  msgid "c-sd"
5275
  msgstr "Sudan"
5276
 
5277
- #: ../../admin/view/wp-slimstat-reports.php:912
5278
  msgid "c-ss"
5279
  msgstr "Södra Sudan"
5280
 
5281
  # Suriname
5282
- #: ../../admin/view/wp-slimstat-reports.php:912
5283
  msgid "c-sr"
5284
  msgstr "Suriname"
5285
 
5286
  # Svalbard and Jan Mayen
5287
- #: ../../admin/view/wp-slimstat-reports.php:912
5288
  msgid "c-sj"
5289
  msgstr "Svalbard och Jan Mayen"
5290
 
5291
  # Swaziland
5292
- #: ../../admin/view/wp-slimstat-reports.php:912
5293
  msgid "c-sz"
5294
  msgstr "Swaziland"
5295
 
5296
  # Sweden
5297
- #: ../../admin/view/wp-slimstat-reports.php:912
5298
  msgid "c-se"
5299
  msgstr "Sverige"
5300
 
5301
  # Switzerland
5302
- #: ../../admin/view/wp-slimstat-reports.php:912
5303
  msgid "c-ch"
5304
  msgstr "Schweiz"
5305
 
5306
  # Syrian Arab Republic
5307
- #: ../../admin/view/wp-slimstat-reports.php:912
5308
  msgid "c-sy"
5309
  msgstr "Syrien"
5310
 
5311
  # Taiwan, Province of China
5312
- #: ../../admin/view/wp-slimstat-reports.php:912
5313
  msgid "c-tw"
5314
  msgstr "Taiwan"
5315
 
5316
  # Tajikistan
5317
- #: ../../admin/view/wp-slimstat-reports.php:912
5318
  msgid "c-tj"
5319
  msgstr "Tadzjikistan"
5320
 
5321
  # United Republic of Tanzania
5322
- #: ../../admin/view/wp-slimstat-reports.php:912
5323
  msgid "c-tz"
5324
  msgstr "Tanzania, Förenade republiken"
5325
 
5326
  # Thailand
5327
- #: ../../admin/view/wp-slimstat-reports.php:912
5328
  msgid "c-th"
5329
  msgstr "Thailand"
5330
 
5331
  # Timor-Leste
5332
- #: ../../admin/view/wp-slimstat-reports.php:912
5333
  msgid "c-tl"
5334
  msgstr "Timor-Leste (Östtimor)"
5335
 
5336
  # Togo
5337
- #: ../../admin/view/wp-slimstat-reports.php:912
5338
  msgid "c-tg"
5339
  msgstr "Togo"
5340
 
5341
  # Tonga
5342
- #: ../../admin/view/wp-slimstat-reports.php:912
5343
  msgid "c-to"
5344
  msgstr "Tonga"
5345
 
5346
  # Trinidad and Tobago
5347
- #: ../../admin/view/wp-slimstat-reports.php:912
5348
  msgid "c-tt"
5349
  msgstr "Trinidad och Tobago"
5350
 
5351
  # Tunisia
5352
- #: ../../admin/view/wp-slimstat-reports.php:912
5353
  msgid "c-tn"
5354
  msgstr "Tunisien"
5355
 
5356
  # Turkey
5357
- #: ../../admin/view/wp-slimstat-reports.php:912
5358
  msgid "c-tr"
5359
  msgstr "Turkiet"
5360
 
5361
  # Turkmenistan
5362
- #: ../../admin/view/wp-slimstat-reports.php:912
5363
  msgid "c-tm"
5364
  msgstr "Turkmenistan"
5365
 
5366
  # Turks and Caicos Islands
5367
- #: ../../admin/view/wp-slimstat-reports.php:912
5368
  msgid "c-tc"
5369
  msgstr "Turks- och Caicosöarna"
5370
 
5371
  # Uganda
5372
- #: ../../admin/view/wp-slimstat-reports.php:912
5373
  msgid "c-ug"
5374
  msgstr "Uganda"
5375
 
5376
  # Ukraine
5377
- #: ../../admin/view/wp-slimstat-reports.php:912
5378
  msgid "c-ua"
5379
  msgstr "Ukraina"
5380
 
5381
  # United Arab Emirates
5382
- #: ../../admin/view/wp-slimstat-reports.php:912
5383
  msgid "c-ae"
5384
  msgstr "Förenade Arabemiraten"
5385
 
5386
  # United Kingdom
5387
- #: ../../admin/view/wp-slimstat-reports.php:912
5388
  msgid "c-gb"
5389
  msgstr "Storbritanien"
5390
 
5391
  # United States
5392
- #: ../../admin/view/wp-slimstat-reports.php:912
5393
  msgid "c-us"
5394
  msgstr "Amerikas förenta stater"
5395
 
5396
  # Uruguay
5397
- #: ../../admin/view/wp-slimstat-reports.php:912
5398
  msgid "c-uy"
5399
  msgstr "Uruguay"
5400
 
5401
  # Uzbekistan
5402
- #: ../../admin/view/wp-slimstat-reports.php:912
5403
  msgid "c-uz"
5404
  msgstr "Uzbekistan"
5405
 
5406
  # Vanuatu
5407
- #: ../../admin/view/wp-slimstat-reports.php:912
5408
  msgid "c-vu"
5409
  msgstr "Vanuatu"
5410
 
5411
  # Venezuela
5412
- #: ../../admin/view/wp-slimstat-reports.php:912
5413
  msgid "c-ve"
5414
  msgstr "Venezuela"
5415
 
5416
  # Viet Nam
5417
- #: ../../admin/view/wp-slimstat-reports.php:912
5418
  msgid "c-vn"
5419
  msgstr "Vietnam"
5420
 
5421
  # British Virgin Islands
5422
- #: ../../admin/view/wp-slimstat-reports.php:912
5423
  msgid "c-vg"
5424
  msgstr "Jungfruöarna, Brittiska "
5425
 
5426
  # U.S. Virgin Islands
5427
- #: ../../admin/view/wp-slimstat-reports.php:912
5428
  msgid "c-vi"
5429
  msgstr "Jungfruöarna, Amerikanska"
5430
 
5431
  # Western Sahara
5432
- #: ../../admin/view/wp-slimstat-reports.php:912
5433
  msgid "c-eh"
5434
  msgstr "Väst Sahara"
5435
 
5436
  # Yemen
5437
- #: ../../admin/view/wp-slimstat-reports.php:912
5438
  msgid "c-ye"
5439
  msgstr "Jemen"
5440
 
5441
  # Zambia
5442
- #: ../../admin/view/wp-slimstat-reports.php:912
5443
  msgid "c-zm"
5444
  msgstr "Zambia"
5445
 
5446
  # Zimbabwe
5447
- #: ../../admin/view/wp-slimstat-reports.php:912
5448
  msgid "c-zw"
5449
  msgstr "Zimbabwe"
5450
 
5451
  # Guernsey
5452
- #: ../../admin/view/wp-slimstat-reports.php:912
5453
  msgid "c-gg"
5454
  msgstr "Guernsey"
5455
 
5456
  # Jersey
5457
- #: ../../admin/view/wp-slimstat-reports.php:912
5458
  msgid "c-je"
5459
  msgstr "Jersey, Fögderiet"
5460
 
5461
  # Isle of Man
5462
- #: ../../admin/view/wp-slimstat-reports.php:912
5463
  msgid "c-im"
5464
  msgstr "Isle of Man"
5465
 
5466
  # Maldives
5467
- #: ../../admin/view/wp-slimstat-reports.php:912
5468
  msgid "c-mv"
5469
  msgstr "Maldiverna"
5470
 
5471
- #: ../../admin/view/wp-slimstat-reports.php:913
5472
  msgid "c-eu"
5473
  msgstr ""
5474
 
5475
- #: ../../admin/view/wp-slimstat-reports.php:1001
5476
  msgid ""
5477
  "This value includes not only posts, but also custom post types, regardless "
5478
  "of their status"
5479
  msgstr ""
5480
 
5481
- #: ../../admin/view/wp-slimstat-reports.php:1002
5482
  #, fuzzy
5483
  msgid "Content Items"
5484
  msgstr "Innehåll"
5485
 
5486
- #: ../../admin/view/wp-slimstat-reports.php:1003
5487
  msgid "Total Comments"
5488
  msgstr ""
5489
 
5490
- #: ../../admin/view/wp-slimstat-reports.php:1004
5491
  msgid "Pingbacks"
5492
  msgstr ""
5493
 
5494
- #: ../../admin/view/wp-slimstat-reports.php:1005
5495
  msgid "Trackbacks"
5496
  msgstr ""
5497
 
5498
  # @ wp-slimstat-view
5499
- #: ../../admin/view/wp-slimstat-reports.php:1006
5500
  #, fuzzy
5501
  msgid "Longest Post (ID)"
5502
  msgstr "Längsta besök"
5503
 
5504
- #: ../../admin/view/wp-slimstat-reports.php:1007
5505
  msgid "Longest Comment (ID)"
5506
  msgstr ""
5507
 
5508
  # @ wp-slimstat-options
5509
- #: ../../admin/view/wp-slimstat-reports.php:1008
5510
  #, fuzzy
5511
  msgid "Avg Comments Per Post"
5512
  msgstr "Lägg till kolumn för poster"
5513
 
5514
- #: ../../admin/view/wp-slimstat-reports.php:1009
5515
  msgid "Avg Posts Per Day"
5516
  msgstr ""
5517
 
5518
  # @ wp-slimstat-view
5519
- #: ../../admin/view/wp-slimstat-reports.php:1037
5520
  msgid "Visits"
5521
  msgstr "Besök"
5522
 
5523
  # @ wp-slimstat-view
5524
- #: ../../admin/view/wp-slimstat-reports.php:1041
5525
  msgid "Domains"
5526
  msgstr "Domäner"
5527
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5528
  # @ wp-slimstat-view
5529
  #~ msgid "Stats"
5530
  #~ msgstr "Stats"
@@ -5667,10 +5697,6 @@ msgstr "Domäner"
5667
  #~ "Visa värdnamn istället för IP-adresser. Det dämpar renderingen av dina "
5668
  #~ "mätningar."
5669
 
5670
- # @ wp-slimstat-options
5671
- #~ msgid "Limit Results to"
5672
- #~ msgstr "Begränsar resultatet till"
5673
-
5674
  # @ wp-slimstat-options
5675
  #~ msgid ""
5676
  #~ "Specify the number of results to return for each module. Please use a "
2
  msgstr ""
3
  "Project-Id-Version: WP Slim Stat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-01-29 22:00-0500\n"
6
+ "PO-Revision-Date: 2014-01-29 22:00-0500\n"
7
+ "Last-Translator: Get Used To IT <support@getused.to.it>\n"
8
  "Language-Team: Per Soderman <per.soderman@gmail.com>\n"
9
  "Language: sv_SE\n"
10
  "MIME-Version: 1.0\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: plurals=2; plural=1 != 1;\n"
16
+ "X-Generator: Poedit 1.6.3\n"
17
  "X-Poedit-SearchPath-0: ../..\n"
18
 
19
  # @ wp-slimstat-options
20
  # @ wp-slimstat-view
21
+ #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:402
22
+ #: ../../admin/view/wp-slimstat-reports.php:31
23
  msgid "Right Now"
24
  msgstr "Aktuella"
25
 
26
  # @ wp-slimstat-view
27
+ #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:403
28
+ #: ../../admin/wp-slimstat-admin.php:420
29
+ #: ../../admin/view/wp-slimstat-reports.php:32
30
  msgid "Overview"
31
  msgstr "Överblick"
32
 
33
+ #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:404
34
+ #: ../../admin/wp-slimstat-admin.php:421
35
+ #: ../../admin/view/wp-slimstat-reports.php:33
36
  msgid "Visitors"
37
  msgstr "Besökare"
38
 
39
+ #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:405
40
+ #: ../../admin/wp-slimstat-admin.php:422
41
+ #: ../../admin/view/wp-slimstat-reports.php:34
42
  msgid "Content"
43
  msgstr "Innehåll"
44
 
45
+ #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:406
46
+ #: ../../admin/wp-slimstat-admin.php:423 ../../admin/view/index.php:168
47
+ #: ../../admin/view/wp-slimstat-reports.php:35
48
  msgid "Traffic Sources"
49
  msgstr "Trafikkällor"
50
 
51
+ #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:407
52
+ #: ../../admin/wp-slimstat-admin.php:424
53
+ #: ../../admin/view/wp-slimstat-reports.php:36
54
+ #: ../../admin/view/wp-slimstat-reports.php:105
55
  msgid "World Map"
56
  msgstr "Världskarta"
57
 
58
+ #: ../../wp-slimstat.php:1183 ../../admin/wp-slimstat-admin.php:408
59
+ #: ../../admin/wp-slimstat-admin.php:425
60
+ #: ../../admin/view/wp-slimstat-reports.php:37
61
  msgid "Custom Reports"
62
  msgstr "Anpassade Rapporter"
63
 
64
+ #: ../../wp-slimstat.php:1184 ../../admin/wp-slimstat-admin.php:409
65
+ #: ../../admin/wp-slimstat-admin.php:426 ../../admin/config/addons.php:29
66
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:228
67
  msgid "Add-ons"
68
  msgstr "Tillägg "
69
 
70
+ #: ../../wp-slimstat.php:1187 ../../admin/wp-slimstat-admin.php:455
71
+ #: ../../admin/wp-slimstat-admin.php:458 ../../admin/wp-slimstat-admin.php:502
72
+ #: ../../admin/wp-slimstat-admin.php:505 ../../admin/config/index.php:14
73
+ #: ../../admin/config/index.php:135
74
  msgid "Settings"
75
  msgstr "Inställningar"
76
 
77
  # @ wp-slimstat-view
78
+ #: ../../admin/wp-slimstat-admin.php:401 ../../admin/wp-slimstat-admin.php:413
79
+ #: ../../admin/wp-slimstat-admin.php:416
80
  msgid "SlimStat"
81
  msgstr "SlimStat"
82
 
83
+ #: ../../admin/wp-slimstat-admin.php:519
84
  msgid "Pageviews in the last 365 days"
85
  msgstr ""
86
 
87
  # @ wp-slimstat-view
88
+ #: ../../admin/wp-slimstat-admin.php:543
89
  msgid "Show on screen"
90
  msgstr "Visa på skärm"
91
 
92
+ #: ../../admin/wp-slimstat-admin.php:571
93
+ msgid "Hide this notice"
94
+ msgstr ""
95
+
96
  # @ wp-slimstat-options
97
+ #: ../../admin/wp-slimstat-admin.php:598
98
  msgid "There was an error updating the following options:"
99
  msgstr "Ett fel uppstod vid uppdateringen av följande alternativ:"
100
 
101
  # @ wp-slimstat-options
102
+ #: ../../admin/wp-slimstat-admin.php:601
103
  msgid "Your settings have been successfully updated."
104
  msgstr "Dina inställningar har framgångsrikt uppdaterats"
105
 
106
  # @ default
107
+ #: ../../admin/wp-slimstat-admin.php:624
108
  msgid "Save Changes"
109
  msgstr "Spara ändringar"
110
 
111
  # @ wp-slimstat-options
112
+ #: ../../admin/wp-slimstat-admin.php:643
113
  msgid "Yes"
114
  msgstr "Ja"
115
 
116
+ #: ../../admin/wp-slimstat-admin.php:644
117
+ #: ../../admin/view/wp-slimstat-reports.php:747
118
  msgid "No"
119
  msgstr "Nej"
120
 
121
  # @ wp-slimstat-view
122
+ #: ../../admin/wp-slimstat-admin.php:684
123
  msgid ""
124
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
125
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
132
  "\">checka FAQs</a> för mer information."
133
 
134
  # @ wp-slimstat-view
135
+ #: ../../admin/wp-slimstat-admin.php:704
136
  msgid "Definitions"
137
  msgstr "Definitioner"
138
 
139
  # @ wp-slimstat-view
140
+ #: ../../admin/wp-slimstat-admin.php:707
141
  msgid "Pageview"
142
  msgstr "Sidvisning"
143
 
144
  # @ wp-slimstat-view
145
+ #: ../../admin/wp-slimstat-admin.php:707
146
  msgid ""
147
  "A request to load a single HTML file (\"page\"). This should be contrasted "
148
  "with a \"hit\", which refers to a request for any file from a web server. WP "
153
  "SlimStat loggar en sidvisning varje gång en spårkod körs "
154
 
155
  # @ wp-slimstat-view
156
+ #: ../../admin/wp-slimstat-admin.php:708
157
  msgid "(Human) Visit"
158
  msgstr "(Mänskliga) besök"
159
 
160
  # @ wp-slimstat-view
161
+ #: ../../admin/wp-slimstat-admin.php:708
162
  msgid ""
163
  "A period of interaction between a visitor's browser and your website, ending "
164
  "when the browser is closed or when the user has been inactive on that site "
169
  "denna plats i 30 minuter"
170
 
171
  # @ wp-slimstat-view
172
+ #: ../../admin/wp-slimstat-admin.php:709 ../../admin/view/index.php:140
173
+ #: ../../admin/view/right-now.php:149
174
  msgid "Known Visitor"
175
  msgstr "Känd besökare"
176
 
177
  # @ wp-slimstat-view
178
+ #: ../../admin/wp-slimstat-admin.php:709
179
  msgid ""
180
  "Any user who has left a comment on your blog, and is thus identified by "
181
  "Wordpress as a returning visitor"
184
  "identifierad av Wordpress som återkommande besökare"
185
 
186
  # @ wp-slimstat-view
187
+ #: ../../admin/wp-slimstat-admin.php:710
188
  msgid "Unique IP"
189
  msgstr "Unik IP"
190
 
191
  # @ wp-slimstat-view
192
+ #: ../../admin/wp-slimstat-admin.php:710
193
  msgid ""
194
  "Used to differentiate between multiple requests to download a file from one "
195
  "internet address (IP) and requests originating from many distinct addresses; "
202
  "sidvisning kom från, det är bra, men inte perfekt"
203
 
204
  # @ wp-slimstat-view
205
+ #: ../../admin/wp-slimstat-admin.php:711 ../../admin/wp-slimstat-admin.php:753
206
+ #: ../../admin/view/right-now.php:99 ../../admin/view/wp-slimstat-db.php:79
 
207
  msgid "Originating IP"
208
  msgstr "Ursprungs IP"
209
 
210
  # @ wp-slimstat-view
211
+ #: ../../admin/wp-slimstat-admin.php:711
212
  msgid ""
213
  "the originating IP address of a client connecting to a web server through an "
214
  "HTTP proxy or load balancer"
217
  "eller balanserad laddning"
218
 
219
  # @ wp-slimstat-view
220
+ #: ../../admin/wp-slimstat-admin.php:712
221
  msgid "Direct Traffic"
222
  msgstr "Direkt Trafik"
223
 
224
  # @ wp-slimstat-view
225
+ #: ../../admin/wp-slimstat-admin.php:712
226
  msgid ""
227
  "All those people showing up to your Web site by typing in the URL of your "
228
  "Web site coming or from a bookmark; some people also call this \"default "
233
  "detta \\ \\\"standard trafik\" eller \\ \\\"omgivande trafik\" "
234
 
235
  # @ wp-slimstat-view
236
+ #: ../../admin/wp-slimstat-admin.php:713
237
  msgid "Search Engine"
238
  msgstr "Sökmotor"
239
 
240
  # @ wp-slimstat-view
241
+ #: ../../admin/wp-slimstat-admin.php:713
242
  msgid ""
243
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
244
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
249
 
250
  # @ wp-slimstat-options
251
  # @ wp-slimstat-view
252
+ #: ../../admin/wp-slimstat-admin.php:714 ../../admin/wp-slimstat-admin.php:730
253
+ #: ../../admin/view/right-now.php:128 ../../admin/view/wp-slimstat-db.php:60
 
254
  msgid "Search Terms"
255
  msgstr "Söktermer"
256
 
257
  # @ wp-slimstat-view
258
+ #: ../../admin/wp-slimstat-admin.php:714 ../../admin/wp-slimstat-admin.php:730
259
  msgid "Keywords used by your visitors to find your website on a search engine"
260
  msgstr ""
261
  "Nyckelord som dina besökare använder för att hitta din webbplats på en "
262
  "sökmotor"
263
 
264
  # @ wp-slimstat-view
265
+ #: ../../admin/wp-slimstat-admin.php:715
266
  msgid "SERP"
267
  msgstr "SERP"
268
 
269
  # @ wp-slimstat-view
270
+ #: ../../admin/wp-slimstat-admin.php:715
271
  msgid ""
272
  "Short for search engine results page, the Web page that a search engine "
273
  "returns with the results of its search. The value shown represents your rank "
278
  "position) i den förteckning av resultat"
279
 
280
  # @ wp-slimstat-view
281
+ #: ../../admin/wp-slimstat-admin.php:716
282
+ #: ../../admin/view/wp-slimstat-db.php:72
283
  msgid "User Agent"
284
  msgstr "User Agent"
285
 
286
  # @ wp-slimstat-view
287
+ #: ../../admin/wp-slimstat-admin.php:716
288
  msgid ""
289
  "Any program used for accessing a website; this includes browsers, robots, "
290
  "spiders and any other program that was used to retrieve information from the "
295
  "att hämta information från sajten"
296
 
297
  # @ wp-slimstat-view
298
+ #: ../../admin/wp-slimstat-admin.php:717
299
+ #: ../../admin/view/wp-slimstat-db.php:76
300
  msgid "Outbound Link"
301
  msgstr "Utgående Länk"
302
 
303
  # @ wp-slimstat-view
304
+ #: ../../admin/wp-slimstat-admin.php:717
305
  msgid ""
306
  "A link from one domain to another is said to be outbound from its source "
307
  "anchor and inbound to its target. This report lists all the links to other "
312
  "webbplatser följt av dina besökare. "
313
 
314
  # @ wp-slimstat-view
315
+ #: ../../admin/wp-slimstat-admin.php:724
316
  msgid "Basic Filters"
317
  msgstr "Grundläggande filter"
318
 
319
+ #: ../../admin/wp-slimstat-admin.php:727
320
+ #: ../../admin/view/wp-slimstat-db.php:57
321
  msgid "Browser"
322
  msgstr "Webbläsare"
323
 
324
  # @ wp-slimstat-view
325
+ #: ../../admin/wp-slimstat-admin.php:727
326
  msgid "User agent (Firefox, Chrome, ...)"
327
  msgstr "User agent (Firefox, Chrome, ...)"
328
 
329
  # @ wp-slimstat-options
330
  # @ wp-slimstat-view
331
+ #: ../../admin/wp-slimstat-admin.php:728
332
+ #: ../../admin/view/wp-slimstat-db.php:58
333
+ #: ../../admin/view/wp-slimstat-reports.php:469
334
  msgid "Country Code"
335
  msgstr "Landskod"
336
 
337
  # @ wp-slimstat-view
338
+ #: ../../admin/wp-slimstat-admin.php:728
339
  msgid "2-letter code (us, ru, de, it, ...)"
340
  msgstr "2-bokstavskod (us, ru, de, it, ...)"
341
 
342
+ #: ../../admin/wp-slimstat-admin.php:729
343
  msgid "IP"
344
  msgstr "IP"
345
 
346
+ #: ../../admin/wp-slimstat-admin.php:729
347
  msgid "Visitor's public IP address"
348
  msgstr "Besökares publika IP adress"
349
 
350
  # @ wp-slimstat-options
351
  # @ wp-slimstat-view
352
+ #: ../../admin/wp-slimstat-admin.php:731
353
+ #: ../../admin/view/wp-slimstat-db.php:61
354
+ #: ../../admin/view/wp-slimstat-reports.php:481
355
  msgid "Language Code"
356
  msgstr "Språkkod"
357
 
358
  # @ wp-slimstat-view
359
+ #: ../../admin/wp-slimstat-admin.php:731
360
  msgid ""
361
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
362
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
367
  "kolumnen) för mer information"
368
 
369
  # @ wp-slimstat-view
370
+ #: ../../admin/wp-slimstat-admin.php:732
371
+ #: ../../admin/view/wp-slimstat-db.php:62
372
  msgid "Operating System"
373
  msgstr "Operativsystem"
374
 
375
  # @ wp-slimstat-view
376
+ #: ../../admin/wp-slimstat-admin.php:732
377
  msgid ""
378
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
379
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
385
 
386
  # @ wp-slimstat-options
387
  # @ wp-slimstat-view
388
+ #: ../../admin/wp-slimstat-admin.php:733
389
+ #: ../../admin/view/wp-slimstat-db.php:63
390
  msgid "Permalink"
391
  msgstr "Permalänk"
392
 
393
  # @ wp-slimstat-view
394
+ #: ../../admin/wp-slimstat-admin.php:733
395
  msgid "URL accessed on your site"
396
  msgstr "URL accessed på din webbplats"
397
 
398
  # @ wp-slimstat-view
399
+ #: ../../admin/wp-slimstat-admin.php:734
400
+ #: ../../admin/view/wp-slimstat-db.php:65
401
  msgid "Referer"
402
  msgstr "Referera till"
403
 
404
  # @ wp-slimstat-view
405
+ #: ../../admin/wp-slimstat-admin.php:734
406
  msgid "Complete address of the referrer page"
407
  msgstr "Fullständig adress till referrersida"
408
 
409
  # @ wp-slimstat-view
410
+ #: ../../admin/wp-slimstat-admin.php:735
411
+ #: ../../admin/view/wp-slimstat-db.php:66
412
  msgid "Visitor's Name"
413
  msgstr "Besökares namn"
414
 
415
  # @ wp-slimstat-view
416
+ #: ../../admin/wp-slimstat-admin.php:735
417
  msgid ""
418
  "Visitors' names according to the cookie set by Wordpress after they leave a "
419
  "comment"
421
  "Besökarens namn enligt den cookie som Wordpress när de lämnar en kommentar"
422
 
423
  # @ wp-slimstat-view
424
+ #: ../../admin/wp-slimstat-admin.php:743
425
  msgid "Advanced Filters"
426
  msgstr "Avancerat filter"
427
 
428
  # @ wp-slimstat-view
429
+ #: ../../admin/wp-slimstat-admin.php:746
430
+ #: ../../admin/view/wp-slimstat-db.php:70
431
  msgid "Browser Version"
432
  msgstr "Webbläsarversion"
433
 
434
  # @ wp-slimstat-view
435
+ #: ../../admin/wp-slimstat-admin.php:746
436
  msgid "user agent version (9.0, 11, ...)"
437
  msgstr "user agent version (9.0, 11, ...)"
438
 
439
+ #: ../../admin/wp-slimstat-admin.php:747
440
+ #: ../../admin/view/wp-slimstat-db.php:71
441
  msgid "Browser Type"
442
  msgstr "Typ av Browser"
443
 
444
  # @ wp-slimstat-view
445
+ #: ../../admin/wp-slimstat-admin.php:747
446
  msgid ""
447
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
448
  "all others"
451
  "andra"
452
 
453
  # @ wp-slimstat-view
454
+ #: ../../admin/wp-slimstat-admin.php:748
455
+ #: ../../admin/view/wp-slimstat-db.php:73
456
  msgid "Color Depth"
457
  msgstr "Färgdjup"
458
 
459
  # @ wp-slimstat-view
460
+ #: ../../admin/wp-slimstat-admin.php:748
461
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
462
  msgstr "Besökarens skärm färgdjup (8, 16, 24, ...)"
463
 
464
  # @ wp-slimstat-view
465
+ #: ../../admin/wp-slimstat-admin.php:749
466
+ #: ../../admin/view/wp-slimstat-db.php:74
467
  msgid "CSS Version"
468
  msgstr "CSS version"
469
 
470
  # @ wp-slimstat-view
471
+ #: ../../admin/wp-slimstat-admin.php:749
472
  msgid ""
473
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
474
  "values)"
475
  msgstr "CSS-standard som stöds av browser (1, 2, 3 och andra heltal)"
476
 
477
  # @ wp-slimstat-view
478
+ #: ../../admin/wp-slimstat-admin.php:750
479
+ #: ../../admin/view/wp-slimstat-db.php:75
480
  msgid "Pageview Attributes"
481
  msgstr "Sidvisnings attributer"
482
 
483
  # @ wp-slimstat-view
484
+ #: ../../admin/wp-slimstat-admin.php:750
485
  msgid ""
486
  "this field is set to <em>[pre]</em> if the resource has been accessed "
487
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
492
  "Link_prefetching_FAQ\">Link Prefetching</a> eller linknande tekniker"
493
 
494
  # @ wp-slimstat-view
495
+ #: ../../admin/wp-slimstat-admin.php:751
496
+ #: ../../admin/view/wp-slimstat-db.php:77
497
  msgid "Post Author"
498
  msgstr "Postförfattare"
499
 
500
  # @ wp-slimstat-view
501
+ #: ../../admin/wp-slimstat-admin.php:751
502
  msgid "author associated to that post/page when the resource was accessed"
503
  msgstr "författaren är associerad med den post/sida när resursen var accessad"
504
 
505
  # @ wp-slimstat-view
506
+ #: ../../admin/wp-slimstat-admin.php:752
507
+ #: ../../admin/view/wp-slimstat-db.php:78
508
  msgid "Post Category ID"
509
  msgstr "Postkategori ID"
510
 
511
  # @ wp-slimstat-view
512
+ #: ../../admin/wp-slimstat-admin.php:752
513
  msgid "ID of the category/term associated to the resource, when available"
514
  msgstr ""
515
  "ID-numret för den kategori/sikt kopplat till resursen, när tillgängliga"
516
 
517
  # @ wp-slimstat-view
518
+ #: ../../admin/wp-slimstat-admin.php:753
519
  msgid "visitor's originating IP address, if available"
520
  msgstr "besökarens IP-adress, om tillgänglig "
521
 
522
  # @ wp-slimstat-view
523
+ #: ../../admin/wp-slimstat-admin.php:754
524
+ #: ../../admin/view/wp-slimstat-db.php:80
525
  msgid "Resource Content Type"
526
  msgstr "Resurs innehållstyp"
527
 
528
  # @ wp-slimstat-view
529
+ #: ../../admin/wp-slimstat-admin.php:754
530
  msgid ""
531
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
532
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
540
  "Conditional_Tags\">Villkorliga taggar manual</a> för mer information "
541
 
542
  # @ wp-slimstat-view
543
+ #: ../../admin/wp-slimstat-admin.php:755
544
+ #: ../../admin/view/wp-slimstat-db.php:82
545
  msgid "Screen Resolution"
546
  msgstr "Skärmupplösning"
547
 
548
  # @ wp-slimstat-view
549
+ #: ../../admin/wp-slimstat-admin.php:755
550
  msgid "viewport width and height (1024x768, 800x600, ...)"
551
  msgstr "Upplösning bredd och höjd (1024x768, 800x600, ...)"
552
 
553
  # @ wp-slimstat-view
554
+ #: ../../admin/wp-slimstat-admin.php:756
555
+ #: ../../admin/view/wp-slimstat-db.php:83
556
  msgid "Visit ID"
557
  msgstr "Besök ID"
558
 
559
  # @ wp-slimstat-view
560
+ #: ../../admin/wp-slimstat-admin.php:756
561
  msgid ""
562
  "generally used in conjunction with <em>is not empty</em>, identifies human "
563
  "visitors"
566
  "mänskliga besökare"
567
 
568
  # @ wp-slimstat-view
569
+ #: ../../admin/wp-slimstat-admin.php:757
570
  msgid "Date Filters"
571
  msgstr "Datum Filter"
572
 
573
  # @ wp-slimstat-view
574
+ #: ../../admin/wp-slimstat-admin.php:757
575
  msgid ""
576
  "you can specify the timeframe by entering a number in the <em>interval</em> "
577
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
581
  "em>; använd -1 för att ange <em>till datum</em> (dvs dagen=1, månad=1 "
582
  "år=tomt intervall=-1 ställs ett år-till-datum filter)"
583
 
584
+ #: ../../admin/wp-slimstat-admin.php:758
585
  msgid "SERP Position"
586
  msgstr "SERP Position"
587
 
588
+ #: ../../admin/wp-slimstat-admin.php:758
589
  msgid ""
590
  "set the filter to Referer contains cd=N&, where N is the position you are "
591
  "looking for"
592
  msgstr ""
593
  "sätt filter till Referer innehåller cd=N&, där N är positionen du letar efter"
594
 
595
+ #: ../../admin/wp-slimstat-admin.php:767
596
  msgid ""
597
  " And for keeping an eye on your visitors with <a href=\"http://slimstat."
598
  "getused.to.it/\">WP SlimStat</a>."
640
  msgstr "Beskrivning"
641
 
642
  # @ wp-slimstat-options
643
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:18
644
  msgid "General"
645
  msgstr "Allmänt"
646
 
647
  # @ wp-slimstat-options
648
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:44
649
  msgid "Views"
650
  msgstr "Översikt"
651
 
652
  # @ wp-slimstat-options
653
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:64
654
  msgid "Filters"
655
  msgstr "Filter"
656
 
657
  # @ wp-slimstat-options
658
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:128
659
  msgid "Permissions"
660
  msgstr "Behörigheter"
661
 
662
  # @ wp-slimstat-options
663
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:205
664
  msgid "Advanced"
665
  msgstr "Avancerad"
666
 
670
  msgstr "Underhåll"
671
 
672
  # @ wp-slimstat-options
673
+ #: ../../admin/config/index.php:20 ../../admin/config/index.php:207
674
  #, fuzzy
675
  msgid "Tracker"
676
  msgstr "Spåra användare"
677
 
678
  # @ wp-slimstat-options
679
+ #: ../../admin/config/index.php:21
680
  #, fuzzy
681
  msgid "Enable Tracking"
682
  msgstr "Aktivera spårning"
683
 
684
+ #: ../../admin/config/index.php:21
685
  msgid ""
686
  "Turn the tracker on or off, but keep the reports accessible (which you would "
687
  "not have, if you just disabled the plugin)."
688
  msgstr ""
689
 
690
  # @ wp-slimstat-view
691
+ #: ../../admin/config/index.php:22
692
  #, fuzzy
693
  msgid "Monitor Admin Pages"
694
  msgstr "Till Adminpanelen"
695
 
696
  # @ wp-slimstat-options
697
+ #: ../../admin/config/index.php:22
698
  #, fuzzy
699
  msgid "Enable this option to track your users' activity within the admin."
700
  msgstr ""
701
  "Aktivera det här alternativet om du vill att dina författare skall endast se "
702
  "statistik relaterad till sitt eget innehåll."
703
 
704
+ #: ../../admin/config/index.php:23
705
  msgid "Enable Spy Mode"
706
  msgstr ""
707
 
708
  # @ wp-slimstat-options
709
+ #: ../../admin/config/index.php:23
710
  #, fuzzy
711
  msgid ""
712
  "Collect information about screen resolutions, outbound links, downloads, "
719
  "sätter för detta val."
720
 
721
  # @ wp-slimstat-view
722
+ #: ../../admin/config/index.php:24
723
  #, fuzzy
724
  msgid "Tracking Mode"
725
  msgstr "Spårning Aktiv"
726
 
727
  # @ wp-slimstat-options
728
+ #: ../../admin/config/index.php:24
729
  #, fuzzy
730
  msgid ""
731
  "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
742
 
743
  # @ wp-slimstat-options
744
  # @ wp-slimstat-view
745
+ #: ../../admin/config/index.php:24
746
  #, fuzzy
747
  msgid "Javascript"
748
  msgstr "Javascript-läge"
749
 
750
+ #: ../../admin/config/index.php:24
751
  msgid "Server-side"
752
  msgstr ""
753
 
754
+ #: ../../admin/config/index.php:26
755
  msgid "WordPress Integration"
756
  msgstr ""
757
 
758
+ #: ../../admin/config/index.php:27
759
  msgid "Menu Position"
760
  msgstr "Meny Position"
761
 
762
  # @ wp-slimstat-options
763
+ #: ../../admin/config/index.php:27
764
  #, fuzzy
765
  msgid ""
766
  "Choose between a standalone admin menu for WP SlimStat or a drop down in the "
768
  msgstr ""
769
  "Avgör om du vill ha en fristående admin-meny för WP Slimstat eller inte."
770
 
771
+ #: ../../admin/config/index.php:27
772
  msgid "Side Menu"
773
  msgstr "Sido Meny"
774
 
775
+ #: ../../admin/config/index.php:27
776
  msgid "Admin Bar"
777
  msgstr "Admin Bar"
778
 
779
  # @ wp-slimstat-options
780
+ #: ../../admin/config/index.php:28
781
  #, fuzzy
782
  msgid "Add Stats to Posts"
783
  msgstr "Lägg till kolumn för poster"
784
 
785
  # @ wp-slimstat-options
786
+ #: ../../admin/config/index.php:28
787
  #, fuzzy
788
  msgid ""
789
  "Add a new column to the Edit Posts screen, with the number of hits per post."
791
  "Lägger till en ny kolumn till Redigera Poster, med antal träffar per post "
792
  "(kan påverka sidåtergivningen)."
793
 
794
+ #: ../../admin/config/index.php:30
795
  msgid "Database"
796
  msgstr ""
797
 
798
+ #: ../../admin/config/index.php:31
799
  msgid "Retain data for"
800
  msgstr ""
801
 
802
+ #: ../../admin/config/index.php:31
803
  msgid ""
804
  "Delete log entries older than the number of days specified here above. Enter "
805
  "<strong>0</strong> (number zero) if you want to preserve your data "
807
  msgstr ""
808
 
809
  # @ wp-slimstat-options
810
+ #: ../../admin/config/index.php:31
811
  msgid "Next clean-up on"
812
  msgstr "Nästa rensning på"
813
 
814
  # @ wp-slimstat-view
815
+ #: ../../admin/config/index.php:31
816
  #, fuzzy, php-format
817
  msgid "Entries logged on or before %s will be permanently deleted."
818
  msgstr "Poster registrerade på eller innan %s kommer att tas bort permanent. "
819
 
820
  # @ wp-slimstat-options
821
  # @ wp-slimstat-view
822
+ #: ../../admin/config/index.php:31 ../../admin/view/index.php:77
823
+ #: ../../admin/view/wp-slimstat-db.php:90
824
+ #: ../../admin/view/wp-slimstat-reports.php:747
825
  msgid "days"
826
  msgstr "Dagar"
827
 
828
  # @ wp-slimstat-options
829
+ #: ../../admin/config/index.php:46
830
  #, fuzzy
831
  msgid "Data and Formats"
832
  msgstr "Databasinformation"
833
 
834
  # @ wp-slimstat-options
835
+ #: ../../admin/config/index.php:47
836
  msgid "Convert IP Addresses"
837
  msgstr "Konvertera IP-adresser"
838
 
839
+ #: ../../admin/config/index.php:47
840
  msgid "Display provider names instead of IP addresses."
841
  msgstr ""
842
 
843
  # @ wp-slimstat-options
844
+ #: ../../admin/config/index.php:48
845
  msgid "Number Format"
846
  msgstr "Numeriskt format"
847
 
848
  # @ wp-slimstat-options
849
+ #: ../../admin/config/index.php:48
850
  #, fuzzy
851
  msgid ""
852
  "Choose the number format you want to use for your reports, European or "
854
  msgstr ""
855
  "Välj vilken nummerformat du vill använda, Europeiska eller Amerikanska."
856
 
857
+ #: ../../admin/config/index.php:49
858
  msgid "Show Display Name"
859
  msgstr "Visa smeknamnetnamnet"
860
 
861
+ #: ../../admin/config/index.php:49
862
  #, fuzzy
863
  msgid ""
864
  "By default, users are listed by their usernames. Use this option to "
868
  "alternativ för att växla till sina visningsnamn istället."
869
 
870
  # @ wp-slimstat-view
871
+ #: ../../admin/config/index.php:50
872
  msgid "Show User Agent"
873
  msgstr " Visa användar Agent"
874
 
875
+ #: ../../admin/config/index.php:50
876
  msgid ""
877
  "Choose if you want to see the browser name or a complete user agent string "
878
  "when hovering on browser icons."
880
  "Välj om du vill se webbläsarens namn eller en komplett user agent string när "
881
  "surfar på webbläsars ikoner."
882
 
883
+ #: ../../admin/config/index.php:51
884
  msgid "Show Titles"
885
  msgstr ""
886
 
887
+ #: ../../admin/config/index.php:51
888
  msgid ""
889
  "WP SlimStat converts your permalinks into post and page titles. Disable this "
890
  "feature if you need to see the URL in your reports."
891
  msgstr ""
892
 
893
+ #: ../../admin/config/index.php:53
894
  msgid "Functionality"
895
  msgstr ""
896
 
897
  # @ wp-slimstat-options
898
+ #: ../../admin/config/index.php:54
899
  msgid "Asynchronous Views"
900
  msgstr "Asynkron visning"
901
 
902
  # @ wp-slimstat-options
903
+ #: ../../admin/config/index.php:54
904
  #, fuzzy
905
  msgid ""
906
  "Load all the reports dynamically. It makes the reports render faster, but it "
910
  "visas upp snabbare, men det ökar belastningen på din server."
911
 
912
  # @ wp-slimstat-view
913
+ #: ../../admin/config/index.php:55
914
  msgid "Expand Details"
915
  msgstr "Expandera Detaljer"
916
 
917
+ #: ../../admin/config/index.php:55
918
  msgid "Expand each row's details by default, insted of on mousehover."
919
  msgstr "Expandera varje rads detaljer som default istället för mousehover"
920
 
921
  # @ wp-slimstat-view
922
+ #: ../../admin/config/index.php:56 ../../admin/config/index.php:60
923
  #, fuzzy
924
  msgid "Rows to Display"
925
  msgstr "Inget data att visa"
926
 
927
+ #: ../../admin/config/index.php:56
928
  msgid "Specify the number of items in each report."
929
  msgstr ""
930
 
931
  # @ wp-slimstat-options
932
  # @ wp-slimstat-view
933
+ #: ../../admin/config/index.php:58
934
  #, fuzzy
935
  msgid "Right Now Screen"
936
  msgstr "Aktuella"
937
 
938
+ #: ../../admin/config/index.php:59
939
  msgid "Live Stream"
940
  msgstr ""
941
 
942
  # @ wp-slimstat-options
943
+ #: ../../admin/config/index.php:59
944
  #, fuzzy
945
  msgid ""
946
  "Enable the Live view, which refreshes the Right Now screen every X seconds. "
948
  msgstr "Uppdatera Aktuella varje X sekunder. Noll inaktiverar funktionen. "
949
 
950
  # @ wp-slimstat-options
951
+ #: ../../admin/config/index.php:59 ../../admin/config/index.php:210
952
  msgid "seconds"
953
  msgstr "Sekunder"
954
 
955
+ #: ../../admin/config/index.php:60
956
  msgid "Specify the number of items in Right Now."
957
  msgstr ""
958
 
959
  # @ wp-slimstat-options
960
  # @ wp-slimstat-view
961
+ #: ../../admin/config/index.php:61
962
  msgid "Right Now Extended"
963
  msgstr "Aktuella utvidgningar"
964
 
965
+ #: ../../admin/config/index.php:61
966
  #, fuzzy
967
  msgid ""
968
  "Choose if you want to see outbound links listed under Right Now. It might "
973
  "system."
974
 
975
  # @ wp-slimstat-view
976
+ #: ../../admin/config/index.php:66
977
  #, fuzzy
978
  msgid "Visitors and Known Users"
979
  msgstr "Kända användare"
980
 
981
  # @ wp-slimstat-options
982
+ #: ../../admin/config/index.php:67
983
  #, fuzzy
984
  msgid "Track Registered Users"
985
  msgstr "Spåra användare"
986
 
987
  # @ wp-slimstat-options
988
+ #: ../../admin/config/index.php:67
989
  #, fuzzy
990
  msgid "Enable this option to track logged in users."
991
  msgstr "Välj JA om du will spåra inloggade användare."
992
 
993
  # @ wp-slimstat-options
994
+ #: ../../admin/config/index.php:68
995
  #, fuzzy
996
  msgid "Blacklist by Username"
997
  msgstr "IP-adress"
998
 
999
  # @ wp-slimstat-options
1000
+ #: ../../admin/config/index.php:68
1001
  #, fuzzy
1002
  msgid ""
1003
  "List all the usernames you don't want to track, separated by commas. Please "
1009
  "användarnamn är bokstavskänsligt."
1010
 
1011
  # @ wp-slimstat-options
1012
+ #: ../../admin/config/index.php:69
1013
  #, fuzzy
1014
  msgid "Blacklist by IP Address"
1015
  msgstr "IP-adress"
1016
 
1017
  # @ wp-slimstat-options
1018
+ #: ../../admin/config/index.php:69
1019
  #, fuzzy
1020
  msgid ""
1021
  "List all the IP addresses you don't want to track, separated by commas. Each "
1031
  "formatet är felaktig, WP SlimStat får inte spåra pageviews ordentligt."
1032
 
1033
  # @ wp-slimstat-options
1034
+ #: ../../admin/config/index.php:70
1035
  #, fuzzy
1036
  msgid "Blacklist by Capability"
1037
  msgstr "Användare per rättighet"
1038
 
1039
  # @ wp-slimstat-options
1040
+ #: ../../admin/config/index.php:70
1041
  msgid ""
1042
  "Users having at least one of the <a href='http://codex.wordpress.org/"
1043
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
1047
  "Roles_and_Capabilities' target='_new'>rättigheterna</a> listade här nedan "
1048
  "kommer inte spåras. Rättigheterna är bokstavskänsliga."
1049
 
1050
+ #: ../../admin/config/index.php:72
1051
  msgid "Profiling"
1052
  msgstr ""
1053
 
1054
  # @ wp-slimstat-options
1055
+ #: ../../admin/config/index.php:73
1056
  msgid "Ignore Spammers"
1057
  msgstr "Ignorera spammare"
1058
 
1059
  # @ wp-slimstat-options
1060
+ #: ../../admin/config/index.php:73
1061
  #, fuzzy
1062
  msgid ""
1063
  "Enable this option if you don't want to track visits from users identified "
1072
 
1073
  # @ wp-slimstat-options
1074
  # @ wp-slimstat-view
1075
+ #: ../../admin/config/index.php:74
1076
  msgid "Permalinks"
1077
  msgstr "Permalänk"
1078
 
1079
  # @ wp-slimstat-options
1080
+ #: ../../admin/config/index.php:74
1081
  #, fuzzy
1082
  msgid ""
1083
  "List all the URLs on your website that you don't want to track, separated by "
1097
  "Strängar är bokstavsoberoende."
1098
 
1099
  # @ wp-slimstat-options
1100
+ #: ../../admin/config/index.php:75
1101
  msgid "Countries"
1102
  msgstr "Länder"
1103
 
1104
  # @ wp-slimstat-options
1105
+ #: ../../admin/config/index.php:75
1106
  msgid ""
1107
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
1108
  "track, separated by commas."
1111
  "spåra, separerade med kommatecken."
1112
 
1113
  # @ wp-slimstat-options
1114
+ #: ../../admin/config/index.php:76
1115
  msgid "User Agents"
1116
  msgstr "User Agents"
1117
 
1118
  # @ wp-slimstat-options
1119
+ #: ../../admin/config/index.php:76
1120
  #, fuzzy
1121
  msgid ""
1122
  "Browsers (user agents) you don't want to track, separated by commas. You can "
1135
  "är bokstavskänsliga."
1136
 
1137
  # @ wp-slimstat-options
1138
+ #: ../../admin/config/index.php:77
1139
  msgid "Referring Sites"
1140
  msgstr "Hänvisnings-sajt"
1141
 
1142
  # @ wp-slimstat-options
1143
+ #: ../../admin/config/index.php:77
1144
  #, fuzzy
1145
  msgid ""
1146
  "Referring URLs that you don't want to track, separated by commas: "
1157
  "bokstavskänsliga.Ange antingen ett wildcard eller det protokoll du vill "
1158
  "filtrera (http://, https://)."
1159
 
1160
+ #: ../../admin/config/index.php:79 ../../admin/config/index.php:215
1161
  msgid "Miscellaneous"
1162
  msgstr ""
1163
 
1164
+ #: ../../admin/config/index.php:80
1165
  msgid "Enable Privacy Mode"
1166
  msgstr ""
1167
 
1168
  # @ wp-slimstat-options
1169
+ #: ../../admin/config/index.php:80
1170
  #, fuzzy
1171
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
1172
  msgstr ""
1173
  "Det här alternativet maskerar den sista oktetten i dina besökares IP-"
1174
  "adresser för att följa Europeiska lagar om integritet."
1175
 
1176
+ #: ../../admin/config/index.php:81
1177
  msgid "Ignore Prefetch Requests"
1178
  msgstr ""
1179
 
1180
  # @ wp-slimstat-options
1181
+ #: ../../admin/config/index.php:81
1182
  #, fuzzy
1183
  msgid ""
1184
  "Prevent WP SlimStat from tracking pageviews generated by Firefox's <a "
1190
  "Link_prefetching_FAQ' target='_blank'>Länk prefetching funktionalitet</a>."
1191
 
1192
  # @ wp-slimstat-options
1193
+ #: ../../admin/config/index.php:97
1194
  msgid "Ignore users (username not found)"
1195
  msgstr "Ignorera användare (användarnamn ej funna)"
1196
 
1197
  # @ wp-slimstat-options
1198
+ #: ../../admin/config/index.php:120
1199
  msgid ""
1200
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
1201
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
1203
  "Ogiltig rättighet. Vänligen checka <a href=\"http://codex.wordpress.org/"
1204
  "Roles_and_Capabilities\" target=\"_new\">denna sida</a> för mer information"
1205
 
1206
+ #: ../../admin/config/index.php:130
1207
  #, fuzzy
1208
  msgid "Reports"
1209
  msgstr "Anpassade Rapporter"
1210
 
1211
  # @ wp-slimstat-options
1212
+ #: ../../admin/config/index.php:131
1213
  msgid "Restrict Authors"
1214
  msgstr "Begränsa Författare"
1215
 
1216
  # @ wp-slimstat-options
1217
+ #: ../../admin/config/index.php:131
1218
  msgid ""
1219
  "Enable this option if you want your authours to only see stats related to "
1220
  "their own content."
1223
  "statistik relaterad till sitt eget innehåll."
1224
 
1225
  # @ wp-slimstat-options
1226
+ #: ../../admin/config/index.php:132 ../../admin/config/index.php:136
1227
  #, fuzzy
1228
  msgid "Capability"
1229
  msgstr "Användare per rättighet"
1230
 
1231
  # @ wp-slimstat-options
1232
+ #: ../../admin/config/index.php:132
1233
  #, fuzzy
1234
  msgid ""
1235
  "Specify the minimum <a href='http://codex.wordpress.org/"
1236
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
1237
+ "reports (default: <code>activate_plugins</code>). If this field is empty, "
1238
+ "<strong>all your users</strong> (including subscribers) will have access to "
1239
+ "the reports, unless a 'Read access' whitelist has been specified here below. "
1240
+ "In this case, the list has precedence over the capability."
1241
  msgstr ""
1242
  "Definiera minsta <a href='http://codex.wordpress.org/Roles_and_Capabilities' "
1243
  "target='_new'>rättighet</a> för att visa rapporter (standard: <code>read</"
1245
  "subscribers) kommer ha access till rapporterna, om inte 'Read access' "
1246
  "vitlisa har specats ovan. I såfall har vitlistan företräde över rättigheten."
1247
 
1248
+ #: ../../admin/config/index.php:133 ../../admin/config/index.php:137
1249
  msgid "Whitelist"
1250
  msgstr ""
1251
 
1252
  # @ wp-slimstat-options
1253
+ #: ../../admin/config/index.php:133
1254
  #, fuzzy
1255
  msgid ""
1256
  "List all the users who should have access to the reports, separated by "
1263
  "Användarnamn är bokstavskänsliga."
1264
 
1265
  # @ wp-slimstat-options
1266
+ #: ../../admin/config/index.php:136
1267
  #, fuzzy
1268
  msgid ""
1269
  "Specify the minimum <a href='http://codex.wordpress.org/"
1278
  "vitlisa har specats ovan. I såfall har vitlistan företräde över rättigheten."
1279
 
1280
  # @ wp-slimstat-options
1281
+ #: ../../admin/config/index.php:137
1282
  #, fuzzy
1283
  msgid ""
1284
  "List all the users who can edit these options, separated by commas. Please "
1291
  "användare</strong> (utom <em>Subscribers</em>) kommer att beviljas tillträde."
1292
 
1293
  # @ wp-slimstat-options
1294
+ #: ../../admin/config/index.php:153
1295
  msgid "Read access: username not found"
1296
  msgstr "Läs access: användarnamn ej funnet"
1297
 
1298
  # @ wp-slimstat-options
1299
+ #: ../../admin/config/index.php:166 ../../admin/config/index.php:197
1300
  msgid ""
1301
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
1302
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
1307
  "information"
1308
 
1309
  # @ wp-slimstat-options
1310
+ #: ../../admin/config/index.php:184
1311
  msgid "Config access: username not found"
1312
  msgstr "Config access: användarnman ej funnet"
1313
 
1314
+ #: ../../admin/config/index.php:208
1315
  msgid "Detect Smoothing"
1316
  msgstr "Identifiera Utjämning"
1317
 
1318
+ #: ../../admin/config/index.php:208
1319
  #, fuzzy
1320
  msgid ""
1321
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
1326
  "är den här inställningen ignoreras."
1327
 
1328
  # @ wp-slimstat-options
1329
+ #: ../../admin/config/index.php:209
1330
  msgid "Track Outbound Clicks"
1331
  msgstr "Spåra utgående klick"
1332
 
1333
+ #: ../../admin/config/index.php:209
1334
  msgid ""
1335
  "Track when your visitors click on link to external websites. This option "
1336
  "required Spy Mode to be enabled."
1337
  msgstr ""
1338
 
1339
  # @ wp-slimstat-options
1340
+ #: ../../admin/config/index.php:210
1341
  msgid "Session Duration"
1342
  msgstr "Sessioners varaktighet"
1343
 
1344
  # @ wp-slimstat-options
1345
+ #: ../../admin/config/index.php:210
1346
  #, fuzzy
1347
  msgid ""
1348
+ "How many seconds should a human session last? Google Analytics sets it to "
1349
+ "1800 seconds."
1350
  msgstr ""
1351
  "Definiera hur många sekunder ett besök skall vara. Google Analytics använder "
1352
  "1800 sekunder som minsta tid."
1353
 
1354
  # @ wp-slimstat-options
1355
+ #: ../../admin/config/index.php:211
1356
  msgid "Extend Session"
1357
  msgstr "Utöka session"
1358
 
1359
  # @ wp-slimstat-options
1360
+ #: ../../admin/config/index.php:211
1361
  #, fuzzy
1362
  msgid "Extend the duration of a session each time the user visits a new page."
1363
  msgstr ""
1365
  "sida av det antal sekunder som angetts här ovan."
1366
 
1367
  # @ wp-slimstat-options
1368
+ #: ../../admin/config/index.php:212
1369
  msgid "Enable CDN"
1370
  msgstr "Aktivera CDN"
1371
 
1372
  # @ wp-slimstat-options
1373
+ #: ../../admin/config/index.php:212
1374
  #, fuzzy
1375
  msgid ""
1376
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
1381
  "CDN, genom att betjäna WP SlimStat javascript tracker från deras snabba och "
1382
  "tillförlitliga nätverk."
1383
 
1384
+ #: ../../admin/config/index.php:213
1385
  msgid "Extensions to Track"
1386
  msgstr "Fileändelser att spåra"
1387
 
1388
+ #: ../../admin/config/index.php:213
1389
  #, fuzzy
1390
  msgid ""
1391
  "List all the file extensions that you want to be treated as Downloads. "
1400
  "matchas med nedanstående som listas här."
1401
 
1402
  # @ wp-slimstat-options
1403
+ #: ../../admin/config/index.php:216
1404
  msgid "IP Lookup"
1405
  msgstr "Leta upp IP"
1406
 
1407
+ #: ../../admin/config/index.php:216
1408
  msgid "Customize the Geolocation service to be used in the reports."
1409
  msgstr ""
1410
 
1411
  # @ wp-slimstat-options
1412
+ #: ../../admin/config/index.php:217
1413
  msgid "Custom CSS"
1414
  msgstr "Anpassad CSS"
1415
 
1416
+ #: ../../admin/config/index.php:217
1417
  msgid ""
1418
  "Paste here your custom stylesheet to personalize the way your reports look. "
1419
  "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
1420
  "target='_blank'>Check the FAQ</a> for more information on how to use this "
1421
+ "setting."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1422
  msgstr ""
 
 
 
 
 
1423
 
1424
  # @ wp-slimstat-options
1425
  #: ../../admin/config/index.php:218
1428
 
1429
  #: ../../admin/config/index.php:218
1430
  msgid ""
1431
+ "Send anonymous data about unknown user agents to our server for analysis. "
1432
+ "This allows us to contribute to the <a href='http://browscap.org/' "
1433
+ "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
1434
+ "WP SlimStat's browser detection functionality."
1435
  msgstr ""
1436
 
1437
  # @ wp-slimstat-options
1464
  msgstr ""
1465
 
1466
  # @ wp-slimstat-options
1467
+ #: ../../admin/config/maintenance.php:83
1468
  msgid "Database Information"
1469
  msgstr "Databasinformation"
1470
 
1471
  # @ wp-slimstat-options
1472
+ #: ../../admin/config/maintenance.php:86
1473
  msgid "Engine"
1474
  msgstr "Motor"
1475
 
1476
  # @ wp_slimstat_options
1477
+ #: ../../admin/config/maintenance.php:90
1478
  msgid "switch to InnoDB"
1479
  msgstr "koppla om till InnoDB"
1480
 
1481
  # @ wp-slimstat-options
1482
+ #: ../../admin/config/maintenance.php:101
1483
  #, fuzzy
1484
  msgid "records"
1485
  msgstr "Poster"
1486
 
1487
  # @ wp-slimstat-options
1488
+ #: ../../admin/config/maintenance.php:106
1489
  #, fuzzy
1490
  msgid "Data Maintenance"
1491
  msgstr "Underhåll"
1492
 
1493
  # @ wp-slimstat-options
1494
+ #: ../../admin/config/maintenance.php:109
1495
  #, fuzzy
1496
  msgid "Delete pageviews where"
1497
  msgstr "Ta bort rader där"
1498
 
1499
  # @ wp-slimstat-view
1500
+ #: ../../admin/config/maintenance.php:123 ../../admin/view/index.php:17
1501
  msgid "equals"
1502
  msgstr "lika"
1503
 
1504
  # @ wp-slimstat-view
1505
+ #: ../../admin/config/maintenance.php:124 ../../admin/view/index.php:18
1506
  msgid "is not equal to"
1507
  msgstr "är inte lika med"
1508
 
1509
  # @ wp-slimstat-view
1510
+ #: ../../admin/config/maintenance.php:125 ../../admin/view/index.php:19
1511
  msgid "contains"
1512
  msgstr "innehåller"
1513
 
1514
  # @ wp-slimstat-view
1515
+ #: ../../admin/config/maintenance.php:126 ../../admin/view/index.php:20
1516
  msgid "does not contain"
1517
  msgstr "innehåller inte"
1518
 
1519
  # @ wp-slimstat-view
1520
+ #: ../../admin/config/maintenance.php:127 ../../admin/view/index.php:21
1521
  msgid "starts with"
1522
  msgstr "börjar med"
1523
 
1524
  # @ wp-slimstat-view
1525
+ #: ../../admin/config/maintenance.php:128 ../../admin/view/index.php:22
1526
  msgid "ends with"
1527
  msgstr "slutar med"
1528
 
1529
  # @ wp-slimstat-view
1530
+ #: ../../admin/config/maintenance.php:129 ../../admin/view/index.php:23
1531
  msgid "sounds like"
1532
  msgstr "låter som"
1533
 
1534
  # @ wp-slimstat-view
1535
+ #: ../../admin/config/maintenance.php:130 ../../admin/view/index.php:24
1536
  msgid "is greater than"
1537
  msgstr "är större än"
1538
 
1539
  # @ wp-slimstat-view
1540
+ #: ../../admin/config/maintenance.php:131 ../../admin/view/index.php:25
1541
  msgid "is less than"
1542
  msgstr "är mindre än"
1543
 
1544
+ #: ../../admin/config/maintenance.php:132 ../../admin/view/index.php:26
1545
  msgid "matches"
1546
  msgstr "matchas"
1547
 
1548
  # @ wp-slimstat-view
1549
+ #: ../../admin/config/maintenance.php:133 ../../admin/view/index.php:27
1550
  msgid "does not match"
1551
  msgstr "matchas inte"
1552
 
1553
  # @ wp-slimstat-view
1554
+ #: ../../admin/config/maintenance.php:134 ../../admin/view/index.php:28
1555
  msgid "is empty"
1556
  msgstr "är tomt"
1557
 
1558
  # @ wp-slimstat-view
1559
+ #: ../../admin/config/maintenance.php:135 ../../admin/view/index.php:29
1560
  msgid "is not empty"
1561
  msgstr "är inte tomt"
1562
 
1563
+ #: ../../admin/config/maintenance.php:138 ../../admin/view/index.php:32
1564
+ #: ../../admin/view/index.php:78
1565
  msgid "Apply"
1566
  msgstr ""
1567
 
1568
  # @ wp-slimstat-options
1569
+ #: ../../admin/config/maintenance.php:139
1570
  #, fuzzy
1571
  msgid ""
1572
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1573
  msgstr ""
1574
  "Är du säker på att du vill ta bort dessa rader PERMANENT från din databas?"
1575
 
1576
+ #: ../../admin/config/maintenance.php:144
1577
  msgid "Empty Database"
1578
  msgstr ""
1579
 
1580
  # @ wp-slimstat-options
1581
+ #: ../../admin/config/maintenance.php:147
1582
  #, fuzzy
1583
  msgid ""
1584
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1587
  "Är du säker på att du vill ta bort dessa rader PERMANENT från din databas?"
1588
 
1589
  # @ wp-slimstat-view
1590
+ #: ../../admin/config/maintenance.php:147
1591
  #, fuzzy
1592
  msgid "Delete All Pageviews"
1593
  msgstr "Direkt Sidvisning"
1594
 
1595
+ #: ../../admin/config/maintenance.php:148
1596
  msgid ""
1597
  "Erase all the information collected so far by WP SlimStat. This operation "
1598
  "<strong>does not</strong> reset your settings."
1599
  msgstr ""
1600
 
1601
+ #: ../../admin/config/maintenance.php:152
1602
  #, fuzzy
1603
  msgid "Reset Reports"
1604
  msgstr "Anpassade Rapporter"
1605
 
1606
  # @ wp-slimstat-options
1607
+ #: ../../admin/config/maintenance.php:155
1608
  #, fuzzy
1609
  msgid ""
1610
  "Are you sure you want to restore the default arrangement of your reports?"
1611
  msgstr "Är du säker på att du vill återställa dina flikar?"
1612
 
1613
+ #: ../../admin/config/maintenance.php:155
1614
  msgid "No Panic Button"
1615
  msgstr ""
1616
 
1617
+ #: ../../admin/config/maintenance.php:156
1618
  msgid ""
1619
  "Reset the default arrangement of your reports. Helpful when, for some "
1620
  "reason, reports disappear from your panels."
1621
  msgstr ""
1622
 
1623
+ #: ../../admin/config/maintenance.php:160
1624
  msgid "Performance"
1625
  msgstr ""
1626
 
1627
+ #: ../../admin/config/maintenance.php:163
1628
  msgid "Improve Performance"
1629
  msgstr ""
1630
 
1631
  # @ wp-slimstat-options
1632
+ #: ../../admin/config/maintenance.php:164
1633
  #, fuzzy
1634
  msgid ""
1635
  "Please note that you will need about 30% more DB space to store the extra "
1639
  "behöver omkring 30% mer databasutrymme att spara den krävda extra "
1640
  "informationen."
1641
 
1642
+ #: ../../admin/config/maintenance.php:168
1643
  msgid "Save DB Space"
1644
  msgstr ""
1645
 
1646
+ #: ../../admin/config/maintenance.php:169
1647
  msgid ""
1648
  "Please note that by removing table indexes, WP SlimStat's performance will "
1649
  "be affected."
1650
  msgstr ""
1651
 
1652
+ #: ../../admin/config/maintenance.php:174
1653
  msgid "Import and Export"
1654
  msgstr ""
1655
 
1656
+ #: ../../admin/config/maintenance.php:178
1657
  msgid ""
1658
+ "Here below you can find the current configuration string for WP SlimStat. "
1659
+ "You can update your settings by pasting a new string here below and clicking "
1660
+ "on Import."
1661
  msgstr ""
1662
 
1663
  # @ wp-slimstat-options
1664
  # @ wp-slimstat-view
1665
+ #: ../../admin/config/maintenance.php:183
1666
  #, fuzzy
1667
  msgid "Import"
1668
  msgstr "Support"
1669
 
1670
  # @ wp-slimstat-options
1671
+ #: ../../admin/config/maintenance.php:184
1672
  msgid "Are you sure you want to OVERWRITE your current settings?"
1673
  msgstr "Är du säker på att du vill återställa dina flikar?"
1674
 
 
 
 
 
 
1675
  #: ../../admin/lang/dynamic_strings.php:3
1676
  msgid "xx"
1677
  msgstr "xx"
3144
 
3145
  # Unknown
3146
  #: ../../admin/lang/dynamic_strings.php:298
3147
+ #: ../../admin/view/wp-slimstat-reports.php:482
3148
  msgid "l-"
3149
  msgstr "Okänd"
3150
 
3164
  msgstr "Local IP Address"
3165
 
3166
  # @ wp-slimstat-view
3167
+ #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:768
3168
  msgid "Today"
3169
  msgstr "Idag"
3170
 
3171
  # @ wp-slimstat-view
3172
+ #: ../../admin/view/index.php:49 ../../admin/view/wp-slimstat-reports.php:769
3173
  msgid "Yesterday"
3174
  msgstr "Igår"
3175
 
3176
+ #: ../../admin/view/index.php:50
3177
  msgid "Last 7 Days"
3178
  msgstr ""
3179
 
3180
  # @ wp-slimstat-view
3181
+ #: ../../admin/view/index.php:51
3182
  #, fuzzy
3183
+ msgid "Last 60 Days"
3184
  msgstr "Sista 30 minuterna"
3185
 
3186
  # @ wp-slimstat-view
3187
+ #: ../../admin/view/index.php:52
3188
  #, fuzzy
3189
  msgid "Last 90 Days"
3190
  msgstr "Sista 30 minuterna"
3191
 
3192
  # @ wp-slimstat-view
3193
+ #: ../../admin/view/index.php:53
3194
  #, fuzzy
3195
+ msgid "This Year So Far"
3196
  msgstr "År"
3197
 
3198
  # @ default
3199
+ #: ../../admin/view/index.php:54
3200
  #, fuzzy
3201
  msgid "Date Range"
3202
  msgstr "Spara ändringar"
3203
 
3204
  # @ wp-slimstat-view
3205
+ #: ../../admin/view/index.php:56 ../../admin/view/wp-slimstat-db.php:87
3206
  msgid "Day"
3207
  msgstr "Dag"
3208
 
3209
  # @ wp-slimstat-view
3210
+ #: ../../admin/view/index.php:66 ../../admin/view/wp-slimstat-db.php:88
3211
  msgid "Month"
3212
  msgstr "Månad"
3213
 
3214
  # @ wp-slimstat-view
3215
+ #: ../../admin/view/index.php:75 ../../admin/view/wp-slimstat-db.php:89
3216
  msgid "Year"
3217
  msgstr "År"
3218
 
3219
  # @ wp-slimstat-view
3220
+ #: ../../admin/view/index.php:80
3221
+ #, fuzzy
3222
+ msgid "Reset Filters"
3223
+ msgstr "Datum Filter"
3224
+
3225
+ # @ wp-slimstat-view
3226
+ #: ../../admin/view/index.php:117
3227
  msgid "Your report here"
3228
  msgstr "Din rapport här"
3229
 
3230
  # @ wp-slimstat-view
3231
+ #: ../../admin/view/index.php:119
3232
  msgid ""
3233
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
3234
  "Just write a new plugin that retrieves the desired information from the "
3243
  "forum_id=10\" target=\"_blank\">support forum</a>."
3244
 
3245
  # @ wp-slimstat-view
3246
+ #: ../../admin/view/index.php:133 ../../admin/view/wp-slimstat-reports.php:759
3247
+ #: ../../admin/view/wp-slimstat-reports.php:861
3248
+ #: ../../admin/view/wp-slimstat-reports.php:1145
3249
  msgid "Pageviews"
3250
  msgstr "Sidvisningar"
3251
 
3252
  # @ wp-slimstat-view
3253
+ #: ../../admin/view/index.php:136
3254
  msgid ""
3255
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
3256
  "WP SlimStat leverages this information to identify returning visitors. "
3260
  "cookie. WP SlimStat utnyttjar informationen för att identifiera återkommande "
3261
  "besökare."
3262
 
3263
+ #: ../../admin/view/index.php:140
3264
  #, fuzzy
3265
  msgid "Take a sneak peek at what human visitors are doing on your website."
3266
  msgstr "Ta en smygtitt på vad andra besökare gör på din webbsida"
3267
 
3268
  # @ wp-slimstat-view
3269
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
3270
+ #: ../../admin/view/index.php:184 ../../admin/view/right-now.php:147
3271
  msgid "Color codes"
3272
  msgstr "Färgkod"
3273
 
3274
  # @ wp-slimstat-view
3275
+ #: ../../admin/view/index.php:140
3276
  msgid "From a search result page"
3277
  msgstr "Från en sökresultatsida"
3278
 
3279
  # @ wp-slimstat-view
3280
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
3281
+ #: ../../admin/view/index.php:184
3282
  msgid "Known Users"
3283
  msgstr "Kända användare"
3284
 
3285
  # @ wp-slimstat-view
3286
+ #: ../../admin/view/index.php:140 ../../admin/view/index.php:181
3287
+ #: ../../admin/view/index.php:184
3288
  msgid "Other Humans"
3289
  msgstr "Andra människor"
3290
 
3291
  # @ wp-slimstat-view
3292
+ #: ../../admin/view/index.php:144
3293
  #, fuzzy
3294
  msgid "Keywords used by your visitors to find your website on a search engine."
3295
  msgstr ""
3296
  "Nyckelord som dina besökare använder för att hitta din webbplats på en "
3297
  "sökmotor"
3298
 
3299
+ #: ../../admin/view/index.php:147
3300
  msgid ""
3301
  "WP SlimStat retrieves live information from Alexa, Facebook and Google, to "
3302
  "measures your site's rankings. Values are updated every 12 hours. Filters "
3303
  "set above don't apply to this report."
3304
  msgstr ""
3305
 
3306
+ #: ../../admin/view/index.php:150
3307
  msgid ""
3308
  "We have teamed up with HackerNinja.com to offer you a free website security "
3309
  "scan. By clicking on Start Free Scan, your website will be analyzed to "
3312
  msgstr ""
3313
 
3314
  # @ wp-slimstat-view
3315
+ #: ../../admin/view/index.php:153
3316
  msgid "Human Visits"
3317
  msgstr "Mänskliga besök"
3318
 
3319
  # @ wp-slimstat-view
3320
+ #: ../../admin/view/index.php:156
3321
  msgid ""
3322
  "Internet Service Provider: a company which provides other companies or "
3323
  "individuals with access to the Internet. Your DSL or cable internet service "
3331
  "> SlimStat > Filter."
3332
 
3333
  # @ wp-slimstat-view
3334
+ #: ../../admin/view/index.php:159
3335
  msgid ""
3336
  "You can configure WP SlimStat to ignore a specific Country by setting the "
3337
  "corresponding filter under Settings > SlimStat > Filters."
3339
  "Du kan konfigurera WP SlimStat att bortse från ett visst land genom att "
3340
  "ställa in motsvarande filter under Inställningar > SlimStat > Filter."
3341
 
3342
+ #: ../../admin/view/index.php:162
3343
  msgid ""
3344
  "This report shows you what user agent families (no version considered) are "
3345
  "popular among your visitors."
3347
  "Denna rapport visar vad användar agent (ingen version anses) är populära "
3348
  "bland besökarna."
3349
 
3350
+ #: ../../admin/view/index.php:165
3351
  msgid ""
3352
  "This report shows you what operating system families (no version considered) "
3353
  "are popular among your visitors."
3356
  "bland besökarna."
3357
 
3358
  # @ wp-slimstat-view
3359
+ #: ../../admin/view/index.php:171
3360
  msgid "Average Pageviews per Visit"
3361
  msgstr "Genomsnittlig sidvisning per besök"
3362
 
3363
  # @ wp-slimstat-view
3364
+ #: ../../admin/view/index.php:174
3365
  msgid ""
3366
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
3367
  "left your site from the entrance (landing) page."
3369
  "En <em>studs-sida</em> är en singel sidbesök eller besök där personen "
3370
  "lämnade din sajt från den sida som personen landade på vid ingången."
3371
 
3372
+ #: ../../admin/view/index.php:177
3373
  msgid "Searches performed using Wordpress' built-in search functionality."
3374
  msgstr "Sökning utförs genom WP inbyggda sökfunktionalitet."
3375
 
3376
  # @ wp-slimstat-view
3377
+ #: ../../admin/view/index.php:181
3378
  msgid ""
3379
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
3380
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
3385
  "attribut som hör till den."
3386
 
3387
  # @ wp-slimstat-view
3388
+ #: ../../admin/view/index.php:184
3389
  msgid ""
3390
  "This report lists any <em>event</em> occurred on your website. Please refer "
3391
  "to the FAQ for more information on how to leverage this functionality."
3394
  "din webbplats. Läs FAQ för mer information om hur du kan utnyttja denna "
3395
  "funktion."
3396
 
3397
+ #: ../../admin/view/index.php:187
3398
  msgid ""
3399
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
3400
  "this report is not affected by the filters set here above."
3419
 
3420
  # @ wp-slimstat-view
3421
  #: ../../admin/view/right-now.php:28
3422
+ #: ../../admin/view/wp-slimstat-reports.php:425
3423
+ #: ../../admin/view/wp-slimstat-reports.php:670
3424
  msgid "No data to display"
3425
  msgstr "Inget data att visa"
3426
 
3427
  # Unknown
3428
+ #: ../../admin/view/right-now.php:54
3429
+ #: ../../admin/view/wp-slimstat-reports.php:470
3430
+ #: ../../admin/view/wp-slimstat-reports.php:708
3431
+ #: ../../admin/view/wp-slimstat-reports.php:1032
3432
  msgid "c-"
3433
  msgstr "Okänd"
3434
 
3435
  # @ wp-slimstat-view
3436
+ #: ../../admin/view/right-now.php:120
3437
+ #: ../../admin/view/wp-slimstat-reports.php:524
3438
+ #: ../../admin/view/wp-slimstat-reports.php:528
3439
+ #: ../../admin/view/wp-slimstat-reports.php:690
3440
+ #: ../../admin/view/wp-slimstat-reports.php:728
3441
  msgid "Open this URL in a new window"
3442
  msgstr "Öppna denna URL i nytt fönster"
3443
 
3444
  # @ wp-slimstat-view
3445
+ #: ../../admin/view/right-now.php:123
3446
  msgid "Local search results page"
3447
  msgstr "Lokala sökresultat sidan"
3448
 
3449
  # @ wp-slimstat-view
3450
+ #: ../../admin/view/right-now.php:130
3451
  msgid "Open this referrer in a new window"
3452
  msgstr "Öppna denna sida i nytt fönster"
3453
 
3454
  # @ wp-slimstat-view
3455
+ #: ../../admin/view/right-now.php:131
3456
  msgid "Open this outbound link in a new window"
3457
  msgstr "Öppna denna URL i nytt fönster"
3458
 
3459
  # @ default
3460
+ #: ../../admin/view/right-now.php:132
3461
  #, fuzzy
3462
  msgid "Date and Time"
3463
  msgstr "Spara ändringar"
3464
 
3465
+ #: ../../admin/view/right-now.php:133
3466
  #, fuzzy
3467
  msgid "Content Type"
3468
  msgstr "Innehåll"
3469
 
3470
+ #: ../../admin/view/right-now.php:148
3471
  msgid "Visit with keywords"
3472
  msgstr "Besök med nyckelord"
3473
 
3474
  # @ wp-slimstat-view
3475
+ #: ../../admin/view/right-now.php:150
3476
  #, fuzzy
3477
  msgid "Known User"
3478
  msgstr "Kända användare"
3479
 
3480
  # @ wp-slimstat-view
3481
+ #: ../../admin/view/right-now.php:151
3482
  #, fuzzy
3483
  msgid "Human Visitor"
3484
  msgstr "Mänskliga besök"
3485
 
3486
+ #: ../../admin/view/right-now.php:152
3487
  #, fuzzy
3488
  msgid "Bot or Crawler"
3489
  msgstr "Spindlar"
3490
 
3491
  # @ wp-slimstat-options
3492
+ #: ../../admin/view/wp-slimstat-db.php:59
3493
  msgid "IP Address"
3494
  msgstr "IP-adress"
3495
 
3496
  # @ wp-slimstat-view
3497
+ #: ../../admin/view/wp-slimstat-db.php:64
3498
  msgid "Domain"
3499
  msgstr "Domän"
3500
 
3501
  # @ wp-slimstat-view
3502
+ #: ../../admin/view/wp-slimstat-db.php:68
3503
  msgid "-- Advanced filters --"
3504
  msgstr "-- Avancerat filter --"
3505
 
3506
  # @ wp-slimstat-view
3507
+ #: ../../admin/view/wp-slimstat-db.php:69
3508
+ #: ../../admin/view/wp-slimstat-reports.php:62
3509
  msgid "Browser Capabilities"
3510
  msgstr "Browserkapaciteter"
3511
 
3512
  # @ wp-slimstat-options
3513
+ #: ../../admin/view/wp-slimstat-db.php:81
3514
  msgid "Resource ID"
3515
  msgstr "Resurs ID"
3516
 
3517
  # @ wp-slimstat-view
3518
+ #: ../../admin/view/wp-slimstat-db.php:86
3519
  msgid "Hour"
3520
  msgstr "Timme"
3521
 
3522
+ #: ../../admin/view/wp-slimstat-db.php:92
3523
+ #, fuzzy
3524
+ msgid "Order Direction"
3525
+ msgstr "Macromedia Director"
3526
+
3527
+ # @ wp-slimstat-options
3528
+ #: ../../admin/view/wp-slimstat-db.php:93
3529
+ #, fuzzy
3530
+ msgid "Limit Results"
3531
+ msgstr "Begränsar resultatet till"
3532
+
3533
+ #: ../../admin/view/wp-slimstat-db.php:94
3534
+ msgid "Start From"
3535
+ msgstr ""
3536
+
3537
  # @ wp-slimstat-view
3538
+ #: ../../admin/view/wp-slimstat-reports.php:41
3539
  msgid "Pageviews (chart)"
3540
  msgstr "Sidvisningar (Diagram)"
3541
 
3542
  # @ wp-slimstat-view
3543
+ #: ../../admin/view/wp-slimstat-reports.php:42
3544
  msgid "About WP SlimStat"
3545
  msgstr "Om WP SlimStat"
3546
 
3547
+ #: ../../admin/view/wp-slimstat-reports.php:43
3548
+ #: ../../admin/view/wp-slimstat-reports.php:56
3549
  msgid "At a Glance"
3550
  msgstr ""
3551
 
3552
  # @ wp-slimstat-view
3553
+ #: ../../admin/view/wp-slimstat-reports.php:44
3554
  #, fuzzy
3555
  msgid "Currently Online"
3556
  msgstr "Nuvarande filter"
3557
 
3558
  # @ wp-slimstat-view
3559
+ #: ../../admin/view/wp-slimstat-reports.php:45
3560
+ #: ../../admin/view/wp-slimstat-reports.php:80
3561
  msgid "Spy View"
3562
  msgstr "Spionvy"
3563
 
3564
  # @ wp-slimstat-view
3565
+ #: ../../admin/view/wp-slimstat-reports.php:46
3566
+ #: ../../admin/view/wp-slimstat-reports.php:81
3567
  msgid "Recent Search Terms"
3568
  msgstr "Senaste söktermer"
3569
 
3570
  # @ wp-slimstat-view
3571
+ #: ../../admin/view/wp-slimstat-reports.php:47
3572
  msgid "Top Pages"
3573
  msgstr "Topp Sidor"
3574
 
3575
  # @ wp-slimstat-view
3576
+ #: ../../admin/view/wp-slimstat-reports.php:48
3577
+ #: ../../admin/view/wp-slimstat-reports.php:78
3578
  msgid "Top Traffic Sources"
3579
  msgstr "Topp Trafikkällor"
3580
 
3581
  # @ wp-slimstat-view
3582
+ #: ../../admin/view/wp-slimstat-reports.php:49
3583
  msgid "Top Known Visitors"
3584
  msgstr "Topp Kända besökare"
3585
 
3586
  # @ wp-slimstat-view
3587
+ #: ../../admin/view/wp-slimstat-reports.php:50
3588
+ #: ../../admin/view/wp-slimstat-reports.php:76
3589
+ #: ../../admin/view/wp-slimstat-reports.php:96
3590
  msgid "Top Search Terms"
3591
  msgstr "Topp Söktermer"
3592
 
3593
  # @ wp-slimstat-view
3594
+ #: ../../admin/view/wp-slimstat-reports.php:51
3595
+ #: ../../admin/view/wp-slimstat-reports.php:63
3596
+ #: ../../admin/view/wp-slimstat-reports.php:77
3597
  msgid "Top Countries"
3598
  msgstr "Topp Länder"
3599
 
3600
+ #: ../../admin/view/wp-slimstat-reports.php:52
3601
  msgid "Rankings"
3602
  msgstr ""
3603
 
3604
+ #: ../../admin/view/wp-slimstat-reports.php:53
3605
  msgid "Security Scan"
3606
  msgstr ""
3607
 
3608
  # @ wp-slimstat-view
3609
+ #: ../../admin/view/wp-slimstat-reports.php:54
3610
  #, fuzzy
3611
  msgid "Top Language Families"
3612
  msgstr "Topp Språk"
3613
 
3614
  # @ wp-slimstat-view
3615
+ #: ../../admin/view/wp-slimstat-reports.php:55
3616
  msgid "Human Visits (chart)"
3617
  msgstr "Mänskliga besök (Diagram)"
3618
 
3619
  # @ wp-slimstat-view
3620
+ #: ../../admin/view/wp-slimstat-reports.php:57
3621
  msgid "Top Languages"
3622
  msgstr "Topp Språk"
3623
 
3624
+ #: ../../admin/view/wp-slimstat-reports.php:58
3625
  msgid "Top Browsers"
3626
  msgstr "Topp webbläsare"
3627
 
3628
  # @ wp-slimstat-view
3629
+ #: ../../admin/view/wp-slimstat-reports.php:59
3630
  msgid "Top Service Providers"
3631
  msgstr "Topp Internetleverantör"
3632
 
3633
  # @ wp-slimstat-view
3634
+ #: ../../admin/view/wp-slimstat-reports.php:60
3635
  msgid "Top Operating Systems"
3636
  msgstr "Topp OS"
3637
 
3638
  # @ wp-slimstat-view
3639
+ #: ../../admin/view/wp-slimstat-reports.php:61
3640
  msgid "Top Screen Resolutions"
3641
  msgstr "Topp Skärmupplösning"
3642
 
3643
  # @ wp-slimstat-view
3644
+ #: ../../admin/view/wp-slimstat-reports.php:64
3645
  msgid "Visit Duration"
3646
  msgstr "Besöks Varaktighet"
3647
 
3648
  # @ wp-slimstat-view
3649
+ #: ../../admin/view/wp-slimstat-reports.php:65
3650
+ #: ../../admin/view/wp-slimstat-reports.php:82
3651
  msgid "Recent Countries"
3652
  msgstr "Senaste Länder"
3653
 
3654
  # @ wp-slimstat-view
3655
+ #: ../../admin/view/wp-slimstat-reports.php:66
3656
  msgid "Recent Screen Resolutions"
3657
  msgstr "Senaste Skärmupplösning"
3658
 
3659
  # @ wp-slimstat-view
3660
+ #: ../../admin/view/wp-slimstat-reports.php:67
3661
  msgid "Recent Operating Systems"
3662
  msgstr "Senaste OS"
3663
 
3664
  # @ wp-slimstat-view
3665
+ #: ../../admin/view/wp-slimstat-reports.php:68
3666
  msgid "Recent Browsers"
3667
  msgstr "Senaste webbläsarna"
3668
 
3669
  # @ wp-slimstat-view
3670
+ #: ../../admin/view/wp-slimstat-reports.php:69
3671
  msgid "Recent Languages"
3672
  msgstr "Senaste Språk"
3673
 
3674
  # @ wp-slimstat-view
3675
+ #: ../../admin/view/wp-slimstat-reports.php:70
3676
  msgid "Top Browser Families"
3677
  msgstr "Topp webbläsarfamiljer"
3678
 
3679
+ #: ../../admin/view/wp-slimstat-reports.php:71
3680
  msgid "Top OS Families"
3681
  msgstr "Topp OS (opperativsystem) "
3682
 
3683
  # @ wp-slimstat-view
3684
+ #: ../../admin/view/wp-slimstat-reports.php:72
3685
  msgid "Recent Users"
3686
  msgstr "senaste Användare"
3687
 
3688
  # @ wp-slimstat-view
3689
+ #: ../../admin/view/wp-slimstat-reports.php:73
3690
  msgid "Top Users"
3691
  msgstr "Topp Användare"
3692
 
3693
  # @ wp-slimstat-view
3694
+ #: ../../admin/view/wp-slimstat-reports.php:74
3695
  msgid "Traffic Sources (chart)"
3696
  msgstr "Trafikkälla (Diagram)"
3697
 
3698
  # @ wp-slimstat-view
3699
+ #: ../../admin/view/wp-slimstat-reports.php:75
3700
  msgid "Summary"
3701
  msgstr "Sammanfattning"
3702
 
3703
  # @ wp-slimstat-view
3704
+ #: ../../admin/view/wp-slimstat-reports.php:79
3705
  msgid "Top Referring Search Engines"
3706
  msgstr "Topp Sökmotorers hänvisning"
3707
 
3708
  # @ wp-slimstat-view
3709
+ #: ../../admin/view/wp-slimstat-reports.php:83
3710
+ #: ../../admin/view/wp-slimstat-reports.php:99
3711
  msgid "Top Landing Pages"
3712
  msgstr "Topp Startsida"
3713
 
3714
  # @ wp-slimstat-view
3715
+ #: ../../admin/view/wp-slimstat-reports.php:84
3716
  msgid "Average Pageviews per Visit (chart)"
3717
  msgstr "Genomsnitt Sidvisning per Besök (Diagram)"
3718
 
3719
  # @ wp-slimstat-view
3720
+ #: ../../admin/view/wp-slimstat-reports.php:85
3721
  msgid "Recent Posts"
3722
  msgstr "Senaste Poster"
3723
 
3724
  # @ wp-slimstat-view
3725
+ #: ../../admin/view/wp-slimstat-reports.php:86
3726
  msgid "Recent Bounce Pages"
3727
  msgstr "Senaste Stuts-sidor"
3728
 
3729
  # @ wp-slimstat-view
3730
+ #: ../../admin/view/wp-slimstat-reports.php:87
3731
  msgid "Recent Feeds"
3732
  msgstr "Senaste Feeds"
3733
 
3734
+ #: ../../admin/view/wp-slimstat-reports.php:88
3735
  msgid "Recent Pages Not Found"
3736
  msgstr ""
3737
 
3738
  # @ wp-slimstat-view
3739
+ #: ../../admin/view/wp-slimstat-reports.php:89
3740
  msgid "Recent Internal Searches"
3741
  msgstr "Senaste Interna sökningar"
3742
 
3743
  # @ wp-slimstat-view
3744
+ #: ../../admin/view/wp-slimstat-reports.php:90
3745
  msgid "Top Categories"
3746
  msgstr "Topp Kategorier"
3747
 
3748
  # @ wp-slimstat-view
3749
+ #: ../../admin/view/wp-slimstat-reports.php:91
3750
  msgid "Recent Outbound Links"
3751
  msgstr "Senaste Utgående Länkar"
3752
 
3753
  # @ wp-slimstat-view
3754
+ #: ../../admin/view/wp-slimstat-reports.php:92
3755
  msgid "Recent Events"
3756
  msgstr "Senaste Händelserna"
3757
 
3758
  # @ wp-slimstat-view
3759
+ #: ../../admin/view/wp-slimstat-reports.php:93
3760
  msgid "Top Posts"
3761
  msgstr "Topp Poster"
3762
 
3763
  # @ wp-slimstat-view
3764
+ #: ../../admin/view/wp-slimstat-reports.php:94
3765
  msgid "Top Feeds"
3766
  msgstr "Topp Feeds"
3767
 
3768
  # @ wp-slimstat-view
3769
+ #: ../../admin/view/wp-slimstat-reports.php:95
3770
  msgid "Top Internal Searches"
3771
  msgstr "Topp Interna Sökningar"
3772
 
3773
  # @ wp-slimstat-view
3774
+ #: ../../admin/view/wp-slimstat-reports.php:97
3775
  msgid "Recent Categories"
3776
  msgstr "Senaste Kategorierna"
3777
 
3778
  # @ wp-slimstat-view
3779
+ #: ../../admin/view/wp-slimstat-reports.php:98
3780
  #, fuzzy
3781
  msgid "Top Pages Not Found"
3782
  msgstr "Topp Sidor"
3783
 
3784
  # @ wp-slimstat-view
3785
+ #: ../../admin/view/wp-slimstat-reports.php:100
3786
  msgid "Top Authors"
3787
  msgstr "Topp Författare"
3788
 
3789
  # @ wp-slimstat-view
3790
+ #: ../../admin/view/wp-slimstat-reports.php:101
3791
  msgid "Top Tags"
3792
  msgstr "Topp Taggar"
3793
 
3794
  # @ wp-slimstat-view
3795
+ #: ../../admin/view/wp-slimstat-reports.php:102
3796
  msgid "Recent Downloads"
3797
  msgstr "Senaste Nedladdningar"
3798
 
3799
+ #: ../../admin/view/wp-slimstat-reports.php:103
3800
  msgid "Top Outbound Links and Downloads"
3801
  msgstr ""
3802
 
3803
+ #: ../../admin/view/wp-slimstat-reports.php:104
3804
  msgid "Your Website"
3805
  msgstr ""
3806
 
3807
+ #: ../../admin/view/wp-slimstat-reports.php:106
3808
  msgid "Activity Log"
3809
  msgstr ""
3810
 
3811
  # @ wp-slimstat-view
3812
+ #: ../../admin/view/wp-slimstat-reports.php:222
3813
  msgid "Chart controls"
3814
  msgstr "Kontroll av Diagram"
3815
 
3816
  # @ wp-slimstat-view
3817
+ #: ../../admin/view/wp-slimstat-reports.php:222
3818
  msgid "Use your mouse wheel to zoom in and out"
3819
  msgstr "Använd mus-hjulet för att zooma in eller ut."
3820
 
3821
  # @ wp-slimstat-view
3822
+ #: ../../admin/view/wp-slimstat-reports.php:222
3823
  msgid "While zooming in, drag the chart to move to a different area"
3824
  msgstr ""
3825
  "Medans man zoomar in, drag i kartan för att flytta till olika ställen på "
3826
  "kartan."
3827
 
3828
  # @ wp-slimstat-view
3829
+ #: ../../admin/view/wp-slimstat-reports.php:222
3830
  msgid "Double click on an empty region to reset the zoom level"
3831
  msgstr "Dubbelklicka på en tom region för att återställa zoom-nivån"
3832
 
3833
  # @ wp-slimstat-view
3834
+ #: ../../admin/view/wp-slimstat-reports.php:223
3835
  msgid ""
3836
  "Click on a data point to display the activity chart for each hour of that day"
3837
  msgstr ""
3839
  "dagen"
3840
 
3841
  # @ wp-slimstat-view
3842
+ #: ../../admin/view/wp-slimstat-reports.php:256
3843
  msgid "src"
3844
  msgstr "scr"
3845
 
3846
  # @ wp-slimstat-view
3847
+ #: ../../admin/view/wp-slimstat-reports.php:257
3848
  msgid "serp"
3849
  msgstr "serp"
3850
 
3851
  # @ wp-slimstat-view
3852
+ #: ../../admin/view/wp-slimstat-reports.php:262
3853
  msgid "Go to the corresponding search engine result page"
3854
  msgstr "Gå till motsvarande sökningmotorresultatet"
3855
 
3856
  # @ wp-slimstat-view
3857
+ #: ../../admin/view/wp-slimstat-reports.php:265
3858
  msgid "Go to the referring page"
3859
  msgstr "Gå till sidan med hänvisning"
3860
 
3861
  # @ wp-slimstat-view
3862
+ #: ../../admin/view/wp-slimstat-reports.php:288
3863
  msgid "Remove filter for"
3864
  msgstr "Tabort filter för"
3865
 
3866
+ #: ../../admin/view/wp-slimstat-reports.php:295
3867
  #, fuzzy
3868
  msgid "Reset All"
3869
  msgstr "Återställer flikar"
3870
 
3871
  # @ wp-slimstat-view
3872
+ #: ../../admin/view/wp-slimstat-reports.php:298
3873
  msgid "Current filters:"
3874
  msgstr "Nuvarande filter"
3875
 
3876
  # @ wp-slimstat-options
3877
+ #: ../../admin/view/wp-slimstat-reports.php:302
3878
  msgid "Refresh"
3879
  msgstr "Uppdatera varje"
3880
 
3881
  # @ wp-slimstat-view
3882
+ #: ../../admin/view/wp-slimstat-reports.php:339
3883
  #, fuzzy, php-format
3884
  msgid "Results %s - %s of %s"
3885
  msgstr "Filtrerat resultat där %s %s %s"
3886
 
3887
  # @ wp-slimstat-options
3888
+ #: ../../admin/view/wp-slimstat-reports.php:341
3889
  #, fuzzy
3890
  msgid "Refresh in"
3891
  msgstr "Uppdatera varje"
3892
 
3893
  # @ wp-slimstat-view
3894
+ #: ../../admin/view/wp-slimstat-reports.php:363
3895
  #: ../../admin/view/wp-slimstat-reports.php:375
 
3896
  #, php-format
3897
  msgid "Daily %s"
3898
  msgstr "Dagliga %s"
3899
 
3900
  # @ wp-slimstat-view
3901
+ #: ../../admin/view/wp-slimstat-reports.php:366
3902
  #, php-format
3903
  msgid "%s Minute by Minute"
3904
  msgstr "%s Minut för Minut"
3905
 
3906
  # @ wp-slimstat-view
3907
+ #: ../../admin/view/wp-slimstat-reports.php:369
3908
  #, php-format
3909
  msgid "Hourly %s"
3910
  msgstr "Timvis %s"
3911
 
3912
  # @ wp-slimstat-view
3913
+ #: ../../admin/view/wp-slimstat-reports.php:372
3914
  #, php-format
3915
  msgid "Monthly %s"
3916
  msgstr "Månadsvis %s"
3917
 
3918
  # @ wp-slimstat-view
3919
+ #: ../../admin/view/wp-slimstat-reports.php:452
3920
  msgid "Category ID"
3921
  msgstr "Kategori ID"
3922
 
3923
  # @ wp-slimstat-view
3924
+ #: ../../admin/view/wp-slimstat-reports.php:485
3925
  msgid "OS Code"
3926
  msgstr "OS Kod"
3927
 
3928
  # @ wp-slimstat-view
3929
+ #: ../../admin/view/wp-slimstat-reports.php:495
3930
  msgid "Referrer"
3931
  msgstr "Referera till"
3932
 
3933
  # @ wp-slimstat-view
3934
+ #: ../../admin/view/wp-slimstat-reports.php:519
3935
+ #: ../../admin/view/wp-slimstat-reports.php:796
3936
+ #: ../../admin/view/wp-slimstat-reports.php:805
3937
+ #: ../../admin/view/wp-slimstat-reports.php:811
3938
+ #: ../../admin/view/wp-slimstat-reports.php:817
3939
+ #: ../../admin/view/wp-slimstat-reports.php:823
3940
+ #: ../../admin/view/wp-slimstat-reports.php:829
3941
+ #: ../../admin/view/wp-slimstat-reports.php:835
3942
+ #: ../../admin/view/wp-slimstat-reports.php:841
3943
  msgid "Hits"
3944
  msgstr "Träffar"
3945
 
3946
  # @ wp-slimstat-view
3947
+ #: ../../admin/view/wp-slimstat-reports.php:687
3948
  msgid "Search for"
3949
  msgstr "Sök efter"
3950
 
3951
  # @ wp-slimstat-view
3952
+ #: ../../admin/view/wp-slimstat-reports.php:718
3953
+ #: ../../admin/view/wp-slimstat-reports.php:728
3954
  msgid "Source"
3955
  msgstr "Källa"
3956
 
3957
  # @ wp-slimstat-view
3958
+ #: ../../admin/view/wp-slimstat-reports.php:720
3959
  msgid "Keywords"
3960
  msgstr "Nycleord"
3961
 
3962
  # @ wp-slimstat-view
3963
+ #: ../../admin/view/wp-slimstat-reports.php:728
3964
  #, php-format
3965
  msgid "Filter results where resource equals %s"
3966
  msgstr "Fiktrerat resultat där resurs är lika %s"
3967
 
3968
  # @ wp-slimstat-view
3969
+ #: ../../admin/view/wp-slimstat-reports.php:742
3970
  msgid "Total Pageviews"
3971
  msgstr "Total Sidvisning"
3972
 
3973
  # @ wp-slimstat-view
3974
+ #: ../../admin/view/wp-slimstat-reports.php:743
3975
  msgid "DB Size"
3976
  msgstr "DB Storlek"
3977
 
3978
  # @ wp-slimstat-view
3979
+ #: ../../admin/view/wp-slimstat-reports.php:744
3980
  msgid "Tracking Active"
3981
  msgstr "Spårning Aktiv"
3982
 
3983
  # @ wp-slimstat-options
3984
  # @ wp-slimstat-view
3985
+ #: ../../admin/view/wp-slimstat-reports.php:745
3986
  msgid "Javascript Mode"
3987
  msgstr "Javascript-läge"
3988
 
3989
  # @ wp-slimstat-view
3990
+ #: ../../admin/view/wp-slimstat-reports.php:746
3991
  msgid "Tracking Browser Caps"
3992
  msgstr "Spåra Browser Caps"
3993
 
3994
  # @ wp-slimstat-view
3995
+ #: ../../admin/view/wp-slimstat-reports.php:747
3996
  msgid "Auto purge"
3997
  msgstr "Autorensning"
3998
 
3999
  # @ wp-slimstat-view
4000
+ #: ../../admin/view/wp-slimstat-reports.php:748
4001
  msgid "Oldest pageview"
4002
  msgstr "Äldsta sidvisning"
4003
 
4004
  # @ wp-slimstat-view
4005
+ #: ../../admin/view/wp-slimstat-reports.php:748
4006
  msgid "No visits"
4007
  msgstr "Inga besök"
4008
 
4009
  # @ wp-slimstat-view
4010
+ #: ../../admin/view/wp-slimstat-reports.php:758
4011
+ #: ../../admin/view/wp-slimstat-reports.php:860
4012
  msgid ""
4013
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
4014
  "time the tracking code is executed."
4017
  "varje gång spårningskoden körs."
4018
 
4019
  # @ wp-slimstat-view
4020
+ #: ../../admin/view/wp-slimstat-reports.php:760
4021
  msgid "How many pages have been visited on average during the current period."
4022
  msgstr "Hur många sidor har besökt i genomsnitt under den aktuella perioden."
4023
 
4024
  # @ wp-slimstat-view
4025
+ #: ../../admin/view/wp-slimstat-reports.php:761
4026
+ #, fuzzy
4027
+ msgid "Average Pageviews"
4028
  msgstr "Genomsnittlig sidvisning"
4029
 
4030
  # @ wp-slimstat-view
4031
+ #: ../../admin/view/wp-slimstat-reports.php:762
4032
  msgid ""
4033
  "Visitors who landed on your site after searching for a keyword on Google, "
4034
  "Yahoo, etc."
4037
  "Yahoo etc."
4038
 
4039
  # @ wp-slimstat-view
4040
+ #: ../../admin/view/wp-slimstat-reports.php:763
4041
  msgid "From Search Results"
4042
  msgstr "Från Sökresultat"
4043
 
4044
  # @ wp-slimstat-view
4045
+ #: ../../admin/view/wp-slimstat-reports.php:764
4046
  msgid ""
4047
  "Used to differentiate between multiple requests to download a file from one "
4048
  "internet address (IP) and requests originating from many distinct addresses"
4051
  "från en internet adress (IP) och förfrågningar från flera olika adresser"
4052
 
4053
  # @ wp-slimstat-view
4054
+ #: ../../admin/view/wp-slimstat-reports.php:765
4055
+ #: ../../admin/view/wp-slimstat-reports.php:780
4056
+ #: ../../admin/view/wp-slimstat-reports.php:1145
4057
+ #: ../../admin/view/wp-slimstat-reports.php:1149
4058
+ #: ../../admin/view/wp-slimstat-reports.php:1153
4059
  msgid "Unique IPs"
4060
  msgstr "Unika IP-adresser"
4061
 
4062
  # @ wp-slimstat-view
4063
+ #: ../../admin/view/wp-slimstat-reports.php:766
4064
  msgid "Last 5 minutes"
4065
  msgstr "Sista 5 minuterna"
4066
 
4067
  # @ wp-slimstat-view
4068
+ #: ../../admin/view/wp-slimstat-reports.php:767
4069
  msgid "Last 30 minutes"
4070
  msgstr "Sista 30 minuterna"
4071
 
4072
  # @ wp-slimstat-view
4073
+ #: ../../admin/view/wp-slimstat-reports.php:777
4074
  msgid ""
4075
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
4076
  "multiple times if they perform multiple visits."
4079
  "flera gånger om de utför flera besök."
4080
 
4081
  # @ wp-slimstat-view
4082
+ #: ../../admin/view/wp-slimstat-reports.php:778
4083
  msgid "Human visits"
4084
  msgstr "Mänskliga besök"
4085
 
4086
+ #: ../../admin/view/wp-slimstat-reports.php:779
4087
  msgid "It includes only traffic generated by human visitors."
4088
  msgstr ""
4089
 
4090
  # @ wp-slimstat-view
4091
+ #: ../../admin/view/wp-slimstat-reports.php:781
4092
+ #: ../../admin/view/wp-slimstat-reports.php:872
4093
  msgid ""
4094
  "Percentage of single-page visits, i.e. visits in which the person left your "
4095
  "site from the entrance page."
4098
  "ingångssidan."
4099
 
4100
  # @ wp-slimstat-view
4101
+ #: ../../admin/view/wp-slimstat-reports.php:782
4102
  msgid "Bounce rate"
4103
  msgstr "Avvisningsfrekvens"
4104
 
4105
  # @ wp-slimstat-view
4106
+ #: ../../admin/view/wp-slimstat-reports.php:783
4107
  msgid "Visitors who had previously left a comment on your blog."
4108
  msgstr "Besökare som tidigare lämnade en kommentar på din blogg."
4109
 
4110
  # @ wp-slimstat-view
4111
+ #: ../../admin/view/wp-slimstat-reports.php:784
4112
  msgid "Known visitors"
4113
  msgstr "Kända besökare"
4114
 
4115
  # @ wp-slimstat-view
4116
+ #: ../../admin/view/wp-slimstat-reports.php:785
4117
  msgid "Human users who visited your site only once."
4118
  msgstr "Mänskliga användare som besökt din sajt endast en gång."
4119
 
4120
  # @ wp-slimstat-view
4121
+ #: ../../admin/view/wp-slimstat-reports.php:786
4122
  msgid "New visitors"
4123
  msgstr "Nya besökare"
4124
 
4125
  # @ wp-slimstat-view
4126
+ #: ../../admin/view/wp-slimstat-reports.php:787
4127
  msgid "Bots"
4128
  msgstr "Bots"
4129
 
4130
  # @ wp-slimstat-view
4131
+ #: ../../admin/view/wp-slimstat-reports.php:788
4132
  msgid "Pages per visit"
4133
  msgstr "Sidor per besök"
4134
 
4135
  # @ wp-slimstat-view
4136
+ #: ../../admin/view/wp-slimstat-reports.php:789
4137
+ #: ../../admin/view/wp-slimstat-reports.php:1158
4138
  msgid "Longest visit"
4139
  msgstr "Längsta besök"
4140
 
4141
  # @ wp-slimstat-view
4142
+ #: ../../admin/view/wp-slimstat-reports.php:789
4143
  msgid "hits"
4144
  msgstr "träffar"
4145
 
4146
  # @ wp-slimstat-view
4147
+ #: ../../admin/view/wp-slimstat-reports.php:807
4148
  msgid "0 - 30 seconds"
4149
  msgstr "0 - 30 sekunder"
4150
 
4151
  # @ wp-slimstat-view
4152
+ #: ../../admin/view/wp-slimstat-reports.php:813
4153
  msgid "31 - 60 seconds"
4154
  msgstr "31 - 60 sekunder"
4155
 
4156
  # @ wp-slimstat-view
4157
+ #: ../../admin/view/wp-slimstat-reports.php:819
4158
  msgid "1 - 3 minutes"
4159
  msgstr "1 - 3 minuter"
4160
 
4161
  # @ wp-slimstat-view
4162
+ #: ../../admin/view/wp-slimstat-reports.php:825
4163
  msgid "3 - 5 minutes"
4164
  msgstr "3 - 5 minuter"
4165
 
4166
  # @ wp-slimstat-view
4167
+ #: ../../admin/view/wp-slimstat-reports.php:831
4168
  msgid "5 - 7 minutes"
4169
  msgstr "5 - 7 minuter"
4170
 
4171
  # @ wp-slimstat-view
4172
+ #: ../../admin/view/wp-slimstat-reports.php:837
4173
  msgid "7 - 10 minutes"
4174
  msgstr "7 - 10 minuter"
4175
 
4176
  # @ wp-slimstat-view
4177
+ #: ../../admin/view/wp-slimstat-reports.php:843
4178
  #, fuzzy
4179
  msgid "More than 10 minutes"
4180
  msgstr "Mer än 20 minuter"
4181
 
4182
  # @ wp-slimstat-view
4183
+ #: ../../admin/view/wp-slimstat-reports.php:852
4184
  #, fuzzy
4185
  msgid "Average time on site"
4186
  msgstr "Genomsnittlig sidvisning per besök"
4187
 
4188
  # @ wp-slimstat-view
4189
+ #: ../../admin/view/wp-slimstat-reports.php:862
4190
  msgid ""
4191
  "A referrer (or referring site) is the site that a visitor previously visited "
4192
  "before following a link to your site."
4195
  "tidigare besökt innan genom länk till din webbplats."
4196
 
4197
  # @ wp-slimstat-view
4198
+ #: ../../admin/view/wp-slimstat-reports.php:863
4199
  msgid "Unique Referrers"
4200
  msgstr "Unika Referrers"
4201
 
4202
  # @ wp-slimstat-view
4203
+ #: ../../admin/view/wp-slimstat-reports.php:864
4204
  msgid ""
4205
  "Visitors who visited the site by typing the URL directly into their browser. "
4206
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
4213
  "eller länkar från handlingar som inte inbegriper spårnings variabler."
4214
 
4215
  # @ wp-slimstat-view
4216
+ #: ../../admin/view/wp-slimstat-reports.php:865
4217
  msgid "Direct Pageviews"
4218
  msgstr "Direkt Sidvisning"
4219
 
4220
  # @ wp-slimstat-view
4221
+ #: ../../admin/view/wp-slimstat-reports.php:866
4222
  msgid ""
4223
  "Visitors who came to your site via searches on Google or some other search "
4224
  "engine."
4227
  "sökmotor."
4228
 
4229
  # @ wp-slimstat-view
4230
+ #: ../../admin/view/wp-slimstat-reports.php:867
4231
  msgid "From a search result"
4232
  msgstr "Från ett sökresultat"
4233
 
4234
  # @ wp-slimstat-view
4235
+ #: ../../admin/view/wp-slimstat-reports.php:868
4236
  msgid ""
4237
  "The first page that a user views during a session. This is also known as the "
4238
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
4245
  "en landningssida."
4246
 
4247
  # @ wp-slimstat-view
4248
+ #: ../../admin/view/wp-slimstat-reports.php:869
4249
  msgid "Unique Landing Pages"
4250
  msgstr "Unika Landningssidor"
4251
 
4252
  # @ wp-slimstat-view
4253
+ #: ../../admin/view/wp-slimstat-reports.php:870
4254
  msgid "Number of single-page visits to your site over the selected period."
4255
  msgstr "Antalet enkelsidiga besök till din webbplats under den valda perioden."
4256
 
4257
  # @ wp-slimstat-view
4258
+ #: ../../admin/view/wp-slimstat-reports.php:871
4259
  msgid "Bounce Pages"
4260
  msgstr "Avvisande Sidor"
4261
 
4262
  # @ wp-slimstat-view
4263
+ #: ../../admin/view/wp-slimstat-reports.php:873
4264
  msgid "New Visitors Rate"
4265
  msgstr "Nya besökare Grad"
4266
 
4267
  # @ wp-slimstat-view
4268
+ #: ../../admin/view/wp-slimstat-reports.php:874
4269
  msgid ""
4270
  "Visitors who visited the site in the last 5 minutes coming from a search "
4271
  "engine."
4274
  "sökmotor."
4275
 
4276
  # @ wp-slimstat-view
4277
+ #: ../../admin/view/wp-slimstat-reports.php:875
4278
  msgid "Currently from search engines"
4279
  msgstr "För närvarande från sökmotorer"
4280
 
4281
+ #: ../../admin/view/wp-slimstat-reports.php:943
4282
  msgid "Number of pages in your site included in Google's index."
4283
  msgstr ""
4284
 
4285
  # @ wp-slimstat-options
4286
+ #: ../../admin/view/wp-slimstat-reports.php:944
4287
  #, fuzzy
4288
  msgid "Google Index"
4289
  msgstr "Avlägsna Index"
4290
 
4291
+ #: ../../admin/view/wp-slimstat-reports.php:945
4292
  msgid "Number of pages, according to Google, that link back to your site."
4293
  msgstr ""
4294
 
4295
+ #: ../../admin/view/wp-slimstat-reports.php:946
4296
  msgid "Google Backlinks"
4297
  msgstr ""
4298
 
4299
+ #: ../../admin/view/wp-slimstat-reports.php:947
4300
  msgid ""
4301
  "How many times the Facebook Like button has been approximately clicked on "
4302
  "your site."
4303
  msgstr ""
4304
 
4305
+ #: ../../admin/view/wp-slimstat-reports.php:948
4306
  msgid "Facebook Likes"
4307
  msgstr ""
4308
 
4309
+ #: ../../admin/view/wp-slimstat-reports.php:949
4310
  msgid ""
4311
  "How many times your site has been shared by someone on the social network."
4312
  msgstr ""
4313
 
4314
+ #: ../../admin/view/wp-slimstat-reports.php:950
4315
  msgid "Facebook Shares"
4316
  msgstr ""
4317
 
4318
+ #: ../../admin/view/wp-slimstat-reports.php:951
4319
  msgid "How many times links to your website have been clicked on Facebook."
4320
  msgstr ""
4321
 
4322
  # @ wp-slimstat-options
4323
+ #: ../../admin/view/wp-slimstat-reports.php:952
4324
  #, fuzzy
4325
  msgid "Facebook Clicks"
4326
  msgstr "Spåra utgående klick"
4327
 
4328
+ #: ../../admin/view/wp-slimstat-reports.php:953
4329
  msgid ""
4330
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
4331
  "traffic data."
4332
  msgstr ""
4333
 
4334
+ #: ../../admin/view/wp-slimstat-reports.php:954
4335
  msgid "Alexa World Rank"
4336
  msgstr ""
4337
 
4338
+ #: ../../admin/view/wp-slimstat-reports.php:955
4339
  msgid "Alexa Country Rank"
4340
  msgstr ""
4341
 
4342
+ #: ../../admin/view/wp-slimstat-reports.php:956
4343
  msgid "Alexa Popularity"
4344
  msgstr ""
4345
 
4346
+ #: ../../admin/view/wp-slimstat-reports.php:973
4347
  msgid "Bing Test"
4348
  msgstr ""
4349
 
4350
+ #: ../../admin/view/wp-slimstat-reports.php:974
4351
  msgid "AntiVirus Scan"
4352
  msgstr ""
4353
 
4354
+ #: ../../admin/view/wp-slimstat-reports.php:975
4355
  msgid "Google Bot Test"
4356
  msgstr ""
4357
 
4358
+ #: ../../admin/view/wp-slimstat-reports.php:976
4359
  msgid "Scan for Hostile Strings"
4360
  msgstr ""
4361
 
4362
+ #: ../../admin/view/wp-slimstat-reports.php:977
4363
  msgid "Generic Web Bot test"
4364
  msgstr ""
4365
 
4366
+ #: ../../admin/view/wp-slimstat-reports.php:978
4367
  msgid "Google Safe Browsing List"
4368
  msgstr ""
4369
 
4370
+ #: ../../admin/view/wp-slimstat-reports.php:979
4371
  msgid "Hostile External Links"
4372
  msgstr ""
4373
 
4374
  # @ wp-slimstat-view
4375
+ #: ../../admin/view/wp-slimstat-reports.php:980
4376
  #, fuzzy
4377
  msgid "Other Treats"
4378
  msgstr "Andra människor"
4379
 
4380
+ #: ../../admin/view/wp-slimstat-reports.php:1006
4381
  msgid "Passed"
4382
  msgstr ""
4383
 
4384
+ #: ../../admin/view/wp-slimstat-reports.php:1006
4385
  msgid "At Risk"
4386
  msgstr ""
4387
 
4388
+ #: ../../admin/view/wp-slimstat-reports.php:1009
4389
  msgid "Timed Out"
4390
  msgstr ""
4391
 
4392
  # Unknown
4393
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4394
  msgid "c-xx"
4395
  msgstr "Okänd"
4396
 
4397
  # Afghanistan
4398
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4399
  msgid "c-af"
4400
  msgstr "Afghanistan"
4401
 
4402
  # Åland Islands
4403
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4404
  msgid "c-ax"
4405
  msgstr "Åland"
4406
 
4407
  # Albania
4408
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4409
  msgid "c-al"
4410
  msgstr "Albanien"
4411
 
4412
  # Algeria
4413
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4414
  msgid "c-dz"
4415
  msgstr "Algeriet"
4416
 
4417
  # Andorra
4418
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4419
  msgid "c-ad"
4420
  msgstr "Andorra"
4421
 
4422
  # Angola
4423
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4424
  msgid "c-ao"
4425
  msgstr "Angola"
4426
 
4427
  # Anguilla
4428
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4429
  msgid "c-ai"
4430
  msgstr "Anguilla"
4431
 
4432
  # Antigua and Barbuda
4433
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4434
  msgid "c-ag"
4435
  msgstr "Antigua och Barbuda"
4436
 
4437
  # Argentina
4438
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4439
  msgid "c-ar"
4440
  msgstr "Argentina"
4441
 
4442
  # Armenia
4443
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4444
  msgid "c-am"
4445
  msgstr "Armenien"
4446
 
4447
  # Aruba
4448
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4449
  msgid "c-aw"
4450
  msgstr "Aruba"
4451
 
4452
  # Australia
4453
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4454
  msgid "c-au"
4455
  msgstr "Australien"
4456
 
4457
  # Austria
4458
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4459
  msgid "c-at"
4460
  msgstr "Österrike"
4461
 
4462
  # Azerbaijan
4463
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4464
  msgid "c-az"
4465
  msgstr "Azerbajdzjan"
4466
 
4467
  # Bahamas
4468
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4469
  msgid "c-bs"
4470
  msgstr "Bahamas"
4471
 
4472
  # Bahrain
4473
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4474
  msgid "c-bh"
4475
  msgstr "Bahrain"
4476
 
4477
  # Bangladesh
4478
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4479
  msgid "c-bd"
4480
  msgstr "Bangladesh"
4481
 
4482
  # Barbados
4483
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4484
  msgid "c-bb"
4485
  msgstr "Barbados"
4486
 
4487
  # Belarus
4488
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4489
  msgid "c-by"
4490
  msgstr "Belarus"
4491
 
4492
  # Belgium
4493
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4494
  msgid "c-be"
4495
  msgstr "Belgien"
4496
 
4497
  # Belize
4498
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4499
  msgid "c-bz"
4500
  msgstr "Belize"
4501
 
4502
  # Benin
4503
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4504
  msgid "c-bj"
4505
  msgstr "Benin"
4506
 
4507
  # Bermuda
4508
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4509
  msgid "c-bm"
4510
  msgstr "Bermuda"
4511
 
4512
  # Bhutan
4513
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4514
  msgid "c-bt"
4515
  msgstr "Bhutan"
4516
 
4517
  # Bolivia
4518
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4519
  msgid "c-bo"
4520
  msgstr "Bolivia"
4521
 
4522
  # Bosnia and Herzegovina
4523
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4524
  msgid "c-ba"
4525
  msgstr "Bosnien och Hercegovina"
4526
 
4527
  # Botswana
4528
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4529
  msgid "c-bw"
4530
  msgstr "Botswana"
4531
 
4532
  # Brazil
4533
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4534
  msgid "c-br"
4535
  msgstr "Brazilien"
4536
 
4537
  # Brunei Darussalam
4538
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4539
  msgid "c-bn"
4540
  msgstr "Brunei"
4541
 
4542
  # Bulgaria
4543
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4544
  msgid "c-bg"
4545
  msgstr "Bulgarien"
4546
 
4547
  # Burkina Faso
4548
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4549
  msgid "c-bf"
4550
  msgstr "Burkina Faso"
4551
 
4552
  # Burundi
4553
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4554
  msgid "c-bi"
4555
  msgstr "Burundi"
4556
 
4557
  # Cambodia
4558
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4559
  msgid "c-kh"
4560
  msgstr "Kambodja"
4561
 
4562
  # Cameroon
4563
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4564
  msgid "c-cm"
4565
  msgstr "Kamerun"
4566
 
4567
  # Canada
4568
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4569
  msgid "c-ca"
4570
  msgstr "Kanada"
4571
 
4572
  # Cape Verde
4573
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4574
  msgid "c-cv"
4575
  msgstr "Kap Verde"
4576
 
4577
  # Cayman Islands
4578
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4579
  msgid "c-ky"
4580
  msgstr "Caymanöarna"
4581
 
4582
  # Central African Republic
4583
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4584
  msgid "c-cf"
4585
  msgstr "Centralafricanska Republiken"
4586
 
4587
  # Chad
4588
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4589
  msgid "c-td"
4590
  msgstr "Chad"
4591
 
4592
  # Chile
4593
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4594
  msgid "c-cl"
4595
  msgstr "Chile"
4596
 
4597
  # China
4598
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4599
  msgid "c-cn"
4600
  msgstr "Kina"
4601
 
4602
  # Colombia
4603
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4604
  msgid "c-co"
4605
  msgstr "Colombia"
4606
 
4607
  # Comoros
4608
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4609
  msgid "c-km"
4610
  msgstr "Komorerna"
4611
 
4612
  # Congo
4613
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4614
  msgid "c-cg"
4615
  msgstr "Kongo"
4616
 
4617
  # The Democratic Republic of the Congo
4618
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4619
  msgid "c-cd"
4620
  msgstr "Kongo, Demokratiska republiken"
4621
 
4622
  # Costa Rica
4623
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4624
  msgid "c-cr"
4625
  msgstr "Costa Rica"
4626
 
4627
  # Côte d'Ivoire
4628
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4629
  msgid "c-ci"
4630
  msgstr "Côte d'Ivoire"
4631
 
4632
  # Croatia
4633
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4634
  msgid "c-hr"
4635
  msgstr "Kroatien"
4636
 
4637
  # Cuba
4638
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4639
  msgid "c-cu"
4640
  msgstr "Kuba"
4641
 
4642
  # Cyprus
4643
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4644
  msgid "c-cy"
4645
  msgstr "Cypern"
4646
 
4647
  # Czech Republic
4648
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4649
  msgid "c-cz"
4650
  msgstr "Tjeckien"
4651
 
4652
  # Denmark
4653
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4654
  msgid "c-dk"
4655
  msgstr "Danmark"
4656
 
4657
  # Djibouti
4658
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4659
  msgid "c-dj"
4660
  msgstr "Djibouti"
4661
 
4662
  # Dominica
4663
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4664
  msgid "c-dm"
4665
  msgstr "Dominica"
4666
 
4667
  # Dominican Republic
4668
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4669
  msgid "c-do"
4670
  msgstr "Dominikanska republiken"
4671
 
4672
  # Ecuador
4673
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4674
  msgid "c-ec"
4675
  msgstr "Ecuador"
4676
 
4677
  # Egypt
4678
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4679
  msgid "c-eg"
4680
  msgstr "Egypten"
4681
 
4682
  # El Salvador
4683
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4684
  msgid "c-sv"
4685
  msgstr "El Salvador"
4686
 
4687
  # Equatorial Guinea
4688
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4689
  msgid "c-gq"
4690
  msgstr "Ekvatorialguinea"
4691
 
4692
  # Eritrea
4693
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4694
  msgid "c-er"
4695
  msgstr "Eritrea"
4696
 
4697
  # Estonia
4698
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4699
  msgid "c-ee"
4700
  msgstr "Estland"
4701
 
4702
  # Ethiopia
4703
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4704
  msgid "c-et"
4705
  msgstr "Ethiopien"
4706
 
4707
  # Faroe Islands
4708
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4709
  msgid "c-fo"
4710
  msgstr "Färöarna"
4711
 
4712
  # Falkland Islands (Malvinas)
4713
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4714
  msgid "c-fk"
4715
  msgstr "Falklandsöarna"
4716
 
4717
  # Fiji
4718
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4719
  msgid "c-fj"
4720
  msgstr "Fijiöarna"
4721
 
4722
  # Finland
4723
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4724
  msgid "c-fi"
4725
  msgstr "Finland"
4726
 
4727
  # France
4728
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4729
  msgid "c-fr"
4730
  msgstr "Frankrike"
4731
 
4732
  # French Guiana
4733
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4734
  msgid "c-gf"
4735
  msgstr "Franska Guinea"
4736
 
4737
  # Gabon
4738
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4739
  msgid "c-ga"
4740
  msgstr "Gabon, Republiken"
4741
 
4742
  # Gambia
4743
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4744
  msgid "c-gm"
4745
  msgstr "Gambia"
4746
 
4747
  # Georgia
4748
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4749
  msgid "c-ge"
4750
  msgstr "Georgien"
4751
 
4752
  # Germany
4753
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4754
  msgid "c-de"
4755
  msgstr "Tyskland"
4756
 
4757
  # Ghana
4758
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4759
  msgid "c-gh"
4760
  msgstr "Ghana"
4761
 
4762
  # Greece
4763
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4764
  msgid "c-gr"
4765
  msgstr "Grekland"
4766
 
4767
  # Greenland
4768
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4769
  msgid "c-gl"
4770
  msgstr "Grönland"
4771
 
4772
  # Grenada
4773
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4774
  msgid "c-gd"
4775
  msgstr "Grenada"
4776
 
4777
  # Guadeloupe
4778
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4779
  msgid "c-gp"
4780
  msgstr "Guadeloupe"
4781
 
4782
  # Guatemala
4783
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4784
  msgid "c-gt"
4785
  msgstr "Guatemala"
4786
 
4787
  # Guinea
4788
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4789
  msgid "c-gn"
4790
  msgstr "Guinea"
4791
 
4792
  # Guinea-Bissau
4793
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4794
  msgid "c-gw"
4795
  msgstr "Guinea-Bissau"
4796
 
4797
  # Guyana
4798
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4799
  msgid "c-gy"
4800
  msgstr "Guyana"
4801
 
4802
  # Haiti
4803
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4804
  msgid "c-ht"
4805
  msgstr "Haiti"
4806
 
4807
  # Honduras
4808
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4809
  msgid "c-hn"
4810
  msgstr "Honduras"
4811
 
4812
  # Hong Kong
4813
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4814
  msgid "c-hk"
4815
  msgstr "Hongkong"
4816
 
4817
  # Hungary
4818
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4819
  msgid "c-hu"
4820
  msgstr "Ungern"
4821
 
4822
  # Iceland
4823
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4824
  msgid "c-is"
4825
  msgstr "Island"
4826
 
4827
  # India
4828
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4829
  msgid "c-in"
4830
  msgstr "Indien"
4831
 
4832
  # Indonesia
4833
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4834
  msgid "c-id"
4835
  msgstr "Indonesien"
4836
 
4837
  # Islamic Republic of Iran
4838
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4839
  msgid "c-ir"
4840
  msgstr "Iran, Islamiska republiken"
4841
 
4842
  # Iraq
4843
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4844
  msgid "c-iq"
4845
  msgstr "Irak"
4846
 
4847
  # Ireland
4848
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4849
  msgid "c-ie"
4850
  msgstr "Ireland"
4851
 
4852
  # Israel
4853
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4854
  msgid "c-il"
4855
  msgstr "Israel"
4856
 
4857
  # Italy
4858
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4859
  msgid "c-it"
4860
  msgstr "Italien"
4861
 
4862
  # Jamaica
4863
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4864
  msgid "c-jm"
4865
  msgstr "Jamaica"
4866
 
4867
  # Japan
4868
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4869
  msgid "c-jp"
4870
  msgstr "Japan"
4871
 
4872
  # Jordan
4873
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4874
  msgid "c-jo"
4875
  msgstr "Jordanien"
4876
 
4877
  # Kazakhstan
4878
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4879
  msgid "c-kz"
4880
  msgstr "Kazakstan"
4881
 
4882
  # Kenya
4883
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4884
  msgid "c-ke"
4885
  msgstr "Kenya"
4886
 
4887
  # Nauru
4888
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4889
  msgid "c-nr"
4890
  msgstr "Nauru"
4891
 
4892
  # Democratic People's Republic of Korea
4893
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4894
  msgid "c-kp"
4895
  msgstr "Korea, Demokratiska folkrepubliken"
4896
 
4897
  # Republic of Korea
4898
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4899
  msgid "c-kr"
4900
  msgstr "Korea, Republiken"
4901
 
4902
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4903
  msgid "c-kv"
4904
  msgstr "Kosovo"
4905
 
4906
  # Kuwait
4907
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4908
  msgid "c-kw"
4909
  msgstr "Kuwait"
4910
 
4911
  # Kyrgyzstan
4912
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4913
  msgid "c-kg"
4914
  msgstr "Kirgizistan, Republiken"
4915
 
4916
  # Lao People's Democratic Republic
4917
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4918
  msgid "c-la"
4919
  msgstr "Laos, Demokratiska folkrepubliken"
4920
 
4921
  # Latvia
4922
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4923
  msgid "c-lv"
4924
  msgstr "Lettland"
4925
 
4926
  # Lebanon
4927
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4928
  msgid "c-lb"
4929
  msgstr "Libanon"
4930
 
4931
  # Lesotho
4932
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4933
  msgid "c-ls"
4934
  msgstr "Lesotho"
4935
 
4936
  # Liberia
4937
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4938
  msgid "c-lr"
4939
  msgstr "Liberia"
4940
 
4941
  # Libyan Arab Jamahiriya
4942
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4943
  msgid "c-ly"
4944
  msgstr "Socialistiska folkliga libyska arabiska Jamahiriya"
4945
 
4946
  # Liechtenstein
4947
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4948
  msgid "c-li"
4949
  msgstr "Liechtenstein"
4950
 
4951
  # Lithuania
4952
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4953
  msgid "c-lt"
4954
  msgstr "Litauen"
4955
 
4956
  # Luxembourg
4957
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4958
  msgid "c-lu"
4959
  msgstr "Luxembourg"
4960
 
4961
  # The Former Yugoslav Republic of Macedonia
4962
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4963
  msgid "c-mk"
4964
  msgstr "Makedonien"
4965
 
4966
  # Madagascar
4967
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4968
  msgid "c-mg"
4969
  msgstr "Madagaskar"
4970
 
4971
  # Malawi
4972
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4973
  msgid "c-mw"
4974
  msgstr "Malawi"
4975
 
4976
  # Malaysia
4977
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4978
  msgid "c-my"
4979
  msgstr "Malaysia"
4980
 
4981
  # Mali
4982
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4983
  msgid "c-ml"
4984
  msgstr "Mali"
4985
 
4986
  # Malta
4987
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4988
  msgid "c-mt"
4989
  msgstr "Malta"
4990
 
4991
  # Martinique
4992
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4993
  msgid "c-mq"
4994
  msgstr "Martinique"
4995
 
4996
  # Mauritania
4997
+ #: ../../admin/view/wp-slimstat-reports.php:1023
4998
  msgid "c-mr"
4999
  msgstr "Mauritanien"
5000
 
5001
  # Mauritius
5002
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5003
  msgid "c-mu"
5004
  msgstr "Mauritius"
5005
 
5006
  # Mexico
5007
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5008
  msgid "c-mx"
5009
  msgstr "Mexikos förenta stater"
5010
 
5011
  # Moldova
5012
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5013
  msgid "c-md"
5014
  msgstr "Moldovien"
5015
 
5016
  # Mongolia
5017
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5018
  msgid "c-mn"
5019
  msgstr "Mongoliet"
5020
 
5021
  # Montenegro
5022
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5023
  msgid "c-me"
5024
  msgstr "Montenegro, Republiken"
5025
 
5026
  # Montserrat
5027
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5028
  msgid "c-ms"
5029
  msgstr "Montserrat"
5030
 
5031
  # Morocco
5032
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5033
  msgid "c-ma"
5034
  msgstr "Marocko"
5035
 
5036
  # Mozambique
5037
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5038
  msgid "c-mz"
5039
  msgstr "Moçambique"
5040
 
5041
  # Myanmar
5042
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5043
  msgid "c-mm"
5044
  msgstr "Myanmar"
5045
 
5046
  # Namibia
5047
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5048
  msgid "c-na"
5049
  msgstr "Namibia"
5050
 
5051
  # Nepal
5052
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5053
  msgid "c-np"
5054
  msgstr "Nepal"
5055
 
5056
  # Netherlands
5057
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5058
  msgid "c-nl"
5059
  msgstr "Nederländerna"
5060
 
5061
  # New Caledonia
5062
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5063
  msgid "c-nc"
5064
  msgstr "Nya Kaledonien"
5065
 
5066
  # New Zealand
5067
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5068
  msgid "c-nz"
5069
  msgstr "Nya Zeeland"
5070
 
5071
  # Nicaragua
5072
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5073
  msgid "c-ni"
5074
  msgstr "Nicaragua"
5075
 
5076
  # Niger
5077
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5078
  msgid "c-ne"
5079
  msgstr "Niger"
5080
 
5081
  # Nigeria
5082
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5083
  msgid "c-ng"
5084
  msgstr "Nigeria"
5085
 
5086
  # Norway
5087
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5088
  msgid "c-no"
5089
  msgstr "Norge"
5090
 
5091
  # Oman
5092
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5093
  msgid "c-om"
5094
  msgstr "Oman"
5095
 
5096
  # Pakistan
5097
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5098
  msgid "c-pk"
5099
  msgstr "Pakistan"
5100
 
5101
  # Palau
5102
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5103
  msgid "c-pw"
5104
  msgstr "Palau"
5105
 
5106
  # Occupied Palestinian Territory
5107
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5108
  msgid "c-ps"
5109
  msgstr "Palestina"
5110
 
5111
  # Panama
5112
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5113
  msgid "c-pa"
5114
  msgstr "Panama"
5115
 
5116
  # Papua New Guinea
5117
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5118
  msgid "c-pg"
5119
  msgstr "Papua Nya Guinea"
5120
 
5121
  # Paraguay
5122
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5123
  msgid "c-py"
5124
  msgstr "Paraguay"
5125
 
5126
  # Peru
5127
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5128
  msgid "c-pe"
5129
  msgstr "Peru"
5130
 
5131
  # Philippines
5132
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5133
  msgid "c-ph"
5134
  msgstr "Filippinerna"
5135
 
5136
  # Poland
5137
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5138
  msgid "c-pl"
5139
  msgstr "Poland"
5140
 
5141
  # Portugal
5142
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5143
  msgid "c-pt"
5144
  msgstr "Portugal"
5145
 
5146
  # Puerto Rico
5147
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5148
  msgid "c-pr"
5149
  msgstr "Puerto Rico"
5150
 
5151
  # Qatar
5152
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5153
  msgid "c-qa"
5154
  msgstr "Qatar"
5155
 
5156
  # Réunion
5157
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5158
  msgid "c-re"
5159
  msgstr "Réunion"
5160
 
5161
  # Romania
5162
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5163
  msgid "c-ro"
5164
  msgstr "Romanien"
5165
 
5166
  # Russian Federation
5167
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5168
  msgid "c-ru"
5169
  msgstr "Ryska federationen"
5170
 
5171
  # Rwanda
5172
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5173
  msgid "c-rw"
5174
  msgstr "Rwanda"
5175
 
5176
  # Saint Kitts and Nevis
5177
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5178
  msgid "c-kn"
5179
  msgstr "Saint Kitts and Nevis"
5180
 
5181
  # Saint Lucia
5182
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5183
  msgid "c-lc"
5184
  msgstr "Saint Lucia"
5185
 
5186
  # Saint Martin
5187
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5188
  msgid "c-mf"
5189
  msgstr "Sint Maarten"
5190
 
5191
  # Saint Vincent and the Grenadines
5192
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5193
  msgid "c-vc"
5194
  msgstr "Saint Vincent och Grenadinerna"
5195
 
5196
  # Samoa
5197
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5198
  msgid "c-ws"
5199
  msgstr "Samoa"
5200
 
5201
  # Sao Tome and Principe
5202
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5203
  msgid "c-st"
5204
  msgstr "São Tomé och Príncipe"
5205
 
5206
  # Saudi Arabia
5207
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5208
  msgid "c-sa"
5209
  msgstr "Saudi Arabien"
5210
 
5211
  # Senegal
5212
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5213
  msgid "c-sn"
5214
  msgstr "Senegal"
5215
 
5216
  # Serbia
5217
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5218
  msgid "c-rs"
5219
  msgstr "Serbien"
5220
 
5221
  # Sierra Leone
5222
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5223
  msgid "c-sl"
5224
  msgstr "Sierra Leone"
5225
 
5226
  # Singapore
5227
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5228
  msgid "c-sg"
5229
  msgstr "Singapore"
5230
 
5231
  # Slovakia
5232
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5233
  msgid "c-sk"
5234
  msgstr "Slovakien"
5235
 
5236
  # Slovenia
5237
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5238
  msgid "c-si"
5239
  msgstr "Slovenien"
5240
 
5241
  # Solomon Islands
5242
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5243
  msgid "c-sb"
5244
  msgstr "Solomonöarna"
5245
 
5246
  # Somalia
5247
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5248
  msgid "c-so"
5249
  msgstr "Somalia"
5250
 
5251
  # South Africa
5252
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5253
  msgid "c-za"
5254
  msgstr "Sydafrika"
5255
 
5256
  # South Georgia and the South Sandwich Islands
5257
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5258
  msgid "c-gs"
5259
  msgstr "Sydgeorgien och Sydsandwichöarna"
5260
 
5261
  # Spain
5262
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5263
  msgid "c-es"
5264
  msgstr "Spanien"
5265
 
5266
  # Sri Lanka
5267
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5268
  msgid "c-lk"
5269
  msgstr "Sri Lanka"
5270
 
5271
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5272
+ msgid "c-sc"
5273
+ msgstr ""
5274
+
5275
  # Sudan
5276
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5277
  msgid "c-sd"
5278
  msgstr "Sudan"
5279
 
5280
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5281
  msgid "c-ss"
5282
  msgstr "Södra Sudan"
5283
 
5284
  # Suriname
5285
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5286
  msgid "c-sr"
5287
  msgstr "Suriname"
5288
 
5289
  # Svalbard and Jan Mayen
5290
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5291
  msgid "c-sj"
5292
  msgstr "Svalbard och Jan Mayen"
5293
 
5294
  # Swaziland
5295
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5296
  msgid "c-sz"
5297
  msgstr "Swaziland"
5298
 
5299
  # Sweden
5300
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5301
  msgid "c-se"
5302
  msgstr "Sverige"
5303
 
5304
  # Switzerland
5305
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5306
  msgid "c-ch"
5307
  msgstr "Schweiz"
5308
 
5309
  # Syrian Arab Republic
5310
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5311
  msgid "c-sy"
5312
  msgstr "Syrien"
5313
 
5314
  # Taiwan, Province of China
5315
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5316
  msgid "c-tw"
5317
  msgstr "Taiwan"
5318
 
5319
  # Tajikistan
5320
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5321
  msgid "c-tj"
5322
  msgstr "Tadzjikistan"
5323
 
5324
  # United Republic of Tanzania
5325
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5326
  msgid "c-tz"
5327
  msgstr "Tanzania, Förenade republiken"
5328
 
5329
  # Thailand
5330
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5331
  msgid "c-th"
5332
  msgstr "Thailand"
5333
 
5334
  # Timor-Leste
5335
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5336
  msgid "c-tl"
5337
  msgstr "Timor-Leste (Östtimor)"
5338
 
5339
  # Togo
5340
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5341
  msgid "c-tg"
5342
  msgstr "Togo"
5343
 
5344
  # Tonga
5345
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5346
  msgid "c-to"
5347
  msgstr "Tonga"
5348
 
5349
  # Trinidad and Tobago
5350
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5351
  msgid "c-tt"
5352
  msgstr "Trinidad och Tobago"
5353
 
5354
  # Tunisia
5355
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5356
  msgid "c-tn"
5357
  msgstr "Tunisien"
5358
 
5359
  # Turkey
5360
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5361
  msgid "c-tr"
5362
  msgstr "Turkiet"
5363
 
5364
  # Turkmenistan
5365
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5366
  msgid "c-tm"
5367
  msgstr "Turkmenistan"
5368
 
5369
  # Turks and Caicos Islands
5370
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5371
  msgid "c-tc"
5372
  msgstr "Turks- och Caicosöarna"
5373
 
5374
  # Uganda
5375
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5376
  msgid "c-ug"
5377
  msgstr "Uganda"
5378
 
5379
  # Ukraine
5380
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5381
  msgid "c-ua"
5382
  msgstr "Ukraina"
5383
 
5384
  # United Arab Emirates
5385
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5386
  msgid "c-ae"
5387
  msgstr "Förenade Arabemiraten"
5388
 
5389
  # United Kingdom
5390
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5391
  msgid "c-gb"
5392
  msgstr "Storbritanien"
5393
 
5394
  # United States
5395
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5396
  msgid "c-us"
5397
  msgstr "Amerikas förenta stater"
5398
 
5399
  # Uruguay
5400
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5401
  msgid "c-uy"
5402
  msgstr "Uruguay"
5403
 
5404
  # Uzbekistan
5405
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5406
  msgid "c-uz"
5407
  msgstr "Uzbekistan"
5408
 
5409
  # Vanuatu
5410
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5411
  msgid "c-vu"
5412
  msgstr "Vanuatu"
5413
 
5414
  # Venezuela
5415
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5416
  msgid "c-ve"
5417
  msgstr "Venezuela"
5418
 
5419
  # Viet Nam
5420
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5421
  msgid "c-vn"
5422
  msgstr "Vietnam"
5423
 
5424
  # British Virgin Islands
5425
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5426
  msgid "c-vg"
5427
  msgstr "Jungfruöarna, Brittiska "
5428
 
5429
  # U.S. Virgin Islands
5430
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5431
  msgid "c-vi"
5432
  msgstr "Jungfruöarna, Amerikanska"
5433
 
5434
  # Western Sahara
5435
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5436
  msgid "c-eh"
5437
  msgstr "Väst Sahara"
5438
 
5439
  # Yemen
5440
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5441
  msgid "c-ye"
5442
  msgstr "Jemen"
5443
 
5444
  # Zambia
5445
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5446
  msgid "c-zm"
5447
  msgstr "Zambia"
5448
 
5449
  # Zimbabwe
5450
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5451
  msgid "c-zw"
5452
  msgstr "Zimbabwe"
5453
 
5454
  # Guernsey
5455
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5456
  msgid "c-gg"
5457
  msgstr "Guernsey"
5458
 
5459
  # Jersey
5460
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5461
  msgid "c-je"
5462
  msgstr "Jersey, Fögderiet"
5463
 
5464
  # Isle of Man
5465
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5466
  msgid "c-im"
5467
  msgstr "Isle of Man"
5468
 
5469
  # Maldives
5470
+ #: ../../admin/view/wp-slimstat-reports.php:1023
5471
  msgid "c-mv"
5472
  msgstr "Maldiverna"
5473
 
5474
+ #: ../../admin/view/wp-slimstat-reports.php:1024
5475
  msgid "c-eu"
5476
  msgstr ""
5477
 
5478
+ #: ../../admin/view/wp-slimstat-reports.php:1113
5479
  msgid ""
5480
  "This value includes not only posts, but also custom post types, regardless "
5481
  "of their status"
5482
  msgstr ""
5483
 
5484
+ #: ../../admin/view/wp-slimstat-reports.php:1114
5485
  #, fuzzy
5486
  msgid "Content Items"
5487
  msgstr "Innehåll"
5488
 
5489
+ #: ../../admin/view/wp-slimstat-reports.php:1115
5490
  msgid "Total Comments"
5491
  msgstr ""
5492
 
5493
+ #: ../../admin/view/wp-slimstat-reports.php:1116
5494
  msgid "Pingbacks"
5495
  msgstr ""
5496
 
5497
+ #: ../../admin/view/wp-slimstat-reports.php:1117
5498
  msgid "Trackbacks"
5499
  msgstr ""
5500
 
5501
  # @ wp-slimstat-view
5502
+ #: ../../admin/view/wp-slimstat-reports.php:1118
5503
  #, fuzzy
5504
  msgid "Longest Post (ID)"
5505
  msgstr "Längsta besök"
5506
 
5507
+ #: ../../admin/view/wp-slimstat-reports.php:1119
5508
  msgid "Longest Comment (ID)"
5509
  msgstr ""
5510
 
5511
  # @ wp-slimstat-options
5512
+ #: ../../admin/view/wp-slimstat-reports.php:1120
5513
  #, fuzzy
5514
  msgid "Avg Comments Per Post"
5515
  msgstr "Lägg till kolumn för poster"
5516
 
5517
+ #: ../../admin/view/wp-slimstat-reports.php:1121
5518
  msgid "Avg Posts Per Day"
5519
  msgstr ""
5520
 
5521
  # @ wp-slimstat-view
5522
+ #: ../../admin/view/wp-slimstat-reports.php:1149
5523
  msgid "Visits"
5524
  msgstr "Besök"
5525
 
5526
  # @ wp-slimstat-view
5527
+ #: ../../admin/view/wp-slimstat-reports.php:1153
5528
  msgid "Domains"
5529
  msgstr "Domäner"
5530
 
5531
+ # @ wp-slimstat-view
5532
+ #: ../../admin/view/wp-slimstat-reports.php:1158
5533
+ msgid "Avg Pageviews"
5534
+ msgstr "Genomsnittlig sidvisning"
5535
+
5536
+ # @ wp-slimstat-options
5537
+ #~ msgid "Chart Annotations"
5538
+ #~ msgstr "Diagramnotering"
5539
+
5540
+ # @ wp-slimstat-options
5541
+ #~ msgid ""
5542
+ #~ "Add <em>markings</em> to each chart by specifying a date and its "
5543
+ #~ "description in the field below. Useful to keep track of special events "
5544
+ #~ "and correlate them to your analytics. Please use the following format:"
5545
+ #~ "<code>YYYY MM DD HH:mm=Description 1,YYYY MM DD HH:mm=Description 2</"
5546
+ #~ "code>. For example: 2012 12 31 23:55=New Year's Eve."
5547
+ #~ msgstr ""
5548
+ #~ "Lägg till <em>markering</em> till varje diagram genom att specificera ett "
5549
+ #~ "datum och beskrivning i nedanstående fält. Användbart för att spåra "
5550
+ #~ "speciella händelser och korelera dem till din statistik. Använd endast "
5551
+ #~ "dessa format:<code>YYYY MM DD HH:mm=Beskrivning 1,YYYY MM DD HH:"
5552
+ #~ "mm=Beskrivning 2</code>. Till exempel: 2012 12 31 23:55=Nyårsafton."
5553
+
5554
+ #, fuzzy
5555
+ #~ msgid "Export Settings"
5556
+ #~ msgstr "Inställningar"
5557
+
5558
  # @ wp-slimstat-view
5559
  #~ msgid "Stats"
5560
  #~ msgstr "Stats"
5697
  #~ "Visa värdnamn istället för IP-adresser. Det dämpar renderingen av dina "
5698
  #~ "mätningar."
5699
 
 
 
 
 
5700
  # @ wp-slimstat-options
5701
  #~ msgid ""
5702
  #~ "Specify the number of results to return for each module. Please use a "
admin/lang/wp-slimstat-zh_CN.mo CHANGED
Binary file
admin/lang/wp-slimstat-zh_CN.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-12-30 22:38-0500\n"
6
- "PO-Revision-Date: 2013-12-30 22:39-0500\n"
7
- "Last-Translator: get used to it <support@getused.to.it>\n"
8
  "Language-Team: 沐熙工作室 <admin@muxi.me>\n"
9
  "Language: zh_CN\n"
10
  "MIME-Version: 1.0\n"
@@ -13,99 +13,103 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: s;\n"
16
- "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: ../..\n"
18
 
19
- #: ../../wp-slimstat.php:1175 ../../admin/wp-slimstat-admin.php:396
20
- #: ../../admin/view/wp-slimstat-reports.php:32
21
  msgid "Right Now"
22
  msgstr "即时视图"
23
 
24
- #: ../../wp-slimstat.php:1176 ../../admin/wp-slimstat-admin.php:397
25
- #: ../../admin/wp-slimstat-admin.php:414
26
- #: ../../admin/view/wp-slimstat-reports.php:33
27
  msgid "Overview"
28
  msgstr "概览视图"
29
 
30
- #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:398
31
- #: ../../admin/wp-slimstat-admin.php:415
32
- #: ../../admin/view/wp-slimstat-reports.php:34
33
  msgid "Visitors"
34
  msgstr "访客视图"
35
 
36
- #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:399
37
- #: ../../admin/wp-slimstat-admin.php:416
38
- #: ../../admin/view/wp-slimstat-reports.php:35
39
  msgid "Content"
40
  msgstr "内容视图"
41
 
42
- #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:400
43
- #: ../../admin/wp-slimstat-admin.php:417 ../../admin/view/index.php:160
44
- #: ../../admin/view/wp-slimstat-reports.php:36
45
  msgid "Traffic Sources"
46
  msgstr "流量来源"
47
 
48
- #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:401
49
- #: ../../admin/wp-slimstat-admin.php:418
50
- #: ../../admin/view/wp-slimstat-reports.php:37
51
- #: ../../admin/view/wp-slimstat-reports.php:142
52
  msgid "World Map"
53
  msgstr "世界地图"
54
 
55
- #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:402
56
- #: ../../admin/wp-slimstat-admin.php:419
57
- #: ../../admin/view/wp-slimstat-reports.php:38
58
  msgid "Custom Reports"
59
  msgstr "自定义报告"
60
 
61
- #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:403
62
- #: ../../admin/wp-slimstat-admin.php:420 ../../admin/config/addons.php:29
63
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:228
64
  msgid "Add-ons"
65
  msgstr "扩展组件"
66
 
67
- #: ../../wp-slimstat.php:1185 ../../admin/wp-slimstat-admin.php:449
68
- #: ../../admin/wp-slimstat-admin.php:452 ../../admin/wp-slimstat-admin.php:496
69
- #: ../../admin/wp-slimstat-admin.php:499 ../../admin/config/index.php:14
70
- #: ../../admin/config/index.php:134
71
  msgid "Settings"
72
  msgstr "功能设置"
73
 
74
- #: ../../admin/wp-slimstat-admin.php:395 ../../admin/wp-slimstat-admin.php:407
75
- #: ../../admin/wp-slimstat-admin.php:410
76
  msgid "SlimStat"
77
  msgstr "SlimStat"
78
 
79
- #: ../../admin/wp-slimstat-admin.php:513
80
  msgid "Pageviews in the last 365 days"
81
  msgstr ""
82
 
83
- #: ../../admin/wp-slimstat-admin.php:537
84
  msgid "Show on screen"
85
  msgstr "在屏幕上显示"
86
 
87
- #: ../../admin/wp-slimstat-admin.php:584
 
 
 
 
88
  msgid "There was an error updating the following options:"
89
  msgstr "有一个错误请更新以下选项:"
90
 
91
- #: ../../admin/wp-slimstat-admin.php:587
92
  msgid "Your settings have been successfully updated."
93
  msgstr "您的设置已成功更新"
94
 
95
- #: ../../admin/wp-slimstat-admin.php:610
96
  msgid "Save Changes"
97
  msgstr "保存更改"
98
 
99
- #: ../../admin/wp-slimstat-admin.php:629
100
  msgid "Yes"
101
  msgstr "是"
102
 
103
- #: ../../admin/wp-slimstat-admin.php:630
104
- #: ../../admin/view/wp-slimstat-reports.php:656
105
  msgid "No"
106
  msgstr "否"
107
 
108
- #: ../../admin/wp-slimstat-admin.php:670
109
  msgid ""
110
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
111
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
@@ -116,15 +120,15 @@ msgstr ""
116
  "target=\"_blank\" href=\"http://wordpress.org/extend/plugins/wp-slimstat/faq/"
117
  "\">查看常见问题</a>获得更多信息。"
118
 
119
- #: ../../admin/wp-slimstat-admin.php:690
120
  msgid "Definitions"
121
  msgstr "定义"
122
 
123
- #: ../../admin/wp-slimstat-admin.php:693
124
  msgid "Pageview"
125
  msgstr "浏览量"
126
 
127
- #: ../../admin/wp-slimstat-admin.php:693
128
  msgid ""
129
  "A request to load a single HTML file (\"page\"). This should be contrasted "
130
  "with a \"hit\", which refers to a request for any file from a web server. WP "
@@ -133,11 +137,11 @@ msgstr ""
133
  "加载HTML页面请求,它指的是从Web服务器任何文件的请求。每次WP SlimStat执行统计"
134
  "代码记录浏览量"
135
 
136
- #: ../../admin/wp-slimstat-admin.php:694
137
  msgid "(Human) Visit"
138
  msgstr "访问量"
139
 
140
- #: ../../admin/wp-slimstat-admin.php:694
141
  msgid ""
142
  "A period of interaction between a visitor's browser and your website, ending "
143
  "when the browser is closed or when the user has been inactive on that site "
@@ -146,22 +150,22 @@ msgstr ""
146
  "访问者的浏览器与网站之间的一段交互时间,当浏览器关闭或当用户处于非活动状态30"
147
  "分钟内结束"
148
 
149
- #: ../../admin/wp-slimstat-admin.php:695 ../../admin/view/index.php:132
150
- #: ../../admin/view/right-now.php:148
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-01-29 22:01-0500\n"
6
+ "PO-Revision-Date: 2014-01-29 22:01-0500\n"
7
+ "Last-Translator: Get Used To IT <support@getused.to.it>\n"
8
  "Language-Team: 沐熙工作室 <admin@muxi.me>\n"
9
  "Language: zh_CN\n"
10
  "MIME-Version: 1.0\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: s;\n"
16
+ "X-Generator: Poedit 1.6.3\n"
17
  "X-Poedit-SearchPath-0: ../..\n"
18
 
19
+ #: ../../wp-slimstat.php:1177 ../../admin/wp-slimstat-admin.php:402
20
+ #: ../../admin/view/wp-slimstat-reports.php:31
21
  msgid "Right Now"
22
  msgstr "即时视图"
23
 
24
+ #: ../../wp-slimstat.php:1178 ../../admin/wp-slimstat-admin.php:403
25
+ #: ../../admin/wp-slimstat-admin.php:420
26
+ #: ../../admin/view/wp-slimstat-reports.php:32
27
  msgid "Overview"
28
  msgstr "概览视图"
29
 
30
+ #: ../../wp-slimstat.php:1179 ../../admin/wp-slimstat-admin.php:404
31
+ #: ../../admin/wp-slimstat-admin.php:421
32
+ #: ../../admin/view/wp-slimstat-reports.php:33
33
  msgid "Visitors"
34
  msgstr "访客视图"
35
 
36
+ #: ../../wp-slimstat.php:1180 ../../admin/wp-slimstat-admin.php:405
37
+ #: ../../admin/wp-slimstat-admin.php:422
38
+ #: ../../admin/view/wp-slimstat-reports.php:34
39
  msgid "Content"
40
  msgstr "内容视图"
41
 
42
+ #: ../../wp-slimstat.php:1181 ../../admin/wp-slimstat-admin.php:406
43
+ #: ../../admin/wp-slimstat-admin.php:423 ../../admin/view/index.php:168
44
+ #: ../../admin/view/wp-slimstat-reports.php:35
45
  msgid "Traffic Sources"
46
  msgstr "流量来源"
47
 
48
+ #: ../../wp-slimstat.php:1182 ../../admin/wp-slimstat-admin.php:407
49
+ #: ../../admin/wp-slimstat-admin.php:424
50
+ #: ../../admin/view/wp-slimstat-reports.php:36
51
+ #: ../../admin/view/wp-slimstat-reports.php:105
52
  msgid "World Map"
53
  msgstr "世界地图"
54
 
55
+ #: ../../wp-slimstat.php:1183 ../../admin/wp-slimstat-admin.php:408
56
+ #: ../../admin/wp-slimstat-admin.php:425
57
+ #: ../../admin/view/wp-slimstat-reports.php:37
58
  msgid "Custom Reports"
59
  msgstr "自定义报告"
60
 
61
+ #: ../../wp-slimstat.php:1184 ../../admin/wp-slimstat-admin.php:409
62
+ #: ../../admin/wp-slimstat-admin.php:426 ../../admin/config/addons.php:29
63
  #: ../../admin/config/index.php:9 ../../admin/config/index.php:228
64
  msgid "Add-ons"
65
  msgstr "扩展组件"
66
 
67
+ #: ../../wp-slimstat.php:1187 ../../admin/wp-slimstat-admin.php:455
68
+ #: ../../admin/wp-slimstat-admin.php:458 ../../admin/wp-slimstat-admin.php:502
69
+ #: ../../admin/wp-slimstat-admin.php:505 ../../admin/config/index.php:14
70
+ #: ../../admin/config/index.php:135
71
  msgid "Settings"
72
  msgstr "功能设置"
73
 
74
+ #: ../../admin/wp-slimstat-admin.php:401 ../../admin/wp-slimstat-admin.php:413
75
+ #: ../../admin/wp-slimstat-admin.php:416
76
  msgid "SlimStat"
77
  msgstr "SlimStat"
78
 
79
+ #: ../../admin/wp-slimstat-admin.php:519
80
  msgid "Pageviews in the last 365 days"
81
  msgstr ""
82
 
83
+ #: ../../admin/wp-slimstat-admin.php:543
84
  msgid "Show on screen"
85
  msgstr "在屏幕上显示"
86
 
87
+ #: ../../admin/wp-slimstat-admin.php:571
88
+ msgid "Hide this notice"
89
+ msgstr ""
90
+
91
+ #: ../../admin/wp-slimstat-admin.php:598
92
  msgid "There was an error updating the following options:"
93
  msgstr "有一个错误请更新以下选项:"
94
 
95
+ #: ../../admin/wp-slimstat-admin.php:601
96
  msgid "Your settings have been successfully updated."
97
  msgstr "您的设置已成功更新"
98
 
99
+ #: ../../admin/wp-slimstat-admin.php:624
100
  msgid "Save Changes"
101
  msgstr "保存更改"
102
 
103
+ #: ../../admin/wp-slimstat-admin.php:643
104
  msgid "Yes"
105
  msgstr "是"
106
 
107
+ #: ../../admin/wp-slimstat-admin.php:644
108
+ #: ../../admin/view/wp-slimstat-reports.php:747
109
  msgid "No"
110
  msgstr "否"
111
 
112
+ #: ../../admin/wp-slimstat-admin.php:684
113
  msgid ""
114
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
115
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
120
  "target=\"_blank\" href=\"http://wordpress.org/extend/plugins/wp-slimstat/faq/"
121
  "\">查看常见问题</a>获得更多信息。"
122
 
123
+ #: ../../admin/wp-slimstat-admin.php:704
124
  msgid "Definitions"
125
  msgstr "定义"
126
 
127
+ #: ../../admin/wp-slimstat-admin.php:707
128
  msgid "Pageview"
129
  msgstr "浏览量"
130
 
131
+ #: ../../admin/wp-slimstat-admin.php:707
132
  msgid ""
133
  "A request to load a single HTML file (\"page\"). This should be contrasted "
134
  "with a \"hit\", which refers to a request for any file from a web server. WP "
137
  "加载HTML页面请求,它指的是从Web服务器任何文件的请求。每次WP SlimStat执行统计"
138
  "代码记录浏览量"
139
 
140
+ #: ../../admin/wp-slimstat-admin.php:708
141
  msgid "(Human) Visit"
142
  msgstr "访问量"
143
 
144
+ #: ../../admin/wp-slimstat-admin.php:708
145
  msgid ""
146
  "A period of interaction between a visitor's browser and your website, ending "
147
  "when the browser is closed or when the user has been inactive on that site "
150
  "访问者的浏览器与网站之间的一段交互时间,当浏览器关闭或当用户处于非活动状态30"
151
  "分钟内结束"
152
 
153
+ #: ../../admin/wp-slimstat-admin.php:709 ../../admin/view/index.php:140
154
+ #: ../../admin/view/righ