Slimstat Analytics - Version 4.2.3

Version Description

  • [Note] The Javascript Tracker has been partially rewritten to store each link's state as inline "data" attributes. This had already been implemented a while ago, however the tracker was not using those values to decide what to do; it was using instead Javascript variables. Now the code has been consolidated, also allowing third party tools to affect the behavior of the tracker at runtime, by modifying the values associated to the data attributes. Please feel free to contact us if you want to know more about this new feature.
  • [Note] As the tracker engine has been changed, please make sure to flush your server caches to take advantage of all the new features and optimizations.
  • [Update] The Activity Log report displays when users login and logout (this feature requires our premium add-on User Overview). You can also create filters on this event using the 'Annotations' filter in the dropdown. Contact our support team for more information.
  • [Update] Minor CSS improvements to adapt the layout to WordPress 4.4.
  • [Update] Tracker Error Codes are now called Tracker Statuses, to avoid confusion between when the plugin is not working and when it's actually doing its job.
  • [Update] Javascript tracker is now capable of tracking custom link types.
  • [Fix] Custom filters (used in some of our premium add-on) where affecting the way charts were being displayed.
  • [Fix] Resolved an encoding issue, introduced by our XSS patch in version 4.2.2 (thank you, Paper Bird)
  • [Fix] Shorcodes were not working as expected if the value passed to the filter was zero (thanky you, Sheriffonline).
  • [Fix] Shortcode for countries will now return Country names, not codes (thank you, Sheriffonline).
  • [Fix] Time ranges within the same day (i.e. visitors in the last 5 minutes) were not being calculated correctly.
Download this release

Release Info

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

Code changes from version 4.2.2 to 4.2.3

admin/config/index.php CHANGED
@@ -116,7 +116,7 @@ $options = array(
116
 
117
  'general_integration_header' => array('description' => __('WordPress Integration','wp-slimstat'), 'type' => 'section_header'),
118
  'use_separate_menu' => array( 'description' => __('Menu Position','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Choose between a standalone admin menu for Slimstat or a drop down in the admin bar (if visible).','wp-slimstat'), 'custom_label_yes' => __('Side Menu','wp-slimstat'), 'custom_label_no' => __('Admin Bar','wp-slimstat') ),
119
- 'add_posts_column' => array( 'description' => __('Posts and Pages','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Add a new column to the Edit Posts/Pages screens, with the number of hits per post in the last 365 days.','wp-slimstat') ),
120
  'posts_column_day_interval' => array( 'description' => __('Report Interval','wp-slimstat'), 'type' => 'integer', 'long_description' => __('Enter the time range, in days, that should be used to calculate the value here above.','wp-slimstat') ),
121
  'posts_column_pageviews' => array( 'description' => __('Report Type','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Select what kind of information you would like to see displayed on the Posts admin screen. Pageviews include all the hits regardless of the user, Unique IPs consider only one hit per user in the given time range.','wp-slimstat'), 'custom_label_yes' => __('Pageviews','wp-slimstat'), 'custom_label_no' => __('Unique IPs','wp-slimstat') ),
122
  'add_dashboard_widgets' => array( 'description' => __('Dashboard Widgets','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Choose if you want to have the most important reports on your WordPress Dashboard. Use the Screen Options dropdown to select which ones to display.','wp-slimstat') ),
116
 
117
  'general_integration_header' => array('description' => __('WordPress Integration','wp-slimstat'), 'type' => 'section_header'),
118
  'use_separate_menu' => array( 'description' => __('Menu Position','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Choose between a standalone admin menu for Slimstat or a drop down in the admin bar (if visible).','wp-slimstat'), 'custom_label_yes' => __('Side Menu','wp-slimstat'), 'custom_label_no' => __('Admin Bar','wp-slimstat') ),
119
+ 'add_posts_column' => array( 'description' => __('Posts and Pages','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Add a new column to the Edit Posts/Pages screens, with the number of hits per post within the timeframe specified here below.','wp-slimstat') ),
120
  'posts_column_day_interval' => array( 'description' => __('Report Interval','wp-slimstat'), 'type' => 'integer', 'long_description' => __('Enter the time range, in days, that should be used to calculate the value here above.','wp-slimstat') ),
121
  'posts_column_pageviews' => array( 'description' => __('Report Type','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Select what kind of information you would like to see displayed on the Posts admin screen. Pageviews include all the hits regardless of the user, Unique IPs consider only one hit per user in the given time range.','wp-slimstat'), 'custom_label_yes' => __('Pageviews','wp-slimstat'), 'custom_label_no' => __('Unique IPs','wp-slimstat') ),
122
  'add_dashboard_widgets' => array( 'description' => __('Dashboard Widgets','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Choose if you want to have the most important reports on your WordPress Dashboard. Use the Screen Options dropdown to select which ones to display.','wp-slimstat') ),
admin/config/maintenance.php CHANGED
@@ -221,10 +221,10 @@ $suffixes = array('bytes', 'KB', 'MB', 'GB', 'TB');
221
  <td colspan="2" class="slimstat-options-section-header"><?php _e('Debugging','wp-slimstat') ?></td>
222
  </tr>
223
  <tr>
224
- <th scope="row"><?php _e('Tracker Error Code','wp-slimstat') ?></th>
225
  <td>
226
- <?php echo is_array(wp_slimstat::$options['last_tracker_error'])?'<code>'.wp_slimstat::$options['last_tracker_error'][0].' '.wp_slimstat::$options['last_tracker_error'][1].'</code> '.__('recorded on','wp-slimstat').' '.date_i18n(wp_slimstat::$options['date_format'], wp_slimstat::$options['last_tracker_error'][2], true).' @ '.date_i18n(wp_slimstat::$options['time_format'], wp_slimstat::$options['last_tracker_error'][2], true):__('No Errors so far','wp-slimstat'); ?>
227
- <span class="description"><?php _e('The information here above is useful to troubleshoot issues with the tracker. Please include this code when sending a support request.','wp-slimstat') ?></span>
228
  </td>
229
  </tr>
230
  <tr class="alternate">
221
  <td colspan="2" class="slimstat-options-section-header"><?php _e('Debugging','wp-slimstat') ?></td>
222
  </tr>
223
  <tr>
224
+ <th scope="row"><?php _e('Tracker Status','wp-slimstat') ?></th>
225
  <td>
226
+ <?php echo is_array(wp_slimstat::$options['last_tracker_error'])?'<code>'.wp_slimstat::$options['last_tracker_error'][0].' '.wp_slimstat::$options['last_tracker_error'][1].'</code><br/> '.__('recorded on','wp-slimstat').' '.date_i18n(wp_slimstat::$options['date_format'], wp_slimstat::$options['last_tracker_error'][2], true).' @ '.date_i18n(wp_slimstat::$options['time_format'], wp_slimstat::$options['last_tracker_error'][2], true):__('No Errors so far','wp-slimstat'); ?>
227
+ <span class="description"><?php _e('The information here above is useful to troubleshoot issues with the tracker. It includes both <strong>errors</strong>, which are returned when the tracker could not record a pageview and are indicative of some kind of malfunction, and <strong>notices</strong>, which explain the reason why the most recent pageview was not recorded, based on your settings (filters, blackslists, etc). Please include this code when sending a support request.','wp-slimstat') ?></span>
228
  </td>
229
  </tr>
230
  <tr class="alternate">
admin/css/slimstat.css CHANGED
@@ -216,7 +216,7 @@
216
  [id^=slim_] p{
217
  border-bottom: 1px solid #ddd;
218
  font-weight: 300;
219
- line-height: 1.5;
220
  margin: 0;
221
  min-height: 20px;
222
  overflow: auto;
@@ -259,8 +259,8 @@
259
  background-repeat: no-repeat;
260
  display: inline-block;
261
  font-size: 18px;
262
- height: 16px;
263
- line-height: 16px;
264
  margin-right: 5px;
265
  vertical-align: top;
266
  width: 16px;
@@ -422,6 +422,7 @@
422
  /* Settings */
423
  #slimstat-message{
424
  border: 1px solid #ccc;
 
425
  margin: 0;
426
  padding: 0 10px;
427
  }
@@ -447,7 +448,6 @@
447
  border-width: 1px 1px 0 !important;
448
  font-size: 14px;
449
  margin: 0 5px 0 0;
450
- padding: 10px;
451
  }
452
  .nav-tab.nav-tab-active{
453
  background-color: #fff !important;
@@ -468,7 +468,7 @@
468
  .slimstat-options-section-header {
469
  background-color: #e4e4e4;
470
  font-size: 1.4em !important;
471
- margin-bottom: 0;
472
  padding: 5px 10px !important;
473
  }
474
  .form-table h3{
@@ -698,16 +698,16 @@
698
  /* Fontello - Custom Icon Fonts for SlimStat | Uses Fontelico (C) 2012 by Fontello project, Elusive (C) 2013 by Aristeides Stathopoulos, Font Awesome (C) 2012 by Dave Gandy | http://www.fontello.com */
699
  @font-face {
700
  font-family: 'slimstat';
701
- src: url('slimstat.eot?17281142');
702
- src: url('slimstat.eot?17281142#iefix') format('embedded-opentype'),
703
- url('slimstat.svg?17281142#fontello') format('svg');
704
  font-weight: normal;
705
  font-style: normal;
706
  }
707
  @font-face {
708
  font-family: 'slimstat';
709
- src: url('data:application/octet-stream;base64,d09GRgABAAAAABTsAA4AAAAAImwAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAEQAAABWPlhJGmNtYXAAAAGIAAAAOgAAAUrQJxm3Y3Z0IAAAAcQAAAAKAAAACgAAAABmcGdtAAAB0AAABZQAAAtwiJCQWWdhc3AAAAdkAAAACAAAAAgAAAAQZ2x5ZgAAB2wAAAn4AAAO0oh7MchoZWFkAAARZAAAADUAAAA2CBT9IGhoZWEAABGcAAAAIAAAACQH4AOMaG10eAAAEbwAAAA3AAAAYE6SAABsb2NhAAAR9AAAADIAAAAyKbEl4G1heHAAABIoAAAAIAAAACAAtwvXbmFtZQAAEkgAAAF3AAACzcydGx1wb3N0AAATwAAAAMIAAAEoVFJku3ByZXAAABSEAAAAZQAAAHvdawOFeJxjYGR2Y5zAwMrAwVTFtIeBgaEHQjM+YDBkZGJgYGJgZWbACgLSXFMYHF4wvBBjDvqfxRDF3MhwDCjMCJIDAN2XC/B4nGNgYGBmgGAZBkYGEHAB8hjBfBYGDSDNBqQZGZgYGF6I/f8PUvCCAURLMELVAwEjG8OIBwB8RQbEAAAAAAAAAAAAAAAAAAB4nK1WaXMTRxCd1WHLNj6CDxI2gVnGcox2VpjLCBDG7EoW4BzylexCjl1Ldu6LT/wG/ZpekVSRb/y0vB4d2GAnVVQoSv2m9+1M9+ueXpPQksReWI+k3HwpprY2aWTnSUg3bFqO4kPZ2QspU0z+LoiCaLXUvu04JCISgap1hSWC2PfI0iTjQ48yWrYlvWpSbulJd9kaD+qt+vbT0FGO3QklNZuhQ+uRLanCqBJFMu2RkjYtw9VfSVrh5yvMfNUMJYLoJJLGm2EMj+Rn44xWGa3GdhxFkU2WG0WKRDM8iCKPslpin1wxQUD5oBlSXvk0onyEH5EVe5TTCnHJdprf9yU/6R3OvyTieouyJQf+QHZkB3unK/ki0toK46adbEehivB0fSfEI5uT6p/sUV7TaOB2RaYnzQiWyleQWPkJZfYPyWrhfMqXPBrVkoOcCFovc2Jf8g60HkdMiWsmyILujk6IoO6XnKHYY/q4+OO9XSwXIQTIOJb1jkq4EEYpYbOaJG0EOYiSskWV1HpHTJzyOi3iLWG/Tu3oS2e0Sag7MZ6th46tnKjkeDSp00ymTu2k5tGUBlFKOhM85tcBlB/RJK+2sZrEyqNpbDNjJJFQoIVzaSqIZSeWNAXRPJrRm7thmmvXokWaPFDPPXpPb26Fmzs9p+3AP2v8Z3UqpoO9MJ2eDshKfJp2uUnRun56hn8m8UPWAiqRLTbDlMVDtn4H5eVjS47CawNs957zK+h99kTIpIH4G/AeL9UpBUyFmFVQC9201rUsy9RqVotUZOq7IU0rX9ZpAk05Dn1jX8Y4/q+ZGUtMCd/vxOnZEZeeufYlyDSH3GZdj+Z1arFdgM5sz+k0y/Z9nebYfqDTPNvzOh1ha+t0lO2HOi2w/UinY2wvaEGT7jsEchGBXMAGEoGwdRAI20sIhK1CIGwXEQjbIgJhu4RA2H6MQNguIxC2l7Wsmn4qaRw7E8sARYgDoznuyGVuKldTyaUSrotGpzbkKXKrpKJ4Vv0rA/3ikTesgbVAukTW/IpJrnxUleOPrmh508S5Ao5Vf3tzXJ8TD2W/WPhT8L/amqqkV6x5ZHIVeSPQk+NE1yYVj67p8rmqR9f/i4oOa4F+A6UQC0VZlg2+mZDwUafTUA1c5RAzGzMP1/W6Zc3P4fybGCEL6H78NxQaC9yDTllJWe1gr9XXj2W5twflsCdYkmK+zOtb4YuMzEr7RWYpez7yecAVMCqVYasNXK3gzXsS85DpTfJMELcVZYOkjceZILGBYx4wb76TICRMXbWB2imcsIG8YMwp2O+EQ1RvlOVwe6F9Ho2Uf2tX7MgZFU0Q+G32Rtjrs1DyW6yBhCe/1NdAVSFNxbipgEsj5YZq8GFcrdtGMk6gr6jYDcuyig8fR9x3So5lIPlIEatHRz+tvUKd1Ln9yihu3zv9CIJBaWL+9r6Z4qCUd7WSZVZtA1O3GpVT15rDxasO3c2j7nvH2Sdy1jTddE/c9L6mVbeDg7lZEO3bHJSlTC6o68MOG6jLzaXQ6mVckt52DzAsMKDfoRUb/1f3cfg8V6oKo+NIvZ2oH6PPYgzyDzh/R/UF6OcxTLmGlOd7lxOfbtzD2TJdxV2sn+LfwKy15mbpGnBD0w2Yh6xaHbrKDXynBjo90tyO9BDwse4K8QBgE8Bi8InuWsbzKYDxfMYcH+Bz5jBoMofBFnMYbDNnDWCHOQx2mcNgjzkMvmDOOsCXzGEQModBxBwGT5gTADxlDoOvmMPga+Yw+IY59wG+ZQ6DmDkMEuYw2Nd0ayhzixd0F6htUBXowPQTFvewONRUGbK/44Vhf28Qs38wiKk/aro9pP7EC0P92SCm/mIQU3/VdGdI/Y0Xhvq7QUz9wyCmPtMvxnKZwV9GvkuFA8ouNp/z98T7B8IaQLYAAQAB//8AD3iclVdrbBzVFZ5zZ3Zmdtaex+7sncWxN/uwd4y9MfG+xtiO4yQCp4kTjDFQaOVKKC+SkAYUEmgeEo+WkIYY3NSAoVWCTBOh8koIWChSqtSqUEAlIHClOj8qFFGnCmlLEVKseNJzZ3bDowGpa++duefee+75zj33O2c5wnGX1/NtfD8ncSFOPhaUeY7MazaKyWI+moyCkTQg+SUkL/2HfEIefKK394lL/yZjsz/m8MNfnr38Ov8TPsSZXJJr4ZS3mhvmxnSen9cMUVNshlRmARRKHVBkTY5ahRZQ+TjpAsdUIdWCL7k4wBeKfERWFHmnItXLynT/nt/t7SMDu1/6xW3b7/vT9DubxJ8d/+LtXSQ1IynejAmc/N4tewZI374X9uHMPbfcP7Fly8Q/WMORy5cRz0G+mpPRJvnYNSGRRzyAW4tx6AIwxdR1IKbZ7kKcWKZkUfLI/vdGhH0f7YVUtt08sWp73/C6btK5cd/Y3s1t/A0novDw2mEycuoZca87WtcUPXFD1/onX9i3qV1YvGZkxfZVJ6IcB+jHf5KPyC+4ek48SgWY19xgasA2k1iTKSwEmzWl3FxwWENxGPf+SOvVs/rYGDa9OnvqX/U1bWxM20zZy4svav87UWthEzgB976ImPsRs8HZ3EKuultpy9ZRrUrkBTSkAt5hBwAUX/B4pGQqY+PJ5JMWzS2EZI7y1Dc44/hn5uRzVIrmc+SUGacknNKfMhNhQmtjNybopXetOCQo8MuTtyV7gaeJN5XwjBJXZoygYg1RdUilMBRbpZkkVhMjplZ52XuU4sLoUZroTeA/NFrGjIKrrOiMZgJVZzgPz+uIp8XDcy3XzfB0ttZFtZBIPDwZFeKQKzn4Qig+EU66DMfKx6GDjaHxvOgFopRmQ9j43qffg+dCVSk9lCpVX0A8wdiQqQ2hUUNWxPCghetUXJcwTb38fAJhJCg2MLexcW4c+mkZRNYHxXnxeFGYj3ckxuUxHjO1puTFY6YZXYxNSqyDdEo00S48hVLAPxgHvW/j2eClYU3UlOJATnl3ZKOk7JSVwERAxy+s3nHn7MG1+2HlYji89fYnk43FjgFr6SD0+vdEnlDYtMCEuPWOHTC8bumOeGzr4bv60gMdzSlj69Xs0wTPPgyDFIaDSTvQhZR5dAHkc99vX9mor5n5nfZtln2ztIqZz36HfSwWSCfaJ6OF8jGqisT3H/qMHb0p8cglGZvP4OHnKLw8sHUA//eF3w3WZzLSe+HD5w/DZx1MNtCxwHb7wpSG4TV7wdbDhzlf/938NN4dlatD/YYWAtQfNZISzbMoEgU7ZfOl+nzOcoykk8GzkmD4wMaRnSeTe9Lu+aPvDz+eBvPo+78adjf54hEc3zBy/8ufwjBMvHJ2mA1g39vrIn8HmUAk3bhXZ63p+dqU8NohVab9CHby2FALqGP4JOrYGLldYDF7jELGTqcKmRKeT1lIya9D7gehuFmOPTMegutCE4NLjkhVgB8CsnykoQCl+jdEhZCKZMkgDKoh97RiagepOolrD2JUB1FwzH1gyaAih4JitSTjMtiNqwUiC2XJYNlvF/kN5I/INx6WrMriusFEDlGB3bii4bN+1PJENnOcYVI0OE6+DpmliCuQYTWpWIf2Y/x803yChy8ysLV0RqWIldYyrC0kHFCDAgwugd3fsNx9wLccsldH6vE2NoPkZi6KvG0EgZ0HI2aPvG3kbccnDRgUp6ZEsTagiu4lUQQhoAu1IklJgTNTooryAAj4xAbfK3p7K3oFqJzzN1IBQ9yL+lBprVjWrwuoA9olJg7UosqpM/4w9j2/Y1Pw9Daj31M1VQKp5JqvmethsK4qRSTfQsF2nvT28oU+njNnAv3St4DpAqKVriqt2Ja6YptdY3wV39/Gbf0f3pgMoF2eTVNTvk/Q8O9wkXx1x3k8wv8IeaSe60HbFjbqvm1R1bt3klgpVnJU1DC7sMtWcrx+pFzMlBaCd/3xz7uWxS5gBIjZnPLL688+e/MznUsxMjEsWXitaFzlLHvYFq1A1QZZUU3dl/ZvXu4Lf4q3s/7TZ28eZYtiEOBh5O2u65eGvOUY1ysaGpd1KW3VVTBeFqzw+6JQnujVYB4/nvL4UePSWIPNiWhBicMazEoaHqMkA/kM+tkOGOUsabCkn6NzEWUP6ZzGxOd+Ams+CEivijrUxa3Zg35uX01L2is6leD3CTo9qUuvSOJZt4plPIL5Maa+qpUwf3x2+S7+EvKnhRWgfKwlrbL6EdOa1FoSLBqWRFTmYMlRInYLMDnSgxi2qOC0ivV2hjglOwOf3zZ242PQs2t1tk2tMVrDfJAvtt2zfNwVQ6bMKwQ7T8GDo4+547tWzWvTaw2+v739bu3Bde6XO5tqNGLwqrQHEvcu+4F7QZZZx/3bvb/UtrMpoOAUTMVcwOOss+ira9HWItfFLeW07qqlizqcQmu2qUEIzGtmrOUkc2gzXh07g/7yWSvJ8h+LUqyIfDc2FMECOx/NO7bkUBzJ4IrIldIOueh0Oh7kpTmyUl3lzvcYDE43FAL1cgxH3flIwKth20H38Q3FRPet3VuCwYlgGL8zeSzxbtX1/CicXjwIqhARa2WBLzSUldwooQq5aj1SZOsB2HYAFZQW3bpobWU9LMrr+gDqKCBmyYv7aeRpg6vB+GCoe7g+LtKtr1x2w6LOtvl2si5mVgkSYi90ESRnTOYMoJ1xMMF2AdZa7KXESscIlpF4KTK2g12R0XqkMmRdmVN56Xv0+DvHH+27STEvfW4qN/U0dTaSbFvLpqb2rFC/OPVxKPvDZdXBmjnX83pNLd+WLF1THvmy/FyLT9LYlXl/zfjulSt3j695aodhbB+ua/LkU+Wn+3Rzb6ylOdkd+VitEav0j/ks7C+P7anM+Xv5xYuBdv4l/iGukWvlFnPLuQEWA329PUsWOvOujQQwBgDrGSxCi4WwU/TqRoxezFoYD+moFKUW4ypGEiIWRXpGEHUaQR4wcdjnEKya7RwNI6OESxHPF4Tyt9/innd3uef/dYTkowlSa52OxkkqUoDn7xPnaE0JotYE3C1PT066H05OvrsumkhEn8emKQGFh94kb7vHhTce2TBKRv46QkbJNffvP+leIED/8AYoEeDziSa8sY0pyANvbAzWaPGsVhOY/fkktEySD90/fwi/jaOmOH2exuP0N+OuOz4OZHz25Oikp9K/G+u9Omgul+IasBbsZH4pFq5rrE8nE5bE/IJkZ1R+OJSJhNUg3m+7aCmv4fZS3nKK6ShzhpHEpA5GucMf8Uhl9hyjmw+wofpZrUQZ+2SSPYcOuc8dOnTPa5Nx6xyaSTJ/iVvTZAfOv9NbdgDpaBvS0VmdJuhb1rZDsPPQydfOncPK231uiJbcleSRadYZ/S9v+hfdeJxjYGRgYADibfpc0+L5bb4ycDO/AIowXMopvAGh3Vf8f/vfisWAuRHI5WBgAokCAFl5DLgAAAB4nGNgZGBgDvqfxRDFos/A8P8WiyEDUAQFSAAAbt4EdHicY37BwMBsAcSRQLwAiAWhNBCz6EMwkzWQ/wKhhjEVgkHiYDmgONMpIP0Sqg6EV0FoACwsDNUAAAAAAAAeAGgApADiAUoBsAIAAlACgAK2AxwDgAOsA9gEJgR0BOAFIAV2BfAGeAcEB2kAAAABAAAAGABVAAcAAAAAAAIAAAAQAHMAAAAkC3AAAAAAeJx1kc1Kw0AURr9pa9UWVBTceldSEdMf6EYQCpW60U2RbiWNaZKSZspkWuhr+A4+jC/hs/g1nYq0mJDMuWfu3LmZADjHNxQ2V5fPhhWOGG24hEM8OC7TPzqukJ8dH6COV8dV+jfHNdwiclzHBT5YQVWOGU3x6VjhTJ06LuFEXTku0985rpAfHB/gUr04rtIHjmsYqdxxHdfqq6/nK5NEsZVG/0Y6rXZXxivRVEnmp+IvbKxNLj2Z6MyGaaq9QM+2PAyjReqbbbgdR6HJE51J22tt1VOYhca34fu6er6MOtZOZGL0TAYuQ+ZGT8PAerG18/tm8+9+6ENjjhUMEh5VDAtBg/aGYwcttPkjBGNmCDM3WQky+EhpfCy4Ii5mcsY9PhNGGW3IjJTsIeB7tueHpIjrU1Yxe7O78Yi03iMpvLAvj93tZj2RsiLTL+z7b+85ltytQ2u5at2lKboSDHZqCM9jPTelCei94lQs7T2avP/5vh/gZIRNAHicbUzZTsMwEPS0sWmS0tJy9Sf8UIkfMrZxLCxv5EP5fQIGJCTmYXeuXbZhDQP7HxfGsMEWHTgEbrBDjwEj9rjFAUfc4YQz7vGARzzhGRdeksoT14H0u8hWJT0JraK2YWdoiYGUEXX+XIcfLddyNfvmNjGs56p4ivI6qpRoyVIv8soDOR/FOqmWQUUXrAz2rYyNJu+mcmrcUH39Ts9/nK9S//t0a0jzPPv40lnjC3eqOtvnQvOiip66Nc6MfQCGWU2NAAB4nGPw3sFwIihiIyNjX+QGxp0cDBwMyQUbGVidNjIwaEFoDhR6JwMDAycyi5nBZaMKY0dgxAaHjoiNzCkuG9VAvF0cDQyMLA4dySERICWRQLCRgUdrB+P/1g0svRuZGFwAB9MiuAAAAA==') format('woff'),
710
- url('data:application/octet-stream;base64,AAEAAAAOAIAAAwBgT1MvMj5YSRoAAADsAAAAVmNtYXDQJxm3AAABRAAAAUpjdnQgAAAAAAAAFnQAAAAKZnBnbYiQkFkAABaAAAALcGdhc3AAAAAQAAAWbAAAAAhnbHlmiHsxyAAAApAAAA7SaGVhZAgU/SAAABFkAAAANmhoZWEH4AOMAAARnAAAACRobXR4TpIAAAAAEcAAAABgbG9jYSmxJeAAABIgAAAAMm1heHAAtwvXAAASVAAAACBuYW1lzJ0bHQAAEnQAAALNcG9zdFRSZLsAABVEAAABKHByZXDdawOFAAAh8AAAAHsAAQNGAZAABQAIAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA6ADoFgNS/2oAWgOBAMYAAAABAAAAAAAAAAAAAwAAAAMAAAAcAAEAAAAAAEQAAwABAAAAHAAEACgAAAAGAAQAAQACAADoFv//AAAAAOgA//8AABgBAAEAAAAAAAAAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAA/2oDOANSAAcACwAItQkIAwACLSsRNSE1MxUhFQERIREBIfYBIfzzAuICeY1MTI388QKk/VwAAAAAA//9/7EDXwMLABQAIQAuAAq3KyUfGBADAy0rARUUBisBIiY9ATQ2OwE1NDY7ATIWFzQuAQ4DHgI+ATcUDgEiLgI+ATIeAQH0CgiyCAoKCH0KByQICuhSiqaMUAJUiKqGVntyxujIbgZ6vPS6fgIi+gcKCgckCArECAoKzFOKVAJQjqKOUAJUilN1xHR0xOrEdHTEAAL///9qA6EDDQAIACEACLUZCwYDAi0rATQuAQYeAT4BARQGIi8BBiMiLgI+BB4CFxQHFxYCg5TMlgSO1IwBIiw6FL9ke1CSaEACPGyOpIxwOANFvxUBgmeSApbKmAaM/podKhW/RT5qkKKObjoEQmaWTXtkvxUAAAEAAP/vAtQChgAkAAazFgQBLSslFA8BBiIvAQcGIi8BJjQ/AScmND8BNjIfATc2Mh8BFhQPARcWAtQPTBAsEKSkECwQTBAQpKQQEEwQLBCkpBAsEEwPD6SkD3AWEEwPD6WlDw9MECwQpKQQLBBMEBCkpBAQTA8uD6SkDwAEAAD/+QOhA1IACAARACcAPwANQAo4LB0WDwwGAwQtKyU0LgEGHgE+ATc0LgEOARY+ATcVFAYHISImJzU0NjMhFxYyPwEhMhYDFg8BBiIvASY3NjsBNTQ2NzMyFgcVMzICyhQeFgISIhCRFCASAhYcGEYgFvzLFx4BIBYBA0shViFMAQMWILYKEvoKHgr6EQkKF48WDo8OFgGPGGQPFAIYGhgCFA8PFAIYGhgCFIyzFh4BIBWzFiBMICBMIAEoFxH6Cgr6ERcV+g8UARYO+gAABAAA/7EDoQMuAAgAEQApAEAADUAKPDEdFQ8LBgIELSslNCYOAR4BMjY3NCYOAhYyNjcVFAYjISImJzU0NhczHgE7ATI2NzMyFgMGKwEVFAYHIyImJzUjIiY/ATYyHwEWAsoUHhYCEiIQkRQgEgIWHBhGIBb8yxceASAW7gw2I48iNg3uFiC2CRiPFA+PDxQBjxcTEfoKHgr6Eh0OFgISIBQUEA4WAhIgFBSNsxYgIBazFiABHygoHx4BUhb6DxQBFg76LBH6Cgr6EQAAAv////kEMAMLABgAMwAItSYcFAcCLSsBNCYrATU0JisBIgYdASMiBhQfARYyPwE2BRQGByEiJjc0NjcnNDYzMhYXNjMyFhUUBx4BAsoKCH0KB2wHCn0ICgXEBRAFxAUBZXxa/aFnlAFOQgGodleQISg1O1QXSF4BTAgKxAgKCgjEChAFxAUFxAZ2WXwBkmhIfB4YdqhiUCNUOysiEXYAAAL////5BDADCwAYADMACLUmHA8EAi0rATQvASYiDwEGFBY7ARUUFjsBMjY9ATMyNgUUBgchIiY3NDY3JzQ2MzIWFzYzMhYVFAceAQLKBcQFEAXEBQoIfQoHbAcKfQgKAWV8Wv2hZ5QBTkIBqHZXkCEoNTtUF0heAXAIBcQFBcQGDwrECAoKCMQKmVl8AZJoSHweGHaoYlAjVDsrIhF2AAACAAD/sQI8AwsACAAYAAi1Fg4GAgItKwE0JiIGFBYyNjcUBwMOASImJwMmNTQ2MhYBrVR2VFR2VI4SywkkJiYHzBKo7KgB7TtUVHZUVDs9J/5QEhYWEgGwJz12qKgAAAACAAD/aQPoA1IADgAdAAi1EQ8LAQItKxURIQcWMzI2NzMGBCciJwM2JDMyFzcRITcmIyIGBwGSoGyWfcIhiiP+7LPPkokjARSzz5OS/m6gbJZ9wiGWAZKga5Z1reYBkgHEruSSkv5uoGuWdQACAAD/+QNZAsQAGABAAAi1PBwUBAItKwEUBwEGIiY9ASMiJic1NDY3MzU0NhYXARY3ERQGKwEiJjcnJj8BPgEXMzI2NxE0JicjIjQmNi8BJj8BPgEXMzIWApUL/tELHhT6DxQBFg76FB4LAS8LxF5DsgcMAQEBAQIBCAiyJTQBNiS0BgoCAgEBAQIBCAiyQ14BXg4L/tAKFA+hFg7WDxQBoQ4WAgn+0Aq1/nhDXgoICwkGDQcIATYkAYglNAEEAggECwkGDQcIAV4AAAACAAD/+QNrAsMAJwBAAAi1PCwOBwItKyUUFg8BDgEHIyImNRE0NjsBMhYVFxYPAQ4BJyMiBgcRFBYXMzIeAgEUBwEGIiY9ASMiJj0BNDY3MzU0NhYXARYBZQIBAgEICLJDXl5DsggKAQEBAgEICLIlNAE2JLQGAgYCAgYL/tELHBb6DhYWDvoWHAsBLwsuAhIFDgkEAV5DAYhDXgoICwkGDQcIATYk/nglNAEEAggBLA4L/tAKFA+hFg7WDxQBoQ4WAgn+0AoAAAEAAAAAAV4CUQAVAAazEQkBLSsBFA8BFxYUDwEGIicBJjQ3ATYyHwEWAV4G29sGBhwFDgb+/AYGAQQFEAQcBgIiBwXc2wYOBhwFBQEEBg4GAQQGBhwFAAABAAAAAAFMAlEAFQAGsxEEAS0rARQHAQYiLwEmND8BJyY0PwE2MhcBFgFMBv78BQ4GHAYG29sGBhwFEAQBBAYBOgcG/vwFBRwGDgbb3AUOBhwGBv78BQAAAgAAAAACNAJRABUAKwAItSIaDAQCLSslFA8BBiInASY0NwE2Mh8BFhQPARcWFxQPAQYiJwEmNDcBNjIfARYUDwEXFgFeBhwFDgb+/AYGAQQFEAQcBgbb2wbWBRwGDgb+/AYGAQQGDgYcBQXc3AVSBwYcBQUBBAYOBgEEBgYcBRAE3NsGBwcGHAUFAQQGDgYBBAYGHAUQBNzbBgAAAgAAAAACIgJRABUAKwAItScaEQQCLSsBFAcBBiIvASY0PwEnJjQ/ATYyFwEWFxQHAQYiLwEmND8BJyY0PwE2MhcBFgFMBv78BQ4GHAYG29sGBhwFEAQBBAbWBf78Bg4GHAUF29sFBRwGDgYBBAUBOgcG/vwFBRwGDgbb3AUOBhwGBv78BQgHBv78BQUcBg4G29wFDgYcBgb+/AUAAgAA/7EDWwMLACQARwAItT8oEAQCLSsBFBUOASMiJicHBiImPQE0NjsBMhYGDwEeATMyNjc2NzY7ATIWExUUBisBIiY2PwEmIyIGBwYHBisBIiY3NT4BMzIWFzc2MhYDSyTkmVGYPEgLHBYWDvoOFgIJTShkN0qCJwYXBQxrCAoOFBD6DhYCCU1ScEuCJwYXBQxvBwwBJOaZUZo8SAscGAEFAwGWuj45SAsWDvoOFhYcC00lKEo+CjgNDAG4+g4WFhwLTU1KPgo4DQwGBJa6PjlICxYAAAAAAwAA/7ECygMLAAgADwAjAAq3GxMPCQcAAy0rFyERIyImJzUhBTMmLwEmJwURFAYjISImJxE0NjMhMhYfAR4BRwI86BceAf7iAWbRBQevBhABHR4X/aEXHgEgFgFlFjYPrhAWBwGsIBbo1hAHrgcG5P4MFiAgFgLuFiAYDq8PNgAC/+3/YgP8A1IAFwAuAAi1LiMOAAItKwEiBgcxNgQXFhIHBhceATc+ATc2AicuAQEiBgcOAQcGEhcWBDcxBiQnJgI3NicmAfJWpEaHAUd+ZSw4DhoRMRIDCQM1OG1LuP4GCxQIAwoCNThtkQF5mof+uH5kLTgQHBEDUjo6aQ95aP72fSoaDwIRAw4HigEgcUpJ/u4ICAMOB4r+4HGLD3tpD3loAQp9KhoRAAAABQAA//kD5AMLACkALgA1AD4ASAAPQAxIQTs3NDEsKiUEBS0rNRE0NjchMhceAQ8BBicmIyEiBgcRFBYXITI2PQE0PwE2FgcVFAYjISImJTUBFwEnMxUzNycHNxY/ATYmDwEGEzc2Mh8BFhQPAV5DAdAjHgkDBxsICg0M/jAlNAE2JAHQJTQFJAgYAV5D/jBDXgFlAXeh/olrNSBAVUB0CQnECRIJxAn6MxAsEFUQEDOaAdBCXgEOBBMGHAgEAzQl/jAlNAE2JEYHBSQICAxqQ15eMaABd6D+iWs2QVVBZwkJxAkSCcQJAUEzEBBUECwQNAAAAAcAAP+xA+gCwwARABoAIwA1AD4ARwBQABNAEE5KRUE8ODAnIR0YFAwEBy0rNTQ+AjIeAhUUBwYjISInJjcUFjI+ASYOATcUFjI2LgEOARMGHgE2NzYmJzc2LgEGDwEOARMUFjI2LgEOARcUFjI2LgEOARMUFjI2LgEOAVCEvMi8hFBPChT88hQKT0cqPCgCLDgubio6LAQkQiLVCyxYSg0JGhs5AxAaHAM4ITYZKjosBCRCIvYqOiwEJEIiZyo6LAIoPibPZriITk6IuGaRfBERe5IdKio6LAIo2x0qKjosAij+lytMGC4rIUAT1Q4aBgwQ1QMsAZQdKio6LAIoih0qKjosAij+5x0qKjosAigABQAA/zoDqgOBACgAMQBCAEsAVAAPQAxQTEdDPzctKRMFBS0rARYVFAAEADU0Ejc1JzUjIiY+ATczMh4BBicjFQcVFhc/ATYyFgYPAQYBMjYQJgQGEBYTMzIWFAYnIyImPQE0NjIWBycyFhIGIiYSNhMyNi4BDgIWA1dT/uz+fv7s8LICMxUgAhwX0BUeAiITNAGccgYbDyogAg4aBf50l9bW/tLW1stoFSAgFZwVICAqIAE0gbYCuv68BLSDa5oCltqWApoCGXWUwv7uAgEWwLQBChMBAzMgKh4BICgiATMBAxFsCRoPHiwPGgX9hdYBLtYC0v7O0gGeHiogAR4WnBYeHhaduP7+uLgBArj9wprWmgKW2pYAAAUAAP9qA+gDUgAfACIAJQAzADwAD0AMNTQvKCQjISAXBwUtKwEyFhcRFAYHISImJzUhIiYnETQ2PwE+ATsBMhYXFTYzDwEzAQczFzc1IxUUBicjESE1NDYBESMVFAYnIxEDshceASAW/ekXHgH+0RceARYQ5A82FugXHgEmIUenp/6bp6dtsNYeF+kBHhYCJtceF+gCfCAW/VoXHgEgFqAgFgF3FjYP5BAWIBa3F3enAX2nwrDp6RYgAf6bjxY2/k4Cg+gWIAH+mgAAAAEAAAABAAC2LwqWXw889QALA+gAAAAA0mxx2AAAAADSbEeo/+3/OgQwA4EAAAAIAAIAAAAAAAAAAQAAA1L/agBaBC8AAP/aBDEAAQAAAAAAAAAAAAAAAAAAABgD6AAAAzgAAANZAAADoAAAAxEAAAOgAAADoAAABC8AAAQvAAACOwAAA+gAAANZAAADoAAAAWUAAAFlAAACOwAAAjsAAANZAAACygAAA+kAAAPoAAAD6AAAA6oAAAPoAAAAAAAAAB4AaACkAOIBSgGwAgACUAKAArYDHAOAA6wD2AQmBHQE4AUgBXYF8AZ4BwQHaQAAAAEAAAAYAFUABwAAAAAAAgAAABAAcwAAACQLcAAAAAAAAAASAN4AAQAAAAAAAAA1AAAAAQAAAAAAAQAIADUAAQAAAAAAAgAHAD0AAQAAAAAAAwAIAEQAAQAAAAAABAAIAEwAAQAAAAAABQALAFQAAQAAAAAABgAIAF8AAQAAAAAACgArAGcAAQAAAAAACwATAJIAAwABBAkAAABqAKUAAwABBAkAAQAQAQ8AAwABBAkAAgAOAR8AAwABBAkAAwAQAS0AAwABBAkABAAQAT0AAwABBAkABQAWAU0AAwABBAkABgAQAWMAAwABBAkACgBWAXMAAwABBAkACwAmAclDb3B5cmlnaHQgKEMpIDIwMTUgYnkgb3JpZ2luYWwgYXV0aG9ycyBAIGZvbnRlbGxvLmNvbWZvbnRlbGxvUmVndWxhcmZvbnRlbGxvZm9udGVsbG9WZXJzaW9uIDEuMGZvbnRlbGxvR2VuZXJhdGVkIGJ5IHN2ZzJ0dGYgZnJvbSBGb250ZWxsbyBwcm9qZWN0Lmh0dHA6Ly9mb250ZWxsby5jb20AQwBvAHAAeQByAGkAZwBoAHQAIAAoAEMAKQAgADIAMAAxADUAIABiAHkAIABvAHIAaQBnAGkAbgBhAGwAIABhAHUAdABoAG8AcgBzACAAQAAgAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAGYAbwBuAHQAZQBsAGwAbwBSAGUAZwB1AGwAYQByAGYAbwBuAHQAZQBsAGwAbwBmAG8AbgB0AGUAbABsAG8AVgBlAHIAcwBpAG8AbgAgADEALgAwAGYAbwBuAHQAZQBsAGwAbwBHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAGgAdAB0AHAAOgAvAC8AZgBvAG4AdABlAGwAbABvAC4AYwBvAG0AAAAAAgAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABAgEDAQQBBQEGAQcBCAEJAQoBCwEMAQ0BDgEPARABEQESARMBFAEVARYBFwEYBXRyYXNoBWNsb2NrBnNlYXJjaAZjYW5jZWwIZG93bmxvYWQGdXBsb2FkDmRvd25sb2FkLWNsb3VkDHVwbG9hZC1jbG91ZApsb2NhdGlvbi0xC2Fycm93cy1jdy0xBWxvZ2luBmxvZ291dAphbmdsZS1sZWZ0C2FuZ2xlLXJpZ2h0EWFuZ2xlLWRvdWJsZS1sZWZ0EmFuZ2xlLWRvdWJsZS1yaWdodAlhcnJvd3MtY3cDZG9jBXNwaW40BGVkaXQFZ2F1Z2UJc3RvcHdhdGNoBGRvY3MAAAABAAH//wAPAAAAAAAAAAAAAAAAsAAsILAAVVhFWSAgS7gADlFLsAZTWliwNBuwKFlgZiCKVViwAiVhuQgACABjYyNiGyEhsABZsABDI0SyAAEAQ2BCLbABLLAgYGYtsAIsIGQgsMBQsAQmWrIoAQpDRWNFUltYISMhG4pYILBQUFghsEBZGyCwOFBYIbA4WVkgsQEKQ0VjRWFksChQWCGxAQpDRWNFILAwUFghsDBZGyCwwFBYIGYgiophILAKUFhgGyCwIFBYIbAKYBsgsDZQWCGwNmAbYFlZWRuwAStZWSOwAFBYZVlZLbADLCBFILAEJWFkILAFQ1BYsAUjQrAGI0IbISFZsAFgLbAELCMhIyEgZLEFYkIgsAYjQrEBCkNFY7EBCkOwAGBFY7ADKiEgsAZDIIogirABK7EwBSWwBCZRWGBQG2FSWVgjWSEgsEBTWLABKxshsEBZI7AAUFhlWS2wBSywB0MrsgACAENgQi2wBiywByNCIyCwACNCYbACYmawAWOwAWCwBSotsAcsICBFILALQ2O4BABiILAAUFiwQGBZZrABY2BEsAFgLbAILLIHCwBDRUIqIbIAAQBDYEItsAkssABDI0SyAAEAQ2BCLbAKLCAgRSCwASsjsABDsAQlYCBFiiNhIGQgsCBQWCGwABuwMFBYsCAbsEBZWSOwAFBYZVmwAyUjYUREsAFgLbALLCAgRSCwASsjsABDsAQlYCBFiiNhIGSwJFBYsAAbsEBZI7AAUFhlWbADJSNhRESwAWAtsAwsILAAI0KyCwoDRVghGyMhWSohLbANLLECAkWwZGFELbAOLLABYCAgsAxDSrAAUFggsAwjQlmwDUNKsABSWCCwDSNCWS2wDywgsBBiZrABYyC4BABjiiNhsA5DYCCKYCCwDiNCIy2wECxLVFixBGREWSSwDWUjeC2wESxLUVhLU1ixBGREWRshWSSwE2UjeC2wEiyxAA9DVVixDw9DsAFhQrAPK1mwAEOwAiVCsQwCJUKxDQIlQrABFiMgsAMlUFixAQBDYLAEJUKKiiCKI2GwDiohI7ABYSCKI2GwDiohG7EBAENgsAIlQrACJWGwDiohWbAMQ0ewDUNHYLACYiCwAFBYsEBgWWawAWMgsAtDY7gEAGIgsABQWLBAYFlmsAFjYLEAABMjRLABQ7AAPrIBAQFDYEItsBMsALEAAkVUWLAPI0IgRbALI0KwCiOwAGBCIGCwAWG1EBABAA4AQkKKYLESBiuwcisbIlktsBQssQATKy2wFSyxARMrLbAWLLECEystsBcssQMTKy2wGCyxBBMrLbAZLLEFEystsBossQYTKy2wGyyxBxMrLbAcLLEIEystsB0ssQkTKy2wHiwAsA0rsQACRVRYsA8jQiBFsAsjQrAKI7AAYEIgYLABYbUQEAEADgBCQopgsRIGK7ByKxsiWS2wHyyxAB4rLbAgLLEBHistsCEssQIeKy2wIiyxAx4rLbAjLLEEHistsCQssQUeKy2wJSyxBh4rLbAmLLEHHistsCcssQgeKy2wKCyxCR4rLbApLCA8sAFgLbAqLCBgsBBgIEMjsAFgQ7ACJWGwAWCwKSohLbArLLAqK7AqKi2wLCwgIEcgILALQ2O4BABiILAAUFiwQGBZZrABY2AjYTgjIIpVWCBHICCwC0NjuAQAYiCwAFBYsEBgWWawAWNgI2E4GyFZLbAtLACxAAJFVFiwARawLCqwARUwGyJZLbAuLACwDSuxAAJFVFiwARawLCqwARUwGyJZLbAvLCA1sAFgLbAwLACwAUVjuAQAYiCwAFBYsEBgWWawAWOwASuwC0NjuAQAYiCwAFBYsEBgWWawAWOwASuwABa0AAAAAABEPiM4sS8BFSotsDEsIDwgRyCwC0NjuAQAYiCwAFBYsEBgWWawAWNgsABDYTgtsDIsLhc8LbAzLCA8IEcgsAtDY7gEAGIgsABQWLBAYFlmsAFjYLAAQ2GwAUNjOC2wNCyxAgAWJSAuIEewACNCsAIlSYqKRyNHI2EgWGIbIVmwASNCsjMBARUUKi2wNSywABawBCWwBCVHI0cjYbAJQytlii4jICA8ijgtsDYssAAWsAQlsAQlIC5HI0cjYSCwBCNCsAlDKyCwYFBYILBAUVizAiADIBuzAiYDGllCQiMgsAhDIIojRyNHI2EjRmCwBEOwAmIgsABQWLBAYFlmsAFjYCCwASsgiophILACQ2BkI7ADQ2FkUFiwAkNhG7ADQ2BZsAMlsAJiILAAUFiwQGBZZrABY2EjICCwBCYjRmE4GyOwCENGsAIlsAhDRyNHI2FgILAEQ7ACYiCwAFBYsEBgWWawAWNgIyCwASsjsARDYLABK7AFJWGwBSWwAmIgsABQWLBAYFlmsAFjsAQmYSCwBCVgZCOwAyVgZFBYIRsjIVkjICCwBCYjRmE4WS2wNyywABYgICCwBSYgLkcjRyNhIzw4LbA4LLAAFiCwCCNCICAgRiNHsAErI2E4LbA5LLAAFrADJbACJUcjRyNhsABUWC4gPCMhG7ACJbACJUcjRyNhILAFJbAEJUcjRyNhsAYlsAUlSbACJWG5CAAIAGNjIyBYYhshWWO4BABiILAAUFiwQGBZZrABY2AjLiMgIDyKOCMhWS2wOiywABYgsAhDIC5HI0cjYSBgsCBgZrACYiCwAFBYsEBgWWawAWMjICA8ijgtsDssIyAuRrACJUZSWCA8WS6xKwEUKy2wPCwjIC5GsAIlRlBYIDxZLrErARQrLbA9LCMgLkawAiVGUlggPFkjIC5GsAIlRlBYIDxZLrErARQrLbA+LLA1KyMgLkawAiVGUlggPFkusSsBFCstsD8ssDYriiAgPLAEI0KKOCMgLkawAiVGUlggPFkusSsBFCuwBEMusCsrLbBALLAAFrAEJbAEJiAuRyNHI2GwCUMrIyA8IC4jOLErARQrLbBBLLEIBCVCsAAWsAQlsAQlIC5HI0cjYSCwBCNCsAlDKyCwYFBYILBAUVizAiADIBuzAiYDGllCQiMgR7AEQ7ACYiCwAFBYsEBgWWawAWNgILABKyCKimEgsAJDYGQjsANDYWRQWLACQ2EbsANDYFmwAyWwAmIgsABQWLBAYFlmsAFjYbACJUZhOCMgPCM4GyEgIEYjR7ABKyNhOCFZsSsBFCstsEIssDUrLrErARQrLbBDLLA2KyEjICA8sAQjQiM4sSsBFCuwBEMusCsrLbBELLAAFSBHsAAjQrIAAQEVFBMusDEqLbBFLLAAFSBHsAAjQrIAAQEVFBMusDEqLbBGLLEAARQTsDIqLbBHLLA0Ki2wSCywABZFIyAuIEaKI2E4sSsBFCstsEkssAgjQrBIKy2wSiyyAABBKy2wSyyyAAFBKy2wTCyyAQBBKy2wTSyyAQFBKy2wTiyyAABCKy2wTyyyAAFCKy2wUCyyAQBCKy2wUSyyAQFCKy2wUiyyAAA+Ky2wUyyyAAE+Ky2wVCyyAQA+Ky2wVSyyAQE+Ky2wViyyAABAKy2wVyyyAAFAKy2wWCyyAQBAKy2wWSyyAQFAKy2wWiyyAABDKy2wWyyyAAFDKy2wXCyyAQBDKy2wXSyyAQFDKy2wXiyyAAA/Ky2wXyyyAAE/Ky2wYCyyAQA/Ky2wYSyyAQE/Ky2wYiywNysusSsBFCstsGMssDcrsDsrLbBkLLA3K7A8Ky2wZSywABawNyuwPSstsGYssDgrLrErARQrLbBnLLA4K7A7Ky2waCywOCuwPCstsGkssDgrsD0rLbBqLLA5Ky6xKwEUKy2wayywOSuwOystsGwssDkrsDwrLbBtLLA5K7A9Ky2wbiywOisusSsBFCstsG8ssDorsDsrLbBwLLA6K7A8Ky2wcSywOiuwPSstsHIsswkEAgNFWCEbIyFZQiuwCGWwAyRQeLABFTAtAEu4AMhSWLEBAY5ZsAG5CAAIAGNwsQAFQrEAACqxAAVCsQAIKrEABUKxAAgqsQAFQrkAAAAJKrEABUK5AAAACSqxAwBEsSQBiFFYsECIWLEDZESxJgGIUVi6CIAAAQRAiGNUWLEDAERZWVlZsQAMKrgB/4WwBI2xAgBEAA==') format('truetype');
711
  }
712
  [class^="slimstat-font-"]:before, [class*=" slimstat-font-"]:before {
713
  font-family: "slimstat";
@@ -762,5 +762,7 @@
762
  .slimstat-font-gauge:before { content: '\e814'; } /* '' */
763
  .slimstat-font-stopwatch:before { content: '\e815'; } /* '' */
764
  .slimstat-font-docs:before { content: '\e816'; } /* '' */
 
 
765
 
766
  .animate-spin{-moz-animation:spin 3s infinite linear;-o-animation:spin 3s infinite linear;-webkit-animation:spin 3s infinite linear;animation:spin 3s infinite linear;display:inline-block;line-height:1em;}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-o-keyframes spin{0%{-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-ms-keyframes spin{0%{-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}
216
  [id^=slim_] p{
217
  border-bottom: 1px solid #ddd;
218
  font-weight: 300;
219
+ line-height: 1.5em;
220
  margin: 0;
221
  min-height: 20px;
222
  overflow: auto;
259
  background-repeat: no-repeat;
260
  display: inline-block;
261
  font-size: 18px;
262
+ height: 18px;
263
+ line-height: 18px;
264
  margin-right: 5px;
265
  vertical-align: top;
266
  width: 16px;
422
  /* Settings */
423
  #slimstat-message{
424
  border: 1px solid #ccc;
425
+ clear: both;
426
  margin: 0;
427
  padding: 0 10px;
428
  }
448
  border-width: 1px 1px 0 !important;
449
  font-size: 14px;
450
  margin: 0 5px 0 0;
 
451
  }
452
  .nav-tab.nav-tab-active{
453
  background-color: #fff !important;
468
  .slimstat-options-section-header {
469
  background-color: #e4e4e4;
470
  font-size: 1.4em !important;
471
+ margin: 0;
472
  padding: 5px 10px !important;
473
  }
474
  .form-table h3{
698
  /* Fontello - Custom Icon Fonts for SlimStat | Uses Fontelico (C) 2012 by Fontello project, Elusive (C) 2013 by Aristeides Stathopoulos, Font Awesome (C) 2012 by Dave Gandy | http://www.fontello.com */
699
  @font-face {
700
  font-family: 'slimstat';
701
+ src: url('slimstat.eot?58272494');
702
+ src: url('slimstat.eot?58272494#iefix') format('embedded-opentype'),
703
+ url('slimstat.svg?58272494#fontello') format('svg');
704
  font-weight: normal;
705
  font-style: normal;
706
  }
707
  @font-face {
708
  font-family: 'slimstat';
709
+ src: url('data:application/octet-stream;base64,d09GRgABAAAAABYIAA4AAAAAJHQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAEQAAABWPlhJM2NtYXAAAAGIAAAAOgAAAUrQKRm3Y3Z0IAAAAcQAAAAKAAAACgAAAABmcGdtAAAB0AAABZQAAAtwiJCQWWdhc3AAAAdkAAAACAAAAAgAAAAQZ2x5ZgAAB2wAAAr+AAAQst8xzbBoZWFkAAASbAAAADQAAAA2CKF0lmhoZWEAABKgAAAAIAAAACQIJwPVaG10eAAAEsAAAAA7AAAAaFd+AABsb2NhAAAS/AAAADYAAAA2Mgstvm1heHAAABM0AAAAIAAAACAAuQvXbmFtZQAAE1QAAAF3AAACzcydGx1wb3N0AAAUzAAAANEAAAFBI0ixt3ByZXAAABWgAAAAZQAAAHvdawOFeJxjYGSOZZzAwMrAwVTFtIeBgaEHQjM+YDBkZGJgYGJgZWbACgLSXFMYHF4wvJBgDvqfxRDF3MhwDCjMCJIDAOUyDAl4nGNgYGBmgGAZBkYGEHAB8hjBfBYGDSDNBqQZGZgYGF5I/P8PUvCCAURLMELVAwEjG8OIBwB+fwbGAAAAAAAAAAAAAAAAAAB4nK1WaXMTRxCd1WHLNj6CDxI2gVnGcox2VpjLCBDG7EoW4BzylexCjl1Ldu6LT/wG/ZpekVSRb/y0vB4d2GAnVVQoSv2m9+1M9+ueXpPQksReWI+k3HwpprY2aWTnSUg3bFqO4kPZ2QspU0z+LoiCaLXUvu04JCISgap1hSWC2PfI0iTjQ48yWrYlvWpSbulJd9kaD+qt+vbT0FGO3QklNZuhQ+uRLanCqBJFMu2RkjYtw9VfSVrh5yvMfNUMJYLoJJLGm2EMj+Rn44xWGa3GdhxFkU2WG0WKRDM8iCKPslpin1wxQUD5oBlSXvk0onyEH5EVe5TTCnHJdprf9yU/6R3OvyTieouyJQf+QHZkB3unK/ki0toK46adbEehivB0fSfEI5uT6p/sUV7TaOB2RaYnzQiWyleQWPkJZfYPyWrhfMqXPBrVkoOcCFovc2Jf8g60HkdMiWsmyILujk6IoO6XnKHYY/q4+OO9XSwXIQTIOJb1jkq4EEYpYbOaJG0EOYiSskWV1HpHTJzyOi3iLWG/Tu3oS2e0Sag7MZ6th46tnKjkeDSp00ymTu2k5tGUBlFKOhM85tcBlB/RJK+2sZrEyqNpbDNjJJFQoIVzaSqIZSeWNAXRPJrRm7thmmvXokWaPFDPPXpPb26Fmzs9p+3AP2v8Z3UqpoO9MJ2eDshKfJp2uUnRun56hn8m8UPWAiqRLTbDlMVDtn4H5eVjS47CawNs957zK+h99kTIpIH4G/AeL9UpBUyFmFVQC9201rUsy9RqVotUZOq7IU0rX9ZpAk05Dn1jX8Y4/q+ZGUtMCd/vxOnZEZeeufYlyDSH3GZdj+Z1arFdgM5sz+k0y/Z9nebYfqDTPNvzOh1ha+t0lO2HOi2w/UinY2wvaEGT7jsEchGBXMAGEoGwdRAI20sIhK1CIGwXEQjbIgJhu4RA2H6MQNguIxC2l7Wsmn4qaRw7E8sARYgDoznuyGVuKldTyaUSrotGpzbkKXKrpKJ4Vv0rA/3ikTesgbVAukTW/IpJrnxUleOPrmh508S5Ao5Vf3tzXJ8TD2W/WPhT8L/amqqkV6x5ZHIVeSPQk+NE1yYVj67p8rmqR9f/i4oOa4F+A6UQC0VZlg2+mZDwUafTUA1c5RAzGzMP1/W6Zc3P4fybGCEL6H78NxQaC9yDTllJWe1gr9XXj2W5twflsCdYkmK+zOtb4YuMzEr7RWYpez7yecAVMCqVYasNXK3gzXsS85DpTfJMELcVZYOkjceZILGBYx4wb76TICRMXbWB2imcsIG8YMwp2O+EQ1RvlOVwe6F9Ho2Uf2tX7MgZFU0Q+G32Rtjrs1DyW6yBhCe/1NdAVSFNxbipgEsj5YZq8GFcrdtGMk6gr6jYDcuyig8fR9x3So5lIPlIEatHRz+tvUKd1Ln9yihu3zv9CIJBaWL+9r6Z4qCUd7WSZVZtA1O3GpVT15rDxasO3c2j7nvH2Sdy1jTddE/c9L6mVbeDg7lZEO3bHJSlTC6o68MOG6jLzaXQ6mVckt52DzAsMKDfoRUb/1f3cfg8V6oKo+NIvZ2oH6PPYgzyDzh/R/UF6OcxTLmGlOd7lxOfbtzD2TJdxV2sn+LfwKy15mbpGnBD0w2Yh6xaHbrKDXynBjo90tyO9BDwse4K8QBgE8Bi8InuWsbzKYDxfMYcH+Bz5jBoMofBFnMYbDNnDWCHOQx2mcNgjzkMvmDOOsCXzGEQModBxBwGT5gTADxlDoOvmMPga+Yw+IY59wG+ZQ6DmDkMEuYw2Nd0ayhzixd0F6htUBXowPQTFvewONRUGbK/44Vhf28Qs38wiKk/aro9pP7EC0P92SCm/mIQU3/VdGdI/Y0Xhvq7QUz9wyCmPtMvxnKZwV9GvkuFA8ouNp/z98T7B8IaQLYAAQAB//8AD3iclVd7bFRVGr/fuc+5M5177/Tec2tpL/NoZ2o7VJiZztS2lAIqCAVrrbi6m5oYCgjIokFAeWRdX1iQapetWt0NGFyIWRV5aGNI2GDdGDQrGu0mC39sDHHLBtld15jQwGW/c+8MD0WTnce55/md7/ed7/y+73KE4y4u55v5bk7mgpxyKKDwHJnSYDTFmrJWzAIjZkDsO4id/y/5kjzybGfns+f/Q3Zf+AWHH/7ihYtv8/fyQc7kYlwjp77bUDu5Quf5KQ1gmVIDxJPTIZdvhSZWZKida4Qw75B2KJhhiDdiJeMAfKsq+xVVVTapco2ijnf3/2FbF+nZ8vpTizY89OfxD1dJjx7+9r3NJD4hq96MUZz88R39PaRr+6vbcWb/HQ+Prlkz+k9WcOTiRcSziy/jFNRJOXRdUOIRD+DWkgPtAKYUvwGkBNtdcIhtyjYlj+/4eEjY/vk2iKdbzCOLN3QNLusgbSu37962upm/+YgFv146SIaOvShtc4er660jN7cvf+7V7atahFlLhhZsWHzE4jhAO/6LfE6e4mo46QAVYEpDrakB20xmRTI3A1KsyGcmQ4EVFIdx78+1Tj2t796NRafOnvrltqbt3q2tpqzy2mvaDydqjWwCJ+De5xBzN2I2uBQ3gyvrUJvT1VQLSbyAipTAF9gBAMUKHo8ciydTeDLZmE0zMyCWoTz1FU4W/DMrZDNUtrIZcsx0KInE9efNaITQqopbovT8R7YDUQr8/NiiWCfwNPqOGplQHXXCCKj2AA0PhCkMVCzWTFJRWUFMrVTZdoDiQusAjXZG8Qd1tjGh4irbmtBMoOEJzsPzNuJp9PBcz3UwPG3Tqi0tKBEPTzIMDmTyBawQik+EkyjCsbMOtLIxVJ6XPEeUE2wIC9/69CfwnA3lEwPxfNlZxBOoGDC1AVRqwC43PGiR6jCui5qmXnw+izCiFAuYXFc32YFuWgSR9kFxnj+eE6biHangsuiPySpT9vwx2YAmxiIuVUMiLpmoF55CXvQPpoDWT+HZ4KVhhWXKDpBj3h1ZKaubFFUcFXX8Q9/Gey7sWroDFs6CvWvvei5W19TaY8/thU7/niijKpsmjkpr794Ig8vmbnQq1u69ryvR09oQN9ZeSz9N8PRDN4ijO5i0FU1ImUWnQzbz0/oVlbpCzR/Vb7Xiq6WV1HzpR/RjvkDaUD8FNVQO0bBEfPuhzdjRmzKPXJJM8Uk8/AyFN3rW9uBve+SjQE0yKX8c2XtmL3zdyvp6Wqen3K4IpRHYl5q+du9ezpd/Pz+OdyfMVaN8QwsCyreMmEyzzIskIRVP8fmabMYuGLFCEs9KhsGdK4c2HY31J9wzBz4ZfCYB5oFPfjPorvK7h3B8xdDDb3wFgzD65qlBNoBtb69z/N1kFJF04F5tVaZna1PGa4dUmfA9uJDFgtpAC4ZPooUUem472EwfI5dMJeK5ZB7Pp9hJyW+D7qdBxyz6nukE4YbgaO/s/XII8ENAUfbX5iBfc1BSCSn1zO6F3nDQPa6a2i4aHsO1u9CrA9hxyF0/u1dVggGpTFZwGWzB1QJRhGJPb9Fu5/gV5H3kGw9LOsz8utZEDgkDu3FNhs/6lu11pZjhDJOiwg65EjILEZcgQx8paYf6o/9crT7Bw5cY2Co6EaaIlVYxrI0kIoYDAvTOhi1Xae6u9zWH9LWReryNRS+5nbOQt40AsPNgxOyRdwp5u+CTBvRKJ05IUpUYltzzkgSCqAtVEonL4skTUhj7RRDwiQXWS3I7S3IFKJ3zVaGAIe5EeSi0SirK1wWUAS0y6xarUOSJk/4wtj27Y5Hz5Dag3eOVIYGUYs0V6noY7Gv2IpLvoWA7j3l7+Z0+npMnxW75e8B0AdHK1+wt6Ra/pFuq0rjs39/Hbf8f1hgTUS9PpxMnfJug4j9iIuXahvN4hP858kgNNwd1m1Gn+7pZYe/eyVIpWclQScPowi5bvuC1y4vJTH4GeNcfv961bGoHRoAYzSk/v+bUS7e/2DYXPRPdkrnXgrrFhXm/Tkm2GFqhqGFT93u7V8/3O3+Jt7Pmq5duH2aLKkDkYei99hvnBr3l6NcLauvmtavNZSEYKXYs8NuSUJzo5WAePx7z+FHjEpiDTSrXAjKHOZgdMzxGiYnZJNo5JRrFKGmwoJ+hkxHlHNI2joHP/RKWfCrKb0k6VDv2hV1+bO+jee1NncrwxygdH9PlN2XplBtiEY9gfKwIv6XlMX58ffE+/jzyp40ZoHKoMRFm+SOGNXlaXrBpRJZQWAFTjjxJNQLrR3qQIjYVCtOkmlSSFPKpJHyzaPctT8OczX3p5nClMS3CB/im5gfmj7hS0FR4lWDjeXhk+Gl3ZPPiKc16lcF3t7Tcrz2yzP1uU32lRgw+LPdD9MF5t7pnFYU13L8/uFXbwKaAilMwFHOix1mn0FbXo65NXDs3l9M6QnNnthZy09L1tYI4pYGxViGWQZ3x6qSSaC+ftWIs/jEvxYzIN2NtE9iQylrZQkouUBxJ4oryS6kdctHxhBPg5UmKWhZyp3oMBsdrc2KNUoGj7lQk4D5Yt8t9ZkVTtOPOjjWBwGgggv+JLKZ4d+p6dhiOz+qFsFAuVSkCn6stCrlFRhFKaDlS5LSdsG4nCsjPvHPm0tJ6mJnV9R6UkUPMsuf348jTBleJ/sFQz+G6uPIOfeG8m2e2NU9NxaorzJAgI/ZcO0FyxmDOAKaSBQyw7YC5FqvkWepYjmkkXopkqoBNidF6eWnIvjSnVOl64vCHh5/ouk01z39jqrfNqW+rI+nmxlX1LWmhZlb8i2D6Z/PKApWTbuT1yiq+OZa/rjjyXfG5FJ+krj35yZKRLQsXbhlZ8vxGw9gwWF3v9Z8oPt0XGjorGhtiHeVfhCulkP4Fn4YdxbH+0px/FCueD7Twr/OPcXXcNG4WN5/rYT7Q1Tln9ozClOvLRfQBwHwGk9CmXKTQ5OWN6L0YtdAfEpZsUZtxFSMJCZMiPSlIOi1HHjBx2OcQzJpTGRpBRonkyz1bEMrfdYd7xt3snvn3fpK1oqTKPm45JF6eg1cekiZp9VESrhTdNS+MjbmfjY19tMyKRq1XsKiPQu6xd8h77mHh4OMrhsnQ34bIMLnu4R1H3bME6J8OgloOfDZajze2Lg5Z4I2VgUrNSWuV4oUnx6BxjHzm/uUz+L2Dkhz6CnUc+rsR1x0ZATJy4ejwmCfSvxvLvTxoMhfnajEXbGN2acrdUFeTiEVtmdkFyc4ovTgUiYTlIN67nZXPari9nLULTQmLGcOIYVAHo9jg93ukcuE0o5tPsaD6KS1PGfskY3P27HFf3rPngX1jjn0a1STJvzr2ONmI8+/xlu1EOlqHdHRKp1H6rr1uD2zac3Tf6dOYebsvD9C8u5A8Ps4awyVOFNbzIeTENHcbcuKMbIoKjBOBHaZDJNF7tTEvvx9cnX2xrMoGkxaylnfX8WaINiMFFhQwE8QoYMEzd28mj76zXnoC3h9FLsckNiQh038gqxCSPlCVFVhx++qrB5I3uhWzu4VQxEm2xILBdM/innQweOvUTdX10Lt536/IxoOP3vrDtb5Q90h1Gp6sWjjbaZ6Vb45XEjWOHzVfX13E+VAR50IPZ0y7GmcxkfmJt1BZlNnbx5U4acZDiURt2pdhEmGrKHaKmrh1KxadInte1Xbv7bOsxmDZVWgXjSwKBjVdC4N1CeyhfulKAVI/CpDm++35OLS1z2yzGskVmG+6SRW0yohjcf8DWIRuLAAAeJxjYGRgYABit1kanPH8Nl8ZuJlfAEUYLvWtnQyhm5P/v/1vxVLB3AjkcjAwgUQBTscMvnicY2BkYGAO+p/FEMVSxsDw/xZLBQNQBAVIAQB7FAUEeJxjfsHAwGwBxJFAvACIBaE0ELPoQzCTNZD/AqGGMRWCQeJgOaA40ykg/RKqDoRXQWiWMggGAJegDckAAAAAAAAeAGgApADiAUoBsAIAAlACgAK2AxwDgAOsA9gEJgR0BOAFIAV2BfAGeAcEB2oH3ghZAAAAAQAAABoAVQAHAAAAAAACAAAAEABzAAAAJAtwAAAAAHicdZHNSsNAFEa/aWvVFlQU3HpXUhHTH+hGEAqVutFNkW4ljWmSkmbKZFroa/gOPowv4bP4NZ2KtJiQzLln7ty5mQA4xzcUNleXz4YVjhhtuIRDPDgu0z86rpCfHR+gjlfHVfo3xzXcInJcxwU+WEFVjhlN8elY4UydOi7hRF05LtPfOa6QHxwf4FK9OK7SB45rGKnccR3X6quv5yuTRLGVRv9GOq12V8Yr0VRJ5qfiL2ysTS49mejMhmmqvUDPtjwMo0Xqm224HUehyROdSdtrbdVTmIXGt+H7unq+jDrWTmRi9EwGLkPmRk/DwHqxtfP7ZvPvfuhDY44VDBIeVQwLQYP2hmMHLbT5IwRjZggzN1kJMvhIaXwsuCIuZnLGPT4TRhltyIyU7CHge7bnh6SI61NWMXuzu/GItN4jKbywL4/d7WY9kbIi0y/s+2/vOZbcrUNruWrdpSm6Egx2agjPYz03pQnoveJULO09mrz/+b4f4GSETQB4nG1M204DIRDltAt22VptvfcfeGjiD1FAloiw4ZL9fdeiJiaeh5lzmyEr0sDJ/zgSghXW6EDBcIUNenAM2OIaO9zgFnsccId7POART3jGC460JJlHqnxU7ywbmdTIlAzK+I2Oc/BRalanr7X70WIpV71tbhN8OZfFxSBOg0wpzlmoWZyoj9YFtsxYC5fBeiO8eStDo8nZsewb17Gev9PDH+dS6n+frnVUNE8uvHZGu0KtrNb0ucRplkWN3RLnvmaTxORr5hdW3IfJhHwCfmFVlQAAAHicY/DewXAiKGIjI2Nf5AbGnRwMHAzJBRsZWJ02MjBoQWgOFHonAwMDJzKLmcFlowpjR2DEBoeOiI3MKS4b1UC8XRwNDIwsDh3JIREgJZFAsJGBR2sH4//WDSy9G5kYXAAH0yK4AAAA') format('woff'),
710
+ url('data:application/octet-stream;base64,AAEAAAAOAIAAAwBgT1MvMj5YSTMAAADsAAAAVmNtYXDQKRm3AAABRAAAAUpjdnQgAAAAAAAAGHwAAAAKZnBnbYiQkFkAABiIAAALcGdhc3AAAAAQAAAYdAAAAAhnbHlm3zHNsAAAApAAABCyaGVhZAihdJYAABNEAAAANmhoZWEIJwPVAAATfAAAACRobXR4V34AAAAAE6AAAABobG9jYTILLb4AABQIAAAANm1heHAAuQvXAAAUQAAAACBuYW1lzJ0bHQAAFGAAAALNcG9zdCNIsbcAABcwAAABQXByZXDdawOFAAAj+AAAAHsAAQNdAZAABQAIAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA6ADoGANS/2oAWgOBAMYAAAABAAAAAAAAAAAAAwAAAAMAAAAcAAEAAAAAAEQAAwABAAAAHAAEACgAAAAGAAQAAQACAADoGP//AAAAAOgA//8AABgBAAEAAAAAAAAAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAA/2oDOANSAAcACwAItQkIAwACLSsRNSE1MxUhFQERIREBIfYBIfzzAuICeY1MTI388QKk/VwAAAAAA//9/7EDXwMLABQAIQAuAAq3KyUfGBADAy0rARUUBisBIiY9ATQ2OwE1NDY7ATIWFzQuAQ4DHgI+ATcUDgEiLgI+ATIeAQH0CgiyCAoKCH0KByQICuhSiqaMUAJUiKqGVntyxujIbgZ6vPS6fgIi+gcKCgckCArECAoKzFOKVAJQjqKOUAJUilN1xHR0xOrEdHTEAAL///9qA6EDDQAIACEACLUZCwYDAi0rATQuAQYeAT4BARQGIi8BBiMiLgI+BB4CFxQHFxYCg5TMlgSO1IwBIiw6FL9ke1CSaEACPGyOpIxwOANFvxUBgmeSApbKmAaM/podKhW/RT5qkKKObjoEQmaWTXtkvxUAAAEAAP/vAtQChgAkAAazFgQBLSslFA8BBiIvAQcGIi8BJjQ/AScmND8BNjIfATc2Mh8BFhQPARcWAtQPTBAsEKSkECwQTBAQpKQQEEwQLBCkpBAsEEwPD6SkD3AWEEwPD6WlDw9MECwQpKQQLBBMEBCkpBAQTA8uD6SkDwAEAAD/+QOhA1IACAARACcAPwANQAo4LB0WDwwGAwQtKyU0LgEGHgE+ATc0LgEOARY+ATcVFAYHISImJzU0NjMhFxYyPwEhMhYDFg8BBiIvASY3NjsBNTQ2NzMyFgcVMzICyhQeFgISIhCRFCASAhYcGEYgFvzLFx4BIBYBA0shViFMAQMWILYKEvoKHgr6EQkKF48WDo8OFgGPGGQPFAIYGhgCFA8PFAIYGhgCFIyzFh4BIBWzFiBMICBMIAEoFxH6Cgr6ERcV+g8UARYO+gAABAAA/7EDoQMuAAgAEQApAEAADUAKPDEdFQ8LBgIELSslNCYOAR4BMjY3NCYOAhYyNjcVFAYjISImJzU0NhczHgE7ATI2NzMyFgMGKwEVFAYHIyImJzUjIiY/ATYyHwEWAsoUHhYCEiIQkRQgEgIWHBhGIBb8yxceASAW7gw2I48iNg3uFiC2CRiPFA+PDxQBjxcTEfoKHgr6Eh0OFgISIBQUEA4WAhIgFBSNsxYgIBazFiABHygoHx4BUhb6DxQBFg76LBH6Cgr6EQAAAv////kEMAMLABgAMwAItSYcFAcCLSsBNCYrATU0JisBIgYdASMiBhQfARYyPwE2BRQGByEiJjc0NjcnNDYzMhYXNjMyFhUUBx4BAsoKCH0KB2wHCn0ICgXEBRAFxAUBZXxa/aFnlAFOQgGodleQISg1O1QXSF4BTAgKxAgKCgjEChAFxAUFxAZ2WXwBkmhIfB4YdqhiUCNUOysiEXYAAAL////5BDADCwAYADMACLUmHA8EAi0rATQvASYiDwEGFBY7ARUUFjsBMjY9ATMyNgUUBgchIiY3NDY3JzQ2MzIWFzYzMhYVFAceAQLKBcQFEAXEBQoIfQoHbAcKfQgKAWV8Wv2hZ5QBTkIBqHZXkCEoNTtUF0heAXAIBcQFBcQGDwrECAoKCMQKmVl8AZJoSHweGHaoYlAjVDsrIhF2AAACAAD/sQI8AwsACAAYAAi1Fg4GAgItKwE0JiIGFBYyNjcUBwMOASImJwMmNTQ2MhYBrVR2VFR2VI4SywkkJiYHzBKo7KgB7TtUVHZUVDs9J/5QEhYWEgGwJz12qKgAAAACAAD/aQPoA1IADgAdAAi1EQ8LAQItKxURIQcWMzI2NzMGBCciJwM2JDMyFzcRITcmIyIGBwGSoGyWfcIhiiP+7LPPkokjARSzz5OS/m6gbJZ9wiGWAZKga5Z1reYBkgHEruSSkv5uoGuWdQACAAD/+QNZAsQAGABAAAi1PBwUBAItKwEUBwEGIiY9ASMiJic1NDY3MzU0NhYXARY3ERQGKwEiJjcnJj8BPgEXMzI2NxE0JicjIjQmNi8BJj8BPgEXMzIWApUL/tELHhT6DxQBFg76FB4LAS8LxF5DsgcMAQEBAQIBCAiyJTQBNiS0BgoCAgEBAQIBCAiyQ14BXg4L/tAKFA+hFg7WDxQBoQ4WAgn+0Aq1/nhDXgoICwkGDQcIATYkAYglNAEEAggECwkGDQcIAV4AAAACAAD/+QNrAsMAJwBAAAi1PCwOBwItKyUUFg8BDgEHIyImNRE0NjsBMhYVFxYPAQ4BJyMiBgcRFBYXMzIeAgEUBwEGIiY9ASMiJj0BNDY3MzU0NhYXARYBZQIBAgEICLJDXl5DsggKAQEBAgEICLIlNAE2JLQGAgYCAgYL/tELHBb6DhYWDvoWHAsBLwsuAhIFDgkEAV5DAYhDXgoICwkGDQcIATYk/nglNAEEAggBLA4L/tAKFA+hFg7WDxQBoQ4WAgn+0AoAAAEAAAAAAV4CUQAVAAazEQkBLSsBFA8BFxYUDwEGIicBJjQ3ATYyHwEWAV4G29sGBhwFDgb+/AYGAQQFEAQcBgIiBwXc2wYOBhwFBQEEBg4GAQQGBhwFAAABAAAAAAFMAlEAFQAGsxEEAS0rARQHAQYiLwEmND8BJyY0PwE2MhcBFgFMBv78BQ4GHAYG29sGBhwFEAQBBAYBOgcG/vwFBRwGDgbb3AUOBhwGBv78BQAAAgAAAAACNAJRABUAKwAItSIaDAQCLSslFA8BBiInASY0NwE2Mh8BFhQPARcWFxQPAQYiJwEmNDcBNjIfARYUDwEXFgFeBhwFDgb+/AYGAQQFEAQcBgbb2wbWBRwGDgb+/AYGAQQGDgYcBQXc3AVSBwYcBQUBBAYOBgEEBgYcBRAE3NsGBwcGHAUFAQQGDgYBBAYGHAUQBNzbBgAAAgAAAAACIgJRABUAKwAItScaEQQCLSsBFAcBBiIvASY0PwEnJjQ/ATYyFwEWFxQHAQYiLwEmND8BJyY0PwE2MhcBFgFMBv78BQ4GHAYG29sGBhwFEAQBBAbWBf78Bg4GHAUF29sFBRwGDgYBBAUBOgcG/vwFBRwGDgbb3AUOBhwGBv78BQgHBv78BQUcBg4G29wFDgYcBgb+/AUAAgAA/7EDWwMLACQARwAItT8oEAQCLSsBFBUOASMiJicHBiImPQE0NjsBMhYGDwEeATMyNjc2NzY7ATIWExUUBisBIiY2PwEmIyIGBwYHBisBIiY3NT4BMzIWFzc2MhYDSyTkmVGYPEgLHBYWDvoOFgIJTShkN0qCJwYXBQxrCAoOFBD6DhYCCU1ScEuCJwYXBQxvBwwBJOaZUZo8SAscGAEFAwGWuj45SAsWDvoOFhYcC00lKEo+CjgNDAG4+g4WFhwLTU1KPgo4DQwGBJa6PjlICxYAAAAAAwAA/7ECygMLAAgADwAjAAq3GxMPCQcAAy0rFyERIyImJzUhBTMmLwEmJwURFAYjISImJxE0NjMhMhYfAR4BRwI86BceAf7iAWbRBQevBhABHR4X/aEXHgEgFgFlFjYPrhAWBwGsIBbo1hAHrgcG5P4MFiAgFgLuFiAYDq8PNgAC/+3/YgP8A1IAFwAuAAi1LiMOAAItKwEiBgcxNgQXFhIHBhceATc+ATc2AicuAQEiBgcOAQcGEhcWBDcxBiQnJgI3NicmAfJWpEaHAUd+ZSw4DhoRMRIDCQM1OG1LuP4GCxQIAwoCNThtkQF5mof+uH5kLTgQHBEDUjo6aQ95aP72fSoaDwIRAw4HigEgcUpJ/u4ICAMOB4r+4HGLD3tpD3loAQp9KhoRAAAABQAA//kD5AMLACkALgA1AD4ASAAPQAxIQTs3NDEsKiUEBS0rNRE0NjchMhceAQ8BBicmIyEiBgcRFBYXITI2PQE0PwE2FgcVFAYjISImJTUBFwEnMxUzNycHNxY/ATYmDwEGEzc2Mh8BFhQPAV5DAdAjHgkDBxsICg0M/jAlNAE2JAHQJTQFJAgYAV5D/jBDXgFlAXeh/olrNSBAVUB0CQnECRIJxAn6MxAsEFUQEDOaAdBCXgEOBBMGHAgEAzQl/jAlNAE2JEYHBSQICAxqQ15eMaABd6D+iWs2QVVBZwkJxAkSCcQJAUEzEBBUECwQNAAAAAcAAP+xA+gCwwARABoAIwA1AD4ARwBQABNAEE5KRUE8ODAnIR0YFAwEBy0rNTQ+AjIeAhUUBwYjISInJjcUFjI+ASYOATcUFjI2LgEOARMGHgE2NzYmJzc2LgEGDwEOARMUFjI2LgEOARcUFjI2LgEOARMUFjI2LgEOAVCEvMi8hFBPChT88hQKT0cqPCgCLDgubio6LAQkQiLVCyxYSg0JGhs5AxAaHAM4ITYZKjosBCRCIvYqOiwEJEIiZyo6LAIoPibPZriITk6IuGaRfBERe5IdKio6LAIo2x0qKjosAij+lytMGC4rIUAT1Q4aBgwQ1QMsAZQdKio6LAIoih0qKjosAij+5x0qKjosAigABQAA/zoDqgOBACgAMQBCAEsAVAAPQAxQTEdDPzctKRMFBS0rARYVFAAEADU0Ejc1JzUjIiY+ATczMh4BBicjFQcVFhc/ATYyFgYPAQYBMjYQJgQGEBYTMzIWFAYnIyImPQE0NjIWBycyFhIGIiYSNhMyNi4BDgIWA1dT/uz+fv7s8LICMxUgAhwX0BUeAiITNAGccgYbDyogAg4aBf50l9bW/tLW1stoFSAgFZwVICAqIAE0gbYCuv68BLSDa5oCltqWApoCGXWUwv7uAgEWwLQBChMBAzMgKh4BICgiATMBAxFsCRoPHiwPGgX9hdYBLtYC0v7O0gGeHiogAR4WnBYeHhaduP7+uLgBArj9wprWmgKW2pYAAAUAAP9qA+gDUgAfACIAJQAzADwAD0AMNTQvKCQjISAXBwUtKwEyFhcRFAYHISImJzUhIiYnETQ2PwE+ATsBMhYXFTYzDwEzAQczFzc1IxUUBicjESE1NDYBESMVFAYnIxEDshceASAW/ekXHgH+0RceARYQ5A82FugXHgEmIUenp/6bp6dtsNYeF+kBHhYCJtceF+gCfCAW/VoXHgEgFqAgFgF3FjYP5BAWIBa3F3enAX2nwrDp6RYgAf6bjxY2/k4Cg+gWIAH+mgAAAAMAAP+xBHgDDAAIACwATwAKtz8zJxYEAAMtKwEiJj4BHgIGBTMyFgcVFAYrARUUBgcjIiY9ASMiJic1NDY3MzU0NhczMhYXARQWNzMVBiMhIiY1ND4FFzIXHgEyNjc2MzIXIyIGFQGJWX4CerZ4BoQBw8QHDAEKCMQMBmsICsUHCgEMBsUKCGsHCgH+ZSodjyY5/hhDUgQMEh4mOiELCyxUZFQsCwtJMH0dKgFefrCAAny0ekkMBmsICsUHCgEMBsUKCGsHCgHEBwwBCgj+vx0sAYUcTkMeOEI2OCIaAgoiIiIiCjYqHQADAAD/sQRyAwwACAAsAE4ACrc/MyEPBAADLSsBIiY+AR4CBgUXFhQPAQYiLwEHBiIvASY0PwEnJjQ/ATYyHwE3NjIfARYUBwUHBhQfAQYjISImNTQ+BRcyFxYyNzYzMhcOAQcUFwGJWX4CerZ4BoQCBIsFBUwFDwWLiwUPBUwFBYuLBQVMBQ8Fi4sFDwVMBQX+X2UVFS4LDf4YQ1IEDBIeJjohCwtWuFYLCw8QDw4BFQFefrCAAny0erWKBg8FTAUFi4sFBUwFDwaKiwUPBksFBYuLBQVLBg8Fi2UUPBUuAk5DHjhCNjgiGgIKREQKBA8aEh4VAAAAAAEAAAABAABGmigJXw889QALA+gAAAAA0o6tkwAAAADSjoNj/+3/OgR4A4EAAAAIAAIAAAAAAAAAAQAAA1L/agBaBHYAAP/aBHgAAQAAAAAAAAAAAAAAAAAAABoD6AAAAzgAAANZAAADoAAAAxEAAAOgAAADoAAABC8AAAQvAAACOwAAA+gAAANZAAADoAAAAWUAAAFlAAACOwAAAjsAAANZAAACygAAA+kAAAPoAAAD6AAAA6oAAAPoAAAEdgAABHYAAAAAAAAAHgBoAKQA4gFKAbACAAJQAoACtgMcA4ADrAPYBCYEdATgBSAFdgXwBngHBAdqB94IWQAAAAEAAAAaAFUABwAAAAAAAgAAABAAcwAAACQLcAAAAAAAAAASAN4AAQAAAAAAAAA1AAAAAQAAAAAAAQAIADUAAQAAAAAAAgAHAD0AAQAAAAAAAwAIAEQAAQAAAAAABAAIAEwAAQAAAAAABQALAFQAAQAAAAAABgAIAF8AAQAAAAAACgArAGcAAQAAAAAACwATAJIAAwABBAkAAABqAKUAAwABBAkAAQAQAQ8AAwABBAkAAgAOAR8AAwABBAkAAwAQAS0AAwABBAkABAAQAT0AAwABBAkABQAWAU0AAwABBAkABgAQAWMAAwABBAkACgBWAXMAAwABBAkACwAmAclDb3B5cmlnaHQgKEMpIDIwMTUgYnkgb3JpZ2luYWwgYXV0aG9ycyBAIGZvbnRlbGxvLmNvbWZvbnRlbGxvUmVndWxhcmZvbnRlbGxvZm9udGVsbG9WZXJzaW9uIDEuMGZvbnRlbGxvR2VuZXJhdGVkIGJ5IHN2ZzJ0dGYgZnJvbSBGb250ZWxsbyBwcm9qZWN0Lmh0dHA6Ly9mb250ZWxsby5jb20AQwBvAHAAeQByAGkAZwBoAHQAIAAoAEMAKQAgADIAMAAxADUAIABiAHkAIABvAHIAaQBnAGkAbgBhAGwAIABhAHUAdABoAG8AcgBzACAAQAAgAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAGYAbwBuAHQAZQBsAGwAbwBSAGUAZwB1AGwAYQByAGYAbwBuAHQAZQBsAGwAbwBmAG8AbgB0AGUAbABsAG8AVgBlAHIAcwBpAG8AbgAgADEALgAwAGYAbwBuAHQAZQBsAGwAbwBHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAGgAdAB0AHAAOgAvAC8AZgBvAG4AdABlAGwAbABvAC4AYwBvAG0AAAAAAgAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAABAgEDAQQBBQEGAQcBCAEJAQoBCwEMAQ0BDgEPARABEQESARMBFAEVARYBFwEYARkBGgV0cmFzaAVjbG9jawZzZWFyY2gGY2FuY2VsCGRvd25sb2FkBnVwbG9hZA5kb3dubG9hZC1jbG91ZAx1cGxvYWQtY2xvdWQKbG9jYXRpb24tMQthcnJvd3MtY3ctMQVsb2dpbgZsb2dvdXQKYW5nbGUtbGVmdAthbmdsZS1yaWdodBFhbmdsZS1kb3VibGUtbGVmdBJhbmdsZS1kb3VibGUtcmlnaHQJYXJyb3dzLWN3A2RvYwVzcGluNARlZGl0BWdhdWdlCXN0b3B3YXRjaARkb2NzCXVzZXItcGx1cwp1c2VyLXRpbWVzAAAAAAAAAQAB//8ADwAAAAAAAAAAAAAAALAALCCwAFVYRVkgIEu4AA5RS7AGU1pYsDQbsChZYGYgilVYsAIlYbkIAAgAY2MjYhshIbAAWbAAQyNEsgABAENgQi2wASywIGBmLbACLCBkILDAULAEJlqyKAEKQ0VjRVJbWCEjIRuKWCCwUFBYIbBAWRsgsDhQWCGwOFlZILEBCkNFY0VhZLAoUFghsQEKQ0VjRSCwMFBYIbAwWRsgsMBQWCBmIIqKYSCwClBYYBsgsCBQWCGwCmAbILA2UFghsDZgG2BZWVkbsAErWVkjsABQWGVZWS2wAywgRSCwBCVhZCCwBUNQWLAFI0KwBiNCGyEhWbABYC2wBCwjISMhIGSxBWJCILAGI0KxAQpDRWOxAQpDsABgRWOwAyohILAGQyCKIIqwASuxMAUlsAQmUVhgUBthUllYI1khILBAU1iwASsbIbBAWSOwAFBYZVktsAUssAdDK7IAAgBDYEItsAYssAcjQiMgsAAjQmGwAmJmsAFjsAFgsAUqLbAHLCAgRSCwC0NjuAQAYiCwAFBYsEBgWWawAWNgRLABYC2wCCyyBwsAQ0VCKiGyAAEAQ2BCLbAJLLAAQyNEsgABAENgQi2wCiwgIEUgsAErI7AAQ7AEJWAgRYojYSBkILAgUFghsAAbsDBQWLAgG7BAWVkjsABQWGVZsAMlI2FERLABYC2wCywgIEUgsAErI7AAQ7AEJWAgRYojYSBksCRQWLAAG7BAWSOwAFBYZVmwAyUjYUREsAFgLbAMLCCwACNCsgsKA0VYIRsjIVkqIS2wDSyxAgJFsGRhRC2wDiywAWAgILAMQ0qwAFBYILAMI0JZsA1DSrAAUlggsA0jQlktsA8sILAQYmawAWMguAQAY4ojYbAOQ2AgimAgsA4jQiMtsBAsS1RYsQRkRFkksA1lI3gtsBEsS1FYS1NYsQRkRFkbIVkksBNlI3gtsBIssQAPQ1VYsQ8PQ7ABYUKwDytZsABDsAIlQrEMAiVCsQ0CJUKwARYjILADJVBYsQEAQ2CwBCVCioogiiNhsA4qISOwAWEgiiNhsA4qIRuxAQBDYLACJUKwAiVhsA4qIVmwDENHsA1DR2CwAmIgsABQWLBAYFlmsAFjILALQ2O4BABiILAAUFiwQGBZZrABY2CxAAATI0SwAUOwAD6yAQEBQ2BCLbATLACxAAJFVFiwDyNCIEWwCyNCsAojsABgQiBgsAFhtRAQAQAOAEJCimCxEgYrsHIrGyJZLbAULLEAEystsBUssQETKy2wFiyxAhMrLbAXLLEDEystsBgssQQTKy2wGSyxBRMrLbAaLLEGEystsBsssQcTKy2wHCyxCBMrLbAdLLEJEystsB4sALANK7EAAkVUWLAPI0IgRbALI0KwCiOwAGBCIGCwAWG1EBABAA4AQkKKYLESBiuwcisbIlktsB8ssQAeKy2wICyxAR4rLbAhLLECHistsCIssQMeKy2wIyyxBB4rLbAkLLEFHistsCUssQYeKy2wJiyxBx4rLbAnLLEIHistsCgssQkeKy2wKSwgPLABYC2wKiwgYLAQYCBDI7ABYEOwAiVhsAFgsCkqIS2wKyywKiuwKiotsCwsICBHICCwC0NjuAQAYiCwAFBYsEBgWWawAWNgI2E4IyCKVVggRyAgsAtDY7gEAGIgsABQWLBAYFlmsAFjYCNhOBshWS2wLSwAsQACRVRYsAEWsCwqsAEVMBsiWS2wLiwAsA0rsQACRVRYsAEWsCwqsAEVMBsiWS2wLywgNbABYC2wMCwAsAFFY7gEAGIgsABQWLBAYFlmsAFjsAErsAtDY7gEAGIgsABQWLBAYFlmsAFjsAErsAAWtAAAAAAARD4jOLEvARUqLbAxLCA8IEcgsAtDY7gEAGIgsABQWLBAYFlmsAFjYLAAQ2E4LbAyLC4XPC2wMywgPCBHILALQ2O4BABiILAAUFiwQGBZZrABY2CwAENhsAFDYzgtsDQssQIAFiUgLiBHsAAjQrACJUmKikcjRyNhIFhiGyFZsAEjQrIzAQEVFCotsDUssAAWsAQlsAQlRyNHI2GwCUMrZYouIyAgPIo4LbA2LLAAFrAEJbAEJSAuRyNHI2EgsAQjQrAJQysgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjILAIQyCKI0cjRyNhI0ZgsARDsAJiILAAUFiwQGBZZrABY2AgsAErIIqKYSCwAkNgZCOwA0NhZFBYsAJDYRuwA0NgWbADJbACYiCwAFBYsEBgWWawAWNhIyAgsAQmI0ZhOBsjsAhDRrACJbAIQ0cjRyNhYCCwBEOwAmIgsABQWLBAYFlmsAFjYCMgsAErI7AEQ2CwASuwBSVhsAUlsAJiILAAUFiwQGBZZrABY7AEJmEgsAQlYGQjsAMlYGRQWCEbIyFZIyAgsAQmI0ZhOFktsDcssAAWICAgsAUmIC5HI0cjYSM8OC2wOCywABYgsAgjQiAgIEYjR7ABKyNhOC2wOSywABawAyWwAiVHI0cjYbAAVFguIDwjIRuwAiWwAiVHI0cjYSCwBSWwBCVHI0cjYbAGJbAFJUmwAiVhuQgACABjYyMgWGIbIVljuAQAYiCwAFBYsEBgWWawAWNgIy4jICA8ijgjIVktsDossAAWILAIQyAuRyNHI2EgYLAgYGawAmIgsABQWLBAYFlmsAFjIyAgPIo4LbA7LCMgLkawAiVGUlggPFkusSsBFCstsDwsIyAuRrACJUZQWCA8WS6xKwEUKy2wPSwjIC5GsAIlRlJYIDxZIyAuRrACJUZQWCA8WS6xKwEUKy2wPiywNSsjIC5GsAIlRlJYIDxZLrErARQrLbA/LLA2K4ogIDywBCNCijgjIC5GsAIlRlJYIDxZLrErARQrsARDLrArKy2wQCywABawBCWwBCYgLkcjRyNhsAlDKyMgPCAuIzixKwEUKy2wQSyxCAQlQrAAFrAEJbAEJSAuRyNHI2EgsAQjQrAJQysgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjIEewBEOwAmIgsABQWLBAYFlmsAFjYCCwASsgiophILACQ2BkI7ADQ2FkUFiwAkNhG7ADQ2BZsAMlsAJiILAAUFiwQGBZZrABY2GwAiVGYTgjIDwjOBshICBGI0ewASsjYTghWbErARQrLbBCLLA1Ky6xKwEUKy2wQyywNishIyAgPLAEI0IjOLErARQrsARDLrArKy2wRCywABUgR7AAI0KyAAEBFRQTLrAxKi2wRSywABUgR7AAI0KyAAEBFRQTLrAxKi2wRiyxAAEUE7AyKi2wRyywNCotsEgssAAWRSMgLiBGiiNhOLErARQrLbBJLLAII0KwSCstsEossgAAQSstsEsssgABQSstsEwssgEAQSstsE0ssgEBQSstsE4ssgAAQistsE8ssgABQistsFAssgEAQistsFEssgEBQistsFIssgAAPistsFMssgABPistsFQssgEAPistsFUssgEBPistsFYssgAAQCstsFcssgABQCstsFgssgEAQCstsFkssgEBQCstsFossgAAQystsFsssgABQystsFwssgEAQystsF0ssgEBQystsF4ssgAAPystsF8ssgABPystsGAssgEAPystsGEssgEBPystsGIssDcrLrErARQrLbBjLLA3K7A7Ky2wZCywNyuwPCstsGUssAAWsDcrsD0rLbBmLLA4Ky6xKwEUKy2wZyywOCuwOystsGgssDgrsDwrLbBpLLA4K7A9Ky2waiywOSsusSsBFCstsGsssDkrsDsrLbBsLLA5K7A8Ky2wbSywOSuwPSstsG4ssDorLrErARQrLbBvLLA6K7A7Ky2wcCywOiuwPCstsHEssDorsD0rLbByLLMJBAIDRVghGyMhWUIrsAhlsAMkUHiwARUwLQBLuADIUlixAQGOWbABuQgACABjcLEABUKxAAAqsQAFQrEACCqxAAVCsQAIKrEABUK5AAAACSqxAAVCuQAAAAkqsQMARLEkAYhRWLBAiFixA2REsSYBiFFYugiAAAEEQIhjVFixAwBEWVlZWbEADCq4Af+FsASNsQIARAA=') format('truetype');
711
  }
712
  [class^="slimstat-font-"]:before, [class*=" slimstat-font-"]:before {
713
  font-family: "slimstat";
762
  .slimstat-font-gauge:before { content: '\e814'; } /* '' */
763
  .slimstat-font-stopwatch:before { content: '\e815'; } /* '' */
764
  .slimstat-font-docs:before { content: '\e816'; } /* '' */
765
+ .slimstat-font-user-plus:before { content: '\e817'; } /* '' */
766
+ .slimstat-font-user-times:before { content: '\e818'; } /* '' */
767
 
768
  .animate-spin{-moz-animation:spin 3s infinite linear;-o-animation:spin 3s infinite linear;-webkit-animation:spin 3s infinite linear;animation:spin 3s infinite linear;display:inline-block;line-height:1em;}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-o-keyframes spin{0%{-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-ms-keyframes spin{0%{-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}
admin/css/slimstat.eot CHANGED
Binary file
admin/css/slimstat.svg CHANGED
@@ -29,6 +29,8 @@
29
  <glyph glyph-name="gauge" unicode="&#xe814;" d="m0 207q0 102 40 194t106 160 160 107 194 39 194-39 160-107 106-160 40-194q0-145-79-269-10-17-30-17h-782q-20 0-30 17-79 123-79 269z m71 0q0-29 21-50t51-21 50 21 21 50-21 51-50 21-51-21-21-51z m108 250q0-29 21-50t50-21 51 21 20 50-20 51-51 21-50-21-21-51z m217-330q-11-43 11-81t66-50 81 11 50 66q9 33-4 65t-40 51l57 213q3 14-5 27t-21 16-27-3-17-22l-56-213q-33-3-60-25t-35-55z m33 437q0-29 21-50t50-21 51 21 20 50-20 51-51 21-50-21-21-51z m250-107q0-29 21-50t50-21 51 21 20 50-20 51-51 21-50-21-21-51z m107-250q0-29 21-50t50-21 51 21 21 50-21 51-51 21-50-21-21-51z" horiz-adv-x="1000" />
30
  <glyph glyph-name="stopwatch" unicode="&#xe815;" d="m855 537q83-117 83-265 0-194-138-331t-331-138-331 138-138 331q0 180 120 313t298 152l0 1-2 3 0 51-51 0q-21 0-37 16t-15 37 15 36 37 16l208 0q21 0 36-16t16-36-16-37-36-16l-52 0 0-51-1-1 0-3q156-17 270-125 1 1 3 4t3 5l27 26q15 15 36 15t37-15 15-37-15-37l-26-26q-5-5-15-10z m-386-630q151 0 258 107t107 258-107 258-258 106-258-106-107-258 107-258 258-107z m52 416l104 0q21 0 37-15t16-36-16-37-37-15l-156 0q-21 0-37 15t-16 37l0 156q0 22 16 37t37 15 37-15 15-37l0-105z m-52 262q129 0 220-92t92-221-92-221-220-92-221 92-92 221 92 221 221 92z m0-574q107 0 184 77t76 184-76 184-184 76-184-76-76-184 76-184 184-77z" horiz-adv-x="938" />
31
  <glyph glyph-name="docs" unicode="&#xe816;" d="m946 636q23 0 38-16t16-38v-678q0-23-16-38t-38-16h-535q-23 0-38 16t-16 38v160h-303q-23 0-38 16t-16 38v375q0 22 11 49t27 42l228 228q15 16 42 27t49 11h232q23 0 38-16t16-38v-183q38 23 71 23h232z m-303-119l-167-167h167v167z m-357 214l-167-167h167v167z m109-361l176 176v233h-214v-233q0-22-15-38t-38-15h-233v-357h286v143q0 22 11 49t27 42z m534-449v643h-215v-232q0-22-15-38t-38-15h-232v-358h500z" horiz-adv-x="1000" />
 
 
32
  </font>
33
  </defs>
34
  </svg>
29
  <glyph glyph-name="gauge" unicode="&#xe814;" d="m0 207q0 102 40 194t106 160 160 107 194 39 194-39 160-107 106-160 40-194q0-145-79-269-10-17-30-17h-782q-20 0-30 17-79 123-79 269z m71 0q0-29 21-50t51-21 50 21 21 50-21 51-50 21-51-21-21-51z m108 250q0-29 21-50t50-21 51 21 20 50-20 51-51 21-50-21-21-51z m217-330q-11-43 11-81t66-50 81 11 50 66q9 33-4 65t-40 51l57 213q3 14-5 27t-21 16-27-3-17-22l-56-213q-33-3-60-25t-35-55z m33 437q0-29 21-50t50-21 51 21 20 50-20 51-51 21-50-21-21-51z m250-107q0-29 21-50t50-21 51 21 20 50-20 51-51 21-50-21-21-51z m107-250q0-29 21-50t50-21 51 21 21 50-21 51-51 21-50-21-21-51z" horiz-adv-x="1000" />
30
  <glyph glyph-name="stopwatch" unicode="&#xe815;" d="m855 537q83-117 83-265 0-194-138-331t-331-138-331 138-138 331q0 180 120 313t298 152l0 1-2 3 0 51-51 0q-21 0-37 16t-15 37 15 36 37 16l208 0q21 0 36-16t16-36-16-37-36-16l-52 0 0-51-1-1 0-3q156-17 270-125 1 1 3 4t3 5l27 26q15 15 36 15t37-15 15-37-15-37l-26-26q-5-5-15-10z m-386-630q151 0 258 107t107 258-107 258-258 106-258-106-107-258 107-258 258-107z m52 416l104 0q21 0 37-15t16-36-16-37-37-15l-156 0q-21 0-37 15t-16 37l0 156q0 22 16 37t37 15 37-15 15-37l0-105z m-52 262q129 0 220-92t92-221-92-221-220-92-221 92-92 221 92 221 221 92z m0-574q107 0 184 77t76 184-76 184-184 76-184-76-76-184 76-184 184-77z" horiz-adv-x="938" />
31
  <glyph glyph-name="docs" unicode="&#xe816;" d="m946 636q23 0 38-16t16-38v-678q0-23-16-38t-38-16h-535q-23 0-38 16t-16 38v160h-303q-23 0-38 16t-16 38v375q0 22 11 49t27 42l228 228q15 16 42 27t49 11h232q23 0 38-16t16-38v-183q38 23 71 23h232z m-303-119l-167-167h167v167z m-357 214l-167-167h167v167z m109-361l176 176v233h-214v-233q0-22-15-38t-38-15h-233v-357h286v143q0 22 11 49t27 42z m534-449v643h-215v-232q0-22-15-38t-38-15h-232v-358h500z" horiz-adv-x="1000" />
32
+ <glyph glyph-name="user-plus" unicode="&#xe817;" d="m393 350q-89 0-152 63t-62 151 62 152 152 63 151-63 63-152-63-151-151-63z m536-71h196q7 0 13-6t5-12v-107q0-8-5-13t-13-5h-196v-197q0-7-6-12t-12-6h-107q-8 0-13 6t-5 12v197h-197q-7 0-12 5t-6 13v107q0 7 6 12t12 6h197v196q0 7 5 13t13 5h107q7 0 12-5t6-13v-196z m-411-125q0-29 21-51t50-21h143v-133q-38-28-95-28h-488q-67 0-108 39t-41 106q0 30 2 58t8 61 15 60 24 55 34 45 48 30 62 11q11 0 22-10 44-34 86-51t92-17 92 17 86 51q11 10 22 10 73 0 121-54h-125q-29 0-50-21t-21-50v-107z" horiz-adv-x="1142.9" />
33
+ <glyph glyph-name="user-times" unicode="&#xe818;" d="m393 350q-89 0-152 63t-62 151 62 152 152 63 151-63 63-152-63-151-151-63z m601-179l139-138q5-6 5-13 0-8-5-13l-76-76q-5-5-12-5-8 0-13 5l-139 139-139-139q-5-5-13-5-7 0-12 5l-76 76q-5 5-5 13 0 7 5 13l139 138-139 139q-5 5-5 13 0 7 5 13l76 75q5 5 12 5 8 0 13-5l139-139 139 139q5 5 13 5 7 0 12-5l76-75q5-6 5-13 0-8-5-13z m-278 0l-101-101q-21-20-21-50 0-30 21-51l46-46q-11-2-24-2h-488q-67 0-108 39t-41 106q0 30 2 58t8 61 15 60 24 55 34 45 48 30 62 11q11 0 22-10 86-68 178-68t178 68q11 10 22 10 15 0 31-4-15-15-22-28t-8-31q0-30 21-51z" horiz-adv-x="1142.9" />
34
  </font>
35
  </defs>
36
  </svg>
admin/view/right-now.php CHANGED
@@ -136,19 +136,6 @@ else {
136
  echo "<p class='header$highlight_row'>{$results[$i]['country']} $browser_filtered $platform_filtered $browser_type_filtered $ip_address $other_ip_address $notes <span class='plugins'>$plugins</span> $screen_resolution</p>";
137
  }
138
 
139
- // Server Latency and Page Speed
140
- $performance = '';
141
- if ( !$is_dashboard && ( !empty( $results[ $i ][ 'server_latency' ] ) || !empty( $results[ $i ][ 'page_performance' ] ) ) ) {
142
- $performance = "<i class='slimstat-font-gauge spaced' title='".__('Server Latency and Page Speed in milliseconds','wp-slimstat')."'></i> ".__('SL','wp-slimstat').": {$results[$i]['server_latency']} / ".__('PS','wp-slimstat').": {$results[$i]['page_performance']}";
143
- }
144
-
145
- // Time on page
146
- $time_on_page = '';
147
- if ( !$is_dashboard && !empty( $results[ $i ][ 'dt_out' ] ) ) {
148
- $duration = $results[ $i ][ 'dt_out' ] - $results[ $i ][ 'dt' ];
149
- $time_on_page = "<i class='slimstat-font-stopwatch spaced' title='" . __( 'Time spent on this page in seconds', 'wp-slimstat' ) . "'></i> " . date( ( $duration > 3599 ? 'H:i:s' : 'i:s' ), $duration );
150
- }
151
-
152
  // Permalink: find post title, if available
153
  $parse_url = parse_url(get_site_url(empty($results[$i]['blog_id'])?1:$results[$i]['blog_id']));
154
  $base_host = $parse_url['host'];
@@ -164,14 +151,28 @@ else {
164
  $results[$i]['resource'] = __('Local search results page','wp-slimstat');
165
  }
166
 
167
- // Avoid XSS attacks through the referer URL
168
- $results[ $i ] [ 'referer' ] = str_replace( array( '<', '>' ), array( '&lt;', '&gt;' ), urldecode( $results[ $i ] [ 'referer' ] ) );
169
-
170
  // Search Terms, with link to original SERP, and Outbound Resource
171
  if (!empty($results[$i]['searchterms'])){
172
  $results[$i]['searchterms'] = "<i class='spaced slimstat-font-search' title='".__('Search Terms','wp-slimstat')."'></i> ".wp_slimstat_reports::get_search_terms_info($results[$i]['searchterms'], $results[$i]['referer']);
173
  }
174
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175
  if ( !$is_dashboard ) {
176
  $domain = parse_url( $results[ $i ] [ 'referer' ] );
177
  $domain = !empty( $domain[ 'host' ] ) ? $domain[ 'host' ] : '';
@@ -182,12 +183,34 @@ else {
182
  if ($current_user_can_delete){
183
  $delete_row = "<a class='slimstat-delete-entry slimstat-font-cancel' data-pageview-id='{$results[$i]['id']}' title='".htmlentities(__('Delete this pageview','wp-slimstat'), ENT_QUOTES, 'UTF-8')."' href='#'></a>";
184
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
  }
186
  else {
187
  $results[$i]['referer'] = $results[$i][ 'outbound_resource' ] = $results[$i][ 'content_type' ] = '';
188
  }
189
 
190
- echo "<p>{$results[$i]['resource']} <span class='details'>$time_on_page {$results[$i]['searchterms']} {$results[$i]['referer']} {$results[$i]['outbound_resource']} {$results[$i]['content_type']} $performance $date_time {$delete_row}</span></p>";
191
  }
192
 
193
  // Pagination
136
  echo "<p class='header$highlight_row'>{$results[$i]['country']} $browser_filtered $platform_filtered $browser_type_filtered $ip_address $other_ip_address $notes <span class='plugins'>$plugins</span> $screen_resolution</p>";
137
  }
138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  // Permalink: find post title, if available
140
  $parse_url = parse_url(get_site_url(empty($results[$i]['blog_id'])?1:$results[$i]['blog_id']));
141
  $base_host = $parse_url['host'];
151
  $results[$i]['resource'] = __('Local search results page','wp-slimstat');
152
  }
153
 
 
 
 
154
  // Search Terms, with link to original SERP, and Outbound Resource
155
  if (!empty($results[$i]['searchterms'])){
156
  $results[$i]['searchterms'] = "<i class='spaced slimstat-font-search' title='".__('Search Terms','wp-slimstat')."'></i> ".wp_slimstat_reports::get_search_terms_info($results[$i]['searchterms'], $results[$i]['referer']);
157
  }
158
 
159
+ // Server Latency and Page Speed
160
+ $performance = '';
161
+ if ( !$is_dashboard && ( !empty( $results[ $i ][ 'server_latency' ] ) || !empty( $results[ $i ][ 'page_performance' ] ) ) ) {
162
+ $performance = "<i class='slimstat-font-gauge spaced' title='".__('Server Latency and Page Speed in milliseconds','wp-slimstat')."'></i> ".__('SL','wp-slimstat').": {$results[$i]['server_latency']} / ".__('PS','wp-slimstat').": {$results[$i]['page_performance']}";
163
+ }
164
+
165
+ // Time on page
166
+ $time_on_page = '';
167
+ if ( !$is_dashboard && !empty( $results[ $i ][ 'dt_out' ] ) ) {
168
+ $duration = $results[ $i ][ 'dt_out' ] - $results[ $i ][ 'dt' ];
169
+ $time_on_page = "<i class='slimstat-font-stopwatch spaced' title='" . __( 'Time spent on this page in seconds', 'wp-slimstat' ) . "'></i> " . date( ( $duration > 3599 ? 'H:i:s' : 'i:s' ), $duration );
170
+ }
171
+
172
+ // Avoid XSS attacks through the referer URL
173
+ $results[ $i ] [ 'referer' ] = str_replace( array( '<', '>' ), array( '&lt;', '&gt;' ), urldecode( $results[ $i ] [ 'referer' ] ) );
174
+
175
+ $login_logout = '';
176
  if ( !$is_dashboard ) {
177
  $domain = parse_url( $results[ $i ] [ 'referer' ] );
178
  $domain = !empty( $domain[ 'host' ] ) ? $domain[ 'host' ] : '';
183
  if ($current_user_can_delete){
184
  $delete_row = "<a class='slimstat-delete-entry slimstat-font-cancel' data-pageview-id='{$results[$i]['id']}' title='".htmlentities(__('Delete this pageview','wp-slimstat'), ENT_QUOTES, 'UTF-8')."' href='#'></a>";
185
  }
186
+
187
+ // Login / Logout Event
188
+ if ( strpos( $results[ $i ][ 'notes' ], 'loggedin:' ) !== false ) {
189
+ $exploded_notes = explode( ';', $results[ $i ][ 'notes' ] );
190
+ foreach ( $exploded_notes as $a_note ) {
191
+ if ( strpos( $a_note, 'loggedin:' ) === false ) {
192
+ continue;
193
+ }
194
+
195
+ $login_logout = "<i class='slimstat-font-user-plus spaced' title='" . __( 'User Logged In', 'wp-slimstat' ) . "'></i> " . str_replace( 'loggedin:', '', $a_note );
196
+ }
197
+ }
198
+ else if ( strpos( $results[ $i ][ 'notes' ], 'loggedout:' ) !== false ) {
199
+ $exploded_notes = explode( ';', $results[ $i ][ 'notes' ] );
200
+ foreach ( $exploded_notes as $a_note ) {
201
+ if ( strpos( $a_note, 'loggedout:' ) === false ) {
202
+ continue;
203
+ }
204
+
205
+ $login_logout = "<i class='slimstat-font-user-times spaced' title='" . __( 'User Logged Out', 'wp-slimstat' ) . "'></i> " . str_replace( 'loggedout:', '', $a_note );
206
+ }
207
+ }
208
  }
209
  else {
210
  $results[$i]['referer'] = $results[$i][ 'outbound_resource' ] = $results[$i][ 'content_type' ] = '';
211
  }
212
 
213
+ echo "<p>{$results[$i]['resource']} <span class='details'>$time_on_page $login_logout {$results[$i]['searchterms']} {$results[$i]['referer']} {$results[$i]['outbound_resource']} {$results[$i]['content_type']} $performance $date_time {$delete_row}</span></p>";
214
  }
215
 
216
  // Pagination
admin/view/wp-slimstat-db.php CHANGED
@@ -156,12 +156,13 @@ class wp_slimstat_db {
156
  if ($_use_date_filters) {
157
  $time_range_condition = "$dt_with_alias BETWEEN " . self::$filters_normalized[ 'utime' ][ 'start' ] . ' AND ' . self::$filters_normalized[ 'utime' ][ 'end' ];
158
  }
159
-
160
  }
161
  elseif ( $_use_date_filters ) {
162
  $time_range_condition = "$dt_with_alias BETWEEN " . self::$filters_normalized[ 'utime' ][ 'start' ] . ' AND ' . self::$filters_normalized[ 'utime' ][ 'end' ];
163
  }
164
- else {
 
 
165
  $_where = '1=1';
166
  }
167
  }
@@ -291,7 +292,7 @@ class wp_slimstat_db {
291
  break;
292
  }
293
 
294
- if ( !empty( $where[ 1 ] ) ) {
295
  return $GLOBALS[ 'wpdb' ]->prepare( $where[ 0 ], $where[ 1 ] );
296
  }
297
  else {
@@ -540,7 +541,8 @@ class wp_slimstat_db {
540
 
541
  // Swap boundaries if we're going back in time
542
  if ( $filters_normalized[ 'date' ][ 'interval_direction' ] == 'minus' ) {
543
- list( $filters_normalized[ 'utime' ][ 'start' ], $filters_normalized[ 'utime' ][ 'end' ] ) = array( $filters_normalized[ 'utime' ][ 'end' ] + 86400, $filters_normalized[ 'utime' ][ 'start' ] + 86400 );
 
544
  }
545
 
546
  $filters_normalized[ 'utime' ][ 'end' ]--;
156
  if ($_use_date_filters) {
157
  $time_range_condition = "$dt_with_alias BETWEEN " . self::$filters_normalized[ 'utime' ][ 'start' ] . ' AND ' . self::$filters_normalized[ 'utime' ][ 'end' ];
158
  }
 
159
  }
160
  elseif ( $_use_date_filters ) {
161
  $time_range_condition = "$dt_with_alias BETWEEN " . self::$filters_normalized[ 'utime' ][ 'start' ] . ' AND ' . self::$filters_normalized[ 'utime' ][ 'end' ];
162
  }
163
+
164
+ // This could happen if we have custom filters (add-ons, third party tools)
165
+ if ( empty( $_where ) ) {
166
  $_where = '1=1';
167
  }
168
  }
292
  break;
293
  }
294
 
295
+ if ( isset( $where[ 1 ] ) ) {
296
  return $GLOBALS[ 'wpdb' ]->prepare( $where[ 0 ], $where[ 1 ] );
297
  }
298
  else {
541
 
542
  // Swap boundaries if we're going back in time
543
  if ( $filters_normalized[ 'date' ][ 'interval_direction' ] == 'minus' ) {
544
+ $adjustment = ( abs( $filters_normalized[ 'utime' ][ 'start' ] - $filters_normalized[ 'utime' ][ 'end' ] ) < 86400 ) ? 0 : 86400;
545
+ list( $filters_normalized[ 'utime' ][ 'start' ], $filters_normalized[ 'utime' ][ 'end' ] ) = array( $filters_normalized[ 'utime' ][ 'end' ] + $adjustment, $filters_normalized[ 'utime' ][ 'start' ] + $adjustment );
546
  }
547
 
548
  $filters_normalized[ 'utime' ][ 'end' ]--;
admin/view/wp-slimstat-reports.php CHANGED
@@ -941,7 +941,7 @@ class wp_slimstat_reports {
941
 
942
  public static function report_header( $_report_id = '' ) {
943
  $header_classes = !empty( self::$reports_info[ $_report_id ][ 'classes' ] ) ? implode( ' ', self::$reports_info[ $_report_id ][ 'classes' ] ) : '';
944
- $header_buttons = '<div class="slimstat-header-buttons">'.apply_filters('slimstat_report_header_buttons', '<a class="button-ajax refresh slimstat-font-arrows-cw" title="'.__('Refresh','wp-slimstat').'" href="'.self::fs_url().'"></a>', $_report_id).'</div>';
945
  $header_tooltip = !empty( self::$reports_info[ $_report_id ][ 'tooltip' ] ) ? "<i class='slimstat-tooltip-trigger corner'></i><span class='slimstat-tooltip-content'>".self::$reports_info[ $_report_id ][ 'tooltip' ]."</span>" : '';
946
 
947
  echo "<div class='postbox $header_classes' id='$_report_id'>$header_buttons<h3>".self::$reports_info[ $_report_id ][ 'title' ]." $header_tooltip</h3><div class='inside' id='{$_report_id}_inside'>";
@@ -2001,6 +2001,11 @@ class wp_slimstat_reports {
2001
 
2002
  if ( $post_id > 0 ) {
2003
  $resource_title = the_title_attribute( array( 'post' => $post_id, 'echo' => false ) );
 
 
 
 
 
2004
  }
2005
 
2006
  // Is this a category or tag permalink?
@@ -2028,9 +2033,12 @@ class wp_slimstat_reports {
2028
  if ( !empty( $term_names ) ) {
2029
  $resource_title = implode( ',', $term_names );
2030
  }
 
 
 
2031
  }
2032
 
2033
- return htmlentities( $resource_title, ENT_QUOTES, 'UTF-8' );
2034
  }
2035
 
2036
  public static function inline_help( $_text = '', $_echo = true ) {
941
 
942
  public static function report_header( $_report_id = '' ) {
943
  $header_classes = !empty( self::$reports_info[ $_report_id ][ 'classes' ] ) ? implode( ' ', self::$reports_info[ $_report_id ][ 'classes' ] ) : '';
944
+ $header_buttons = '<div class="slimstat-header-buttons">'.apply_filters('slimstat_report_header_buttons', '<a class="button-ajax noslimstat refresh slimstat-font-arrows-cw" title="'.__('Refresh','wp-slimstat').'" href="'.self::fs_url().'"></a>', $_report_id).'</div>';
945
  $header_tooltip = !empty( self::$reports_info[ $_report_id ][ 'tooltip' ] ) ? "<i class='slimstat-tooltip-trigger corner'></i><span class='slimstat-tooltip-content'>".self::$reports_info[ $_report_id ][ 'tooltip' ]."</span>" : '';
946
 
947
  echo "<div class='postbox $header_classes' id='$_report_id'>$header_buttons<h3>".self::$reports_info[ $_report_id ][ 'title' ]." $header_tooltip</h3><div class='inside' id='{$_report_id}_inside'>";
2001
 
2002
  if ( $post_id > 0 ) {
2003
  $resource_title = the_title_attribute( array( 'post' => $post_id, 'echo' => false ) );
2004
+
2005
+ // Encode URLs to avoid XSS attacks
2006
+ if ( $resource_title == $_resource ) {
2007
+ $resource_title = htmlspecialchars( $resource_title, ENT_QUOTES, 'UTF-8' );
2008
+ }
2009
  }
2010
 
2011
  // Is this a category or tag permalink?
2033
  if ( !empty( $term_names ) ) {
2034
  $resource_title = implode( ',', $term_names );
2035
  }
2036
+ else {
2037
+ $resource_title = htmlspecialchars( $resource_title, ENT_QUOTES, 'UTF-8' );
2038
+ }
2039
  }
2040
 
2041
+ return $resource_title;
2042
  }
2043
 
2044
  public static function inline_help( $_text = '', $_echo = true ) {
admin/wp-slimstat-admin.php CHANGED
@@ -11,7 +11,7 @@ class wp_slimstat_admin{
11
  */
12
  public static function init(){
13
  if ((wp_slimstat::$options['enable_ads_network'] == 'yes' || wp_slimstat::$options['enable_ads_network'] == 'no')){
14
- self::$admin_notice = "The WordPress Translation Team contacted us to let us know that Slimstat has been imported into <a href='https://translate.wordpress.org/projects/wp-plugins/wp-slimstat' target='_blank'>translate.wordpress.org</a>. We adapted the source code and moved the localization files within our folder structure, to comply with their new guidelines. It looks like it will now be much easier for our users to contribute, and help Slimstat speak many new languages. <a href='https://translate.wordpress.org/projects/wp-plugins/wp-slimstat/stable' target='_blank'>Go take a look</a>!";
15
  self::$admin_notice .= '<br/><br/><a id="slimstat-hide-admin-notice" href="#" class="button-secondary">Got it, thanks</a>';
16
  }
17
  else {
11
  */
12
  public static function init(){
13
  if ((wp_slimstat::$options['enable_ads_network'] == 'yes' || wp_slimstat::$options['enable_ads_network'] == 'no')){
14
+ self::$admin_notice = "The Javascript Tracker has been partially rewritten to store each link's state as inline <strong>data</strong> attributes. A similar feature had already been implemented a while ago; however the tracker was not using those values to decide what to do; it was using instead internal private Javascript variables. Now the code has been consolidated and optimized (no more closures), allowing third party tools to affect the behavior of the tracker at runtime. Please feel free to contact us if you want to know more about this new feature.";
15
  self::$admin_notice .= '<br/><br/><a id="slimstat-hide-admin-notice" href="#" class="button-secondary">Got it, thanks</a>';
16
  }
17
  else {
languages/wp-slimstat-de_DE.mo CHANGED
Binary file
languages/wp-slimstat-de_DE.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
- "POT-Creation-Date: 2015-10-01 20:57-0500\n"
5
- "PO-Revision-Date: 2015-10-01 20:57-0500\n"
6
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
7
  "Language-Team: TechnoViel <klaus@technoviel.de>\n"
8
  "Language: de_DE\n"
@@ -17,94 +17,17 @@ msgstr ""
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
- #: ../admin/config/addons.php:15
21
- msgid ""
22
- "There was an error retrieving the add-ons list from the server. Please try "
23
- "again later. Error Message:"
24
- msgstr ""
25
- "Es gabe einen Fehler beim Abruf der Add-on-Liste vom Server. Bitte später "
26
- "nochmals versuchen. Fehlermeldung:"
27
-
28
- #: ../admin/config/addons.php:25
29
- msgid ""
30
- "There was an error decoding the add-ons list from the server. Please try "
31
- "again later."
32
- msgstr ""
33
- "Fehler beim Auslesen der Add-on-Liste vom Server. Versuchen Sie es später "
34
- "nochmals."
35
-
36
- #: ../admin/config/addons.php:32 ../admin/config/index.php:255
37
- #: ../admin/wp-slimstat-admin.php:656 ../admin/wp-slimstat-admin.php:670
38
- #: ../wp-slimstat.php:1789
39
- msgid "Add-ons"
40
- msgstr "Add-Ons"
41
-
42
- #: ../admin/config/addons.php:33
43
- #, fuzzy
44
- msgid ""
45
- "Add-ons extend the functionality of Slimstat in many interesting ways. We "
46
- "offer both free and premium (paid) extensions. Each add-on can be installed "
47
- "as a separate plugin, which will receive regular updates via the WordPress "
48
- "Plugins panel. In order to be notified when a new version of a premium add-"
49
- "on is available, please enter the <strong>license key</strong> you received "
50
- "when you purchased it."
51
- msgstr ""
52
- "Add-ons erweitern die Funktionalität von WP SlimStat auf viele interessante "
53
- "Arten. Wir bieten sowohl Gratis-, als auch Premium-(Kauf-)Erweiterungen. "
54
- "Jedes Add-on kann als separates Plugin installiert werden, dass via "
55
- "WordPress regelmäßig upgedated wird. Um auch Aktualisierungen für Premium-"
56
- "Add-ons zu bekommen, muss der beim Kauf erhaltene <strong>Lizenzschlüssel</"
57
- "strong> eingegeben werden."
58
-
59
- #: ../admin/config/addons.php:37
60
- #, php-format
61
- msgid ""
62
- "This list is refreshed once daily: <a href=\"%s&amp;force_refresh=true"
63
- "\">click here</a> to clear the cache."
64
- msgstr ""
65
-
66
- #: ../admin/config/addons.php:46
67
- msgid "Add-on"
68
- msgstr "Add-on"
69
-
70
- #: ../admin/config/addons.php:46
71
- msgid "Description"
72
- msgstr "Beschreibung"
73
-
74
- #: ../admin/config/addons.php:57
75
- #, fuzzy
76
- msgid "Repo Version"
77
- msgstr "CSS Version"
78
-
79
- #: ../admin/config/addons.php:57
80
- #, fuzzy
81
- msgid "Version"
82
- msgstr "CSS Version"
83
-
84
- #: ../admin/config/addons.php:69
85
- #, fuzzy
86
- msgid "Your Version:"
87
- msgstr "Browser-Version"
88
-
89
- #: ../admin/config/addons.php:72
90
- msgid "Installed and Active"
91
- msgstr ""
92
-
93
- #: ../admin/config/index.php:47
94
- msgid "Ignore users (username not found)"
95
- msgstr "Benutzer ignorieren (Benutzername nicht gefunden)"
96
-
97
- #: ../admin/config/index.php:67
98
  msgid ""
99
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
100
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
101
  msgstr ""
102
 
103
- #: ../admin/config/index.php:82
104
  msgid "Read access: username not found"
105
  msgstr "Lesezugriff: Benutzername nicht gefunden"
106
 
107
- #: ../admin/config/index.php:92 ../admin/config/index.php:117
108
  #, fuzzy
109
  msgid ""
110
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
@@ -115,43 +38,34 @@ msgstr ""
115
  "\"http://codex.wordpress.org/Roles_and_Capabilities\" target=\"_new\">hier</"
116
  "a>."
117
 
118
- #: ../admin/config/index.php:107
119
  msgid "Config access: username not found"
120
  msgstr "Konfigurationszugriff: Benutzername nicht gefunden."
121
 
122
- #: ../admin/config/index.php:126
123
- msgid "General"
124
- msgstr "Allgemein"
125
 
126
- #: ../admin/config/index.php:128 ../admin/config/index.php:224
127
  #, fuzzy
128
  msgid "Tracker"
129
  msgstr "Benutzer tracken"
130
 
131
- #: ../admin/config/index.php:129
132
  #, fuzzy
133
- msgid "Track Pageviews"
134
- msgstr "Gesamte Seitenaufrufe"
135
 
136
- #: ../admin/config/index.php:129
137
  msgid "Turn the tracker on or off, while keeping the reports accessible."
138
  msgstr ""
139
 
140
- #: ../admin/config/index.php:129 ../admin/config/index.php:131
141
- msgid "On"
142
- msgstr "An"
143
-
144
- #: ../admin/config/index.php:129 ../admin/config/index.php:131
145
- #: ../admin/view/wp-slimstat-reports.php:1269
146
- msgid "Off"
147
- msgstr "Aus"
148
-
149
- #: ../admin/config/index.php:130
150
  #, fuzzy
151
  msgid "Tracking Mode"
152
  msgstr "Tracking aktiv"
153
 
154
- #: ../admin/config/index.php:130
155
  #, fuzzy
156
  msgid ""
157
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
@@ -166,20 +80,20 @@ msgstr ""
166
  "tzt ignorieren. Ein netter Nebeneffekt: Die meisten Spammer, Suchmaschinen "
167
  "und andere Crawler werden so nicht mehr berücksichtigt."
168
 
169
- #: ../admin/config/index.php:130
170
- msgid "Client"
171
  msgstr ""
172
 
173
- #: ../admin/config/index.php:130
174
  #, fuzzy
175
- msgid "Server"
176
  msgstr "Serverseitig"
177
 
178
- #: ../admin/config/index.php:131
179
  msgid "Stealth Mode"
180
  msgstr ""
181
 
182
- #: ../admin/config/index.php:131
183
  msgid ""
184
  "Do not add the javascript tracking code to your pages, if tracking mode is "
185
  "set to Server. Please note: if enabled, this will prevent the tracker from "
@@ -187,39 +101,47 @@ msgid ""
187
  "etc. This option is ignored is Tracking Mode is set to Client."
188
  msgstr ""
189
 
190
- #: ../admin/config/index.php:132
 
 
 
 
 
 
 
 
191
  #, fuzzy
192
  msgid "Admin Pages"
193
  msgstr "Verfolgen Admin-Seiten"
194
 
195
  # correct, if admin = admin area
196
- #: ../admin/config/index.php:132
197
  #, fuzzy
198
  msgid "Enable this option to track your users' activity within the admin."
199
  msgstr ""
200
  "Aktivieren Sie diese Option, wenn Sie die Aktivitäten Ihrer Benutzer "
201
  "innerhalb des Adminbereiches verfolgen wollen."
202
 
203
- #: ../admin/config/index.php:132
204
  #, fuzzy
205
  msgid "Track"
206
  msgstr "Benutzer tracken"
207
 
208
- #: ../admin/config/index.php:132
209
  #, fuzzy
210
  msgid "Do not track"
211
  msgstr "Bot oder Crawler"
212
 
213
- #: ../admin/config/index.php:134
214
  msgid "WordPress Integration"
215
  msgstr "WordPress-Integration"
216
 
217
- #: ../admin/config/index.php:135
218
  #, fuzzy
219
  msgid "Menu Position"
220
  msgstr "Suchmaschinenrang"
221
 
222
- #: ../admin/config/index.php:135
223
  #, fuzzy
224
  msgid ""
225
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
@@ -228,109 +150,109 @@ msgstr ""
228
  "Das Dashboard-Men&uuml; kann um ein eigenes WP SlimStat Men&uuml; erg&auml;"
229
  "nzt werden."
230
 
231
- #: ../admin/config/index.php:135
232
  msgid "Side Menu"
233
  msgstr "Seitenmenü"
234
 
235
- #: ../admin/config/index.php:135
236
  msgid "Admin Bar"
237
  msgstr "Adminleiste"
238
 
239
- #: ../admin/config/index.php:136
240
  #, fuzzy
241
  msgid "Posts and Pages"
242
  msgstr "Top-Einstiegsseiten"
243
 
244
- #: ../admin/config/index.php:136
245
  #, fuzzy
246
  msgid ""
247
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
248
- "per post in the last 365 days."
249
  msgstr ""
250
  "F&uuml;gt eine Spalte in der Beitrags&uuml;bersicht ein, welche die Anzahl "
251
  "der Zugriffe pro Beitrag anzeigt."
252
 
253
- #: ../admin/config/index.php:137
254
- #, fuzzy
255
- msgid "Dashboard Widgets"
256
- msgstr "&Uuml;bersicht"
257
-
258
- #: ../admin/config/index.php:137
259
- msgid ""
260
- "Choose if you want to have the most important reports on your WordPress "
261
- "Dashboard. Use the Screen Options dropdown to select which ones to display."
262
- msgstr ""
263
-
264
- #: ../admin/config/index.php:138
265
  #, fuzzy
266
  msgid "Report Interval"
267
  msgstr "Eindeutige interne Zugriffe"
268
 
269
- #: ../admin/config/index.php:138
270
  msgid ""
271
  "Enter the time range, in days, that should be used to calculate the value "
272
  "here above."
273
  msgstr ""
274
 
275
- #: ../admin/config/index.php:139
276
  #, fuzzy
277
  msgid "Report Type"
278
  msgstr "Auswertungen"
279
 
280
- #: ../admin/config/index.php:139
281
  msgid ""
282
  "Select what kind of information you would like to see displayed on the Posts "
283
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
284
  "IPs consider only one hit per user in the given time range."
285
  msgstr ""
286
 
287
- #: ../admin/config/index.php:139 ../admin/view/wp-slimstat-reports.php:97
288
- #: ../admin/view/wp-slimstat-reports.php:1124
289
- #: ../admin/view/wp-slimstat-reports.php:1285
290
- #: ../admin/view/wp-slimstat-reports.php:1443
291
  msgid "Pageviews"
292
  msgstr "Seitenaufrufe"
293
 
294
- #: ../admin/config/index.php:139 ../admin/view/wp-slimstat-reports.php:1124
295
- #: ../admin/view/wp-slimstat-reports.php:1129
296
- #: ../admin/view/wp-slimstat-reports.php:1134
297
- #: ../admin/view/wp-slimstat-reports.php:1300
298
- #: ../admin/view/wp-slimstat-reports.php:1345
299
  msgid "Unique IPs"
300
  msgstr "Eindeutige IPs"
301
 
302
- #: ../admin/config/index.php:140
 
 
 
 
 
 
 
 
 
 
 
303
  #, fuzzy
304
  msgid "Hide Add-ons"
305
  msgstr "Add-Ons"
306
 
307
- #: ../admin/config/index.php:140
308
  msgid ""
309
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
310
  "from the list of plugins in WordPress. Please note that you will still "
311
  "receive updates for hidden add-ons."
312
  msgstr ""
313
 
314
- #: ../admin/config/index.php:142
315
  msgid "Database"
316
  msgstr "Datenbank"
317
 
318
- #: ../admin/config/index.php:143
319
  msgid "Retain data for"
320
  msgstr ""
321
 
322
- #: ../admin/config/index.php:143
323
  msgid ""
324
  "Clean-up log entries older than the number of days specified here above. "
325
  "Enter <strong>0</strong> (number zero) if you want to preserve your data "
326
  "regardless of its age."
327
  msgstr ""
328
 
329
- #: ../admin/config/index.php:143
330
  msgid "Next clean-up on"
331
  msgstr "N&auml;chste Bereinigung "
332
 
333
- #: ../admin/config/index.php:143
334
  #, fuzzy, php-format
335
  msgid ""
336
  "Entries logged on or before %s will be archived or deleted according to the "
@@ -339,18 +261,18 @@ msgstr ""
339
  "Eintr&auml;ge, die vor dem %s erfasst wurden werden unwiderruflich gel&ouml;"
340
  "scht."
341
 
342
- #: ../admin/config/index.php:143 ../admin/view/index.php:102
343
  #: ../admin/view/wp-slimstat-db.php:79
344
- #: ../admin/view/wp-slimstat-reports.php:1269
345
  msgid "days"
346
  msgstr "Tage"
347
 
348
- #: ../admin/config/index.php:144
349
  #, fuzzy
350
  msgid "Delete records"
351
  msgstr "Datensätze"
352
 
353
- #: ../admin/config/index.php:144
354
  msgid ""
355
  "If DB space is not an issue, you can decide to archive older records in "
356
  "another table, instead of deleting them. This way performance is preserved, "
@@ -360,257 +282,213 @@ msgid ""
360
  "is uninstalled. Make sure to backup your data before you proceed."
361
  msgstr ""
362
 
363
- #: ../admin/config/index.php:149 ../admin/config/index.php:210
364
- msgid "Reports"
365
- msgstr "Auswertungen"
366
-
367
- #: ../admin/config/index.php:151
368
- msgid "Formats and Conversions"
369
- msgstr ""
370
-
371
- #: ../admin/config/index.php:152
372
- msgid "Number Format"
373
- msgstr "Zahlenformat"
374
-
375
- #: ../admin/config/index.php:152
376
  #, fuzzy
377
- msgid "Choose the number format you want to use for your reports."
378
- msgstr "Das zu verwendente Zahlenformat ausw&auml;hlen (metrisch o. imperial)."
379
-
380
- #: ../admin/config/index.php:153
381
- msgid "Date Format"
382
- msgstr "Datum"
383
 
384
- #: ../admin/config/index.php:153
385
- msgid ""
386
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
387
- "Format</a> to use when displaying a pageview's date."
388
- msgstr ""
389
 
390
- #: ../admin/config/index.php:154
391
  #, fuzzy
392
- msgid "Time Format"
393
- msgstr "Zahlenformat"
394
-
395
- #: ../admin/config/index.php:154
396
  msgid ""
397
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
398
- "Format</a> to use when displaying a pageview's time."
399
  msgstr ""
 
 
400
 
401
- #: ../admin/config/index.php:155
402
- #, fuzzy
403
- msgid "Use Display Name"
404
- msgstr "Spitznamen anzeigen"
405
 
406
- #: ../admin/config/index.php:155
407
- #, fuzzy
408
- msgid ""
409
- "By default, users are listed by their usernames. Use this option to "
410
- "visualize their display names instead."
411
- msgstr ""
412
- "Standardmäßig werden die Benutzernamen aufgelistet. Benutzen Sie diese "
413
- "Option, um dafür stattdessen die Spitznamen anzeigen zu lassen,"
414
 
415
- #: ../admin/config/index.php:156
416
  #, fuzzy
417
- msgid "Use Titles"
418
- msgstr "Titel anzeigen"
419
-
420
- #: ../admin/config/index.php:156
421
- msgid ""
422
- "Slimstat converts your permalinks into post, page and category titles. "
423
- "Disable this feature if you need to see the URL in your reports."
424
  msgstr ""
 
 
425
 
426
- #: ../admin/config/index.php:157
427
- msgid "Convert IP Addresses"
428
- msgstr "IP-Adressen umwandeln"
429
 
430
- #: ../admin/config/index.php:157
431
- msgid "Display provider names instead of IP addresses."
 
 
 
432
  msgstr ""
433
 
434
- #: ../admin/config/index.php:159
435
- msgid "Functionality"
436
- msgstr "Funktionalität"
437
-
438
- #: ../admin/config/index.php:160
439
- msgid "SlimScroll"
440
- msgstr ""
441
 
442
- #: ../admin/config/index.php:160
 
443
  msgid ""
444
- "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
445
- "scrollbar."
 
 
 
446
  msgstr ""
 
 
 
 
 
447
 
448
- #: ../admin/config/index.php:161
449
- msgid "Expand Details"
450
- msgstr "Details anzeigen"
451
-
452
- #: ../admin/config/index.php:161
453
  #, fuzzy
454
- msgid "Expand each row's details by default, insted of on mousehover."
455
- msgstr "Zeigt in allen Zeilen die Details und nicht nur beim Mouse-Over"
456
 
457
- #: ../admin/config/index.php:162 ../admin/config/index.php:167
458
- #, fuzzy
459
- msgid "Rows to Display"
460
- msgstr "keine Daten vorhanden"
461
 
462
- #: ../admin/config/index.php:162
463
- msgid "Specify the number of items in each report."
 
 
464
  msgstr ""
465
 
466
- #: ../admin/config/index.php:163 ../admin/view/wp-slimstat-db.php:101
467
  #, fuzzy
468
- msgid "Max Results"
469
- msgstr "Max. Anzahl Ergebnisse"
470
 
471
- #: ../admin/config/index.php:163
472
  msgid ""
473
- "Decide how many records should be retrieved from the database in total. "
474
- "Depending on your server configuration, you may want to fine tune this value "
475
- "to avoid exceeding your PHP memory limit."
476
  msgstr ""
477
 
478
- #: ../admin/config/index.php:165
479
- msgid "Activity Log"
480
  msgstr ""
481
 
482
- #: ../admin/config/index.php:166
483
- msgid "Live Stream"
484
- msgstr "Livestream"
485
-
486
- #: ../admin/config/index.php:166
487
- #, fuzzy
488
  msgid ""
489
- "Enable the Live view, which refreshes the Activity Log every X seconds. "
490
- "Enter <strong>0</strong> (number zero) to deactivate this feature."
 
 
491
  msgstr ""
492
- "Anzeige der aktuell aktiven Besucher alle X Sekunden aktualisieren. Null "
493
- "deaktiviert diese Funktion."
494
-
495
- #: ../admin/config/index.php:166 ../admin/config/index.php:225
496
- msgid "seconds"
497
- msgstr "Sekunden"
498
 
499
- #: ../admin/config/index.php:167
500
- msgid "Specify the number of items in the Activity Log."
501
  msgstr ""
502
 
503
- #: ../admin/config/index.php:169 ../admin/config/index.php:201
504
- #: ../admin/config/index.php:242
505
- msgid "Miscellaneous"
506
- msgstr "Diverse"
507
-
508
- #: ../admin/config/index.php:170
509
- msgid "Custom CSS"
510
- msgstr "Benutzerdefinierte CSS"
511
-
512
- #: ../admin/config/index.php:170
513
  msgid ""
514
- "Paste here your custom stylesheet to personalize the way your reports look. "
515
- "<a href='https://slimstat.freshdesk.com/support/solutions/"
516
- "articles/5000528528-how-can-i-change-the-colors-associated-to-color-coded-"
517
- "pageviews-known-user-known-visitors-search-e' target='_blank'>Check the FAQ</"
518
- "a> for more information on how to use this setting."
519
  msgstr ""
520
 
521
- #: ../admin/config/index.php:171
522
- #, fuzzy
523
- msgid "Chart Colors"
524
- msgstr "Diagramm-Einstellungen"
525
 
526
- #: ../admin/config/index.php:171
527
  msgid ""
528
- "Customize the look and feel of your charts by assigning personalized colors "
529
- "to each metric. List 4 hex colors separated by commas, strictly in the "
530
- "following order: metric 1 previous, metric 2 previous, metric 1 current, "
531
- "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
532
  msgstr ""
533
 
534
- #: ../admin/config/index.php:172
535
  #, fuzzy
536
- msgid "Show User Agent"
537
- msgstr "Top Browser"
538
 
539
- #: ../admin/config/index.php:172
540
- #, fuzzy
541
  msgid ""
542
- "Choose if you want to see the browser name or a complete user agent string "
543
- "when hovering on browser icons."
 
 
 
 
 
544
  msgstr ""
545
- "Wählen Sie, ob der Browsername oder ein kompletter USER AGENT STRING "
546
- "angezeigt werden soll, wenn Sie auf die Browsersymbole zeigen."
547
-
548
- #: ../admin/config/index.php:173
549
- msgid "Enable SOV"
550
- msgstr "SOV aktivieren"
551
 
552
- #: ../admin/config/index.php:173
553
- msgid ""
554
- "In linguistic typology, a subject-object-verb (SOV) language is one in which "
555
- "the subject, object, and verb of a sentence appear in that order, like in "
556
- "Japanese."
557
- msgstr ""
558
 
559
- #: ../admin/config/index.php:174
560
- msgid "Social Analytics"
561
- msgstr ""
 
562
 
563
- #: ../admin/config/index.php:174
564
  msgid ""
565
- "Thanks to a <a href='http://getsocial.io/enterprise' "
566
- "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
567
- "set of analytics for social media where you can identify top performing "
568
- "posts. Track social sharing to understand which of your posts are generating "
569
- "more engagement. When this option is enabled, Slimstat sends a list of all "
570
- "your posts's URLs to their service for analysis once daily."
571
  msgstr ""
572
 
573
- #: ../admin/config/index.php:179
574
  msgid "Filters"
575
  msgstr "Filter"
576
 
577
- #: ../admin/config/index.php:181
578
  #, fuzzy
579
- msgid "Visitors and Known Users"
580
- msgstr "Bekannte Benutzer"
581
 
582
- #: ../admin/config/index.php:182
583
  #, fuzzy
584
  msgid "Track Registered Users"
585
  msgstr "Benutzer tracken"
586
 
587
- #: ../admin/config/index.php:182
588
  #, fuzzy
589
  msgid "Enable this option to track logged in users."
590
  msgstr "Ja falls eingeloggte Benutzer getrackt werden sollen."
591
 
592
- #: ../admin/config/index.php:183
593
  #, fuzzy
594
  msgid "Blacklist by Username"
595
  msgstr "IP-Adresse"
596
 
597
- #: ../admin/config/index.php:183
598
  #, fuzzy
599
  msgid ""
600
  "List all the usernames you don't want to track, separated by commas. Please "
601
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
602
- "sensitive."
 
 
 
603
  msgstr ""
604
- "Wordpress-Benutzer, die nicht getrackt werden sollen, getrennt durch "
605
- "Beistriche. Leerzeichen werden <em>nicht</em> ignoriert und Gro&szlig;-/ "
606
- "Kleinschreibung wird beachtet."
 
 
 
 
607
 
608
- #: ../admin/config/index.php:184
609
  #, fuzzy
610
  msgid "Blacklist by IP Address"
611
  msgstr "IP-Adresse"
612
 
613
- #: ../admin/config/index.php:184
614
  #, fuzzy
615
  msgid ""
616
  "List all the IP addresses you don't want to track, separated by commas. Each "
@@ -625,12 +503,12 @@ msgstr ""
625
  "(z.B. <em>192.168.0.0/24</em>) definiert werden. Bei inkorrektem Format kann "
626
  "WP SlimStat evtl. nicht die Pageviews korrekt tracken."
627
 
628
- #: ../admin/config/index.php:185
629
  #, fuzzy
630
  msgid "Blacklist by Capability"
631
  msgstr "Benutzer nach Browserf&auml;higkeiten"
632
 
633
- #: ../admin/config/index.php:185
634
  #, fuzzy
635
  msgid ""
636
  "Users having at least one of the <a href='http://codex.wordpress.org/"
@@ -641,15 +519,15 @@ msgstr ""
641
  "wordpress.org/Roles_and_Capabilities' target='_new'>CAPABILITIES</a> haben, "
642
  "werden nicht verfolgt. Bitte Groß-/Kleinschreibung beachten."
643
 
644
- #: ../admin/config/index.php:187
645
  msgid "Profiling"
646
  msgstr ""
647
 
648
- #: ../admin/config/index.php:188
649
  msgid "Ignore Spammers"
650
  msgstr "Spammer ignorieren"
651
 
652
- #: ../admin/config/index.php:188
653
  #, fuzzy
654
  msgid ""
655
  "Enable this option if you don't want to track visits from users identified "
@@ -662,12 +540,12 @@ msgstr ""
662
  "Kommentare später von Ihnen als Spam markiert werden, werden ebenso aus der "
663
  "Datenbank entfernt."
664
 
665
- #: ../admin/config/index.php:189
666
  #, fuzzy
667
  msgid "Ignore Bots"
668
  msgstr "Ignoriere Benutzer"
669
 
670
- #: ../admin/config/index.php:189
671
  msgid ""
672
  "Turn on this feature if you want to have the accuracy level of server-side "
673
  "tracking, but not the inconvenience of getting your database clogged with "
@@ -675,11 +553,11 @@ msgid ""
675
  "note that in Client mode, bots are ignored regardless of this setting."
676
  msgstr ""
677
 
678
- #: ../admin/config/index.php:190
679
  msgid "Permalinks"
680
  msgstr "Permalinks"
681
 
682
- #: ../admin/config/index.php:190
683
  #, fuzzy
684
  msgid ""
685
  "List all the URLs on your website that you don't want to track, separated by "
@@ -698,11 +576,11 @@ msgstr ""
698
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
699
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
700
 
701
- #: ../admin/config/index.php:191
702
  msgid "Countries"
703
  msgstr "L&auml;nder"
704
 
705
- #: ../admin/config/index.php:191
706
  msgid ""
707
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
708
  "track, separated by commas."
@@ -710,11 +588,11 @@ msgstr ""
710
  "Liste der L&auml;dercodes (z.B.: <code>en-us, de, it, es</code>), die nicht "
711
  "mit erfasst werden sollen, getrennt durch Kommata."
712
 
713
- #: ../admin/config/index.php:192
714
  msgid "User Agents"
715
  msgstr "User Agents"
716
 
717
- #: ../admin/config/index.php:192
718
  #, fuzzy
719
  msgid ""
720
  "Browsers (user agents) you don't want to track, separated by commas. You can "
@@ -732,11 +610,11 @@ msgstr ""
732
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
733
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
734
 
735
- #: ../admin/config/index.php:193
736
  msgid "Referring Sites"
737
  msgstr "Verweisende Webseiten"
738
 
739
- #: ../admin/config/index.php:193
740
  #, fuzzy
741
  msgid ""
742
  "Referring URLs that you don't want to track, separated by commas: "
@@ -754,90 +632,249 @@ msgstr ""
754
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
755
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
756
 
757
- #: ../admin/config/index.php:195
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
758
  #, fuzzy
759
- msgid "Internal and Outbound Links"
760
- msgstr "Letzte ausgehende Links"
761
 
762
- #: ../admin/config/index.php:196
763
- msgid "Track Outbound Clicks"
764
- msgstr "Letzte ausgehende Links"
 
765
 
766
- #: ../admin/config/index.php:196
767
- msgid ""
768
- "Track when your visitors click on link to external websites. This option "
769
- "required Spy Mode to be enabled."
770
  msgstr ""
771
 
772
- #: ../admin/config/index.php:197
773
  #, fuzzy
774
- msgid "Track Coordinates"
775
- msgstr "Tracking aktiv"
776
 
777
- #: ../admin/config/index.php:197
778
  msgid ""
779
- "Collect mouse coordinates and other information for clicks on internal "
780
- "links. Strongly recommended if you're using the heatmap add-on. By default, "
781
- "this information is only collected for external links."
782
  msgstr ""
783
 
784
- #: ../admin/config/index.php:198
785
- msgid "No Callback"
 
 
 
 
786
  msgstr ""
787
 
788
- #: ../admin/config/index.php:198
 
 
 
 
 
 
 
 
 
789
  msgid ""
790
- "Track the event but do not invoke the callback function on links marked with "
791
- "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
792
- "attribute contains one of these strings (separated by comma). Useful to "
793
- "prevent conflicts with lightbox and similar libraries."
794
  msgstr ""
 
 
795
 
796
- #: ../admin/config/index.php:199
797
- msgid "Do Not Track"
798
  msgstr ""
799
 
800
- #: ../admin/config/index.php:199
 
 
 
 
801
  msgid ""
802
- "Do not track links marked with one of these class names, <em>rel</em> "
803
- "attributes or whose <em>href</em> attribute contains one of these strings "
804
- "(separated by comma)."
 
 
805
  msgstr ""
806
 
807
- #: ../admin/config/index.php:202
808
- msgid "Enable Privacy Mode"
 
 
 
 
 
 
 
 
 
809
  msgstr ""
810
 
811
- #: ../admin/config/index.php:202
812
  #, fuzzy
813
- msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
 
 
 
 
 
 
 
814
  msgstr ""
815
- "Diese Option maskiert das letzte Byte der IP-Adressen Ihrere Besucher um die "
816
- "Europ&auml;ischen Datenschutzgesetze zur erf&uuml;llen."
817
 
818
- #: ../admin/config/index.php:203
819
- msgid "Ignore Prefetch Requests"
 
 
 
 
 
 
 
820
  msgstr ""
821
 
822
- #: ../admin/config/index.php:203
823
- #, fuzzy
 
 
 
824
  msgid ""
825
- "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
826
- "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
827
- "target='_blank'>Link Prefetching functionality</a>."
 
 
 
828
  msgstr ""
829
- "Verhindert, dass WP SlimStat Pageviews trackt, die durch die <a "
830
- "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' target='_blank'>"
831
 
832
- #: ../admin/config/index.php:208
833
- msgid "Permissions"
834
- msgstr "Berechtigungen"
835
 
836
- #: ../admin/config/index.php:211
837
  msgid "Restrict Authors"
838
  msgstr "Autoren einschränken"
839
 
840
- #: ../admin/config/index.php:211
841
  #, fuzzy
842
  msgid ""
843
  "Enable this option if you want your authors to only see stats related to "
@@ -846,12 +883,12 @@ msgstr ""
846
  "Aktivieren Sie diese Option, wenn Ihre Autoren nur Statistiken zu Ihrem "
847
  "eigenen Inhalt ansehen können."
848
 
849
- #: ../admin/config/index.php:212 ../admin/config/index.php:216
850
  #, fuzzy
851
  msgid "Capability"
852
  msgstr "Benutzer nach Browserf&auml;higkeiten"
853
 
854
- #: ../admin/config/index.php:212
855
  #, fuzzy
856
  msgid ""
857
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -868,11 +905,11 @@ msgstr ""
868
  "Berichte, Außer eine 'Lesezugriffs'-Whitelist wurde weiter unten festgelegt, "
869
  "welche Vorrang über die CAPABILITY hat."
870
 
871
- #: ../admin/config/index.php:213 ../admin/config/index.php:217
872
  msgid "Whitelist"
873
  msgstr "Whitelist"
874
 
875
- #: ../admin/config/index.php:213
876
  #, fuzzy
877
  msgid ""
878
  "List all the users who should have access to the reports, separated by "
@@ -884,13 +921,13 @@ msgstr ""
884
  "angeführt werden. Wenn dieses Feld leer ist der Zugriff <strong>allen Ihren "
885
  "Benutzern</strong> erlaubt. Bitte Groß-/Kleinschreibung beachten."
886
 
887
- #: ../admin/config/index.php:215 ../admin/config/index.php:268
888
- #: ../admin/wp-slimstat-admin.php:697 ../admin/wp-slimstat-admin.php:700
889
- #: ../wp-slimstat.php:1792
890
  msgid "Settings"
891
  msgstr "Einstellungen"
892
 
893
- #: ../admin/config/index.php:216
894
  #, fuzzy
895
  msgid ""
896
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -905,7 +942,7 @@ msgstr ""
905
  "Berichte, Außer eine 'Lesezugriffs'-Whitelist wurde weiter unten festgelegt, "
906
  "welche Vorrang über die CAPABILITY hat."
907
 
908
- #: ../admin/config/index.php:217
909
  #, fuzzy
910
  msgid ""
911
  "List all the users who can edit these options, separated by commas. Please "
@@ -919,124 +956,16 @@ msgstr ""
919
  "Benutzer bekommen automatisch auch 'Lesezugriff' auf die WP SlimStat-"
920
  "Berichte. Bitte Groß-/Kleinschreibung beachten."
921
 
922
- #: ../admin/config/index.php:222
923
- msgid "Advanced"
924
- msgstr "Erweitert"
925
-
926
- #: ../admin/config/index.php:225
927
- msgid "Session Duration"
928
- msgstr "Besuchsdauer"
929
-
930
- #: ../admin/config/index.php:225
931
- #, fuzzy
932
- msgid ""
933
- "How many seconds should a human session last? Google Analytics sets it to "
934
- "1800 seconds."
935
- msgstr ""
936
- "Definiert, wie viele Sekunden ein Besuch dauern soll. Bei Google Analytics "
937
- "wird hier 1.800 Sekunden vorgeschlagen."
938
-
939
- #: ../admin/config/index.php:226
940
- msgid "Extend Session"
941
- msgstr "Sitzung erweitern"
942
-
943
- #: ../admin/config/index.php:226
944
- #, fuzzy
945
- msgid "Extend the duration of a session each time the user visits a new page."
946
- msgstr ""
947
- "Verlängert die Dauer einer Sitzung jedes Mal um die hier eingegebene Zahl an "
948
- "Sekunden, wenn ein Benutzer eine neue Seite aufruft."
949
-
950
- #: ../admin/config/index.php:227
951
- msgid "Enable CDN"
952
- msgstr "CDN aktivieren"
953
-
954
- #: ../admin/config/index.php:227
955
- msgid ""
956
- "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
957
- "by serving our tracking code from their fast and reliable network (free "
958
- "service)."
959
- msgstr ""
960
-
961
- #: ../admin/config/index.php:228
962
- msgid "Extensions to Track"
963
- msgstr "Zu verfolgende Erweiterungen"
964
-
965
- #: ../admin/config/index.php:228
966
- #, fuzzy
967
- msgid ""
968
- "List all the file extensions that you want to be treated as Downloads. "
969
- "Please note that links pointing to external resources (i.e. PDFs on a "
970
- "different website) are considered Downloads and not Outbound Links (and "
971
- "tracked as such), if their extension matches one of the ones listed here "
972
- "below."
973
- msgstr ""
974
- "Die folgenden (durch Beistriche getrennten) Dateitypen werden als "
975
- "'Downloads' von WP SlimStat erkannt. Bitte beachten Sie, dass Links auf "
976
- "externe Resourcen (zB PDFs von einer anderen Webseite) als 'Downloads' und "
977
- "nicht als 'Ausgehende Links' gewertet werden, wenn der Typ in der folgenden "
978
- "Liste enthalten ist."
979
-
980
- #: ../admin/config/index.php:230
981
- msgid "Pages not belonging to this site"
982
- msgstr ""
983
-
984
- #: ../admin/config/index.php:231
985
- msgid ""
986
- "Add the following code to all the non-WP pages you want to track, right "
987
- "before the closing BODY tag"
988
- msgstr ""
989
-
990
- #: ../admin/config/index.php:241
991
- #, fuzzy
992
- msgid "Allow External Domains"
993
- msgstr "Gesamte Seitenaufrufe"
994
-
995
- #: ../admin/config/index.php:241
996
- msgid ""
997
- "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
998
- "header is present on the requested resource, when using the external "
999
- "tracking code here above, list the domains (complete with scheme, separated "
1000
- "by commas) you would like to allow. For example: <code>http://my.domain.ext</"
1001
- "code> (no trailing slash). Please see <a href='http://www.w3.org/TR/cors/"
1002
- "#security' target='_blank'>this W3 resource</a> for more information on the "
1003
- "security implications of allowing CORS requests."
1004
- msgstr ""
1005
-
1006
- #: ../admin/config/index.php:243
1007
- msgid "Debug Mode"
1008
- msgstr ""
1009
-
1010
- #: ../admin/config/index.php:243
1011
- msgid "Display the SQL queries used to retrieve the data."
1012
- msgstr ""
1013
-
1014
- #: ../admin/config/index.php:244
1015
- msgid "IP Lookup"
1016
- msgstr "IP Suche"
1017
-
1018
- #: ../admin/config/index.php:244
1019
- msgid "Customize the Geolocation service to be used in the reports."
1020
- msgstr ""
1021
-
1022
- #: ../admin/config/index.php:245
1023
- #, fuzzy
1024
- msgid "Enable UAN"
1025
- msgstr "ADN aktivieren"
1026
-
1027
- #: ../admin/config/index.php:245
1028
- msgid ""
1029
- "Send anonymous data about user agents to our server for analysis. This "
1030
- "allows us to contribute to the <a href='http://browscap.org/' "
1031
- "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
1032
- "Slimstat's browser detection functionality. It also enables our transparent "
1033
- "ads network. No worries, your site will not be affected in any way."
1034
- msgstr ""
1035
-
1036
- #: ../admin/config/index.php:250
1037
  msgid "Maintenance"
1038
  msgstr "Wartung"
1039
 
 
 
 
 
 
 
1040
  #: ../admin/config/maintenance.php:16
1041
  #, fuzzy
1042
  msgid ""
@@ -1047,23 +976,23 @@ msgstr ""
1047
  "watch?v=1mgvE55HpcU\" target=\"_blank\">wahnsinnige Geschwindigkeit</a> "
1048
  "optimiert."
1049
 
1050
- #: ../admin/config/maintenance.php:23
1051
  msgid "Indexing has been disabled. Enjoy the extra database space!"
1052
  msgstr ""
1053
 
1054
- #: ../admin/config/maintenance.php:35
1055
  msgid "records deleted from your database."
1056
  msgstr "Datensätze von Ihrer Datenbank gelöscht."
1057
 
1058
- #: ../admin/config/maintenance.php:40
1059
  msgid "The geolocation database has been uninstalled from your server."
1060
  msgstr ""
1061
 
1062
- #: ../admin/config/maintenance.php:50
1063
  msgid "The geolocation database has been installed on your server."
1064
  msgstr ""
1065
 
1066
- #: ../admin/config/maintenance.php:158
1067
  msgid ""
1068
  "Your data was successfully imported. You may now drop the old tables: "
1069
  "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
@@ -1072,140 +1001,164 @@ msgid ""
1072
  "delete the old tables."
1073
  msgstr ""
1074
 
1075
- #: ../admin/config/maintenance.php:169
1076
  msgid "Your reports were successfully restored to their default arrangement."
1077
  msgstr ""
1078
 
1079
- #: ../admin/config/maintenance.php:179
1080
  #, fuzzy
1081
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1082
  msgstr ""
1083
  "Ihre WP SlimStat Datenbank wurden erfolgreich ins InnoDB-Format konvertiert."
1084
 
1085
- #: ../admin/config/maintenance.php:185
1086
  #, fuzzy
1087
  msgid "All the archived records were successfully deleted."
1088
  msgstr "Alle Aufzeichnungen wurden erfolgreich gelöscht."
1089
 
1090
- #: ../admin/config/maintenance.php:193
1091
  msgid "All the records were successfully deleted."
1092
  msgstr "Alle Aufzeichnungen wurden erfolgreich gelöscht."
1093
 
1094
- #: ../admin/config/maintenance.php:215
1095
  msgid "Debugging"
1096
  msgstr ""
1097
 
1098
- #: ../admin/config/maintenance.php:218
1099
- msgid "Tracker Error Code"
1100
- msgstr ""
 
1101
 
1102
- #: ../admin/config/maintenance.php:220
1103
  #, fuzzy
1104
  msgid "recorded on"
1105
  msgstr "Datensätze"
1106
 
1107
- #: ../admin/config/maintenance.php:220
1108
  msgid "No Errors so far"
1109
  msgstr ""
1110
 
1111
- #: ../admin/config/maintenance.php:221
1112
  msgid ""
1113
  "The information here above is useful to troubleshoot issues with the "
1114
- "tracker. Please include this code when sending a support request."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1115
  msgstr ""
1116
 
1117
- #: ../admin/config/maintenance.php:225
1118
  msgid "Layout"
1119
  msgstr ""
1120
 
1121
- #: ../admin/config/maintenance.php:228
1122
  #, fuzzy
1123
  msgid ""
1124
  "Are you sure you want to restore the default arrangement of your reports?"
1125
  msgstr "Datenbanktabellen wirklich zurücksetzen?"
1126
 
1127
- #: ../admin/config/maintenance.php:228
1128
  msgid "No Panic Button"
1129
  msgstr ""
1130
 
1131
- #: ../admin/config/maintenance.php:230
1132
  msgid ""
1133
  "Reset the default arrangement of your reports. Helpful when, for some "
1134
  "reason, reports disappear from your panels or something doesn't look right "
1135
  "in your views."
1136
  msgstr ""
1137
 
1138
- #: ../admin/config/maintenance.php:234
1139
  msgid "Data Maintenance"
1140
  msgstr "Datenwartung"
1141
 
1142
- #: ../admin/config/maintenance.php:237
1143
  #, fuzzy
1144
  msgid "Delete pageviews where"
1145
  msgstr "Lösche Seitenaufrufe, wo"
1146
 
1147
- #: ../admin/config/maintenance.php:251 ../admin/view/index.php:16
1148
  msgid "equals"
1149
  msgstr "entspricht"
1150
 
1151
- #: ../admin/config/maintenance.php:252 ../admin/view/index.php:17
1152
  msgid "is not equal to"
1153
  msgstr "ist ungleich zu"
1154
 
1155
- #: ../admin/config/maintenance.php:253 ../admin/view/index.php:18
1156
  msgid "contains"
1157
  msgstr "enth&auml;lt"
1158
 
1159
- #: ../admin/config/maintenance.php:254 ../admin/view/index.php:19
1160
  msgid "is included in"
1161
  msgstr ""
1162
 
1163
- #: ../admin/config/maintenance.php:255 ../admin/view/index.php:20
1164
  msgid "does not contain"
1165
  msgstr "enth&auml;lt nicht"
1166
 
1167
- #: ../admin/config/maintenance.php:256 ../admin/view/index.php:21
1168
  msgid "starts with"
1169
  msgstr "beginnt mit"
1170
 
1171
- #: ../admin/config/maintenance.php:257 ../admin/view/index.php:22
1172
  msgid "ends with"
1173
  msgstr "endet mit"
1174
 
1175
- #: ../admin/config/maintenance.php:258 ../admin/view/index.php:23
1176
  msgid "sounds like"
1177
  msgstr "&auml;hnelt"
1178
 
1179
- #: ../admin/config/maintenance.php:259 ../admin/view/index.php:24
1180
  msgid "is greater than"
1181
  msgstr "ist gr&ouml;sser als"
1182
 
1183
- #: ../admin/config/maintenance.php:260 ../admin/view/index.php:25
1184
  msgid "is less than"
1185
  msgstr "ist kleiner als"
1186
 
1187
- #: ../admin/config/maintenance.php:261 ../admin/view/index.php:27
1188
  msgid "matches"
1189
  msgstr "entspricht"
1190
 
1191
- #: ../admin/config/maintenance.php:262 ../admin/view/index.php:28
1192
  msgid "does not match"
1193
  msgstr "entspricht nicht"
1194
 
1195
- #: ../admin/config/maintenance.php:263 ../admin/view/index.php:29
1196
  msgid "is empty"
1197
  msgstr "ist leer"
1198
 
1199
- #: ../admin/config/maintenance.php:264 ../admin/view/index.php:30
1200
  msgid "is not empty"
1201
  msgstr "ist nicht leer"
1202
 
1203
- #: ../admin/config/maintenance.php:267 ../admin/view/index.php:42
1204
  #: ../admin/view/index.php:105
1205
  msgid "Apply"
1206
  msgstr "Anwenden"
1207
 
1208
- #: ../admin/config/maintenance.php:268
1209
  #, fuzzy
1210
  msgid ""
1211
  "Are you sure you want to PERMANENTLY delete these records from your database?"
@@ -1213,7 +1166,7 @@ msgstr ""
1213
  "Sind Sie wirklich sicher, dass Sie diese Datensätze UNWIDERRUFLICH aus Ihrer "
1214
  "Datenbank löschen möchten?"
1215
 
1216
- #: ../admin/config/maintenance.php:275
1217
  #, fuzzy
1218
  msgid ""
1219
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
@@ -1222,18 +1175,18 @@ msgstr ""
1222
  "Sind Sie wirklich sicher, dass Sie diese Datensätze UNWIDERRUFLICH aus Ihrer "
1223
  "Datenbank löschen möchten?"
1224
 
1225
- #: ../admin/config/maintenance.php:275
1226
  #, fuzzy
1227
  msgid "Delete All Records"
1228
  msgstr "Alle Seitenaufrufe löschen"
1229
 
1230
- #: ../admin/config/maintenance.php:278
1231
  msgid ""
1232
  "Erase all the information collected so far by Slimstat, including the "
1233
  "archive. This operation <strong>does not</strong> reset your settings."
1234
  msgstr ""
1235
 
1236
- #: ../admin/config/maintenance.php:284
1237
  #, fuzzy
1238
  msgid ""
1239
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
@@ -1242,20 +1195,20 @@ msgstr ""
1242
  "Sind Sie wirklich sicher, dass Sie diese Datensätze UNWIDERRUFLICH aus Ihrer "
1243
  "Datenbank löschen möchten?"
1244
 
1245
- #: ../admin/config/maintenance.php:284
1246
  #, fuzzy
1247
  msgid "Delete Archive"
1248
  msgstr "Lösche Seitenaufrufe, wo"
1249
 
1250
- #: ../admin/config/maintenance.php:287
1251
  msgid "Erase all the archived records. This operation cannot be undone."
1252
  msgstr ""
1253
 
1254
- #: ../admin/config/maintenance.php:293
1255
  msgid "Improve Performance"
1256
  msgstr "Leistung erhöhen"
1257
 
1258
- #: ../admin/config/maintenance.php:297
1259
  #, fuzzy
1260
  msgid ""
1261
  "Please note that you will need about 30% more DB space to store the extra "
@@ -1265,55 +1218,55 @@ msgstr ""
1265
  "verbessern. Die Datenbank benötigt dafür ca. 30% mehr Speicherplatz, damit "
1266
  "die notwendigen zusätzlichne Informationen gespeichert werden können."
1267
 
1268
- #: ../admin/config/maintenance.php:301
1269
  msgid "Save DB Space"
1270
  msgstr "Datenbank-Speicherplatz sparen"
1271
 
1272
- #: ../admin/config/maintenance.php:304
1273
  msgid ""
1274
  "Please note that by removing table indexes, Slimstat's performance will be "
1275
  "affected."
1276
  msgstr ""
1277
 
1278
- #: ../admin/config/maintenance.php:311
1279
  msgid ""
1280
  "Hold on tight, we are about to import all your old data. Are you sure you "
1281
  "want to proceed?"
1282
  msgstr ""
1283
 
1284
- #: ../admin/config/maintenance.php:311
1285
  msgid "Import old data"
1286
  msgstr ""
1287
 
1288
- #: ../admin/config/maintenance.php:314
1289
  msgid ""
1290
  "Import all the records from the old table structure. No data will be deleted "
1291
  "from your database."
1292
  msgstr ""
1293
 
1294
- #: ../admin/config/maintenance.php:318
1295
  msgid "MaxMind IP to Country"
1296
  msgstr ""
1297
 
1298
- #: ../admin/config/maintenance.php:324
1299
  msgid ""
1300
  "Do you want to download and install the geolocation database from MaxMind's "
1301
  "server?"
1302
  msgstr ""
1303
 
1304
- #: ../admin/config/maintenance.php:324
1305
  msgid "Install GeoLite DB"
1306
  msgstr ""
1307
 
1308
- #: ../admin/config/maintenance.php:327
1309
  msgid "Do you want to uninstall the geolocation database?"
1310
  msgstr ""
1311
 
1312
- #: ../admin/config/maintenance.php:327
1313
  msgid "Uninstall GeoLite DB"
1314
  msgstr ""
1315
 
1316
- #: ../admin/config/maintenance.php:331
1317
  msgid ""
1318
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1319
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
@@ -1323,45 +1276,112 @@ msgid ""
1323
  "enable this functionality."
1324
  msgstr ""
1325
 
1326
- #: ../admin/config/maintenance.php:336
1327
  msgid "Import and Export"
1328
  msgstr ""
1329
 
1330
- #: ../admin/config/maintenance.php:340
1331
  msgid ""
1332
  "Here below you can find the current configuration string for Slimstat. You "
1333
  "can update your settings by pasting a new string inside the text area and "
1334
  "clicking the Import button."
1335
  msgstr ""
1336
 
1337
- #: ../admin/config/maintenance.php:345
1338
  msgid "Import"
1339
  msgstr "Import"
1340
 
1341
- #: ../admin/config/maintenance.php:346
1342
  msgid "Are you sure you want to OVERWRITE your current settings?"
1343
  msgstr "Derzeitige Einstellungen wirklich zurücksetzen?"
1344
 
1345
- #: ../admin/config/maintenance.php:351
1346
  msgid "Database Information"
1347
  msgstr "Datenbankinformation"
1348
 
1349
  # depends on context:
1350
  # Engine = Maschine, Motor, Triebwerk or Antrieb
1351
  # Search engine = Suchmaschine
1352
- #: ../admin/config/maintenance.php:354
1353
  #, fuzzy
1354
  msgid "Engine"
1355
  msgstr "Suchmaschinen"
1356
 
1357
- #: ../admin/config/maintenance.php:358
1358
  msgid "switch to InnoDB"
1359
  msgstr "zu InnoDB wechseln"
1360
 
1361
- #: ../admin/config/maintenance.php:369
1362
  msgid "records"
1363
  msgstr "Datensätze"
1364
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1365
  #: ../admin/view/index.php:26
1366
  msgid "is between (x,y)"
1367
  msgstr ""
@@ -1370,11 +1390,11 @@ msgstr ""
1370
  msgid "Load"
1371
  msgstr ""
1372
 
1373
- #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1307
1374
  msgid "Today"
1375
  msgstr "heute"
1376
 
1377
- #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1310
1378
  msgid "Yesterday"
1379
  msgstr "Gestern"
1380
 
@@ -1441,6 +1461,31 @@ msgid ""
1441
  "country of origin."
1442
  msgstr ""
1443
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1444
  #: ../admin/view/right-now.php:12
1445
  msgid "Human"
1446
  msgstr ""
@@ -1457,8 +1502,8 @@ msgstr "Mobiles Gerät"
1457
  msgid "Syndication Reader"
1458
  msgstr ""
1459
 
1460
- #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:939
1461
- #: ../admin/view/wp-slimstat-reports.php:1616
1462
  msgid "No data to display"
1463
  msgstr "keine Daten vorhanden"
1464
 
@@ -1467,70 +1512,82 @@ msgid "Date and Time"
1467
  msgstr "Datum und Uhrzeit"
1468
 
1469
  # Unknown
1470
- #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:990
1471
- #: ../admin/view/wp-slimstat-reports.php:1730
1472
  msgid "c-"
1473
  msgstr "Unknown"
1474
 
1475
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1476
- #: ../admin/wp-slimstat-admin.php:1009 ../admin/wp-slimstat-admin.php:1049
1477
  msgid "Originating IP"
1478
  msgstr "Ursprüngliche IP"
1479
 
1480
- #: ../admin/view/right-now.php:142
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1481
  msgid "Server Latency and Page Speed in milliseconds"
1482
  msgstr ""
1483
 
1484
- #: ../admin/view/right-now.php:142
1485
  msgid "SL"
1486
  msgstr ""
1487
 
1488
- #: ../admin/view/right-now.php:142
1489
  msgid "PS"
1490
  msgstr ""
1491
 
1492
- #: ../admin/view/right-now.php:148
1493
  #, fuzzy
1494
  msgid "Time spent on this page in seconds"
1495
  msgstr "Seite in neuem Fenster &ouml;ffnen"
1496
 
1497
- #: ../admin/view/right-now.php:160 ../admin/view/wp-slimstat-reports.php:1087
1498
- #: ../admin/view/wp-slimstat-reports.php:1091
1499
- msgid "Open this URL in a new window"
1500
- msgstr "Diese URL in einem neuen Fenster &ouml;ffnen"
1501
-
1502
- #: ../admin/view/right-now.php:163
1503
- msgid "Local search results page"
1504
- msgstr "lokale Suchergebnisse"
1505
-
1506
- #: ../admin/view/right-now.php:171 ../admin/view/wp-slimstat-db.php:42
1507
- #: ../admin/wp-slimstat-admin.php:1012 ../admin/wp-slimstat-admin.php:1028
1508
- msgid "Search Terms"
1509
- msgstr "Suchbegriffe"
1510
-
1511
- #: ../admin/view/right-now.php:177
1512
  msgid "Open this referrer in a new window"
1513
  msgstr "Verweisende Seite in einem neuen Fenster &ouml;ffnen"
1514
 
1515
- #: ../admin/view/right-now.php:178
1516
  msgid "Open this outbound link in a new window"
1517
  msgstr "Wegführender Link in neuem Fenster &ouml;ffnen"
1518
 
1519
- #: ../admin/view/right-now.php:179
1520
  #, fuzzy
1521
  msgid "Content Type"
1522
  msgstr "Inhalt"
1523
 
1524
- #: ../admin/view/right-now.php:182
1525
  #, fuzzy
1526
  msgid "Delete this pageview"
1527
  msgstr "Lösche Seitenaufrufe, wo"
1528
 
1529
- #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:1025
 
 
 
 
 
 
 
 
 
 
1530
  msgid "Browser"
1531
  msgstr "Browser"
1532
 
1533
- #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:1026
1534
  msgid "Country Code"
1535
  msgstr "L&auml;nder-Code"
1536
 
@@ -1538,29 +1595,29 @@ msgstr "L&auml;nder-Code"
1538
  msgid "IP Address"
1539
  msgstr "IP-Adresse"
1540
 
1541
- #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:1029
1542
  msgid "Language Code"
1543
  msgstr "Sprach-Kodierung"
1544
 
1545
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1546
- #: ../admin/wp-slimstat-admin.php:1030
1547
  msgid "Operating System"
1548
  msgstr "Betriebssystem"
1549
 
1550
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1551
- #: ../admin/wp-slimstat-admin.php:1031
1552
  msgid "Permalink"
1553
  msgstr "Permalink"
1554
 
1555
- #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:1032
1556
  msgid "Referer"
1557
  msgstr "Herkunft"
1558
 
1559
- #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:1033
1560
  msgid "Visitor's Name"
1561
  msgstr "Besuchername"
1562
 
1563
- #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:1015
1564
  msgid "Outbound Link"
1565
  msgstr "Ausgehender Link"
1566
 
@@ -1573,19 +1630,19 @@ msgid "-- Advanced filters --"
1573
  msgstr "-- Erweiterte Filter --"
1574
 
1575
  #: ../admin/view/wp-slimstat-db.php:52
1576
- #: ../admin/view/wp-slimstat-reports.php:336
1577
  msgid "Browser Capabilities"
1578
  msgstr "Browser-F&auml;higkeiten"
1579
 
1580
- #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:1044
1581
  msgid "Browser Version"
1582
  msgstr "Browser-Version"
1583
 
1584
- #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:1045
1585
  msgid "Browser Type"
1586
  msgstr "Browser-Typ"
1587
 
1588
- #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:1014
1589
  msgid "User Agent"
1590
  msgstr "User Agent"
1591
 
@@ -1599,15 +1656,15 @@ msgstr "Diagrammanmerkungen"
1599
  msgid "Server Latency"
1600
  msgstr "Latenz"
1601
 
1602
- #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:1047
1603
  msgid "Post Author"
1604
  msgstr "Autor der Seiten"
1605
 
1606
- #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:1048
1607
  msgid "Post Category ID"
1608
  msgstr "Kategorie-ID der Seite"
1609
 
1610
- #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:1050
1611
  msgid "Resource Content Type"
1612
  msgstr "Inhalt der Ressource"
1613
 
@@ -1628,7 +1685,7 @@ msgstr "Bildschirm-Aufl&ouml;sung"
1628
  msgid "Viewport Size"
1629
  msgstr ""
1630
 
1631
- #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:1052
1632
  msgid "Visit ID"
1633
  msgstr "Besuchs-ID"
1634
 
@@ -1674,7 +1731,7 @@ msgid "Event ID"
1674
  msgstr ""
1675
 
1676
  #: ../admin/view/wp-slimstat-db.php:96
1677
- #: ../admin/view/wp-slimstat-reports.php:1630
1678
  msgid "Type"
1679
  msgstr ""
1680
 
@@ -1697,144 +1754,153 @@ msgstr "Macromedia Director"
1697
  msgid "Offset"
1698
  msgstr ""
1699
 
1700
- #: ../admin/view/wp-slimstat-reports.php:20 ../admin/wp-slimstat-admin.php:649
1701
- #: ../wp-slimstat.php:1783
1702
  msgid "Access Log"
1703
  msgstr ""
1704
 
1705
- #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:650
1706
- #: ../admin/wp-slimstat-admin.php:665 ../wp-slimstat.php:1784
1707
  msgid "Overview"
1708
  msgstr "&Uuml;bersicht"
1709
 
1710
- #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:651
1711
- #: ../admin/wp-slimstat-admin.php:666 ../wp-slimstat.php:1785
1712
  msgid "Audience"
1713
  msgstr ""
1714
 
1715
- #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:652
1716
- #: ../admin/wp-slimstat-admin.php:667 ../wp-slimstat.php:1786
1717
  msgid "Site Analysis"
1718
  msgstr ""
1719
 
1720
- #: ../admin/view/wp-slimstat-reports.php:24
1721
- #: ../admin/view/wp-slimstat-reports.php:461
1722
- #: ../admin/wp-slimstat-admin.php:653 ../admin/wp-slimstat-admin.php:668
1723
- #: ../wp-slimstat.php:1787
1724
  msgid "Traffic Sources"
1725
  msgstr "Traffic-Ursprung"
1726
 
1727
- #: ../admin/view/wp-slimstat-reports.php:25 ../admin/wp-slimstat-admin.php:654
1728
- #: ../admin/wp-slimstat-admin.php:669 ../wp-slimstat.php:1788
1729
- msgid "Map Overlay"
1730
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
1731
 
1732
- #: ../admin/view/wp-slimstat-reports.php:74
1733
  msgid "Chart controls"
1734
  msgstr "Diagramm-Einstellungen"
1735
 
1736
- #: ../admin/view/wp-slimstat-reports.php:74
1737
  msgid "Use your mouse wheel to zoom in and out"
1738
  msgstr "Verwende das Mausrad zum Zoomen"
1739
 
1740
- #: ../admin/view/wp-slimstat-reports.php:74
1741
  msgid "While zooming in, drag the chart to move to a different area"
1742
  msgstr ""
1743
  "W&auml;hrend des Zooms das Diagramm zu einer anderen Position verschieben."
1744
 
1745
- #: ../admin/view/wp-slimstat-reports.php:74
1746
- msgid "Double click on an empty region to reset the zoom level"
1747
- msgstr ""
1748
- "Doppelklick auf einen freien Bereich, um den Zoomlevel zur&uuml;ckzusetzen"
1749
-
1750
- #: ../admin/view/wp-slimstat-reports.php:77
1751
- msgid ""
1752
- "Social Sharing Analytics <a href=\"http://getsocial.io/?utm_source=slimstat"
1753
- "\">powered by GetSocial</a>"
1754
  msgstr ""
1755
 
1756
- #: ../admin/view/wp-slimstat-reports.php:84
1757
  #, fuzzy
1758
  msgid "Visitors Activity"
1759
  msgstr "Besucher"
1760
 
1761
- #: ../admin/view/wp-slimstat-reports.php:93
1762
  msgid "Color codes"
1763
  msgstr "Farbcode"
1764
 
1765
- #: ../admin/view/wp-slimstat-reports.php:93
1766
  #, fuzzy
1767
  msgid "From search result page"
1768
  msgstr "Von einer Suchergebnisseite"
1769
 
1770
- #: ../admin/view/wp-slimstat-reports.php:93
1771
- #: ../admin/wp-slimstat-admin.php:1007
1772
  msgid "Known Visitor"
1773
  msgstr "Bekannte Besucher"
1774
 
1775
- #: ../admin/view/wp-slimstat-reports.php:93
1776
  msgid "Known Users"
1777
  msgstr "Bekannte Benutzer"
1778
 
1779
- #: ../admin/view/wp-slimstat-reports.php:93
1780
  msgid "Other Humans"
1781
  msgstr "Andere echte Besucher"
1782
 
1783
- #: ../admin/view/wp-slimstat-reports.php:93
1784
  msgid "Bot or Crawler"
1785
  msgstr "Bot oder Crawler"
1786
 
1787
- #: ../admin/view/wp-slimstat-reports.php:107
1788
  #, fuzzy
1789
  msgid "About Slimstat"
1790
  msgstr "&Uuml;ber WP SlimStat"
1791
 
1792
- #: ../admin/view/wp-slimstat-reports.php:117
1793
  #, fuzzy
1794
  msgid "Traffic at a Glance"
1795
  msgstr "Auf einen Blick"
1796
 
1797
- #: ../admin/view/wp-slimstat-reports.php:127
1798
  #, fuzzy
1799
  msgid "Currently Online"
1800
  msgstr "Aktuelle Filter:"
1801
 
1802
- #: ../admin/view/wp-slimstat-reports.php:140
1803
  msgid "Recent Search Terms"
1804
  msgstr "Letzte interne Suchbegriffe"
1805
 
1806
- #: ../admin/view/wp-slimstat-reports.php:150
1807
  #, fuzzy
1808
  msgid "Keywords used by your visitors to find your website on a search engine."
1809
  msgstr "Begriffe welche von Besuchern in Suchmaschinen verwendet wurden"
1810
 
1811
- #: ../admin/view/wp-slimstat-reports.php:153
1812
- msgid "Top Pages"
 
1813
  msgstr "Top-Seiten"
1814
 
1815
- #: ../admin/view/wp-slimstat-reports.php:164
1816
  msgid ""
1817
- "Here a \"page\" is not just a WordPress page type, but any web page on your "
1818
- "website, including posts, products, categories, and so on."
 
 
 
1819
  msgstr ""
1820
 
1821
- #: ../admin/view/wp-slimstat-reports.php:167
1822
  msgid "Top Traffic Sources"
1823
  msgstr "Top-Traffic-Ursprung"
1824
 
1825
- #: ../admin/view/wp-slimstat-reports.php:179
1826
  msgid "Top Known Visitors"
1827
  msgstr "Top bekannte Besucher"
1828
 
1829
- #: ../admin/view/wp-slimstat-reports.php:190
1830
  msgid "Top Search Terms"
1831
  msgstr "Top-Suchbegriffe"
1832
 
1833
- #: ../admin/view/wp-slimstat-reports.php:201
1834
  msgid "Top Countries"
1835
  msgstr "Top-L&auml;nder"
1836
 
1837
- #: ../admin/view/wp-slimstat-reports.php:210
1838
  #, fuzzy
1839
  msgid ""
1840
  "You can configure Slimstat to ignore a specific Country by setting the "
@@ -1843,28 +1909,28 @@ msgstr ""
1843
  "Um ein spezifisches Land generell zu ignorieren kann ein entsprechender "
1844
  "Filter unter 'Einstellungen > SlimStat > Filter' gesetzt werden."
1845
 
1846
- #: ../admin/view/wp-slimstat-reports.php:213
1847
  msgid "Rankings"
1848
  msgstr ""
1849
 
1850
- #: ../admin/view/wp-slimstat-reports.php:217
1851
  msgid ""
1852
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1853
  "measures your site's rankings. Values are updated every 12 hours. Filters "
1854
  "set above don't apply to this report."
1855
  msgstr ""
1856
 
1857
- #: ../admin/view/wp-slimstat-reports.php:220
1858
  #, fuzzy
1859
  msgid "Top Language Families"
1860
  msgstr "Top-Sprachen"
1861
 
1862
- #: ../admin/view/wp-slimstat-reports.php:233
1863
  #, fuzzy
1864
  msgid "Users Currently Online"
1865
  msgstr "Aktuelle Filter:"
1866
 
1867
- #: ../admin/view/wp-slimstat-reports.php:244
1868
  #, fuzzy
1869
  msgid ""
1870
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
@@ -1875,35 +1941,45 @@ msgstr ""
1875
  "einen Cookie zu. WP SlimStat erweitert diese Information um die Erkennung "
1876
  "zur&uuml;kkehrender Besucher."
1877
 
1878
- #: ../admin/view/wp-slimstat-reports.php:248
 
 
 
 
 
1879
  msgid "Human Visits"
1880
  msgstr "Echte Besuche"
1881
 
1882
- #: ../admin/view/wp-slimstat-reports.php:258
 
 
 
 
 
1883
  #, fuzzy
1884
  msgid "Audience Overview"
1885
  msgstr "&Uuml;bersicht"
1886
 
1887
- #: ../admin/view/wp-slimstat-reports.php:265
1888
  msgid ""
1889
  "Where not otherwise specified, the metrics in this report are referred to "
1890
  "human visitors."
1891
  msgstr ""
1892
 
1893
- #: ../admin/view/wp-slimstat-reports.php:268
1894
  msgid "Top Languages"
1895
  msgstr "Top-Sprachen"
1896
 
1897
- #: ../admin/view/wp-slimstat-reports.php:279
1898
  msgid "Top Browsers"
1899
  msgstr "Top-Browser"
1900
 
1901
- #: ../admin/view/wp-slimstat-reports.php:290
1902
  msgid "Top Service Providers"
1903
  msgstr "Top-Internetprovider"
1904
 
1905
- #: ../admin/view/wp-slimstat-reports.php:299
1906
- #: ../admin/view/wp-slimstat-reports.php:311
1907
  #, fuzzy
1908
  msgid ""
1909
  "Internet Service Provider: a company which provides other companies or "
@@ -1917,24 +1993,24 @@ msgstr ""
1917
  "Adressen generell zu ignorieren kann ein entsprechender Filter unter "
1918
  "'Einstellungen > SlimStat > Filter' gesetzt werden."
1919
 
1920
- #: ../admin/view/wp-slimstat-reports.php:302
1921
  msgid "Top Operating Systems"
1922
  msgstr "Top-Betriebssysteme"
1923
 
1924
- #: ../admin/view/wp-slimstat-reports.php:314
1925
  msgid "Top Screen Resolutions"
1926
  msgstr "Top-Bildschirmaufl&ouml;sungen"
1927
 
1928
- #: ../admin/view/wp-slimstat-reports.php:325
1929
  #, fuzzy
1930
  msgid "Top Viewport Sizes"
1931
  msgstr "Top-Kategorien"
1932
 
1933
- #: ../admin/view/wp-slimstat-reports.php:345
1934
  msgid "Visit Duration"
1935
  msgstr "Besuchsdauer"
1936
 
1937
- #: ../admin/view/wp-slimstat-reports.php:352
1938
  #, fuzzy
1939
  msgid ""
1940
  "All values represent the percentages of pageviews within the corresponding "
@@ -1942,32 +2018,32 @@ msgid ""
1942
  msgstr ""
1943
  "Weltkarte - Werte repr&auml;sentieren die Zugriffe in Prozent aus diesem Land"
1944
 
1945
- #: ../admin/view/wp-slimstat-reports.php:355
1946
  msgid "Recent Countries"
1947
  msgstr "Letzte L&auml;nder"
1948
 
1949
- #: ../admin/view/wp-slimstat-reports.php:366
1950
  #, fuzzy
1951
  msgid "Recent Viewport Sizes"
1952
  msgstr "Letzte Kategorien"
1953
 
1954
- #: ../admin/view/wp-slimstat-reports.php:377
1955
  msgid "Recent Operating Systems"
1956
  msgstr "Letzte Betriebssysteme"
1957
 
1958
- #: ../admin/view/wp-slimstat-reports.php:388
1959
  msgid "Recent Browsers"
1960
  msgstr "Letzte Browser"
1961
 
1962
- #: ../admin/view/wp-slimstat-reports.php:399
1963
  msgid "Recent Languages"
1964
  msgstr "Letzte Sprachen"
1965
 
1966
- #: ../admin/view/wp-slimstat-reports.php:410
1967
  msgid "Top Browser Families"
1968
  msgstr "Top-Browserfamilien"
1969
 
1970
- #: ../admin/view/wp-slimstat-reports.php:419
1971
  msgid ""
1972
  "This report shows you what user agent families (no version considered) are "
1973
  "popular among your visitors."
@@ -1975,11 +2051,11 @@ msgstr ""
1975
  "Dieser Bericht zeigt, welche User Agent-Familien (unabhängig Ihrer Version) "
1976
  "bei Ihren Besuchern populär sind."
1977
 
1978
- #: ../admin/view/wp-slimstat-reports.php:422
1979
  msgid "Top OS Families"
1980
  msgstr "Top-Betriebssysteme"
1981
 
1982
- #: ../admin/view/wp-slimstat-reports.php:433
1983
  msgid ""
1984
  "This report shows you what operating system families (no version considered) "
1985
  "are popular among your visitors."
@@ -1987,69 +2063,83 @@ msgstr ""
1987
  "Dieser Bericht zeigt, welche Betriebssystemfamilien (ohne Berücksichtigung "
1988
  "der Version) hauptsächlich von Ihren Benutzer verwendet werden."
1989
 
1990
- #: ../admin/view/wp-slimstat-reports.php:436
1991
  msgid "Recent Users"
1992
  msgstr "Letzte Benutzer"
1993
 
1994
- #: ../admin/view/wp-slimstat-reports.php:448
1995
  msgid "Top Users"
1996
  msgstr "Top-Benutzer"
1997
 
1998
- #: ../admin/view/wp-slimstat-reports.php:471
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1999
  #, fuzzy
2000
  msgid "Traffic Summary"
2001
  msgstr "Traffic-Ursprung"
2002
 
2003
- #: ../admin/view/wp-slimstat-reports.php:480
2004
  msgid "Top Referring Search Engines"
2005
  msgstr "Top verweisende Suchmaschinen"
2006
 
2007
- #: ../admin/view/wp-slimstat-reports.php:507
2008
  msgid "Recent Outbound Links"
2009
  msgstr "Letzte ausgehende Links"
2010
 
2011
- #: ../admin/view/wp-slimstat-reports.php:519
2012
  msgid "Recent Posts"
2013
  msgstr "Letzte Artikel"
2014
 
2015
- #: ../admin/view/wp-slimstat-reports.php:547
2016
  msgid "Recent Feeds"
2017
  msgstr "Letzte Feeds"
2018
 
2019
- #: ../admin/view/wp-slimstat-reports.php:559
2020
  msgid "Recent Pages Not Found"
2021
  msgstr ""
2022
 
2023
- #: ../admin/view/wp-slimstat-reports.php:571
2024
  msgid "Recent Internal Searches"
2025
  msgstr "Letzte interne Suchbegriffe"
2026
 
2027
- #: ../admin/view/wp-slimstat-reports.php:581
2028
  #, fuzzy
2029
  msgid "Searches performed using WordPress' built-in search functionality."
2030
  msgstr ""
2031
  "Suchen welche mit der WordPress eigenen Such-Funktion ausgef&uuml;hrt wurden."
2032
 
2033
- #: ../admin/view/wp-slimstat-reports.php:584
2034
  msgid "Top Categories"
2035
  msgstr "Top-Kategorien"
2036
 
2037
- #: ../admin/view/wp-slimstat-reports.php:597
2038
  #, fuzzy
2039
  msgid "Top Downloads"
2040
  msgstr "Letzte Downloads"
2041
 
2042
- #: ../admin/view/wp-slimstat-reports.php:608
2043
  msgid ""
2044
  "You can configure Slimstat to track specific file extensions as downloads."
2045
  msgstr ""
2046
 
2047
- #: ../admin/view/wp-slimstat-reports.php:611
2048
  msgid "Recent Events"
2049
  msgstr "Letzte Ereignisse"
2050
 
2051
- #: ../admin/view/wp-slimstat-reports.php:620
2052
- #: ../admin/view/wp-slimstat-reports.php:644
2053
  #, fuzzy
2054
  msgid ""
2055
  "This report lists any <em>event</em> occurred on your website. Please refer "
@@ -2059,51 +2149,51 @@ msgstr ""
2059
  "stattgefunden hat. Bitte schlagen Sie in der FAQ für weitere Informationen "
2060
  "zur Verwendung dieser Funktionalit&auml;t nach."
2061
 
2062
- #: ../admin/view/wp-slimstat-reports.php:623
2063
  msgid "Top Posts"
2064
  msgstr "Top-Artikel"
2065
 
2066
- #: ../admin/view/wp-slimstat-reports.php:635
2067
  #, fuzzy
2068
  msgid "Top Events"
2069
  msgstr "Top-Seiten"
2070
 
2071
- #: ../admin/view/wp-slimstat-reports.php:647
2072
  msgid "Top Internal Searches"
2073
  msgstr "Top interne Suchbegriffe"
2074
 
2075
- #: ../admin/view/wp-slimstat-reports.php:659
2076
  msgid "Recent Categories"
2077
  msgstr "Letzte Kategorien"
2078
 
2079
- #: ../admin/view/wp-slimstat-reports.php:671
2080
  #, fuzzy
2081
  msgid "Top Pages Not Found"
2082
  msgstr "Top-Seiten"
2083
 
2084
- #: ../admin/view/wp-slimstat-reports.php:683
2085
  msgid "Top Authors"
2086
  msgstr "Top-Autoren"
2087
 
2088
- #: ../admin/view/wp-slimstat-reports.php:694
2089
  #, fuzzy
2090
  msgid "Top Tags"
2091
  msgstr "Top Seiten"
2092
 
2093
- #: ../admin/view/wp-slimstat-reports.php:706
2094
  msgid "Recent Downloads"
2095
  msgstr "Letzte Downloads"
2096
 
2097
- #: ../admin/view/wp-slimstat-reports.php:718
2098
  #, fuzzy
2099
  msgid "Top Outbound Links"
2100
  msgstr "Ausgehender Link"
2101
 
2102
- #: ../admin/view/wp-slimstat-reports.php:729
2103
  msgid "Your Website"
2104
  msgstr "Ihre Webseite"
2105
 
2106
- #: ../admin/view/wp-slimstat-reports.php:736
2107
  msgid ""
2108
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2109
  "this report is not affected by the filters set here above."
@@ -2111,133 +2201,129 @@ msgstr ""
2111
  "Ihr Inhalt auf einen Blick: Posts, Kommentare, Pingbacks, usw. Dieser "
2112
  "Bericht wird nicht durch die oben eingestellten Filter beeinflusst."
2113
 
2114
- #: ../admin/view/wp-slimstat-reports.php:739
2115
  #, fuzzy
2116
  msgid "Top Bounce Pages"
2117
  msgstr "Absprungrate"
2118
 
2119
- #: ../admin/view/wp-slimstat-reports.php:752
2120
  #, fuzzy
2121
  msgid "Top Exit Pages"
2122
  msgstr "Top-Seiten"
2123
 
2124
- #: ../admin/view/wp-slimstat-reports.php:765
2125
  #, fuzzy
2126
  msgid "Top Entry Pages"
2127
  msgstr "Top-Seiten"
2128
 
2129
- #: ../admin/view/wp-slimstat-reports.php:779
 
 
 
 
 
 
 
 
 
 
2130
  msgid "World Map"
2131
  msgstr "Weltkarte"
2132
 
2133
- #: ../admin/view/wp-slimstat-reports.php:852
2134
  msgid "Refresh"
2135
  msgstr "Anzeige aktualisieren"
2136
 
2137
- #: ../admin/view/wp-slimstat-reports.php:889
2138
  #, fuzzy, php-format
2139
  msgid "Results %s - %s of %s"
2140
  msgstr "Ergbnisse filtern wo %s ist gleich %s"
2141
 
2142
- #: ../admin/view/wp-slimstat-reports.php:891
2143
  msgid "Refresh in"
2144
  msgstr "Anzeige aktualisieren in"
2145
 
2146
- #: ../admin/view/wp-slimstat-reports.php:984
2147
  msgid "Category ID"
2148
  msgstr "Kategorie-ID"
2149
 
2150
- #: ../admin/view/wp-slimstat-reports.php:989
2151
- #: ../admin/view/wp-slimstat-reports.php:1004
2152
- #: ../admin/view/wp-slimstat-reports.php:1010
2153
  #, fuzzy
2154
  msgid "Code"
2155
  msgstr "OS-Code"
2156
 
2157
- #: ../admin/view/wp-slimstat-reports.php:1005
2158
- #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1424
2159
  msgid "l-"
2160
  msgstr "l-"
2161
 
2162
- #: ../admin/view/wp-slimstat-reports.php:1022
2163
  msgid "URL"
2164
  msgstr ""
2165
 
2166
- #: ../admin/view/wp-slimstat-reports.php:1035
2167
  msgid "Referrer"
2168
  msgstr "Verweis"
2169
 
2170
- #: ../admin/view/wp-slimstat-reports.php:1076
2171
- #: ../admin/view/wp-slimstat-reports.php:1325
2172
- #: ../admin/view/wp-slimstat-reports.php:1381
2173
- #: ../admin/view/wp-slimstat-reports.php:1387
2174
- #: ../admin/view/wp-slimstat-reports.php:1393
2175
- #: ../admin/view/wp-slimstat-reports.php:1399
2176
- #: ../admin/view/wp-slimstat-reports.php:1405
2177
- #: ../admin/view/wp-slimstat-reports.php:1411
2178
- #: ../admin/view/wp-slimstat-reports.php:1417
2179
- #: ../admin/view/wp-slimstat-reports.php:1637
2180
  msgid "Hits"
2181
  msgstr "Zugriffe"
2182
 
2183
- #: ../admin/view/wp-slimstat-reports.php:1129
2184
- #: ../admin/view/wp-slimstat-reports.php:1341
2185
- msgid "Visits"
2186
- msgstr "Besuche"
2187
-
2188
- #: ../admin/view/wp-slimstat-reports.php:1134
2189
- msgid "Domains"
2190
- msgstr "Dom&auml;nen"
2191
-
2192
- #: ../admin/view/wp-slimstat-reports.php:1252
2193
  #, fuzzy
2194
  msgid "Dataset Size"
2195
  msgstr "Datenbankgr&ouml;&szlig;e"
2196
 
2197
- #: ../admin/view/wp-slimstat-reports.php:1254
2198
  msgid "Total number of records stored in the database."
2199
  msgstr ""
2200
 
2201
- #: ../admin/view/wp-slimstat-reports.php:1256
2202
  msgid "DB Size"
2203
  msgstr "Datenbankgr&ouml;&szlig;e"
2204
 
2205
- #: ../admin/view/wp-slimstat-reports.php:1259
2206
  #, fuzzy
2207
  msgid "Tracking Enabled"
2208
  msgstr "Tracking aktiv"
2209
 
2210
- #: ../admin/view/wp-slimstat-reports.php:1262
2211
  msgid "Javascript Mode"
2212
  msgstr "Tracking per JavaScript"
2213
 
2214
- #: ../admin/view/wp-slimstat-reports.php:1265
2215
  msgid "Tracking Browser Caps"
2216
  msgstr ""
2217
 
2218
- #: ../admin/view/wp-slimstat-reports.php:1268
2219
  msgid "Auto purge"
2220
  msgstr "autom. Datenbank-Reorg."
2221
 
2222
- #: ../admin/view/wp-slimstat-reports.php:1271
2223
  msgid "Oldest pageview"
2224
  msgstr "&Auml;ltester Seitenaufruf"
2225
 
2226
- #: ../admin/view/wp-slimstat-reports.php:1272
2227
  msgid "No visits"
2228
  msgstr "Keine Besuche"
2229
 
2230
- #: ../admin/view/wp-slimstat-reports.php:1274
2231
- #, fuzzy
2232
- msgid "Geolocation"
2233
- msgstr "Macromedia Director"
2234
-
2235
- #: ../admin/view/wp-slimstat-reports.php:1276
2236
  msgid "Date when the MaxMind Geolocation database was last updated."
2237
  msgstr ""
2238
 
2239
- #: ../admin/view/wp-slimstat-reports.php:1287
2240
- #: ../admin/view/wp-slimstat-reports.php:1445
2241
  #, fuzzy
2242
  msgid ""
2243
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
@@ -2247,17 +2333,17 @@ msgstr ""
2247
  "jedesmal einen 'Seitenaufruf' auf, wenn der Tracking-Code ausgef&uuml;hrt "
2248
  "wird."
2249
 
2250
- #: ../admin/view/wp-slimstat-reports.php:1289
2251
  #, fuzzy
2252
  msgid "Days in Range"
2253
  msgstr "Datum und Uhrzeit"
2254
 
2255
- #: ../admin/view/wp-slimstat-reports.php:1292
2256
  #, fuzzy
2257
  msgid "Average Daily Pageviews"
2258
  msgstr "Durchschnittl. Seitenaufrufe"
2259
 
2260
- #: ../admin/view/wp-slimstat-reports.php:1294
2261
  #, fuzzy
2262
  msgid ""
2263
  "How many pages have been visited on average every day during the current "
@@ -2266,11 +2352,11 @@ msgstr ""
2266
  "Wieviele Seiten wurden w&auml;hrend der aktuellen Periode durchschnittlich "
2267
  "besucht?"
2268
 
2269
- #: ../admin/view/wp-slimstat-reports.php:1296
2270
  msgid "From Search Results"
2271
  msgstr "Von Suchergebnissen"
2272
 
2273
- #: ../admin/view/wp-slimstat-reports.php:1298
2274
  msgid ""
2275
  "Visitors who landed on your site after searching for a keyword on Google, "
2276
  "Yahoo, etc."
@@ -2278,7 +2364,7 @@ msgstr ""
2278
  "Besucher, welche nach einer Suche nach einem Suchbegriff auf einer "
2279
  "Suchmaschine auf die Website kamen."
2280
 
2281
- #: ../admin/view/wp-slimstat-reports.php:1302
2282
  msgid ""
2283
  "Used to differentiate between multiple requests to download a file from one "
2284
  "internet address (IP) and requests originating from many distinct addresses"
@@ -2286,11 +2372,11 @@ msgstr ""
2286
  "Benutzt um bei mehreren Downloadanfragen zu unterscheiden, ob sie von einer "
2287
  "oder mehreren verschiedenen Internet-Adressen (IP) stammen"
2288
 
2289
- #: ../admin/view/wp-slimstat-reports.php:1304
2290
  msgid "Last 30 minutes"
2291
  msgstr "Letzte 30 Minuten"
2292
 
2293
- #: ../admin/view/wp-slimstat-reports.php:1343
2294
  msgid ""
2295
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2296
  "multiple times if they perform multiple visits."
@@ -2298,15 +2384,15 @@ msgstr ""
2298
  "Ein Besuch ist eine Session von max. 30 Minuten. Zur&;kkehrende Besucher "
2299
  "werden bei mehrfachen Besuchen auch mehrfach gez&auml;hlt."
2300
 
2301
- #: ../admin/view/wp-slimstat-reports.php:1347
2302
  msgid "It includes only traffic generated by human visitors."
2303
  msgstr ""
2304
 
2305
- #: ../admin/view/wp-slimstat-reports.php:1349
2306
  msgid "Bounce rate"
2307
  msgstr "Absprungrate"
2308
 
2309
- #: ../admin/view/wp-slimstat-reports.php:1351
2310
  msgid ""
2311
  "Percentage of single-page visits, i.e. visits in which the person left your "
2312
  "site from the entrance page."
@@ -2314,77 +2400,78 @@ msgstr ""
2314
  "Prozentsatz von Besuchen einzelner Seiten, d.h. Besuche bei welchen der "
2315
  "Besucher die Website auf der aufgerufenen Seite wieder verlassen hat."
2316
 
2317
- #: ../admin/view/wp-slimstat-reports.php:1353
2318
  msgid "Known visitors"
2319
  msgstr "Bekannte Besucher"
2320
 
2321
- #: ../admin/view/wp-slimstat-reports.php:1355
2322
  msgid "Visitors who had previously left a comment on your blog."
2323
  msgstr ""
2324
  "Besucher, welche fr&uuml;her bereits einen Kommentar hinterlassen haben."
2325
 
2326
- #: ../admin/view/wp-slimstat-reports.php:1357
2327
  msgid "New visitors"
2328
  msgstr "Neue Besucher"
2329
 
2330
- #: ../admin/view/wp-slimstat-reports.php:1359
2331
  msgid "Human users who visited your site only once."
2332
  msgstr "Echte Besucher, welche die Wesite nur einmal besucht haben."
2333
 
2334
- #: ../admin/view/wp-slimstat-reports.php:1361
2335
  msgid "Bots"
2336
  msgstr "Bots"
2337
 
2338
- #: ../admin/view/wp-slimstat-reports.php:1364
2339
- msgid "Pages per visit"
 
2340
  msgstr "Seiten pro Besuch"
2341
 
2342
- #: ../admin/view/wp-slimstat-reports.php:1367
2343
  msgid "Longest visit"
2344
  msgstr "L&auml;ngster Besuch"
2345
 
2346
- #: ../admin/view/wp-slimstat-reports.php:1368
2347
  msgid "hits"
2348
  msgstr "Zugriff"
2349
 
2350
- #: ../admin/view/wp-slimstat-reports.php:1379
2351
  msgid "0 - 30 seconds"
2352
  msgstr "0-30 Sekunden"
2353
 
2354
- #: ../admin/view/wp-slimstat-reports.php:1385
2355
  msgid "31 - 60 seconds"
2356
  msgstr "31-60 Sekunden"
2357
 
2358
- #: ../admin/view/wp-slimstat-reports.php:1391
2359
  msgid "1 - 3 minutes"
2360
  msgstr "1-3 Minuten"
2361
 
2362
- #: ../admin/view/wp-slimstat-reports.php:1397
2363
  msgid "3 - 5 minutes"
2364
  msgstr "3-5 Minuten"
2365
 
2366
- #: ../admin/view/wp-slimstat-reports.php:1403
2367
  msgid "5 - 7 minutes"
2368
  msgstr "5-7 Minuten"
2369
 
2370
- #: ../admin/view/wp-slimstat-reports.php:1409
2371
  msgid "7 - 10 minutes"
2372
  msgstr "7-10 Minuten"
2373
 
2374
- #: ../admin/view/wp-slimstat-reports.php:1415
2375
  msgid "More than 10 minutes"
2376
  msgstr "Mehr als 10 Minuten"
2377
 
2378
- #: ../admin/view/wp-slimstat-reports.php:1427
2379
  #, fuzzy
2380
  msgid "Average visit duration"
2381
  msgstr "Besuchsdauer"
2382
 
2383
- #: ../admin/view/wp-slimstat-reports.php:1447
2384
  msgid "Unique Referrers"
2385
  msgstr "Eindeutige Herkunft"
2386
 
2387
- #: ../admin/view/wp-slimstat-reports.php:1449
2388
  msgid ""
2389
  "A referrer (or referring site) is the site that a visitor previously visited "
2390
  "before following a link to your site."
@@ -2392,11 +2479,11 @@ msgstr ""
2392
  "Eine Herkunft (verweisende Seite) ist die Webseite welche ein Besucher vor "
2393
  "dem Besuch der eigenen Website besucht hat."
2394
 
2395
- #: ../admin/view/wp-slimstat-reports.php:1451
2396
  msgid "Direct Pageviews"
2397
  msgstr "Direkte Seitenaufrufe"
2398
 
2399
- #: ../admin/view/wp-slimstat-reports.php:1453
2400
  msgid ""
2401
  "Visitors who visited the site by typing the URL directly into their browser. "
2402
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -2407,22 +2494,22 @@ msgstr ""
2407
  "auch auf Besucher beziehen, welche Lesezeichen/Favoriten verwendet haben "
2408
  "oder Links in E-Mails bzw. Dokumenten gefolgt sind."
2409
 
2410
- #: ../admin/view/wp-slimstat-reports.php:1455
2411
  msgid "From a search result"
2412
  msgstr "Von einem Suchresultat"
2413
 
2414
- #: ../admin/view/wp-slimstat-reports.php:1457
2415
  msgid ""
2416
  "Visitors who came to your site via searches on Google or some other search "
2417
  "engine."
2418
  msgstr ""
2419
  "Besucher welche über eine Suchmaschine auf die eigene Website gekommen sind."
2420
 
2421
- #: ../admin/view/wp-slimstat-reports.php:1459
2422
  msgid "Unique Landing Pages"
2423
  msgstr "Eindeutige Einstiegsseiten"
2424
 
2425
- #: ../admin/view/wp-slimstat-reports.php:1461
2426
  msgid ""
2427
  "The first page that a user views during a session. This is also known as the "
2428
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -2432,22 +2519,22 @@ msgstr ""
2432
  "Die erste Seite welche ein Benutzer w&auml;hrend einer Sitzung besucht, die "
2433
  "s.g. Einstiegs- oder Landeseite."
2434
 
2435
- #: ../admin/view/wp-slimstat-reports.php:1463
2436
  msgid "Bounce Pages"
2437
  msgstr "Absprungrate"
2438
 
2439
- #: ../admin/view/wp-slimstat-reports.php:1465
2440
  #, fuzzy
2441
  msgid "Number of single page visits to your site over the selected period."
2442
  msgstr ""
2443
  "Anzahl der Besucher einer einzelnen Seite über die gew&auml;hlte Periode."
2444
 
2445
- #: ../admin/view/wp-slimstat-reports.php:1467
2446
  #, fuzzy
2447
  msgid "New Visitors Rate"
2448
  msgstr "Neue Besucher"
2449
 
2450
- #: ../admin/view/wp-slimstat-reports.php:1469
2451
  #, fuzzy
2452
  msgid ""
2453
  "Percentage of single page visits, i.e. visits in which the person left your "
@@ -2456,11 +2543,11 @@ msgstr ""
2456
  "Prozentsatz von Besuchen einzelner Seiten, d.h. Besuche bei welchen der "
2457
  "Besucher die Website auf der aufgerufenen Seite wieder verlassen hat."
2458
 
2459
- #: ../admin/view/wp-slimstat-reports.php:1471
2460
  msgid "Currently from search engines"
2461
  msgstr "Aktuell von Suchmaschinen"
2462
 
2463
- #: ../admin/view/wp-slimstat-reports.php:1473
2464
  msgid ""
2465
  "Visitors who visited the site in the last 5 minutes coming from a search "
2466
  "engine."
@@ -2468,137 +2555,137 @@ msgstr ""
2468
  "Besucher welche innerhalb der letzten 5 Minuten von einer Suchmaschine "
2469
  "gekommen sind."
2470
 
2471
- #: ../admin/view/wp-slimstat-reports.php:1543
2472
  msgid "Number of pages in your site included in Google's index."
2473
  msgstr ""
2474
 
2475
- #: ../admin/view/wp-slimstat-reports.php:1544
2476
  msgid "Google Index"
2477
  msgstr "Google-Index"
2478
 
2479
- #: ../admin/view/wp-slimstat-reports.php:1545
2480
  msgid "Number of pages, according to Google, that link back to your site."
2481
  msgstr ""
2482
 
2483
- #: ../admin/view/wp-slimstat-reports.php:1546
2484
  msgid "Google Backlinks"
2485
  msgstr ""
2486
 
2487
- #: ../admin/view/wp-slimstat-reports.php:1547
2488
  msgid ""
2489
  "How many times the Facebook Like button has been approximately clicked on "
2490
  "your site."
2491
  msgstr ""
2492
 
2493
- #: ../admin/view/wp-slimstat-reports.php:1548
2494
  msgid "Facebook Likes"
2495
  msgstr "Facebook Likes"
2496
 
2497
- #: ../admin/view/wp-slimstat-reports.php:1549
2498
  msgid ""
2499
  "How many times your site has been shared by someone on the social network."
2500
  msgstr ""
2501
 
2502
- #: ../admin/view/wp-slimstat-reports.php:1550
2503
  msgid "Facebook Shares"
2504
  msgstr ""
2505
 
2506
- #: ../admin/view/wp-slimstat-reports.php:1551
2507
  msgid "How many times links to your website have been clicked on Facebook."
2508
  msgstr ""
2509
 
2510
- #: ../admin/view/wp-slimstat-reports.php:1552
2511
  msgid "Facebook Clicks"
2512
  msgstr "Clicks bei Facebook"
2513
 
2514
- #: ../admin/view/wp-slimstat-reports.php:1553
2515
  msgid ""
2516
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2517
  "traffic data."
2518
  msgstr ""
2519
 
2520
- #: ../admin/view/wp-slimstat-reports.php:1554
2521
  msgid "Alexa World Rank"
2522
  msgstr ""
2523
 
2524
- #: ../admin/view/wp-slimstat-reports.php:1555
2525
  msgid "Alexa Country Rank"
2526
  msgstr ""
2527
 
2528
- #: ../admin/view/wp-slimstat-reports.php:1556
2529
  msgid "Alexa Popularity"
2530
  msgstr ""
2531
 
2532
- #: ../admin/view/wp-slimstat-reports.php:1567
2533
  #, fuzzy
2534
  msgid "Content Items"
2535
  msgstr "Inhalt"
2536
 
2537
- #: ../admin/view/wp-slimstat-reports.php:1569
2538
  msgid ""
2539
  "This value includes not only posts, but also custom post types, regardless "
2540
  "of their status"
2541
  msgstr ""
2542
 
2543
- #: ../admin/view/wp-slimstat-reports.php:1571
2544
  #, fuzzy
2545
  msgid "Posts"
2546
  msgstr "Top-Artikel"
2547
 
2548
- #: ../admin/view/wp-slimstat-reports.php:1574
2549
  #, fuzzy
2550
  msgid "Pages"
2551
  msgstr "Top-Seiten"
2552
 
2553
- #: ../admin/view/wp-slimstat-reports.php:1577
2554
  msgid "Attachments"
2555
  msgstr ""
2556
 
2557
- #: ../admin/view/wp-slimstat-reports.php:1580
2558
  #, fuzzy
2559
  msgid "Revisions"
2560
  msgstr "Berechtigungen"
2561
 
2562
- #: ../admin/view/wp-slimstat-reports.php:1583
2563
  #, fuzzy
2564
  msgid "Comments"
2565
  msgstr "Gesamte Kommentare"
2566
 
2567
- #: ../admin/view/wp-slimstat-reports.php:1586
2568
  #, fuzzy
2569
  msgid "Avg Comments per Post"
2570
  msgstr "Spalte bei Beitr&auml;gen hinzuf&uuml;gen"
2571
 
2572
- #: ../admin/view/wp-slimstat-reports.php:1589
2573
  msgid "Avg Server Latency"
2574
  msgstr ""
2575
 
2576
- #: ../admin/view/wp-slimstat-reports.php:1591
2577
  msgid ""
2578
  "Latency is the amount of time it takes for the host server to receive and "
2579
  "process a request for a page object. The amount of latency depends largely "
2580
  "on how far away the user is from the server."
2581
  msgstr ""
2582
 
2583
- #: ../admin/view/wp-slimstat-reports.php:1634
2584
  #, fuzzy
2585
  msgid "Coordinates"
2586
  msgstr "Tracking aktiv"
2587
 
2588
- #: ../admin/view/wp-slimstat-reports.php:1634
2589
  #, fuzzy
2590
  msgid "Date"
2591
  msgstr "Datum/Zeit"
2592
 
2593
- #: ../admin/view/wp-slimstat-reports.php:1671
2594
  msgid "Error contacting the GetSocial endpoint."
2595
  msgstr ""
2596
 
2597
- #: ../admin/view/wp-slimstat-reports.php:1679
2598
  msgid "Error decoding the GetSocial payload."
2599
  msgstr ""
2600
 
2601
- #: ../admin/view/wp-slimstat-reports.php:1711
2602
  msgid ""
2603
  "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2604
  ">social media metrics and identify your top performing posts.<br/> <a "
@@ -2606,1179 +2693,1181 @@ msgid ""
2606
  msgstr ""
2607
 
2608
  # Unknown
2609
- #: ../admin/view/wp-slimstat-reports.php:1721
2610
  msgid "c-xx"
2611
  msgstr "Unbekannt"
2612
 
2613
  # Afghanistan
2614
- #: ../admin/view/wp-slimstat-reports.php:1721
2615
  msgid "c-af"
2616
  msgstr "Afghanistan"
2617
 
2618
  # Åland Islands
2619
- #: ../admin/view/wp-slimstat-reports.php:1721
2620
  msgid "c-ax"
2621
  msgstr "&Aring;landinseln"
2622
 
2623
  # Albania
2624
- #: ../admin/view/wp-slimstat-reports.php:1721
2625
  msgid "c-al"
2626
  msgstr "Albanien"
2627
 
2628
  # Algeria
2629
- #: ../admin/view/wp-slimstat-reports.php:1721
2630
  msgid "c-dz"
2631
  msgstr "Algerien"
2632
 
2633
  # Andorra
2634
- #: ../admin/view/wp-slimstat-reports.php:1721
2635
  msgid "c-ad"
2636
  msgstr "Andorra"
2637
 
2638
  # Angola
2639
- #: ../admin/view/wp-slimstat-reports.php:1721
2640
  msgid "c-ao"
2641
  msgstr "Angola"
2642
 
2643
  # Anguilla
2644
- #: ../admin/view/wp-slimstat-reports.php:1721
2645
  msgid "c-ai"
2646
  msgstr "Anguilla"
2647
 
2648
  # Antigua and Barbuda
2649
- #: ../admin/view/wp-slimstat-reports.php:1721
2650
  msgid "c-ag"
2651
  msgstr "Antigua und Barbuda"
2652
 
2653
  # Argentina
2654
- #: ../admin/view/wp-slimstat-reports.php:1721
2655
  msgid "c-ar"
2656
  msgstr "Argentinien"
2657
 
2658
  # Armenia
2659
- #: ../admin/view/wp-slimstat-reports.php:1721
2660
  msgid "c-am"
2661
  msgstr "Armenien"
2662
 
2663
  # Aruba
2664
- #: ../admin/view/wp-slimstat-reports.php:1721
2665
  msgid "c-aw"
2666
  msgstr "Aruba"
2667
 
2668
  # Australia
2669
- #: ../admin/view/wp-slimstat-reports.php:1721
2670
  msgid "c-au"
2671
  msgstr "Australien"
2672
 
2673
  # Austria
2674
- #: ../admin/view/wp-slimstat-reports.php:1721
2675
  msgid "c-at"
2676
  msgstr "&Ouml;sterreich"
2677
 
2678
  # Azerbaijan
2679
- #: ../admin/view/wp-slimstat-reports.php:1721
2680
  msgid "c-az"
2681
  msgstr "Aserbaidschan"
2682
 
2683
  # Bahamas
2684
- #: ../admin/view/wp-slimstat-reports.php:1721
2685
  msgid "c-bs"
2686
  msgstr "Bahamas"
2687
 
2688
  # Bahrain
2689
- #: ../admin/view/wp-slimstat-reports.php:1721
2690
  msgid "c-bh"
2691
  msgstr "Bahrain"
2692
 
2693
  # Bangladesh
2694
- #: ../admin/view/wp-slimstat-reports.php:1721
2695
  msgid "c-bd"
2696
  msgstr "Bangladesch"
2697
 
2698
  # Barbados
2699
- #: ../admin/view/wp-slimstat-reports.php:1721
2700
  msgid "c-bb"
2701
  msgstr "Barbados"
2702
 
2703
  # Belarus
2704
- #: ../admin/view/wp-slimstat-reports.php:1721
2705
  msgid "c-by"
2706
  msgstr "Wei&szlig;russland"
2707
 
2708
  # Belgium
2709
- #: ../admin/view/wp-slimstat-reports.php:1721
2710
  msgid "c-be"
2711
  msgstr "Belgien"
2712
 
2713
  # Belize
2714
- #: ../admin/view/wp-slimstat-reports.php:1721
2715
  msgid "c-bz"
2716
  msgstr "Belize"
2717
 
2718
  # Benin
2719
- #: ../admin/view/wp-slimstat-reports.php:1721
2720
  msgid "c-bj"
2721
  msgstr "Benin"
2722
 
2723
  # Bermuda
2724
- #: ../admin/view/wp-slimstat-reports.php:1721
2725
  msgid "c-bm"
2726
  msgstr "Bermuda"
2727
 
2728
  # Bhutan
2729
- #: ../admin/view/wp-slimstat-reports.php:1721
2730
  msgid "c-bt"
2731
  msgstr "Bhutan"
2732
 
2733
  # Bolivia
2734
- #: ../admin/view/wp-slimstat-reports.php:1721
2735
  msgid "c-bo"
2736
  msgstr "Bolivien"
2737
 
2738
  # Bosnia and Herzegovina
2739
- #: ../admin/view/wp-slimstat-reports.php:1721
2740
  msgid "c-ba"
2741
  msgstr "Bosnien Herzegowina"
2742
 
2743
  # Botswana
2744
- #: ../admin/view/wp-slimstat-reports.php:1721
2745
  msgid "c-bw"
2746
  msgstr "Botswana"
2747
 
2748
  # Brazil
2749
- #: ../admin/view/wp-slimstat-reports.php:1721
2750
  msgid "c-br"
2751
  msgstr "Brasilien"
2752
 
2753
  # Brunei Darussalam
2754
- #: ../admin/view/wp-slimstat-reports.php:1721
2755
  msgid "c-bn"
2756
  msgstr "Brunei Darussalam"
2757
 
2758
  # Bulgaria
2759
- #: ../admin/view/wp-slimstat-reports.php:1721
2760
  msgid "c-bg"
2761
  msgstr "Bulgarien"
2762
 
2763
  # Burkina Faso
2764
- #: ../admin/view/wp-slimstat-reports.php:1721
2765
  msgid "c-bf"
2766
  msgstr "Burkina Faso"
2767
 
2768
  # Burundi
2769
- #: ../admin/view/wp-slimstat-reports.php:1721
2770
  msgid "c-bi"
2771
  msgstr "Burundi"
2772
 
2773
  # Cambodia
2774
- #: ../admin/view/wp-slimstat-reports.php:1721
2775
  msgid "c-kh"
2776
  msgstr "Kambodscha"
2777
 
2778
  # Cameroon
2779
- #: ../admin/view/wp-slimstat-reports.php:1721
2780
  msgid "c-cm"
2781
  msgstr "Kamerun"
2782
 
2783
  # Canada
2784
- #: ../admin/view/wp-slimstat-reports.php:1721
2785
  msgid "c-ca"
2786
  msgstr "Kanada"
2787
 
2788
  # Cape Verde
2789
- #: ../admin/view/wp-slimstat-reports.php:1721
2790
  msgid "c-cv"
2791
  msgstr "Kap Verde"
2792
 
2793
  # Cayman Islands
2794
- #: ../admin/view/wp-slimstat-reports.php:1721
2795
  msgid "c-ky"
2796
  msgstr "Kaimaninseln"
2797
 
2798
  # Central African Republic
2799
- #: ../admin/view/wp-slimstat-reports.php:1721
2800
  msgid "c-cf"
2801
  msgstr "Zentralafrika"
2802
 
2803
  # Chad
2804
- #: ../admin/view/wp-slimstat-reports.php:1721
2805
  msgid "c-td"
2806
  msgstr "Tschad"
2807
 
2808
  # Chile
2809
- #: ../admin/view/wp-slimstat-reports.php:1721
2810
  msgid "c-cl"
2811
  msgstr "Chile"
2812
 
2813
  # China
2814
- #: ../admin/view/wp-slimstat-reports.php:1721
2815
  msgid "c-cn"
2816
  msgstr "China"
2817
 
2818
  # Colombia
2819
- #: ../admin/view/wp-slimstat-reports.php:1721
2820
  msgid "c-co"
2821
  msgstr "Kolumbien"
2822
 
2823
  # Comoros
2824
- #: ../admin/view/wp-slimstat-reports.php:1721
2825
  msgid "c-km"
2826
  msgstr "Komoren"
2827
 
2828
  # Congo
2829
- #: ../admin/view/wp-slimstat-reports.php:1721
2830
  msgid "c-cg"
2831
  msgstr "Republik Kongo"
2832
 
2833
  # The Democratic Republic of the Congo
2834
- #: ../admin/view/wp-slimstat-reports.php:1721
2835
  msgid "c-cd"
2836
  msgstr "Demokratische Republik Kongo"
2837
 
2838
  # Costa Rica
2839
- #: ../admin/view/wp-slimstat-reports.php:1721
2840
  msgid "c-cr"
2841
  msgstr "Costa Rica"
2842
 
2843
  # Côte d'Ivoire
2844
- #: ../admin/view/wp-slimstat-reports.php:1721
2845
  msgid "c-ci"
2846
  msgstr "Elfenbeink&uuml;ste"
2847
 
2848
  # Croatia
2849
- #: ../admin/view/wp-slimstat-reports.php:1721
2850
  msgid "c-hr"
2851
  msgstr "Kroatien"
2852
 
2853
  # Cuba
2854
- #: ../admin/view/wp-slimstat-reports.php:1721
2855
  msgid "c-cu"
2856
  msgstr "Kuba"
2857
 
2858
  # Cyprus
2859
- #: ../admin/view/wp-slimstat-reports.php:1721
2860
  msgid "c-cy"
2861
  msgstr "Zypern"
2862
 
2863
  # Czech Republic
2864
- #: ../admin/view/wp-slimstat-reports.php:1721
2865
  msgid "c-cz"
2866
  msgstr "Tschechische Republik"
2867
 
2868
  # Denmark
2869
- #: ../admin/view/wp-slimstat-reports.php:1721
2870
  msgid "c-dk"
2871
  msgstr "D&auml;nemark"
2872
 
2873
  # Djibouti
2874
- #: ../admin/view/wp-slimstat-reports.php:1721
2875
  msgid "c-dj"
2876
  msgstr "Dschibuti"
2877
 
2878
  # Dominica
2879
- #: ../admin/view/wp-slimstat-reports.php:1721
2880
  msgid "c-dm"
2881
  msgstr "Dominica"
2882
 
2883
  # Dominican Republic
2884
- #: ../admin/view/wp-slimstat-reports.php:1721
2885
  msgid "c-do"
2886
  msgstr "Dominikanische Republik"
2887
 
2888
  # Ecuador
2889
- #: ../admin/view/wp-slimstat-reports.php:1721
2890
  msgid "c-ec"
2891
  msgstr "Ecuador"
2892
 
2893
  # Egypt
2894
- #: ../admin/view/wp-slimstat-reports.php:1721
2895
  msgid "c-eg"
2896
  msgstr "&Auml;gypten"
2897
 
2898
  # El Salvador
2899
- #: ../admin/view/wp-slimstat-reports.php:1721
2900
  msgid "c-sv"
2901
  msgstr "El Salvador"
2902
 
2903
  # Equatorial Guinea
2904
- #: ../admin/view/wp-slimstat-reports.php:1721
2905
  msgid "c-gq"
2906
  msgstr "Äquatorialguinea"
2907
 
2908
  # Eritrea
2909
- #: ../admin/view/wp-slimstat-reports.php:1721
2910
  msgid "c-er"
2911
  msgstr "Eritrea"
2912
 
2913
  # Estonia
2914
- #: ../admin/view/wp-slimstat-reports.php:1721
2915
  msgid "c-ee"
2916
  msgstr "Estland"
2917
 
2918
  # Ethiopia
2919
- #: ../admin/view/wp-slimstat-reports.php:1721
2920
  msgid "c-et"
2921
  msgstr "&Auml;thiopien"
2922
 
2923
  # Faroe Islands
2924
- #: ../admin/view/wp-slimstat-reports.php:1721
2925
  msgid "c-fo"
2926
  msgstr "F&auml;r&ouml;er Inseln"
2927
 
2928
  # Falkland Islands (Malvinas)
2929
- #: ../admin/view/wp-slimstat-reports.php:1721
2930
  msgid "c-fk"
2931
  msgstr "Falklandinseln (Malwinen)"
2932
 
2933
  # Fiji
2934
- #: ../admin/view/wp-slimstat-reports.php:1721
2935
  msgid "c-fj"
2936
  msgstr "Republik Fidschi"
2937
 
2938
  # Finland
2939
- #: ../admin/view/wp-slimstat-reports.php:1721
2940
  msgid "c-fi"
2941
  msgstr "Finnland"
2942
 
2943
  # France
2944
- #: ../admin/view/wp-slimstat-reports.php:1721
2945
  msgid "c-fr"
2946
  msgstr "Franz&ouml;sische Republik"
2947
 
2948
  # French Guiana
2949
- #: ../admin/view/wp-slimstat-reports.php:1721
2950
  msgid "c-gf"
2951
  msgstr "Franz&ouml;sisch-Guayana"
2952
 
2953
  # Gabon
2954
- #: ../admin/view/wp-slimstat-reports.php:1721
2955
  msgid "c-ga"
2956
  msgstr "Gabun"
2957
 
2958
  # Gambia
2959
- #: ../admin/view/wp-slimstat-reports.php:1721
2960
  msgid "c-gm"
2961
  msgstr "Gambia"
2962
 
2963
  # Georgia
2964
- #: ../admin/view/wp-slimstat-reports.php:1721
2965
  msgid "c-ge"
2966
  msgstr "Georgien"
2967
 
2968
  # Germany
2969
- #: ../admin/view/wp-slimstat-reports.php:1721
2970
  msgid "c-de"
2971
  msgstr "Bundesrepublik Deutschland"
2972
 
2973
  # Ghana
2974
- #: ../admin/view/wp-slimstat-reports.php:1721
2975
  msgid "c-gh"
2976
  msgstr "Ghana"
2977
 
2978
  # Greece
2979
- #: ../admin/view/wp-slimstat-reports.php:1721
2980
  msgid "c-gr"
2981
  msgstr "Griechenland"
2982
 
2983
  # Greenland
2984
- #: ../admin/view/wp-slimstat-reports.php:1721
2985
  msgid "c-gl"
2986
  msgstr "Gr&ouml;nland"
2987
 
2988
  # Grenada
2989
- #: ../admin/view/wp-slimstat-reports.php:1721
2990
  msgid "c-gd"
2991
  msgstr "Grenada"
2992
 
2993
  # Guadeloupe
2994
- #: ../admin/view/wp-slimstat-reports.php:1721
2995
  msgid "c-gp"
2996
  msgstr "Guadeloupe"
2997
 
2998
  # Guatemala
2999
- #: ../admin/view/wp-slimstat-reports.php:1721
3000
  msgid "c-gt"
3001
  msgstr "Guatemala"
3002
 
3003
  # Guinea
3004
- #: ../admin/view/wp-slimstat-reports.php:1721
3005
  msgid "c-gn"
3006
  msgstr "Guinea"
3007
 
3008
  # Guinea-Bissau
3009
- #: ../admin/view/wp-slimstat-reports.php:1721
3010
  msgid "c-gw"
3011
  msgstr "Guinea-Bissau"
3012
 
3013
  # Guyana
3014
- #: ../admin/view/wp-slimstat-reports.php:1721
3015
  msgid "c-gy"
3016
  msgstr "Guyana"
3017
 
3018
  # Haiti
3019
- #: ../admin/view/wp-slimstat-reports.php:1721
3020
  msgid "c-ht"
3021
  msgstr "Haiti"
3022
 
3023
  # Honduras
3024
- #: ../admin/view/wp-slimstat-reports.php:1721
3025
  msgid "c-hn"
3026
  msgstr "Honduras"
3027
 
3028
  # Hong Kong
3029
- #: ../admin/view/wp-slimstat-reports.php:1721
3030
  msgid "c-hk"
3031
  msgstr "Hong Kong"
3032
 
3033
  # Hungary
3034
- #: ../admin/view/wp-slimstat-reports.php:1721
3035
  msgid "c-hu"
3036
  msgstr "Ungarn"
3037
 
3038
  # Iceland
3039
- #: ../admin/view/wp-slimstat-reports.php:1721
3040
  msgid "c-is"
3041
  msgstr "Island"
3042
 
3043
  # India
3044
- #: ../admin/view/wp-slimstat-reports.php:1721
3045
  msgid "c-in"
3046
  msgstr "Indien"
3047
 
3048
  # Indonesia
3049
- #: ../admin/view/wp-slimstat-reports.php:1721
3050
  msgid "c-id"
3051
  msgstr "Indonesien"
3052
 
3053
  # Islamic Republic of Iran
3054
- #: ../admin/view/wp-slimstat-reports.php:1721
3055
  msgid "c-ir"
3056
  msgstr "Islamische Republik Iran"
3057
 
3058
  # Iraq
3059
- #: ../admin/view/wp-slimstat-reports.php:1721
3060
  msgid "c-iq"
3061
  msgstr "Irak"
3062
 
3063
  # Ireland
3064
- #: ../admin/view/wp-slimstat-reports.php:1721
3065
  msgid "c-ie"
3066
  msgstr "Irland"
3067
 
3068
  # Israel
3069
- #: ../admin/view/wp-slimstat-reports.php:1721
3070
  msgid "c-il"
3071
  msgstr "Israel"
3072
 
3073
  # Italy
3074
- #: ../admin/view/wp-slimstat-reports.php:1721
3075
  msgid "c-it"
3076
  msgstr "Italien"
3077
 
3078
  # Jamaica
3079
- #: ../admin/view/wp-slimstat-reports.php:1721
3080
  msgid "c-jm"
3081
  msgstr "Jamaika"
3082
 
3083
  # Japan
3084
- #: ../admin/view/wp-slimstat-reports.php:1721
3085
  msgid "c-jp"
3086
  msgstr "Japan"
3087
 
3088
  # Jordan
3089
- #: ../admin/view/wp-slimstat-reports.php:1721
3090
  msgid "c-jo"
3091
  msgstr "Jordan"
3092
 
3093
  # Kazakhstan
3094
- #: ../admin/view/wp-slimstat-reports.php:1721
3095
  msgid "c-kz"
3096
  msgstr "Kasachstan"
3097
 
3098
  # Kenya
3099
- #: ../admin/view/wp-slimstat-reports.php:1721
3100
  msgid "c-ke"
3101
  msgstr "Kenia"
3102
 
3103
  # Nauru
3104
- #: ../admin/view/wp-slimstat-reports.php:1721
3105
  msgid "c-nr"
3106
  msgstr "Nauru"
3107
 
3108
  # Democratic People's Republic of Korea
3109
- #: ../admin/view/wp-slimstat-reports.php:1721
3110
  msgid "c-kp"
3111
  msgstr "Demokratische Volksrepublik Korea"
3112
 
3113
  # Republic of Korea
3114
- #: ../admin/view/wp-slimstat-reports.php:1721
3115
  msgid "c-kr"
3116
  msgstr "Republik Korea"
3117
 
3118
- #: ../admin/view/wp-slimstat-reports.php:1721
3119
  msgid "c-kv"
3120
  msgstr "Komi"
3121
 
3122
  # Kuwait
3123
- #: ../admin/view/wp-slimstat-reports.php:1721
3124
  msgid "c-kw"
3125
  msgstr "Kuwait"
3126
 
3127
  # Kyrgyzstan
3128
- #: ../admin/view/wp-slimstat-reports.php:1721
3129
  msgid "c-kg"
3130
  msgstr "Kirgistan"
3131
 
3132
  # Lao People's Democratic Republic
3133
- #: ../admin/view/wp-slimstat-reports.php:1721
3134
  msgid "c-la"
3135
  msgstr "Demokratische Volksrepublik Laos"
3136
 
3137
  # Latvia
3138
- #: ../admin/view/wp-slimstat-reports.php:1721
3139
  msgid "c-lv"
3140
  msgstr "Lettland"
3141
 
3142
  # Lebanon
3143
- #: ../admin/view/wp-slimstat-reports.php:1721
3144
  msgid "c-lb"
3145
  msgstr "Libanon"
3146
 
3147
  # Lesotho
3148
- #: ../admin/view/wp-slimstat-reports.php:1721
3149
  msgid "c-ls"
3150
  msgstr "Lesotho"
3151
 
3152
  # Liberia
3153
- #: ../admin/view/wp-slimstat-reports.php:1721
3154
  msgid "c-lr"
3155
  msgstr "Liberia"
3156
 
3157
  # Libyan Arab Jamahiriya
3158
- #: ../admin/view/wp-slimstat-reports.php:1721
3159
  msgid "c-ly"
3160
  msgstr "Libyen"
3161
 
3162
  # Liechtenstein
3163
- #: ../admin/view/wp-slimstat-reports.php:1721
3164
  msgid "c-li"
3165
  msgstr "Liechtenstein"
3166
 
3167
  # Lithuania
3168
- #: ../admin/view/wp-slimstat-reports.php:1721
3169
  msgid "c-lt"
3170
  msgstr "Litauen"
3171
 
3172
  # Luxembourg
3173
- #: ../admin/view/wp-slimstat-reports.php:1721
3174
  msgid "c-lu"
3175
  msgstr "Luxemburg"
3176
 
3177
  # The Former Yugoslav Republic of Macedonia
3178
- #: ../admin/view/wp-slimstat-reports.php:1721
3179
  msgid "c-mk"
3180
  msgstr "Ehemalige Jugoslawische Republik Mazedonien"
3181
 
3182
  # Madagascar
3183
- #: ../admin/view/wp-slimstat-reports.php:1721
3184
  msgid "c-mg"
3185
  msgstr "Madagaskar"
3186
 
3187
  # Malawi
3188
- #: ../admin/view/wp-slimstat-reports.php:1721
3189
  msgid "c-mw"
3190
  msgstr "Malawi"
3191
 
3192
  # Malaysia
3193
- #: ../admin/view/wp-slimstat-reports.php:1721
3194
  msgid "c-my"
3195
  msgstr "Malaysien"
3196
 
3197
  # Mali
3198
- #: ../admin/view/wp-slimstat-reports.php:1721
3199
  msgid "c-ml"
3200
  msgstr "Mali"
3201
 
3202
  # Malta
3203
- #: ../admin/view/wp-slimstat-reports.php:1721
3204
  msgid "c-mt"
3205
  msgstr "Malta"
3206
 
3207
  # Martinique
3208
- #: ../admin/view/wp-slimstat-reports.php:1721
3209
  msgid "c-mq"
3210
  msgstr "Martinique"
3211
 
3212
  # Mauritania
3213
- #: ../admin/view/wp-slimstat-reports.php:1721
3214
  msgid "c-mr"
3215
  msgstr "Mauritanien"
3216
 
3217
  # Mauritius
3218
- #: ../admin/view/wp-slimstat-reports.php:1721
3219
  msgid "c-mu"
3220
  msgstr "Mauritius"
3221
 
3222
  # Mexico
3223
- #: ../admin/view/wp-slimstat-reports.php:1721
3224
  msgid "c-mx"
3225
  msgstr "Mexiko"
3226
 
3227
  # Moldova
3228
- #: ../admin/view/wp-slimstat-reports.php:1721
3229
  msgid "c-md"
3230
  msgstr "Moldawien"
3231
 
3232
  # Mongolia
3233
- #: ../admin/view/wp-slimstat-reports.php:1721
3234
  msgid "c-mn"
3235
  msgstr "Mongolei"
3236
 
3237
  # Montenegro
3238
- #: ../admin/view/wp-slimstat-reports.php:1721
3239
  msgid "c-me"
3240
  msgstr "Montenegro"
3241
 
3242
  # Montserrat
3243
- #: ../admin/view/wp-slimstat-reports.php:1721
3244
  msgid "c-ms"
3245
  msgstr "Montserrat"
3246
 
3247
  # Morocco
3248
- #: ../admin/view/wp-slimstat-reports.php:1721
3249
  msgid "c-ma"
3250
  msgstr "Marokko"
3251
 
3252
  # Mozambique
3253
- #: ../admin/view/wp-slimstat-reports.php:1721
3254
  msgid "c-mz"
3255
  msgstr "Mosambik"
3256
 
3257
  # Myanmar
3258
- #: ../admin/view/wp-slimstat-reports.php:1721
3259
  msgid "c-mm"
3260
  msgstr "Myanmar"
3261
 
3262
  # Namibia
3263
- #: ../admin/view/wp-slimstat-reports.php:1721
3264
  msgid "c-na"
3265
  msgstr "Namibia"
3266
 
3267
  # Nepal
3268
- #: ../admin/view/wp-slimstat-reports.php:1721
3269
  msgid "c-np"
3270
  msgstr "Nepal"
3271
 
3272
  # Netherlands
3273
- #: ../admin/view/wp-slimstat-reports.php:1721
3274
  msgid "c-nl"
3275
  msgstr "Niederlande"
3276
 
3277
  # New Caledonia
3278
- #: ../admin/view/wp-slimstat-reports.php:1721
3279
  msgid "c-nc"
3280
  msgstr "Neukaledonien"
3281
 
3282
  # New Zealand
3283
- #: ../admin/view/wp-slimstat-reports.php:1721
3284
  msgid "c-nz"
3285
  msgstr "Neuseeland"
3286
 
3287
  # Nicaragua
3288
- #: ../admin/view/wp-slimstat-reports.php:1721
3289
  msgid "c-ni"
3290
  msgstr "Nicaragua"
3291
 
3292
  # Niger
3293
- #: ../admin/view/wp-slimstat-reports.php:1721
3294
  msgid "c-ne"
3295
  msgstr "Niger"
3296
 
3297
  # Nigeria
3298
- #: ../admin/view/wp-slimstat-reports.php:1721
3299
  msgid "c-ng"
3300
  msgstr "Nigeria"
3301
 
3302
  # Norway
3303
- #: ../admin/view/wp-slimstat-reports.php:1721
3304
  msgid "c-no"
3305
  msgstr "Norwegen"
3306
 
3307
  # Oman
3308
- #: ../admin/view/wp-slimstat-reports.php:1721
3309
  msgid "c-om"
3310
  msgstr "Oman"
3311
 
3312
  # Pakistan
3313
- #: ../admin/view/wp-slimstat-reports.php:1721
3314
  msgid "c-pk"
3315
  msgstr "Pakistan"
3316
 
3317
  # Palau
3318
- #: ../admin/view/wp-slimstat-reports.php:1721
3319
  msgid "c-pw"
3320
  msgstr "Palau"
3321
 
3322
  # Occupied Palestinian Territory
3323
- #: ../admin/view/wp-slimstat-reports.php:1721
3324
  msgid "c-ps"
3325
  msgstr "Palästinensische Autonomiegebiete"
3326
 
3327
  # Panama
3328
- #: ../admin/view/wp-slimstat-reports.php:1721
3329
  msgid "c-pa"
3330
  msgstr "Panama"
3331
 
3332
  # Papua New Guinea
3333
- #: ../admin/view/wp-slimstat-reports.php:1721
3334
  msgid "c-pg"
3335
  msgstr "Papua Neu Guinea"
3336
 
3337
  # Paraguay
3338
- #: ../admin/view/wp-slimstat-reports.php:1721
3339
  msgid "c-py"
3340
  msgstr "Paraguay"
3341
 
3342
  # Peru
3343
- #: ../admin/view/wp-slimstat-reports.php:1721
3344
  msgid "c-pe"
3345
  msgstr "Peru"
3346
 
3347
  # Philippines
3348
- #: ../admin/view/wp-slimstat-reports.php:1721
3349
  msgid "c-ph"
3350
  msgstr "Philippinen"
3351
 
3352
  # Poland
3353
- #: ../admin/view/wp-slimstat-reports.php:1721
3354
  msgid "c-pl"
3355
  msgstr "Polen"
3356
 
3357
  # Portugal
3358
- #: ../admin/view/wp-slimstat-reports.php:1721
3359
  msgid "c-pt"
3360
  msgstr "Portugal"
3361
 
3362
  # Puerto Rico
3363
- #: ../admin/view/wp-slimstat-reports.php:1721
3364
  msgid "c-pr"
3365
  msgstr "Puerto Rico"
3366
 
3367
  # Qatar
3368
- #: ../admin/view/wp-slimstat-reports.php:1721
3369
  msgid "c-qa"
3370
  msgstr "Katar"
3371
 
3372
  # Réunion
3373
- #: ../admin/view/wp-slimstat-reports.php:1721
3374
  msgid "c-re"
3375
  msgstr "Réunion"
3376
 
3377
  # Romania
3378
- #: ../admin/view/wp-slimstat-reports.php:1721
3379
  msgid "c-ro"
3380
  msgstr "Rum&auml;nien"
3381
 
3382
  # Russian Federation
3383
- #: ../admin/view/wp-slimstat-reports.php:1721
3384
  msgid "c-ru"
3385
  msgstr "Russische Föderation"
3386
 
3387
  # Rwanda
3388
- #: ../admin/view/wp-slimstat-reports.php:1721
3389
  msgid "c-rw"
3390
  msgstr "Ruanda"
3391
 
3392
  # Saint Kitts and Nevis
3393
- #: ../admin/view/wp-slimstat-reports.php:1721
3394
  msgid "c-kn"
3395
  msgstr "St. Kitts und Nevis"
3396
 
3397
  # Saint Lucia
3398
- #: ../admin/view/wp-slimstat-reports.php:1721
3399
  msgid "c-lc"
3400
  msgstr "Saint Lucia"
3401
 
3402
  # Saint Martin
3403
- #: ../admin/view/wp-slimstat-reports.php:1721
3404
  msgid "c-mf"
3405
  msgstr "Saint Martin"
3406
 
3407
  # Saint Vincent and the Grenadines
3408
- #: ../admin/view/wp-slimstat-reports.php:1721
3409
  msgid "c-vc"
3410
  msgstr "St. Vincent und die Grenadinen"
3411
 
3412
  # Samoa
3413
- #: ../admin/view/wp-slimstat-reports.php:1721
3414
  msgid "c-ws"
3415
  msgstr "Samoa"
3416
 
3417
  # Sao Tome and Principe
3418
- #: ../admin/view/wp-slimstat-reports.php:1721
3419
  msgid "c-st"
3420
  msgstr "Sao Tomé und Príncipe"
3421
 
3422
  # Saudi Arabia
3423
- #: ../admin/view/wp-slimstat-reports.php:1721
3424
  msgid "c-sa"
3425
  msgstr "Saudi Arabien"
3426
 
3427
  # Senegal
3428
- #: ../admin/view/wp-slimstat-reports.php:1721
3429
  msgid "c-sn"
3430
  msgstr "Senegal"
3431
 
3432
  # Serbia
3433
- #: ../admin/view/wp-slimstat-reports.php:1721
3434
  msgid "c-rs"
3435
  msgstr "Serbien"
3436
 
3437
  # Sierra Leone
3438
- #: ../admin/view/wp-slimstat-reports.php:1721
3439
  msgid "c-sl"
3440
  msgstr "Sierra Leone"
3441
 
3442
  # Singapore
3443
- #: ../admin/view/wp-slimstat-reports.php:1721
3444
  msgid "c-sg"
3445
  msgstr "Singapur"
3446
 
3447
  # Slovakia
3448
- #: ../admin/view/wp-slimstat-reports.php:1721
3449
  msgid "c-sk"
3450
  msgstr "Slowakei"
3451
 
3452
  # Slovenia
3453
- #: ../admin/view/wp-slimstat-reports.php:1721
3454
  msgid "c-si"
3455
  msgstr "Slowenien"
3456
 
3457
  # Solomon Islands
3458
- #: ../admin/view/wp-slimstat-reports.php:1721
3459
  msgid "c-sb"
3460
  msgstr "Salomonen"
3461
 
3462
  # Somalia
3463
- #: ../admin/view/wp-slimstat-reports.php:1721
3464
  msgid "c-so"
3465
  msgstr "Somalia"
3466
 
3467
  # South Africa
3468
- #: ../admin/view/wp-slimstat-reports.php:1721
3469
  msgid "c-za"
3470
  msgstr "Südafrika"
3471
 
3472
  # South Georgia and the South Sandwich Islands
3473
- #: ../admin/view/wp-slimstat-reports.php:1721
3474
  msgid "c-gs"
3475
  msgstr "Südgeorgien und die Südlichen Sandwichinseln"
3476
 
3477
  # Spain
3478
- #: ../admin/view/wp-slimstat-reports.php:1721
3479
  msgid "c-es"
3480
  msgstr "Spanien"
3481
 
3482
  # Sri Lanka
3483
- #: ../admin/view/wp-slimstat-reports.php:1721
3484
  msgid "c-lk"
3485
  msgstr "Sri Lanka"
3486
 
3487
- #: ../admin/view/wp-slimstat-reports.php:1721
3488
  msgid "c-sc"
3489
  msgstr ""
3490
 
3491
  # Sudan
3492
- #: ../admin/view/wp-slimstat-reports.php:1721
3493
  msgid "c-sd"
3494
  msgstr "Sudan"
3495
 
3496
- #: ../admin/view/wp-slimstat-reports.php:1721
3497
  msgid "c-ss"
3498
  msgstr "Siswati"
3499
 
3500
  # Suriname
3501
- #: ../admin/view/wp-slimstat-reports.php:1721
3502
  msgid "c-sr"
3503
  msgstr "Suriname"
3504
 
3505
  # Svalbard and Jan Mayen
3506
- #: ../admin/view/wp-slimstat-reports.php:1721
3507
  msgid "c-sj"
3508
  msgstr "Spitzbergen und Jan Mayen"
3509
 
3510
  # Swaziland
3511
- #: ../admin/view/wp-slimstat-reports.php:1721
3512
  msgid "c-sz"
3513
  msgstr "Swaziland"
3514
 
3515
  # Sweden
3516
- #: ../admin/view/wp-slimstat-reports.php:1721
3517
  msgid "c-se"
3518
  msgstr "Schweden"
3519
 
3520
  # Switzerland
3521
- #: ../admin/view/wp-slimstat-reports.php:1721
3522
  msgid "c-ch"
3523
  msgstr "Schweiz"
3524
 
3525
  # Syrian Arab Republic
3526
- #: ../admin/view/wp-slimstat-reports.php:1721
3527
  msgid "c-sy"
3528
  msgstr "Arabische Republik Syrien"
3529
 
3530
  # Taiwan, Province of China
3531
- #: ../admin/view/wp-slimstat-reports.php:1721
3532
  msgid "c-tw"
3533
  msgstr "Taiwan"
3534
 
3535
  # Tajikistan
3536
- #: ../admin/view/wp-slimstat-reports.php:1721
3537
  msgid "c-tj"
3538
  msgstr "Tadschikistan"
3539
 
3540
  # United Republic of Tanzania
3541
- #: ../admin/view/wp-slimstat-reports.php:1721
3542
  msgid "c-tz"
3543
  msgstr "Vereinigte Republik Tansania"
3544
 
3545
  # Thailand
3546
- #: ../admin/view/wp-slimstat-reports.php:1721
3547
  msgid "c-th"
3548
  msgstr "Thailand"
3549
 
3550
  # Timor-Leste
3551
- #: ../admin/view/wp-slimstat-reports.php:1721
3552
  msgid "c-tl"
3553
  msgstr "Timor-Leste"
3554
 
3555
  # Togo
3556
- #: ../admin/view/wp-slimstat-reports.php:1721
3557
  msgid "c-tg"
3558
  msgstr "Togo"
3559
 
3560
  # Tonga
3561
- #: ../admin/view/wp-slimstat-reports.php:1721
3562
  msgid "c-to"
3563
  msgstr "Tonga"
3564
 
3565
  # Trinidad and Tobago
3566
- #: ../admin/view/wp-slimstat-reports.php:1721
3567
  msgid "c-tt"
3568
  msgstr "Trinidad und Tobago"
3569
 
3570
  # Tunisia
3571
- #: ../admin/view/wp-slimstat-reports.php:1721
3572
  msgid "c-tn"
3573
  msgstr "Tunesien"
3574
 
3575
  # Turkey
3576
- #: ../admin/view/wp-slimstat-reports.php:1721
3577
  msgid "c-tr"
3578
  msgstr "T&uuml;rkei"
3579
 
3580
  # Turkmenistan
3581
- #: ../admin/view/wp-slimstat-reports.php:1721
3582
  msgid "c-tm"
3583
  msgstr "Turkmenistan"
3584
 
3585
  # Turks and Caicos Islands
3586
- #: ../admin/view/wp-slimstat-reports.php:1721
3587
  msgid "c-tc"
3588
  msgstr "Turks- und Caicosinseln"
3589
 
3590
  # Uganda
3591
- #: ../admin/view/wp-slimstat-reports.php:1721
3592
  msgid "c-ug"
3593
  msgstr "Uganda"
3594
 
3595
  # Ukraine
3596
- #: ../admin/view/wp-slimstat-reports.php:1721
3597
  msgid "c-ua"
3598
  msgstr "Ukraine"
3599
 
3600
  # United Arab Emirates
3601
- #: ../admin/view/wp-slimstat-reports.php:1721
3602
  msgid "c-ae"
3603
  msgstr "Vereinigte Arabische Emirate"
3604
 
3605
  # United Kingdom
3606
- #: ../admin/view/wp-slimstat-reports.php:1721
3607
  msgid "c-gb"
3608
  msgstr "Vereinigtes K&ouml;nigreich"
3609
 
3610
  # United States
3611
- #: ../admin/view/wp-slimstat-reports.php:1721
3612
  msgid "c-us"
3613
  msgstr "Vereinigte Staaten"
3614
 
3615
  # Uruguay
3616
- #: ../admin/view/wp-slimstat-reports.php:1721
3617
  msgid "c-uy"
3618
  msgstr "Uruguay"
3619
 
3620
  # Uzbekistan
3621
- #: ../admin/view/wp-slimstat-reports.php:1721
3622
  msgid "c-uz"
3623
  msgstr "Usbekistan"
3624
 
3625
  # Vanuatu
3626
- #: ../admin/view/wp-slimstat-reports.php:1721
3627
  msgid "c-vu"
3628
  msgstr "Vanuatu"
3629
 
3630
  # Venezuela
3631
- #: ../admin/view/wp-slimstat-reports.php:1721
3632
  msgid "c-ve"
3633
  msgstr "Venezuela"
3634
 
3635
  # Viet Nam
3636
- #: ../admin/view/wp-slimstat-reports.php:1721
3637
  msgid "c-vn"
3638
  msgstr "Vietnam"
3639
 
3640
  # British Virgin Islands
3641
- #: ../admin/view/wp-slimstat-reports.php:1721
3642
  msgid "c-vg"
3643
  msgstr "Jungferninseln"
3644
 
3645
  # U.S. Virgin Islands
3646
- #: ../admin/view/wp-slimstat-reports.php:1721
3647
  msgid "c-vi"
3648
  msgstr "Amerikanische Jungferninseln"
3649
 
3650
  # Western Sahara
3651
- #: ../admin/view/wp-slimstat-reports.php:1721
3652
  msgid "c-eh"
3653
  msgstr "Westsahara"
3654
 
3655
  # Yemen
3656
- #: ../admin/view/wp-slimstat-reports.php:1721
3657
  msgid "c-ye"
3658
  msgstr "Jemen"
3659
 
3660
  # Zambia
3661
- #: ../admin/view/wp-slimstat-reports.php:1721
3662
  msgid "c-zm"
3663
  msgstr "Sambia"
3664
 
3665
  # Zimbabwe
3666
- #: ../admin/view/wp-slimstat-reports.php:1721
3667
  msgid "c-zw"
3668
  msgstr "Zimbabwe"
3669
 
3670
  # Guernsey
3671
- #: ../admin/view/wp-slimstat-reports.php:1721
3672
  msgid "c-gg"
3673
  msgstr "Guernsey"
3674
 
3675
  # Jersey
3676
- #: ../admin/view/wp-slimstat-reports.php:1721
3677
  msgid "c-je"
3678
  msgstr "Jersey"
3679
 
3680
  # Isle of Man
3681
- #: ../admin/view/wp-slimstat-reports.php:1721
3682
  msgid "c-im"
3683
  msgstr "Isle of Man"
3684
 
3685
  # Maldives
3686
- #: ../admin/view/wp-slimstat-reports.php:1721
3687
  msgid "c-mv"
3688
  msgstr "Malediven"
3689
 
3690
- #: ../admin/view/wp-slimstat-reports.php:1722
3691
  msgid "c-eu"
3692
  msgstr ""
3693
 
3694
- #: ../admin/view/wp-slimstat-reports.php:1804
3695
  msgid "src"
3696
  msgstr "src"
3697
 
3698
- #: ../admin/view/wp-slimstat-reports.php:1807
3699
  msgid "serp"
3700
  msgstr "serp"
3701
 
3702
- #: ../admin/view/wp-slimstat-reports.php:1814
3703
  msgid "Go to the referring page"
3704
  msgstr "Verweisende Seite &ouml;ffnen"
3705
 
3706
- #: ../admin/view/wp-slimstat-reports.php:1836
3707
  msgid "Remove filter for"
3708
  msgstr "Entferne Filter f&uuml;r"
3709
 
3710
- #: ../admin/view/wp-slimstat-reports.php:1840
3711
  msgid "Save"
3712
  msgstr ""
3713
 
3714
- #: ../admin/view/wp-slimstat-reports.php:1843
3715
  #, fuzzy
3716
  msgid "Reset All"
3717
  msgstr "Datenbanktabellen zurücksetzen"
3718
 
3719
- #: ../admin/view/wp-slimstat-reports.php:1847
3720
  msgid "Current filters:"
3721
  msgstr "Aktuelle Filter:"
3722
 
3723
- #: ../admin/wp-slimstat-admin.php:648 ../admin/wp-slimstat-admin.php:659
3724
- #: ../admin/wp-slimstat-admin.php:661
3725
  #, fuzzy
3726
  msgid "SlimStat"
3727
  msgstr "&Uuml;ber WP SlimStat"
3728
 
3729
- #: ../admin/wp-slimstat-admin.php:655
3730
- msgid "Custom Reports"
3731
- msgstr "individuelle Auswertungen"
 
 
3732
 
3733
- #: ../admin/wp-slimstat-admin.php:744
3734
  #, fuzzy
3735
  msgid "Pageviews in the last "
3736
  msgstr "Seitenaufrufe (Diagramm)"
3737
 
3738
- #: ../admin/wp-slimstat-admin.php:747
3739
  #, fuzzy
3740
  msgid "Unique IPs in the last "
3741
  msgstr "Eindeutige interne Zugriffe"
3742
 
3743
- #: ../admin/wp-slimstat-admin.php:803
3744
  msgid "Show on screen"
3745
  msgstr "Anzeigen"
3746
 
3747
- #: ../admin/wp-slimstat-admin.php:888
3748
  msgid "Already saved"
3749
  msgstr ""
3750
 
3751
- #: ../admin/wp-slimstat-admin.php:896
3752
  msgid "Saved"
3753
  msgstr ""
3754
 
3755
- #: ../admin/wp-slimstat-admin.php:916
3756
  #, fuzzy
3757
  msgid "Delete this filter"
3758
  msgstr "Lösche Seitenaufrufe, wo"
3759
 
3760
- #: ../admin/wp-slimstat-admin.php:960
3761
  msgid "There was an error updating the following options:"
3762
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
3763
 
3764
- #: ../admin/wp-slimstat-admin.php:963
3765
  #, fuzzy
3766
  msgid "Your changes have been saved."
3767
  msgstr "Optionen erfolgreich aktualisiert."
3768
 
3769
- #: ../admin/wp-slimstat-admin.php:986
3770
  msgid "Save Changes"
3771
  msgstr "Änderungen speichern"
3772
 
3773
- #: ../admin/wp-slimstat-admin.php:1002
3774
  msgid "Definitions"
3775
  msgstr "Definitionen"
3776
 
3777
- #: ../admin/wp-slimstat-admin.php:1005
3778
  msgid "Pageview"
3779
  msgstr "Seitenaufrufe"
3780
 
3781
- #: ../admin/wp-slimstat-admin.php:1005
3782
  #, fuzzy
3783
  msgid ""
3784
  "A request to load a single HTML file (\"page\"). This should be contrasted "
@@ -3789,11 +3878,11 @@ msgstr ""
3789
  "jedesmal einen 'Seitenaufruf' auf wenn der Tracking-Code ausgef&uuml;hrt "
3790
  "wird."
3791
 
3792
- #: ../admin/wp-slimstat-admin.php:1006
3793
  msgid "(Human) Visit"
3794
  msgstr "Echte Besuche"
3795
 
3796
- #: ../admin/wp-slimstat-admin.php:1006
3797
  msgid ""
3798
  "A period of interaction between a visitor's browser and your website, ending "
3799
  "when the browser is closed or when the user has been inactive on that site "
@@ -3803,7 +3892,7 @@ msgstr ""
3803
  "Diese endet wenn der Browser geschlossen wird oder der Besucher 30 Minuten "
3804
  "lang nicht auf der Website aktiv war"
3805
 
3806
- #: ../admin/wp-slimstat-admin.php:1007
3807
  msgid ""
3808
  "Any user who has left a comment on your blog, and is thus identified by "
3809
  "Wordpress as a returning visitor"
@@ -3811,11 +3900,11 @@ msgstr ""
3811
  "Jeder Benutzer, der einen Kommentar auf Ihrer Website hinterlassen hat und "
3812
  "damit als wiederkehrender Besucher erkannt wird."
3813
 
3814
- #: ../admin/wp-slimstat-admin.php:1008
3815
  msgid "Unique IP"
3816
  msgstr "Eindeutige IPs"
3817
 
3818
- #: ../admin/wp-slimstat-admin.php:1008
3819
  msgid ""
3820
  "Used to differentiate between multiple requests to download a file from one "
3821
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -3827,7 +3916,7 @@ msgstr ""
3827
  "Adresse von der ein Seitenaufruf stammt achtet, ist es nützlich, aber nicht "
3828
  "perfekt."
3829
 
3830
- #: ../admin/wp-slimstat-admin.php:1009
3831
  msgid ""
3832
  "the originating IP address of a client connecting to a web server through an "
3833
  "HTTP proxy or load balancer"
@@ -3835,11 +3924,11 @@ msgstr ""
3835
  "Die ursprüngliche IP-Adresse eines Clients, der sich durch einen HTTP Proxy "
3836
  "oder Load Balancer mit dem Server verbunden hat."
3837
 
3838
- #: ../admin/wp-slimstat-admin.php:1010
3839
  msgid "Direct Traffic"
3840
  msgstr "Direkter Besuch"
3841
 
3842
- #: ../admin/wp-slimstat-admin.php:1010
3843
  msgid ""
3844
  "All those people showing up to your Web site by typing in the URL of your "
3845
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -3849,11 +3938,11 @@ msgstr ""
3849
  "oder ein Lesezeichen erreichen; auch \"default traffic\" oder \"ambient "
3850
  "traffic\" genannt."
3851
 
3852
- #: ../admin/wp-slimstat-admin.php:1011
3853
  msgid "Search Engine"
3854
  msgstr "Suchmaschinen"
3855
 
3856
- #: ../admin/wp-slimstat-admin.php:1011
3857
  msgid ""
3858
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3859
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -3861,15 +3950,15 @@ msgstr ""
3861
  "Google, Yahoo, MSN, Ask usw.; hiwer ist sowohl organischer als auch "
3862
  "bezahlter (PPC/SEM) Traffic enthalten."
3863
 
3864
- #: ../admin/wp-slimstat-admin.php:1012 ../admin/wp-slimstat-admin.php:1028
3865
  msgid "Keywords used by your visitors to find your website on a search engine"
3866
  msgstr "Begriffe welche von Besuchern in Suchmaschinen verwendet wurden"
3867
 
3868
- #: ../admin/wp-slimstat-admin.php:1013
3869
  msgid "SERP"
3870
  msgstr "SERP"
3871
 
3872
- #: ../admin/wp-slimstat-admin.php:1013
3873
  msgid ""
3874
  "Short for search engine results page, the Web page that a search engine "
3875
  "returns with the results of its search. The value shown represents your rank "
@@ -3878,7 +3967,7 @@ msgstr ""
3878
  "\"Search Engine Result Pages\" - Suchmaschinenranking. Der Wert "
3879
  "repräsentiert Ihren Rang (die Postition) in den Suchergebnissen."
3880
 
3881
- #: ../admin/wp-slimstat-admin.php:1014
3882
  msgid ""
3883
  "Any program used for accessing a website; this includes browsers, robots, "
3884
  "spiders and any other program that was used to retrieve information from the "
@@ -3888,7 +3977,7 @@ msgstr ""
3888
  "usw.), 'Robots' und 'Spider' sowie jedes andere Programm welches "
3889
  "Informationen von einer Website abruft."
3890
 
3891
- #: ../admin/wp-slimstat-admin.php:1015
3892
  msgid ""
3893
  "A link from one domain to another is said to be outbound from its source "
3894
  "anchor and inbound to its target. This report lists all the links to other "
@@ -3897,27 +3986,27 @@ msgstr ""
3897
  "Ausgehende Links sind links zu einer anderen Domain. Dieser Report zeigt "
3898
  "alle Links zu anderen Websites die Ihre Besucher verfolgt haben."
3899
 
3900
- #: ../admin/wp-slimstat-admin.php:1022
3901
  msgid "Basic Filters"
3902
  msgstr "Einfache Filter"
3903
 
3904
- #: ../admin/wp-slimstat-admin.php:1025
3905
  msgid "User agent (Firefox, Chrome, ...)"
3906
  msgstr "Browser (Firefox, Chrome ...)"
3907
 
3908
- #: ../admin/wp-slimstat-admin.php:1026
3909
  msgid "2-letter code (us, ru, de, it, ...)"
3910
  msgstr "Länder-Code (us, ru, de, it...)"
3911
 
3912
- #: ../admin/wp-slimstat-admin.php:1027
3913
  msgid "IP"
3914
  msgstr "IP"
3915
 
3916
- #: ../admin/wp-slimstat-admin.php:1027
3917
  msgid "Visitor's public IP address"
3918
  msgstr "&Ouml;ffentliche IP-Adresse des Besuchers"
3919
 
3920
- #: ../admin/wp-slimstat-admin.php:1029
3921
  msgid ""
3922
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
3923
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -3926,7 +4015,7 @@ msgstr ""
3926
  "Siehe <a target=\"_blank\" href=\"http://msdn.microsoft.com/en-us/library/"
3927
  "ee825488(v=cs.20).aspx\">Tabelle von Sprach-Kodierungen</a> "
3928
 
3929
- #: ../admin/wp-slimstat-admin.php:1030
3930
  msgid ""
3931
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
3932
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -3936,16 +4025,16 @@ msgstr ""
3936
  "gibt es auf <a href=\"http://php.net/manual/de/function.get-browser.php\" "
3937
  "target=\"_blank\">dieser Seite</a>"
3938
 
3939
- #: ../admin/wp-slimstat-admin.php:1031
3940
  msgid "URL accessed on your site"
3941
  msgstr "URL, die auf Ihrer Seite besucht wurde"
3942
 
3943
- #: ../admin/wp-slimstat-admin.php:1032
3944
  #, fuzzy
3945
  msgid "Complete address of the referrer page"
3946
  msgstr "Verweisende Seite &ouml;ffnen"
3947
 
3948
- #: ../admin/wp-slimstat-admin.php:1033
3949
  msgid ""
3950
  "Visitors' names according to the cookie set by Wordpress after they leave a "
3951
  "comment"
@@ -3953,15 +4042,15 @@ msgstr ""
3953
  "Besuchername laut Cookie, welches Wordpress beim hinterlassen eines "
3954
  "Kommentars anlegt"
3955
 
3956
- #: ../admin/wp-slimstat-admin.php:1041
3957
  msgid "Advanced Filters"
3958
  msgstr "Erweiterte Filter"
3959
 
3960
- #: ../admin/wp-slimstat-admin.php:1044
3961
  msgid "user agent version (9.0, 11, ...)"
3962
  msgstr "Browser-Version (9.0, 11, ...)"
3963
 
3964
- #: ../admin/wp-slimstat-admin.php:1045
3965
  msgid ""
3966
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
3967
  "all others"
@@ -3969,11 +4058,11 @@ msgstr ""
3969
  "1 = Suchmaschinen Crawler, 2 = Mobiles Gerät, 3 = Feed-Reader, 0 = alle "
3970
  "anderen"
3971
 
3972
- #: ../admin/wp-slimstat-admin.php:1046
3973
  msgid "Pageview Attributes"
3974
  msgstr "Eigenschaften Seitenaufrufe"
3975
 
3976
- #: ../admin/wp-slimstat-admin.php:1046
3977
  msgid ""
3978
  "this field is set to <em>[pre]</em> if the resource has been accessed "
3979
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -3983,19 +4072,19 @@ msgstr ""
3983
  "target=\"_blank\" href=\"https://developer.mozilla.org/en/"
3984
  "Link_prefetching_FAQ\">Link Prefetching</a> oder eine &auml;hnliche "
3985
 
3986
- #: ../admin/wp-slimstat-admin.php:1047
3987
  msgid "author associated to that post/page when the resource was accessed"
3988
  msgstr "Der dem Artikel / der Seite zugeordnete Autor"
3989
 
3990
- #: ../admin/wp-slimstat-admin.php:1048
3991
  msgid "ID of the category/term associated to the resource, when available"
3992
  msgstr "ID der zugeordneten Kategorie, falls vorhanden"
3993
 
3994
- #: ../admin/wp-slimstat-admin.php:1049
3995
  msgid "visitor's originating IP address, if available"
3996
  msgstr "IP-Adresse des Besuchers, falls bekannt"
3997
 
3998
- #: ../admin/wp-slimstat-admin.php:1050
3999
  msgid ""
4000
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4001
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -4008,15 +4097,15 @@ msgstr ""
4008
  "feed, home; F&uuml;r mehr Infos s. <a target=\"_blank\" href=\"http://codex."
4009
  "wordpress.org/Conditional_Tags\">Conditional Tags</a>."
4010
 
4011
- #: ../admin/wp-slimstat-admin.php:1051
4012
  msgid "Screen Resolution"
4013
  msgstr "Bildschirm-Aufl&ouml;sung"
4014
 
4015
- #: ../admin/wp-slimstat-admin.php:1051
4016
  msgid "viewport width and height (1024x768, 800x600, ...)"
4017
  msgstr "Breite und H&ouml;he des sichtbaren Bereiches"
4018
 
4019
- #: ../admin/wp-slimstat-admin.php:1052
4020
  msgid ""
4021
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4022
  "visitors"
@@ -4024,11 +4113,11 @@ msgstr ""
4024
  "Meist im Zusammenhang mit <em>nicht leer</em> verwendet, kennzeichnet echte "
4025
  "Besucher"
4026
 
4027
- #: ../admin/wp-slimstat-admin.php:1053
4028
  msgid "Date Filters"
4029
  msgstr "Datumsfilter"
4030
 
4031
- #: ../admin/wp-slimstat-admin.php:1053
4032
  msgid ""
4033
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4034
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -4038,26 +4127,26 @@ msgstr ""
4038
  "-1 erzeugt ein Intervall seit Beginn des Jahres / Monats, z.B. Tag=1, "
4039
  "Monat=1, Jahr leer, Intervall=-1 erzeugt einen 'seit Jahresbeginn' Filter."
4040
 
4041
- #: ../admin/wp-slimstat-admin.php:1054
4042
  msgid "SERP Position"
4043
  msgstr "Suchmaschinenrang"
4044
 
4045
- #: ../admin/wp-slimstat-admin.php:1054
4046
  msgid ""
4047
  "set the filter to Referer contains cd=N&, where N is the position you are "
4048
  "looking for"
4049
  msgstr ""
4050
  "Filter nach Herkunft mit cd=N& setzen, wobei N die gesuchte Position ist"
4051
 
4052
- #: ../admin/wp-slimstat-admin.php:1081
4053
  msgid "Yes"
4054
  msgstr "Ja"
4055
 
4056
- #: ../admin/wp-slimstat-admin.php:1082
4057
  msgid "No"
4058
  msgstr "Nein"
4059
 
4060
- #: ../admin/wp-slimstat-admin.php:1083
4061
  msgid "Site Specific"
4062
  msgstr ""
4063
 
@@ -5603,96 +5692,141 @@ msgstr "Unknown"
5603
  msgid "c-xy"
5604
  msgstr "Lokale IP-Adresse"
5605
 
5606
- #: ../wp-slimstat.php:219 ../wp-slimstat.php:497
5607
- msgid "Pageview filtered by third-party code"
5608
  msgstr ""
5609
 
5610
- #: ../wp-slimstat.php:236
5611
- #, fuzzy
5612
- msgid "Malformed URL"
5613
  msgstr "Ignoriere Benutzer"
5614
 
5615
- #: ../wp-slimstat.php:255
5616
- msgid "Referrer is blacklisted"
5617
- msgstr ""
 
5618
 
5619
- #: ../wp-slimstat.php:333
5620
- msgid "Permalink is blacklisted"
5621
- msgstr ""
 
5622
 
5623
- #: ../wp-slimstat.php:344
5624
- msgid "Empty or not supported IP address format (IPv6)"
5625
  msgstr ""
5626
 
5627
- #: ../wp-slimstat.php:353
5628
- msgid "Logged in user not tracked"
 
5629
  msgstr ""
5630
 
5631
- #: ../wp-slimstat.php:361
5632
- msgid "User with given capability not tracked"
 
5633
  msgstr ""
5634
 
5635
- #: ../wp-slimstat.php:368
5636
  #, fuzzy, php-format
5637
- msgid "User %s is blacklisted"
5638
  msgstr "Browser-F&auml;higkeiten"
5639
 
5640
- #: ../wp-slimstat.php:388
5641
  #, fuzzy, php-format
5642
- msgid "Spammer %s not tracked"
5643
  msgstr "Bot oder Crawler"
5644
 
5645
- #: ../wp-slimstat.php:417
5646
  #, fuzzy, php-format
5647
- msgid "IP address %s is blacklisted"
5648
  msgstr "Browser-F&auml;higkeiten"
5649
 
5650
- #: ../wp-slimstat.php:446
5651
  #, fuzzy, php-format
5652
- msgid "Country %s is blacklisted"
5653
  msgstr "Browser-F&auml;higkeiten"
5654
 
5655
- #: ../wp-slimstat.php:455
5656
- msgid "Prefetch requests are ignored"
5657
  msgstr ""
5658
 
5659
- #: ../wp-slimstat.php:471
5660
  #, fuzzy
5661
- msgid "Bot not tracked"
5662
  msgstr "Bot oder Crawler"
5663
 
5664
- #: ../wp-slimstat.php:480
5665
  #, fuzzy, php-format
5666
- msgid "Browser %s is blacklisted"
5667
  msgstr "Browser-F&auml;higkeiten"
5668
 
5669
- #: ../wp-slimstat.php:1206
 
 
 
 
5670
  msgid "Invalid payload string. Try clearing your WordPress cache."
5671
  msgstr ""
5672
 
5673
- #: ../wp-slimstat.php:1216
5674
  msgid "Invalid data signature. Try clearing your WordPress cache."
5675
  msgstr ""
5676
 
5677
- #: ../wp-slimstat.php:1286
5678
  #, fuzzy
5679
  msgid "There was an error downloading the MaxMind Geolite DB:"
5680
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
5681
 
5682
- #: ../wp-slimstat.php:1294 ../wp-slimstat.php:1303
5683
  #, fuzzy
5684
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5685
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
5686
 
5687
- #: ../wp-slimstat.php:1298
5688
  msgid "Function gzopen not defined. Aborting."
5689
  msgstr ""
5690
 
5691
- #: ../wp-slimstat.php:1308
5692
  #, fuzzy
5693
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5694
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
5695
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5696
  #, fuzzy
5697
  #~ msgid "Tracking"
5698
  #~ msgstr "Tracking aktiv"
@@ -5718,9 +5852,6 @@ msgstr "Fehler beim Aktualisieren folgender Optionen:"
5718
  #~ msgid "External Pages"
5719
  #~ msgstr "Gesamte Seitenaufrufe"
5720
 
5721
- #~ msgid "Reset Reports"
5722
- #~ msgstr "Berichte zurücksetzen"
5723
-
5724
  #~ msgid "Recent Screen Resolutions"
5725
  #~ msgstr "Letzte Bildschirmaufl&ouml;sungen"
5726
 
@@ -5753,10 +5884,6 @@ msgstr "Fehler beim Aktualisieren folgender Optionen:"
5753
  #~ msgid "Avg Page Load Time"
5754
  #~ msgstr "Durchschnittl. Seitenaufrufe"
5755
 
5756
- #, fuzzy
5757
- #~ msgid "Enable Tracking"
5758
- #~ msgstr "Verfolgung aktivieren"
5759
-
5760
  #, fuzzy
5761
  #~ msgid "Javascript"
5762
  #~ msgstr "Tracking per JavaScript"
@@ -6121,9 +6248,6 @@ msgstr "Fehler beim Aktualisieren folgender Optionen:"
6121
  #~ msgid "IP Addresses"
6122
  #~ msgstr "IP-Adressen"
6123
 
6124
- #~ msgid "Users"
6125
- #~ msgstr "Benutzer"
6126
-
6127
  #~ msgid "Users by capability"
6128
  #~ msgstr "Benutzer nach Browserf&auml;higkeiten"
6129
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
+ "POT-Creation-Date: 2015-12-24 09:18-0500\n"
5
+ "PO-Revision-Date: 2015-12-24 09:18-0500\n"
6
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
7
  "Language-Team: TechnoViel <klaus@technoviel.de>\n"
8
  "Language: de_DE\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../admin/config/index.php:50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgid ""
22
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
23
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
24
  msgstr ""
25
 
26
+ #: ../admin/config/index.php:65
27
  msgid "Read access: username not found"
28
  msgstr "Lesezugriff: Benutzername nicht gefunden"
29
 
30
+ #: ../admin/config/index.php:75 ../admin/config/index.php:100
31
  #, fuzzy
32
  msgid ""
33
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
38
  "\"http://codex.wordpress.org/Roles_and_Capabilities\" target=\"_new\">hier</"
39
  "a>."
40
 
41
+ #: ../admin/config/index.php:90
42
  msgid "Config access: username not found"
43
  msgstr "Konfigurationszugriff: Benutzername nicht gefunden."
44
 
45
+ #: ../admin/config/index.php:109
46
+ msgid "Basic"
47
+ msgstr ""
48
 
49
+ #: ../admin/config/index.php:111 ../admin/config/index.php:132
50
  #, fuzzy
51
  msgid "Tracker"
52
  msgstr "Benutzer tracken"
53
 
54
+ #: ../admin/config/index.php:112
55
  #, fuzzy
56
+ msgid "Enable Tracking"
57
+ msgstr "Verfolgung aktivieren"
58
 
59
+ #: ../admin/config/index.php:112
60
  msgid "Turn the tracker on or off, while keeping the reports accessible."
61
  msgstr ""
62
 
63
+ #: ../admin/config/index.php:113
 
 
 
 
 
 
 
 
 
64
  #, fuzzy
65
  msgid "Tracking Mode"
66
  msgstr "Tracking aktiv"
67
 
68
+ #: ../admin/config/index.php:113
69
  #, fuzzy
70
  msgid ""
71
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
80
  "tzt ignorieren. Ein netter Nebeneffekt: Die meisten Spammer, Suchmaschinen "
81
  "und andere Crawler werden so nicht mehr berücksichtigt."
82
 
83
+ #: ../admin/config/index.php:113
84
+ msgid "Client Side"
85
  msgstr ""
86
 
87
+ #: ../admin/config/index.php:113
88
  #, fuzzy
89
+ msgid "Server Side"
90
  msgstr "Serverseitig"
91
 
92
+ #: ../admin/config/index.php:114
93
  msgid "Stealth Mode"
94
  msgstr ""
95
 
96
+ #: ../admin/config/index.php:114
97
  msgid ""
98
  "Do not add the javascript tracking code to your pages, if tracking mode is "
99
  "set to Server. Please note: if enabled, this will prevent the tracker from "
101
  "etc. This option is ignored is Tracking Mode is set to Client."
102
  msgstr ""
103
 
104
+ #: ../admin/config/index.php:114 ../admin/view/wp-slimstat-reports.php:1359
105
+ msgid "Off"
106
+ msgstr "Aus"
107
+
108
+ #: ../admin/config/index.php:114
109
+ msgid "On"
110
+ msgstr "An"
111
+
112
+ #: ../admin/config/index.php:115
113
  #, fuzzy
114
  msgid "Admin Pages"
115
  msgstr "Verfolgen Admin-Seiten"
116
 
117
  # correct, if admin = admin area
118
+ #: ../admin/config/index.php:115
119
  #, fuzzy
120
  msgid "Enable this option to track your users' activity within the admin."
121
  msgstr ""
122
  "Aktivieren Sie diese Option, wenn Sie die Aktivitäten Ihrer Benutzer "
123
  "innerhalb des Adminbereiches verfolgen wollen."
124
 
125
+ #: ../admin/config/index.php:115
126
  #, fuzzy
127
  msgid "Track"
128
  msgstr "Benutzer tracken"
129
 
130
+ #: ../admin/config/index.php:115
131
  #, fuzzy
132
  msgid "Do not track"
133
  msgstr "Bot oder Crawler"
134
 
135
+ #: ../admin/config/index.php:117
136
  msgid "WordPress Integration"
137
  msgstr "WordPress-Integration"
138
 
139
+ #: ../admin/config/index.php:118
140
  #, fuzzy
141
  msgid "Menu Position"
142
  msgstr "Suchmaschinenrang"
143
 
144
+ #: ../admin/config/index.php:118
145
  #, fuzzy
146
  msgid ""
147
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
150
  "Das Dashboard-Men&uuml; kann um ein eigenes WP SlimStat Men&uuml; erg&auml;"
151
  "nzt werden."
152
 
153
+ #: ../admin/config/index.php:118
154
  msgid "Side Menu"
155
  msgstr "Seitenmenü"
156
 
157
+ #: ../admin/config/index.php:118
158
  msgid "Admin Bar"
159
  msgstr "Adminleiste"
160
 
161
+ #: ../admin/config/index.php:119
162
  #, fuzzy
163
  msgid "Posts and Pages"
164
  msgstr "Top-Einstiegsseiten"
165
 
166
+ #: ../admin/config/index.php:119
167
  #, fuzzy
168
  msgid ""
169
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
170
+ "per post within the timeframe specified here below."
171
  msgstr ""
172
  "F&uuml;gt eine Spalte in der Beitrags&uuml;bersicht ein, welche die Anzahl "
173
  "der Zugriffe pro Beitrag anzeigt."
174
 
175
+ #: ../admin/config/index.php:120
 
 
 
 
 
 
 
 
 
 
 
176
  #, fuzzy
177
  msgid "Report Interval"
178
  msgstr "Eindeutige interne Zugriffe"
179
 
180
+ #: ../admin/config/index.php:120
181
  msgid ""
182
  "Enter the time range, in days, that should be used to calculate the value "
183
  "here above."
184
  msgstr ""
185
 
186
+ #: ../admin/config/index.php:121
187
  #, fuzzy
188
  msgid "Report Type"
189
  msgstr "Auswertungen"
190
 
191
+ #: ../admin/config/index.php:121
192
  msgid ""
193
  "Select what kind of information you would like to see displayed on the Posts "
194
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
195
  "IPs consider only one hit per user in the given time range."
196
  msgstr ""
197
 
198
+ #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:100
199
+ #: ../admin/view/wp-slimstat-reports.php:109
200
+ #: ../admin/view/wp-slimstat-reports.php:1375
201
+ #: ../admin/view/wp-slimstat-reports.php:1533
202
  msgid "Pageviews"
203
  msgstr "Seitenaufrufe"
204
 
205
+ #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:110
206
+ #: ../admin/view/wp-slimstat-reports.php:286
207
+ #: ../admin/view/wp-slimstat-reports.php:526
208
+ #: ../admin/view/wp-slimstat-reports.php:1390
209
+ #: ../admin/view/wp-slimstat-reports.php:1435
210
  msgid "Unique IPs"
211
  msgstr "Eindeutige IPs"
212
 
213
+ #: ../admin/config/index.php:122
214
+ #, fuzzy
215
+ msgid "Dashboard Widgets"
216
+ msgstr "&Uuml;bersicht"
217
+
218
+ #: ../admin/config/index.php:122
219
+ msgid ""
220
+ "Choose if you want to have the most important reports on your WordPress "
221
+ "Dashboard. Use the Screen Options dropdown to select which ones to display."
222
+ msgstr ""
223
+
224
+ #: ../admin/config/index.php:123
225
  #, fuzzy
226
  msgid "Hide Add-ons"
227
  msgstr "Add-Ons"
228
 
229
+ #: ../admin/config/index.php:123
230
  msgid ""
231
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
232
  "from the list of plugins in WordPress. Please note that you will still "
233
  "receive updates for hidden add-ons."
234
  msgstr ""
235
 
236
+ #: ../admin/config/index.php:125
237
  msgid "Database"
238
  msgstr "Datenbank"
239
 
240
+ #: ../admin/config/index.php:126
241
  msgid "Retain data for"
242
  msgstr ""
243
 
244
+ #: ../admin/config/index.php:126
245
  msgid ""
246
  "Clean-up log entries older than the number of days specified here above. "
247
  "Enter <strong>0</strong> (number zero) if you want to preserve your data "
248
  "regardless of its age."
249
  msgstr ""
250
 
251
+ #: ../admin/config/index.php:126
252
  msgid "Next clean-up on"
253
  msgstr "N&auml;chste Bereinigung "
254
 
255
+ #: ../admin/config/index.php:126
256
  #, fuzzy, php-format
257
  msgid ""
258
  "Entries logged on or before %s will be archived or deleted according to the "
261
  "Eintr&auml;ge, die vor dem %s erfasst wurden werden unwiderruflich gel&ouml;"
262
  "scht."
263
 
264
+ #: ../admin/config/index.php:126 ../admin/view/index.php:102
265
  #: ../admin/view/wp-slimstat-db.php:79
266
+ #: ../admin/view/wp-slimstat-reports.php:1359
267
  msgid "days"
268
  msgstr "Tage"
269
 
270
+ #: ../admin/config/index.php:127
271
  #, fuzzy
272
  msgid "Delete records"
273
  msgstr "Datensätze"
274
 
275
+ #: ../admin/config/index.php:127
276
  msgid ""
277
  "If DB space is not an issue, you can decide to archive older records in "
278
  "another table, instead of deleting them. This way performance is preserved, "
282
  "is uninstalled. Make sure to backup your data before you proceed."
283
  msgstr ""
284
 
285
+ #: ../admin/config/index.php:134
 
 
 
 
 
 
 
 
 
 
 
 
286
  #, fuzzy
287
+ msgid "Advanced Options"
288
+ msgstr "Erweiterte Filter"
 
 
 
 
289
 
290
+ #: ../admin/config/index.php:135
291
+ msgid "Session Duration"
292
+ msgstr "Besuchsdauer"
 
 
293
 
294
+ #: ../admin/config/index.php:135
295
  #, fuzzy
 
 
 
 
296
  msgid ""
297
+ "How many seconds should a human session last? Google Analytics sets it to "
298
+ "1800 seconds."
299
  msgstr ""
300
+ "Definiert, wie viele Sekunden ein Besuch dauern soll. Bei Google Analytics "
301
+ "wird hier 1.800 Sekunden vorgeschlagen."
302
 
303
+ #: ../admin/config/index.php:135 ../admin/config/index.php:205
304
+ msgid "seconds"
305
+ msgstr "Sekunden"
 
306
 
307
+ #: ../admin/config/index.php:136
308
+ msgid "Extend Session"
309
+ msgstr "Sitzung erweitern"
 
 
 
 
 
310
 
311
+ #: ../admin/config/index.php:136
312
  #, fuzzy
313
+ msgid "Extend the duration of a session each time the user visits a new page."
 
 
 
 
 
 
314
  msgstr ""
315
+ "Verlängert die Dauer einer Sitzung jedes Mal um die hier eingegebene Zahl an "
316
+ "Sekunden, wenn ein Benutzer eine neue Seite aufruft."
317
 
318
+ #: ../admin/config/index.php:137
319
+ msgid "Enable CDN"
320
+ msgstr "CDN aktivieren"
321
 
322
+ #: ../admin/config/index.php:137
323
+ msgid ""
324
+ "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
325
+ "by serving our tracking code from their fast and reliable network (free "
326
+ "service)."
327
  msgstr ""
328
 
329
+ #: ../admin/config/index.php:138
330
+ msgid "Extensions to Track"
331
+ msgstr "Zu verfolgende Erweiterungen"
 
 
 
 
332
 
333
+ #: ../admin/config/index.php:138
334
+ #, fuzzy
335
  msgid ""
336
+ "List all the file extensions that you want to be treated as Downloads. "
337
+ "Please note that links pointing to external resources (i.e. PDFs on a "
338
+ "different website) are considered Downloads and not Outbound Links (and "
339
+ "tracked as such), if their extension matches one of the ones listed here "
340
+ "below."
341
  msgstr ""
342
+ "Die folgenden (durch Beistriche getrennten) Dateitypen werden als "
343
+ "'Downloads' von WP SlimStat erkannt. Bitte beachten Sie, dass Links auf "
344
+ "externe Resourcen (zB PDFs von einer anderen Webseite) als 'Downloads' und "
345
+ "nicht als 'Ausgehende Links' gewertet werden, wenn der Typ in der folgenden "
346
+ "Liste enthalten ist."
347
 
348
+ #: ../admin/config/index.php:140
 
 
 
 
349
  #, fuzzy
350
+ msgid "Internal and Outbound Links"
351
+ msgstr "Letzte ausgehende Links"
352
 
353
+ #: ../admin/config/index.php:141
354
+ msgid "Track Outbound Clicks"
355
+ msgstr "Letzte ausgehende Links"
 
356
 
357
+ #: ../admin/config/index.php:141
358
+ msgid ""
359
+ "Track when your visitors click on link to external websites. This option "
360
+ "required Spy Mode to be enabled."
361
  msgstr ""
362
 
363
+ #: ../admin/config/index.php:142
364
  #, fuzzy
365
+ msgid "Track Coordinates"
366
+ msgstr "Tracking aktiv"
367
 
368
+ #: ../admin/config/index.php:142
369
  msgid ""
370
+ "Collect mouse coordinates and other information for clicks on internal "
371
+ "links. Strongly recommended if you're using the heatmap add-on. By default, "
372
+ "this information is only collected for external links."
373
  msgstr ""
374
 
375
+ #: ../admin/config/index.php:143
376
+ msgid "No Callback"
377
  msgstr ""
378
 
379
+ #: ../admin/config/index.php:143
 
 
 
 
 
380
  msgid ""
381
+ "Track the event but do not invoke the callback function on links marked with "
382
+ "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
383
+ "attribute contains one of these strings (separated by comma). Useful to "
384
+ "prevent conflicts with lightbox and similar libraries."
385
  msgstr ""
 
 
 
 
 
 
386
 
387
+ #: ../admin/config/index.php:144
388
+ msgid "Do Not Track"
389
  msgstr ""
390
 
391
+ #: ../admin/config/index.php:144
 
 
 
 
 
 
 
 
 
392
  msgid ""
393
+ "Do not track links marked with one of these class names, <em>rel</em> "
394
+ "attributes or whose <em>href</em> attribute contains one of these strings "
395
+ "(separated by comma)."
 
 
396
  msgstr ""
397
 
398
+ #: ../admin/config/index.php:146
399
+ msgid "Pages not belonging to this site"
400
+ msgstr ""
 
401
 
402
+ #: ../admin/config/index.php:147
403
  msgid ""
404
+ "Add the following code to all the non-WP pages you want to track, right "
405
+ "before the closing BODY tag. Please make sure to change the protocol of all "
406
+ "the URLs to HTTPS, if you external site is served over a secure channel."
 
407
  msgstr ""
408
 
409
+ #: ../admin/config/index.php:157
410
  #, fuzzy
411
+ msgid "Allow External Domains"
412
+ msgstr "Gesamte Seitenaufrufe"
413
 
414
+ #: ../admin/config/index.php:157
 
415
  msgid ""
416
+ "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
417
+ "header is present on the requested resource, when using the external "
418
+ "tracking code here above, list the domains (complete with scheme, separated "
419
+ "by commas) you would like to allow. For example: <code>http://my.domain.ext</"
420
+ "code> (no trailing slash). Please see <a href='http://www.w3.org/TR/cors/"
421
+ "#security' target='_blank'>this W3 resource</a> for more information on the "
422
+ "security implications of allowing CORS requests."
423
  msgstr ""
 
 
 
 
 
 
424
 
425
+ #: ../admin/config/index.php:158 ../admin/config/index.php:180
426
+ #: ../admin/config/index.php:208
427
+ msgid "Miscellaneous"
428
+ msgstr "Diverse"
 
 
429
 
430
+ #: ../admin/config/index.php:159
431
+ #, fuzzy
432
+ msgid "Enable UAN"
433
+ msgstr "ADN aktivieren"
434
 
435
+ #: ../admin/config/index.php:159
436
  msgid ""
437
+ "Send anonymous data about user agents to our server for analysis. This "
438
+ "allows us to contribute to the <a href='http://browscap.org/' "
439
+ "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
440
+ "Slimstat's browser detection functionality. It also enables our transparent "
441
+ "ads network. No worries, your site will not be affected in any way."
 
442
  msgstr ""
443
 
444
+ #: ../admin/config/index.php:164
445
  msgid "Filters"
446
  msgstr "Filter"
447
 
448
+ #: ../admin/config/index.php:166
449
  #, fuzzy
450
+ msgid "Do not track settings"
451
+ msgstr "Bot oder Crawler"
452
 
453
+ #: ../admin/config/index.php:167
454
  #, fuzzy
455
  msgid "Track Registered Users"
456
  msgstr "Benutzer tracken"
457
 
458
+ #: ../admin/config/index.php:167
459
  #, fuzzy
460
  msgid "Enable this option to track logged in users."
461
  msgstr "Ja falls eingeloggte Benutzer getrackt werden sollen."
462
 
463
+ #: ../admin/config/index.php:168
464
  #, fuzzy
465
  msgid "Blacklist by Username"
466
  msgstr "IP-Adresse"
467
 
468
+ #: ../admin/config/index.php:168
469
  #, fuzzy
470
  msgid ""
471
  "List all the usernames you don't want to track, separated by commas. Please "
472
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
473
+ "sensitive. Wildcards: <code>*</code> matches 'any string, including the "
474
+ "empty string', <code>!</code> matches 'any character'. For example, "
475
+ "<code>user*</code> will match user12 and userfoo, <code>u*100</code> will "
476
+ "match user100 and uber100, <code>user!0</code> will match user10 and user90."
477
  msgstr ""
478
+ "Eine Komma-separierte Liste von URLs, deren Zugriffe WP SlimStat ignorieren "
479
+ "soll. Den Domain-Namen nicht verwenden: /about, ?p=1, etc. Szchmasken: "
480
+ "<code>*</code> steht für einen beliebigen Text, einschl. eines leeren "
481
+ "Textes. <code>!</code> steht für ein beliebiges Zeichen. Zum Beispiel "
482
+ "erfasst <code>/abou*</code> Folgendes: /about und /abound, <code>/abo*t</"
483
+ "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
484
+ "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
485
 
486
+ #: ../admin/config/index.php:169
487
  #, fuzzy
488
  msgid "Blacklist by IP Address"
489
  msgstr "IP-Adresse"
490
 
491
+ #: ../admin/config/index.php:169
492
  #, fuzzy
493
  msgid ""
494
  "List all the IP addresses you don't want to track, separated by commas. Each "
503
  "(z.B. <em>192.168.0.0/24</em>) definiert werden. Bei inkorrektem Format kann "
504
  "WP SlimStat evtl. nicht die Pageviews korrekt tracken."
505
 
506
+ #: ../admin/config/index.php:170
507
  #, fuzzy
508
  msgid "Blacklist by Capability"
509
  msgstr "Benutzer nach Browserf&auml;higkeiten"
510
 
511
+ #: ../admin/config/index.php:170
512
  #, fuzzy
513
  msgid ""
514
  "Users having at least one of the <a href='http://codex.wordpress.org/"
519
  "wordpress.org/Roles_and_Capabilities' target='_new'>CAPABILITIES</a> haben, "
520
  "werden nicht verfolgt. Bitte Groß-/Kleinschreibung beachten."
521
 
522
+ #: ../admin/config/index.php:172
523
  msgid "Profiling"
524
  msgstr ""
525
 
526
+ #: ../admin/config/index.php:173
527
  msgid "Ignore Spammers"
528
  msgstr "Spammer ignorieren"
529
 
530
+ #: ../admin/config/index.php:173
531
  #, fuzzy
532
  msgid ""
533
  "Enable this option if you don't want to track visits from users identified "
540
  "Kommentare später von Ihnen als Spam markiert werden, werden ebenso aus der "
541
  "Datenbank entfernt."
542
 
543
+ #: ../admin/config/index.php:174
544
  #, fuzzy
545
  msgid "Ignore Bots"
546
  msgstr "Ignoriere Benutzer"
547
 
548
+ #: ../admin/config/index.php:174
549
  msgid ""
550
  "Turn on this feature if you want to have the accuracy level of server-side "
551
  "tracking, but not the inconvenience of getting your database clogged with "
553
  "note that in Client mode, bots are ignored regardless of this setting."
554
  msgstr ""
555
 
556
+ #: ../admin/config/index.php:175
557
  msgid "Permalinks"
558
  msgstr "Permalinks"
559
 
560
+ #: ../admin/config/index.php:175
561
  #, fuzzy
562
  msgid ""
563
  "List all the URLs on your website that you don't want to track, separated by "
576
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
577
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
578
 
579
+ #: ../admin/config/index.php:176
580
  msgid "Countries"
581
  msgstr "L&auml;nder"
582
 
583
+ #: ../admin/config/index.php:176
584
  msgid ""
585
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
586
  "track, separated by commas."
588
  "Liste der L&auml;dercodes (z.B.: <code>en-us, de, it, es</code>), die nicht "
589
  "mit erfasst werden sollen, getrennt durch Kommata."
590
 
591
+ #: ../admin/config/index.php:177
592
  msgid "User Agents"
593
  msgstr "User Agents"
594
 
595
+ #: ../admin/config/index.php:177
596
  #, fuzzy
597
  msgid ""
598
  "Browsers (user agents) you don't want to track, separated by commas. You can "
610
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
611
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
612
 
613
+ #: ../admin/config/index.php:178
614
  msgid "Referring Sites"
615
  msgstr "Verweisende Webseiten"
616
 
617
+ #: ../admin/config/index.php:178
618
  #, fuzzy
619
  msgid ""
620
  "Referring URLs that you don't want to track, separated by commas: "
632
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
633
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
634
 
635
+ #: ../admin/config/index.php:181
636
+ msgid "Enable Privacy Mode"
637
+ msgstr ""
638
+
639
+ #: ../admin/config/index.php:181
640
+ #, fuzzy
641
+ msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
642
+ msgstr ""
643
+ "Diese Option maskiert das letzte Byte der IP-Adressen Ihrere Besucher um die "
644
+ "Europ&auml;ischen Datenschutzgesetze zur erf&uuml;llen."
645
+
646
+ #: ../admin/config/index.php:182
647
+ msgid "Ignore Prefetch Requests"
648
+ msgstr ""
649
+
650
+ #: ../admin/config/index.php:182
651
+ #, fuzzy
652
+ msgid ""
653
+ "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
654
+ "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
655
+ "target='_blank'>Link Prefetching functionality</a>."
656
+ msgstr ""
657
+ "Verhindert, dass WP SlimStat Pageviews trackt, die durch die <a "
658
+ "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' target='_blank'>"
659
+
660
+ #: ../admin/config/index.php:187 ../admin/config/index.php:220
661
+ msgid "Reports"
662
+ msgstr "Auswertungen"
663
+
664
+ #: ../admin/config/index.php:189
665
+ msgid "Formats and Conversions"
666
+ msgstr ""
667
+
668
+ #: ../admin/config/index.php:190
669
+ msgid "Number Format"
670
+ msgstr "Zahlenformat"
671
+
672
+ #: ../admin/config/index.php:190
673
+ #, fuzzy
674
+ msgid "Choose the number format you want to use for your reports."
675
+ msgstr "Das zu verwendente Zahlenformat ausw&auml;hlen (metrisch o. imperial)."
676
+
677
+ #: ../admin/config/index.php:191
678
+ msgid "Date Format"
679
+ msgstr "Datum"
680
+
681
+ #: ../admin/config/index.php:191
682
+ msgid ""
683
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
684
+ "Format</a> to use when displaying a pageview's date."
685
+ msgstr ""
686
+
687
+ #: ../admin/config/index.php:192
688
+ #, fuzzy
689
+ msgid "Time Format"
690
+ msgstr "Zahlenformat"
691
+
692
+ #: ../admin/config/index.php:192
693
+ msgid ""
694
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
695
+ "Format</a> to use when displaying a pageview's time."
696
+ msgstr ""
697
+
698
+ #: ../admin/config/index.php:193
699
+ #, fuzzy
700
+ msgid "Use Display Name"
701
+ msgstr "Spitznamen anzeigen"
702
+
703
+ #: ../admin/config/index.php:193
704
+ #, fuzzy
705
+ msgid ""
706
+ "By default, users are listed by their usernames. Use this option to "
707
+ "visualize their display names instead."
708
+ msgstr ""
709
+ "Standardmäßig werden die Benutzernamen aufgelistet. Benutzen Sie diese "
710
+ "Option, um dafür stattdessen die Spitznamen anzeigen zu lassen,"
711
+
712
+ #: ../admin/config/index.php:194
713
+ #, fuzzy
714
+ msgid "Use Titles"
715
+ msgstr "Titel anzeigen"
716
+
717
+ #: ../admin/config/index.php:194
718
+ msgid ""
719
+ "Slimstat converts your permalinks into post, page and category titles. "
720
+ "Disable this feature if you need to see the URL in your reports."
721
+ msgstr ""
722
+
723
+ #: ../admin/config/index.php:195
724
+ msgid "Convert IP Addresses"
725
+ msgstr "IP-Adressen umwandeln"
726
+
727
+ #: ../admin/config/index.php:195
728
+ msgid "Display provider names instead of IP addresses."
729
+ msgstr ""
730
+
731
+ #: ../admin/config/index.php:197
732
+ msgid "Functionality"
733
+ msgstr "Funktionalität"
734
+
735
+ #: ../admin/config/index.php:198
736
+ msgid "SlimScroll"
737
+ msgstr ""
738
+
739
+ #: ../admin/config/index.php:198
740
+ msgid ""
741
+ "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
742
+ "scrollbar."
743
+ msgstr ""
744
+
745
+ #: ../admin/config/index.php:199
746
+ msgid "Expand Details"
747
+ msgstr "Details anzeigen"
748
+
749
+ #: ../admin/config/index.php:199
750
  #, fuzzy
751
+ msgid "Expand each row's details by default, insted of on mousehover."
752
+ msgstr "Zeigt in allen Zeilen die Details und nicht nur beim Mouse-Over"
753
 
754
+ #: ../admin/config/index.php:200 ../admin/config/index.php:206
755
+ #, fuzzy
756
+ msgid "Rows to Display"
757
+ msgstr "keine Daten vorhanden"
758
 
759
+ #: ../admin/config/index.php:200
760
+ msgid "Specify the number of items in each report."
 
 
761
  msgstr ""
762
 
763
+ #: ../admin/config/index.php:201 ../admin/view/wp-slimstat-db.php:101
764
  #, fuzzy
765
+ msgid "Max Results"
766
+ msgstr "Max. Anzahl Ergebnisse"
767
 
768
+ #: ../admin/config/index.php:201
769
  msgid ""
770
+ "Decide how many records should be retrieved from the database in total. "
771
+ "Depending on your server configuration, you may want to fine tune this value "
772
+ "to avoid exceeding your PHP memory limit."
773
  msgstr ""
774
 
775
+ #: ../admin/config/index.php:202
776
+ msgid "IP Lookup"
777
+ msgstr "IP Suche"
778
+
779
+ #: ../admin/config/index.php:202
780
+ msgid "Customize the Geolocation service to be used in the reports."
781
  msgstr ""
782
 
783
+ #: ../admin/config/index.php:204
784
+ msgid "Activity Log"
785
+ msgstr ""
786
+
787
+ #: ../admin/config/index.php:205
788
+ msgid "Live Stream"
789
+ msgstr "Livestream"
790
+
791
+ #: ../admin/config/index.php:205
792
+ #, fuzzy
793
  msgid ""
794
+ "Enable the Live view, which refreshes the Activity Log every X seconds. "
795
+ "Enter <strong>0</strong> (number zero) to deactivate this feature."
 
 
796
  msgstr ""
797
+ "Anzeige der aktuell aktiven Besucher alle X Sekunden aktualisieren. Null "
798
+ "deaktiviert diese Funktion."
799
 
800
+ #: ../admin/config/index.php:206
801
+ msgid "Specify the number of items in the Activity Log."
802
  msgstr ""
803
 
804
+ #: ../admin/config/index.php:209
805
+ msgid "Custom CSS"
806
+ msgstr "Benutzerdefinierte CSS"
807
+
808
+ #: ../admin/config/index.php:209
809
  msgid ""
810
+ "Paste here your custom stylesheet to personalize the way your reports look. "
811
+ "<a href='https://slimstat.freshdesk.com/support/solutions/"
812
+ "articles/5000528528-how-can-i-change-the-colors-associated-to-color-coded-"
813
+ "pageviews-known-user-known-visitors-search-e' target='_blank'>Check the FAQ</"
814
+ "a> for more information on how to use this setting."
815
  msgstr ""
816
 
817
+ #: ../admin/config/index.php:210
818
+ #, fuzzy
819
+ msgid "Chart Colors"
820
+ msgstr "Diagramm-Einstellungen"
821
+
822
+ #: ../admin/config/index.php:210
823
+ msgid ""
824
+ "Customize the look and feel of your charts by assigning personalized colors "
825
+ "to each metric. List 4 hex colors separated by commas, strictly in the "
826
+ "following order: metric 1 previous, metric 2 previous, metric 1 current, "
827
+ "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
828
  msgstr ""
829
 
830
+ #: ../admin/config/index.php:211
831
  #, fuzzy
832
+ msgid "Show User Agent"
833
+ msgstr "Top Browser"
834
+
835
+ #: ../admin/config/index.php:211
836
+ #, fuzzy
837
+ msgid ""
838
+ "Choose if you want to see the browser name or a complete user agent string "
839
+ "when hovering on browser icons."
840
  msgstr ""
841
+ "Wählen Sie, ob der Browsername oder ein kompletter USER AGENT STRING "
842
+ "angezeigt werden soll, wenn Sie auf die Browsersymbole zeigen."
843
 
844
+ #: ../admin/config/index.php:212
845
+ msgid "Enable SOV"
846
+ msgstr "SOV aktivieren"
847
+
848
+ #: ../admin/config/index.php:212
849
+ msgid ""
850
+ "In linguistic typology, a subject-object-verb (SOV) language is one in which "
851
+ "the subject, object, and verb of a sentence appear in that order, like in "
852
+ "Japanese."
853
  msgstr ""
854
 
855
+ #: ../admin/config/index.php:213
856
+ msgid "Social Analytics"
857
+ msgstr ""
858
+
859
+ #: ../admin/config/index.php:213
860
  msgid ""
861
+ "Thanks to a <a href='http://getsocial.io/enterprise' "
862
+ "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
863
+ "set of analytics for social media where you can identify top performing "
864
+ "posts. Track social sharing to understand which of your posts are generating "
865
+ "more engagement. When this option is enabled, Slimstat sends a list of all "
866
+ "your posts's URLs to their service for analysis once daily."
867
  msgstr ""
 
 
868
 
869
+ #: ../admin/config/index.php:218
870
+ msgid "Access Control"
871
+ msgstr ""
872
 
873
+ #: ../admin/config/index.php:221
874
  msgid "Restrict Authors"
875
  msgstr "Autoren einschränken"
876
 
877
+ #: ../admin/config/index.php:221
878
  #, fuzzy
879
  msgid ""
880
  "Enable this option if you want your authors to only see stats related to "
883
  "Aktivieren Sie diese Option, wenn Ihre Autoren nur Statistiken zu Ihrem "
884
  "eigenen Inhalt ansehen können."
885
 
886
+ #: ../admin/config/index.php:222 ../admin/config/index.php:226
887
  #, fuzzy
888
  msgid "Capability"
889
  msgstr "Benutzer nach Browserf&auml;higkeiten"
890
 
891
+ #: ../admin/config/index.php:222
892
  #, fuzzy
893
  msgid ""
894
  "Specify the minimum <a href='http://codex.wordpress.org/"
905
  "Berichte, Außer eine 'Lesezugriffs'-Whitelist wurde weiter unten festgelegt, "
906
  "welche Vorrang über die CAPABILITY hat."
907
 
908
+ #: ../admin/config/index.php:223 ../admin/config/index.php:227
909
  msgid "Whitelist"
910
  msgstr "Whitelist"
911
 
912
+ #: ../admin/config/index.php:223
913
  #, fuzzy
914
  msgid ""
915
  "List all the users who should have access to the reports, separated by "
921
  "angeführt werden. Wenn dieses Feld leer ist der Zugriff <strong>allen Ihren "
922
  "Benutzern</strong> erlaubt. Bitte Groß-/Kleinschreibung beachten."
923
 
924
+ #: ../admin/config/index.php:225 ../admin/config/index.php:250
925
+ #: ../admin/wp-slimstat-admin.php:532 ../admin/wp-slimstat-admin.php:535
926
+ #: ../wp-slimstat.php:1803
927
  msgid "Settings"
928
  msgstr "Einstellungen"
929
 
930
+ #: ../admin/config/index.php:226
931
  #, fuzzy
932
  msgid ""
933
  "Specify the minimum <a href='http://codex.wordpress.org/"
942
  "Berichte, Außer eine 'Lesezugriffs'-Whitelist wurde weiter unten festgelegt, "
943
  "welche Vorrang über die CAPABILITY hat."
944
 
945
+ #: ../admin/config/index.php:227
946
  #, fuzzy
947
  msgid ""
948
  "List all the users who can edit these options, separated by commas. Please "
956
  "Benutzer bekommen automatisch auch 'Lesezugriff' auf die WP SlimStat-"
957
  "Berichte. Bitte Groß-/Kleinschreibung beachten."
958
 
959
+ #: ../admin/config/index.php:232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
960
  msgid "Maintenance"
961
  msgstr "Wartung"
962
 
963
+ #: ../admin/config/index.php:237 ../admin/view/addons.php:32
964
+ #: ../admin/wp-slimstat-admin.php:490 ../admin/wp-slimstat-admin.php:505
965
+ #: ../wp-slimstat.php:1800
966
+ msgid "Add-ons"
967
+ msgstr "Add-Ons"
968
+
969
  #: ../admin/config/maintenance.php:16
970
  #, fuzzy
971
  msgid ""
976
  "watch?v=1mgvE55HpcU\" target=\"_blank\">wahnsinnige Geschwindigkeit</a> "
977
  "optimiert."
978
 
979
+ #: ../admin/config/maintenance.php:27
980
  msgid "Indexing has been disabled. Enjoy the extra database space!"
981
  msgstr ""
982
 
983
+ #: ../admin/config/maintenance.php:43
984
  msgid "records deleted from your database."
985
  msgstr "Datensätze von Ihrer Datenbank gelöscht."
986
 
987
+ #: ../admin/config/maintenance.php:48
988
  msgid "The geolocation database has been uninstalled from your server."
989
  msgstr ""
990
 
991
+ #: ../admin/config/maintenance.php:58
992
  msgid "The geolocation database has been installed on your server."
993
  msgstr ""
994
 
995
+ #: ../admin/config/maintenance.php:166
996
  msgid ""
997
  "Your data was successfully imported. You may now drop the old tables: "
998
  "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
1001
  "delete the old tables."
1002
  msgstr ""
1003
 
1004
+ #: ../admin/config/maintenance.php:175
1005
  msgid "Your reports were successfully restored to their default arrangement."
1006
  msgstr ""
1007
 
1008
+ #: ../admin/config/maintenance.php:185
1009
  #, fuzzy
1010
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1011
  msgstr ""
1012
  "Ihre WP SlimStat Datenbank wurden erfolgreich ins InnoDB-Format konvertiert."
1013
 
1014
+ #: ../admin/config/maintenance.php:191
1015
  #, fuzzy
1016
  msgid "All the archived records were successfully deleted."
1017
  msgstr "Alle Aufzeichnungen wurden erfolgreich gelöscht."
1018
 
1019
+ #: ../admin/config/maintenance.php:199
1020
  msgid "All the records were successfully deleted."
1021
  msgstr "Alle Aufzeichnungen wurden erfolgreich gelöscht."
1022
 
1023
+ #: ../admin/config/maintenance.php:221
1024
  msgid "Debugging"
1025
  msgstr ""
1026
 
1027
+ #: ../admin/config/maintenance.php:224
1028
+ #, fuzzy
1029
+ msgid "Tracker Status"
1030
+ msgstr "Benutzer tracken"
1031
 
1032
+ #: ../admin/config/maintenance.php:226
1033
  #, fuzzy
1034
  msgid "recorded on"
1035
  msgstr "Datensätze"
1036
 
1037
+ #: ../admin/config/maintenance.php:226
1038
  msgid "No Errors so far"
1039
  msgstr ""
1040
 
1041
+ #: ../admin/config/maintenance.php:227
1042
  msgid ""
1043
  "The information here above is useful to troubleshoot issues with the "
1044
+ "tracker. It includes both <strong>errors</strong>, which are returned when "
1045
+ "the tracker could not record a pageview and are indicative of some kind of "
1046
+ "malfunction, and <strong>notices</strong>, which explain the reason why the "
1047
+ "most recent pageview was not recorded, based on your settings (filters, "
1048
+ "blackslists, etc). Please include this code when sending a support request."
1049
+ msgstr ""
1050
+
1051
+ #: ../admin/config/maintenance.php:233
1052
+ #, fuzzy
1053
+ msgid "Enable SQL Debug"
1054
+ msgstr "SOV aktivieren"
1055
+
1056
+ #: ../admin/config/maintenance.php:236
1057
+ msgid ""
1058
+ "Display the SQL code used to retrieve the data from the database. Useful to "
1059
+ "troubleshoot issues with data consistency or missing pageviews."
1060
+ msgstr ""
1061
+
1062
+ #: ../admin/config/maintenance.php:240
1063
+ msgid "Disable SQL Debug"
1064
+ msgstr ""
1065
+
1066
+ #: ../admin/config/maintenance.php:243
1067
+ msgid "Deactivate the SQL output on top of each report."
1068
  msgstr ""
1069
 
1070
+ #: ../admin/config/maintenance.php:248
1071
  msgid "Layout"
1072
  msgstr ""
1073
 
1074
+ #: ../admin/config/maintenance.php:251
1075
  #, fuzzy
1076
  msgid ""
1077
  "Are you sure you want to restore the default arrangement of your reports?"
1078
  msgstr "Datenbanktabellen wirklich zurücksetzen?"
1079
 
1080
+ #: ../admin/config/maintenance.php:251
1081
  msgid "No Panic Button"
1082
  msgstr ""
1083
 
1084
+ #: ../admin/config/maintenance.php:253
1085
  msgid ""
1086
  "Reset the default arrangement of your reports. Helpful when, for some "
1087
  "reason, reports disappear from your panels or something doesn't look right "
1088
  "in your views."
1089
  msgstr ""
1090
 
1091
+ #: ../admin/config/maintenance.php:257
1092
  msgid "Data Maintenance"
1093
  msgstr "Datenwartung"
1094
 
1095
+ #: ../admin/config/maintenance.php:260
1096
  #, fuzzy
1097
  msgid "Delete pageviews where"
1098
  msgstr "Lösche Seitenaufrufe, wo"
1099
 
1100
+ #: ../admin/config/maintenance.php:274 ../admin/view/index.php:16
1101
  msgid "equals"
1102
  msgstr "entspricht"
1103
 
1104
+ #: ../admin/config/maintenance.php:275 ../admin/view/index.php:17
1105
  msgid "is not equal to"
1106
  msgstr "ist ungleich zu"
1107
 
1108
+ #: ../admin/config/maintenance.php:276 ../admin/view/index.php:18
1109
  msgid "contains"
1110
  msgstr "enth&auml;lt"
1111
 
1112
+ #: ../admin/config/maintenance.php:277 ../admin/view/index.php:19
1113
  msgid "is included in"
1114
  msgstr ""
1115
 
1116
+ #: ../admin/config/maintenance.php:278 ../admin/view/index.php:20
1117
  msgid "does not contain"
1118
  msgstr "enth&auml;lt nicht"
1119
 
1120
+ #: ../admin/config/maintenance.php:279 ../admin/view/index.php:21
1121
  msgid "starts with"
1122
  msgstr "beginnt mit"
1123
 
1124
+ #: ../admin/config/maintenance.php:280 ../admin/view/index.php:22
1125
  msgid "ends with"
1126
  msgstr "endet mit"
1127
 
1128
+ #: ../admin/config/maintenance.php:281 ../admin/view/index.php:23
1129
  msgid "sounds like"
1130
  msgstr "&auml;hnelt"
1131
 
1132
+ #: ../admin/config/maintenance.php:282 ../admin/view/index.php:24
1133
  msgid "is greater than"
1134
  msgstr "ist gr&ouml;sser als"
1135
 
1136
+ #: ../admin/config/maintenance.php:283 ../admin/view/index.php:25
1137
  msgid "is less than"
1138
  msgstr "ist kleiner als"
1139
 
1140
+ #: ../admin/config/maintenance.php:284 ../admin/view/index.php:27
1141
  msgid "matches"
1142
  msgstr "entspricht"
1143
 
1144
+ #: ../admin/config/maintenance.php:285 ../admin/view/index.php:28
1145
  msgid "does not match"
1146
  msgstr "entspricht nicht"
1147
 
1148
+ #: ../admin/config/maintenance.php:286 ../admin/view/index.php:29
1149
  msgid "is empty"
1150
  msgstr "ist leer"
1151
 
1152
+ #: ../admin/config/maintenance.php:287 ../admin/view/index.php:30
1153
  msgid "is not empty"
1154
  msgstr "ist nicht leer"
1155
 
1156
+ #: ../admin/config/maintenance.php:290 ../admin/view/index.php:42
1157
  #: ../admin/view/index.php:105
1158
  msgid "Apply"
1159
  msgstr "Anwenden"
1160
 
1161
+ #: ../admin/config/maintenance.php:291
1162
  #, fuzzy
1163
  msgid ""
1164
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1166
  "Sind Sie wirklich sicher, dass Sie diese Datensätze UNWIDERRUFLICH aus Ihrer "
1167
  "Datenbank löschen möchten?"
1168
 
1169
+ #: ../admin/config/maintenance.php:298
1170
  #, fuzzy
1171
  msgid ""
1172
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1175
  "Sind Sie wirklich sicher, dass Sie diese Datensätze UNWIDERRUFLICH aus Ihrer "
1176
  "Datenbank löschen möchten?"
1177
 
1178
+ #: ../admin/config/maintenance.php:298
1179
  #, fuzzy
1180
  msgid "Delete All Records"
1181
  msgstr "Alle Seitenaufrufe löschen"
1182
 
1183
+ #: ../admin/config/maintenance.php:301
1184
  msgid ""
1185
  "Erase all the information collected so far by Slimstat, including the "
1186
  "archive. This operation <strong>does not</strong> reset your settings."
1187
  msgstr ""
1188
 
1189
+ #: ../admin/config/maintenance.php:307
1190
  #, fuzzy
1191
  msgid ""
1192
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1195
  "Sind Sie wirklich sicher, dass Sie diese Datensätze UNWIDERRUFLICH aus Ihrer "
1196
  "Datenbank löschen möchten?"
1197
 
1198
+ #: ../admin/config/maintenance.php:307
1199
  #, fuzzy
1200
  msgid "Delete Archive"
1201
  msgstr "Lösche Seitenaufrufe, wo"
1202
 
1203
+ #: ../admin/config/maintenance.php:310
1204
  msgid "Erase all the archived records. This operation cannot be undone."
1205
  msgstr ""
1206
 
1207
+ #: ../admin/config/maintenance.php:316
1208
  msgid "Improve Performance"
1209
  msgstr "Leistung erhöhen"
1210
 
1211
+ #: ../admin/config/maintenance.php:320
1212
  #, fuzzy
1213
  msgid ""
1214
  "Please note that you will need about 30% more DB space to store the extra "
1218
  "verbessern. Die Datenbank benötigt dafür ca. 30% mehr Speicherplatz, damit "
1219
  "die notwendigen zusätzlichne Informationen gespeichert werden können."
1220
 
1221
+ #: ../admin/config/maintenance.php:324
1222
  msgid "Save DB Space"
1223
  msgstr "Datenbank-Speicherplatz sparen"
1224
 
1225
+ #: ../admin/config/maintenance.php:327
1226
  msgid ""
1227
  "Please note that by removing table indexes, Slimstat's performance will be "
1228
  "affected."
1229
  msgstr ""
1230
 
1231
+ #: ../admin/config/maintenance.php:334
1232
  msgid ""
1233
  "Hold on tight, we are about to import all your old data. Are you sure you "
1234
  "want to proceed?"
1235
  msgstr ""
1236
 
1237
+ #: ../admin/config/maintenance.php:334
1238
  msgid "Import old data"
1239
  msgstr ""
1240
 
1241
+ #: ../admin/config/maintenance.php:337
1242
  msgid ""
1243
  "Import all the records from the old table structure. No data will be deleted "
1244
  "from your database."
1245
  msgstr ""
1246
 
1247
+ #: ../admin/config/maintenance.php:341
1248
  msgid "MaxMind IP to Country"
1249
  msgstr ""
1250
 
1251
+ #: ../admin/config/maintenance.php:347
1252
  msgid ""
1253
  "Do you want to download and install the geolocation database from MaxMind's "
1254
  "server?"
1255
  msgstr ""
1256
 
1257
+ #: ../admin/config/maintenance.php:347
1258
  msgid "Install GeoLite DB"
1259
  msgstr ""
1260
 
1261
+ #: ../admin/config/maintenance.php:350
1262
  msgid "Do you want to uninstall the geolocation database?"
1263
  msgstr ""
1264
 
1265
+ #: ../admin/config/maintenance.php:350
1266
  msgid "Uninstall GeoLite DB"
1267
  msgstr ""
1268
 
1269
+ #: ../admin/config/maintenance.php:354
1270
  msgid ""
1271
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1272
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
1276
  "enable this functionality."
1277
  msgstr ""
1278
 
1279
+ #: ../admin/config/maintenance.php:359
1280
  msgid "Import and Export"
1281
  msgstr ""
1282
 
1283
+ #: ../admin/config/maintenance.php:363
1284
  msgid ""
1285
  "Here below you can find the current configuration string for Slimstat. You "
1286
  "can update your settings by pasting a new string inside the text area and "
1287
  "clicking the Import button."
1288
  msgstr ""
1289
 
1290
+ #: ../admin/config/maintenance.php:368
1291
  msgid "Import"
1292
  msgstr "Import"
1293
 
1294
+ #: ../admin/config/maintenance.php:369
1295
  msgid "Are you sure you want to OVERWRITE your current settings?"
1296
  msgstr "Derzeitige Einstellungen wirklich zurücksetzen?"
1297
 
1298
+ #: ../admin/config/maintenance.php:374
1299
  msgid "Database Information"
1300
  msgstr "Datenbankinformation"
1301
 
1302
  # depends on context:
1303
  # Engine = Maschine, Motor, Triebwerk or Antrieb
1304
  # Search engine = Suchmaschine
1305
+ #: ../admin/config/maintenance.php:377
1306
  #, fuzzy
1307
  msgid "Engine"
1308
  msgstr "Suchmaschinen"
1309
 
1310
+ #: ../admin/config/maintenance.php:381
1311
  msgid "switch to InnoDB"
1312
  msgstr "zu InnoDB wechseln"
1313
 
1314
+ #: ../admin/config/maintenance.php:392
1315
  msgid "records"
1316
  msgstr "Datensätze"
1317
 
1318
+ #: ../admin/view/addons.php:15
1319
+ msgid ""
1320
+ "There was an error retrieving the add-ons list from the server. Please try "
1321
+ "again later. Error Message:"
1322
+ msgstr ""
1323
+ "Es gabe einen Fehler beim Abruf der Add-on-Liste vom Server. Bitte später "
1324
+ "nochmals versuchen. Fehlermeldung:"
1325
+
1326
+ #: ../admin/view/addons.php:25
1327
+ msgid ""
1328
+ "There was an error decoding the add-ons list from the server. Please try "
1329
+ "again later."
1330
+ msgstr ""
1331
+ "Fehler beim Auslesen der Add-on-Liste vom Server. Versuchen Sie es später "
1332
+ "nochmals."
1333
+
1334
+ #: ../admin/view/addons.php:33
1335
+ #, fuzzy
1336
+ msgid ""
1337
+ "Add-ons extend the functionality of Slimstat in many interesting ways. We "
1338
+ "offer both free and premium (paid) extensions. Each add-on can be installed "
1339
+ "as a separate plugin, which will receive regular updates via the WordPress "
1340
+ "Plugins panel. In order to be notified when a new version of a premium add-"
1341
+ "on is available, please enter the <strong>license key</strong> you received "
1342
+ "when you purchased it."
1343
+ msgstr ""
1344
+ "Add-ons erweitern die Funktionalität von WP SlimStat auf viele interessante "
1345
+ "Arten. Wir bieten sowohl Gratis-, als auch Premium-(Kauf-)Erweiterungen. "
1346
+ "Jedes Add-on kann als separates Plugin installiert werden, dass via "
1347
+ "WordPress regelmäßig upgedated wird. Um auch Aktualisierungen für Premium-"
1348
+ "Add-ons zu bekommen, muss der beim Kauf erhaltene <strong>Lizenzschlüssel</"
1349
+ "strong> eingegeben werden."
1350
+
1351
+ #: ../admin/view/addons.php:37
1352
+ #, php-format
1353
+ msgid ""
1354
+ "This list is refreshed once daily: <a href=\"%s&amp;force_refresh=true"
1355
+ "\">click here</a> to clear the cache."
1356
+ msgstr ""
1357
+
1358
+ #: ../admin/view/addons.php:46
1359
+ msgid "Add-on"
1360
+ msgstr "Add-on"
1361
+
1362
+ #: ../admin/view/addons.php:46
1363
+ msgid "Description"
1364
+ msgstr "Beschreibung"
1365
+
1366
+ #: ../admin/view/addons.php:57
1367
+ #, fuzzy
1368
+ msgid "Repo Version"
1369
+ msgstr "CSS Version"
1370
+
1371
+ #: ../admin/view/addons.php:57
1372
+ #, fuzzy
1373
+ msgid "Version"
1374
+ msgstr "CSS Version"
1375
+
1376
+ #: ../admin/view/addons.php:69
1377
+ #, fuzzy
1378
+ msgid "Your Version:"
1379
+ msgstr "Browser-Version"
1380
+
1381
+ #: ../admin/view/addons.php:72
1382
+ msgid "Installed and Active"
1383
+ msgstr ""
1384
+
1385
  #: ../admin/view/index.php:26
1386
  msgid "is between (x,y)"
1387
  msgstr ""
1390
  msgid "Load"
1391
  msgstr ""
1392
 
1393
+ #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1397
1394
  msgid "Today"
1395
  msgstr "heute"
1396
 
1397
+ #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1400
1398
  msgid "Yesterday"
1399
  msgstr "Gestern"
1400
 
1461
  "country of origin."
1462
  msgstr ""
1463
 
1464
+ #: ../admin/view/layout.php:40
1465
+ msgid "Customize and organize your reports"
1466
+ msgstr ""
1467
+
1468
+ #: ../admin/view/layout.php:41
1469
+ msgid ""
1470
+ "Drag and drop report placeholders from one container to another, to "
1471
+ "customize the information you want to see right away when you open Slimstat. "
1472
+ "Place two or more charts on the same view, clone reports or move them to the "
1473
+ "Inactive Reports container for improved performance. It is your website, and "
1474
+ "you know how metrics should be combined to get a clear picture of the "
1475
+ "traffic it generates.<br/><br/><strong>Note</strong>: if a placeholder is "
1476
+ "greyed out, it means that the corresponding report is currently hidden "
1477
+ "(Screen Options tab)."
1478
+ msgstr ""
1479
+
1480
+ #: ../admin/view/layout.php:53
1481
+ msgid "Clone"
1482
+ msgstr ""
1483
+
1484
+ #: ../admin/view/layout.php:57
1485
+ #, fuzzy
1486
+ msgid "Delete"
1487
+ msgstr "Datensätze"
1488
+
1489
  #: ../admin/view/right-now.php:12
1490
  msgid "Human"
1491
  msgstr ""
1502
  msgid "Syndication Reader"
1503
  msgstr ""
1504
 
1505
+ #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1031
1506
+ #: ../admin/view/wp-slimstat-reports.php:1706
1507
  msgid "No data to display"
1508
  msgstr "keine Daten vorhanden"
1509
 
1512
  msgstr "Datum und Uhrzeit"
1513
 
1514
  # Unknown
1515
+ #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1082
1516
+ #: ../admin/view/wp-slimstat-reports.php:1820 ../wp-slimstat.php:1409
1517
  msgid "c-"
1518
  msgstr "Unknown"
1519
 
1520
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1521
+ #: ../admin/wp-slimstat-admin.php:846 ../admin/wp-slimstat-admin.php:886
1522
  msgid "Originating IP"
1523
  msgstr "Ursprüngliche IP"
1524
 
1525
+ #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1179
1526
+ #: ../admin/view/wp-slimstat-reports.php:1183
1527
+ msgid "Open this URL in a new window"
1528
+ msgstr "Diese URL in einem neuen Fenster &ouml;ffnen"
1529
+
1530
+ #: ../admin/view/right-now.php:151
1531
+ msgid "Local search results page"
1532
+ msgstr "lokale Suchergebnisse"
1533
+
1534
+ #: ../admin/view/right-now.php:156 ../admin/view/wp-slimstat-db.php:42
1535
+ #: ../admin/view/wp-slimstat-reports.php:257
1536
+ #: ../admin/view/wp-slimstat-reports.php:266
1537
+ #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
1538
+ msgid "Search Terms"
1539
+ msgstr "Suchbegriffe"
1540
+
1541
+ #: ../admin/view/right-now.php:162
1542
  msgid "Server Latency and Page Speed in milliseconds"
1543
  msgstr ""
1544
 
1545
+ #: ../admin/view/right-now.php:162
1546
  msgid "SL"
1547
  msgstr ""
1548
 
1549
+ #: ../admin/view/right-now.php:162
1550
  msgid "PS"
1551
  msgstr ""
1552
 
1553
+ #: ../admin/view/right-now.php:169
1554
  #, fuzzy
1555
  msgid "Time spent on this page in seconds"
1556
  msgstr "Seite in neuem Fenster &ouml;ffnen"
1557
 
1558
+ #: ../admin/view/right-now.php:179
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1559
  msgid "Open this referrer in a new window"
1560
  msgstr "Verweisende Seite in einem neuen Fenster &ouml;ffnen"
1561
 
1562
+ #: ../admin/view/right-now.php:180
1563
  msgid "Open this outbound link in a new window"
1564
  msgstr "Wegführender Link in neuem Fenster &ouml;ffnen"
1565
 
1566
+ #: ../admin/view/right-now.php:181
1567
  #, fuzzy
1568
  msgid "Content Type"
1569
  msgstr "Inhalt"
1570
 
1571
+ #: ../admin/view/right-now.php:184
1572
  #, fuzzy
1573
  msgid "Delete this pageview"
1574
  msgstr "Lösche Seitenaufrufe, wo"
1575
 
1576
+ #: ../admin/view/right-now.php:195
1577
+ #, fuzzy
1578
+ msgid "User Logged In"
1579
+ msgstr "User Agent"
1580
+
1581
+ #: ../admin/view/right-now.php:205
1582
+ #, fuzzy
1583
+ msgid "User Logged Out"
1584
+ msgstr "User Agent"
1585
+
1586
+ #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:862
1587
  msgid "Browser"
1588
  msgstr "Browser"
1589
 
1590
+ #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:863
1591
  msgid "Country Code"
1592
  msgstr "L&auml;nder-Code"
1593
 
1595
  msgid "IP Address"
1596
  msgstr "IP-Adresse"
1597
 
1598
+ #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:866
1599
  msgid "Language Code"
1600
  msgstr "Sprach-Kodierung"
1601
 
1602
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1603
+ #: ../admin/wp-slimstat-admin.php:867
1604
  msgid "Operating System"
1605
  msgstr "Betriebssystem"
1606
 
1607
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1608
+ #: ../admin/wp-slimstat-admin.php:868
1609
  msgid "Permalink"
1610
  msgstr "Permalink"
1611
 
1612
+ #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:869
1613
  msgid "Referer"
1614
  msgstr "Herkunft"
1615
 
1616
+ #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:870
1617
  msgid "Visitor's Name"
1618
  msgstr "Besuchername"
1619
 
1620
+ #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:852
1621
  msgid "Outbound Link"
1622
  msgstr "Ausgehender Link"
1623
 
1630
  msgstr "-- Erweiterte Filter --"
1631
 
1632
  #: ../admin/view/wp-slimstat-db.php:52
1633
+ #: ../admin/view/wp-slimstat-reports.php:373
1634
  msgid "Browser Capabilities"
1635
  msgstr "Browser-F&auml;higkeiten"
1636
 
1637
+ #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:881
1638
  msgid "Browser Version"
1639
  msgstr "Browser-Version"
1640
 
1641
+ #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:882
1642
  msgid "Browser Type"
1643
  msgstr "Browser-Typ"
1644
 
1645
+ #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:851
1646
  msgid "User Agent"
1647
  msgstr "User Agent"
1648
 
1656
  msgid "Server Latency"
1657
  msgstr "Latenz"
1658
 
1659
+ #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:884
1660
  msgid "Post Author"
1661
  msgstr "Autor der Seiten"
1662
 
1663
+ #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:885
1664
  msgid "Post Category ID"
1665
  msgstr "Kategorie-ID der Seite"
1666
 
1667
+ #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:887
1668
  msgid "Resource Content Type"
1669
  msgstr "Inhalt der Ressource"
1670
 
1685
  msgid "Viewport Size"
1686
  msgstr ""
1687
 
1688
+ #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:889
1689
  msgid "Visit ID"
1690
  msgstr "Besuchs-ID"
1691
 
1731
  msgstr ""
1732
 
1733
  #: ../admin/view/wp-slimstat-db.php:96
1734
+ #: ../admin/view/wp-slimstat-reports.php:1720
1735
  msgid "Type"
1736
  msgstr ""
1737
 
1754
  msgid "Offset"
1755
  msgstr ""
1756
 
1757
+ #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:483
1758
+ #: ../wp-slimstat.php:1793
1759
  msgid "Access Log"
1760
  msgstr ""
1761
 
1762
+ #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:484
1763
+ #: ../admin/wp-slimstat-admin.php:499 ../wp-slimstat.php:1794
1764
  msgid "Overview"
1765
  msgstr "&Uuml;bersicht"
1766
 
1767
+ #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:485
1768
+ #: ../admin/wp-slimstat-admin.php:500 ../wp-slimstat.php:1795
1769
  msgid "Audience"
1770
  msgstr ""
1771
 
1772
+ #: ../admin/view/wp-slimstat-reports.php:24 ../admin/wp-slimstat-admin.php:486
1773
+ #: ../admin/wp-slimstat-admin.php:501 ../wp-slimstat.php:1796
1774
  msgid "Site Analysis"
1775
  msgstr ""
1776
 
1777
+ #: ../admin/view/wp-slimstat-reports.php:25
1778
+ #: ../admin/view/wp-slimstat-reports.php:516
1779
+ #: ../admin/wp-slimstat-admin.php:487 ../admin/wp-slimstat-admin.php:502
1780
+ #: ../wp-slimstat.php:1797
1781
  msgid "Traffic Sources"
1782
  msgstr "Traffic-Ursprung"
1783
 
1784
+ #: ../admin/view/wp-slimstat-reports.php:26
1785
+ #: ../admin/view/wp-slimstat-reports.php:1364
1786
+ #: ../admin/wp-slimstat-admin.php:488 ../admin/wp-slimstat-admin.php:503
1787
+ #: ../wp-slimstat.php:1798
1788
+ #, fuzzy
1789
+ msgid "Geolocation"
1790
+ msgstr "Macromedia Director"
1791
+
1792
+ #: ../admin/view/wp-slimstat-reports.php:27
1793
+ #, fuzzy
1794
+ msgid "WordPress Dashboard"
1795
+ msgstr "WordPress-Integration"
1796
+
1797
+ #: ../admin/view/wp-slimstat-reports.php:28
1798
+ #, fuzzy
1799
+ msgid "Inactive Reports"
1800
+ msgstr "Berichte zurücksetzen"
1801
 
1802
+ #: ../admin/view/wp-slimstat-reports.php:77
1803
  msgid "Chart controls"
1804
  msgstr "Diagramm-Einstellungen"
1805
 
1806
+ #: ../admin/view/wp-slimstat-reports.php:77
1807
  msgid "Use your mouse wheel to zoom in and out"
1808
  msgstr "Verwende das Mausrad zum Zoomen"
1809
 
1810
+ #: ../admin/view/wp-slimstat-reports.php:77
1811
  msgid "While zooming in, drag the chart to move to a different area"
1812
  msgstr ""
1813
  "W&auml;hrend des Zooms das Diagramm zu einer anderen Position verschieben."
1814
 
1815
+ #: ../admin/view/wp-slimstat-reports.php:80
1816
+ msgid "Social Sharing Analytics"
 
 
 
 
 
 
 
1817
  msgstr ""
1818
 
1819
+ #: ../admin/view/wp-slimstat-reports.php:87
1820
  #, fuzzy
1821
  msgid "Visitors Activity"
1822
  msgstr "Besucher"
1823
 
1824
+ #: ../admin/view/wp-slimstat-reports.php:96
1825
  msgid "Color codes"
1826
  msgstr "Farbcode"
1827
 
1828
+ #: ../admin/view/wp-slimstat-reports.php:96
1829
  #, fuzzy
1830
  msgid "From search result page"
1831
  msgstr "Von einer Suchergebnisseite"
1832
 
1833
+ #: ../admin/view/wp-slimstat-reports.php:96 ../admin/wp-slimstat-admin.php:844
 
1834
  msgid "Known Visitor"
1835
  msgstr "Bekannte Besucher"
1836
 
1837
+ #: ../admin/view/wp-slimstat-reports.php:96
1838
  msgid "Known Users"
1839
  msgstr "Bekannte Benutzer"
1840
 
1841
+ #: ../admin/view/wp-slimstat-reports.php:96
1842
  msgid "Other Humans"
1843
  msgstr "Andere echte Besucher"
1844
 
1845
+ #: ../admin/view/wp-slimstat-reports.php:96
1846
  msgid "Bot or Crawler"
1847
  msgstr "Bot oder Crawler"
1848
 
1849
+ #: ../admin/view/wp-slimstat-reports.php:118
1850
  #, fuzzy
1851
  msgid "About Slimstat"
1852
  msgstr "&Uuml;ber WP SlimStat"
1853
 
1854
+ #: ../admin/view/wp-slimstat-reports.php:127
1855
  #, fuzzy
1856
  msgid "Traffic at a Glance"
1857
  msgstr "Auf einen Blick"
1858
 
1859
+ #: ../admin/view/wp-slimstat-reports.php:137
1860
  #, fuzzy
1861
  msgid "Currently Online"
1862
  msgstr "Aktuelle Filter:"
1863
 
1864
+ #: ../admin/view/wp-slimstat-reports.php:150
1865
  msgid "Recent Search Terms"
1866
  msgstr "Letzte interne Suchbegriffe"
1867
 
1868
+ #: ../admin/view/wp-slimstat-reports.php:160
1869
  #, fuzzy
1870
  msgid "Keywords used by your visitors to find your website on a search engine."
1871
  msgstr "Begriffe welche von Besuchern in Suchmaschinen verwendet wurden"
1872
 
1873
+ #: ../admin/view/wp-slimstat-reports.php:163
1874
+ #, fuzzy
1875
+ msgid "Top Web Pages"
1876
  msgstr "Top-Seiten"
1877
 
1878
+ #: ../admin/view/wp-slimstat-reports.php:174
1879
  msgid ""
1880
+ "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1881
+ "site, including posts, products, categories, and so on. You can set the "
1882
+ "corresponding filter where Resource Content Type equals cpt:"
1883
+ "you_cpt_slug_here to get top web pages for a specific custom post type you "
1884
+ "have."
1885
  msgstr ""
1886
 
1887
+ #: ../admin/view/wp-slimstat-reports.php:177
1888
  msgid "Top Traffic Sources"
1889
  msgstr "Top-Traffic-Ursprung"
1890
 
1891
+ #: ../admin/view/wp-slimstat-reports.php:189
1892
  msgid "Top Known Visitors"
1893
  msgstr "Top bekannte Besucher"
1894
 
1895
+ #: ../admin/view/wp-slimstat-reports.php:200
1896
  msgid "Top Search Terms"
1897
  msgstr "Top-Suchbegriffe"
1898
 
1899
+ #: ../admin/view/wp-slimstat-reports.php:211
1900
  msgid "Top Countries"
1901
  msgstr "Top-L&auml;nder"
1902
 
1903
+ #: ../admin/view/wp-slimstat-reports.php:220
1904
  #, fuzzy
1905
  msgid ""
1906
  "You can configure Slimstat to ignore a specific Country by setting the "
1909
  "Um ein spezifisches Land generell zu ignorieren kann ein entsprechender "
1910
  "Filter unter 'Einstellungen > SlimStat > Filter' gesetzt werden."
1911
 
1912
+ #: ../admin/view/wp-slimstat-reports.php:223
1913
  msgid "Rankings"
1914
  msgstr ""
1915
 
1916
+ #: ../admin/view/wp-slimstat-reports.php:227
1917
  msgid ""
1918
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1919
  "measures your site's rankings. Values are updated every 12 hours. Filters "
1920
  "set above don't apply to this report."
1921
  msgstr ""
1922
 
1923
+ #: ../admin/view/wp-slimstat-reports.php:230
1924
  #, fuzzy
1925
  msgid "Top Language Families"
1926
  msgstr "Top-Sprachen"
1927
 
1928
+ #: ../admin/view/wp-slimstat-reports.php:243
1929
  #, fuzzy
1930
  msgid "Users Currently Online"
1931
  msgstr "Aktuelle Filter:"
1932
 
1933
+ #: ../admin/view/wp-slimstat-reports.php:254
1934
  #, fuzzy
1935
  msgid ""
1936
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1941
  "einen Cookie zu. WP SlimStat erweitert diese Information um die Erkennung "
1942
  "zur&uuml;kkehrender Besucher."
1943
 
1944
+ #: ../admin/view/wp-slimstat-reports.php:267
1945
+ #, fuzzy
1946
+ msgid "Unique Terms"
1947
+ msgstr "Eindeutige IPs"
1948
+
1949
+ #: ../admin/view/wp-slimstat-reports.php:276
1950
  msgid "Human Visits"
1951
  msgstr "Echte Besuche"
1952
 
1953
+ #: ../admin/view/wp-slimstat-reports.php:285
1954
+ #: ../admin/view/wp-slimstat-reports.php:1431
1955
+ msgid "Visits"
1956
+ msgstr "Besuche"
1957
+
1958
+ #: ../admin/view/wp-slimstat-reports.php:295
1959
  #, fuzzy
1960
  msgid "Audience Overview"
1961
  msgstr "&Uuml;bersicht"
1962
 
1963
+ #: ../admin/view/wp-slimstat-reports.php:302
1964
  msgid ""
1965
  "Where not otherwise specified, the metrics in this report are referred to "
1966
  "human visitors."
1967
  msgstr ""
1968
 
1969
+ #: ../admin/view/wp-slimstat-reports.php:305
1970
  msgid "Top Languages"
1971
  msgstr "Top-Sprachen"
1972
 
1973
+ #: ../admin/view/wp-slimstat-reports.php:316
1974
  msgid "Top Browsers"
1975
  msgstr "Top-Browser"
1976
 
1977
+ #: ../admin/view/wp-slimstat-reports.php:327
1978
  msgid "Top Service Providers"
1979
  msgstr "Top-Internetprovider"
1980
 
1981
+ #: ../admin/view/wp-slimstat-reports.php:336
1982
+ #: ../admin/view/wp-slimstat-reports.php:348
1983
  #, fuzzy
1984
  msgid ""
1985
  "Internet Service Provider: a company which provides other companies or "
1993
  "Adressen generell zu ignorieren kann ein entsprechender Filter unter "
1994
  "'Einstellungen > SlimStat > Filter' gesetzt werden."
1995
 
1996
+ #: ../admin/view/wp-slimstat-reports.php:339
1997
  msgid "Top Operating Systems"
1998
  msgstr "Top-Betriebssysteme"
1999
 
2000
+ #: ../admin/view/wp-slimstat-reports.php:351
2001
  msgid "Top Screen Resolutions"
2002
  msgstr "Top-Bildschirmaufl&ouml;sungen"
2003
 
2004
+ #: ../admin/view/wp-slimstat-reports.php:362
2005
  #, fuzzy
2006
  msgid "Top Viewport Sizes"
2007
  msgstr "Top-Kategorien"
2008
 
2009
+ #: ../admin/view/wp-slimstat-reports.php:382
2010
  msgid "Visit Duration"
2011
  msgstr "Besuchsdauer"
2012
 
2013
+ #: ../admin/view/wp-slimstat-reports.php:389
2014
  #, fuzzy
2015
  msgid ""
2016
  "All values represent the percentages of pageviews within the corresponding "
2018
  msgstr ""
2019
  "Weltkarte - Werte repr&auml;sentieren die Zugriffe in Prozent aus diesem Land"
2020
 
2021
+ #: ../admin/view/wp-slimstat-reports.php:392
2022
  msgid "Recent Countries"
2023
  msgstr "Letzte L&auml;nder"
2024
 
2025
+ #: ../admin/view/wp-slimstat-reports.php:403
2026
  #, fuzzy
2027
  msgid "Recent Viewport Sizes"
2028
  msgstr "Letzte Kategorien"
2029
 
2030
+ #: ../admin/view/wp-slimstat-reports.php:414
2031
  msgid "Recent Operating Systems"
2032
  msgstr "Letzte Betriebssysteme"
2033
 
2034
+ #: ../admin/view/wp-slimstat-reports.php:425
2035
  msgid "Recent Browsers"
2036
  msgstr "Letzte Browser"
2037
 
2038
+ #: ../admin/view/wp-slimstat-reports.php:436
2039
  msgid "Recent Languages"
2040
  msgstr "Letzte Sprachen"
2041
 
2042
+ #: ../admin/view/wp-slimstat-reports.php:447
2043
  msgid "Top Browser Families"
2044
  msgstr "Top-Browserfamilien"
2045
 
2046
+ #: ../admin/view/wp-slimstat-reports.php:456
2047
  msgid ""
2048
  "This report shows you what user agent families (no version considered) are "
2049
  "popular among your visitors."
2051
  "Dieser Bericht zeigt, welche User Agent-Familien (unabhängig Ihrer Version) "
2052
  "bei Ihren Besuchern populär sind."
2053
 
2054
+ #: ../admin/view/wp-slimstat-reports.php:459
2055
  msgid "Top OS Families"
2056
  msgstr "Top-Betriebssysteme"
2057
 
2058
+ #: ../admin/view/wp-slimstat-reports.php:470
2059
  msgid ""
2060
  "This report shows you what operating system families (no version considered) "
2061
  "are popular among your visitors."
2063
  "Dieser Bericht zeigt, welche Betriebssystemfamilien (ohne Berücksichtigung "
2064
  "der Version) hauptsächlich von Ihren Benutzer verwendet werden."
2065
 
2066
+ #: ../admin/view/wp-slimstat-reports.php:473
2067
  msgid "Recent Users"
2068
  msgstr "Letzte Benutzer"
2069
 
2070
+ #: ../admin/view/wp-slimstat-reports.php:485
2071
  msgid "Top Users"
2072
  msgstr "Top-Benutzer"
2073
 
2074
+ #: ../admin/view/wp-slimstat-reports.php:497
2075
+ #: ../admin/view/wp-slimstat-reports.php:506
2076
+ msgid "Users"
2077
+ msgstr "Benutzer"
2078
+
2079
+ #: ../admin/view/wp-slimstat-reports.php:507
2080
+ #, fuzzy
2081
+ msgid "Unique Users"
2082
+ msgstr "Eindeutige IPs"
2083
+
2084
+ #: ../admin/view/wp-slimstat-reports.php:525
2085
+ msgid "Domains"
2086
+ msgstr "Dom&auml;nen"
2087
+
2088
+ #: ../admin/view/wp-slimstat-reports.php:535
2089
  #, fuzzy
2090
  msgid "Traffic Summary"
2091
  msgstr "Traffic-Ursprung"
2092
 
2093
+ #: ../admin/view/wp-slimstat-reports.php:544
2094
  msgid "Top Referring Search Engines"
2095
  msgstr "Top verweisende Suchmaschinen"
2096
 
2097
+ #: ../admin/view/wp-slimstat-reports.php:571
2098
  msgid "Recent Outbound Links"
2099
  msgstr "Letzte ausgehende Links"
2100
 
2101
+ #: ../admin/view/wp-slimstat-reports.php:583
2102
  msgid "Recent Posts"
2103
  msgstr "Letzte Artikel"
2104
 
2105
+ #: ../admin/view/wp-slimstat-reports.php:611
2106
  msgid "Recent Feeds"
2107
  msgstr "Letzte Feeds"
2108
 
2109
+ #: ../admin/view/wp-slimstat-reports.php:623
2110
  msgid "Recent Pages Not Found"
2111
  msgstr ""
2112
 
2113
+ #: ../admin/view/wp-slimstat-reports.php:635
2114
  msgid "Recent Internal Searches"
2115
  msgstr "Letzte interne Suchbegriffe"
2116
 
2117
+ #: ../admin/view/wp-slimstat-reports.php:645
2118
  #, fuzzy
2119
  msgid "Searches performed using WordPress' built-in search functionality."
2120
  msgstr ""
2121
  "Suchen welche mit der WordPress eigenen Such-Funktion ausgef&uuml;hrt wurden."
2122
 
2123
+ #: ../admin/view/wp-slimstat-reports.php:648
2124
  msgid "Top Categories"
2125
  msgstr "Top-Kategorien"
2126
 
2127
+ #: ../admin/view/wp-slimstat-reports.php:661
2128
  #, fuzzy
2129
  msgid "Top Downloads"
2130
  msgstr "Letzte Downloads"
2131
 
2132
+ #: ../admin/view/wp-slimstat-reports.php:672
2133
  msgid ""
2134
  "You can configure Slimstat to track specific file extensions as downloads."
2135
  msgstr ""
2136
 
2137
+ #: ../admin/view/wp-slimstat-reports.php:675
2138
  msgid "Recent Events"
2139
  msgstr "Letzte Ereignisse"
2140
 
2141
+ #: ../admin/view/wp-slimstat-reports.php:684
2142
+ #: ../admin/view/wp-slimstat-reports.php:708
2143
  #, fuzzy
2144
  msgid ""
2145
  "This report lists any <em>event</em> occurred on your website. Please refer "
2149
  "stattgefunden hat. Bitte schlagen Sie in der FAQ für weitere Informationen "
2150
  "zur Verwendung dieser Funktionalit&auml;t nach."
2151
 
2152
+ #: ../admin/view/wp-slimstat-reports.php:687
2153
  msgid "Top Posts"
2154
  msgstr "Top-Artikel"
2155
 
2156
+ #: ../admin/view/wp-slimstat-reports.php:699
2157
  #, fuzzy
2158
  msgid "Top Events"
2159
  msgstr "Top-Seiten"
2160
 
2161
+ #: ../admin/view/wp-slimstat-reports.php:711
2162
  msgid "Top Internal Searches"
2163
  msgstr "Top interne Suchbegriffe"
2164
 
2165
+ #: ../admin/view/wp-slimstat-reports.php:723
2166
  msgid "Recent Categories"
2167
  msgstr "Letzte Kategorien"
2168
 
2169
+ #: ../admin/view/wp-slimstat-reports.php:735
2170
  #, fuzzy
2171
  msgid "Top Pages Not Found"
2172
  msgstr "Top-Seiten"
2173
 
2174
+ #: ../admin/view/wp-slimstat-reports.php:747
2175
  msgid "Top Authors"
2176
  msgstr "Top-Autoren"
2177
 
2178
+ #: ../admin/view/wp-slimstat-reports.php:758
2179
  #, fuzzy
2180
  msgid "Top Tags"
2181
  msgstr "Top Seiten"
2182
 
2183
+ #: ../admin/view/wp-slimstat-reports.php:770
2184
  msgid "Recent Downloads"
2185
  msgstr "Letzte Downloads"
2186
 
2187
+ #: ../admin/view/wp-slimstat-reports.php:782
2188
  #, fuzzy
2189
  msgid "Top Outbound Links"
2190
  msgstr "Ausgehender Link"
2191
 
2192
+ #: ../admin/view/wp-slimstat-reports.php:794
2193
  msgid "Your Website"
2194
  msgstr "Ihre Webseite"
2195
 
2196
+ #: ../admin/view/wp-slimstat-reports.php:801
2197
  msgid ""
2198
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2199
  "this report is not affected by the filters set here above."
2201
  "Ihr Inhalt auf einen Blick: Posts, Kommentare, Pingbacks, usw. Dieser "
2202
  "Bericht wird nicht durch die oben eingestellten Filter beeinflusst."
2203
 
2204
+ #: ../admin/view/wp-slimstat-reports.php:804
2205
  #, fuzzy
2206
  msgid "Top Bounce Pages"
2207
  msgstr "Absprungrate"
2208
 
2209
+ #: ../admin/view/wp-slimstat-reports.php:817
2210
  #, fuzzy
2211
  msgid "Top Exit Pages"
2212
  msgstr "Top-Seiten"
2213
 
2214
+ #: ../admin/view/wp-slimstat-reports.php:830
2215
  #, fuzzy
2216
  msgid "Top Entry Pages"
2217
  msgstr "Top-Seiten"
2218
 
2219
+ #: ../admin/view/wp-slimstat-reports.php:843
2220
+ #: ../admin/view/wp-slimstat-reports.php:852
2221
+ #, fuzzy
2222
+ msgid "Outbound Links"
2223
+ msgstr "Ausgehender Link"
2224
+
2225
+ #: ../admin/view/wp-slimstat-reports.php:853
2226
+ msgid "Unique Outbound"
2227
+ msgstr ""
2228
+
2229
+ #: ../admin/view/wp-slimstat-reports.php:862
2230
  msgid "World Map"
2231
  msgstr "Weltkarte"
2232
 
2233
+ #: ../admin/view/wp-slimstat-reports.php:944
2234
  msgid "Refresh"
2235
  msgstr "Anzeige aktualisieren"
2236
 
2237
+ #: ../admin/view/wp-slimstat-reports.php:981
2238
  #, fuzzy, php-format
2239
  msgid "Results %s - %s of %s"
2240
  msgstr "Ergbnisse filtern wo %s ist gleich %s"
2241
 
2242
+ #: ../admin/view/wp-slimstat-reports.php:983
2243
  msgid "Refresh in"
2244
  msgstr "Anzeige aktualisieren in"
2245
 
2246
+ #: ../admin/view/wp-slimstat-reports.php:1076
2247
  msgid "Category ID"
2248
  msgstr "Kategorie-ID"
2249
 
2250
+ #: ../admin/view/wp-slimstat-reports.php:1081
2251
+ #: ../admin/view/wp-slimstat-reports.php:1096
2252
+ #: ../admin/view/wp-slimstat-reports.php:1102
2253
  #, fuzzy
2254
  msgid "Code"
2255
  msgstr "OS-Code"
2256
 
2257
+ #: ../admin/view/wp-slimstat-reports.php:1097
2258
+ #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1421
2259
  msgid "l-"
2260
  msgstr "l-"
2261
 
2262
+ #: ../admin/view/wp-slimstat-reports.php:1114
2263
  msgid "URL"
2264
  msgstr ""
2265
 
2266
+ #: ../admin/view/wp-slimstat-reports.php:1127
2267
  msgid "Referrer"
2268
  msgstr "Verweis"
2269
 
2270
+ #: ../admin/view/wp-slimstat-reports.php:1168
2271
+ #: ../admin/view/wp-slimstat-reports.php:1415
2272
+ #: ../admin/view/wp-slimstat-reports.php:1471
2273
+ #: ../admin/view/wp-slimstat-reports.php:1477
2274
+ #: ../admin/view/wp-slimstat-reports.php:1483
2275
+ #: ../admin/view/wp-slimstat-reports.php:1489
2276
+ #: ../admin/view/wp-slimstat-reports.php:1495
2277
+ #: ../admin/view/wp-slimstat-reports.php:1501
2278
+ #: ../admin/view/wp-slimstat-reports.php:1507
2279
+ #: ../admin/view/wp-slimstat-reports.php:1727
2280
  msgid "Hits"
2281
  msgstr "Zugriffe"
2282
 
2283
+ #: ../admin/view/wp-slimstat-reports.php:1342
 
 
 
 
 
 
 
 
 
2284
  #, fuzzy
2285
  msgid "Dataset Size"
2286
  msgstr "Datenbankgr&ouml;&szlig;e"
2287
 
2288
+ #: ../admin/view/wp-slimstat-reports.php:1344
2289
  msgid "Total number of records stored in the database."
2290
  msgstr ""
2291
 
2292
+ #: ../admin/view/wp-slimstat-reports.php:1346
2293
  msgid "DB Size"
2294
  msgstr "Datenbankgr&ouml;&szlig;e"
2295
 
2296
+ #: ../admin/view/wp-slimstat-reports.php:1349
2297
  #, fuzzy
2298
  msgid "Tracking Enabled"
2299
  msgstr "Tracking aktiv"
2300
 
2301
+ #: ../admin/view/wp-slimstat-reports.php:1352
2302
  msgid "Javascript Mode"
2303
  msgstr "Tracking per JavaScript"
2304
 
2305
+ #: ../admin/view/wp-slimstat-reports.php:1355
2306
  msgid "Tracking Browser Caps"
2307
  msgstr ""
2308
 
2309
+ #: ../admin/view/wp-slimstat-reports.php:1358
2310
  msgid "Auto purge"
2311
  msgstr "autom. Datenbank-Reorg."
2312
 
2313
+ #: ../admin/view/wp-slimstat-reports.php:1361
2314
  msgid "Oldest pageview"
2315
  msgstr "&Auml;ltester Seitenaufruf"
2316
 
2317
+ #: ../admin/view/wp-slimstat-reports.php:1362
2318
  msgid "No visits"
2319
  msgstr "Keine Besuche"
2320
 
2321
+ #: ../admin/view/wp-slimstat-reports.php:1366
 
 
 
 
 
2322
  msgid "Date when the MaxMind Geolocation database was last updated."
2323
  msgstr ""
2324
 
2325
+ #: ../admin/view/wp-slimstat-reports.php:1377
2326
+ #: ../admin/view/wp-slimstat-reports.php:1535
2327
  #, fuzzy
2328
  msgid ""
2329
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2333
  "jedesmal einen 'Seitenaufruf' auf, wenn der Tracking-Code ausgef&uuml;hrt "
2334
  "wird."
2335
 
2336
+ #: ../admin/view/wp-slimstat-reports.php:1379
2337
  #, fuzzy
2338
  msgid "Days in Range"
2339
  msgstr "Datum und Uhrzeit"
2340
 
2341
+ #: ../admin/view/wp-slimstat-reports.php:1382
2342
  #, fuzzy
2343
  msgid "Average Daily Pageviews"
2344
  msgstr "Durchschnittl. Seitenaufrufe"
2345
 
2346
+ #: ../admin/view/wp-slimstat-reports.php:1384
2347
  #, fuzzy
2348
  msgid ""
2349
  "How many pages have been visited on average every day during the current "
2352
  "Wieviele Seiten wurden w&auml;hrend der aktuellen Periode durchschnittlich "
2353
  "besucht?"
2354
 
2355
+ #: ../admin/view/wp-slimstat-reports.php:1386
2356
  msgid "From Search Results"
2357
  msgstr "Von Suchergebnissen"
2358
 
2359
+ #: ../admin/view/wp-slimstat-reports.php:1388
2360
  msgid ""
2361
  "Visitors who landed on your site after searching for a keyword on Google, "
2362
  "Yahoo, etc."
2364
  "Besucher, welche nach einer Suche nach einem Suchbegriff auf einer "
2365
  "Suchmaschine auf die Website kamen."
2366
 
2367
+ #: ../admin/view/wp-slimstat-reports.php:1392
2368
  msgid ""
2369
  "Used to differentiate between multiple requests to download a file from one "
2370
  "internet address (IP) and requests originating from many distinct addresses"
2372
  "Benutzt um bei mehreren Downloadanfragen zu unterscheiden, ob sie von einer "
2373
  "oder mehreren verschiedenen Internet-Adressen (IP) stammen"
2374
 
2375
+ #: ../admin/view/wp-slimstat-reports.php:1394
2376
  msgid "Last 30 minutes"
2377
  msgstr "Letzte 30 Minuten"
2378
 
2379
+ #: ../admin/view/wp-slimstat-reports.php:1433
2380
  msgid ""
2381
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2382
  "multiple times if they perform multiple visits."
2384
  "Ein Besuch ist eine Session von max. 30 Minuten. Zur&;kkehrende Besucher "
2385
  "werden bei mehrfachen Besuchen auch mehrfach gez&auml;hlt."
2386
 
2387
+ #: ../admin/view/wp-slimstat-reports.php:1437
2388
  msgid "It includes only traffic generated by human visitors."
2389
  msgstr ""
2390
 
2391
+ #: ../admin/view/wp-slimstat-reports.php:1439
2392
  msgid "Bounce rate"
2393
  msgstr "Absprungrate"
2394
 
2395
+ #: ../admin/view/wp-slimstat-reports.php:1441
2396
  msgid ""
2397
  "Percentage of single-page visits, i.e. visits in which the person left your "
2398
  "site from the entrance page."
2400
  "Prozentsatz von Besuchen einzelner Seiten, d.h. Besuche bei welchen der "
2401
  "Besucher die Website auf der aufgerufenen Seite wieder verlassen hat."
2402
 
2403
+ #: ../admin/view/wp-slimstat-reports.php:1443
2404
  msgid "Known visitors"
2405
  msgstr "Bekannte Besucher"
2406
 
2407
+ #: ../admin/view/wp-slimstat-reports.php:1445
2408
  msgid "Visitors who had previously left a comment on your blog."
2409
  msgstr ""
2410
  "Besucher, welche fr&uuml;her bereits einen Kommentar hinterlassen haben."
2411
 
2412
+ #: ../admin/view/wp-slimstat-reports.php:1447
2413
  msgid "New visitors"
2414
  msgstr "Neue Besucher"
2415
 
2416
+ #: ../admin/view/wp-slimstat-reports.php:1449
2417
  msgid "Human users who visited your site only once."
2418
  msgstr "Echte Besucher, welche die Wesite nur einmal besucht haben."
2419
 
2420
+ #: ../admin/view/wp-slimstat-reports.php:1451
2421
  msgid "Bots"
2422
  msgstr "Bots"
2423
 
2424
+ #: ../admin/view/wp-slimstat-reports.php:1454
2425
+ #, fuzzy
2426
+ msgid "Pageviews per visit"
2427
  msgstr "Seiten pro Besuch"
2428
 
2429
+ #: ../admin/view/wp-slimstat-reports.php:1457
2430
  msgid "Longest visit"
2431
  msgstr "L&auml;ngster Besuch"
2432
 
2433
+ #: ../admin/view/wp-slimstat-reports.php:1458
2434
  msgid "hits"
2435
  msgstr "Zugriff"
2436
 
2437
+ #: ../admin/view/wp-slimstat-reports.php:1469
2438
  msgid "0 - 30 seconds"
2439
  msgstr "0-30 Sekunden"
2440
 
2441
+ #: ../admin/view/wp-slimstat-reports.php:1475
2442
  msgid "31 - 60 seconds"
2443
  msgstr "31-60 Sekunden"
2444
 
2445
+ #: ../admin/view/wp-slimstat-reports.php:1481
2446
  msgid "1 - 3 minutes"
2447
  msgstr "1-3 Minuten"
2448
 
2449
+ #: ../admin/view/wp-slimstat-reports.php:1487
2450
  msgid "3 - 5 minutes"
2451
  msgstr "3-5 Minuten"
2452
 
2453
+ #: ../admin/view/wp-slimstat-reports.php:1493
2454
  msgid "5 - 7 minutes"
2455
  msgstr "5-7 Minuten"
2456
 
2457
+ #: ../admin/view/wp-slimstat-reports.php:1499
2458
  msgid "7 - 10 minutes"
2459
  msgstr "7-10 Minuten"
2460
 
2461
+ #: ../admin/view/wp-slimstat-reports.php:1505
2462
  msgid "More than 10 minutes"
2463
  msgstr "Mehr als 10 Minuten"
2464
 
2465
+ #: ../admin/view/wp-slimstat-reports.php:1517
2466
  #, fuzzy
2467
  msgid "Average visit duration"
2468
  msgstr "Besuchsdauer"
2469
 
2470
+ #: ../admin/view/wp-slimstat-reports.php:1537
2471
  msgid "Unique Referrers"
2472
  msgstr "Eindeutige Herkunft"
2473
 
2474
+ #: ../admin/view/wp-slimstat-reports.php:1539
2475
  msgid ""
2476
  "A referrer (or referring site) is the site that a visitor previously visited "
2477
  "before following a link to your site."
2479
  "Eine Herkunft (verweisende Seite) ist die Webseite welche ein Besucher vor "
2480
  "dem Besuch der eigenen Website besucht hat."
2481
 
2482
+ #: ../admin/view/wp-slimstat-reports.php:1541
2483
  msgid "Direct Pageviews"
2484
  msgstr "Direkte Seitenaufrufe"
2485
 
2486
+ #: ../admin/view/wp-slimstat-reports.php:1543
2487
  msgid ""
2488
  "Visitors who visited the site by typing the URL directly into their browser. "
2489
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
2494
  "auch auf Besucher beziehen, welche Lesezeichen/Favoriten verwendet haben "
2495
  "oder Links in E-Mails bzw. Dokumenten gefolgt sind."
2496
 
2497
+ #: ../admin/view/wp-slimstat-reports.php:1545
2498
  msgid "From a search result"
2499
  msgstr "Von einem Suchresultat"
2500
 
2501
+ #: ../admin/view/wp-slimstat-reports.php:1547
2502
  msgid ""
2503
  "Visitors who came to your site via searches on Google or some other search "
2504
  "engine."
2505
  msgstr ""
2506
  "Besucher welche über eine Suchmaschine auf die eigene Website gekommen sind."
2507
 
2508
+ #: ../admin/view/wp-slimstat-reports.php:1549
2509
  msgid "Unique Landing Pages"
2510
  msgstr "Eindeutige Einstiegsseiten"
2511
 
2512
+ #: ../admin/view/wp-slimstat-reports.php:1551
2513
  msgid ""
2514
  "The first page that a user views during a session. This is also known as the "
2515
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
2519
  "Die erste Seite welche ein Benutzer w&auml;hrend einer Sitzung besucht, die "
2520
  "s.g. Einstiegs- oder Landeseite."
2521
 
2522
+ #: ../admin/view/wp-slimstat-reports.php:1553
2523
  msgid "Bounce Pages"
2524
  msgstr "Absprungrate"
2525
 
2526
+ #: ../admin/view/wp-slimstat-reports.php:1555
2527
  #, fuzzy
2528
  msgid "Number of single page visits to your site over the selected period."
2529
  msgstr ""
2530
  "Anzahl der Besucher einer einzelnen Seite über die gew&auml;hlte Periode."
2531
 
2532
+ #: ../admin/view/wp-slimstat-reports.php:1557
2533
  #, fuzzy
2534
  msgid "New Visitors Rate"
2535
  msgstr "Neue Besucher"
2536
 
2537
+ #: ../admin/view/wp-slimstat-reports.php:1559
2538
  #, fuzzy
2539
  msgid ""
2540
  "Percentage of single page visits, i.e. visits in which the person left your "
2543
  "Prozentsatz von Besuchen einzelner Seiten, d.h. Besuche bei welchen der "
2544
  "Besucher die Website auf der aufgerufenen Seite wieder verlassen hat."
2545
 
2546
+ #: ../admin/view/wp-slimstat-reports.php:1561
2547
  msgid "Currently from search engines"
2548
  msgstr "Aktuell von Suchmaschinen"
2549
 
2550
+ #: ../admin/view/wp-slimstat-reports.php:1563
2551
  msgid ""
2552
  "Visitors who visited the site in the last 5 minutes coming from a search "
2553
  "engine."
2555
  "Besucher welche innerhalb der letzten 5 Minuten von einer Suchmaschine "
2556
  "gekommen sind."
2557
 
2558
+ #: ../admin/view/wp-slimstat-reports.php:1633
2559
  msgid "Number of pages in your site included in Google's index."
2560
  msgstr ""
2561
 
2562
+ #: ../admin/view/wp-slimstat-reports.php:1634
2563
  msgid "Google Index"
2564
  msgstr "Google-Index"
2565
 
2566
+ #: ../admin/view/wp-slimstat-reports.php:1635
2567
  msgid "Number of pages, according to Google, that link back to your site."
2568
  msgstr ""
2569
 
2570
+ #: ../admin/view/wp-slimstat-reports.php:1636
2571
  msgid "Google Backlinks"
2572
  msgstr ""
2573
 
2574
+ #: ../admin/view/wp-slimstat-reports.php:1637
2575
  msgid ""
2576
  "How many times the Facebook Like button has been approximately clicked on "
2577
  "your site."
2578
  msgstr ""
2579
 
2580
+ #: ../admin/view/wp-slimstat-reports.php:1638
2581
  msgid "Facebook Likes"
2582
  msgstr "Facebook Likes"
2583
 
2584
+ #: ../admin/view/wp-slimstat-reports.php:1639
2585
  msgid ""
2586
  "How many times your site has been shared by someone on the social network."
2587
  msgstr ""
2588
 
2589
+ #: ../admin/view/wp-slimstat-reports.php:1640
2590
  msgid "Facebook Shares"
2591
  msgstr ""
2592
 
2593
+ #: ../admin/view/wp-slimstat-reports.php:1641
2594
  msgid "How many times links to your website have been clicked on Facebook."
2595
  msgstr ""
2596
 
2597
+ #: ../admin/view/wp-slimstat-reports.php:1642
2598
  msgid "Facebook Clicks"
2599
  msgstr "Clicks bei Facebook"
2600
 
2601
+ #: ../admin/view/wp-slimstat-reports.php:1643
2602
  msgid ""
2603
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2604
  "traffic data."
2605
  msgstr ""
2606
 
2607
+ #: ../admin/view/wp-slimstat-reports.php:1644
2608
  msgid "Alexa World Rank"
2609
  msgstr ""
2610
 
2611
+ #: ../admin/view/wp-slimstat-reports.php:1645
2612
  msgid "Alexa Country Rank"
2613
  msgstr ""
2614
 
2615
+ #: ../admin/view/wp-slimstat-reports.php:1646
2616
  msgid "Alexa Popularity"
2617
  msgstr ""
2618
 
2619
+ #: ../admin/view/wp-slimstat-reports.php:1657
2620
  #, fuzzy
2621
  msgid "Content Items"
2622
  msgstr "Inhalt"
2623
 
2624
+ #: ../admin/view/wp-slimstat-reports.php:1659
2625
  msgid ""
2626
  "This value includes not only posts, but also custom post types, regardless "
2627
  "of their status"
2628
  msgstr ""
2629
 
2630
+ #: ../admin/view/wp-slimstat-reports.php:1661
2631
  #, fuzzy
2632
  msgid "Posts"
2633
  msgstr "Top-Artikel"
2634
 
2635
+ #: ../admin/view/wp-slimstat-reports.php:1664
2636
  #, fuzzy
2637
  msgid "Pages"
2638
  msgstr "Top-Seiten"
2639
 
2640
+ #: ../admin/view/wp-slimstat-reports.php:1667
2641
  msgid "Attachments"
2642
  msgstr ""
2643
 
2644
+ #: ../admin/view/wp-slimstat-reports.php:1670
2645
  #, fuzzy
2646
  msgid "Revisions"
2647
  msgstr "Berechtigungen"
2648
 
2649
+ #: ../admin/view/wp-slimstat-reports.php:1673
2650
  #, fuzzy
2651
  msgid "Comments"
2652
  msgstr "Gesamte Kommentare"
2653
 
2654
+ #: ../admin/view/wp-slimstat-reports.php:1676
2655
  #, fuzzy
2656
  msgid "Avg Comments per Post"
2657
  msgstr "Spalte bei Beitr&auml;gen hinzuf&uuml;gen"
2658
 
2659
+ #: ../admin/view/wp-slimstat-reports.php:1679
2660
  msgid "Avg Server Latency"
2661
  msgstr ""
2662
 
2663
+ #: ../admin/view/wp-slimstat-reports.php:1681
2664
  msgid ""
2665
  "Latency is the amount of time it takes for the host server to receive and "
2666
  "process a request for a page object. The amount of latency depends largely "
2667
  "on how far away the user is from the server."
2668
  msgstr ""
2669
 
2670
+ #: ../admin/view/wp-slimstat-reports.php:1724
2671
  #, fuzzy
2672
  msgid "Coordinates"
2673
  msgstr "Tracking aktiv"
2674
 
2675
+ #: ../admin/view/wp-slimstat-reports.php:1724
2676
  #, fuzzy
2677
  msgid "Date"
2678
  msgstr "Datum/Zeit"
2679
 
2680
+ #: ../admin/view/wp-slimstat-reports.php:1761
2681
  msgid "Error contacting the GetSocial endpoint."
2682
  msgstr ""
2683
 
2684
+ #: ../admin/view/wp-slimstat-reports.php:1769
2685
  msgid "Error decoding the GetSocial payload."
2686
  msgstr ""
2687
 
2688
+ #: ../admin/view/wp-slimstat-reports.php:1801
2689
  msgid ""
2690
  "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2691
  ">social media metrics and identify your top performing posts.<br/> <a "
2693
  msgstr ""
2694
 
2695
  # Unknown
2696
+ #: ../admin/view/wp-slimstat-reports.php:1811
2697
  msgid "c-xx"
2698
  msgstr "Unbekannt"
2699
 
2700
  # Afghanistan
2701
+ #: ../admin/view/wp-slimstat-reports.php:1811
2702
  msgid "c-af"
2703
  msgstr "Afghanistan"
2704
 
2705
  # Åland Islands
2706
+ #: ../admin/view/wp-slimstat-reports.php:1811
2707
  msgid "c-ax"
2708
  msgstr "&Aring;landinseln"
2709
 
2710
  # Albania
2711
+ #: ../admin/view/wp-slimstat-reports.php:1811
2712
  msgid "c-al"
2713
  msgstr "Albanien"
2714
 
2715
  # Algeria
2716
+ #: ../admin/view/wp-slimstat-reports.php:1811
2717
  msgid "c-dz"
2718
  msgstr "Algerien"
2719
 
2720
  # Andorra
2721
+ #: ../admin/view/wp-slimstat-reports.php:1811
2722
  msgid "c-ad"
2723
  msgstr "Andorra"
2724
 
2725
  # Angola
2726
+ #: ../admin/view/wp-slimstat-reports.php:1811
2727
  msgid "c-ao"
2728
  msgstr "Angola"
2729
 
2730
  # Anguilla
2731
+ #: ../admin/view/wp-slimstat-reports.php:1811
2732
  msgid "c-ai"
2733
  msgstr "Anguilla"
2734
 
2735
  # Antigua and Barbuda
2736
+ #: ../admin/view/wp-slimstat-reports.php:1811
2737
  msgid "c-ag"
2738
  msgstr "Antigua und Barbuda"
2739
 
2740
  # Argentina
2741
+ #: ../admin/view/wp-slimstat-reports.php:1811
2742
  msgid "c-ar"
2743
  msgstr "Argentinien"
2744
 
2745
  # Armenia
2746
+ #: ../admin/view/wp-slimstat-reports.php:1811
2747
  msgid "c-am"
2748
  msgstr "Armenien"
2749
 
2750
  # Aruba
2751
+ #: ../admin/view/wp-slimstat-reports.php:1811
2752
  msgid "c-aw"
2753
  msgstr "Aruba"
2754
 
2755
  # Australia
2756
+ #: ../admin/view/wp-slimstat-reports.php:1811
2757
  msgid "c-au"
2758
  msgstr "Australien"
2759
 
2760
  # Austria
2761
+ #: ../admin/view/wp-slimstat-reports.php:1811
2762
  msgid "c-at"
2763
  msgstr "&Ouml;sterreich"
2764
 
2765
  # Azerbaijan
2766
+ #: ../admin/view/wp-slimstat-reports.php:1811
2767
  msgid "c-az"
2768
  msgstr "Aserbaidschan"
2769
 
2770
  # Bahamas
2771
+ #: ../admin/view/wp-slimstat-reports.php:1811
2772
  msgid "c-bs"
2773
  msgstr "Bahamas"
2774
 
2775
  # Bahrain
2776
+ #: ../admin/view/wp-slimstat-reports.php:1811
2777
  msgid "c-bh"
2778
  msgstr "Bahrain"
2779
 
2780
  # Bangladesh
2781
+ #: ../admin/view/wp-slimstat-reports.php:1811
2782
  msgid "c-bd"
2783
  msgstr "Bangladesch"
2784
 
2785
  # Barbados
2786
+ #: ../admin/view/wp-slimstat-reports.php:1811
2787
  msgid "c-bb"
2788
  msgstr "Barbados"
2789
 
2790
  # Belarus
2791
+ #: ../admin/view/wp-slimstat-reports.php:1811
2792
  msgid "c-by"
2793
  msgstr "Wei&szlig;russland"
2794
 
2795
  # Belgium
2796
+ #: ../admin/view/wp-slimstat-reports.php:1811
2797
  msgid "c-be"
2798
  msgstr "Belgien"
2799
 
2800
  # Belize
2801
+ #: ../admin/view/wp-slimstat-reports.php:1811
2802
  msgid "c-bz"
2803
  msgstr "Belize"
2804
 
2805
  # Benin
2806
+ #: ../admin/view/wp-slimstat-reports.php:1811
2807
  msgid "c-bj"
2808
  msgstr "Benin"
2809
 
2810
  # Bermuda
2811
+ #: ../admin/view/wp-slimstat-reports.php:1811
2812
  msgid "c-bm"
2813
  msgstr "Bermuda"
2814
 
2815
  # Bhutan
2816
+ #: ../admin/view/wp-slimstat-reports.php:1811
2817
  msgid "c-bt"
2818
  msgstr "Bhutan"
2819
 
2820
  # Bolivia
2821
+ #: ../admin/view/wp-slimstat-reports.php:1811
2822
  msgid "c-bo"
2823
  msgstr "Bolivien"
2824
 
2825
  # Bosnia and Herzegovina
2826
+ #: ../admin/view/wp-slimstat-reports.php:1811
2827
  msgid "c-ba"
2828
  msgstr "Bosnien Herzegowina"
2829
 
2830
  # Botswana
2831
+ #: ../admin/view/wp-slimstat-reports.php:1811
2832
  msgid "c-bw"
2833
  msgstr "Botswana"
2834
 
2835
  # Brazil
2836
+ #: ../admin/view/wp-slimstat-reports.php:1811
2837
  msgid "c-br"
2838
  msgstr "Brasilien"
2839
 
2840
  # Brunei Darussalam
2841
+ #: ../admin/view/wp-slimstat-reports.php:1811
2842
  msgid "c-bn"
2843
  msgstr "Brunei Darussalam"
2844
 
2845
  # Bulgaria
2846
+ #: ../admin/view/wp-slimstat-reports.php:1811
2847
  msgid "c-bg"
2848
  msgstr "Bulgarien"
2849
 
2850
  # Burkina Faso
2851
+ #: ../admin/view/wp-slimstat-reports.php:1811
2852
  msgid "c-bf"
2853
  msgstr "Burkina Faso"
2854
 
2855
  # Burundi
2856
+ #: ../admin/view/wp-slimstat-reports.php:1811
2857
  msgid "c-bi"
2858
  msgstr "Burundi"
2859
 
2860
  # Cambodia
2861
+ #: ../admin/view/wp-slimstat-reports.php:1811
2862
  msgid "c-kh"
2863
  msgstr "Kambodscha"
2864
 
2865
  # Cameroon
2866
+ #: ../admin/view/wp-slimstat-reports.php:1811
2867
  msgid "c-cm"
2868
  msgstr "Kamerun"
2869
 
2870
  # Canada
2871
+ #: ../admin/view/wp-slimstat-reports.php:1811
2872
  msgid "c-ca"
2873
  msgstr "Kanada"
2874
 
2875
  # Cape Verde
2876
+ #: ../admin/view/wp-slimstat-reports.php:1811
2877
  msgid "c-cv"
2878
  msgstr "Kap Verde"
2879
 
2880
  # Cayman Islands
2881
+ #: ../admin/view/wp-slimstat-reports.php:1811
2882
  msgid "c-ky"
2883
  msgstr "Kaimaninseln"
2884
 
2885
  # Central African Republic
2886
+ #: ../admin/view/wp-slimstat-reports.php:1811
2887
  msgid "c-cf"
2888
  msgstr "Zentralafrika"
2889
 
2890
  # Chad
2891
+ #: ../admin/view/wp-slimstat-reports.php:1811
2892
  msgid "c-td"
2893
  msgstr "Tschad"
2894
 
2895
  # Chile
2896
+ #: ../admin/view/wp-slimstat-reports.php:1811
2897
  msgid "c-cl"
2898
  msgstr "Chile"
2899
 
2900
  # China
2901
+ #: ../admin/view/wp-slimstat-reports.php:1811
2902
  msgid "c-cn"
2903
  msgstr "China"
2904
 
2905
  # Colombia
2906
+ #: ../admin/view/wp-slimstat-reports.php:1811
2907
  msgid "c-co"
2908
  msgstr "Kolumbien"
2909
 
2910
  # Comoros
2911
+ #: ../admin/view/wp-slimstat-reports.php:1811
2912
  msgid "c-km"
2913
  msgstr "Komoren"
2914
 
2915
  # Congo
2916
+ #: ../admin/view/wp-slimstat-reports.php:1811
2917
  msgid "c-cg"
2918
  msgstr "Republik Kongo"
2919
 
2920
  # The Democratic Republic of the Congo
2921
+ #: ../admin/view/wp-slimstat-reports.php:1811
2922
  msgid "c-cd"
2923
  msgstr "Demokratische Republik Kongo"
2924
 
2925
  # Costa Rica
2926
+ #: ../admin/view/wp-slimstat-reports.php:1811
2927
  msgid "c-cr"
2928
  msgstr "Costa Rica"
2929
 
2930
  # Côte d'Ivoire
2931
+ #: ../admin/view/wp-slimstat-reports.php:1811
2932
  msgid "c-ci"
2933
  msgstr "Elfenbeink&uuml;ste"
2934
 
2935
  # Croatia
2936
+ #: ../admin/view/wp-slimstat-reports.php:1811
2937
  msgid "c-hr"
2938
  msgstr "Kroatien"
2939
 
2940
  # Cuba
2941
+ #: ../admin/view/wp-slimstat-reports.php:1811
2942
  msgid "c-cu"
2943
  msgstr "Kuba"
2944
 
2945
  # Cyprus
2946
+ #: ../admin/view/wp-slimstat-reports.php:1811
2947
  msgid "c-cy"
2948
  msgstr "Zypern"
2949
 
2950
  # Czech Republic
2951
+ #: ../admin/view/wp-slimstat-reports.php:1811
2952
  msgid "c-cz"
2953
  msgstr "Tschechische Republik"
2954
 
2955
  # Denmark
2956
+ #: ../admin/view/wp-slimstat-reports.php:1811
2957
  msgid "c-dk"
2958
  msgstr "D&auml;nemark"
2959
 
2960
  # Djibouti
2961
+ #: ../admin/view/wp-slimstat-reports.php:1811
2962
  msgid "c-dj"
2963
  msgstr "Dschibuti"
2964
 
2965
  # Dominica
2966
+ #: ../admin/view/wp-slimstat-reports.php:1811
2967
  msgid "c-dm"
2968
  msgstr "Dominica"
2969
 
2970
  # Dominican Republic
2971
+ #: ../admin/view/wp-slimstat-reports.php:1811
2972
  msgid "c-do"
2973
  msgstr "Dominikanische Republik"
2974
 
2975
  # Ecuador
2976
+ #: ../admin/view/wp-slimstat-reports.php:1811
2977
  msgid "c-ec"
2978
  msgstr "Ecuador"
2979
 
2980
  # Egypt
2981
+ #: ../admin/view/wp-slimstat-reports.php:1811
2982
  msgid "c-eg"
2983
  msgstr "&Auml;gypten"
2984
 
2985
  # El Salvador
2986
+ #: ../admin/view/wp-slimstat-reports.php:1811
2987
  msgid "c-sv"
2988
  msgstr "El Salvador"
2989
 
2990
  # Equatorial Guinea
2991
+ #: ../admin/view/wp-slimstat-reports.php:1811
2992
  msgid "c-gq"
2993
  msgstr "Äquatorialguinea"
2994
 
2995
  # Eritrea
2996
+ #: ../admin/view/wp-slimstat-reports.php:1811
2997
  msgid "c-er"
2998
  msgstr "Eritrea"
2999
 
3000
  # Estonia
3001
+ #: ../admin/view/wp-slimstat-reports.php:1811
3002
  msgid "c-ee"
3003
  msgstr "Estland"
3004
 
3005
  # Ethiopia
3006
+ #: ../admin/view/wp-slimstat-reports.php:1811
3007
  msgid "c-et"
3008
  msgstr "&Auml;thiopien"
3009
 
3010
  # Faroe Islands
3011
+ #: ../admin/view/wp-slimstat-reports.php:1811
3012
  msgid "c-fo"
3013
  msgstr "F&auml;r&ouml;er Inseln"
3014
 
3015
  # Falkland Islands (Malvinas)
3016
+ #: ../admin/view/wp-slimstat-reports.php:1811
3017
  msgid "c-fk"
3018
  msgstr "Falklandinseln (Malwinen)"
3019
 
3020
  # Fiji
3021
+ #: ../admin/view/wp-slimstat-reports.php:1811
3022
  msgid "c-fj"
3023
  msgstr "Republik Fidschi"
3024
 
3025
  # Finland
3026
+ #: ../admin/view/wp-slimstat-reports.php:1811
3027
  msgid "c-fi"
3028
  msgstr "Finnland"
3029
 
3030
  # France
3031
+ #: ../admin/view/wp-slimstat-reports.php:1811
3032
  msgid "c-fr"
3033
  msgstr "Franz&ouml;sische Republik"
3034
 
3035
  # French Guiana
3036
+ #: ../admin/view/wp-slimstat-reports.php:1811
3037
  msgid "c-gf"
3038
  msgstr "Franz&ouml;sisch-Guayana"
3039
 
3040
  # Gabon
3041
+ #: ../admin/view/wp-slimstat-reports.php:1811
3042
  msgid "c-ga"
3043
  msgstr "Gabun"
3044
 
3045
  # Gambia
3046
+ #: ../admin/view/wp-slimstat-reports.php:1811
3047
  msgid "c-gm"
3048
  msgstr "Gambia"
3049
 
3050
  # Georgia
3051
+ #: ../admin/view/wp-slimstat-reports.php:1811
3052
  msgid "c-ge"
3053
  msgstr "Georgien"
3054
 
3055
  # Germany
3056
+ #: ../admin/view/wp-slimstat-reports.php:1811
3057
  msgid "c-de"
3058
  msgstr "Bundesrepublik Deutschland"
3059
 
3060
  # Ghana
3061
+ #: ../admin/view/wp-slimstat-reports.php:1811
3062
  msgid "c-gh"
3063
  msgstr "Ghana"
3064
 
3065
  # Greece
3066
+ #: ../admin/view/wp-slimstat-reports.php:1811
3067
  msgid "c-gr"
3068
  msgstr "Griechenland"
3069
 
3070
  # Greenland
3071
+ #: ../admin/view/wp-slimstat-reports.php:1811
3072
  msgid "c-gl"
3073
  msgstr "Gr&ouml;nland"
3074
 
3075
  # Grenada
3076
+ #: ../admin/view/wp-slimstat-reports.php:1811
3077
  msgid "c-gd"
3078
  msgstr "Grenada"
3079
 
3080
  # Guadeloupe
3081
+ #: ../admin/view/wp-slimstat-reports.php:1811
3082
  msgid "c-gp"
3083
  msgstr "Guadeloupe"
3084
 
3085
  # Guatemala
3086
+ #: ../admin/view/wp-slimstat-reports.php:1811
3087
  msgid "c-gt"
3088
  msgstr "Guatemala"
3089
 
3090
  # Guinea
3091
+ #: ../admin/view/wp-slimstat-reports.php:1811
3092
  msgid "c-gn"
3093
  msgstr "Guinea"
3094
 
3095
  # Guinea-Bissau
3096
+ #: ../admin/view/wp-slimstat-reports.php:1811
3097
  msgid "c-gw"
3098
  msgstr "Guinea-Bissau"
3099
 
3100
  # Guyana
3101
+ #: ../admin/view/wp-slimstat-reports.php:1811
3102
  msgid "c-gy"
3103
  msgstr "Guyana"
3104
 
3105
  # Haiti
3106
+ #: ../admin/view/wp-slimstat-reports.php:1811
3107
  msgid "c-ht"
3108
  msgstr "Haiti"
3109
 
3110
  # Honduras
3111
+ #: ../admin/view/wp-slimstat-reports.php:1811
3112
  msgid "c-hn"
3113
  msgstr "Honduras"
3114
 
3115
  # Hong Kong
3116
+ #: ../admin/view/wp-slimstat-reports.php:1811
3117
  msgid "c-hk"
3118
  msgstr "Hong Kong"
3119
 
3120
  # Hungary
3121
+ #: ../admin/view/wp-slimstat-reports.php:1811
3122
  msgid "c-hu"
3123
  msgstr "Ungarn"
3124
 
3125
  # Iceland
3126
+ #: ../admin/view/wp-slimstat-reports.php:1811
3127
  msgid "c-is"
3128
  msgstr "Island"
3129
 
3130
  # India
3131
+ #: ../admin/view/wp-slimstat-reports.php:1811
3132
  msgid "c-in"
3133
  msgstr "Indien"
3134
 
3135
  # Indonesia
3136
+ #: ../admin/view/wp-slimstat-reports.php:1811
3137
  msgid "c-id"
3138
  msgstr "Indonesien"
3139
 
3140
  # Islamic Republic of Iran
3141
+ #: ../admin/view/wp-slimstat-reports.php:1811
3142
  msgid "c-ir"
3143
  msgstr "Islamische Republik Iran"
3144
 
3145
  # Iraq
3146
+ #: ../admin/view/wp-slimstat-reports.php:1811
3147
  msgid "c-iq"
3148
  msgstr "Irak"
3149
 
3150
  # Ireland
3151
+ #: ../admin/view/wp-slimstat-reports.php:1811
3152
  msgid "c-ie"
3153
  msgstr "Irland"
3154
 
3155
  # Israel
3156
+ #: ../admin/view/wp-slimstat-reports.php:1811
3157
  msgid "c-il"
3158
  msgstr "Israel"
3159
 
3160
  # Italy
3161
+ #: ../admin/view/wp-slimstat-reports.php:1811
3162
  msgid "c-it"
3163
  msgstr "Italien"
3164
 
3165
  # Jamaica
3166
+ #: ../admin/view/wp-slimstat-reports.php:1811
3167
  msgid "c-jm"
3168
  msgstr "Jamaika"
3169
 
3170
  # Japan
3171
+ #: ../admin/view/wp-slimstat-reports.php:1811
3172
  msgid "c-jp"
3173
  msgstr "Japan"
3174
 
3175
  # Jordan
3176
+ #: ../admin/view/wp-slimstat-reports.php:1811
3177
  msgid "c-jo"
3178
  msgstr "Jordan"
3179
 
3180
  # Kazakhstan
3181
+ #: ../admin/view/wp-slimstat-reports.php:1811
3182
  msgid "c-kz"
3183
  msgstr "Kasachstan"
3184
 
3185
  # Kenya
3186
+ #: ../admin/view/wp-slimstat-reports.php:1811
3187
  msgid "c-ke"
3188
  msgstr "Kenia"
3189
 
3190
  # Nauru
3191
+ #: ../admin/view/wp-slimstat-reports.php:1811
3192
  msgid "c-nr"
3193
  msgstr "Nauru"
3194
 
3195
  # Democratic People's Republic of Korea
3196
+ #: ../admin/view/wp-slimstat-reports.php:1811
3197
  msgid "c-kp"
3198
  msgstr "Demokratische Volksrepublik Korea"
3199
 
3200
  # Republic of Korea
3201
+ #: ../admin/view/wp-slimstat-reports.php:1811
3202
  msgid "c-kr"
3203
  msgstr "Republik Korea"
3204
 
3205
+ #: ../admin/view/wp-slimstat-reports.php:1811
3206
  msgid "c-kv"
3207
  msgstr "Komi"
3208
 
3209
  # Kuwait
3210
+ #: ../admin/view/wp-slimstat-reports.php:1811
3211
  msgid "c-kw"
3212
  msgstr "Kuwait"
3213
 
3214
  # Kyrgyzstan
3215
+ #: ../admin/view/wp-slimstat-reports.php:1811
3216
  msgid "c-kg"
3217
  msgstr "Kirgistan"
3218
 
3219
  # Lao People's Democratic Republic
3220
+ #: ../admin/view/wp-slimstat-reports.php:1811
3221
  msgid "c-la"
3222
  msgstr "Demokratische Volksrepublik Laos"
3223
 
3224
  # Latvia
3225
+ #: ../admin/view/wp-slimstat-reports.php:1811
3226
  msgid "c-lv"
3227
  msgstr "Lettland"
3228
 
3229
  # Lebanon
3230
+ #: ../admin/view/wp-slimstat-reports.php:1811
3231
  msgid "c-lb"
3232
  msgstr "Libanon"
3233
 
3234
  # Lesotho
3235
+ #: ../admin/view/wp-slimstat-reports.php:1811
3236
  msgid "c-ls"
3237
  msgstr "Lesotho"
3238
 
3239
  # Liberia
3240
+ #: ../admin/view/wp-slimstat-reports.php:1811
3241
  msgid "c-lr"
3242
  msgstr "Liberia"
3243
 
3244
  # Libyan Arab Jamahiriya
3245
+ #: ../admin/view/wp-slimstat-reports.php:1811
3246
  msgid "c-ly"
3247
  msgstr "Libyen"
3248
 
3249
  # Liechtenstein
3250
+ #: ../admin/view/wp-slimstat-reports.php:1811
3251
  msgid "c-li"
3252
  msgstr "Liechtenstein"
3253
 
3254
  # Lithuania
3255
+ #: ../admin/view/wp-slimstat-reports.php:1811
3256
  msgid "c-lt"
3257
  msgstr "Litauen"
3258
 
3259
  # Luxembourg
3260
+ #: ../admin/view/wp-slimstat-reports.php:1811
3261
  msgid "c-lu"
3262
  msgstr "Luxemburg"
3263
 
3264
  # The Former Yugoslav Republic of Macedonia
3265
+ #: ../admin/view/wp-slimstat-reports.php:1811
3266
  msgid "c-mk"
3267
  msgstr "Ehemalige Jugoslawische Republik Mazedonien"
3268
 
3269
  # Madagascar
3270
+ #: ../admin/view/wp-slimstat-reports.php:1811
3271
  msgid "c-mg"
3272
  msgstr "Madagaskar"
3273
 
3274
  # Malawi
3275
+ #: ../admin/view/wp-slimstat-reports.php:1811
3276
  msgid "c-mw"
3277
  msgstr "Malawi"
3278
 
3279
  # Malaysia
3280
+ #: ../admin/view/wp-slimstat-reports.php:1811
3281
  msgid "c-my"
3282
  msgstr "Malaysien"
3283
 
3284
  # Mali
3285
+ #: ../admin/view/wp-slimstat-reports.php:1811
3286
  msgid "c-ml"
3287
  msgstr "Mali"
3288
 
3289
  # Malta
3290
+ #: ../admin/view/wp-slimstat-reports.php:1811
3291
  msgid "c-mt"
3292
  msgstr "Malta"
3293
 
3294
  # Martinique
3295
+ #: ../admin/view/wp-slimstat-reports.php:1811
3296
  msgid "c-mq"
3297
  msgstr "Martinique"
3298
 
3299
  # Mauritania
3300
+ #: ../admin/view/wp-slimstat-reports.php:1811
3301
  msgid "c-mr"
3302
  msgstr "Mauritanien"
3303
 
3304
  # Mauritius
3305
+ #: ../admin/view/wp-slimstat-reports.php:1811
3306
  msgid "c-mu"
3307
  msgstr "Mauritius"
3308
 
3309
  # Mexico
3310
+ #: ../admin/view/wp-slimstat-reports.php:1811
3311
  msgid "c-mx"
3312
  msgstr "Mexiko"
3313
 
3314
  # Moldova
3315
+ #: ../admin/view/wp-slimstat-reports.php:1811
3316
  msgid "c-md"
3317
  msgstr "Moldawien"
3318
 
3319
  # Mongolia
3320
+ #: ../admin/view/wp-slimstat-reports.php:1811
3321
  msgid "c-mn"
3322
  msgstr "Mongolei"
3323
 
3324
  # Montenegro
3325
+ #: ../admin/view/wp-slimstat-reports.php:1811
3326
  msgid "c-me"
3327
  msgstr "Montenegro"
3328
 
3329
  # Montserrat
3330
+ #: ../admin/view/wp-slimstat-reports.php:1811
3331
  msgid "c-ms"
3332
  msgstr "Montserrat"
3333
 
3334
  # Morocco
3335
+ #: ../admin/view/wp-slimstat-reports.php:1811
3336
  msgid "c-ma"
3337
  msgstr "Marokko"
3338
 
3339
  # Mozambique
3340
+ #: ../admin/view/wp-slimstat-reports.php:1811
3341
  msgid "c-mz"
3342
  msgstr "Mosambik"
3343
 
3344
  # Myanmar
3345
+ #: ../admin/view/wp-slimstat-reports.php:1811
3346
  msgid "c-mm"
3347
  msgstr "Myanmar"
3348
 
3349
  # Namibia
3350
+ #: ../admin/view/wp-slimstat-reports.php:1811
3351
  msgid "c-na"
3352
  msgstr "Namibia"
3353
 
3354
  # Nepal
3355
+ #: ../admin/view/wp-slimstat-reports.php:1811
3356
  msgid "c-np"
3357
  msgstr "Nepal"
3358
 
3359
  # Netherlands
3360
+ #: ../admin/view/wp-slimstat-reports.php:1811
3361
  msgid "c-nl"
3362
  msgstr "Niederlande"
3363
 
3364
  # New Caledonia
3365
+ #: ../admin/view/wp-slimstat-reports.php:1811
3366
  msgid "c-nc"
3367
  msgstr "Neukaledonien"
3368
 
3369
  # New Zealand
3370
+ #: ../admin/view/wp-slimstat-reports.php:1811
3371
  msgid "c-nz"
3372
  msgstr "Neuseeland"
3373
 
3374
  # Nicaragua
3375
+ #: ../admin/view/wp-slimstat-reports.php:1811
3376
  msgid "c-ni"
3377
  msgstr "Nicaragua"
3378
 
3379
  # Niger
3380
+ #: ../admin/view/wp-slimstat-reports.php:1811
3381
  msgid "c-ne"
3382
  msgstr "Niger"
3383
 
3384
  # Nigeria
3385
+ #: ../admin/view/wp-slimstat-reports.php:1811
3386
  msgid "c-ng"
3387
  msgstr "Nigeria"
3388
 
3389
  # Norway
3390
+ #: ../admin/view/wp-slimstat-reports.php:1811
3391
  msgid "c-no"
3392
  msgstr "Norwegen"
3393
 
3394
  # Oman
3395
+ #: ../admin/view/wp-slimstat-reports.php:1811
3396
  msgid "c-om"
3397
  msgstr "Oman"
3398
 
3399
  # Pakistan
3400
+ #: ../admin/view/wp-slimstat-reports.php:1811
3401
  msgid "c-pk"
3402
  msgstr "Pakistan"
3403
 
3404
  # Palau
3405
+ #: ../admin/view/wp-slimstat-reports.php:1811
3406
  msgid "c-pw"
3407
  msgstr "Palau"
3408
 
3409
  # Occupied Palestinian Territory
3410
+ #: ../admin/view/wp-slimstat-reports.php:1811
3411
  msgid "c-ps"
3412
  msgstr "Palästinensische Autonomiegebiete"
3413
 
3414
  # Panama
3415
+ #: ../admin/view/wp-slimstat-reports.php:1811
3416
  msgid "c-pa"
3417
  msgstr "Panama"
3418
 
3419
  # Papua New Guinea
3420
+ #: ../admin/view/wp-slimstat-reports.php:1811
3421
  msgid "c-pg"
3422
  msgstr "Papua Neu Guinea"
3423
 
3424
  # Paraguay
3425
+ #: ../admin/view/wp-slimstat-reports.php:1811
3426
  msgid "c-py"
3427
  msgstr "Paraguay"
3428
 
3429
  # Peru
3430
+ #: ../admin/view/wp-slimstat-reports.php:1811
3431
  msgid "c-pe"
3432
  msgstr "Peru"
3433
 
3434
  # Philippines
3435
+ #: ../admin/view/wp-slimstat-reports.php:1811
3436
  msgid "c-ph"
3437
  msgstr "Philippinen"
3438
 
3439
  # Poland
3440
+ #: ../admin/view/wp-slimstat-reports.php:1811
3441
  msgid "c-pl"
3442
  msgstr "Polen"
3443
 
3444
  # Portugal
3445
+ #: ../admin/view/wp-slimstat-reports.php:1811
3446
  msgid "c-pt"
3447
  msgstr "Portugal"
3448
 
3449
  # Puerto Rico
3450
+ #: ../admin/view/wp-slimstat-reports.php:1811
3451
  msgid "c-pr"
3452
  msgstr "Puerto Rico"
3453
 
3454
  # Qatar
3455
+ #: ../admin/view/wp-slimstat-reports.php:1811
3456
  msgid "c-qa"
3457
  msgstr "Katar"
3458
 
3459
  # Réunion
3460
+ #: ../admin/view/wp-slimstat-reports.php:1811
3461
  msgid "c-re"
3462
  msgstr "Réunion"
3463
 
3464
  # Romania
3465
+ #: ../admin/view/wp-slimstat-reports.php:1811
3466
  msgid "c-ro"
3467
  msgstr "Rum&auml;nien"
3468
 
3469
  # Russian Federation
3470
+ #: ../admin/view/wp-slimstat-reports.php:1811
3471
  msgid "c-ru"
3472
  msgstr "Russische Föderation"
3473
 
3474
  # Rwanda
3475
+ #: ../admin/view/wp-slimstat-reports.php:1811
3476
  msgid "c-rw"
3477
  msgstr "Ruanda"
3478
 
3479
  # Saint Kitts and Nevis
3480
+ #: ../admin/view/wp-slimstat-reports.php:1811
3481
  msgid "c-kn"
3482
  msgstr "St. Kitts und Nevis"
3483
 
3484
  # Saint Lucia
3485
+ #: ../admin/view/wp-slimstat-reports.php:1811
3486
  msgid "c-lc"
3487
  msgstr "Saint Lucia"
3488
 
3489
  # Saint Martin
3490
+ #: ../admin/view/wp-slimstat-reports.php:1811
3491
  msgid "c-mf"
3492
  msgstr "Saint Martin"
3493
 
3494
  # Saint Vincent and the Grenadines
3495
+ #: ../admin/view/wp-slimstat-reports.php:1811
3496
  msgid "c-vc"
3497
  msgstr "St. Vincent und die Grenadinen"
3498
 
3499
  # Samoa
3500
+ #: ../admin/view/wp-slimstat-reports.php:1811
3501
  msgid "c-ws"
3502
  msgstr "Samoa"
3503
 
3504
  # Sao Tome and Principe
3505
+ #: ../admin/view/wp-slimstat-reports.php:1811
3506
  msgid "c-st"
3507
  msgstr "Sao Tomé und Príncipe"
3508
 
3509
  # Saudi Arabia
3510
+ #: ../admin/view/wp-slimstat-reports.php:1811
3511
  msgid "c-sa"
3512
  msgstr "Saudi Arabien"
3513
 
3514
  # Senegal
3515
+ #: ../admin/view/wp-slimstat-reports.php:1811
3516
  msgid "c-sn"
3517
  msgstr "Senegal"
3518
 
3519
  # Serbia
3520
+ #: ../admin/view/wp-slimstat-reports.php:1811
3521
  msgid "c-rs"
3522
  msgstr "Serbien"
3523
 
3524
  # Sierra Leone
3525
+ #: ../admin/view/wp-slimstat-reports.php:1811
3526
  msgid "c-sl"
3527
  msgstr "Sierra Leone"
3528
 
3529
  # Singapore
3530
+ #: ../admin/view/wp-slimstat-reports.php:1811
3531
  msgid "c-sg"
3532
  msgstr "Singapur"
3533
 
3534
  # Slovakia
3535
+ #: ../admin/view/wp-slimstat-reports.php:1811
3536
  msgid "c-sk"
3537
  msgstr "Slowakei"
3538
 
3539
  # Slovenia
3540
+ #: ../admin/view/wp-slimstat-reports.php:1811
3541
  msgid "c-si"
3542
  msgstr "Slowenien"
3543
 
3544
  # Solomon Islands
3545
+ #: ../admin/view/wp-slimstat-reports.php:1811
3546
  msgid "c-sb"
3547
  msgstr "Salomonen"
3548
 
3549
  # Somalia
3550
+ #: ../admin/view/wp-slimstat-reports.php:1811
3551
  msgid "c-so"
3552
  msgstr "Somalia"
3553
 
3554
  # South Africa
3555
+ #: ../admin/view/wp-slimstat-reports.php:1811
3556
  msgid "c-za"
3557
  msgstr "Südafrika"
3558
 
3559
  # South Georgia and the South Sandwich Islands
3560
+ #: ../admin/view/wp-slimstat-reports.php:1811
3561
  msgid "c-gs"
3562
  msgstr "Südgeorgien und die Südlichen Sandwichinseln"
3563
 
3564
  # Spain
3565
+ #: ../admin/view/wp-slimstat-reports.php:1811
3566
  msgid "c-es"
3567
  msgstr "Spanien"
3568
 
3569
  # Sri Lanka
3570
+ #: ../admin/view/wp-slimstat-reports.php:1811
3571
  msgid "c-lk"
3572
  msgstr "Sri Lanka"
3573
 
3574
+ #: ../admin/view/wp-slimstat-reports.php:1811
3575
  msgid "c-sc"
3576
  msgstr ""
3577
 
3578
  # Sudan
3579
+ #: ../admin/view/wp-slimstat-reports.php:1811
3580
  msgid "c-sd"
3581
  msgstr "Sudan"
3582
 
3583
+ #: ../admin/view/wp-slimstat-reports.php:1811
3584
  msgid "c-ss"
3585
  msgstr "Siswati"
3586
 
3587
  # Suriname
3588
+ #: ../admin/view/wp-slimstat-reports.php:1811
3589
  msgid "c-sr"
3590
  msgstr "Suriname"
3591
 
3592
  # Svalbard and Jan Mayen
3593
+ #: ../admin/view/wp-slimstat-reports.php:1811
3594
  msgid "c-sj"
3595
  msgstr "Spitzbergen und Jan Mayen"
3596
 
3597
  # Swaziland
3598
+ #: ../admin/view/wp-slimstat-reports.php:1811
3599
  msgid "c-sz"
3600
  msgstr "Swaziland"
3601
 
3602
  # Sweden
3603
+ #: ../admin/view/wp-slimstat-reports.php:1811
3604
  msgid "c-se"
3605
  msgstr "Schweden"
3606
 
3607
  # Switzerland
3608
+ #: ../admin/view/wp-slimstat-reports.php:1811
3609
  msgid "c-ch"
3610
  msgstr "Schweiz"
3611
 
3612
  # Syrian Arab Republic
3613
+ #: ../admin/view/wp-slimstat-reports.php:1811
3614
  msgid "c-sy"
3615
  msgstr "Arabische Republik Syrien"
3616
 
3617
  # Taiwan, Province of China
3618
+ #: ../admin/view/wp-slimstat-reports.php:1811
3619
  msgid "c-tw"
3620
  msgstr "Taiwan"
3621
 
3622
  # Tajikistan
3623
+ #: ../admin/view/wp-slimstat-reports.php:1811
3624
  msgid "c-tj"
3625
  msgstr "Tadschikistan"
3626
 
3627
  # United Republic of Tanzania
3628
+ #: ../admin/view/wp-slimstat-reports.php:1811
3629
  msgid "c-tz"
3630
  msgstr "Vereinigte Republik Tansania"
3631
 
3632
  # Thailand
3633
+ #: ../admin/view/wp-slimstat-reports.php:1811
3634
  msgid "c-th"
3635
  msgstr "Thailand"
3636
 
3637
  # Timor-Leste
3638
+ #: ../admin/view/wp-slimstat-reports.php:1811
3639
  msgid "c-tl"
3640
  msgstr "Timor-Leste"
3641
 
3642
  # Togo
3643
+ #: ../admin/view/wp-slimstat-reports.php:1811
3644
  msgid "c-tg"
3645
  msgstr "Togo"
3646
 
3647
  # Tonga
3648
+ #: ../admin/view/wp-slimstat-reports.php:1811
3649
  msgid "c-to"
3650
  msgstr "Tonga"
3651
 
3652
  # Trinidad and Tobago
3653
+ #: ../admin/view/wp-slimstat-reports.php:1811
3654
  msgid "c-tt"
3655
  msgstr "Trinidad und Tobago"
3656
 
3657
  # Tunisia
3658
+ #: ../admin/view/wp-slimstat-reports.php:1811
3659
  msgid "c-tn"
3660
  msgstr "Tunesien"
3661
 
3662
  # Turkey
3663
+ #: ../admin/view/wp-slimstat-reports.php:1811
3664
  msgid "c-tr"
3665
  msgstr "T&uuml;rkei"
3666
 
3667
  # Turkmenistan
3668
+ #: ../admin/view/wp-slimstat-reports.php:1811
3669
  msgid "c-tm"
3670
  msgstr "Turkmenistan"
3671
 
3672
  # Turks and Caicos Islands
3673
+ #: ../admin/view/wp-slimstat-reports.php:1811
3674
  msgid "c-tc"
3675
  msgstr "Turks- und Caicosinseln"
3676
 
3677
  # Uganda
3678
+ #: ../admin/view/wp-slimstat-reports.php:1811
3679
  msgid "c-ug"
3680
  msgstr "Uganda"
3681
 
3682
  # Ukraine
3683
+ #: ../admin/view/wp-slimstat-reports.php:1811
3684
  msgid "c-ua"
3685
  msgstr "Ukraine"
3686
 
3687
  # United Arab Emirates
3688
+ #: ../admin/view/wp-slimstat-reports.php:1811
3689
  msgid "c-ae"
3690
  msgstr "Vereinigte Arabische Emirate"
3691
 
3692
  # United Kingdom
3693
+ #: ../admin/view/wp-slimstat-reports.php:1811
3694
  msgid "c-gb"
3695
  msgstr "Vereinigtes K&ouml;nigreich"
3696
 
3697
  # United States
3698
+ #: ../admin/view/wp-slimstat-reports.php:1811
3699
  msgid "c-us"
3700
  msgstr "Vereinigte Staaten"
3701
 
3702
  # Uruguay
3703
+ #: ../admin/view/wp-slimstat-reports.php:1811
3704
  msgid "c-uy"
3705
  msgstr "Uruguay"
3706
 
3707
  # Uzbekistan
3708
+ #: ../admin/view/wp-slimstat-reports.php:1811
3709
  msgid "c-uz"
3710
  msgstr "Usbekistan"
3711
 
3712
  # Vanuatu
3713
+ #: ../admin/view/wp-slimstat-reports.php:1811
3714
  msgid "c-vu"
3715
  msgstr "Vanuatu"
3716
 
3717
  # Venezuela
3718
+ #: ../admin/view/wp-slimstat-reports.php:1811
3719
  msgid "c-ve"
3720
  msgstr "Venezuela"
3721
 
3722
  # Viet Nam
3723
+ #: ../admin/view/wp-slimstat-reports.php:1811
3724
  msgid "c-vn"
3725
  msgstr "Vietnam"
3726
 
3727
  # British Virgin Islands
3728
+ #: ../admin/view/wp-slimstat-reports.php:1811
3729
  msgid "c-vg"
3730
  msgstr "Jungferninseln"
3731
 
3732
  # U.S. Virgin Islands
3733
+ #: ../admin/view/wp-slimstat-reports.php:1811
3734
  msgid "c-vi"
3735
  msgstr "Amerikanische Jungferninseln"
3736
 
3737
  # Western Sahara
3738
+ #: ../admin/view/wp-slimstat-reports.php:1811
3739
  msgid "c-eh"
3740
  msgstr "Westsahara"
3741
 
3742
  # Yemen
3743
+ #: ../admin/view/wp-slimstat-reports.php:1811
3744
  msgid "c-ye"
3745
  msgstr "Jemen"
3746
 
3747
  # Zambia
3748
+ #: ../admin/view/wp-slimstat-reports.php:1811
3749
  msgid "c-zm"
3750
  msgstr "Sambia"
3751
 
3752
  # Zimbabwe
3753
+ #: ../admin/view/wp-slimstat-reports.php:1811
3754
  msgid "c-zw"
3755
  msgstr "Zimbabwe"
3756
 
3757
  # Guernsey
3758
+ #: ../admin/view/wp-slimstat-reports.php:1811
3759
  msgid "c-gg"
3760
  msgstr "Guernsey"
3761
 
3762
  # Jersey
3763
+ #: ../admin/view/wp-slimstat-reports.php:1811
3764
  msgid "c-je"
3765
  msgstr "Jersey"
3766
 
3767
  # Isle of Man
3768
+ #: ../admin/view/wp-slimstat-reports.php:1811
3769
  msgid "c-im"
3770
  msgstr "Isle of Man"
3771
 
3772
  # Maldives
3773
+ #: ../admin/view/wp-slimstat-reports.php:1811
3774
  msgid "c-mv"
3775
  msgstr "Malediven"
3776
 
3777
+ #: ../admin/view/wp-slimstat-reports.php:1812
3778
  msgid "c-eu"
3779
  msgstr ""
3780
 
3781
+ #: ../admin/view/wp-slimstat-reports.php:1894
3782
  msgid "src"
3783
  msgstr "src"
3784
 
3785
+ #: ../admin/view/wp-slimstat-reports.php:1897
3786
  msgid "serp"
3787
  msgstr "serp"
3788
 
3789
+ #: ../admin/view/wp-slimstat-reports.php:1904
3790
  msgid "Go to the referring page"
3791
  msgstr "Verweisende Seite &ouml;ffnen"
3792
 
3793
+ #: ../admin/view/wp-slimstat-reports.php:1926
3794
  msgid "Remove filter for"
3795
  msgstr "Entferne Filter f&uuml;r"
3796
 
3797
+ #: ../admin/view/wp-slimstat-reports.php:1930
3798
  msgid "Save"
3799
  msgstr ""
3800
 
3801
+ #: ../admin/view/wp-slimstat-reports.php:1933
3802
  #, fuzzy
3803
  msgid "Reset All"
3804
  msgstr "Datenbanktabellen zurücksetzen"
3805
 
3806
+ #: ../admin/view/wp-slimstat-reports.php:1937
3807
  msgid "Current filters:"
3808
  msgstr "Aktuelle Filter:"
3809
 
3810
+ #: ../admin/wp-slimstat-admin.php:482 ../admin/wp-slimstat-admin.php:493
3811
+ #: ../admin/wp-slimstat-admin.php:495
3812
  #, fuzzy
3813
  msgid "SlimStat"
3814
  msgstr "&Uuml;ber WP SlimStat"
3815
 
3816
+ #: ../admin/wp-slimstat-admin.php:489 ../admin/wp-slimstat-admin.php:504
3817
+ #: ../wp-slimstat.php:1799
3818
+ #, fuzzy
3819
+ msgid "Customize"
3820
+ msgstr "Benutzerdefinierte CSS"
3821
 
3822
+ #: ../admin/wp-slimstat-admin.php:587
3823
  #, fuzzy
3824
  msgid "Pageviews in the last "
3825
  msgstr "Seitenaufrufe (Diagramm)"
3826
 
3827
+ #: ../admin/wp-slimstat-admin.php:590
3828
  #, fuzzy
3829
  msgid "Unique IPs in the last "
3830
  msgstr "Eindeutige interne Zugriffe"
3831
 
3832
+ #: ../admin/wp-slimstat-admin.php:644
3833
  msgid "Show on screen"
3834
  msgstr "Anzeigen"
3835
 
3836
+ #: ../admin/wp-slimstat-admin.php:725
3837
  msgid "Already saved"
3838
  msgstr ""
3839
 
3840
+ #: ../admin/wp-slimstat-admin.php:733
3841
  msgid "Saved"
3842
  msgstr ""
3843
 
3844
+ #: ../admin/wp-slimstat-admin.php:753
3845
  #, fuzzy
3846
  msgid "Delete this filter"
3847
  msgstr "Lösche Seitenaufrufe, wo"
3848
 
3849
+ #: ../admin/wp-slimstat-admin.php:797
3850
  msgid "There was an error updating the following options:"
3851
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
3852
 
3853
+ #: ../admin/wp-slimstat-admin.php:800
3854
  #, fuzzy
3855
  msgid "Your changes have been saved."
3856
  msgstr "Optionen erfolgreich aktualisiert."
3857
 
3858
+ #: ../admin/wp-slimstat-admin.php:823
3859
  msgid "Save Changes"
3860
  msgstr "Änderungen speichern"
3861
 
3862
+ #: ../admin/wp-slimstat-admin.php:839
3863
  msgid "Definitions"
3864
  msgstr "Definitionen"
3865
 
3866
+ #: ../admin/wp-slimstat-admin.php:842
3867
  msgid "Pageview"
3868
  msgstr "Seitenaufrufe"
3869
 
3870
+ #: ../admin/wp-slimstat-admin.php:842
3871
  #, fuzzy
3872
  msgid ""
3873
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3878
  "jedesmal einen 'Seitenaufruf' auf wenn der Tracking-Code ausgef&uuml;hrt "
3879
  "wird."
3880
 
3881
+ #: ../admin/wp-slimstat-admin.php:843
3882
  msgid "(Human) Visit"
3883
  msgstr "Echte Besuche"
3884
 
3885
+ #: ../admin/wp-slimstat-admin.php:843
3886
  msgid ""
3887
  "A period of interaction between a visitor's browser and your website, ending "
3888
  "when the browser is closed or when the user has been inactive on that site "
3892
  "Diese endet wenn der Browser geschlossen wird oder der Besucher 30 Minuten "
3893
  "lang nicht auf der Website aktiv war"
3894
 
3895
+ #: ../admin/wp-slimstat-admin.php:844
3896
  msgid ""
3897
  "Any user who has left a comment on your blog, and is thus identified by "
3898
  "Wordpress as a returning visitor"
3900
  "Jeder Benutzer, der einen Kommentar auf Ihrer Website hinterlassen hat und "
3901
  "damit als wiederkehrender Besucher erkannt wird."
3902
 
3903
+ #: ../admin/wp-slimstat-admin.php:845
3904
  msgid "Unique IP"
3905
  msgstr "Eindeutige IPs"
3906
 
3907
+ #: ../admin/wp-slimstat-admin.php:845
3908
  msgid ""
3909
  "Used to differentiate between multiple requests to download a file from one "
3910
  "internet address (IP) and requests originating from many distinct addresses; "
3916
  "Adresse von der ein Seitenaufruf stammt achtet, ist es nützlich, aber nicht "
3917
  "perfekt."
3918
 
3919
+ #: ../admin/wp-slimstat-admin.php:846
3920
  msgid ""
3921
  "the originating IP address of a client connecting to a web server through an "
3922
  "HTTP proxy or load balancer"
3924
  "Die ursprüngliche IP-Adresse eines Clients, der sich durch einen HTTP Proxy "
3925
  "oder Load Balancer mit dem Server verbunden hat."
3926
 
3927
+ #: ../admin/wp-slimstat-admin.php:847
3928
  msgid "Direct Traffic"
3929
  msgstr "Direkter Besuch"
3930
 
3931
+ #: ../admin/wp-slimstat-admin.php:847
3932
  msgid ""
3933
  "All those people showing up to your Web site by typing in the URL of your "
3934
  "Web site coming or from a bookmark; some people also call this \"default "
3938
  "oder ein Lesezeichen erreichen; auch \"default traffic\" oder \"ambient "
3939
  "traffic\" genannt."
3940
 
3941
+ #: ../admin/wp-slimstat-admin.php:848
3942
  msgid "Search Engine"
3943
  msgstr "Suchmaschinen"
3944
 
3945
+ #: ../admin/wp-slimstat-admin.php:848
3946
  msgid ""
3947
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3948
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
3950
  "Google, Yahoo, MSN, Ask usw.; hiwer ist sowohl organischer als auch "
3951
  "bezahlter (PPC/SEM) Traffic enthalten."
3952
 
3953
+ #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
3954
  msgid "Keywords used by your visitors to find your website on a search engine"
3955
  msgstr "Begriffe welche von Besuchern in Suchmaschinen verwendet wurden"
3956
 
3957
+ #: ../admin/wp-slimstat-admin.php:850
3958
  msgid "SERP"
3959
  msgstr "SERP"
3960
 
3961
+ #: ../admin/wp-slimstat-admin.php:850
3962
  msgid ""
3963
  "Short for search engine results page, the Web page that a search engine "
3964
  "returns with the results of its search. The value shown represents your rank "
3967
  "\"Search Engine Result Pages\" - Suchmaschinenranking. Der Wert "
3968
  "repräsentiert Ihren Rang (die Postition) in den Suchergebnissen."
3969
 
3970
+ #: ../admin/wp-slimstat-admin.php:851
3971
  msgid ""
3972
  "Any program used for accessing a website; this includes browsers, robots, "
3973
  "spiders and any other program that was used to retrieve information from the "
3977
  "usw.), 'Robots' und 'Spider' sowie jedes andere Programm welches "
3978
  "Informationen von einer Website abruft."
3979
 
3980
+ #: ../admin/wp-slimstat-admin.php:852
3981
  msgid ""
3982
  "A link from one domain to another is said to be outbound from its source "
3983
  "anchor and inbound to its target. This report lists all the links to other "
3986
  "Ausgehende Links sind links zu einer anderen Domain. Dieser Report zeigt "
3987
  "alle Links zu anderen Websites die Ihre Besucher verfolgt haben."
3988
 
3989
+ #: ../admin/wp-slimstat-admin.php:859
3990
  msgid "Basic Filters"
3991
  msgstr "Einfache Filter"
3992
 
3993
+ #: ../admin/wp-slimstat-admin.php:862
3994
  msgid "User agent (Firefox, Chrome, ...)"
3995
  msgstr "Browser (Firefox, Chrome ...)"
3996
 
3997
+ #: ../admin/wp-slimstat-admin.php:863
3998
  msgid "2-letter code (us, ru, de, it, ...)"
3999
  msgstr "Länder-Code (us, ru, de, it...)"
4000
 
4001
+ #: ../admin/wp-slimstat-admin.php:864
4002
  msgid "IP"
4003
  msgstr "IP"
4004
 
4005
+ #: ../admin/wp-slimstat-admin.php:864
4006
  msgid "Visitor's public IP address"
4007
  msgstr "&Ouml;ffentliche IP-Adresse des Besuchers"
4008
 
4009
+ #: ../admin/wp-slimstat-admin.php:866
4010
  msgid ""
4011
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
4012
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
4015
  "Siehe <a target=\"_blank\" href=\"http://msdn.microsoft.com/en-us/library/"
4016
  "ee825488(v=cs.20).aspx\">Tabelle von Sprach-Kodierungen</a> "
4017
 
4018
+ #: ../admin/wp-slimstat-admin.php:867
4019
  msgid ""
4020
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
4021
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
4025
  "gibt es auf <a href=\"http://php.net/manual/de/function.get-browser.php\" "
4026
  "target=\"_blank\">dieser Seite</a>"
4027
 
4028
+ #: ../admin/wp-slimstat-admin.php:868
4029
  msgid "URL accessed on your site"
4030
  msgstr "URL, die auf Ihrer Seite besucht wurde"
4031
 
4032
+ #: ../admin/wp-slimstat-admin.php:869
4033
  #, fuzzy
4034
  msgid "Complete address of the referrer page"
4035
  msgstr "Verweisende Seite &ouml;ffnen"
4036
 
4037
+ #: ../admin/wp-slimstat-admin.php:870
4038
  msgid ""
4039
  "Visitors' names according to the cookie set by Wordpress after they leave a "
4040
  "comment"
4042
  "Besuchername laut Cookie, welches Wordpress beim hinterlassen eines "
4043
  "Kommentars anlegt"
4044
 
4045
+ #: ../admin/wp-slimstat-admin.php:878
4046
  msgid "Advanced Filters"
4047
  msgstr "Erweiterte Filter"
4048
 
4049
+ #: ../admin/wp-slimstat-admin.php:881
4050
  msgid "user agent version (9.0, 11, ...)"
4051
  msgstr "Browser-Version (9.0, 11, ...)"
4052
 
4053
+ #: ../admin/wp-slimstat-admin.php:882
4054
  msgid ""
4055
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
4056
  "all others"
4058
  "1 = Suchmaschinen Crawler, 2 = Mobiles Gerät, 3 = Feed-Reader, 0 = alle "
4059
  "anderen"
4060
 
4061
+ #: ../admin/wp-slimstat-admin.php:883
4062
  msgid "Pageview Attributes"
4063
  msgstr "Eigenschaften Seitenaufrufe"
4064
 
4065
+ #: ../admin/wp-slimstat-admin.php:883
4066
  msgid ""
4067
  "this field is set to <em>[pre]</em> if the resource has been accessed "
4068
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4072
  "target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4073
  "Link_prefetching_FAQ\">Link Prefetching</a> oder eine &auml;hnliche "
4074
 
4075
+ #: ../admin/wp-slimstat-admin.php:884
4076
  msgid "author associated to that post/page when the resource was accessed"
4077
  msgstr "Der dem Artikel / der Seite zugeordnete Autor"
4078
 
4079
+ #: ../admin/wp-slimstat-admin.php:885
4080
  msgid "ID of the category/term associated to the resource, when available"
4081
  msgstr "ID der zugeordneten Kategorie, falls vorhanden"
4082
 
4083
+ #: ../admin/wp-slimstat-admin.php:886
4084
  msgid "visitor's originating IP address, if available"
4085
  msgstr "IP-Adresse des Besuchers, falls bekannt"
4086
 
4087
+ #: ../admin/wp-slimstat-admin.php:887
4088
  msgid ""
4089
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4090
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
4097
  "feed, home; F&uuml;r mehr Infos s. <a target=\"_blank\" href=\"http://codex."
4098
  "wordpress.org/Conditional_Tags\">Conditional Tags</a>."
4099
 
4100
+ #: ../admin/wp-slimstat-admin.php:888
4101
  msgid "Screen Resolution"
4102
  msgstr "Bildschirm-Aufl&ouml;sung"
4103
 
4104
+ #: ../admin/wp-slimstat-admin.php:888
4105
  msgid "viewport width and height (1024x768, 800x600, ...)"
4106
  msgstr "Breite und H&ouml;he des sichtbaren Bereiches"
4107
 
4108
+ #: ../admin/wp-slimstat-admin.php:889
4109
  msgid ""
4110
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4111
  "visitors"
4113
  "Meist im Zusammenhang mit <em>nicht leer</em> verwendet, kennzeichnet echte "
4114
  "Besucher"
4115
 
4116
+ #: ../admin/wp-slimstat-admin.php:890
4117
  msgid "Date Filters"
4118
  msgstr "Datumsfilter"
4119
 
4120
+ #: ../admin/wp-slimstat-admin.php:890
4121
  msgid ""
4122
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4123
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
4127
  "-1 erzeugt ein Intervall seit Beginn des Jahres / Monats, z.B. Tag=1, "
4128
  "Monat=1, Jahr leer, Intervall=-1 erzeugt einen 'seit Jahresbeginn' Filter."
4129
 
4130
+ #: ../admin/wp-slimstat-admin.php:891
4131
  msgid "SERP Position"
4132
  msgstr "Suchmaschinenrang"
4133
 
4134
+ #: ../admin/wp-slimstat-admin.php:891
4135
  msgid ""
4136
  "set the filter to Referer contains cd=N&, where N is the position you are "
4137
  "looking for"
4138
  msgstr ""
4139
  "Filter nach Herkunft mit cd=N& setzen, wobei N die gesuchte Position ist"
4140
 
4141
+ #: ../admin/wp-slimstat-admin.php:918
4142
  msgid "Yes"
4143
  msgstr "Ja"
4144
 
4145
+ #: ../admin/wp-slimstat-admin.php:919
4146
  msgid "No"
4147
  msgstr "Nein"
4148
 
4149
+ #: ../admin/wp-slimstat-admin.php:920
4150
  msgid "Site Specific"
4151
  msgstr ""
4152
 
5692
  msgid "c-xy"
5693
  msgstr "Lokale IP-Adresse"
5694
 
5695
+ #: ../wp-slimstat.php:223 ../wp-slimstat.php:515
5696
+ msgid "Notice: Pageview filtered by third-party code"
5697
  msgstr ""
5698
 
5699
+ #: ../wp-slimstat.php:240
5700
+ #, fuzzy, php-format
5701
+ msgid "Error: Malformed URL %s"
5702
  msgstr "Ignoriere Benutzer"
5703
 
5704
+ #: ../wp-slimstat.php:259
5705
+ #, fuzzy, php-format
5706
+ msgid "Notice: Referrer %s is blacklisted"
5707
+ msgstr "Browser-F&auml;higkeiten"
5708
 
5709
+ #: ../wp-slimstat.php:347
5710
+ #, fuzzy, php-format
5711
+ msgid "Notice: Permalink %s is blacklisted"
5712
+ msgstr "Browser-F&auml;higkeiten"
5713
 
5714
+ #: ../wp-slimstat.php:358
5715
+ msgid "Error: Empty or not supported IP address format (IPv6)"
5716
  msgstr ""
5717
 
5718
+ #: ../wp-slimstat.php:367
5719
+ #, php-format
5720
+ msgid "Notice: Logged in user %s not tracked"
5721
  msgstr ""
5722
 
5723
+ #: ../wp-slimstat.php:375
5724
+ #, php-format
5725
+ msgid "Notice: User with capability %s not tracked"
5726
  msgstr ""
5727
 
5728
+ #: ../wp-slimstat.php:385
5729
  #, fuzzy, php-format
5730
+ msgid "Notice: User %s is blacklisted"
5731
  msgstr "Browser-F&auml;higkeiten"
5732
 
5733
+ #: ../wp-slimstat.php:406
5734
  #, fuzzy, php-format
5735
+ msgid "Notice: Spammer %s not tracked"
5736
  msgstr "Bot oder Crawler"
5737
 
5738
+ #: ../wp-slimstat.php:435
5739
  #, fuzzy, php-format
5740
+ msgid "Notice: IP address %s is blacklisted"
5741
  msgstr "Browser-F&auml;higkeiten"
5742
 
5743
+ #: ../wp-slimstat.php:464
5744
  #, fuzzy, php-format
5745
+ msgid "Notice: Country %s is blacklisted"
5746
  msgstr "Browser-F&auml;higkeiten"
5747
 
5748
+ #: ../wp-slimstat.php:473
5749
+ msgid "Notice: Prefetch requests are ignored"
5750
  msgstr ""
5751
 
5752
+ #: ../wp-slimstat.php:489
5753
  #, fuzzy
5754
+ msgid "Notice: Bot not tracked"
5755
  msgstr "Bot oder Crawler"
5756
 
5757
+ #: ../wp-slimstat.php:498
5758
  #, fuzzy, php-format
5759
+ msgid "Notice: Browser %s is blacklisted"
5760
  msgstr "Browser-F&auml;higkeiten"
5761
 
5762
+ #: ../wp-slimstat.php:528
5763
+ msgid "Error:"
5764
+ msgstr ""
5765
+
5766
+ #: ../wp-slimstat.php:1209
5767
  msgid "Invalid payload string. Try clearing your WordPress cache."
5768
  msgstr ""
5769
 
5770
+ #: ../wp-slimstat.php:1219
5771
  msgid "Invalid data signature. Try clearing your WordPress cache."
5772
  msgstr ""
5773
 
5774
+ #: ../wp-slimstat.php:1289
5775
  #, fuzzy
5776
  msgid "There was an error downloading the MaxMind Geolite DB:"
5777
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
5778
 
5779
+ #: ../wp-slimstat.php:1297 ../wp-slimstat.php:1306
5780
  #, fuzzy
5781
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5782
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
5783
 
5784
+ #: ../wp-slimstat.php:1301
5785
  msgid "Function gzopen not defined. Aborting."
5786
  msgstr ""
5787
 
5788
+ #: ../wp-slimstat.php:1311
5789
  #, fuzzy
5790
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5791
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
5792
 
5793
+ #~ msgid "Ignore users (username not found)"
5794
+ #~ msgstr "Benutzer ignorieren (Benutzername nicht gefunden)"
5795
+
5796
+ #~ msgid "General"
5797
+ #~ msgstr "Allgemein"
5798
+
5799
+ #, fuzzy
5800
+ #~ msgid "Track Pageviews"
5801
+ #~ msgstr "Gesamte Seitenaufrufe"
5802
+
5803
+ #, fuzzy
5804
+ #~ msgid "Visitors and Known Users"
5805
+ #~ msgstr "Bekannte Benutzer"
5806
+
5807
+ #, fuzzy
5808
+ #~ msgid ""
5809
+ #~ "List all the usernames you don't want to track, separated by commas. "
5810
+ #~ "Please be aware that spaces are <em>not</em> ignored and that usernames "
5811
+ #~ "are case sensitive."
5812
+ #~ msgstr ""
5813
+ #~ "Wordpress-Benutzer, die nicht getrackt werden sollen, getrennt durch "
5814
+ #~ "Beistriche. Leerzeichen werden <em>nicht</em> ignoriert und Gro&szlig;-/ "
5815
+ #~ "Kleinschreibung wird beachtet."
5816
+
5817
+ #~ msgid "Permissions"
5818
+ #~ msgstr "Berechtigungen"
5819
+
5820
+ #~ msgid "Advanced"
5821
+ #~ msgstr "Erweitert"
5822
+
5823
+ #~ msgid "Double click on an empty region to reset the zoom level"
5824
+ #~ msgstr ""
5825
+ #~ "Doppelklick auf einen freien Bereich, um den Zoomlevel zur&uuml;ckzusetzen"
5826
+
5827
+ #~ msgid "Custom Reports"
5828
+ #~ msgstr "individuelle Auswertungen"
5829
+
5830
  #, fuzzy
5831
  #~ msgid "Tracking"
5832
  #~ msgstr "Tracking aktiv"
5852
  #~ msgid "External Pages"
5853
  #~ msgstr "Gesamte Seitenaufrufe"
5854
 
 
 
 
5855
  #~ msgid "Recent Screen Resolutions"
5856
  #~ msgstr "Letzte Bildschirmaufl&ouml;sungen"
5857
 
5884
  #~ msgid "Avg Page Load Time"
5885
  #~ msgstr "Durchschnittl. Seitenaufrufe"
5886
 
 
 
 
 
5887
  #, fuzzy
5888
  #~ msgid "Javascript"
5889
  #~ msgstr "Tracking per JavaScript"
6248
  #~ msgid "IP Addresses"
6249
  #~ msgstr "IP-Adressen"
6250
 
 
 
 
6251
  #~ msgid "Users by capability"
6252
  #~ msgstr "Benutzer nach Browserf&auml;higkeiten"
6253
 
languages/wp-slimstat-en_US.mo CHANGED
Binary file
languages/wp-slimstat-en_US.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
- "POT-Creation-Date: 2015-10-01 20:58-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
7
  "Language-Team: camu <support@wp-slimstat.com>\n"
@@ -15,120 +15,48 @@ msgstr ""
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../admin/config/addons.php:15
19
- msgid ""
20
- "There was an error retrieving the add-ons list from the server. Please try "
21
- "again later. Error Message:"
22
- msgstr ""
23
-
24
- #: ../admin/config/addons.php:25
25
- msgid ""
26
- "There was an error decoding the add-ons list from the server. Please try "
27
- "again later."
28
- msgstr ""
29
-
30
- #: ../admin/config/addons.php:32 ../admin/config/index.php:255
31
- #: ../admin/wp-slimstat-admin.php:656 ../admin/wp-slimstat-admin.php:670
32
- #: ../wp-slimstat.php:1789
33
- msgid "Add-ons"
34
- msgstr ""
35
-
36
- #: ../admin/config/addons.php:33
37
- msgid ""
38
- "Add-ons extend the functionality of Slimstat in many interesting ways. We "
39
- "offer both free and premium (paid) extensions. Each add-on can be installed "
40
- "as a separate plugin, which will receive regular updates via the WordPress "
41
- "Plugins panel. In order to be notified when a new version of a premium add-"
42
- "on is available, please enter the <strong>license key</strong> you received "
43
- "when you purchased it."
44
- msgstr ""
45
-
46
- #: ../admin/config/addons.php:37
47
- #, php-format
48
- msgid ""
49
- "This list is refreshed once daily: <a href=\"%s&amp;force_refresh=true"
50
- "\">click here</a> to clear the cache."
51
- msgstr ""
52
-
53
- #: ../admin/config/addons.php:46
54
- msgid "Add-on"
55
- msgstr ""
56
-
57
- #: ../admin/config/addons.php:46
58
- msgid "Description"
59
- msgstr ""
60
-
61
- #: ../admin/config/addons.php:57
62
- msgid "Repo Version"
63
- msgstr ""
64
-
65
- #: ../admin/config/addons.php:57
66
- msgid "Version"
67
- msgstr ""
68
-
69
- #: ../admin/config/addons.php:69
70
- msgid "Your Version:"
71
- msgstr ""
72
-
73
- #: ../admin/config/addons.php:72
74
- msgid "Installed and Active"
75
- msgstr ""
76
-
77
- #: ../admin/config/index.php:47
78
- msgid "Ignore users (username not found)"
79
- msgstr ""
80
-
81
- #: ../admin/config/index.php:67
82
  msgid ""
83
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
84
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
85
  msgstr ""
86
 
87
- #: ../admin/config/index.php:82
88
  msgid "Read access: username not found"
89
  msgstr ""
90
 
91
- #: ../admin/config/index.php:92 ../admin/config/index.php:117
92
  msgid ""
93
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
94
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
95
  "information"
96
  msgstr ""
97
 
98
- #: ../admin/config/index.php:107
99
  msgid "Config access: username not found"
100
  msgstr ""
101
 
102
- #: ../admin/config/index.php:126
103
- msgid "General"
104
  msgstr ""
105
 
106
- #: ../admin/config/index.php:128 ../admin/config/index.php:224
107
  msgid "Tracker"
108
  msgstr ""
109
 
110
- #: ../admin/config/index.php:129
111
- msgid "Track Pageviews"
112
  msgstr ""
113
 
114
- #: ../admin/config/index.php:129
115
  msgid "Turn the tracker on or off, while keeping the reports accessible."
116
  msgstr ""
117
 
118
- #: ../admin/config/index.php:129 ../admin/config/index.php:131
119
- msgid "On"
120
- msgstr ""
121
-
122
- #: ../admin/config/index.php:129 ../admin/config/index.php:131
123
- #: ../admin/view/wp-slimstat-reports.php:1269
124
- msgid "Off"
125
- msgstr ""
126
-
127
- #: ../admin/config/index.php:130
128
  msgid "Tracking Mode"
129
  msgstr ""
130
 
131
- #: ../admin/config/index.php:130
132
  msgid ""
133
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
134
  "Cache, WP SuperCache, HyperCache, etc). Slimstat will behave pretty much "
@@ -137,19 +65,19 @@ msgid ""
137
  "spammers, search engines and other crawlers</strong> will not be tracked."
138
  msgstr ""
139
 
140
- #: ../admin/config/index.php:130
141
- msgid "Client"
142
  msgstr ""
143
 
144
- #: ../admin/config/index.php:130
145
- msgid "Server"
146
  msgstr ""
147
 
148
- #: ../admin/config/index.php:131
149
  msgid "Stealth Mode"
150
  msgstr ""
151
 
152
- #: ../admin/config/index.php:131
153
  msgid ""
154
  "Do not add the javascript tracking code to your pages, if tracking mode is "
155
  "set to Server. Please note: if enabled, this will prevent the tracker from "
@@ -157,148 +85,156 @@ msgid ""
157
  "etc. This option is ignored is Tracking Mode is set to Client."
158
  msgstr ""
159
 
160
- #: ../admin/config/index.php:132
 
 
 
 
 
 
 
 
161
  msgid "Admin Pages"
162
  msgstr ""
163
 
164
- #: ../admin/config/index.php:132
165
  msgid "Enable this option to track your users' activity within the admin."
166
  msgstr ""
167
 
168
- #: ../admin/config/index.php:132
169
  msgid "Track"
170
  msgstr ""
171
 
172
- #: ../admin/config/index.php:132
173
  msgid "Do not track"
174
  msgstr ""
175
 
176
- #: ../admin/config/index.php:134
177
  msgid "WordPress Integration"
178
  msgstr ""
179
 
180
- #: ../admin/config/index.php:135
181
  msgid "Menu Position"
182
  msgstr ""
183
 
184
- #: ../admin/config/index.php:135
185
  msgid ""
186
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
187
  "admin bar (if visible)."
188
  msgstr ""
189
 
190
- #: ../admin/config/index.php:135
191
  msgid "Side Menu"
192
  msgstr ""
193
 
194
- #: ../admin/config/index.php:135
195
  msgid "Admin Bar"
196
  msgstr ""
197
 
198
- #: ../admin/config/index.php:136
199
  msgid "Posts and Pages"
200
  msgstr ""
201
 
202
- #: ../admin/config/index.php:136
203
  msgid ""
204
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
205
- "per post in the last 365 days."
206
- msgstr ""
207
-
208
- #: ../admin/config/index.php:137
209
- msgid "Dashboard Widgets"
210
  msgstr ""
211
 
212
- #: ../admin/config/index.php:137
213
- msgid ""
214
- "Choose if you want to have the most important reports on your WordPress "
215
- "Dashboard. Use the Screen Options dropdown to select which ones to display."
216
- msgstr ""
217
-
218
- #: ../admin/config/index.php:138
219
  msgid "Report Interval"
220
  msgstr ""
221
 
222
- #: ../admin/config/index.php:138
223
  msgid ""
224
  "Enter the time range, in days, that should be used to calculate the value "
225
  "here above."
226
  msgstr ""
227
 
228
- #: ../admin/config/index.php:139
229
  msgid "Report Type"
230
  msgstr ""
231
 
232
- #: ../admin/config/index.php:139
233
  msgid ""
234
  "Select what kind of information you would like to see displayed on the Posts "
235
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
236
  "IPs consider only one hit per user in the given time range."
237
  msgstr ""
238
 
239
- #: ../admin/config/index.php:139 ../admin/view/wp-slimstat-reports.php:97
240
- #: ../admin/view/wp-slimstat-reports.php:1124
241
- #: ../admin/view/wp-slimstat-reports.php:1285
242
- #: ../admin/view/wp-slimstat-reports.php:1443
243
  msgid "Pageviews"
244
  msgstr ""
245
 
246
- #: ../admin/config/index.php:139 ../admin/view/wp-slimstat-reports.php:1124
247
- #: ../admin/view/wp-slimstat-reports.php:1129
248
- #: ../admin/view/wp-slimstat-reports.php:1134
249
- #: ../admin/view/wp-slimstat-reports.php:1300
250
- #: ../admin/view/wp-slimstat-reports.php:1345
251
  msgid "Unique IPs"
252
  msgstr ""
253
 
254
- #: ../admin/config/index.php:140
 
 
 
 
 
 
 
 
 
 
255
  msgid "Hide Add-ons"
256
  msgstr ""
257
 
258
- #: ../admin/config/index.php:140
259
  msgid ""
260
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
261
  "from the list of plugins in WordPress. Please note that you will still "
262
  "receive updates for hidden add-ons."
263
  msgstr ""
264
 
265
- #: ../admin/config/index.php:142
266
  msgid "Database"
267
  msgstr ""
268
 
269
- #: ../admin/config/index.php:143
270
  msgid "Retain data for"
271
  msgstr ""
272
 
273
- #: ../admin/config/index.php:143
274
  msgid ""
275
  "Clean-up log entries older than the number of days specified here above. "
276
  "Enter <strong>0</strong> (number zero) if you want to preserve your data "
277
  "regardless of its age."
278
  msgstr ""
279
 
280
- #: ../admin/config/index.php:143
281
  msgid "Next clean-up on"
282
  msgstr ""
283
 
284
- #: ../admin/config/index.php:143
285
  #, php-format
286
  msgid ""
287
  "Entries logged on or before %s will be archived or deleted according to the "
288
  "option here below."
289
  msgstr ""
290
 
291
- #: ../admin/config/index.php:143 ../admin/view/index.php:102
292
  #: ../admin/view/wp-slimstat-db.php:79
293
- #: ../admin/view/wp-slimstat-reports.php:1269
294
  msgid "days"
295
  msgstr ""
296
 
297
- #: ../admin/config/index.php:144
298
  msgid "Delete records"
299
  msgstr ""
300
 
301
- #: ../admin/config/index.php:144
302
  msgid ""
303
  "If DB space is not an issue, you can decide to archive older records in "
304
  "another table, instead of deleting them. This way performance is preserved, "
@@ -308,258 +244,211 @@ msgid ""
308
  "is uninstalled. Make sure to backup your data before you proceed."
309
  msgstr ""
310
 
311
- #: ../admin/config/index.php:149 ../admin/config/index.php:210
312
- msgid "Reports"
313
  msgstr ""
314
 
315
- #: ../admin/config/index.php:151
316
- msgid "Formats and Conversions"
317
  msgstr ""
318
 
319
- #: ../admin/config/index.php:152
320
- msgid "Number Format"
 
 
321
  msgstr ""
322
 
323
- #: ../admin/config/index.php:152
324
- msgid "Choose the number format you want to use for your reports."
325
  msgstr ""
326
 
327
- #: ../admin/config/index.php:153
328
- msgid "Date Format"
329
  msgstr ""
330
 
331
- #: ../admin/config/index.php:153
332
- msgid ""
333
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
334
- "Format</a> to use when displaying a pageview's date."
335
  msgstr ""
336
 
337
- #: ../admin/config/index.php:154
338
- msgid "Time Format"
339
  msgstr ""
340
 
341
- #: ../admin/config/index.php:154
342
  msgid ""
343
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
344
- "Format</a> to use when displaying a pageview's time."
 
345
  msgstr ""
346
 
347
- #: ../admin/config/index.php:155
348
- msgid "Use Display Name"
349
  msgstr ""
350
 
351
- #: ../admin/config/index.php:155
352
  msgid ""
353
- "By default, users are listed by their usernames. Use this option to "
354
- "visualize their display names instead."
 
 
 
355
  msgstr ""
356
 
357
- #: ../admin/config/index.php:156
358
- msgid "Use Titles"
359
  msgstr ""
360
 
361
- #: ../admin/config/index.php:156
362
- msgid ""
363
- "Slimstat converts your permalinks into post, page and category titles. "
364
- "Disable this feature if you need to see the URL in your reports."
365
  msgstr ""
366
 
367
- #: ../admin/config/index.php:157
368
- msgid "Convert IP Addresses"
 
 
369
  msgstr ""
370
 
371
- #: ../admin/config/index.php:157
372
- msgid "Display provider names instead of IP addresses."
373
  msgstr ""
374
 
375
- #: ../admin/config/index.php:159
376
- msgid "Functionality"
 
 
 
377
  msgstr ""
378
 
379
- #: ../admin/config/index.php:160
380
- msgid "SlimScroll"
381
  msgstr ""
382
 
383
- #: ../admin/config/index.php:160
384
  msgid ""
385
- "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
386
- "scrollbar."
 
 
387
  msgstr ""
388
 
389
- #: ../admin/config/index.php:161
390
- msgid "Expand Details"
391
  msgstr ""
392
 
393
- #: ../admin/config/index.php:161
394
- msgid "Expand each row's details by default, insted of on mousehover."
 
 
 
395
  msgstr ""
396
 
397
- #: ../admin/config/index.php:162 ../admin/config/index.php:167
398
- msgid "Rows to Display"
399
  msgstr ""
400
 
401
- #: ../admin/config/index.php:162
402
- msgid "Specify the number of items in each report."
 
 
 
403
  msgstr ""
404
 
405
- #: ../admin/config/index.php:163 ../admin/view/wp-slimstat-db.php:101
406
- msgid "Max Results"
407
  msgstr ""
408
 
409
- #: ../admin/config/index.php:163
410
  msgid ""
411
- "Decide how many records should be retrieved from the database in total. "
412
- "Depending on your server configuration, you may want to fine tune this value "
413
- "to avoid exceeding your PHP memory limit."
 
 
 
 
414
  msgstr ""
415
 
416
- #: ../admin/config/index.php:165
417
- msgid "Activity Log"
 
418
  msgstr ""
419
 
420
- #: ../admin/config/index.php:166
421
- msgid "Live Stream"
422
  msgstr ""
423
 
424
- #: ../admin/config/index.php:166
425
  msgid ""
426
- "Enable the Live view, which refreshes the Activity Log every X seconds. "
427
- "Enter <strong>0</strong> (number zero) to deactivate this feature."
 
 
 
428
  msgstr ""
429
 
430
- #: ../admin/config/index.php:166 ../admin/config/index.php:225
431
- msgid "seconds"
 
 
 
 
432
  msgstr ""
433
 
434
  #: ../admin/config/index.php:167
435
- msgid "Specify the number of items in the Activity Log."
436
  msgstr ""
437
 
438
- #: ../admin/config/index.php:169 ../admin/config/index.php:201
439
- #: ../admin/config/index.php:242
440
- msgid "Miscellaneous"
441
  msgstr ""
442
 
443
- #: ../admin/config/index.php:170
444
- msgid "Custom CSS"
445
  msgstr ""
446
 
447
- #: ../admin/config/index.php:170
448
  msgid ""
449
- "Paste here your custom stylesheet to personalize the way your reports look. "
450
- "<a href='https://slimstat.freshdesk.com/support/solutions/"
451
- "articles/5000528528-how-can-i-change-the-colors-associated-to-color-coded-"
452
- "pageviews-known-user-known-visitors-search-e' target='_blank'>Check the FAQ</"
453
- "a> for more information on how to use this setting."
 
454
  msgstr ""
455
 
456
- #: ../admin/config/index.php:171
457
- msgid "Chart Colors"
458
  msgstr ""
459
 
460
- #: ../admin/config/index.php:171
461
  msgid ""
462
- "Customize the look and feel of your charts by assigning personalized colors "
463
- "to each metric. List 4 hex colors separated by commas, strictly in the "
464
- "following order: metric 1 previous, metric 2 previous, metric 1 current, "
465
- "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
 
466
  msgstr ""
467
 
468
- #: ../admin/config/index.php:172
469
- msgid "Show User Agent"
470
  msgstr ""
471
 
472
- #: ../admin/config/index.php:172
473
- msgid ""
474
- "Choose if you want to see the browser name or a complete user agent string "
475
- "when hovering on browser icons."
476
- msgstr ""
477
-
478
- #: ../admin/config/index.php:173
479
- msgid "Enable SOV"
480
- msgstr ""
481
-
482
- #: ../admin/config/index.php:173
483
- msgid ""
484
- "In linguistic typology, a subject-object-verb (SOV) language is one in which "
485
- "the subject, object, and verb of a sentence appear in that order, like in "
486
- "Japanese."
487
- msgstr ""
488
-
489
- #: ../admin/config/index.php:174
490
- msgid "Social Analytics"
491
- msgstr ""
492
-
493
- #: ../admin/config/index.php:174
494
- msgid ""
495
- "Thanks to a <a href='http://getsocial.io/enterprise' "
496
- "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
497
- "set of analytics for social media where you can identify top performing "
498
- "posts. Track social sharing to understand which of your posts are generating "
499
- "more engagement. When this option is enabled, Slimstat sends a list of all "
500
- "your posts's URLs to their service for analysis once daily."
501
- msgstr ""
502
-
503
- #: ../admin/config/index.php:179
504
- msgid "Filters"
505
- msgstr ""
506
-
507
- #: ../admin/config/index.php:181
508
- msgid "Visitors and Known Users"
509
- msgstr ""
510
-
511
- #: ../admin/config/index.php:182
512
- msgid "Track Registered Users"
513
- msgstr ""
514
-
515
- #: ../admin/config/index.php:182
516
- msgid "Enable this option to track logged in users."
517
- msgstr ""
518
-
519
- #: ../admin/config/index.php:183
520
- msgid "Blacklist by Username"
521
- msgstr ""
522
-
523
- #: ../admin/config/index.php:183
524
- msgid ""
525
- "List all the usernames you don't want to track, separated by commas. Please "
526
- "be aware that spaces are <em>not</em> ignored and that usernames are case "
527
- "sensitive."
528
- msgstr ""
529
-
530
- #: ../admin/config/index.php:184
531
- msgid "Blacklist by IP Address"
532
- msgstr ""
533
-
534
- #: ../admin/config/index.php:184
535
- msgid ""
536
- "List all the IP addresses you don't want to track, separated by commas. Each "
537
- "network <strong>must</strong> be defined using the <a href='http://en."
538
- "wikipedia.org/wiki/Classless_Inter-Domain_Routing' target='_blank'>CIDR "
539
- "notation</a> (i.e. <em>192.168.0.0/24</em>). This filter applies both to the "
540
- "public IP and the originating IP, if available."
541
- msgstr ""
542
-
543
- #: ../admin/config/index.php:185
544
- msgid "Blacklist by Capability"
545
- msgstr ""
546
-
547
- #: ../admin/config/index.php:185
548
  msgid ""
549
  "Users having at least one of the <a href='http://codex.wordpress.org/"
550
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
551
  "will not be tracked. Capabilities are case-insensitive."
552
  msgstr ""
553
 
554
- #: ../admin/config/index.php:187
555
  msgid "Profiling"
556
  msgstr ""
557
 
558
- #: ../admin/config/index.php:188
559
  msgid "Ignore Spammers"
560
  msgstr ""
561
 
562
- #: ../admin/config/index.php:188
563
  msgid ""
564
  "Enable this option if you don't want to track visits from users identified "
565
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -567,11 +456,11 @@ msgid ""
567
  "database."
568
  msgstr ""
569
 
570
- #: ../admin/config/index.php:189
571
  msgid "Ignore Bots"
572
  msgstr ""
573
 
574
- #: ../admin/config/index.php:189
575
  msgid ""
576
  "Turn on this feature if you want to have the accuracy level of server-side "
577
  "tracking, but not the inconvenience of getting your database clogged with "
@@ -579,11 +468,11 @@ msgid ""
579
  "note that in Client mode, bots are ignored regardless of this setting."
580
  msgstr ""
581
 
582
- #: ../admin/config/index.php:190
583
  msgid "Permalinks"
584
  msgstr ""
585
 
586
- #: ../admin/config/index.php:190
587
  msgid ""
588
  "List all the URLs on your website that you don't want to track, separated by "
589
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -594,21 +483,21 @@ msgid ""
594
  "case-insensitive."
595
  msgstr ""
596
 
597
- #: ../admin/config/index.php:191
598
  msgid "Countries"
599
  msgstr ""
600
 
601
- #: ../admin/config/index.php:191
602
  msgid ""
603
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
604
  "track, separated by commas."
605
  msgstr ""
606
 
607
- #: ../admin/config/index.php:192
608
  msgid "User Agents"
609
  msgstr ""
610
 
611
- #: ../admin/config/index.php:192
612
  msgid ""
613
  "Browsers (user agents) you don't want to track, separated by commas. You can "
614
  "specify the browser's version adding a slash after the name (i.e. "
@@ -618,11 +507,11 @@ msgid ""
618
  "code> will match IE/7.0 and IE/8.0. Strings are case-insensitive."
619
  msgstr ""
620
 
621
- #: ../admin/config/index.php:193
622
  msgid "Referring Sites"
623
  msgstr ""
624
 
625
- #: ../admin/config/index.php:193
626
  msgid ""
627
  "Referring URLs that you don't want to track, separated by commas: "
628
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -632,260 +521,309 @@ msgid ""
632
  "https://)."
633
  msgstr ""
634
 
635
- #: ../admin/config/index.php:195
636
- msgid "Internal and Outbound Links"
637
  msgstr ""
638
 
639
- #: ../admin/config/index.php:196
640
- msgid "Track Outbound Clicks"
 
 
 
 
641
  msgstr ""
642
 
643
- #: ../admin/config/index.php:196
644
  msgid ""
645
- "Track when your visitors click on link to external websites. This option "
646
- "required Spy Mode to be enabled."
 
647
  msgstr ""
648
 
649
- #: ../admin/config/index.php:197
650
- msgid "Track Coordinates"
651
  msgstr ""
652
 
653
- #: ../admin/config/index.php:197
654
- msgid ""
655
- "Collect mouse coordinates and other information for clicks on internal "
656
- "links. Strongly recommended if you're using the heatmap add-on. By default, "
657
- "this information is only collected for external links."
658
  msgstr ""
659
 
660
- #: ../admin/config/index.php:198
661
- msgid "No Callback"
662
  msgstr ""
663
 
664
- #: ../admin/config/index.php:198
 
 
 
 
 
 
 
 
665
  msgid ""
666
- "Track the event but do not invoke the callback function on links marked with "
667
- "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
668
- "attribute contains one of these strings (separated by comma). Useful to "
669
- "prevent conflicts with lightbox and similar libraries."
670
  msgstr ""
671
 
672
- #: ../admin/config/index.php:199
673
- msgid "Do Not Track"
674
  msgstr ""
675
 
676
- #: ../admin/config/index.php:199
677
  msgid ""
678
- "Do not track links marked with one of these class names, <em>rel</em> "
679
- "attributes or whose <em>href</em> attribute contains one of these strings "
680
- "(separated by comma)."
681
  msgstr ""
682
 
683
- #: ../admin/config/index.php:202
684
- msgid "Enable Privacy Mode"
685
  msgstr ""
686
 
687
- #: ../admin/config/index.php:202
688
- msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
 
 
689
  msgstr ""
690
 
691
- #: ../admin/config/index.php:203
692
- msgid "Ignore Prefetch Requests"
693
  msgstr ""
694
 
695
- #: ../admin/config/index.php:203
696
  msgid ""
697
- "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
698
- "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
699
- "target='_blank'>Link Prefetching functionality</a>."
700
  msgstr ""
701
 
702
- #: ../admin/config/index.php:208
703
- msgid "Permissions"
704
  msgstr ""
705
 
706
- #: ../admin/config/index.php:211
707
- msgid "Restrict Authors"
708
  msgstr ""
709
 
710
- #: ../admin/config/index.php:211
711
- msgid ""
712
- "Enable this option if you want your authors to only see stats related to "
713
- "their own content."
714
  msgstr ""
715
 
716
- #: ../admin/config/index.php:212 ../admin/config/index.php:216
717
- msgid "Capability"
718
  msgstr ""
719
 
720
- #: ../admin/config/index.php:212
721
  msgid ""
722
- "Specify the minimum <a href='http://codex.wordpress.org/"
723
- "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
724
- "reports (default: <code>activate_plugins</code>). If this field is empty, "
725
- "<strong>all your users</strong> (including subscribers) will have access to "
726
- "the reports, unless a 'Read access' whitelist has been specified here below. "
727
- "In this case, the list has precedence over the capability."
728
  msgstr ""
729
 
730
- #: ../admin/config/index.php:213 ../admin/config/index.php:217
731
- msgid "Whitelist"
732
  msgstr ""
733
 
734
- #: ../admin/config/index.php:213
735
- msgid ""
736
- "List all the users who should have access to the reports, separated by "
737
- "commas. Administrators are implicitly allowed, so you don't need to list "
738
- "them in here. Usernames are case sensitive."
739
  msgstr ""
740
 
741
- #: ../admin/config/index.php:215 ../admin/config/index.php:268
742
- #: ../admin/wp-slimstat-admin.php:697 ../admin/wp-slimstat-admin.php:700
743
- #: ../wp-slimstat.php:1792
744
- msgid "Settings"
745
  msgstr ""
746
 
747
- #: ../admin/config/index.php:216
 
 
 
 
 
 
 
 
748
  msgid ""
749
- "Specify the minimum <a href='http://codex.wordpress.org/"
750
- "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
751
- "Slimstat (default: <code>activate_plugins</code>). The whitelist here below "
752
- "can be used to override this option for specific users."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
753
  msgstr ""
754
 
755
- #: ../admin/config/index.php:217
756
  msgid ""
757
- "List all the users who can edit these options, separated by commas. Please "
758
- "be advised that admins <strong>are not</strong> implicitly allowed, so do "
759
- "not forget to include yourself! Usernames are case sensitive."
760
  msgstr ""
761
 
762
- #: ../admin/config/index.php:222
763
- msgid "Advanced"
764
  msgstr ""
765
 
766
- #: ../admin/config/index.php:225
767
- msgid "Session Duration"
768
  msgstr ""
769
 
770
- #: ../admin/config/index.php:225
771
  msgid ""
772
- "How many seconds should a human session last? Google Analytics sets it to "
773
- "1800 seconds."
 
 
 
774
  msgstr ""
775
 
776
- #: ../admin/config/index.php:226
777
- msgid "Extend Session"
778
  msgstr ""
779
 
780
- #: ../admin/config/index.php:226
781
- msgid "Extend the duration of a session each time the user visits a new page."
 
 
 
 
782
  msgstr ""
783
 
784
- #: ../admin/config/index.php:227
785
- msgid "Enable CDN"
786
  msgstr ""
787
 
788
- #: ../admin/config/index.php:227
789
  msgid ""
790
- "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
791
- "by serving our tracking code from their fast and reliable network (free "
792
- "service)."
793
  msgstr ""
794
 
795
- #: ../admin/config/index.php:228
796
- msgid "Extensions to Track"
797
  msgstr ""
798
 
799
- #: ../admin/config/index.php:228
800
  msgid ""
801
- "List all the file extensions that you want to be treated as Downloads. "
802
- "Please note that links pointing to external resources (i.e. PDFs on a "
803
- "different website) are considered Downloads and not Outbound Links (and "
804
- "tracked as such), if their extension matches one of the ones listed here "
805
- "below."
806
  msgstr ""
807
 
808
- #: ../admin/config/index.php:230
809
- msgid "Pages not belonging to this site"
810
  msgstr ""
811
 
812
- #: ../admin/config/index.php:231
813
  msgid ""
814
- "Add the following code to all the non-WP pages you want to track, right "
815
- "before the closing BODY tag"
 
 
 
 
816
  msgstr ""
817
 
818
- #: ../admin/config/index.php:241
819
- msgid "Allow External Domains"
820
  msgstr ""
821
 
822
- #: ../admin/config/index.php:241
 
 
 
 
823
  msgid ""
824
- "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
825
- "header is present on the requested resource, when using the external "
826
- "tracking code here above, list the domains (complete with scheme, separated "
827
- "by commas) you would like to allow. For example: <code>http://my.domain.ext</"
828
- "code> (no trailing slash). Please see <a href='http://www.w3.org/TR/cors/"
829
- "#security' target='_blank'>this W3 resource</a> for more information on the "
830
- "security implications of allowing CORS requests."
831
  msgstr ""
832
 
833
- #: ../admin/config/index.php:243
834
- msgid "Debug Mode"
 
 
 
 
 
 
835
  msgstr ""
836
 
837
- #: ../admin/config/index.php:243
838
- msgid "Display the SQL queries used to retrieve the data."
839
  msgstr ""
840
 
841
- #: ../admin/config/index.php:244
842
- msgid "IP Lookup"
 
 
 
843
  msgstr ""
844
 
845
- #: ../admin/config/index.php:244
846
- msgid "Customize the Geolocation service to be used in the reports."
 
 
847
  msgstr ""
848
 
849
- #: ../admin/config/index.php:245
850
- msgid "Enable UAN"
 
 
 
 
851
  msgstr ""
852
 
853
- #: ../admin/config/index.php:245
854
  msgid ""
855
- "Send anonymous data about user agents to our server for analysis. This "
856
- "allows us to contribute to the <a href='http://browscap.org/' "
857
- "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
858
- "Slimstat's browser detection functionality. It also enables our transparent "
859
- "ads network. No worries, your site will not be affected in any way."
860
  msgstr ""
861
 
862
- #: ../admin/config/index.php:250
863
  msgid "Maintenance"
864
  msgstr ""
865
 
 
 
 
 
 
 
866
  #: ../admin/config/maintenance.php:16
867
  msgid ""
868
  "Congrats! Slimstat is now optimized for <a href=\"http://www.youtube.com/"
869
  "watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
870
  msgstr ""
871
 
872
- #: ../admin/config/maintenance.php:23
873
  msgid "Indexing has been disabled. Enjoy the extra database space!"
874
  msgstr ""
875
 
876
- #: ../admin/config/maintenance.php:35
877
  msgid "records deleted from your database."
878
  msgstr ""
879
 
880
- #: ../admin/config/maintenance.php:40
881
  msgid "The geolocation database has been uninstalled from your server."
882
  msgstr ""
883
 
884
- #: ../admin/config/maintenance.php:50
885
  msgid "The geolocation database has been installed on your server."
886
  msgstr ""
887
 
888
- #: ../admin/config/maintenance.php:158
889
  msgid ""
890
  "Your data was successfully imported. You may now drop the old tables: "
891
  "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
@@ -894,227 +832,249 @@ msgid ""
894
  "delete the old tables."
895
  msgstr ""
896
 
897
- #: ../admin/config/maintenance.php:169
898
  msgid "Your reports were successfully restored to their default arrangement."
899
  msgstr ""
900
 
901
- #: ../admin/config/maintenance.php:179
902
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
903
  msgstr ""
904
 
905
- #: ../admin/config/maintenance.php:185
906
  msgid "All the archived records were successfully deleted."
907
  msgstr ""
908
 
909
- #: ../admin/config/maintenance.php:193
910
  msgid "All the records were successfully deleted."
911
  msgstr ""
912
 
913
- #: ../admin/config/maintenance.php:215
914
  msgid "Debugging"
915
  msgstr ""
916
 
917
- #: ../admin/config/maintenance.php:218
918
- msgid "Tracker Error Code"
919
  msgstr ""
920
 
921
- #: ../admin/config/maintenance.php:220
922
  msgid "recorded on"
923
  msgstr ""
924
 
925
- #: ../admin/config/maintenance.php:220
926
  msgid "No Errors so far"
927
  msgstr ""
928
 
929
- #: ../admin/config/maintenance.php:221
930
  msgid ""
931
  "The information here above is useful to troubleshoot issues with the "
932
- "tracker. Please include this code when sending a support request."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
933
  msgstr ""
934
 
935
- #: ../admin/config/maintenance.php:225
 
 
 
 
936
  msgid "Layout"
937
  msgstr ""
938
 
939
- #: ../admin/config/maintenance.php:228
940
  msgid ""
941
  "Are you sure you want to restore the default arrangement of your reports?"
942
  msgstr ""
943
 
944
- #: ../admin/config/maintenance.php:228
945
  msgid "No Panic Button"
946
  msgstr ""
947
 
948
- #: ../admin/config/maintenance.php:230
949
  msgid ""
950
  "Reset the default arrangement of your reports. Helpful when, for some "
951
  "reason, reports disappear from your panels or something doesn't look right "
952
  "in your views."
953
  msgstr ""
954
 
955
- #: ../admin/config/maintenance.php:234
956
  msgid "Data Maintenance"
957
  msgstr ""
958
 
959
- #: ../admin/config/maintenance.php:237
960
  msgid "Delete pageviews where"
961
  msgstr ""
962
 
963
- #: ../admin/config/maintenance.php:251 ../admin/view/index.php:16
964
  msgid "equals"
965
  msgstr ""
966
 
967
- #: ../admin/config/maintenance.php:252 ../admin/view/index.php:17
968
  msgid "is not equal to"
969
  msgstr ""
970
 
971
- #: ../admin/config/maintenance.php:253 ../admin/view/index.php:18
972
  msgid "contains"
973
  msgstr ""
974
 
975
- #: ../admin/config/maintenance.php:254 ../admin/view/index.php:19
976
  msgid "is included in"
977
  msgstr ""
978
 
979
- #: ../admin/config/maintenance.php:255 ../admin/view/index.php:20
980
  msgid "does not contain"
981
  msgstr ""
982
 
983
- #: ../admin/config/maintenance.php:256 ../admin/view/index.php:21
984
  msgid "starts with"
985
  msgstr ""
986
 
987
- #: ../admin/config/maintenance.php:257 ../admin/view/index.php:22
988
  msgid "ends with"
989
  msgstr ""
990
 
991
- #: ../admin/config/maintenance.php:258 ../admin/view/index.php:23
992
  msgid "sounds like"
993
  msgstr ""
994
 
995
- #: ../admin/config/maintenance.php:259 ../admin/view/index.php:24
996
  msgid "is greater than"
997
  msgstr ""
998
 
999
- #: ../admin/config/maintenance.php:260 ../admin/view/index.php:25
1000
  msgid "is less than"
1001
  msgstr ""
1002
 
1003
- #: ../admin/config/maintenance.php:261 ../admin/view/index.php:27
1004
  msgid "matches"
1005
  msgstr ""
1006
 
1007
- #: ../admin/config/maintenance.php:262 ../admin/view/index.php:28
1008
  msgid "does not match"
1009
  msgstr ""
1010
 
1011
- #: ../admin/config/maintenance.php:263 ../admin/view/index.php:29
1012
  msgid "is empty"
1013
  msgstr ""
1014
 
1015
- #: ../admin/config/maintenance.php:264 ../admin/view/index.php:30
1016
  msgid "is not empty"
1017
  msgstr ""
1018
 
1019
- #: ../admin/config/maintenance.php:267 ../admin/view/index.php:42
1020
  #: ../admin/view/index.php:105
1021
  msgid "Apply"
1022
  msgstr ""
1023
 
1024
- #: ../admin/config/maintenance.php:268
1025
  msgid ""
1026
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1027
  msgstr ""
1028
 
1029
- #: ../admin/config/maintenance.php:275
1030
  msgid ""
1031
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1032
  "database?"
1033
  msgstr ""
1034
 
1035
- #: ../admin/config/maintenance.php:275
1036
  msgid "Delete All Records"
1037
  msgstr ""
1038
 
1039
- #: ../admin/config/maintenance.php:278
1040
  msgid ""
1041
  "Erase all the information collected so far by Slimstat, including the "
1042
  "archive. This operation <strong>does not</strong> reset your settings."
1043
  msgstr ""
1044
 
1045
- #: ../admin/config/maintenance.php:284
1046
  msgid ""
1047
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1048
  "archive?"
1049
  msgstr ""
1050
 
1051
- #: ../admin/config/maintenance.php:284
1052
  msgid "Delete Archive"
1053
  msgstr ""
1054
 
1055
- #: ../admin/config/maintenance.php:287
1056
  msgid "Erase all the archived records. This operation cannot be undone."
1057
  msgstr ""
1058
 
1059
- #: ../admin/config/maintenance.php:293
1060
  msgid "Improve Performance"
1061
  msgstr ""
1062
 
1063
- #: ../admin/config/maintenance.php:297
1064
  msgid ""
1065
  "Please note that you will need about 30% more DB space to store the extra "
1066
  "information required."
1067
  msgstr ""
1068
 
1069
- #: ../admin/config/maintenance.php:301
1070
  msgid "Save DB Space"
1071
  msgstr ""
1072
 
1073
- #: ../admin/config/maintenance.php:304
1074
  msgid ""
1075
  "Please note that by removing table indexes, Slimstat's performance will be "
1076
  "affected."
1077
  msgstr ""
1078
 
1079
- #: ../admin/config/maintenance.php:311
1080
  msgid ""
1081
  "Hold on tight, we are about to import all your old data. Are you sure you "
1082
  "want to proceed?"
1083
  msgstr ""
1084
 
1085
- #: ../admin/config/maintenance.php:311
1086
  msgid "Import old data"
1087
  msgstr ""
1088
 
1089
- #: ../admin/config/maintenance.php:314
1090
  msgid ""
1091
  "Import all the records from the old table structure. No data will be deleted "
1092
  "from your database."
1093
  msgstr ""
1094
 
1095
- #: ../admin/config/maintenance.php:318
1096
  msgid "MaxMind IP to Country"
1097
  msgstr ""
1098
 
1099
- #: ../admin/config/maintenance.php:324
1100
  msgid ""
1101
  "Do you want to download and install the geolocation database from MaxMind's "
1102
  "server?"
1103
  msgstr ""
1104
 
1105
- #: ../admin/config/maintenance.php:324
1106
  msgid "Install GeoLite DB"
1107
  msgstr ""
1108
 
1109
- #: ../admin/config/maintenance.php:327
1110
  msgid "Do you want to uninstall the geolocation database?"
1111
  msgstr ""
1112
 
1113
- #: ../admin/config/maintenance.php:327
1114
  msgid "Uninstall GeoLite DB"
1115
  msgstr ""
1116
 
1117
- #: ../admin/config/maintenance.php:331
1118
  msgid ""
1119
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1120
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
@@ -1124,41 +1084,94 @@ msgid ""
1124
  "enable this functionality."
1125
  msgstr ""
1126
 
1127
- #: ../admin/config/maintenance.php:336
1128
  msgid "Import and Export"
1129
  msgstr ""
1130
 
1131
- #: ../admin/config/maintenance.php:340
1132
  msgid ""
1133
  "Here below you can find the current configuration string for Slimstat. You "
1134
  "can update your settings by pasting a new string inside the text area and "
1135
  "clicking the Import button."
1136
  msgstr ""
1137
 
1138
- #: ../admin/config/maintenance.php:345
1139
  msgid "Import"
1140
  msgstr ""
1141
 
1142
- #: ../admin/config/maintenance.php:346
1143
  msgid "Are you sure you want to OVERWRITE your current settings?"
1144
  msgstr ""
1145
 
1146
- #: ../admin/config/maintenance.php:351
1147
  msgid "Database Information"
1148
  msgstr ""
1149
 
1150
- #: ../admin/config/maintenance.php:354
1151
  msgid "Engine"
1152
  msgstr ""
1153
 
1154
- #: ../admin/config/maintenance.php:358
1155
  msgid "switch to InnoDB"
1156
  msgstr ""
1157
 
1158
- #: ../admin/config/maintenance.php:369
1159
  msgid "records"
1160
  msgstr ""
1161
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1162
  #: ../admin/view/index.php:26
1163
  msgid "is between (x,y)"
1164
  msgstr ""
@@ -1167,11 +1180,11 @@ msgstr ""
1167
  msgid "Load"
1168
  msgstr ""
1169
 
1170
- #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1307
1171
  msgid "Today"
1172
  msgstr ""
1173
 
1174
- #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1310
1175
  msgid "Yesterday"
1176
  msgstr ""
1177
 
@@ -1234,6 +1247,30 @@ msgid ""
1234
  "country of origin."
1235
  msgstr ""
1236
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1237
  #: ../admin/view/right-now.php:12
1238
  msgid "Human"
1239
  msgstr ""
@@ -1250,8 +1287,8 @@ msgstr ""
1250
  msgid "Syndication Reader"
1251
  msgstr ""
1252
 
1253
- #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:939
1254
- #: ../admin/view/wp-slimstat-reports.php:1616
1255
  msgid "No data to display"
1256
  msgstr ""
1257
 
@@ -1260,67 +1297,77 @@ msgid "Date and Time"
1260
  msgstr ""
1261
 
1262
  # Unknown
1263
- #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:990
1264
- #: ../admin/view/wp-slimstat-reports.php:1730
1265
  msgid "c-"
1266
  msgstr "Unknown"
1267
 
1268
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1269
- #: ../admin/wp-slimstat-admin.php:1009 ../admin/wp-slimstat-admin.php:1049
1270
  msgid "Originating IP"
1271
  msgstr ""
1272
 
1273
- #: ../admin/view/right-now.php:142
1274
- msgid "Server Latency and Page Speed in milliseconds"
 
1275
  msgstr ""
1276
 
1277
- #: ../admin/view/right-now.php:142
1278
- msgid "SL"
1279
  msgstr ""
1280
 
1281
- #: ../admin/view/right-now.php:142
1282
- msgid "PS"
 
 
 
1283
  msgstr ""
1284
 
1285
- #: ../admin/view/right-now.php:148
1286
- msgid "Time spent on this page in seconds"
1287
  msgstr ""
1288
 
1289
- #: ../admin/view/right-now.php:160 ../admin/view/wp-slimstat-reports.php:1087
1290
- #: ../admin/view/wp-slimstat-reports.php:1091
1291
- msgid "Open this URL in a new window"
1292
  msgstr ""
1293
 
1294
- #: ../admin/view/right-now.php:163
1295
- msgid "Local search results page"
1296
  msgstr ""
1297
 
1298
- #: ../admin/view/right-now.php:171 ../admin/view/wp-slimstat-db.php:42
1299
- #: ../admin/wp-slimstat-admin.php:1012 ../admin/wp-slimstat-admin.php:1028
1300
- msgid "Search Terms"
1301
  msgstr ""
1302
 
1303
- #: ../admin/view/right-now.php:177
1304
  msgid "Open this referrer in a new window"
1305
  msgstr ""
1306
 
1307
- #: ../admin/view/right-now.php:178
1308
  msgid "Open this outbound link in a new window"
1309
  msgstr ""
1310
 
1311
- #: ../admin/view/right-now.php:179
1312
  msgid "Content Type"
1313
  msgstr ""
1314
 
1315
- #: ../admin/view/right-now.php:182
1316
  msgid "Delete this pageview"
1317
  msgstr ""
1318
 
1319
- #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:1025
 
 
 
 
 
 
 
 
1320
  msgid "Browser"
1321
  msgstr ""
1322
 
1323
- #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:1026
1324
  msgid "Country Code"
1325
  msgstr ""
1326
 
@@ -1328,29 +1375,29 @@ msgstr ""
1328
  msgid "IP Address"
1329
  msgstr ""
1330
 
1331
- #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:1029
1332
  msgid "Language Code"
1333
  msgstr ""
1334
 
1335
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1336
- #: ../admin/wp-slimstat-admin.php:1030
1337
  msgid "Operating System"
1338
  msgstr ""
1339
 
1340
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1341
- #: ../admin/wp-slimstat-admin.php:1031
1342
  msgid "Permalink"
1343
  msgstr ""
1344
 
1345
- #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:1032
1346
  msgid "Referer"
1347
  msgstr ""
1348
 
1349
- #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:1033
1350
  msgid "Visitor's Name"
1351
  msgstr ""
1352
 
1353
- #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:1015
1354
  msgid "Outbound Link"
1355
  msgstr ""
1356
 
@@ -1363,19 +1410,19 @@ msgid "-- Advanced filters --"
1363
  msgstr ""
1364
 
1365
  #: ../admin/view/wp-slimstat-db.php:52
1366
- #: ../admin/view/wp-slimstat-reports.php:336
1367
  msgid "Browser Capabilities"
1368
  msgstr ""
1369
 
1370
- #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:1044
1371
  msgid "Browser Version"
1372
  msgstr ""
1373
 
1374
- #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:1045
1375
  msgid "Browser Type"
1376
  msgstr ""
1377
 
1378
- #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:1014
1379
  msgid "User Agent"
1380
  msgstr ""
1381
 
@@ -1387,15 +1434,15 @@ msgstr ""
1387
  msgid "Server Latency"
1388
  msgstr ""
1389
 
1390
- #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:1047
1391
  msgid "Post Author"
1392
  msgstr ""
1393
 
1394
- #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:1048
1395
  msgid "Post Category ID"
1396
  msgstr ""
1397
 
1398
- #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:1050
1399
  msgid "Resource Content Type"
1400
  msgstr ""
1401
 
@@ -1415,7 +1462,7 @@ msgstr ""
1415
  msgid "Viewport Size"
1416
  msgstr ""
1417
 
1418
- #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:1052
1419
  msgid "Visit ID"
1420
  msgstr ""
1421
 
@@ -1460,7 +1507,7 @@ msgid "Event ID"
1460
  msgstr ""
1461
 
1462
  #: ../admin/view/wp-slimstat-db.php:96
1463
- #: ../admin/view/wp-slimstat-reports.php:1630
1464
  msgid "Type"
1465
  msgstr ""
1466
 
@@ -1480,195 +1527,210 @@ msgstr ""
1480
  msgid "Offset"
1481
  msgstr ""
1482
 
1483
- #: ../admin/view/wp-slimstat-reports.php:20 ../admin/wp-slimstat-admin.php:649
1484
- #: ../wp-slimstat.php:1783
1485
  msgid "Access Log"
1486
  msgstr ""
1487
 
1488
- #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:650
1489
- #: ../admin/wp-slimstat-admin.php:665 ../wp-slimstat.php:1784
1490
  msgid "Overview"
1491
  msgstr ""
1492
 
1493
- #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:651
1494
- #: ../admin/wp-slimstat-admin.php:666 ../wp-slimstat.php:1785
1495
  msgid "Audience"
1496
  msgstr ""
1497
 
1498
- #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:652
1499
- #: ../admin/wp-slimstat-admin.php:667 ../wp-slimstat.php:1786
1500
  msgid "Site Analysis"
1501
  msgstr ""
1502
 
1503
- #: ../admin/view/wp-slimstat-reports.php:24
1504
- #: ../admin/view/wp-slimstat-reports.php:461
1505
- #: ../admin/wp-slimstat-admin.php:653 ../admin/wp-slimstat-admin.php:668
1506
- #: ../wp-slimstat.php:1787
1507
  msgid "Traffic Sources"
1508
  msgstr ""
1509
 
1510
- #: ../admin/view/wp-slimstat-reports.php:25 ../admin/wp-slimstat-admin.php:654
1511
- #: ../admin/wp-slimstat-admin.php:669 ../wp-slimstat.php:1788
1512
- msgid "Map Overlay"
 
 
1513
  msgstr ""
1514
 
1515
- #: ../admin/view/wp-slimstat-reports.php:74
1516
- msgid "Chart controls"
1517
  msgstr ""
1518
 
1519
- #: ../admin/view/wp-slimstat-reports.php:74
1520
- msgid "Use your mouse wheel to zoom in and out"
1521
  msgstr ""
1522
 
1523
- #: ../admin/view/wp-slimstat-reports.php:74
1524
- msgid "While zooming in, drag the chart to move to a different area"
1525
  msgstr ""
1526
 
1527
- #: ../admin/view/wp-slimstat-reports.php:74
1528
- msgid "Double click on an empty region to reset the zoom level"
1529
  msgstr ""
1530
 
1531
  #: ../admin/view/wp-slimstat-reports.php:77
1532
- msgid ""
1533
- "Social Sharing Analytics <a href=\"http://getsocial.io/?utm_source=slimstat"
1534
- "\">powered by GetSocial</a>"
 
 
1535
  msgstr ""
1536
 
1537
- #: ../admin/view/wp-slimstat-reports.php:84
1538
  msgid "Visitors Activity"
1539
  msgstr ""
1540
 
1541
- #: ../admin/view/wp-slimstat-reports.php:93
1542
  msgid "Color codes"
1543
  msgstr ""
1544
 
1545
- #: ../admin/view/wp-slimstat-reports.php:93
1546
  msgid "From search result page"
1547
  msgstr ""
1548
 
1549
- #: ../admin/view/wp-slimstat-reports.php:93
1550
- #: ../admin/wp-slimstat-admin.php:1007
1551
  msgid "Known Visitor"
1552
  msgstr ""
1553
 
1554
- #: ../admin/view/wp-slimstat-reports.php:93
1555
  msgid "Known Users"
1556
  msgstr ""
1557
 
1558
- #: ../admin/view/wp-slimstat-reports.php:93
1559
  msgid "Other Humans"
1560
  msgstr ""
1561
 
1562
- #: ../admin/view/wp-slimstat-reports.php:93
1563
  msgid "Bot or Crawler"
1564
  msgstr ""
1565
 
1566
- #: ../admin/view/wp-slimstat-reports.php:107
1567
  msgid "About Slimstat"
1568
  msgstr ""
1569
 
1570
- #: ../admin/view/wp-slimstat-reports.php:117
1571
  msgid "Traffic at a Glance"
1572
  msgstr ""
1573
 
1574
- #: ../admin/view/wp-slimstat-reports.php:127
1575
  msgid "Currently Online"
1576
  msgstr ""
1577
 
1578
- #: ../admin/view/wp-slimstat-reports.php:140
1579
  msgid "Recent Search Terms"
1580
  msgstr ""
1581
 
1582
- #: ../admin/view/wp-slimstat-reports.php:150
1583
  msgid "Keywords used by your visitors to find your website on a search engine."
1584
  msgstr ""
1585
 
1586
- #: ../admin/view/wp-slimstat-reports.php:153
1587
- msgid "Top Pages"
1588
  msgstr ""
1589
 
1590
- #: ../admin/view/wp-slimstat-reports.php:164
1591
  msgid ""
1592
- "Here a \"page\" is not just a WordPress page type, but any web page on your "
1593
- "website, including posts, products, categories, and so on."
 
 
 
1594
  msgstr ""
1595
 
1596
- #: ../admin/view/wp-slimstat-reports.php:167
1597
  msgid "Top Traffic Sources"
1598
  msgstr ""
1599
 
1600
- #: ../admin/view/wp-slimstat-reports.php:179
1601
  msgid "Top Known Visitors"
1602
  msgstr ""
1603
 
1604
- #: ../admin/view/wp-slimstat-reports.php:190
1605
  msgid "Top Search Terms"
1606
  msgstr ""
1607
 
1608
- #: ../admin/view/wp-slimstat-reports.php:201
1609
  msgid "Top Countries"
1610
  msgstr ""
1611
 
1612
- #: ../admin/view/wp-slimstat-reports.php:210
1613
  msgid ""
1614
  "You can configure Slimstat to ignore a specific Country by setting the "
1615
  "corresponding filter under Settings > Slimstat > Filters."
1616
  msgstr ""
1617
 
1618
- #: ../admin/view/wp-slimstat-reports.php:213
1619
  msgid "Rankings"
1620
  msgstr ""
1621
 
1622
- #: ../admin/view/wp-slimstat-reports.php:217
1623
  msgid ""
1624
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1625
  "measures your site's rankings. Values are updated every 12 hours. Filters "
1626
  "set above don't apply to this report."
1627
  msgstr ""
1628
 
1629
- #: ../admin/view/wp-slimstat-reports.php:220
1630
  msgid "Top Language Families"
1631
  msgstr ""
1632
 
1633
- #: ../admin/view/wp-slimstat-reports.php:233
1634
  msgid "Users Currently Online"
1635
  msgstr ""
1636
 
1637
- #: ../admin/view/wp-slimstat-reports.php:244
1638
  msgid ""
1639
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1640
  "Slimstat leverages this information to identify returning visitors. Please "
1641
  "note that visitors also include registered users."
1642
  msgstr ""
1643
 
1644
- #: ../admin/view/wp-slimstat-reports.php:248
 
 
 
 
1645
  msgid "Human Visits"
1646
  msgstr ""
1647
 
1648
- #: ../admin/view/wp-slimstat-reports.php:258
 
 
 
 
 
1649
  msgid "Audience Overview"
1650
  msgstr ""
1651
 
1652
- #: ../admin/view/wp-slimstat-reports.php:265
1653
  msgid ""
1654
  "Where not otherwise specified, the metrics in this report are referred to "
1655
  "human visitors."
1656
  msgstr ""
1657
 
1658
- #: ../admin/view/wp-slimstat-reports.php:268
1659
  msgid "Top Languages"
1660
  msgstr ""
1661
 
1662
- #: ../admin/view/wp-slimstat-reports.php:279
1663
  msgid "Top Browsers"
1664
  msgstr ""
1665
 
1666
- #: ../admin/view/wp-slimstat-reports.php:290
1667
  msgid "Top Service Providers"
1668
  msgstr ""
1669
 
1670
- #: ../admin/view/wp-slimstat-reports.php:299
1671
- #: ../admin/view/wp-slimstat-reports.php:311
1672
  msgid ""
1673
  "Internet Service Provider: a company which provides other companies or "
1674
  "individuals with access to the Internet. Your DSL or cable internet service "
@@ -1676,436 +1738,445 @@ msgid ""
1676
  "by setting the corresponding filter under Settings > Slimstat > Filters."
1677
  msgstr ""
1678
 
1679
- #: ../admin/view/wp-slimstat-reports.php:302
1680
  msgid "Top Operating Systems"
1681
  msgstr ""
1682
 
1683
- #: ../admin/view/wp-slimstat-reports.php:314
1684
  msgid "Top Screen Resolutions"
1685
  msgstr ""
1686
 
1687
- #: ../admin/view/wp-slimstat-reports.php:325
1688
  msgid "Top Viewport Sizes"
1689
  msgstr ""
1690
 
1691
- #: ../admin/view/wp-slimstat-reports.php:345
1692
  msgid "Visit Duration"
1693
  msgstr ""
1694
 
1695
- #: ../admin/view/wp-slimstat-reports.php:352
1696
  msgid ""
1697
  "All values represent the percentages of pageviews within the corresponding "
1698
  "time range."
1699
  msgstr ""
1700
 
1701
- #: ../admin/view/wp-slimstat-reports.php:355
1702
  msgid "Recent Countries"
1703
  msgstr ""
1704
 
1705
- #: ../admin/view/wp-slimstat-reports.php:366
1706
  msgid "Recent Viewport Sizes"
1707
  msgstr ""
1708
 
1709
- #: ../admin/view/wp-slimstat-reports.php:377
1710
  msgid "Recent Operating Systems"
1711
  msgstr ""
1712
 
1713
- #: ../admin/view/wp-slimstat-reports.php:388
1714
  msgid "Recent Browsers"
1715
  msgstr ""
1716
 
1717
- #: ../admin/view/wp-slimstat-reports.php:399
1718
  msgid "Recent Languages"
1719
  msgstr ""
1720
 
1721
- #: ../admin/view/wp-slimstat-reports.php:410
1722
  msgid "Top Browser Families"
1723
  msgstr ""
1724
 
1725
- #: ../admin/view/wp-slimstat-reports.php:419
1726
  msgid ""
1727
  "This report shows you what user agent families (no version considered) are "
1728
  "popular among your visitors."
1729
  msgstr ""
1730
 
1731
- #: ../admin/view/wp-slimstat-reports.php:422
1732
  msgid "Top OS Families"
1733
  msgstr ""
1734
 
1735
- #: ../admin/view/wp-slimstat-reports.php:433
1736
  msgid ""
1737
  "This report shows you what operating system families (no version considered) "
1738
  "are popular among your visitors."
1739
  msgstr ""
1740
 
1741
- #: ../admin/view/wp-slimstat-reports.php:436
1742
  msgid "Recent Users"
1743
  msgstr ""
1744
 
1745
- #: ../admin/view/wp-slimstat-reports.php:448
1746
  msgid "Top Users"
1747
  msgstr ""
1748
 
1749
- #: ../admin/view/wp-slimstat-reports.php:471
 
 
 
 
 
 
 
 
 
 
 
 
 
1750
  msgid "Traffic Summary"
1751
  msgstr ""
1752
 
1753
- #: ../admin/view/wp-slimstat-reports.php:480
1754
  msgid "Top Referring Search Engines"
1755
  msgstr ""
1756
 
1757
- #: ../admin/view/wp-slimstat-reports.php:507
1758
  msgid "Recent Outbound Links"
1759
  msgstr ""
1760
 
1761
- #: ../admin/view/wp-slimstat-reports.php:519
1762
  msgid "Recent Posts"
1763
  msgstr ""
1764
 
1765
- #: ../admin/view/wp-slimstat-reports.php:547
1766
  msgid "Recent Feeds"
1767
  msgstr ""
1768
 
1769
- #: ../admin/view/wp-slimstat-reports.php:559
1770
  msgid "Recent Pages Not Found"
1771
  msgstr ""
1772
 
1773
- #: ../admin/view/wp-slimstat-reports.php:571
1774
  msgid "Recent Internal Searches"
1775
  msgstr ""
1776
 
1777
- #: ../admin/view/wp-slimstat-reports.php:581
1778
  msgid "Searches performed using WordPress' built-in search functionality."
1779
  msgstr ""
1780
 
1781
- #: ../admin/view/wp-slimstat-reports.php:584
1782
  msgid "Top Categories"
1783
  msgstr ""
1784
 
1785
- #: ../admin/view/wp-slimstat-reports.php:597
1786
  msgid "Top Downloads"
1787
  msgstr ""
1788
 
1789
- #: ../admin/view/wp-slimstat-reports.php:608
1790
  msgid ""
1791
  "You can configure Slimstat to track specific file extensions as downloads."
1792
  msgstr ""
1793
 
1794
- #: ../admin/view/wp-slimstat-reports.php:611
1795
  msgid "Recent Events"
1796
  msgstr ""
1797
 
1798
- #: ../admin/view/wp-slimstat-reports.php:620
1799
- #: ../admin/view/wp-slimstat-reports.php:644
1800
  msgid ""
1801
  "This report lists any <em>event</em> occurred on your website. Please refer "
1802
  "to the FAQ for more information on how to use this functionality."
1803
  msgstr ""
1804
 
1805
- #: ../admin/view/wp-slimstat-reports.php:623
1806
  msgid "Top Posts"
1807
  msgstr ""
1808
 
1809
- #: ../admin/view/wp-slimstat-reports.php:635
1810
  msgid "Top Events"
1811
  msgstr ""
1812
 
1813
- #: ../admin/view/wp-slimstat-reports.php:647
1814
  msgid "Top Internal Searches"
1815
  msgstr ""
1816
 
1817
- #: ../admin/view/wp-slimstat-reports.php:659
1818
  msgid "Recent Categories"
1819
  msgstr ""
1820
 
1821
- #: ../admin/view/wp-slimstat-reports.php:671
1822
  msgid "Top Pages Not Found"
1823
  msgstr ""
1824
 
1825
- #: ../admin/view/wp-slimstat-reports.php:683
1826
  msgid "Top Authors"
1827
  msgstr ""
1828
 
1829
- #: ../admin/view/wp-slimstat-reports.php:694
1830
  msgid "Top Tags"
1831
  msgstr ""
1832
 
1833
- #: ../admin/view/wp-slimstat-reports.php:706
1834
  msgid "Recent Downloads"
1835
  msgstr ""
1836
 
1837
- #: ../admin/view/wp-slimstat-reports.php:718
1838
  msgid "Top Outbound Links"
1839
  msgstr ""
1840
 
1841
- #: ../admin/view/wp-slimstat-reports.php:729
1842
  msgid "Your Website"
1843
  msgstr ""
1844
 
1845
- #: ../admin/view/wp-slimstat-reports.php:736
1846
  msgid ""
1847
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
1848
  "this report is not affected by the filters set here above."
1849
  msgstr ""
1850
 
1851
- #: ../admin/view/wp-slimstat-reports.php:739
1852
  msgid "Top Bounce Pages"
1853
  msgstr ""
1854
 
1855
- #: ../admin/view/wp-slimstat-reports.php:752
1856
  msgid "Top Exit Pages"
1857
  msgstr ""
1858
 
1859
- #: ../admin/view/wp-slimstat-reports.php:765
1860
  msgid "Top Entry Pages"
1861
  msgstr ""
1862
 
1863
- #: ../admin/view/wp-slimstat-reports.php:779
 
 
 
 
 
 
 
 
 
1864
  msgid "World Map"
1865
  msgstr ""
1866
 
1867
- #: ../admin/view/wp-slimstat-reports.php:852
1868
  msgid "Refresh"
1869
  msgstr ""
1870
 
1871
- #: ../admin/view/wp-slimstat-reports.php:889
1872
  #, php-format
1873
  msgid "Results %s - %s of %s"
1874
  msgstr ""
1875
 
1876
- #: ../admin/view/wp-slimstat-reports.php:891
1877
  msgid "Refresh in"
1878
  msgstr ""
1879
 
1880
- #: ../admin/view/wp-slimstat-reports.php:984
1881
  msgid "Category ID"
1882
  msgstr ""
1883
 
1884
- #: ../admin/view/wp-slimstat-reports.php:989
1885
- #: ../admin/view/wp-slimstat-reports.php:1004
1886
- #: ../admin/view/wp-slimstat-reports.php:1010
1887
  msgid "Code"
1888
  msgstr ""
1889
 
1890
- #: ../admin/view/wp-slimstat-reports.php:1005
1891
- #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1424
1892
  msgid "l-"
1893
  msgstr "Unknown"
1894
 
1895
- #: ../admin/view/wp-slimstat-reports.php:1022
1896
  msgid "URL"
1897
  msgstr ""
1898
 
1899
- #: ../admin/view/wp-slimstat-reports.php:1035
1900
  msgid "Referrer"
1901
  msgstr ""
1902
 
1903
- #: ../admin/view/wp-slimstat-reports.php:1076
1904
- #: ../admin/view/wp-slimstat-reports.php:1325
1905
- #: ../admin/view/wp-slimstat-reports.php:1381
1906
- #: ../admin/view/wp-slimstat-reports.php:1387
1907
- #: ../admin/view/wp-slimstat-reports.php:1393
1908
- #: ../admin/view/wp-slimstat-reports.php:1399
1909
- #: ../admin/view/wp-slimstat-reports.php:1405
1910
- #: ../admin/view/wp-slimstat-reports.php:1411
1911
- #: ../admin/view/wp-slimstat-reports.php:1417
1912
- #: ../admin/view/wp-slimstat-reports.php:1637
1913
  msgid "Hits"
1914
  msgstr ""
1915
 
1916
- #: ../admin/view/wp-slimstat-reports.php:1129
1917
- #: ../admin/view/wp-slimstat-reports.php:1341
1918
- msgid "Visits"
1919
- msgstr ""
1920
-
1921
- #: ../admin/view/wp-slimstat-reports.php:1134
1922
- msgid "Domains"
1923
- msgstr ""
1924
-
1925
- #: ../admin/view/wp-slimstat-reports.php:1252
1926
  msgid "Dataset Size"
1927
  msgstr ""
1928
 
1929
- #: ../admin/view/wp-slimstat-reports.php:1254
1930
  msgid "Total number of records stored in the database."
1931
  msgstr ""
1932
 
1933
- #: ../admin/view/wp-slimstat-reports.php:1256
1934
  msgid "DB Size"
1935
  msgstr ""
1936
 
1937
- #: ../admin/view/wp-slimstat-reports.php:1259
1938
  msgid "Tracking Enabled"
1939
  msgstr ""
1940
 
1941
- #: ../admin/view/wp-slimstat-reports.php:1262
1942
  msgid "Javascript Mode"
1943
  msgstr ""
1944
 
1945
- #: ../admin/view/wp-slimstat-reports.php:1265
1946
  msgid "Tracking Browser Caps"
1947
  msgstr ""
1948
 
1949
- #: ../admin/view/wp-slimstat-reports.php:1268
1950
  msgid "Auto purge"
1951
  msgstr ""
1952
 
1953
- #: ../admin/view/wp-slimstat-reports.php:1271
1954
  msgid "Oldest pageview"
1955
  msgstr ""
1956
 
1957
- #: ../admin/view/wp-slimstat-reports.php:1272
1958
  msgid "No visits"
1959
  msgstr ""
1960
 
1961
- #: ../admin/view/wp-slimstat-reports.php:1274
1962
- msgid "Geolocation"
1963
- msgstr ""
1964
-
1965
- #: ../admin/view/wp-slimstat-reports.php:1276
1966
  msgid "Date when the MaxMind Geolocation database was last updated."
1967
  msgstr ""
1968
 
1969
- #: ../admin/view/wp-slimstat-reports.php:1287
1970
- #: ../admin/view/wp-slimstat-reports.php:1445
1971
  msgid ""
1972
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
1973
  "the tracking code is executed."
1974
  msgstr ""
1975
 
1976
- #: ../admin/view/wp-slimstat-reports.php:1289
1977
  msgid "Days in Range"
1978
  msgstr ""
1979
 
1980
- #: ../admin/view/wp-slimstat-reports.php:1292
1981
  msgid "Average Daily Pageviews"
1982
  msgstr ""
1983
 
1984
- #: ../admin/view/wp-slimstat-reports.php:1294
1985
  msgid ""
1986
  "How many pages have been visited on average every day during the current "
1987
  "period."
1988
  msgstr ""
1989
 
1990
- #: ../admin/view/wp-slimstat-reports.php:1296
1991
  msgid "From Search Results"
1992
  msgstr ""
1993
 
1994
- #: ../admin/view/wp-slimstat-reports.php:1298
1995
  msgid ""
1996
  "Visitors who landed on your site after searching for a keyword on Google, "
1997
  "Yahoo, etc."
1998
  msgstr ""
1999
 
2000
- #: ../admin/view/wp-slimstat-reports.php:1302
2001
  msgid ""
2002
  "Used to differentiate between multiple requests to download a file from one "
2003
  "internet address (IP) and requests originating from many distinct addresses"
2004
  msgstr ""
2005
 
2006
- #: ../admin/view/wp-slimstat-reports.php:1304
2007
  msgid "Last 30 minutes"
2008
  msgstr ""
2009
 
2010
- #: ../admin/view/wp-slimstat-reports.php:1343
2011
  msgid ""
2012
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2013
  "multiple times if they perform multiple visits."
2014
  msgstr ""
2015
 
2016
- #: ../admin/view/wp-slimstat-reports.php:1347
2017
  msgid "It includes only traffic generated by human visitors."
2018
  msgstr ""
2019
 
2020
- #: ../admin/view/wp-slimstat-reports.php:1349
2021
  msgid "Bounce rate"
2022
  msgstr ""
2023
 
2024
- #: ../admin/view/wp-slimstat-reports.php:1351
2025
  msgid ""
2026
  "Percentage of single-page visits, i.e. visits in which the person left your "
2027
  "site from the entrance page."
2028
  msgstr ""
2029
 
2030
- #: ../admin/view/wp-slimstat-reports.php:1353
2031
  msgid "Known visitors"
2032
  msgstr ""
2033
 
2034
- #: ../admin/view/wp-slimstat-reports.php:1355
2035
  msgid "Visitors who had previously left a comment on your blog."
2036
  msgstr ""
2037
 
2038
- #: ../admin/view/wp-slimstat-reports.php:1357
2039
  msgid "New visitors"
2040
  msgstr ""
2041
 
2042
- #: ../admin/view/wp-slimstat-reports.php:1359
2043
  msgid "Human users who visited your site only once."
2044
  msgstr ""
2045
 
2046
- #: ../admin/view/wp-slimstat-reports.php:1361
2047
  msgid "Bots"
2048
  msgstr ""
2049
 
2050
- #: ../admin/view/wp-slimstat-reports.php:1364
2051
- msgid "Pages per visit"
2052
  msgstr ""
2053
 
2054
- #: ../admin/view/wp-slimstat-reports.php:1367
2055
  msgid "Longest visit"
2056
  msgstr ""
2057
 
2058
- #: ../admin/view/wp-slimstat-reports.php:1368
2059
  msgid "hits"
2060
  msgstr ""
2061
 
2062
- #: ../admin/view/wp-slimstat-reports.php:1379
2063
  msgid "0 - 30 seconds"
2064
  msgstr ""
2065
 
2066
- #: ../admin/view/wp-slimstat-reports.php:1385
2067
  msgid "31 - 60 seconds"
2068
  msgstr ""
2069
 
2070
- #: ../admin/view/wp-slimstat-reports.php:1391
2071
  msgid "1 - 3 minutes"
2072
  msgstr ""
2073
 
2074
- #: ../admin/view/wp-slimstat-reports.php:1397
2075
  msgid "3 - 5 minutes"
2076
  msgstr ""
2077
 
2078
- #: ../admin/view/wp-slimstat-reports.php:1403
2079
  msgid "5 - 7 minutes"
2080
  msgstr ""
2081
 
2082
- #: ../admin/view/wp-slimstat-reports.php:1409
2083
  msgid "7 - 10 minutes"
2084
  msgstr ""
2085
 
2086
- #: ../admin/view/wp-slimstat-reports.php:1415
2087
  msgid "More than 10 minutes"
2088
  msgstr ""
2089
 
2090
- #: ../admin/view/wp-slimstat-reports.php:1427
2091
  msgid "Average visit duration"
2092
  msgstr ""
2093
 
2094
- #: ../admin/view/wp-slimstat-reports.php:1447
2095
  msgid "Unique Referrers"
2096
  msgstr ""
2097
 
2098
- #: ../admin/view/wp-slimstat-reports.php:1449
2099
  msgid ""
2100
  "A referrer (or referring site) is the site that a visitor previously visited "
2101
  "before following a link to your site."
2102
  msgstr ""
2103
 
2104
- #: ../admin/view/wp-slimstat-reports.php:1451
2105
  msgid "Direct Pageviews"
2106
  msgstr ""
2107
 
2108
- #: ../admin/view/wp-slimstat-reports.php:1453
2109
  msgid ""
2110
  "Visitors who visited the site by typing the URL directly into their browser. "
2111
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -2113,21 +2184,21 @@ msgid ""
2113
  "documents that don't include tracking variables."
2114
  msgstr ""
2115
 
2116
- #: ../admin/view/wp-slimstat-reports.php:1455
2117
  msgid "From a search result"
2118
  msgstr ""
2119
 
2120
- #: ../admin/view/wp-slimstat-reports.php:1457
2121
  msgid ""
2122
  "Visitors who came to your site via searches on Google or some other search "
2123
  "engine."
2124
  msgstr ""
2125
 
2126
- #: ../admin/view/wp-slimstat-reports.php:1459
2127
  msgid "Unique Landing Pages"
2128
  msgstr ""
2129
 
2130
- #: ../admin/view/wp-slimstat-reports.php:1461
2131
  msgid ""
2132
  "The first page that a user views during a session. This is also known as the "
2133
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -2135,157 +2206,157 @@ msgid ""
2135
  "a landing page."
2136
  msgstr ""
2137
 
2138
- #: ../admin/view/wp-slimstat-reports.php:1463
2139
  msgid "Bounce Pages"
2140
  msgstr ""
2141
 
2142
- #: ../admin/view/wp-slimstat-reports.php:1465
2143
  msgid "Number of single page visits to your site over the selected period."
2144
  msgstr ""
2145
 
2146
- #: ../admin/view/wp-slimstat-reports.php:1467
2147
  msgid "New Visitors Rate"
2148
  msgstr ""
2149
 
2150
- #: ../admin/view/wp-slimstat-reports.php:1469
2151
  msgid ""
2152
  "Percentage of single page visits, i.e. visits in which the person left your "
2153
  "site from the entrance page."
2154
  msgstr ""
2155
 
2156
- #: ../admin/view/wp-slimstat-reports.php:1471
2157
  msgid "Currently from search engines"
2158
  msgstr ""
2159
 
2160
- #: ../admin/view/wp-slimstat-reports.php:1473
2161
  msgid ""
2162
  "Visitors who visited the site in the last 5 minutes coming from a search "
2163
  "engine."
2164
  msgstr ""
2165
 
2166
- #: ../admin/view/wp-slimstat-reports.php:1543
2167
  msgid "Number of pages in your site included in Google's index."
2168
  msgstr ""
2169
 
2170
- #: ../admin/view/wp-slimstat-reports.php:1544
2171
  msgid "Google Index"
2172
  msgstr ""
2173
 
2174
- #: ../admin/view/wp-slimstat-reports.php:1545
2175
  msgid "Number of pages, according to Google, that link back to your site."
2176
  msgstr ""
2177
 
2178
- #: ../admin/view/wp-slimstat-reports.php:1546
2179
  msgid "Google Backlinks"
2180
  msgstr ""
2181
 
2182
- #: ../admin/view/wp-slimstat-reports.php:1547
2183
  msgid ""
2184
  "How many times the Facebook Like button has been approximately clicked on "
2185
  "your site."
2186
  msgstr ""
2187
 
2188
- #: ../admin/view/wp-slimstat-reports.php:1548
2189
  msgid "Facebook Likes"
2190
  msgstr ""
2191
 
2192
- #: ../admin/view/wp-slimstat-reports.php:1549
2193
  msgid ""
2194
  "How many times your site has been shared by someone on the social network."
2195
  msgstr ""
2196
 
2197
- #: ../admin/view/wp-slimstat-reports.php:1550
2198
  msgid "Facebook Shares"
2199
  msgstr ""
2200
 
2201
- #: ../admin/view/wp-slimstat-reports.php:1551
2202
  msgid "How many times links to your website have been clicked on Facebook."
2203
  msgstr ""
2204
 
2205
- #: ../admin/view/wp-slimstat-reports.php:1552
2206
  msgid "Facebook Clicks"
2207
  msgstr ""
2208
 
2209
- #: ../admin/view/wp-slimstat-reports.php:1553
2210
  msgid ""
2211
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2212
  "traffic data."
2213
  msgstr ""
2214
 
2215
- #: ../admin/view/wp-slimstat-reports.php:1554
2216
  msgid "Alexa World Rank"
2217
  msgstr ""
2218
 
2219
- #: ../admin/view/wp-slimstat-reports.php:1555
2220
  msgid "Alexa Country Rank"
2221
  msgstr ""
2222
 
2223
- #: ../admin/view/wp-slimstat-reports.php:1556
2224
  msgid "Alexa Popularity"
2225
  msgstr ""
2226
 
2227
- #: ../admin/view/wp-slimstat-reports.php:1567
2228
  msgid "Content Items"
2229
  msgstr ""
2230
 
2231
- #: ../admin/view/wp-slimstat-reports.php:1569
2232
  msgid ""
2233
  "This value includes not only posts, but also custom post types, regardless "
2234
  "of their status"
2235
  msgstr ""
2236
 
2237
- #: ../admin/view/wp-slimstat-reports.php:1571
2238
  msgid "Posts"
2239
  msgstr ""
2240
 
2241
- #: ../admin/view/wp-slimstat-reports.php:1574
2242
  msgid "Pages"
2243
  msgstr ""
2244
 
2245
- #: ../admin/view/wp-slimstat-reports.php:1577
2246
  msgid "Attachments"
2247
  msgstr ""
2248
 
2249
- #: ../admin/view/wp-slimstat-reports.php:1580
2250
  msgid "Revisions"
2251
  msgstr ""
2252
 
2253
- #: ../admin/view/wp-slimstat-reports.php:1583
2254
  msgid "Comments"
2255
  msgstr ""
2256
 
2257
- #: ../admin/view/wp-slimstat-reports.php:1586
2258
  msgid "Avg Comments per Post"
2259
  msgstr ""
2260
 
2261
- #: ../admin/view/wp-slimstat-reports.php:1589
2262
  msgid "Avg Server Latency"
2263
  msgstr ""
2264
 
2265
- #: ../admin/view/wp-slimstat-reports.php:1591
2266
  msgid ""
2267
  "Latency is the amount of time it takes for the host server to receive and "
2268
  "process a request for a page object. The amount of latency depends largely "
2269
  "on how far away the user is from the server."
2270
  msgstr ""
2271
 
2272
- #: ../admin/view/wp-slimstat-reports.php:1634
2273
  msgid "Coordinates"
2274
  msgstr ""
2275
 
2276
- #: ../admin/view/wp-slimstat-reports.php:1634
2277
  msgid "Date"
2278
  msgstr ""
2279
 
2280
- #: ../admin/view/wp-slimstat-reports.php:1671
2281
  msgid "Error contacting the GetSocial endpoint."
2282
  msgstr ""
2283
 
2284
- #: ../admin/view/wp-slimstat-reports.php:1679
2285
  msgid "Error decoding the GetSocial payload."
2286
  msgstr ""
2287
 
2288
- #: ../admin/view/wp-slimstat-reports.php:1711
2289
  msgid ""
2290
  "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2291
  ">social media metrics and identify your top performing posts.<br/> <a "
@@ -2293,1201 +2364,1202 @@ msgid ""
2293
  msgstr ""
2294
 
2295
  # Unknown
2296
- #: ../admin/view/wp-slimstat-reports.php:1721
2297
  msgid "c-xx"
2298
  msgstr "Unknown"
2299
 
2300
  # Afghanistan
2301
- #: ../admin/view/wp-slimstat-reports.php:1721
2302
  msgid "c-af"
2303
  msgstr "Afghanistan"
2304
 
2305
  # Åland Islands
2306
- #: ../admin/view/wp-slimstat-reports.php:1721
2307
  msgid "c-ax"
2308
  msgstr "Aland Islands"
2309
 
2310
  # Albania
2311
- #: ../admin/view/wp-slimstat-reports.php:1721
2312
  msgid "c-al"
2313
  msgstr "Albania"
2314
 
2315
  # Algeria
2316
- #: ../admin/view/wp-slimstat-reports.php:1721
2317
  msgid "c-dz"
2318
  msgstr "Algeria"
2319
 
2320
  # Andorra
2321
- #: ../admin/view/wp-slimstat-reports.php:1721
2322
  msgid "c-ad"
2323
  msgstr "Andorra"
2324
 
2325
  # Angola
2326
- #: ../admin/view/wp-slimstat-reports.php:1721
2327
  msgid "c-ao"
2328
  msgstr "Angola"
2329
 
2330
  # Anguilla
2331
- #: ../admin/view/wp-slimstat-reports.php:1721
2332
  msgid "c-ai"
2333
  msgstr "Anguilla"
2334
 
2335
  # Antigua and Barbuda
2336
- #: ../admin/view/wp-slimstat-reports.php:1721
2337
  msgid "c-ag"
2338
  msgstr "Antigua and Barbuda"
2339
 
2340
  # Argentina
2341
- #: ../admin/view/wp-slimstat-reports.php:1721
2342
  msgid "c-ar"
2343
  msgstr "Argentina"
2344
 
2345
  # Armenia
2346
- #: ../admin/view/wp-slimstat-reports.php:1721
2347
  msgid "c-am"
2348
  msgstr "Armenia"
2349
 
2350
  # Aruba
2351
- #: ../admin/view/wp-slimstat-reports.php:1721
2352
  msgid "c-aw"
2353
  msgstr "Aruba"
2354
 
2355
  # Australia
2356
- #: ../admin/view/wp-slimstat-reports.php:1721
2357
  msgid "c-au"
2358
  msgstr "Australia"
2359
 
2360
  # Austria
2361
- #: ../admin/view/wp-slimstat-reports.php:1721
2362
  msgid "c-at"
2363
  msgstr "Austria"
2364
 
2365
  # Azerbaijan
2366
- #: ../admin/view/wp-slimstat-reports.php:1721
2367
  msgid "c-az"
2368
  msgstr "Azerbaijan"
2369
 
2370
  # Bahamas
2371
- #: ../admin/view/wp-slimstat-reports.php:1721
2372
  msgid "c-bs"
2373
  msgstr "Bahamas"
2374
 
2375
  # Bahrain
2376
- #: ../admin/view/wp-slimstat-reports.php:1721
2377
  msgid "c-bh"
2378
  msgstr "Bahrain"
2379
 
2380
  # Bangladesh
2381
- #: ../admin/view/wp-slimstat-reports.php:1721
2382
  msgid "c-bd"
2383
  msgstr "Bangladesh"
2384
 
2385
  # Barbados
2386
- #: ../admin/view/wp-slimstat-reports.php:1721
2387
  msgid "c-bb"
2388
  msgstr "Barbados"
2389
 
2390
  # Belarus
2391
- #: ../admin/view/wp-slimstat-reports.php:1721
2392
  msgid "c-by"
2393
  msgstr "Belarus"
2394
 
2395
  # Belgium
2396
- #: ../admin/view/wp-slimstat-reports.php:1721
2397
  msgid "c-be"
2398
  msgstr "Belgium"
2399
 
2400
  # Belize
2401
- #: ../admin/view/wp-slimstat-reports.php:1721
2402
  msgid "c-bz"
2403
  msgstr "Belize"
2404
 
2405
  # Benin
2406
- #: ../admin/view/wp-slimstat-reports.php:1721
2407
  msgid "c-bj"
2408
  msgstr "Benin"
2409
 
2410
  # Bermuda
2411
- #: ../admin/view/wp-slimstat-reports.php:1721
2412
  msgid "c-bm"
2413
  msgstr "Bermuda"
2414
 
2415
  # Bhutan
2416
- #: ../admin/view/wp-slimstat-reports.php:1721
2417
  msgid "c-bt"
2418
  msgstr "Bhutan"
2419
 
2420
  # Bolivia
2421
- #: ../admin/view/wp-slimstat-reports.php:1721
2422
  msgid "c-bo"
2423
  msgstr "Bolivia"
2424
 
2425
  # Bosnia and Herzegovina
2426
- #: ../admin/view/wp-slimstat-reports.php:1721
2427
  msgid "c-ba"
2428
  msgstr "Bosnia and Herzegovina"
2429
 
2430
  # Botswana
2431
- #: ../admin/view/wp-slimstat-reports.php:1721
2432
  msgid "c-bw"
2433
  msgstr "Botswana"
2434
 
2435
  # Brazil
2436
- #: ../admin/view/wp-slimstat-reports.php:1721
2437
  msgid "c-br"
2438
  msgstr "Brazil"
2439
 
2440
  # Brunei Darussalam
2441
- #: ../admin/view/wp-slimstat-reports.php:1721
2442
  msgid "c-bn"
2443
  msgstr "Brunei Darussalam"
2444
 
2445
  # Bulgaria
2446
- #: ../admin/view/wp-slimstat-reports.php:1721
2447
  msgid "c-bg"
2448
  msgstr "Bulgaria"
2449
 
2450
  # Burkina Faso
2451
- #: ../admin/view/wp-slimstat-reports.php:1721
2452
  msgid "c-bf"
2453
  msgstr "Burkina Faso"
2454
 
2455
  # Burundi
2456
- #: ../admin/view/wp-slimstat-reports.php:1721
2457
  msgid "c-bi"
2458
  msgstr "Burundi"
2459
 
2460
  # Cambodia
2461
- #: ../admin/view/wp-slimstat-reports.php:1721
2462
  msgid "c-kh"
2463
  msgstr "Cambodia"
2464
 
2465
  # Cameroon
2466
- #: ../admin/view/wp-slimstat-reports.php:1721
2467
  msgid "c-cm"
2468
  msgstr "Cameroon"
2469
 
2470
  # Canada
2471
- #: ../admin/view/wp-slimstat-reports.php:1721
2472
  msgid "c-ca"
2473
  msgstr "Canada"
2474
 
2475
  # Cape Verde
2476
- #: ../admin/view/wp-slimstat-reports.php:1721
2477
  msgid "c-cv"
2478
  msgstr "Cape Verde"
2479
 
2480
  # Cayman Islands
2481
- #: ../admin/view/wp-slimstat-reports.php:1721
2482
  msgid "c-ky"
2483
  msgstr "Cayman Islands"
2484
 
2485
  # Central African Republic
2486
- #: ../admin/view/wp-slimstat-reports.php:1721
2487
  msgid "c-cf"
2488
  msgstr "Central African Republic"
2489
 
2490
  # Chad
2491
- #: ../admin/view/wp-slimstat-reports.php:1721
2492
  msgid "c-td"
2493
  msgstr "Chad"
2494
 
2495
  # Chile
2496
- #: ../admin/view/wp-slimstat-reports.php:1721
2497
  msgid "c-cl"
2498
  msgstr "Chile"
2499
 
2500
  # China
2501
- #: ../admin/view/wp-slimstat-reports.php:1721
2502
  msgid "c-cn"
2503
  msgstr "China"
2504
 
2505
  # Colombia
2506
- #: ../admin/view/wp-slimstat-reports.php:1721
2507
  msgid "c-co"
2508
  msgstr "Colombia"
2509
 
2510
  # Comoros
2511
- #: ../admin/view/wp-slimstat-reports.php:1721
2512
  msgid "c-km"
2513
  msgstr "Comoros"
2514
 
2515
  # Congo
2516
- #: ../admin/view/wp-slimstat-reports.php:1721
2517
  msgid "c-cg"
2518
  msgstr "Congo"
2519
 
2520
  # The Democratic Republic of the Congo
2521
- #: ../admin/view/wp-slimstat-reports.php:1721
2522
  msgid "c-cd"
2523
  msgstr "The Democratic Republic of the Congo"
2524
 
2525
  # Costa Rica
2526
- #: ../admin/view/wp-slimstat-reports.php:1721
2527
  msgid "c-cr"
2528
  msgstr "Costa Rica"
2529
 
2530
  # Côte d'Ivoire
2531
- #: ../admin/view/wp-slimstat-reports.php:1721
2532
  msgid "c-ci"
2533
  msgstr "Côte d'Ivoire"
2534
 
2535
  # Croatia
2536
- #: ../admin/view/wp-slimstat-reports.php:1721
2537
  msgid "c-hr"
2538
  msgstr "Croatia"
2539
 
2540
  # Cuba
2541
- #: ../admin/view/wp-slimstat-reports.php:1721
2542
  msgid "c-cu"
2543
  msgstr "Cuba"
2544
 
2545
  # Cyprus
2546
- #: ../admin/view/wp-slimstat-reports.php:1721
2547
  msgid "c-cy"
2548
  msgstr "Cyprus"
2549
 
2550
  # Czech Republic
2551
- #: ../admin/view/wp-slimstat-reports.php:1721
2552
  msgid "c-cz"
2553
  msgstr "Czech Republic"
2554
 
2555
  # Denmark
2556
- #: ../admin/view/wp-slimstat-reports.php:1721
2557
  msgid "c-dk"
2558
  msgstr "Denmark"
2559
 
2560
  # Djibouti
2561
- #: ../admin/view/wp-slimstat-reports.php:1721
2562
  msgid "c-dj"
2563
  msgstr "Djibouti"
2564
 
2565
  # Dominica
2566
- #: ../admin/view/wp-slimstat-reports.php:1721
2567
  msgid "c-dm"
2568
  msgstr "Dominica"
2569
 
2570
  # Dominican Republic
2571
- #: ../admin/view/wp-slimstat-reports.php:1721
2572
  msgid "c-do"
2573
  msgstr "Dominican Republic"
2574
 
2575
  # Ecuador
2576
- #: ../admin/view/wp-slimstat-reports.php:1721
2577
  msgid "c-ec"
2578
  msgstr "Ecuador"
2579
 
2580
  # Egypt
2581
- #: ../admin/view/wp-slimstat-reports.php:1721
2582
  msgid "c-eg"
2583
  msgstr "Egypt"
2584
 
2585
  # El Salvador
2586
- #: ../admin/view/wp-slimstat-reports.php:1721
2587
  msgid "c-sv"
2588
  msgstr "El Salvador"
2589
 
2590
  # Equatorial Guinea
2591
- #: ../admin/view/wp-slimstat-reports.php:1721
2592
  msgid "c-gq"
2593
  msgstr "Equatorial Guinea"
2594
 
2595
  # Eritrea
2596
- #: ../admin/view/wp-slimstat-reports.php:1721
2597
  msgid "c-er"
2598
  msgstr "Eritrea"
2599
 
2600
  # Estonia
2601
- #: ../admin/view/wp-slimstat-reports.php:1721
2602
  msgid "c-ee"
2603
  msgstr "Estonia"
2604
 
2605
  # Ethiopia
2606
- #: ../admin/view/wp-slimstat-reports.php:1721
2607
  msgid "c-et"
2608
  msgstr "Ethiopia"
2609
 
2610
  # Faroe Islands
2611
- #: ../admin/view/wp-slimstat-reports.php:1721
2612
  msgid "c-fo"
2613
  msgstr "Faroe Islands"
2614
 
2615
  # Falkland Islands (Malvinas)
2616
- #: ../admin/view/wp-slimstat-reports.php:1721
2617
  msgid "c-fk"
2618
  msgstr "Falkland Islands (Malvinas)"
2619
 
2620
  # Fiji
2621
- #: ../admin/view/wp-slimstat-reports.php:1721
2622
  msgid "c-fj"
2623
  msgstr "Fiji"
2624
 
2625
  # Finland
2626
- #: ../admin/view/wp-slimstat-reports.php:1721
2627
  msgid "c-fi"
2628
  msgstr "Finland"
2629
 
2630
  # France
2631
- #: ../admin/view/wp-slimstat-reports.php:1721
2632
  msgid "c-fr"
2633
  msgstr "France"
2634
 
2635
  # French Guiana
2636
- #: ../admin/view/wp-slimstat-reports.php:1721
2637
  msgid "c-gf"
2638
  msgstr "French Guiana"
2639
 
2640
  # Gabon
2641
- #: ../admin/view/wp-slimstat-reports.php:1721
2642
  msgid "c-ga"
2643
  msgstr "Gabon"
2644
 
2645
  # Gambia
2646
- #: ../admin/view/wp-slimstat-reports.php:1721
2647
  msgid "c-gm"
2648
  msgstr "Gambia"
2649
 
2650
  # Georgia
2651
- #: ../admin/view/wp-slimstat-reports.php:1721
2652
  msgid "c-ge"
2653
  msgstr "Georgia"
2654
 
2655
  # Germany
2656
- #: ../admin/view/wp-slimstat-reports.php:1721
2657
  msgid "c-de"
2658
  msgstr "Germany"
2659
 
2660
  # Ghana
2661
- #: ../admin/view/wp-slimstat-reports.php:1721
2662
  msgid "c-gh"
2663
  msgstr "Ghana"
2664
 
2665
  # Greece
2666
- #: ../admin/view/wp-slimstat-reports.php:1721
2667
  msgid "c-gr"
2668
  msgstr "Greece"
2669
 
2670
  # Greenland
2671
- #: ../admin/view/wp-slimstat-reports.php:1721
2672
  msgid "c-gl"
2673
  msgstr "Greenland"
2674
 
2675
  # Grenada
2676
- #: ../admin/view/wp-slimstat-reports.php:1721
2677
  msgid "c-gd"
2678
  msgstr "Grenada"
2679
 
2680
  # Guadeloupe
2681
- #: ../admin/view/wp-slimstat-reports.php:1721
2682
  msgid "c-gp"
2683
  msgstr "Guadeloupe"
2684
 
2685
  # Guatemala
2686
- #: ../admin/view/wp-slimstat-reports.php:1721
2687
  msgid "c-gt"
2688
  msgstr "Guatemala"
2689
 
2690
  # Guinea
2691
- #: ../admin/view/wp-slimstat-reports.php:1721
2692
  msgid "c-gn"
2693
  msgstr "Guinea"
2694
 
2695
  # Guinea-Bissau
2696
- #: ../admin/view/wp-slimstat-reports.php:1721
2697
  msgid "c-gw"
2698
  msgstr "Guinea-Bissau"
2699
 
2700
  # Guyana
2701
- #: ../admin/view/wp-slimstat-reports.php:1721
2702
  msgid "c-gy"
2703
  msgstr "Guyana"
2704
 
2705
  # Haiti
2706
- #: ../admin/view/wp-slimstat-reports.php:1721
2707
  msgid "c-ht"
2708
  msgstr "Haiti"
2709
 
2710
  # Honduras
2711
- #: ../admin/view/wp-slimstat-reports.php:1721
2712
  msgid "c-hn"
2713
  msgstr "Honduras"
2714
 
2715
  # Hong Kong
2716
- #: ../admin/view/wp-slimstat-reports.php:1721
2717
  msgid "c-hk"
2718
  msgstr "Hong Kong"
2719
 
2720
  # Hungary
2721
- #: ../admin/view/wp-slimstat-reports.php:1721
2722
  msgid "c-hu"
2723
  msgstr "Hungary"
2724
 
2725
  # Iceland
2726
- #: ../admin/view/wp-slimstat-reports.php:1721
2727
  msgid "c-is"
2728
  msgstr "Iceland"
2729
 
2730
  # India
2731
- #: ../admin/view/wp-slimstat-reports.php:1721
2732
  msgid "c-in"
2733
  msgstr "India"
2734
 
2735
  # Indonesia
2736
- #: ../admin/view/wp-slimstat-reports.php:1721
2737
  msgid "c-id"
2738
  msgstr "Indonesia"
2739
 
2740
  # Islamic Republic of Iran
2741
- #: ../admin/view/wp-slimstat-reports.php:1721
2742
  msgid "c-ir"
2743
  msgstr "Islamic Republic of Iran"
2744
 
2745
  # Iraq
2746
- #: ../admin/view/wp-slimstat-reports.php:1721
2747
  msgid "c-iq"
2748
  msgstr "Iraq"
2749
 
2750
  # Ireland
2751
- #: ../admin/view/wp-slimstat-reports.php:1721
2752
  msgid "c-ie"
2753
  msgstr "Ireland"
2754
 
2755
  # Israel
2756
- #: ../admin/view/wp-slimstat-reports.php:1721
2757
  msgid "c-il"
2758
  msgstr "Israel"
2759
 
2760
  # Italy
2761
- #: ../admin/view/wp-slimstat-reports.php:1721
2762
  msgid "c-it"
2763
  msgstr "Italy"
2764
 
2765
  # Jamaica
2766
- #: ../admin/view/wp-slimstat-reports.php:1721
2767
  msgid "c-jm"
2768
  msgstr "Jamaica"
2769
 
2770
  # Japan
2771
- #: ../admin/view/wp-slimstat-reports.php:1721
2772
  msgid "c-jp"
2773
  msgstr "Japan"
2774
 
2775
  # Jordan
2776
- #: ../admin/view/wp-slimstat-reports.php:1721
2777
  msgid "c-jo"
2778
  msgstr "Jordan"
2779
 
2780
  # Kazakhstan
2781
- #: ../admin/view/wp-slimstat-reports.php:1721
2782
  msgid "c-kz"
2783
  msgstr "Kazakhstan"
2784
 
2785
  # Kenya
2786
- #: ../admin/view/wp-slimstat-reports.php:1721
2787
  msgid "c-ke"
2788
  msgstr "Kenya"
2789
 
2790
  # Nauru
2791
- #: ../admin/view/wp-slimstat-reports.php:1721
2792
  msgid "c-nr"
2793
  msgstr "Nauru"
2794
 
2795
  # Democratic People's Republic of Korea
2796
- #: ../admin/view/wp-slimstat-reports.php:1721
2797
  msgid "c-kp"
2798
  msgstr "Democratic People's Republic of Korea"
2799
 
2800
  # Republic of Korea
2801
- #: ../admin/view/wp-slimstat-reports.php:1721
2802
  msgid "c-kr"
2803
  msgstr "Republic of Korea"
2804
 
2805
- #: ../admin/view/wp-slimstat-reports.php:1721
2806
  msgid "c-kv"
2807
  msgstr "Kosovo"
2808
 
2809
  # Kuwait
2810
- #: ../admin/view/wp-slimstat-reports.php:1721
2811
  msgid "c-kw"
2812
  msgstr "Kuwait"
2813
 
2814
  # Kyrgyzstan
2815
- #: ../admin/view/wp-slimstat-reports.php:1721
2816
  msgid "c-kg"
2817
  msgstr "Kyrgyzstan"
2818
 
2819
  # Lao People's Democratic Republic
2820
- #: ../admin/view/wp-slimstat-reports.php:1721
2821
  msgid "c-la"
2822
  msgstr "Lao People's Democratic Republic"
2823
 
2824
  # Latvia
2825
- #: ../admin/view/wp-slimstat-reports.php:1721
2826
  msgid "c-lv"
2827
  msgstr "Latvia"
2828
 
2829
  # Lebanon
2830
- #: ../admin/view/wp-slimstat-reports.php:1721
2831
  msgid "c-lb"
2832
  msgstr "Lebanon"
2833
 
2834
  # Lesotho
2835
- #: ../admin/view/wp-slimstat-reports.php:1721
2836
  msgid "c-ls"
2837
  msgstr "Lesotho"
2838
 
2839
  # Liberia
2840
- #: ../admin/view/wp-slimstat-reports.php:1721
2841
  msgid "c-lr"
2842
  msgstr "Liberia"
2843
 
2844
  # Libyan Arab Jamahiriya
2845
- #: ../admin/view/wp-slimstat-reports.php:1721
2846
  msgid "c-ly"
2847
  msgstr "Libyan Arab Jamahiriya"
2848
 
2849
  # Liechtenstein
2850
- #: ../admin/view/wp-slimstat-reports.php:1721
2851
  msgid "c-li"
2852
  msgstr "Liechtenstein"
2853
 
2854
  # Lithuania
2855
- #: ../admin/view/wp-slimstat-reports.php:1721
2856
  msgid "c-lt"
2857
  msgstr "Lithuania"
2858
 
2859
  # Luxembourg
2860
- #: ../admin/view/wp-slimstat-reports.php:1721
2861
  msgid "c-lu"
2862
  msgstr "Luxembourg"
2863
 
2864
  # The Former Yugoslav Republic of Macedonia
2865
- #: ../admin/view/wp-slimstat-reports.php:1721
2866
  msgid "c-mk"
2867
  msgstr "The Former Yugoslav Republic of Macedonia"
2868
 
2869
  # Madagascar
2870
- #: ../admin/view/wp-slimstat-reports.php:1721
2871
  msgid "c-mg"
2872
  msgstr "Madagascar"
2873
 
2874
  # Malawi
2875
- #: ../admin/view/wp-slimstat-reports.php:1721
2876
  msgid "c-mw"
2877
  msgstr "Malawi"
2878
 
2879
  # Malaysia
2880
- #: ../admin/view/wp-slimstat-reports.php:1721
2881
  msgid "c-my"
2882
  msgstr "Malaysia"
2883
 
2884
  # Mali
2885
- #: ../admin/view/wp-slimstat-reports.php:1721
2886
  msgid "c-ml"
2887
  msgstr "Mali"
2888
 
2889
  # Malta
2890
- #: ../admin/view/wp-slimstat-reports.php:1721
2891
  msgid "c-mt"
2892
  msgstr "Malta"
2893
 
2894
  # Martinique
2895
- #: ../admin/view/wp-slimstat-reports.php:1721
2896
  msgid "c-mq"
2897
  msgstr "Martinique"
2898
 
2899
  # Mauritania
2900
- #: ../admin/view/wp-slimstat-reports.php:1721
2901
  msgid "c-mr"
2902
  msgstr "Mauritania"
2903
 
2904
  # Mauritius
2905
- #: ../admin/view/wp-slimstat-reports.php:1721
2906
  msgid "c-mu"
2907
  msgstr "Mauritius"
2908
 
2909
  # Mexico
2910
- #: ../admin/view/wp-slimstat-reports.php:1721
2911
  msgid "c-mx"
2912
  msgstr "Mexico"
2913
 
2914
  # Moldova
2915
- #: ../admin/view/wp-slimstat-reports.php:1721
2916
  msgid "c-md"
2917
  msgstr "Moldova"
2918
 
2919
  # Mongolia
2920
- #: ../admin/view/wp-slimstat-reports.php:1721
2921
  msgid "c-mn"
2922
  msgstr "Mongolia"
2923
 
2924
  # Montenegro
2925
- #: ../admin/view/wp-slimstat-reports.php:1721
2926
  msgid "c-me"
2927
  msgstr "Montenegro"
2928
 
2929
  # Montserrat
2930
- #: ../admin/view/wp-slimstat-reports.php:1721
2931
  msgid "c-ms"
2932
  msgstr "Montserrat"
2933
 
2934
  # Morocco
2935
- #: ../admin/view/wp-slimstat-reports.php:1721
2936
  msgid "c-ma"
2937
  msgstr "Morocco"
2938
 
2939
  # Mozambique
2940
- #: ../admin/view/wp-slimstat-reports.php:1721
2941
  msgid "c-mz"
2942
  msgstr "Mozambique"
2943
 
2944
  # Myanmar
2945
- #: ../admin/view/wp-slimstat-reports.php:1721
2946
  msgid "c-mm"
2947
  msgstr "Myanmar"
2948
 
2949
  # Namibia
2950
- #: ../admin/view/wp-slimstat-reports.php:1721
2951
  msgid "c-na"
2952
  msgstr "Namibia"
2953
 
2954
  # Nepal
2955
- #: ../admin/view/wp-slimstat-reports.php:1721
2956
  msgid "c-np"
2957
  msgstr "Nepal"
2958
 
2959
  # Netherlands
2960
- #: ../admin/view/wp-slimstat-reports.php:1721
2961
  msgid "c-nl"
2962
  msgstr "Netherlands"
2963
 
2964
  # New Caledonia
2965
- #: ../admin/view/wp-slimstat-reports.php:1721
2966
  msgid "c-nc"
2967
  msgstr "New Caledonia"
2968
 
2969
  # New Zealand
2970
- #: ../admin/view/wp-slimstat-reports.php:1721
2971
  msgid "c-nz"
2972
  msgstr "New Zealand"
2973
 
2974
  # Nicaragua
2975
- #: ../admin/view/wp-slimstat-reports.php:1721
2976
  msgid "c-ni"
2977
  msgstr "Nicaragua"
2978
 
2979
  # Niger
2980
- #: ../admin/view/wp-slimstat-reports.php:1721
2981
  msgid "c-ne"
2982
  msgstr "Niger"
2983
 
2984
  # Nigeria
2985
- #: ../admin/view/wp-slimstat-reports.php:1721
2986
  msgid "c-ng"
2987
  msgstr "Nigeria"
2988
 
2989
  # Norway
2990
- #: ../admin/view/wp-slimstat-reports.php:1721
2991
  msgid "c-no"
2992
  msgstr "Norway"
2993
 
2994
  # Oman
2995
- #: ../admin/view/wp-slimstat-reports.php:1721
2996
  msgid "c-om"
2997
  msgstr "Oman"
2998
 
2999
  # Pakistan
3000
- #: ../admin/view/wp-slimstat-reports.php:1721
3001
  msgid "c-pk"
3002
  msgstr "Pakistan"
3003
 
3004
  # Palau
3005
- #: ../admin/view/wp-slimstat-reports.php:1721
3006
  msgid "c-pw"
3007
  msgstr "Palau"
3008
 
3009
  # Occupied Palestinian Territory
3010
- #: ../admin/view/wp-slimstat-reports.php:1721
3011
  msgid "c-ps"
3012
  msgstr "Occupied Palestinian Territory"
3013
 
3014
  # Panama
3015
- #: ../admin/view/wp-slimstat-reports.php:1721
3016
  msgid "c-pa"
3017
  msgstr "Panama"
3018
 
3019
  # Papua New Guinea
3020
- #: ../admin/view/wp-slimstat-reports.php:1721
3021
  msgid "c-pg"
3022
  msgstr "Papua New Guinea"
3023
 
3024
  # Paraguay
3025
- #: ../admin/view/wp-slimstat-reports.php:1721
3026
  msgid "c-py"
3027
  msgstr "Paraguay"
3028
 
3029
  # Peru
3030
- #: ../admin/view/wp-slimstat-reports.php:1721
3031
  msgid "c-pe"
3032
  msgstr "Peru"
3033
 
3034
  # Philippines
3035
- #: ../admin/view/wp-slimstat-reports.php:1721
3036
  msgid "c-ph"
3037
  msgstr "Philippines"
3038
 
3039
  # Poland
3040
- #: ../admin/view/wp-slimstat-reports.php:1721
3041
  msgid "c-pl"
3042
  msgstr "Poland"
3043
 
3044
  # Portugal
3045
- #: ../admin/view/wp-slimstat-reports.php:1721
3046
  msgid "c-pt"
3047
  msgstr "Portugal"
3048
 
3049
  # Puerto Rico
3050
- #: ../admin/view/wp-slimstat-reports.php:1721
3051
  msgid "c-pr"
3052
  msgstr "Puerto Rico"
3053
 
3054
  # Qatar
3055
- #: ../admin/view/wp-slimstat-reports.php:1721
3056
  msgid "c-qa"
3057
  msgstr "Qatar"
3058
 
3059
  # Réunion
3060
- #: ../admin/view/wp-slimstat-reports.php:1721
3061
  msgid "c-re"
3062
  msgstr "Réunion"
3063
 
3064
  # Romania
3065
- #: ../admin/view/wp-slimstat-reports.php:1721
3066
  msgid "c-ro"
3067
  msgstr "Romania"
3068
 
3069
  # Russian Federation
3070
- #: ../admin/view/wp-slimstat-reports.php:1721
3071
  msgid "c-ru"
3072
  msgstr "Russian Federation"
3073
 
3074
  # Rwanda
3075
- #: ../admin/view/wp-slimstat-reports.php:1721
3076
  msgid "c-rw"
3077
  msgstr "Rwanda"
3078
 
3079
  # Saint Kitts and Nevis
3080
- #: ../admin/view/wp-slimstat-reports.php:1721
3081
  msgid "c-kn"
3082
  msgstr "Saint Kitts and Nevis"
3083
 
3084
  # Saint Lucia
3085
- #: ../admin/view/wp-slimstat-reports.php:1721
3086
  msgid "c-lc"
3087
  msgstr "Saint Lucia"
3088
 
3089
  # Saint Martin
3090
- #: ../admin/view/wp-slimstat-reports.php:1721
3091
  msgid "c-mf"
3092
  msgstr "Saint Martin"
3093
 
3094
  # Saint Vincent and the Grenadines
3095
- #: ../admin/view/wp-slimstat-reports.php:1721
3096
  msgid "c-vc"
3097
  msgstr "Saint Vincent and the Grenadines"
3098
 
3099
  # Samoa
3100
- #: ../admin/view/wp-slimstat-reports.php:1721
3101
  msgid "c-ws"
3102
  msgstr "Samoa"
3103
 
3104
  # Sao Tome and Principe
3105
- #: ../admin/view/wp-slimstat-reports.php:1721
3106
  msgid "c-st"
3107
  msgstr "Sao Tome and Principe"
3108
 
3109
  # Saudi Arabia
3110
- #: ../admin/view/wp-slimstat-reports.php:1721
3111
  msgid "c-sa"
3112
  msgstr "Saudi Arabia"
3113
 
3114
  # Senegal
3115
- #: ../admin/view/wp-slimstat-reports.php:1721
3116
  msgid "c-sn"
3117
  msgstr "Senegal"
3118
 
3119
  # Serbia
3120
- #: ../admin/view/wp-slimstat-reports.php:1721
3121
  msgid "c-rs"
3122
  msgstr "Serbia"
3123
 
3124
  # Sierra Leone
3125
- #: ../admin/view/wp-slimstat-reports.php:1721
3126
  msgid "c-sl"
3127
  msgstr "Sierra Leone"
3128
 
3129
  # Singapore
3130
- #: ../admin/view/wp-slimstat-reports.php:1721
3131
  msgid "c-sg"
3132
  msgstr "Singapore"
3133
 
3134
  # Slovakia
3135
- #: ../admin/view/wp-slimstat-reports.php:1721
3136
  msgid "c-sk"
3137
  msgstr "Slovakia"
3138
 
3139
  # Slovenia
3140
- #: ../admin/view/wp-slimstat-reports.php:1721
3141
  msgid "c-si"
3142
  msgstr "Slovenia"
3143
 
3144
  # Solomon Islands
3145
- #: ../admin/view/wp-slimstat-reports.php:1721
3146
  msgid "c-sb"
3147
  msgstr "Solomon Islands"
3148
 
3149
  # Somalia
3150
- #: ../admin/view/wp-slimstat-reports.php:1721
3151
  msgid "c-so"
3152
  msgstr "Somalia"
3153
 
3154
  # South Africa
3155
- #: ../admin/view/wp-slimstat-reports.php:1721
3156
  msgid "c-za"
3157
  msgstr "South Africa"
3158
 
3159
  # South Georgia and the South Sandwich Islands
3160
- #: ../admin/view/wp-slimstat-reports.php:1721
3161
  msgid "c-gs"
3162
  msgstr "South Georgia and the South Sandwich Islands"
3163
 
3164
  # Spain
3165
- #: ../admin/view/wp-slimstat-reports.php:1721
3166
  msgid "c-es"
3167
  msgstr "Spain"
3168
 
3169
  # Sri Lanka
3170
- #: ../admin/view/wp-slimstat-reports.php:1721
3171
  msgid "c-lk"
3172
  msgstr "Sri Lanka"
3173
 
3174
- #: ../admin/view/wp-slimstat-reports.php:1721
3175
  msgid "c-sc"
3176
  msgstr "Seychelles"
3177
 
3178
  # Sudan
3179
- #: ../admin/view/wp-slimstat-reports.php:1721
3180
  msgid "c-sd"
3181
  msgstr "Sudan"
3182
 
3183
- #: ../admin/view/wp-slimstat-reports.php:1721
3184
  msgid "c-ss"
3185
  msgstr "South Sudan"
3186
 
3187
  # Suriname
3188
- #: ../admin/view/wp-slimstat-reports.php:1721
3189
  msgid "c-sr"
3190
  msgstr "Suriname"
3191
 
3192
  # Svalbard and Jan Mayen
3193
- #: ../admin/view/wp-slimstat-reports.php:1721
3194
  msgid "c-sj"
3195
  msgstr "Svalbard and Jan Mayen"
3196
 
3197
  # Swaziland
3198
- #: ../admin/view/wp-slimstat-reports.php:1721
3199
  msgid "c-sz"
3200
  msgstr "Swaziland"
3201
 
3202
  # Sweden
3203
- #: ../admin/view/wp-slimstat-reports.php:1721
3204
  msgid "c-se"
3205
  msgstr "Sweden"
3206
 
3207
  # Switzerland
3208
- #: ../admin/view/wp-slimstat-reports.php:1721
3209
  msgid "c-ch"
3210
  msgstr "Switzerland"
3211
 
3212
  # Syrian Arab Republic
3213
- #: ../admin/view/wp-slimstat-reports.php:1721
3214
  msgid "c-sy"
3215
  msgstr "Syrian Arab Republic"
3216
 
3217
  # Taiwan, Province of China
3218
- #: ../admin/view/wp-slimstat-reports.php:1721
3219
  msgid "c-tw"
3220
  msgstr "Taiwan"
3221
 
3222
  # Tajikistan
3223
- #: ../admin/view/wp-slimstat-reports.php:1721
3224
  msgid "c-tj"
3225
  msgstr "Tajikistan"
3226
 
3227
  # United Republic of Tanzania
3228
- #: ../admin/view/wp-slimstat-reports.php:1721
3229
  msgid "c-tz"
3230
  msgstr "United Republic of Tanzania"
3231
 
3232
  # Thailand
3233
- #: ../admin/view/wp-slimstat-reports.php:1721
3234
  msgid "c-th"
3235
  msgstr "Thailand"
3236
 
3237
  # Timor-Leste
3238
- #: ../admin/view/wp-slimstat-reports.php:1721
3239
  msgid "c-tl"
3240
  msgstr "Timor-Leste"
3241
 
3242
  # Togo
3243
- #: ../admin/view/wp-slimstat-reports.php:1721
3244
  msgid "c-tg"
3245
  msgstr "Togo"
3246
 
3247
  # Tonga
3248
- #: ../admin/view/wp-slimstat-reports.php:1721
3249
  msgid "c-to"
3250
  msgstr "Tonga"
3251
 
3252
  # Trinidad and Tobago
3253
- #: ../admin/view/wp-slimstat-reports.php:1721
3254
  msgid "c-tt"
3255
  msgstr "Trinidad and Tobago"
3256
 
3257
  # Tunisia
3258
- #: ../admin/view/wp-slimstat-reports.php:1721
3259
  msgid "c-tn"
3260
  msgstr "Tunisia"
3261
 
3262
  # Turkey
3263
- #: ../admin/view/wp-slimstat-reports.php:1721
3264
  msgid "c-tr"
3265
  msgstr "Turkey"
3266
 
3267
  # Turkmenistan
3268
- #: ../admin/view/wp-slimstat-reports.php:1721
3269
  msgid "c-tm"
3270
  msgstr "Turkmenistan"
3271
 
3272
  # Turks and Caicos Islands
3273
- #: ../admin/view/wp-slimstat-reports.php:1721
3274
  msgid "c-tc"
3275
  msgstr "Turks and Caicos Islands"
3276
 
3277
  # Uganda
3278
- #: ../admin/view/wp-slimstat-reports.php:1721
3279
  msgid "c-ug"
3280
  msgstr "Uganda"
3281
 
3282
  # Ukraine
3283
- #: ../admin/view/wp-slimstat-reports.php:1721
3284
  msgid "c-ua"
3285
  msgstr "Ukraine"
3286
 
3287
  # United Arab Emirates
3288
- #: ../admin/view/wp-slimstat-reports.php:1721
3289
  msgid "c-ae"
3290
  msgstr "United Arab Emirates"
3291
 
3292
  # United Kingdom
3293
- #: ../admin/view/wp-slimstat-reports.php:1721
3294
  msgid "c-gb"
3295
  msgstr "United Kingdom"
3296
 
3297
  # United States
3298
- #: ../admin/view/wp-slimstat-reports.php:1721
3299
  msgid "c-us"
3300
  msgstr "United States"
3301
 
3302
  # Uruguay
3303
- #: ../admin/view/wp-slimstat-reports.php:1721
3304
  msgid "c-uy"
3305
  msgstr "Uruguay"
3306
 
3307
  # Uzbekistan
3308
- #: ../admin/view/wp-slimstat-reports.php:1721
3309
  msgid "c-uz"
3310
  msgstr "Uzbekistan"
3311
 
3312
  # Vanuatu
3313
- #: ../admin/view/wp-slimstat-reports.php:1721
3314
  msgid "c-vu"
3315
  msgstr "Vanuatu"
3316
 
3317
  # Venezuela
3318
- #: ../admin/view/wp-slimstat-reports.php:1721
3319
  msgid "c-ve"
3320
  msgstr "Venezuela"
3321
 
3322
  # Viet Nam
3323
- #: ../admin/view/wp-slimstat-reports.php:1721
3324
  msgid "c-vn"
3325
  msgstr "Viet Nam"
3326
 
3327
  # British Virgin Islands
3328
- #: ../admin/view/wp-slimstat-reports.php:1721
3329
  msgid "c-vg"
3330
  msgstr "British Virgin Islands"
3331
 
3332
  # U.S. Virgin Islands
3333
- #: ../admin/view/wp-slimstat-reports.php:1721
3334
  msgid "c-vi"
3335
  msgstr "U.S. Virgin Islands"
3336
 
3337
  # Western Sahara
3338
- #: ../admin/view/wp-slimstat-reports.php:1721
3339
  msgid "c-eh"
3340
  msgstr "Western Sahara"
3341
 
3342
  # Yemen
3343
- #: ../admin/view/wp-slimstat-reports.php:1721
3344
  msgid "c-ye"
3345
  msgstr "Yemen"
3346
 
3347
  # Zambia
3348
- #: ../admin/view/wp-slimstat-reports.php:1721
3349
  msgid "c-zm"
3350
  msgstr "Zambia"
3351
 
3352
  # Zimbabwe
3353
- #: ../admin/view/wp-slimstat-reports.php:1721
3354
  msgid "c-zw"
3355
  msgstr "Zimbabwe"
3356
 
3357
  # Guernsey
3358
- #: ../admin/view/wp-slimstat-reports.php:1721
3359
  msgid "c-gg"
3360
  msgstr "Guernsey"
3361
 
3362
  # Jersey
3363
- #: ../admin/view/wp-slimstat-reports.php:1721
3364
  msgid "c-je"
3365
  msgstr "Jersey"
3366
 
3367
  # Isle of Man
3368
- #: ../admin/view/wp-slimstat-reports.php:1721
3369
  msgid "c-im"
3370
  msgstr "Isle of Man"
3371
 
3372
  # Maldives
3373
- #: ../admin/view/wp-slimstat-reports.php:1721
3374
  msgid "c-mv"
3375
  msgstr "Maldives"
3376
 
3377
- #: ../admin/view/wp-slimstat-reports.php:1722
3378
  msgid "c-eu"
3379
  msgstr "Europe"
3380
 
3381
- #: ../admin/view/wp-slimstat-reports.php:1804
3382
  msgid "src"
3383
  msgstr ""
3384
 
3385
- #: ../admin/view/wp-slimstat-reports.php:1807
3386
  msgid "serp"
3387
  msgstr ""
3388
 
3389
- #: ../admin/view/wp-slimstat-reports.php:1814
3390
  msgid "Go to the referring page"
3391
  msgstr ""
3392
 
3393
- #: ../admin/view/wp-slimstat-reports.php:1836
3394
  msgid "Remove filter for"
3395
  msgstr ""
3396
 
3397
- #: ../admin/view/wp-slimstat-reports.php:1840
3398
  msgid "Save"
3399
  msgstr ""
3400
 
3401
- #: ../admin/view/wp-slimstat-reports.php:1843
3402
  msgid "Reset All"
3403
  msgstr ""
3404
 
3405
- #: ../admin/view/wp-slimstat-reports.php:1847
3406
  msgid "Current filters:"
3407
  msgstr ""
3408
 
3409
- #: ../admin/wp-slimstat-admin.php:648 ../admin/wp-slimstat-admin.php:659
3410
- #: ../admin/wp-slimstat-admin.php:661
3411
  msgid "SlimStat"
3412
  msgstr ""
3413
 
3414
- #: ../admin/wp-slimstat-admin.php:655
3415
- msgid "Custom Reports"
 
3416
  msgstr ""
3417
 
3418
- #: ../admin/wp-slimstat-admin.php:744
3419
  msgid "Pageviews in the last "
3420
  msgstr ""
3421
 
3422
- #: ../admin/wp-slimstat-admin.php:747
3423
  msgid "Unique IPs in the last "
3424
  msgstr ""
3425
 
3426
- #: ../admin/wp-slimstat-admin.php:803
3427
  msgid "Show on screen"
3428
  msgstr ""
3429
 
3430
- #: ../admin/wp-slimstat-admin.php:888
3431
  msgid "Already saved"
3432
  msgstr ""
3433
 
3434
- #: ../admin/wp-slimstat-admin.php:896
3435
  msgid "Saved"
3436
  msgstr ""
3437
 
3438
- #: ../admin/wp-slimstat-admin.php:916
3439
  msgid "Delete this filter"
3440
  msgstr ""
3441
 
3442
- #: ../admin/wp-slimstat-admin.php:960
3443
  msgid "There was an error updating the following options:"
3444
  msgstr ""
3445
 
3446
- #: ../admin/wp-slimstat-admin.php:963
3447
  msgid "Your changes have been saved."
3448
  msgstr ""
3449
 
3450
- #: ../admin/wp-slimstat-admin.php:986
3451
  msgid "Save Changes"
3452
  msgstr ""
3453
 
3454
- #: ../admin/wp-slimstat-admin.php:1002
3455
  msgid "Definitions"
3456
  msgstr ""
3457
 
3458
- #: ../admin/wp-slimstat-admin.php:1005
3459
  msgid "Pageview"
3460
  msgstr ""
3461
 
3462
- #: ../admin/wp-slimstat-admin.php:1005
3463
  msgid ""
3464
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3465
  "with a \"hit\", which refers to a request for any file from a web server. "
3466
  "Slimstat logs a pageview each time the tracking code is executed"
3467
  msgstr ""
3468
 
3469
- #: ../admin/wp-slimstat-admin.php:1006
3470
  msgid "(Human) Visit"
3471
  msgstr ""
3472
 
3473
- #: ../admin/wp-slimstat-admin.php:1006
3474
  msgid ""
3475
  "A period of interaction between a visitor's browser and your website, ending "
3476
  "when the browser is closed or when the user has been inactive on that site "
3477
  "for 30 minutes"
3478
  msgstr ""
3479
 
3480
- #: ../admin/wp-slimstat-admin.php:1007
3481
  msgid ""
3482
  "Any user who has left a comment on your blog, and is thus identified by "
3483
  "Wordpress as a returning visitor"
3484
  msgstr ""
3485
 
3486
- #: ../admin/wp-slimstat-admin.php:1008
3487
  msgid "Unique IP"
3488
  msgstr ""
3489
 
3490
- #: ../admin/wp-slimstat-admin.php:1008
3491
  msgid ""
3492
  "Used to differentiate between multiple requests to download a file from one "
3493
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -3495,148 +3567,148 @@ msgid ""
3495
  "from, it is useful, but not perfect"
3496
  msgstr ""
3497
 
3498
- #: ../admin/wp-slimstat-admin.php:1009
3499
  msgid ""
3500
  "the originating IP address of a client connecting to a web server through an "
3501
  "HTTP proxy or load balancer"
3502
  msgstr ""
3503
 
3504
- #: ../admin/wp-slimstat-admin.php:1010
3505
  msgid "Direct Traffic"
3506
  msgstr ""
3507
 
3508
- #: ../admin/wp-slimstat-admin.php:1010
3509
  msgid ""
3510
  "All those people showing up to your Web site by typing in the URL of your "
3511
  "Web site coming or from a bookmark; some people also call this \"default "
3512
  "traffic\" or \"ambient traffic\""
3513
  msgstr ""
3514
 
3515
- #: ../admin/wp-slimstat-admin.php:1011
3516
  msgid "Search Engine"
3517
  msgstr ""
3518
 
3519
- #: ../admin/wp-slimstat-admin.php:1011
3520
  msgid ""
3521
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3522
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
3523
  msgstr ""
3524
 
3525
- #: ../admin/wp-slimstat-admin.php:1012 ../admin/wp-slimstat-admin.php:1028
3526
  msgid "Keywords used by your visitors to find your website on a search engine"
3527
  msgstr ""
3528
 
3529
- #: ../admin/wp-slimstat-admin.php:1013
3530
  msgid "SERP"
3531
  msgstr ""
3532
 
3533
- #: ../admin/wp-slimstat-admin.php:1013
3534
  msgid ""
3535
  "Short for search engine results page, the Web page that a search engine "
3536
  "returns with the results of its search. The value shown represents your rank "
3537
  "(or position) within that list of results"
3538
  msgstr ""
3539
 
3540
- #: ../admin/wp-slimstat-admin.php:1014
3541
  msgid ""
3542
  "Any program used for accessing a website; this includes browsers, robots, "
3543
  "spiders and any other program that was used to retrieve information from the "
3544
  "site"
3545
  msgstr ""
3546
 
3547
- #: ../admin/wp-slimstat-admin.php:1015
3548
  msgid ""
3549
  "A link from one domain to another is said to be outbound from its source "
3550
  "anchor and inbound to its target. This report lists all the links to other "
3551
  "websites followed by your visitors."
3552
  msgstr ""
3553
 
3554
- #: ../admin/wp-slimstat-admin.php:1022
3555
  msgid "Basic Filters"
3556
  msgstr ""
3557
 
3558
- #: ../admin/wp-slimstat-admin.php:1025
3559
  msgid "User agent (Firefox, Chrome, ...)"
3560
  msgstr ""
3561
 
3562
- #: ../admin/wp-slimstat-admin.php:1026
3563
  msgid "2-letter code (us, ru, de, it, ...)"
3564
  msgstr ""
3565
 
3566
- #: ../admin/wp-slimstat-admin.php:1027
3567
  msgid "IP"
3568
  msgstr ""
3569
 
3570
- #: ../admin/wp-slimstat-admin.php:1027
3571
  msgid "Visitor's public IP address"
3572
  msgstr ""
3573
 
3574
- #: ../admin/wp-slimstat-admin.php:1029
3575
  msgid ""
3576
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
3577
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
3578
  "column) for more information"
3579
  msgstr ""
3580
 
3581
- #: ../admin/wp-slimstat-admin.php:1030
3582
  msgid ""
3583
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
3584
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
3585
  "manual page</a> for more information"
3586
  msgstr ""
3587
 
3588
- #: ../admin/wp-slimstat-admin.php:1031
3589
  msgid "URL accessed on your site"
3590
  msgstr ""
3591
 
3592
- #: ../admin/wp-slimstat-admin.php:1032
3593
  msgid "Complete address of the referrer page"
3594
  msgstr ""
3595
 
3596
- #: ../admin/wp-slimstat-admin.php:1033
3597
  msgid ""
3598
  "Visitors' names according to the cookie set by Wordpress after they leave a "
3599
  "comment"
3600
  msgstr ""
3601
 
3602
- #: ../admin/wp-slimstat-admin.php:1041
3603
  msgid "Advanced Filters"
3604
  msgstr ""
3605
 
3606
- #: ../admin/wp-slimstat-admin.php:1044
3607
  msgid "user agent version (9.0, 11, ...)"
3608
  msgstr ""
3609
 
3610
- #: ../admin/wp-slimstat-admin.php:1045
3611
  msgid ""
3612
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
3613
  "all others"
3614
  msgstr ""
3615
 
3616
- #: ../admin/wp-slimstat-admin.php:1046
3617
  msgid "Pageview Attributes"
3618
  msgstr ""
3619
 
3620
- #: ../admin/wp-slimstat-admin.php:1046
3621
  msgid ""
3622
  "this field is set to <em>[pre]</em> if the resource has been accessed "
3623
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
3624
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
3625
  msgstr ""
3626
 
3627
- #: ../admin/wp-slimstat-admin.php:1047
3628
  msgid "author associated to that post/page when the resource was accessed"
3629
  msgstr ""
3630
 
3631
- #: ../admin/wp-slimstat-admin.php:1048
3632
  msgid "ID of the category/term associated to the resource, when available"
3633
  msgstr ""
3634
 
3635
- #: ../admin/wp-slimstat-admin.php:1049
3636
  msgid "visitor's originating IP address, if available"
3637
  msgstr ""
3638
 
3639
- #: ../admin/wp-slimstat-admin.php:1050
3640
  msgid ""
3641
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
3642
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -3645,50 +3717,50 @@ msgid ""
3645
  "information"
3646
  msgstr ""
3647
 
3648
- #: ../admin/wp-slimstat-admin.php:1051
3649
  msgid "Screen Resolution"
3650
  msgstr ""
3651
 
3652
- #: ../admin/wp-slimstat-admin.php:1051
3653
  msgid "viewport width and height (1024x768, 800x600, ...)"
3654
  msgstr ""
3655
 
3656
- #: ../admin/wp-slimstat-admin.php:1052
3657
  msgid ""
3658
  "generally used in conjunction with <em>is not empty</em>, identifies human "
3659
  "visitors"
3660
  msgstr ""
3661
 
3662
- #: ../admin/wp-slimstat-admin.php:1053
3663
  msgid "Date Filters"
3664
  msgstr ""
3665
 
3666
- #: ../admin/wp-slimstat-admin.php:1053
3667
  msgid ""
3668
  "you can specify the timeframe by entering a number in the <em>interval</em> "
3669
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
3670
  "year=blank, interval=-1 will set a year-to-date filter)"
3671
  msgstr ""
3672
 
3673
- #: ../admin/wp-slimstat-admin.php:1054
3674
  msgid "SERP Position"
3675
  msgstr ""
3676
 
3677
- #: ../admin/wp-slimstat-admin.php:1054
3678
  msgid ""
3679
  "set the filter to Referer contains cd=N&, where N is the position you are "
3680
  "looking for"
3681
  msgstr ""
3682
 
3683
- #: ../admin/wp-slimstat-admin.php:1081
3684
  msgid "Yes"
3685
  msgstr ""
3686
 
3687
- #: ../admin/wp-slimstat-admin.php:1082
3688
  msgid "No"
3689
  msgstr ""
3690
 
3691
- #: ../admin/wp-slimstat-admin.php:1083
3692
  msgid "Site Specific"
3693
  msgstr ""
3694
 
@@ -5156,88 +5228,97 @@ msgstr "Unknown"
5156
  msgid "c-xy"
5157
  msgstr "Local IP"
5158
 
5159
- #: ../wp-slimstat.php:219 ../wp-slimstat.php:497
5160
- msgid "Pageview filtered by third-party code"
5161
  msgstr ""
5162
 
5163
- #: ../wp-slimstat.php:236
5164
- msgid "Malformed URL"
 
5165
  msgstr ""
5166
 
5167
- #: ../wp-slimstat.php:255
5168
- msgid "Referrer is blacklisted"
 
5169
  msgstr ""
5170
 
5171
- #: ../wp-slimstat.php:333
5172
- msgid "Permalink is blacklisted"
 
5173
  msgstr ""
5174
 
5175
- #: ../wp-slimstat.php:344
5176
- msgid "Empty or not supported IP address format (IPv6)"
5177
  msgstr ""
5178
 
5179
- #: ../wp-slimstat.php:353
5180
- msgid "Logged in user not tracked"
 
5181
  msgstr ""
5182
 
5183
- #: ../wp-slimstat.php:361
5184
- msgid "User with given capability not tracked"
 
5185
  msgstr ""
5186
 
5187
- #: ../wp-slimstat.php:368
5188
  #, php-format
5189
- msgid "User %s is blacklisted"
5190
  msgstr ""
5191
 
5192
- #: ../wp-slimstat.php:388
5193
  #, php-format
5194
- msgid "Spammer %s not tracked"
5195
  msgstr ""
5196
 
5197
- #: ../wp-slimstat.php:417
5198
  #, php-format
5199
- msgid "IP address %s is blacklisted"
5200
  msgstr ""
5201
 
5202
- #: ../wp-slimstat.php:446
5203
  #, php-format
5204
- msgid "Country %s is blacklisted"
5205
  msgstr ""
5206
 
5207
- #: ../wp-slimstat.php:455
5208
- msgid "Prefetch requests are ignored"
5209
  msgstr ""
5210
 
5211
- #: ../wp-slimstat.php:471
5212
- msgid "Bot not tracked"
5213
  msgstr ""
5214
 
5215
- #: ../wp-slimstat.php:480
5216
  #, php-format
5217
- msgid "Browser %s is blacklisted"
 
 
 
 
5218
  msgstr ""
5219
 
5220
- #: ../wp-slimstat.php:1206
5221
  msgid "Invalid payload string. Try clearing your WordPress cache."
5222
  msgstr ""
5223
 
5224
- #: ../wp-slimstat.php:1216
5225
  msgid "Invalid data signature. Try clearing your WordPress cache."
5226
  msgstr ""
5227
 
5228
- #: ../wp-slimstat.php:1286
5229
  msgid "There was an error downloading the MaxMind Geolite DB:"
5230
  msgstr ""
5231
 
5232
- #: ../wp-slimstat.php:1294 ../wp-slimstat.php:1303
5233
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5234
  msgstr ""
5235
 
5236
- #: ../wp-slimstat.php:1298
5237
  msgid "Function gzopen not defined. Aborting."
5238
  msgstr ""
5239
 
5240
- #: ../wp-slimstat.php:1308
5241
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5242
  msgstr ""
5243
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
+ "POT-Creation-Date: 2015-12-24 09:19-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
7
  "Language-Team: camu <support@wp-slimstat.com>\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../admin/config/index.php:50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  msgid ""
20
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
21
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
22
  msgstr ""
23
 
24
+ #: ../admin/config/index.php:65
25
  msgid "Read access: username not found"
26
  msgstr ""
27
 
28
+ #: ../admin/config/index.php:75 ../admin/config/index.php:100
29
  msgid ""
30
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
31
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
32
  "information"
33
  msgstr ""
34
 
35
+ #: ../admin/config/index.php:90
36
  msgid "Config access: username not found"
37
  msgstr ""
38
 
39
+ #: ../admin/config/index.php:109
40
+ msgid "Basic"
41
  msgstr ""
42
 
43
+ #: ../admin/config/index.php:111 ../admin/config/index.php:132
44
  msgid "Tracker"
45
  msgstr ""
46
 
47
+ #: ../admin/config/index.php:112
48
+ msgid "Enable Tracking"
49
  msgstr ""
50
 
51
+ #: ../admin/config/index.php:112
52
  msgid "Turn the tracker on or off, while keeping the reports accessible."
53
  msgstr ""
54
 
55
+ #: ../admin/config/index.php:113
 
 
 
 
 
 
 
 
 
56
  msgid "Tracking Mode"
57
  msgstr ""
58
 
59
+ #: ../admin/config/index.php:113
60
  msgid ""
61
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
62
  "Cache, WP SuperCache, HyperCache, etc). Slimstat will behave pretty much "
65
  "spammers, search engines and other crawlers</strong> will not be tracked."
66
  msgstr ""
67
 
68
+ #: ../admin/config/index.php:113
69
+ msgid "Client Side"
70
  msgstr ""
71
 
72
+ #: ../admin/config/index.php:113
73
+ msgid "Server Side"
74
  msgstr ""
75
 
76
+ #: ../admin/config/index.php:114
77
  msgid "Stealth Mode"
78
  msgstr ""
79
 
80
+ #: ../admin/config/index.php:114
81
  msgid ""
82
  "Do not add the javascript tracking code to your pages, if tracking mode is "
83
  "set to Server. Please note: if enabled, this will prevent the tracker from "
85
  "etc. This option is ignored is Tracking Mode is set to Client."
86
  msgstr ""
87
 
88
+ #: ../admin/config/index.php:114 ../admin/view/wp-slimstat-reports.php:1359
89
+ msgid "Off"
90
+ msgstr ""
91
+
92
+ #: ../admin/config/index.php:114
93
+ msgid "On"
94
+ msgstr ""
95
+
96
+ #: ../admin/config/index.php:115
97
  msgid "Admin Pages"
98
  msgstr ""
99
 
100
+ #: ../admin/config/index.php:115
101
  msgid "Enable this option to track your users' activity within the admin."
102
  msgstr ""
103
 
104
+ #: ../admin/config/index.php:115
105
  msgid "Track"
106
  msgstr ""
107
 
108
+ #: ../admin/config/index.php:115
109
  msgid "Do not track"
110
  msgstr ""
111
 
112
+ #: ../admin/config/index.php:117
113
  msgid "WordPress Integration"
114
  msgstr ""
115
 
116
+ #: ../admin/config/index.php:118
117
  msgid "Menu Position"
118
  msgstr ""
119
 
120
+ #: ../admin/config/index.php:118
121
  msgid ""
122
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
123
  "admin bar (if visible)."
124
  msgstr ""
125
 
126
+ #: ../admin/config/index.php:118
127
  msgid "Side Menu"
128
  msgstr ""
129
 
130
+ #: ../admin/config/index.php:118
131
  msgid "Admin Bar"
132
  msgstr ""
133
 
134
+ #: ../admin/config/index.php:119
135
  msgid "Posts and Pages"
136
  msgstr ""
137
 
138
+ #: ../admin/config/index.php:119
139
  msgid ""
140
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
141
+ "per post within the timeframe specified here below."
 
 
 
 
142
  msgstr ""
143
 
144
+ #: ../admin/config/index.php:120
 
 
 
 
 
 
145
  msgid "Report Interval"
146
  msgstr ""
147
 
148
+ #: ../admin/config/index.php:120
149
  msgid ""
150
  "Enter the time range, in days, that should be used to calculate the value "
151
  "here above."
152
  msgstr ""
153
 
154
+ #: ../admin/config/index.php:121
155
  msgid "Report Type"
156
  msgstr ""
157
 
158
+ #: ../admin/config/index.php:121
159
  msgid ""
160
  "Select what kind of information you would like to see displayed on the Posts "
161
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
162
  "IPs consider only one hit per user in the given time range."
163
  msgstr ""
164
 
165
+ #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:100
166
+ #: ../admin/view/wp-slimstat-reports.php:109
167
+ #: ../admin/view/wp-slimstat-reports.php:1375
168
+ #: ../admin/view/wp-slimstat-reports.php:1533
169
  msgid "Pageviews"
170
  msgstr ""
171
 
172
+ #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:110
173
+ #: ../admin/view/wp-slimstat-reports.php:286
174
+ #: ../admin/view/wp-slimstat-reports.php:526
175
+ #: ../admin/view/wp-slimstat-reports.php:1390
176
+ #: ../admin/view/wp-slimstat-reports.php:1435
177
  msgid "Unique IPs"
178
  msgstr ""
179
 
180
+ #: ../admin/config/index.php:122
181
+ msgid "Dashboard Widgets"
182
+ msgstr ""
183
+
184
+ #: ../admin/config/index.php:122
185
+ msgid ""
186
+ "Choose if you want to have the most important reports on your WordPress "
187
+ "Dashboard. Use the Screen Options dropdown to select which ones to display."
188
+ msgstr ""
189
+
190
+ #: ../admin/config/index.php:123
191
  msgid "Hide Add-ons"
192
  msgstr ""
193
 
194
+ #: ../admin/config/index.php:123
195
  msgid ""
196
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
197
  "from the list of plugins in WordPress. Please note that you will still "
198
  "receive updates for hidden add-ons."
199
  msgstr ""
200
 
201
+ #: ../admin/config/index.php:125
202
  msgid "Database"
203
  msgstr ""
204
 
205
+ #: ../admin/config/index.php:126
206
  msgid "Retain data for"
207
  msgstr ""
208
 
209
+ #: ../admin/config/index.php:126
210
  msgid ""
211
  "Clean-up log entries older than the number of days specified here above. "
212
  "Enter <strong>0</strong> (number zero) if you want to preserve your data "
213
  "regardless of its age."
214
  msgstr ""
215
 
216
+ #: ../admin/config/index.php:126
217
  msgid "Next clean-up on"
218
  msgstr ""
219
 
220
+ #: ../admin/config/index.php:126
221
  #, php-format
222
  msgid ""
223
  "Entries logged on or before %s will be archived or deleted according to the "
224
  "option here below."
225
  msgstr ""
226
 
227
+ #: ../admin/config/index.php:126 ../admin/view/index.php:102
228
  #: ../admin/view/wp-slimstat-db.php:79
229
+ #: ../admin/view/wp-slimstat-reports.php:1359
230
  msgid "days"
231
  msgstr ""
232
 
233
+ #: ../admin/config/index.php:127
234
  msgid "Delete records"
235
  msgstr ""
236
 
237
+ #: ../admin/config/index.php:127
238
  msgid ""
239
  "If DB space is not an issue, you can decide to archive older records in "
240
  "another table, instead of deleting them. This way performance is preserved, "
244
  "is uninstalled. Make sure to backup your data before you proceed."
245
  msgstr ""
246
 
247
+ #: ../admin/config/index.php:134
248
+ msgid "Advanced Options"
249
  msgstr ""
250
 
251
+ #: ../admin/config/index.php:135
252
+ msgid "Session Duration"
253
  msgstr ""
254
 
255
+ #: ../admin/config/index.php:135
256
+ msgid ""
257
+ "How many seconds should a human session last? Google Analytics sets it to "
258
+ "1800 seconds."
259
  msgstr ""
260
 
261
+ #: ../admin/config/index.php:135 ../admin/config/index.php:205
262
+ msgid "seconds"
263
  msgstr ""
264
 
265
+ #: ../admin/config/index.php:136
266
+ msgid "Extend Session"
267
  msgstr ""
268
 
269
+ #: ../admin/config/index.php:136
270
+ msgid "Extend the duration of a session each time the user visits a new page."
 
 
271
  msgstr ""
272
 
273
+ #: ../admin/config/index.php:137
274
+ msgid "Enable CDN"
275
  msgstr ""
276
 
277
+ #: ../admin/config/index.php:137
278
  msgid ""
279
+ "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
280
+ "by serving our tracking code from their fast and reliable network (free "
281
+ "service)."
282
  msgstr ""
283
 
284
+ #: ../admin/config/index.php:138
285
+ msgid "Extensions to Track"
286
  msgstr ""
287
 
288
+ #: ../admin/config/index.php:138
289
  msgid ""
290
+ "List all the file extensions that you want to be treated as Downloads. "
291
+ "Please note that links pointing to external resources (i.e. PDFs on a "
292
+ "different website) are considered Downloads and not Outbound Links (and "
293
+ "tracked as such), if their extension matches one of the ones listed here "
294
+ "below."
295
  msgstr ""
296
 
297
+ #: ../admin/config/index.php:140
298
+ msgid "Internal and Outbound Links"
299
  msgstr ""
300
 
301
+ #: ../admin/config/index.php:141
302
+ msgid "Track Outbound Clicks"
 
 
303
  msgstr ""
304
 
305
+ #: ../admin/config/index.php:141
306
+ msgid ""
307
+ "Track when your visitors click on link to external websites. This option "
308
+ "required Spy Mode to be enabled."
309
  msgstr ""
310
 
311
+ #: ../admin/config/index.php:142
312
+ msgid "Track Coordinates"
313
  msgstr ""
314
 
315
+ #: ../admin/config/index.php:142
316
+ msgid ""
317
+ "Collect mouse coordinates and other information for clicks on internal "
318
+ "links. Strongly recommended if you're using the heatmap add-on. By default, "
319
+ "this information is only collected for external links."
320
  msgstr ""
321
 
322
+ #: ../admin/config/index.php:143
323
+ msgid "No Callback"
324
  msgstr ""
325
 
326
+ #: ../admin/config/index.php:143
327
  msgid ""
328
+ "Track the event but do not invoke the callback function on links marked with "
329
+ "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
330
+ "attribute contains one of these strings (separated by comma). Useful to "
331
+ "prevent conflicts with lightbox and similar libraries."
332
  msgstr ""
333
 
334
+ #: ../admin/config/index.php:144
335
+ msgid "Do Not Track"
336
  msgstr ""
337
 
338
+ #: ../admin/config/index.php:144
339
+ msgid ""
340
+ "Do not track links marked with one of these class names, <em>rel</em> "
341
+ "attributes or whose <em>href</em> attribute contains one of these strings "
342
+ "(separated by comma)."
343
  msgstr ""
344
 
345
+ #: ../admin/config/index.php:146
346
+ msgid "Pages not belonging to this site"
347
  msgstr ""
348
 
349
+ #: ../admin/config/index.php:147
350
+ msgid ""
351
+ "Add the following code to all the non-WP pages you want to track, right "
352
+ "before the closing BODY tag. Please make sure to change the protocol of all "
353
+ "the URLs to HTTPS, if you external site is served over a secure channel."
354
  msgstr ""
355
 
356
+ #: ../admin/config/index.php:157
357
+ msgid "Allow External Domains"
358
  msgstr ""
359
 
360
+ #: ../admin/config/index.php:157
361
  msgid ""
362
+ "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
363
+ "header is present on the requested resource, when using the external "
364
+ "tracking code here above, list the domains (complete with scheme, separated "
365
+ "by commas) you would like to allow. For example: <code>http://my.domain.ext</"
366
+ "code> (no trailing slash). Please see <a href='http://www.w3.org/TR/cors/"
367
+ "#security' target='_blank'>this W3 resource</a> for more information on the "
368
+ "security implications of allowing CORS requests."
369
  msgstr ""
370
 
371
+ #: ../admin/config/index.php:158 ../admin/config/index.php:180
372
+ #: ../admin/config/index.php:208
373
+ msgid "Miscellaneous"
374
  msgstr ""
375
 
376
+ #: ../admin/config/index.php:159
377
+ msgid "Enable UAN"
378
  msgstr ""
379
 
380
+ #: ../admin/config/index.php:159
381
  msgid ""
382
+ "Send anonymous data about user agents to our server for analysis. This "
383
+ "allows us to contribute to the <a href='http://browscap.org/' "
384
+ "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
385
+ "Slimstat's browser detection functionality. It also enables our transparent "
386
+ "ads network. No worries, your site will not be affected in any way."
387
  msgstr ""
388
 
389
+ #: ../admin/config/index.php:164
390
+ msgid "Filters"
391
+ msgstr ""
392
+
393
+ #: ../admin/config/index.php:166
394
+ msgid "Do not track settings"
395
  msgstr ""
396
 
397
  #: ../admin/config/index.php:167
398
+ msgid "Track Registered Users"
399
  msgstr ""
400
 
401
+ #: ../admin/config/index.php:167
402
+ msgid "Enable this option to track logged in users."
 
403
  msgstr ""
404
 
405
+ #: ../admin/config/index.php:168
406
+ msgid "Blacklist by Username"
407
  msgstr ""
408
 
409
+ #: ../admin/config/index.php:168
410
  msgid ""
411
+ "List all the usernames you don't want to track, separated by commas. Please "
412
+ "be aware that spaces are <em>not</em> ignored and that usernames are case "
413
+ "sensitive. Wildcards: <code>*</code> matches 'any string, including the "
414
+ "empty string', <code>!</code> matches 'any character'. For example, "
415
+ "<code>user*</code> will match user12 and userfoo, <code>u*100</code> will "
416
+ "match user100 and uber100, <code>user!0</code> will match user10 and user90."
417
  msgstr ""
418
 
419
+ #: ../admin/config/index.php:169
420
+ msgid "Blacklist by IP Address"
421
  msgstr ""
422
 
423
+ #: ../admin/config/index.php:169
424
  msgid ""
425
+ "List all the IP addresses you don't want to track, separated by commas. Each "
426
+ "network <strong>must</strong> be defined using the <a href='http://en."
427
+ "wikipedia.org/wiki/Classless_Inter-Domain_Routing' target='_blank'>CIDR "
428
+ "notation</a> (i.e. <em>192.168.0.0/24</em>). This filter applies both to the "
429
+ "public IP and the originating IP, if available."
430
  msgstr ""
431
 
432
+ #: ../admin/config/index.php:170
433
+ msgid "Blacklist by Capability"
434
  msgstr ""
435
 
436
+ #: ../admin/config/index.php:170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
437
  msgid ""
438
  "Users having at least one of the <a href='http://codex.wordpress.org/"
439
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
440
  "will not be tracked. Capabilities are case-insensitive."
441
  msgstr ""
442
 
443
+ #: ../admin/config/index.php:172
444
  msgid "Profiling"
445
  msgstr ""
446
 
447
+ #: ../admin/config/index.php:173
448
  msgid "Ignore Spammers"
449
  msgstr ""
450
 
451
+ #: ../admin/config/index.php:173
452
  msgid ""
453
  "Enable this option if you don't want to track visits from users identified "
454
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
456
  "database."
457
  msgstr ""
458
 
459
+ #: ../admin/config/index.php:174
460
  msgid "Ignore Bots"
461
  msgstr ""
462
 
463
+ #: ../admin/config/index.php:174
464
  msgid ""
465
  "Turn on this feature if you want to have the accuracy level of server-side "
466
  "tracking, but not the inconvenience of getting your database clogged with "
468
  "note that in Client mode, bots are ignored regardless of this setting."
469
  msgstr ""
470
 
471
+ #: ../admin/config/index.php:175
472
  msgid "Permalinks"
473
  msgstr ""
474
 
475
+ #: ../admin/config/index.php:175
476
  msgid ""
477
  "List all the URLs on your website that you don't want to track, separated by "
478
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
483
  "case-insensitive."
484
  msgstr ""
485
 
486
+ #: ../admin/config/index.php:176
487
  msgid "Countries"
488
  msgstr ""
489
 
490
+ #: ../admin/config/index.php:176
491
  msgid ""
492
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
493
  "track, separated by commas."
494
  msgstr ""
495
 
496
+ #: ../admin/config/index.php:177
497
  msgid "User Agents"
498
  msgstr ""
499
 
500
+ #: ../admin/config/index.php:177
501
  msgid ""
502
  "Browsers (user agents) you don't want to track, separated by commas. You can "
503
  "specify the browser's version adding a slash after the name (i.e. "
507
  "code> will match IE/7.0 and IE/8.0. Strings are case-insensitive."
508
  msgstr ""
509
 
510
+ #: ../admin/config/index.php:178
511
  msgid "Referring Sites"
512
  msgstr ""
513
 
514
+ #: ../admin/config/index.php:178
515
  msgid ""
516
  "Referring URLs that you don't want to track, separated by commas: "
517
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
521
  "https://)."
522
  msgstr ""
523
 
524
+ #: ../admin/config/index.php:181
525
+ msgid "Enable Privacy Mode"
526
  msgstr ""
527
 
528
+ #: ../admin/config/index.php:181
529
+ msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
530
+ msgstr ""
531
+
532
+ #: ../admin/config/index.php:182
533
+ msgid "Ignore Prefetch Requests"
534
  msgstr ""
535
 
536
+ #: ../admin/config/index.php:182
537
  msgid ""
538
+ "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
539
+ "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
540
+ "target='_blank'>Link Prefetching functionality</a>."
541
  msgstr ""
542
 
543
+ #: ../admin/config/index.php:187 ../admin/config/index.php:220
544
+ msgid "Reports"
545
  msgstr ""
546
 
547
+ #: ../admin/config/index.php:189
548
+ msgid "Formats and Conversions"
 
 
 
549
  msgstr ""
550
 
551
+ #: ../admin/config/index.php:190
552
+ msgid "Number Format"
553
  msgstr ""
554
 
555
+ #: ../admin/config/index.php:190
556
+ msgid "Choose the number format you want to use for your reports."
557
+ msgstr ""
558
+
559
+ #: ../admin/config/index.php:191
560
+ msgid "Date Format"
561
+ msgstr ""
562
+
563
+ #: ../admin/config/index.php:191
564
  msgid ""
565
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
566
+ "Format</a> to use when displaying a pageview's date."
 
 
567
  msgstr ""
568
 
569
+ #: ../admin/config/index.php:192
570
+ msgid "Time Format"
571
  msgstr ""
572
 
573
+ #: ../admin/config/index.php:192
574
  msgid ""
575
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
576
+ "Format</a> to use when displaying a pageview's time."
 
577
  msgstr ""
578
 
579
+ #: ../admin/config/index.php:193
580
+ msgid "Use Display Name"
581
  msgstr ""
582
 
583
+ #: ../admin/config/index.php:193
584
+ msgid ""
585
+ "By default, users are listed by their usernames. Use this option to "
586
+ "visualize their display names instead."
587
  msgstr ""
588
 
589
+ #: ../admin/config/index.php:194
590
+ msgid "Use Titles"
591
  msgstr ""
592
 
593
+ #: ../admin/config/index.php:194
594
  msgid ""
595
+ "Slimstat converts your permalinks into post, page and category titles. "
596
+ "Disable this feature if you need to see the URL in your reports."
 
597
  msgstr ""
598
 
599
+ #: ../admin/config/index.php:195
600
+ msgid "Convert IP Addresses"
601
  msgstr ""
602
 
603
+ #: ../admin/config/index.php:195
604
+ msgid "Display provider names instead of IP addresses."
605
  msgstr ""
606
 
607
+ #: ../admin/config/index.php:197
608
+ msgid "Functionality"
 
 
609
  msgstr ""
610
 
611
+ #: ../admin/config/index.php:198
612
+ msgid "SlimScroll"
613
  msgstr ""
614
 
615
+ #: ../admin/config/index.php:198
616
  msgid ""
617
+ "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
618
+ "scrollbar."
 
 
 
 
619
  msgstr ""
620
 
621
+ #: ../admin/config/index.php:199
622
+ msgid "Expand Details"
623
  msgstr ""
624
 
625
+ #: ../admin/config/index.php:199
626
+ msgid "Expand each row's details by default, insted of on mousehover."
 
 
 
627
  msgstr ""
628
 
629
+ #: ../admin/config/index.php:200 ../admin/config/index.php:206
630
+ msgid "Rows to Display"
 
 
631
  msgstr ""
632
 
633
+ #: ../admin/config/index.php:200
634
+ msgid "Specify the number of items in each report."
635
+ msgstr ""
636
+
637
+ #: ../admin/config/index.php:201 ../admin/view/wp-slimstat-db.php:101
638
+ msgid "Max Results"
639
+ msgstr ""
640
+
641
+ #: ../admin/config/index.php:201
642
  msgid ""
643
+ "Decide how many records should be retrieved from the database in total. "
644
+ "Depending on your server configuration, you may want to fine tune this value "
645
+ "to avoid exceeding your PHP memory limit."
646
+ msgstr ""
647
+
648
+ #: ../admin/config/index.php:202
649
+ msgid "IP Lookup"
650
+ msgstr ""
651
+
652
+ #: ../admin/config/index.php:202
653
+ msgid "Customize the Geolocation service to be used in the reports."
654
+ msgstr ""
655
+
656
+ #: ../admin/config/index.php:204
657
+ msgid "Activity Log"
658
+ msgstr ""
659
+
660
+ #: ../admin/config/index.php:205
661
+ msgid "Live Stream"
662
  msgstr ""
663
 
664
+ #: ../admin/config/index.php:205
665
  msgid ""
666
+ "Enable the Live view, which refreshes the Activity Log every X seconds. "
667
+ "Enter <strong>0</strong> (number zero) to deactivate this feature."
 
668
  msgstr ""
669
 
670
+ #: ../admin/config/index.php:206
671
+ msgid "Specify the number of items in the Activity Log."
672
  msgstr ""
673
 
674
+ #: ../admin/config/index.php:209
675
+ msgid "Custom CSS"
676
  msgstr ""
677
 
678
+ #: ../admin/config/index.php:209
679
  msgid ""
680
+ "Paste here your custom stylesheet to personalize the way your reports look. "
681
+ "<a href='https://slimstat.freshdesk.com/support/solutions/"
682
+ "articles/5000528528-how-can-i-change-the-colors-associated-to-color-coded-"
683
+ "pageviews-known-user-known-visitors-search-e' target='_blank'>Check the FAQ</"
684
+ "a> for more information on how to use this setting."
685
  msgstr ""
686
 
687
+ #: ../admin/config/index.php:210
688
+ msgid "Chart Colors"
689
  msgstr ""
690
 
691
+ #: ../admin/config/index.php:210
692
+ msgid ""
693
+ "Customize the look and feel of your charts by assigning personalized colors "
694
+ "to each metric. List 4 hex colors separated by commas, strictly in the "
695
+ "following order: metric 1 previous, metric 2 previous, metric 1 current, "
696
+ "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
697
  msgstr ""
698
 
699
+ #: ../admin/config/index.php:211
700
+ msgid "Show User Agent"
701
  msgstr ""
702
 
703
+ #: ../admin/config/index.php:211
704
  msgid ""
705
+ "Choose if you want to see the browser name or a complete user agent string "
706
+ "when hovering on browser icons."
 
707
  msgstr ""
708
 
709
+ #: ../admin/config/index.php:212
710
+ msgid "Enable SOV"
711
  msgstr ""
712
 
713
+ #: ../admin/config/index.php:212
714
  msgid ""
715
+ "In linguistic typology, a subject-object-verb (SOV) language is one in which "
716
+ "the subject, object, and verb of a sentence appear in that order, like in "
717
+ "Japanese."
 
 
718
  msgstr ""
719
 
720
+ #: ../admin/config/index.php:213
721
+ msgid "Social Analytics"
722
  msgstr ""
723
 
724
+ #: ../admin/config/index.php:213
725
  msgid ""
726
+ "Thanks to a <a href='http://getsocial.io/enterprise' "
727
+ "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
728
+ "set of analytics for social media where you can identify top performing "
729
+ "posts. Track social sharing to understand which of your posts are generating "
730
+ "more engagement. When this option is enabled, Slimstat sends a list of all "
731
+ "your posts's URLs to their service for analysis once daily."
732
  msgstr ""
733
 
734
+ #: ../admin/config/index.php:218
735
+ msgid "Access Control"
736
  msgstr ""
737
 
738
+ #: ../admin/config/index.php:221
739
+ msgid "Restrict Authors"
740
+ msgstr ""
741
+
742
+ #: ../admin/config/index.php:221
743
  msgid ""
744
+ "Enable this option if you want your authors to only see stats related to "
745
+ "their own content."
746
+ msgstr ""
747
+
748
+ #: ../admin/config/index.php:222 ../admin/config/index.php:226
749
+ msgid "Capability"
 
750
  msgstr ""
751
 
752
+ #: ../admin/config/index.php:222
753
+ msgid ""
754
+ "Specify the minimum <a href='http://codex.wordpress.org/"
755
+ "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
756
+ "reports (default: <code>activate_plugins</code>). If this field is empty, "
757
+ "<strong>all your users</strong> (including subscribers) will have access to "
758
+ "the reports, unless a 'Read access' whitelist has been specified here below. "
759
+ "In this case, the list has precedence over the capability."
760
  msgstr ""
761
 
762
+ #: ../admin/config/index.php:223 ../admin/config/index.php:227
763
+ msgid "Whitelist"
764
  msgstr ""
765
 
766
+ #: ../admin/config/index.php:223
767
+ msgid ""
768
+ "List all the users who should have access to the reports, separated by "
769
+ "commas. Administrators are implicitly allowed, so you don't need to list "
770
+ "them in here. Usernames are case sensitive."
771
  msgstr ""
772
 
773
+ #: ../admin/config/index.php:225 ../admin/config/index.php:250
774
+ #: ../admin/wp-slimstat-admin.php:532 ../admin/wp-slimstat-admin.php:535
775
+ #: ../wp-slimstat.php:1803
776
+ msgid "Settings"
777
  msgstr ""
778
 
779
+ #: ../admin/config/index.php:226
780
+ msgid ""
781
+ "Specify the minimum <a href='http://codex.wordpress.org/"
782
+ "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
783
+ "Slimstat (default: <code>activate_plugins</code>). The whitelist here below "
784
+ "can be used to override this option for specific users."
785
  msgstr ""
786
 
787
+ #: ../admin/config/index.php:227
788
  msgid ""
789
+ "List all the users who can edit these options, separated by commas. Please "
790
+ "be advised that admins <strong>are not</strong> implicitly allowed, so do "
791
+ "not forget to include yourself! Usernames are case sensitive."
 
 
792
  msgstr ""
793
 
794
+ #: ../admin/config/index.php:232
795
  msgid "Maintenance"
796
  msgstr ""
797
 
798
+ #: ../admin/config/index.php:237 ../admin/view/addons.php:32
799
+ #: ../admin/wp-slimstat-admin.php:490 ../admin/wp-slimstat-admin.php:505
800
+ #: ../wp-slimstat.php:1800
801
+ msgid "Add-ons"
802
+ msgstr ""
803
+
804
  #: ../admin/config/maintenance.php:16
805
  msgid ""
806
  "Congrats! Slimstat is now optimized for <a href=\"http://www.youtube.com/"
807
  "watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
808
  msgstr ""
809
 
810
+ #: ../admin/config/maintenance.php:27
811
  msgid "Indexing has been disabled. Enjoy the extra database space!"
812
  msgstr ""
813
 
814
+ #: ../admin/config/maintenance.php:43
815
  msgid "records deleted from your database."
816
  msgstr ""
817
 
818
+ #: ../admin/config/maintenance.php:48
819
  msgid "The geolocation database has been uninstalled from your server."
820
  msgstr ""
821
 
822
+ #: ../admin/config/maintenance.php:58
823
  msgid "The geolocation database has been installed on your server."
824
  msgstr ""
825
 
826
+ #: ../admin/config/maintenance.php:166
827
  msgid ""
828
  "Your data was successfully imported. You may now drop the old tables: "
829
  "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
832
  "delete the old tables."
833
  msgstr ""
834
 
835
+ #: ../admin/config/maintenance.php:175
836
  msgid "Your reports were successfully restored to their default arrangement."
837
  msgstr ""
838
 
839
+ #: ../admin/config/maintenance.php:185
840
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
841
  msgstr ""
842
 
843
+ #: ../admin/config/maintenance.php:191
844
  msgid "All the archived records were successfully deleted."
845
  msgstr ""
846
 
847
+ #: ../admin/config/maintenance.php:199
848
  msgid "All the records were successfully deleted."
849
  msgstr ""
850
 
851
+ #: ../admin/config/maintenance.php:221
852
  msgid "Debugging"
853
  msgstr ""
854
 
855
+ #: ../admin/config/maintenance.php:224
856
+ msgid "Tracker Status"
857
  msgstr ""
858
 
859
+ #: ../admin/config/maintenance.php:226
860
  msgid "recorded on"
861
  msgstr ""
862
 
863
+ #: ../admin/config/maintenance.php:226
864
  msgid "No Errors so far"
865
  msgstr ""
866
 
867
+ #: ../admin/config/maintenance.php:227
868
  msgid ""
869
  "The information here above is useful to troubleshoot issues with the "
870
+ "tracker. It includes both <strong>errors</strong>, which are returned when "
871
+ "the tracker could not record a pageview and are indicative of some kind of "
872
+ "malfunction, and <strong>notices</strong>, which explain the reason why the "
873
+ "most recent pageview was not recorded, based on your settings (filters, "
874
+ "blackslists, etc). Please include this code when sending a support request."
875
+ msgstr ""
876
+
877
+ #: ../admin/config/maintenance.php:233
878
+ msgid "Enable SQL Debug"
879
+ msgstr ""
880
+
881
+ #: ../admin/config/maintenance.php:236
882
+ msgid ""
883
+ "Display the SQL code used to retrieve the data from the database. Useful to "
884
+ "troubleshoot issues with data consistency or missing pageviews."
885
+ msgstr ""
886
+
887
+ #: ../admin/config/maintenance.php:240
888
+ msgid "Disable SQL Debug"
889
  msgstr ""
890
 
891
+ #: ../admin/config/maintenance.php:243
892
+ msgid "Deactivate the SQL output on top of each report."
893
+ msgstr ""
894
+
895
+ #: ../admin/config/maintenance.php:248
896
  msgid "Layout"
897
  msgstr ""
898
 
899
+ #: ../admin/config/maintenance.php:251
900
  msgid ""
901
  "Are you sure you want to restore the default arrangement of your reports?"
902
  msgstr ""
903
 
904
+ #: ../admin/config/maintenance.php:251
905
  msgid "No Panic Button"
906
  msgstr ""
907
 
908
+ #: ../admin/config/maintenance.php:253
909
  msgid ""
910
  "Reset the default arrangement of your reports. Helpful when, for some "
911
  "reason, reports disappear from your panels or something doesn't look right "
912
  "in your views."
913
  msgstr ""
914
 
915
+ #: ../admin/config/maintenance.php:257
916
  msgid "Data Maintenance"
917
  msgstr ""
918
 
919
+ #: ../admin/config/maintenance.php:260
920
  msgid "Delete pageviews where"
921
  msgstr ""
922
 
923
+ #: ../admin/config/maintenance.php:274 ../admin/view/index.php:16
924
  msgid "equals"
925
  msgstr ""
926
 
927
+ #: ../admin/config/maintenance.php:275 ../admin/view/index.php:17
928
  msgid "is not equal to"
929
  msgstr ""
930
 
931
+ #: ../admin/config/maintenance.php:276 ../admin/view/index.php:18
932
  msgid "contains"
933
  msgstr ""
934
 
935
+ #: ../admin/config/maintenance.php:277 ../admin/view/index.php:19
936
  msgid "is included in"
937
  msgstr ""
938
 
939
+ #: ../admin/config/maintenance.php:278 ../admin/view/index.php:20
940
  msgid "does not contain"
941
  msgstr ""
942
 
943
+ #: ../admin/config/maintenance.php:279 ../admin/view/index.php:21
944
  msgid "starts with"
945
  msgstr ""
946
 
947
+ #: ../admin/config/maintenance.php:280 ../admin/view/index.php:22
948
  msgid "ends with"
949
  msgstr ""
950
 
951
+ #: ../admin/config/maintenance.php:281 ../admin/view/index.php:23
952
  msgid "sounds like"
953
  msgstr ""
954
 
955
+ #: ../admin/config/maintenance.php:282 ../admin/view/index.php:24
956
  msgid "is greater than"
957
  msgstr ""
958
 
959
+ #: ../admin/config/maintenance.php:283 ../admin/view/index.php:25
960
  msgid "is less than"
961
  msgstr ""
962
 
963
+ #: ../admin/config/maintenance.php:284 ../admin/view/index.php:27
964
  msgid "matches"
965
  msgstr ""
966
 
967
+ #: ../admin/config/maintenance.php:285 ../admin/view/index.php:28
968
  msgid "does not match"
969
  msgstr ""
970
 
971
+ #: ../admin/config/maintenance.php:286 ../admin/view/index.php:29
972
  msgid "is empty"
973
  msgstr ""
974
 
975
+ #: ../admin/config/maintenance.php:287 ../admin/view/index.php:30
976
  msgid "is not empty"
977
  msgstr ""
978
 
979
+ #: ../admin/config/maintenance.php:290 ../admin/view/index.php:42
980
  #: ../admin/view/index.php:105
981
  msgid "Apply"
982
  msgstr ""
983
 
984
+ #: ../admin/config/maintenance.php:291
985
  msgid ""
986
  "Are you sure you want to PERMANENTLY delete these records from your database?"
987
  msgstr ""
988
 
989
+ #: ../admin/config/maintenance.php:298
990
  msgid ""
991
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
992
  "database?"
993
  msgstr ""
994
 
995
+ #: ../admin/config/maintenance.php:298
996
  msgid "Delete All Records"
997
  msgstr ""
998
 
999
+ #: ../admin/config/maintenance.php:301
1000
  msgid ""
1001
  "Erase all the information collected so far by Slimstat, including the "
1002
  "archive. This operation <strong>does not</strong> reset your settings."
1003
  msgstr ""
1004
 
1005
+ #: ../admin/config/maintenance.php:307
1006
  msgid ""
1007
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1008
  "archive?"
1009
  msgstr ""
1010
 
1011
+ #: ../admin/config/maintenance.php:307
1012
  msgid "Delete Archive"
1013
  msgstr ""
1014
 
1015
+ #: ../admin/config/maintenance.php:310
1016
  msgid "Erase all the archived records. This operation cannot be undone."
1017
  msgstr ""
1018
 
1019
+ #: ../admin/config/maintenance.php:316
1020
  msgid "Improve Performance"
1021
  msgstr ""
1022
 
1023
+ #: ../admin/config/maintenance.php:320
1024
  msgid ""
1025
  "Please note that you will need about 30% more DB space to store the extra "
1026
  "information required."
1027
  msgstr ""
1028
 
1029
+ #: ../admin/config/maintenance.php:324
1030
  msgid "Save DB Space"
1031
  msgstr ""
1032
 
1033
+ #: ../admin/config/maintenance.php:327
1034
  msgid ""
1035
  "Please note that by removing table indexes, Slimstat's performance will be "
1036
  "affected."
1037
  msgstr ""
1038
 
1039
+ #: ../admin/config/maintenance.php:334
1040
  msgid ""
1041
  "Hold on tight, we are about to import all your old data. Are you sure you "
1042
  "want to proceed?"
1043
  msgstr ""
1044
 
1045
+ #: ../admin/config/maintenance.php:334
1046
  msgid "Import old data"
1047
  msgstr ""
1048
 
1049
+ #: ../admin/config/maintenance.php:337
1050
  msgid ""
1051
  "Import all the records from the old table structure. No data will be deleted "
1052
  "from your database."
1053
  msgstr ""
1054
 
1055
+ #: ../admin/config/maintenance.php:341
1056
  msgid "MaxMind IP to Country"
1057
  msgstr ""
1058
 
1059
+ #: ../admin/config/maintenance.php:347
1060
  msgid ""
1061
  "Do you want to download and install the geolocation database from MaxMind's "
1062
  "server?"
1063
  msgstr ""
1064
 
1065
+ #: ../admin/config/maintenance.php:347
1066
  msgid "Install GeoLite DB"
1067
  msgstr ""
1068
 
1069
+ #: ../admin/config/maintenance.php:350
1070
  msgid "Do you want to uninstall the geolocation database?"
1071
  msgstr ""
1072
 
1073
+ #: ../admin/config/maintenance.php:350
1074
  msgid "Uninstall GeoLite DB"
1075
  msgstr ""
1076
 
1077
+ #: ../admin/config/maintenance.php:354
1078
  msgid ""
1079
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1080
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
1084
  "enable this functionality."
1085
  msgstr ""
1086
 
1087
+ #: ../admin/config/maintenance.php:359
1088
  msgid "Import and Export"
1089
  msgstr ""
1090
 
1091
+ #: ../admin/config/maintenance.php:363
1092
  msgid ""
1093
  "Here below you can find the current configuration string for Slimstat. You "
1094
  "can update your settings by pasting a new string inside the text area and "
1095
  "clicking the Import button."
1096
  msgstr ""
1097
 
1098
+ #: ../admin/config/maintenance.php:368
1099
  msgid "Import"
1100
  msgstr ""
1101
 
1102
+ #: ../admin/config/maintenance.php:369
1103
  msgid "Are you sure you want to OVERWRITE your current settings?"
1104
  msgstr ""
1105
 
1106
+ #: ../admin/config/maintenance.php:374
1107
  msgid "Database Information"
1108
  msgstr ""
1109
 
1110
+ #: ../admin/config/maintenance.php:377
1111
  msgid "Engine"
1112
  msgstr ""
1113
 
1114
+ #: ../admin/config/maintenance.php:381
1115
  msgid "switch to InnoDB"
1116
  msgstr ""
1117
 
1118
+ #: ../admin/config/maintenance.php:392
1119
  msgid "records"
1120
  msgstr ""
1121
 
1122
+ #: ../admin/view/addons.php:15
1123
+ msgid ""
1124
+ "There was an error retrieving the add-ons list from the server. Please try "
1125
+ "again later. Error Message:"
1126
+ msgstr ""
1127
+
1128
+ #: ../admin/view/addons.php:25
1129
+ msgid ""
1130
+ "There was an error decoding the add-ons list from the server. Please try "
1131
+ "again later."
1132
+ msgstr ""
1133
+
1134
+ #: ../admin/view/addons.php:33
1135
+ msgid ""
1136
+ "Add-ons extend the functionality of Slimstat in many interesting ways. We "
1137
+ "offer both free and premium (paid) extensions. Each add-on can be installed "
1138
+ "as a separate plugin, which will receive regular updates via the WordPress "
1139
+ "Plugins panel. In order to be notified when a new version of a premium add-"
1140
+ "on is available, please enter the <strong>license key</strong> you received "
1141
+ "when you purchased it."
1142
+ msgstr ""
1143
+
1144
+ #: ../admin/view/addons.php:37
1145
+ #, php-format
1146
+ msgid ""
1147
+ "This list is refreshed once daily: <a href=\"%s&amp;force_refresh=true"
1148
+ "\">click here</a> to clear the cache."
1149
+ msgstr ""
1150
+
1151
+ #: ../admin/view/addons.php:46
1152
+ msgid "Add-on"
1153
+ msgstr ""
1154
+
1155
+ #: ../admin/view/addons.php:46
1156
+ msgid "Description"
1157
+ msgstr ""
1158
+
1159
+ #: ../admin/view/addons.php:57
1160
+ msgid "Repo Version"
1161
+ msgstr ""
1162
+
1163
+ #: ../admin/view/addons.php:57
1164
+ msgid "Version"
1165
+ msgstr ""
1166
+
1167
+ #: ../admin/view/addons.php:69
1168
+ msgid "Your Version:"
1169
+ msgstr ""
1170
+
1171
+ #: ../admin/view/addons.php:72
1172
+ msgid "Installed and Active"
1173
+ msgstr ""
1174
+
1175
  #: ../admin/view/index.php:26
1176
  msgid "is between (x,y)"
1177
  msgstr ""
1180
  msgid "Load"
1181
  msgstr ""
1182
 
1183
+ #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1397
1184
  msgid "Today"
1185
  msgstr ""
1186
 
1187
+ #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1400
1188
  msgid "Yesterday"
1189
  msgstr ""
1190
 
1247
  "country of origin."
1248
  msgstr ""
1249
 
1250
+ #: ../admin/view/layout.php:40
1251
+ msgid "Customize and organize your reports"
1252
+ msgstr ""
1253
+
1254
+ #: ../admin/view/layout.php:41
1255
+ msgid ""
1256
+ "Drag and drop report placeholders from one container to another, to "
1257
+ "customize the information you want to see right away when you open Slimstat. "
1258
+ "Place two or more charts on the same view, clone reports or move them to the "
1259
+ "Inactive Reports container for improved performance. It is your website, and "
1260
+ "you know how metrics should be combined to get a clear picture of the "
1261
+ "traffic it generates.<br/><br/><strong>Note</strong>: if a placeholder is "
1262
+ "greyed out, it means that the corresponding report is currently hidden "
1263
+ "(Screen Options tab)."
1264
+ msgstr ""
1265
+
1266
+ #: ../admin/view/layout.php:53
1267
+ msgid "Clone"
1268
+ msgstr ""
1269
+
1270
+ #: ../admin/view/layout.php:57
1271
+ msgid "Delete"
1272
+ msgstr ""
1273
+
1274
  #: ../admin/view/right-now.php:12
1275
  msgid "Human"
1276
  msgstr ""
1287
  msgid "Syndication Reader"
1288
  msgstr ""
1289
 
1290
+ #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1031
1291
+ #: ../admin/view/wp-slimstat-reports.php:1706
1292
  msgid "No data to display"
1293
  msgstr ""
1294
 
1297
  msgstr ""
1298
 
1299
  # Unknown
1300
+ #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1082
1301
+ #: ../admin/view/wp-slimstat-reports.php:1820 ../wp-slimstat.php:1409
1302
  msgid "c-"
1303
  msgstr "Unknown"
1304
 
1305
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1306
+ #: ../admin/wp-slimstat-admin.php:846 ../admin/wp-slimstat-admin.php:886
1307
  msgid "Originating IP"
1308
  msgstr ""
1309
 
1310
+ #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1179
1311
+ #: ../admin/view/wp-slimstat-reports.php:1183
1312
+ msgid "Open this URL in a new window"
1313
  msgstr ""
1314
 
1315
+ #: ../admin/view/right-now.php:151
1316
+ msgid "Local search results page"
1317
  msgstr ""
1318
 
1319
+ #: ../admin/view/right-now.php:156 ../admin/view/wp-slimstat-db.php:42
1320
+ #: ../admin/view/wp-slimstat-reports.php:257
1321
+ #: ../admin/view/wp-slimstat-reports.php:266
1322
+ #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
1323
+ msgid "Search Terms"
1324
  msgstr ""
1325
 
1326
+ #: ../admin/view/right-now.php:162
1327
+ msgid "Server Latency and Page Speed in milliseconds"
1328
  msgstr ""
1329
 
1330
+ #: ../admin/view/right-now.php:162
1331
+ msgid "SL"
 
1332
  msgstr ""
1333
 
1334
+ #: ../admin/view/right-now.php:162
1335
+ msgid "PS"
1336
  msgstr ""
1337
 
1338
+ #: ../admin/view/right-now.php:169
1339
+ msgid "Time spent on this page in seconds"
 
1340
  msgstr ""
1341
 
1342
+ #: ../admin/view/right-now.php:179
1343
  msgid "Open this referrer in a new window"
1344
  msgstr ""
1345
 
1346
+ #: ../admin/view/right-now.php:180
1347
  msgid "Open this outbound link in a new window"
1348
  msgstr ""
1349
 
1350
+ #: ../admin/view/right-now.php:181
1351
  msgid "Content Type"
1352
  msgstr ""
1353
 
1354
+ #: ../admin/view/right-now.php:184
1355
  msgid "Delete this pageview"
1356
  msgstr ""
1357
 
1358
+ #: ../admin/view/right-now.php:195
1359
+ msgid "User Logged In"
1360
+ msgstr ""
1361
+
1362
+ #: ../admin/view/right-now.php:205
1363
+ msgid "User Logged Out"
1364
+ msgstr ""
1365
+
1366
+ #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:862
1367
  msgid "Browser"
1368
  msgstr ""
1369
 
1370
+ #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:863
1371
  msgid "Country Code"
1372
  msgstr ""
1373
 
1375
  msgid "IP Address"
1376
  msgstr ""
1377
 
1378
+ #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:866
1379
  msgid "Language Code"
1380
  msgstr ""
1381
 
1382
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1383
+ #: ../admin/wp-slimstat-admin.php:867
1384
  msgid "Operating System"
1385
  msgstr ""
1386
 
1387
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1388
+ #: ../admin/wp-slimstat-admin.php:868
1389
  msgid "Permalink"
1390
  msgstr ""
1391
 
1392
+ #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:869
1393
  msgid "Referer"
1394
  msgstr ""
1395
 
1396
+ #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:870
1397
  msgid "Visitor's Name"
1398
  msgstr ""
1399
 
1400
+ #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:852
1401
  msgid "Outbound Link"
1402
  msgstr ""
1403
 
1410
  msgstr ""
1411
 
1412
  #: ../admin/view/wp-slimstat-db.php:52
1413
+ #: ../admin/view/wp-slimstat-reports.php:373
1414
  msgid "Browser Capabilities"
1415
  msgstr ""
1416
 
1417
+ #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:881
1418
  msgid "Browser Version"
1419
  msgstr ""
1420
 
1421
+ #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:882
1422
  msgid "Browser Type"
1423
  msgstr ""
1424
 
1425
+ #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:851
1426
  msgid "User Agent"
1427
  msgstr ""
1428
 
1434
  msgid "Server Latency"
1435
  msgstr ""
1436
 
1437
+ #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:884
1438
  msgid "Post Author"
1439
  msgstr ""
1440
 
1441
+ #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:885
1442
  msgid "Post Category ID"
1443
  msgstr ""
1444
 
1445
+ #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:887
1446
  msgid "Resource Content Type"
1447
  msgstr ""
1448
 
1462
  msgid "Viewport Size"
1463
  msgstr ""
1464
 
1465
+ #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:889
1466
  msgid "Visit ID"
1467
  msgstr ""
1468
 
1507
  msgstr ""
1508
 
1509
  #: ../admin/view/wp-slimstat-db.php:96
1510
+ #: ../admin/view/wp-slimstat-reports.php:1720
1511
  msgid "Type"
1512
  msgstr ""
1513
 
1527
  msgid "Offset"
1528
  msgstr ""
1529
 
1530
+ #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:483
1531
+ #: ../wp-slimstat.php:1793
1532
  msgid "Access Log"
1533
  msgstr ""
1534
 
1535
+ #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:484
1536
+ #: ../admin/wp-slimstat-admin.php:499 ../wp-slimstat.php:1794
1537
  msgid "Overview"
1538
  msgstr ""
1539
 
1540
+ #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:485
1541
+ #: ../admin/wp-slimstat-admin.php:500 ../wp-slimstat.php:1795
1542
  msgid "Audience"
1543
  msgstr ""
1544
 
1545
+ #: ../admin/view/wp-slimstat-reports.php:24 ../admin/wp-slimstat-admin.php:486
1546
+ #: ../admin/wp-slimstat-admin.php:501 ../wp-slimstat.php:1796
1547
  msgid "Site Analysis"
1548
  msgstr ""
1549
 
1550
+ #: ../admin/view/wp-slimstat-reports.php:25
1551
+ #: ../admin/view/wp-slimstat-reports.php:516
1552
+ #: ../admin/wp-slimstat-admin.php:487 ../admin/wp-slimstat-admin.php:502
1553
+ #: ../wp-slimstat.php:1797
1554
  msgid "Traffic Sources"
1555
  msgstr ""
1556
 
1557
+ #: ../admin/view/wp-slimstat-reports.php:26
1558
+ #: ../admin/view/wp-slimstat-reports.php:1364
1559
+ #: ../admin/wp-slimstat-admin.php:488 ../admin/wp-slimstat-admin.php:503
1560
+ #: ../wp-slimstat.php:1798
1561
+ msgid "Geolocation"
1562
  msgstr ""
1563
 
1564
+ #: ../admin/view/wp-slimstat-reports.php:27
1565
+ msgid "WordPress Dashboard"
1566
  msgstr ""
1567
 
1568
+ #: ../admin/view/wp-slimstat-reports.php:28
1569
+ msgid "Inactive Reports"
1570
  msgstr ""
1571
 
1572
+ #: ../admin/view/wp-slimstat-reports.php:77
1573
+ msgid "Chart controls"
1574
  msgstr ""
1575
 
1576
+ #: ../admin/view/wp-slimstat-reports.php:77
1577
+ msgid "Use your mouse wheel to zoom in and out"
1578
  msgstr ""
1579
 
1580
  #: ../admin/view/wp-slimstat-reports.php:77
1581
+ msgid "While zooming in, drag the chart to move to a different area"
1582
+ msgstr ""
1583
+
1584
+ #: ../admin/view/wp-slimstat-reports.php:80
1585
+ msgid "Social Sharing Analytics"
1586
  msgstr ""
1587
 
1588
+ #: ../admin/view/wp-slimstat-reports.php:87
1589
  msgid "Visitors Activity"
1590
  msgstr ""
1591
 
1592
+ #: ../admin/view/wp-slimstat-reports.php:96
1593
  msgid "Color codes"
1594
  msgstr ""
1595
 
1596
+ #: ../admin/view/wp-slimstat-reports.php:96
1597
  msgid "From search result page"
1598
  msgstr ""
1599
 
1600
+ #: ../admin/view/wp-slimstat-reports.php:96 ../admin/wp-slimstat-admin.php:844
 
1601
  msgid "Known Visitor"
1602
  msgstr ""
1603
 
1604
+ #: ../admin/view/wp-slimstat-reports.php:96
1605
  msgid "Known Users"
1606
  msgstr ""
1607
 
1608
+ #: ../admin/view/wp-slimstat-reports.php:96
1609
  msgid "Other Humans"
1610
  msgstr ""
1611
 
1612
+ #: ../admin/view/wp-slimstat-reports.php:96
1613
  msgid "Bot or Crawler"
1614
  msgstr ""
1615
 
1616
+ #: ../admin/view/wp-slimstat-reports.php:118
1617
  msgid "About Slimstat"
1618
  msgstr ""
1619
 
1620
+ #: ../admin/view/wp-slimstat-reports.php:127
1621
  msgid "Traffic at a Glance"
1622
  msgstr ""
1623
 
1624
+ #: ../admin/view/wp-slimstat-reports.php:137
1625
  msgid "Currently Online"
1626
  msgstr ""
1627
 
1628
+ #: ../admin/view/wp-slimstat-reports.php:150
1629
  msgid "Recent Search Terms"
1630
  msgstr ""
1631
 
1632
+ #: ../admin/view/wp-slimstat-reports.php:160
1633
  msgid "Keywords used by your visitors to find your website on a search engine."
1634
  msgstr ""
1635
 
1636
+ #: ../admin/view/wp-slimstat-reports.php:163
1637
+ msgid "Top Web Pages"
1638
  msgstr ""
1639
 
1640
+ #: ../admin/view/wp-slimstat-reports.php:174
1641
  msgid ""
1642
+ "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1643
+ "site, including posts, products, categories, and so on. You can set the "
1644
+ "corresponding filter where Resource Content Type equals cpt:"
1645
+ "you_cpt_slug_here to get top web pages for a specific custom post type you "
1646
+ "have."
1647
  msgstr ""
1648
 
1649
+ #: ../admin/view/wp-slimstat-reports.php:177
1650
  msgid "Top Traffic Sources"
1651
  msgstr ""
1652
 
1653
+ #: ../admin/view/wp-slimstat-reports.php:189
1654
  msgid "Top Known Visitors"
1655
  msgstr ""
1656
 
1657
+ #: ../admin/view/wp-slimstat-reports.php:200
1658
  msgid "Top Search Terms"
1659
  msgstr ""
1660
 
1661
+ #: ../admin/view/wp-slimstat-reports.php:211
1662
  msgid "Top Countries"
1663
  msgstr ""
1664
 
1665
+ #: ../admin/view/wp-slimstat-reports.php:220
1666
  msgid ""
1667
  "You can configure Slimstat to ignore a specific Country by setting the "
1668
  "corresponding filter under Settings > Slimstat > Filters."
1669
  msgstr ""
1670
 
1671
+ #: ../admin/view/wp-slimstat-reports.php:223
1672
  msgid "Rankings"
1673
  msgstr ""
1674
 
1675
+ #: ../admin/view/wp-slimstat-reports.php:227
1676
  msgid ""
1677
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1678
  "measures your site's rankings. Values are updated every 12 hours. Filters "
1679
  "set above don't apply to this report."
1680
  msgstr ""
1681
 
1682
+ #: ../admin/view/wp-slimstat-reports.php:230
1683
  msgid "Top Language Families"
1684
  msgstr ""
1685
 
1686
+ #: ../admin/view/wp-slimstat-reports.php:243
1687
  msgid "Users Currently Online"
1688
  msgstr ""
1689
 
1690
+ #: ../admin/view/wp-slimstat-reports.php:254
1691
  msgid ""
1692
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1693
  "Slimstat leverages this information to identify returning visitors. Please "
1694
  "note that visitors also include registered users."
1695
  msgstr ""
1696
 
1697
+ #: ../admin/view/wp-slimstat-reports.php:267
1698
+ msgid "Unique Terms"
1699
+ msgstr ""
1700
+
1701
+ #: ../admin/view/wp-slimstat-reports.php:276
1702
  msgid "Human Visits"
1703
  msgstr ""
1704
 
1705
+ #: ../admin/view/wp-slimstat-reports.php:285
1706
+ #: ../admin/view/wp-slimstat-reports.php:1431
1707
+ msgid "Visits"
1708
+ msgstr ""
1709
+
1710
+ #: ../admin/view/wp-slimstat-reports.php:295
1711
  msgid "Audience Overview"
1712
  msgstr ""
1713
 
1714
+ #: ../admin/view/wp-slimstat-reports.php:302
1715
  msgid ""
1716
  "Where not otherwise specified, the metrics in this report are referred to "
1717
  "human visitors."
1718
  msgstr ""
1719
 
1720
+ #: ../admin/view/wp-slimstat-reports.php:305
1721
  msgid "Top Languages"
1722
  msgstr ""
1723
 
1724
+ #: ../admin/view/wp-slimstat-reports.php:316
1725
  msgid "Top Browsers"
1726
  msgstr ""
1727
 
1728
+ #: ../admin/view/wp-slimstat-reports.php:327
1729
  msgid "Top Service Providers"
1730
  msgstr ""
1731
 
1732
+ #: ../admin/view/wp-slimstat-reports.php:336
1733
+ #: ../admin/view/wp-slimstat-reports.php:348
1734
  msgid ""
1735
  "Internet Service Provider: a company which provides other companies or "
1736
  "individuals with access to the Internet. Your DSL or cable internet service "
1738
  "by setting the corresponding filter under Settings > Slimstat > Filters."
1739
  msgstr ""
1740
 
1741
+ #: ../admin/view/wp-slimstat-reports.php:339
1742
  msgid "Top Operating Systems"
1743
  msgstr ""
1744
 
1745
+ #: ../admin/view/wp-slimstat-reports.php:351
1746
  msgid "Top Screen Resolutions"
1747
  msgstr ""
1748
 
1749
+ #: ../admin/view/wp-slimstat-reports.php:362
1750
  msgid "Top Viewport Sizes"
1751
  msgstr ""
1752
 
1753
+ #: ../admin/view/wp-slimstat-reports.php:382
1754
  msgid "Visit Duration"
1755
  msgstr ""
1756
 
1757
+ #: ../admin/view/wp-slimstat-reports.php:389
1758
  msgid ""
1759
  "All values represent the percentages of pageviews within the corresponding "
1760
  "time range."
1761
  msgstr ""
1762
 
1763
+ #: ../admin/view/wp-slimstat-reports.php:392
1764
  msgid "Recent Countries"
1765
  msgstr ""
1766
 
1767
+ #: ../admin/view/wp-slimstat-reports.php:403
1768
  msgid "Recent Viewport Sizes"
1769
  msgstr ""
1770
 
1771
+ #: ../admin/view/wp-slimstat-reports.php:414
1772
  msgid "Recent Operating Systems"
1773
  msgstr ""
1774
 
1775
+ #: ../admin/view/wp-slimstat-reports.php:425
1776
  msgid "Recent Browsers"
1777
  msgstr ""
1778
 
1779
+ #: ../admin/view/wp-slimstat-reports.php:436
1780
  msgid "Recent Languages"
1781
  msgstr ""
1782
 
1783
+ #: ../admin/view/wp-slimstat-reports.php:447
1784
  msgid "Top Browser Families"
1785
  msgstr ""
1786
 
1787
+ #: ../admin/view/wp-slimstat-reports.php:456
1788
  msgid ""
1789
  "This report shows you what user agent families (no version considered) are "
1790
  "popular among your visitors."
1791
  msgstr ""
1792
 
1793
+ #: ../admin/view/wp-slimstat-reports.php:459
1794
  msgid "Top OS Families"
1795
  msgstr ""
1796
 
1797
+ #: ../admin/view/wp-slimstat-reports.php:470
1798
  msgid ""
1799
  "This report shows you what operating system families (no version considered) "
1800
  "are popular among your visitors."
1801
  msgstr ""
1802
 
1803
+ #: ../admin/view/wp-slimstat-reports.php:473
1804
  msgid "Recent Users"
1805
  msgstr ""
1806
 
1807
+ #: ../admin/view/wp-slimstat-reports.php:485
1808
  msgid "Top Users"
1809
  msgstr ""
1810
 
1811
+ #: ../admin/view/wp-slimstat-reports.php:497
1812
+ #: ../admin/view/wp-slimstat-reports.php:506
1813
+ msgid "Users"
1814
+ msgstr ""
1815
+
1816
+ #: ../admin/view/wp-slimstat-reports.php:507
1817
+ msgid "Unique Users"
1818
+ msgstr ""
1819
+
1820
+ #: ../admin/view/wp-slimstat-reports.php:525
1821
+ msgid "Domains"
1822
+ msgstr ""
1823
+
1824
+ #: ../admin/view/wp-slimstat-reports.php:535
1825
  msgid "Traffic Summary"
1826
  msgstr ""
1827
 
1828
+ #: ../admin/view/wp-slimstat-reports.php:544
1829
  msgid "Top Referring Search Engines"
1830
  msgstr ""
1831
 
1832
+ #: ../admin/view/wp-slimstat-reports.php:571
1833
  msgid "Recent Outbound Links"
1834
  msgstr ""
1835
 
1836
+ #: ../admin/view/wp-slimstat-reports.php:583
1837
  msgid "Recent Posts"
1838
  msgstr ""
1839
 
1840
+ #: ../admin/view/wp-slimstat-reports.php:611
1841
  msgid "Recent Feeds"
1842
  msgstr ""
1843
 
1844
+ #: ../admin/view/wp-slimstat-reports.php:623
1845
  msgid "Recent Pages Not Found"
1846
  msgstr ""
1847
 
1848
+ #: ../admin/view/wp-slimstat-reports.php:635
1849
  msgid "Recent Internal Searches"
1850
  msgstr ""
1851
 
1852
+ #: ../admin/view/wp-slimstat-reports.php:645
1853
  msgid "Searches performed using WordPress' built-in search functionality."
1854
  msgstr ""
1855
 
1856
+ #: ../admin/view/wp-slimstat-reports.php:648
1857
  msgid "Top Categories"
1858
  msgstr ""
1859
 
1860
+ #: ../admin/view/wp-slimstat-reports.php:661
1861
  msgid "Top Downloads"
1862
  msgstr ""
1863
 
1864
+ #: ../admin/view/wp-slimstat-reports.php:672
1865
  msgid ""
1866
  "You can configure Slimstat to track specific file extensions as downloads."
1867
  msgstr ""
1868
 
1869
+ #: ../admin/view/wp-slimstat-reports.php:675
1870
  msgid "Recent Events"
1871
  msgstr ""
1872
 
1873
+ #: ../admin/view/wp-slimstat-reports.php:684
1874
+ #: ../admin/view/wp-slimstat-reports.php:708
1875
  msgid ""
1876
  "This report lists any <em>event</em> occurred on your website. Please refer "
1877
  "to the FAQ for more information on how to use this functionality."
1878
  msgstr ""
1879
 
1880
+ #: ../admin/view/wp-slimstat-reports.php:687
1881
  msgid "Top Posts"
1882
  msgstr ""
1883
 
1884
+ #: ../admin/view/wp-slimstat-reports.php:699
1885
  msgid "Top Events"
1886
  msgstr ""
1887
 
1888
+ #: ../admin/view/wp-slimstat-reports.php:711
1889
  msgid "Top Internal Searches"
1890
  msgstr ""
1891
 
1892
+ #: ../admin/view/wp-slimstat-reports.php:723
1893
  msgid "Recent Categories"
1894
  msgstr ""
1895
 
1896
+ #: ../admin/view/wp-slimstat-reports.php:735
1897
  msgid "Top Pages Not Found"
1898
  msgstr ""
1899
 
1900
+ #: ../admin/view/wp-slimstat-reports.php:747
1901
  msgid "Top Authors"
1902
  msgstr ""
1903
 
1904
+ #: ../admin/view/wp-slimstat-reports.php:758
1905
  msgid "Top Tags"
1906
  msgstr ""
1907
 
1908
+ #: ../admin/view/wp-slimstat-reports.php:770
1909
  msgid "Recent Downloads"
1910
  msgstr ""
1911
 
1912
+ #: ../admin/view/wp-slimstat-reports.php:782
1913
  msgid "Top Outbound Links"
1914
  msgstr ""
1915
 
1916
+ #: ../admin/view/wp-slimstat-reports.php:794
1917
  msgid "Your Website"
1918
  msgstr ""
1919
 
1920
+ #: ../admin/view/wp-slimstat-reports.php:801
1921
  msgid ""
1922
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
1923
  "this report is not affected by the filters set here above."
1924
  msgstr ""
1925
 
1926
+ #: ../admin/view/wp-slimstat-reports.php:804
1927
  msgid "Top Bounce Pages"
1928
  msgstr ""
1929
 
1930
+ #: ../admin/view/wp-slimstat-reports.php:817
1931
  msgid "Top Exit Pages"
1932
  msgstr ""
1933
 
1934
+ #: ../admin/view/wp-slimstat-reports.php:830
1935
  msgid "Top Entry Pages"
1936
  msgstr ""
1937
 
1938
+ #: ../admin/view/wp-slimstat-reports.php:843
1939
+ #: ../admin/view/wp-slimstat-reports.php:852
1940
+ msgid "Outbound Links"
1941
+ msgstr ""
1942
+
1943
+ #: ../admin/view/wp-slimstat-reports.php:853
1944
+ msgid "Unique Outbound"
1945
+ msgstr ""
1946
+
1947
+ #: ../admin/view/wp-slimstat-reports.php:862
1948
  msgid "World Map"
1949
  msgstr ""
1950
 
1951
+ #: ../admin/view/wp-slimstat-reports.php:944
1952
  msgid "Refresh"
1953
  msgstr ""
1954
 
1955
+ #: ../admin/view/wp-slimstat-reports.php:981
1956
  #, php-format
1957
  msgid "Results %s - %s of %s"
1958
  msgstr ""
1959
 
1960
+ #: ../admin/view/wp-slimstat-reports.php:983
1961
  msgid "Refresh in"
1962
  msgstr ""
1963
 
1964
+ #: ../admin/view/wp-slimstat-reports.php:1076
1965
  msgid "Category ID"
1966
  msgstr ""
1967
 
1968
+ #: ../admin/view/wp-slimstat-reports.php:1081
1969
+ #: ../admin/view/wp-slimstat-reports.php:1096
1970
+ #: ../admin/view/wp-slimstat-reports.php:1102
1971
  msgid "Code"
1972
  msgstr ""
1973
 
1974
+ #: ../admin/view/wp-slimstat-reports.php:1097
1975
+ #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1421
1976
  msgid "l-"
1977
  msgstr "Unknown"
1978
 
1979
+ #: ../admin/view/wp-slimstat-reports.php:1114
1980
  msgid "URL"
1981
  msgstr ""
1982
 
1983
+ #: ../admin/view/wp-slimstat-reports.php:1127
1984
  msgid "Referrer"
1985
  msgstr ""
1986
 
1987
+ #: ../admin/view/wp-slimstat-reports.php:1168
1988
+ #: ../admin/view/wp-slimstat-reports.php:1415
1989
+ #: ../admin/view/wp-slimstat-reports.php:1471
1990
+ #: ../admin/view/wp-slimstat-reports.php:1477
1991
+ #: ../admin/view/wp-slimstat-reports.php:1483
1992
+ #: ../admin/view/wp-slimstat-reports.php:1489
1993
+ #: ../admin/view/wp-slimstat-reports.php:1495
1994
+ #: ../admin/view/wp-slimstat-reports.php:1501
1995
+ #: ../admin/view/wp-slimstat-reports.php:1507
1996
+ #: ../admin/view/wp-slimstat-reports.php:1727
1997
  msgid "Hits"
1998
  msgstr ""
1999
 
2000
+ #: ../admin/view/wp-slimstat-reports.php:1342
 
 
 
 
 
 
 
 
 
2001
  msgid "Dataset Size"
2002
  msgstr ""
2003
 
2004
+ #: ../admin/view/wp-slimstat-reports.php:1344
2005
  msgid "Total number of records stored in the database."
2006
  msgstr ""
2007
 
2008
+ #: ../admin/view/wp-slimstat-reports.php:1346
2009
  msgid "DB Size"
2010
  msgstr ""
2011
 
2012
+ #: ../admin/view/wp-slimstat-reports.php:1349
2013
  msgid "Tracking Enabled"
2014
  msgstr ""
2015
 
2016
+ #: ../admin/view/wp-slimstat-reports.php:1352
2017
  msgid "Javascript Mode"
2018
  msgstr ""
2019
 
2020
+ #: ../admin/view/wp-slimstat-reports.php:1355
2021
  msgid "Tracking Browser Caps"
2022
  msgstr ""
2023
 
2024
+ #: ../admin/view/wp-slimstat-reports.php:1358
2025
  msgid "Auto purge"
2026
  msgstr ""
2027
 
2028
+ #: ../admin/view/wp-slimstat-reports.php:1361
2029
  msgid "Oldest pageview"
2030
  msgstr ""
2031
 
2032
+ #: ../admin/view/wp-slimstat-reports.php:1362
2033
  msgid "No visits"
2034
  msgstr ""
2035
 
2036
+ #: ../admin/view/wp-slimstat-reports.php:1366
 
 
 
 
2037
  msgid "Date when the MaxMind Geolocation database was last updated."
2038
  msgstr ""
2039
 
2040
+ #: ../admin/view/wp-slimstat-reports.php:1377
2041
+ #: ../admin/view/wp-slimstat-reports.php:1535
2042
  msgid ""
2043
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2044
  "the tracking code is executed."
2045
  msgstr ""
2046
 
2047
+ #: ../admin/view/wp-slimstat-reports.php:1379
2048
  msgid "Days in Range"
2049
  msgstr ""
2050
 
2051
+ #: ../admin/view/wp-slimstat-reports.php:1382
2052
  msgid "Average Daily Pageviews"
2053
  msgstr ""
2054
 
2055
+ #: ../admin/view/wp-slimstat-reports.php:1384
2056
  msgid ""
2057
  "How many pages have been visited on average every day during the current "
2058
  "period."
2059
  msgstr ""
2060
 
2061
+ #: ../admin/view/wp-slimstat-reports.php:1386
2062
  msgid "From Search Results"
2063
  msgstr ""
2064
 
2065
+ #: ../admin/view/wp-slimstat-reports.php:1388
2066
  msgid ""
2067
  "Visitors who landed on your site after searching for a keyword on Google, "
2068
  "Yahoo, etc."
2069
  msgstr ""
2070
 
2071
+ #: ../admin/view/wp-slimstat-reports.php:1392
2072
  msgid ""
2073
  "Used to differentiate between multiple requests to download a file from one "
2074
  "internet address (IP) and requests originating from many distinct addresses"
2075
  msgstr ""
2076
 
2077
+ #: ../admin/view/wp-slimstat-reports.php:1394
2078
  msgid "Last 30 minutes"
2079
  msgstr ""
2080
 
2081
+ #: ../admin/view/wp-slimstat-reports.php:1433
2082
  msgid ""
2083
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2084
  "multiple times if they perform multiple visits."
2085
  msgstr ""
2086
 
2087
+ #: ../admin/view/wp-slimstat-reports.php:1437
2088
  msgid "It includes only traffic generated by human visitors."
2089
  msgstr ""
2090
 
2091
+ #: ../admin/view/wp-slimstat-reports.php:1439
2092
  msgid "Bounce rate"
2093
  msgstr ""
2094
 
2095
+ #: ../admin/view/wp-slimstat-reports.php:1441
2096
  msgid ""
2097
  "Percentage of single-page visits, i.e. visits in which the person left your "
2098
  "site from the entrance page."
2099
  msgstr ""
2100
 
2101
+ #: ../admin/view/wp-slimstat-reports.php:1443
2102
  msgid "Known visitors"
2103
  msgstr ""
2104
 
2105
+ #: ../admin/view/wp-slimstat-reports.php:1445
2106
  msgid "Visitors who had previously left a comment on your blog."
2107
  msgstr ""
2108
 
2109
+ #: ../admin/view/wp-slimstat-reports.php:1447
2110
  msgid "New visitors"
2111
  msgstr ""
2112
 
2113
+ #: ../admin/view/wp-slimstat-reports.php:1449
2114
  msgid "Human users who visited your site only once."
2115
  msgstr ""
2116
 
2117
+ #: ../admin/view/wp-slimstat-reports.php:1451
2118
  msgid "Bots"
2119
  msgstr ""
2120
 
2121
+ #: ../admin/view/wp-slimstat-reports.php:1454
2122
+ msgid "Pageviews per visit"
2123
  msgstr ""
2124
 
2125
+ #: ../admin/view/wp-slimstat-reports.php:1457
2126
  msgid "Longest visit"
2127
  msgstr ""
2128
 
2129
+ #: ../admin/view/wp-slimstat-reports.php:1458
2130
  msgid "hits"
2131
  msgstr ""
2132
 
2133
+ #: ../admin/view/wp-slimstat-reports.php:1469
2134
  msgid "0 - 30 seconds"
2135
  msgstr ""
2136
 
2137
+ #: ../admin/view/wp-slimstat-reports.php:1475
2138
  msgid "31 - 60 seconds"
2139
  msgstr ""
2140
 
2141
+ #: ../admin/view/wp-slimstat-reports.php:1481
2142
  msgid "1 - 3 minutes"
2143
  msgstr ""
2144
 
2145
+ #: ../admin/view/wp-slimstat-reports.php:1487
2146
  msgid "3 - 5 minutes"
2147
  msgstr ""
2148
 
2149
+ #: ../admin/view/wp-slimstat-reports.php:1493
2150
  msgid "5 - 7 minutes"
2151
  msgstr ""
2152
 
2153
+ #: ../admin/view/wp-slimstat-reports.php:1499
2154
  msgid "7 - 10 minutes"
2155
  msgstr ""
2156
 
2157
+ #: ../admin/view/wp-slimstat-reports.php:1505
2158
  msgid "More than 10 minutes"
2159
  msgstr ""
2160
 
2161
+ #: ../admin/view/wp-slimstat-reports.php:1517
2162
  msgid "Average visit duration"
2163
  msgstr ""
2164
 
2165
+ #: ../admin/view/wp-slimstat-reports.php:1537
2166
  msgid "Unique Referrers"
2167
  msgstr ""
2168
 
2169
+ #: ../admin/view/wp-slimstat-reports.php:1539
2170
  msgid ""
2171
  "A referrer (or referring site) is the site that a visitor previously visited "
2172
  "before following a link to your site."
2173
  msgstr ""
2174
 
2175
+ #: ../admin/view/wp-slimstat-reports.php:1541
2176
  msgid "Direct Pageviews"
2177
  msgstr ""
2178
 
2179
+ #: ../admin/view/wp-slimstat-reports.php:1543
2180
  msgid ""
2181
  "Visitors who visited the site by typing the URL directly into their browser. "
2182
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
2184
  "documents that don't include tracking variables."
2185
  msgstr ""
2186
 
2187
+ #: ../admin/view/wp-slimstat-reports.php:1545
2188
  msgid "From a search result"
2189
  msgstr ""
2190
 
2191
+ #: ../admin/view/wp-slimstat-reports.php:1547
2192
  msgid ""
2193
  "Visitors who came to your site via searches on Google or some other search "
2194
  "engine."
2195
  msgstr ""
2196
 
2197
+ #: ../admin/view/wp-slimstat-reports.php:1549
2198
  msgid "Unique Landing Pages"
2199
  msgstr ""
2200
 
2201
+ #: ../admin/view/wp-slimstat-reports.php:1551
2202
  msgid ""
2203
  "The first page that a user views during a session. This is also known as the "
2204
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
2206
  "a landing page."
2207
  msgstr ""
2208
 
2209
+ #: ../admin/view/wp-slimstat-reports.php:1553
2210
  msgid "Bounce Pages"
2211
  msgstr ""
2212
 
2213
+ #: ../admin/view/wp-slimstat-reports.php:1555
2214
  msgid "Number of single page visits to your site over the selected period."
2215
  msgstr ""
2216
 
2217
+ #: ../admin/view/wp-slimstat-reports.php:1557
2218
  msgid "New Visitors Rate"
2219
  msgstr ""
2220
 
2221
+ #: ../admin/view/wp-slimstat-reports.php:1559
2222
  msgid ""
2223
  "Percentage of single page visits, i.e. visits in which the person left your "
2224
  "site from the entrance page."
2225
  msgstr ""
2226
 
2227
+ #: ../admin/view/wp-slimstat-reports.php:1561
2228
  msgid "Currently from search engines"
2229
  msgstr ""
2230
 
2231
+ #: ../admin/view/wp-slimstat-reports.php:1563
2232
  msgid ""
2233
  "Visitors who visited the site in the last 5 minutes coming from a search "
2234
  "engine."
2235
  msgstr ""
2236
 
2237
+ #: ../admin/view/wp-slimstat-reports.php:1633
2238
  msgid "Number of pages in your site included in Google's index."
2239
  msgstr ""
2240
 
2241
+ #: ../admin/view/wp-slimstat-reports.php:1634
2242
  msgid "Google Index"
2243
  msgstr ""
2244
 
2245
+ #: ../admin/view/wp-slimstat-reports.php:1635
2246
  msgid "Number of pages, according to Google, that link back to your site."
2247
  msgstr ""
2248
 
2249
+ #: ../admin/view/wp-slimstat-reports.php:1636
2250
  msgid "Google Backlinks"
2251
  msgstr ""
2252
 
2253
+ #: ../admin/view/wp-slimstat-reports.php:1637
2254
  msgid ""
2255
  "How many times the Facebook Like button has been approximately clicked on "
2256
  "your site."
2257
  msgstr ""
2258
 
2259
+ #: ../admin/view/wp-slimstat-reports.php:1638
2260
  msgid "Facebook Likes"
2261
  msgstr ""
2262
 
2263
+ #: ../admin/view/wp-slimstat-reports.php:1639
2264
  msgid ""
2265
  "How many times your site has been shared by someone on the social network."
2266
  msgstr ""
2267
 
2268
+ #: ../admin/view/wp-slimstat-reports.php:1640
2269
  msgid "Facebook Shares"
2270
  msgstr ""
2271
 
2272
+ #: ../admin/view/wp-slimstat-reports.php:1641
2273
  msgid "How many times links to your website have been clicked on Facebook."
2274
  msgstr ""
2275
 
2276
+ #: ../admin/view/wp-slimstat-reports.php:1642
2277
  msgid "Facebook Clicks"
2278
  msgstr ""
2279
 
2280
+ #: ../admin/view/wp-slimstat-reports.php:1643
2281
  msgid ""
2282
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2283
  "traffic data."
2284
  msgstr ""
2285
 
2286
+ #: ../admin/view/wp-slimstat-reports.php:1644
2287
  msgid "Alexa World Rank"
2288
  msgstr ""
2289
 
2290
+ #: ../admin/view/wp-slimstat-reports.php:1645
2291
  msgid "Alexa Country Rank"
2292
  msgstr ""
2293
 
2294
+ #: ../admin/view/wp-slimstat-reports.php:1646
2295
  msgid "Alexa Popularity"
2296
  msgstr ""
2297
 
2298
+ #: ../admin/view/wp-slimstat-reports.php:1657
2299
  msgid "Content Items"
2300
  msgstr ""
2301
 
2302
+ #: ../admin/view/wp-slimstat-reports.php:1659
2303
  msgid ""
2304
  "This value includes not only posts, but also custom post types, regardless "
2305
  "of their status"
2306
  msgstr ""
2307
 
2308
+ #: ../admin/view/wp-slimstat-reports.php:1661
2309
  msgid "Posts"
2310
  msgstr ""
2311
 
2312
+ #: ../admin/view/wp-slimstat-reports.php:1664
2313
  msgid "Pages"
2314
  msgstr ""
2315
 
2316
+ #: ../admin/view/wp-slimstat-reports.php:1667
2317
  msgid "Attachments"
2318
  msgstr ""
2319
 
2320
+ #: ../admin/view/wp-slimstat-reports.php:1670
2321
  msgid "Revisions"
2322
  msgstr ""
2323
 
2324
+ #: ../admin/view/wp-slimstat-reports.php:1673
2325
  msgid "Comments"
2326
  msgstr ""
2327
 
2328
+ #: ../admin/view/wp-slimstat-reports.php:1676
2329
  msgid "Avg Comments per Post"
2330
  msgstr ""
2331
 
2332
+ #: ../admin/view/wp-slimstat-reports.php:1679
2333
  msgid "Avg Server Latency"
2334
  msgstr ""
2335
 
2336
+ #: ../admin/view/wp-slimstat-reports.php:1681
2337
  msgid ""
2338
  "Latency is the amount of time it takes for the host server to receive and "
2339
  "process a request for a page object. The amount of latency depends largely "
2340
  "on how far away the user is from the server."
2341
  msgstr ""
2342
 
2343
+ #: ../admin/view/wp-slimstat-reports.php:1724
2344
  msgid "Coordinates"
2345
  msgstr ""
2346
 
2347
+ #: ../admin/view/wp-slimstat-reports.php:1724
2348
  msgid "Date"
2349
  msgstr ""
2350
 
2351
+ #: ../admin/view/wp-slimstat-reports.php:1761
2352
  msgid "Error contacting the GetSocial endpoint."
2353
  msgstr ""
2354
 
2355
+ #: ../admin/view/wp-slimstat-reports.php:1769
2356
  msgid "Error decoding the GetSocial payload."
2357
  msgstr ""
2358
 
2359
+ #: ../admin/view/wp-slimstat-reports.php:1801
2360
  msgid ""
2361
  "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2362
  ">social media metrics and identify your top performing posts.<br/> <a "
2364
  msgstr ""
2365
 
2366
  # Unknown
2367
+ #: ../admin/view/wp-slimstat-reports.php:1811
2368
  msgid "c-xx"
2369
  msgstr "Unknown"
2370
 
2371
  # Afghanistan
2372
+ #: ../admin/view/wp-slimstat-reports.php:1811
2373
  msgid "c-af"
2374
  msgstr "Afghanistan"
2375
 
2376
  # Åland Islands
2377
+ #: ../admin/view/wp-slimstat-reports.php:1811
2378
  msgid "c-ax"
2379
  msgstr "Aland Islands"
2380
 
2381
  # Albania
2382
+ #: ../admin/view/wp-slimstat-reports.php:1811
2383
  msgid "c-al"
2384
  msgstr "Albania"
2385
 
2386
  # Algeria
2387
+ #: ../admin/view/wp-slimstat-reports.php:1811
2388
  msgid "c-dz"
2389
  msgstr "Algeria"
2390
 
2391
  # Andorra
2392
+ #: ../admin/view/wp-slimstat-reports.php:1811
2393
  msgid "c-ad"
2394
  msgstr "Andorra"
2395
 
2396
  # Angola
2397
+ #: ../admin/view/wp-slimstat-reports.php:1811
2398
  msgid "c-ao"
2399
  msgstr "Angola"
2400
 
2401
  # Anguilla
2402
+ #: ../admin/view/wp-slimstat-reports.php:1811
2403
  msgid "c-ai"
2404
  msgstr "Anguilla"
2405
 
2406
  # Antigua and Barbuda
2407
+ #: ../admin/view/wp-slimstat-reports.php:1811
2408
  msgid "c-ag"
2409
  msgstr "Antigua and Barbuda"
2410
 
2411
  # Argentina
2412
+ #: ../admin/view/wp-slimstat-reports.php:1811
2413
  msgid "c-ar"
2414
  msgstr "Argentina"
2415
 
2416
  # Armenia
2417
+ #: ../admin/view/wp-slimstat-reports.php:1811
2418
  msgid "c-am"
2419
  msgstr "Armenia"
2420
 
2421
  # Aruba
2422
+ #: ../admin/view/wp-slimstat-reports.php:1811
2423
  msgid "c-aw"
2424
  msgstr "Aruba"
2425
 
2426
  # Australia
2427
+ #: ../admin/view/wp-slimstat-reports.php:1811
2428
  msgid "c-au"
2429
  msgstr "Australia"
2430
 
2431
  # Austria
2432
+ #: ../admin/view/wp-slimstat-reports.php:1811
2433
  msgid "c-at"
2434
  msgstr "Austria"
2435
 
2436
  # Azerbaijan
2437
+ #: ../admin/view/wp-slimstat-reports.php:1811
2438
  msgid "c-az"
2439
  msgstr "Azerbaijan"
2440
 
2441
  # Bahamas
2442
+ #: ../admin/view/wp-slimstat-reports.php:1811
2443
  msgid "c-bs"
2444
  msgstr "Bahamas"
2445
 
2446
  # Bahrain
2447
+ #: ../admin/view/wp-slimstat-reports.php:1811
2448
  msgid "c-bh"
2449
  msgstr "Bahrain"
2450
 
2451
  # Bangladesh
2452
+ #: ../admin/view/wp-slimstat-reports.php:1811
2453
  msgid "c-bd"
2454
  msgstr "Bangladesh"
2455
 
2456
  # Barbados
2457
+ #: ../admin/view/wp-slimstat-reports.php:1811
2458
  msgid "c-bb"
2459
  msgstr "Barbados"
2460
 
2461
  # Belarus
2462
+ #: ../admin/view/wp-slimstat-reports.php:1811
2463
  msgid "c-by"
2464
  msgstr "Belarus"
2465
 
2466
  # Belgium
2467
+ #: ../admin/view/wp-slimstat-reports.php:1811
2468
  msgid "c-be"
2469
  msgstr "Belgium"
2470
 
2471
  # Belize
2472
+ #: ../admin/view/wp-slimstat-reports.php:1811
2473
  msgid "c-bz"
2474
  msgstr "Belize"
2475
 
2476
  # Benin
2477
+ #: ../admin/view/wp-slimstat-reports.php:1811
2478
  msgid "c-bj"
2479
  msgstr "Benin"
2480
 
2481
  # Bermuda
2482
+ #: ../admin/view/wp-slimstat-reports.php:1811
2483
  msgid "c-bm"
2484
  msgstr "Bermuda"
2485
 
2486
  # Bhutan
2487
+ #: ../admin/view/wp-slimstat-reports.php:1811
2488
  msgid "c-bt"
2489
  msgstr "Bhutan"
2490
 
2491
  # Bolivia
2492
+ #: ../admin/view/wp-slimstat-reports.php:1811
2493
  msgid "c-bo"
2494
  msgstr "Bolivia"
2495
 
2496
  # Bosnia and Herzegovina
2497
+ #: ../admin/view/wp-slimstat-reports.php:1811
2498
  msgid "c-ba"
2499
  msgstr "Bosnia and Herzegovina"
2500
 
2501
  # Botswana
2502
+ #: ../admin/view/wp-slimstat-reports.php:1811
2503
  msgid "c-bw"
2504
  msgstr "Botswana"
2505
 
2506
  # Brazil
2507
+ #: ../admin/view/wp-slimstat-reports.php:1811
2508
  msgid "c-br"
2509
  msgstr "Brazil"
2510
 
2511
  # Brunei Darussalam
2512
+ #: ../admin/view/wp-slimstat-reports.php:1811
2513
  msgid "c-bn"
2514
  msgstr "Brunei Darussalam"
2515
 
2516
  # Bulgaria
2517
+ #: ../admin/view/wp-slimstat-reports.php:1811
2518
  msgid "c-bg"
2519
  msgstr "Bulgaria"
2520
 
2521
  # Burkina Faso
2522
+ #: ../admin/view/wp-slimstat-reports.php:1811
2523
  msgid "c-bf"
2524
  msgstr "Burkina Faso"
2525
 
2526
  # Burundi
2527
+ #: ../admin/view/wp-slimstat-reports.php:1811
2528
  msgid "c-bi"
2529
  msgstr "Burundi"
2530
 
2531
  # Cambodia
2532
+ #: ../admin/view/wp-slimstat-reports.php:1811
2533
  msgid "c-kh"
2534
  msgstr "Cambodia"
2535
 
2536
  # Cameroon
2537
+ #: ../admin/view/wp-slimstat-reports.php:1811
2538
  msgid "c-cm"
2539
  msgstr "Cameroon"
2540
 
2541
  # Canada
2542
+ #: ../admin/view/wp-slimstat-reports.php:1811
2543
  msgid "c-ca"
2544
  msgstr "Canada"
2545
 
2546
  # Cape Verde
2547
+ #: ../admin/view/wp-slimstat-reports.php:1811
2548
  msgid "c-cv"
2549
  msgstr "Cape Verde"
2550
 
2551
  # Cayman Islands
2552
+ #: ../admin/view/wp-slimstat-reports.php:1811
2553
  msgid "c-ky"
2554
  msgstr "Cayman Islands"
2555
 
2556
  # Central African Republic
2557
+ #: ../admin/view/wp-slimstat-reports.php:1811
2558
  msgid "c-cf"
2559
  msgstr "Central African Republic"
2560
 
2561
  # Chad
2562
+ #: ../admin/view/wp-slimstat-reports.php:1811
2563
  msgid "c-td"
2564
  msgstr "Chad"
2565
 
2566
  # Chile
2567
+ #: ../admin/view/wp-slimstat-reports.php:1811
2568
  msgid "c-cl"
2569
  msgstr "Chile"
2570
 
2571
  # China
2572
+ #: ../admin/view/wp-slimstat-reports.php:1811
2573
  msgid "c-cn"
2574
  msgstr "China"
2575
 
2576
  # Colombia
2577
+ #: ../admin/view/wp-slimstat-reports.php:1811
2578
  msgid "c-co"
2579
  msgstr "Colombia"
2580
 
2581
  # Comoros
2582
+ #: ../admin/view/wp-slimstat-reports.php:1811
2583
  msgid "c-km"
2584
  msgstr "Comoros"
2585
 
2586
  # Congo
2587
+ #: ../admin/view/wp-slimstat-reports.php:1811
2588
  msgid "c-cg"
2589
  msgstr "Congo"
2590
 
2591
  # The Democratic Republic of the Congo
2592
+ #: ../admin/view/wp-slimstat-reports.php:1811
2593
  msgid "c-cd"
2594
  msgstr "The Democratic Republic of the Congo"
2595
 
2596
  # Costa Rica
2597
+ #: ../admin/view/wp-slimstat-reports.php:1811
2598
  msgid "c-cr"
2599
  msgstr "Costa Rica"
2600
 
2601
  # Côte d'Ivoire
2602
+ #: ../admin/view/wp-slimstat-reports.php:1811
2603
  msgid "c-ci"
2604
  msgstr "Côte d'Ivoire"
2605
 
2606
  # Croatia
2607
+ #: ../admin/view/wp-slimstat-reports.php:1811
2608
  msgid "c-hr"
2609
  msgstr "Croatia"
2610
 
2611
  # Cuba
2612
+ #: ../admin/view/wp-slimstat-reports.php:1811
2613
  msgid "c-cu"
2614
  msgstr "Cuba"
2615
 
2616
  # Cyprus
2617
+ #: ../admin/view/wp-slimstat-reports.php:1811
2618
  msgid "c-cy"
2619
  msgstr "Cyprus"
2620
 
2621
  # Czech Republic
2622
+ #: ../admin/view/wp-slimstat-reports.php:1811
2623
  msgid "c-cz"
2624
  msgstr "Czech Republic"
2625
 
2626
  # Denmark
2627
+ #: ../admin/view/wp-slimstat-reports.php:1811
2628
  msgid "c-dk"
2629
  msgstr "Denmark"
2630
 
2631
  # Djibouti
2632
+ #: ../admin/view/wp-slimstat-reports.php:1811
2633
  msgid "c-dj"
2634
  msgstr "Djibouti"
2635
 
2636
  # Dominica
2637
+ #: ../admin/view/wp-slimstat-reports.php:1811
2638
  msgid "c-dm"
2639
  msgstr "Dominica"
2640
 
2641
  # Dominican Republic
2642
+ #: ../admin/view/wp-slimstat-reports.php:1811
2643
  msgid "c-do"
2644
  msgstr "Dominican Republic"
2645
 
2646
  # Ecuador
2647
+ #: ../admin/view/wp-slimstat-reports.php:1811
2648
  msgid "c-ec"
2649
  msgstr "Ecuador"
2650
 
2651
  # Egypt
2652
+ #: ../admin/view/wp-slimstat-reports.php:1811
2653
  msgid "c-eg"
2654
  msgstr "Egypt"
2655
 
2656
  # El Salvador
2657
+ #: ../admin/view/wp-slimstat-reports.php:1811
2658
  msgid "c-sv"
2659
  msgstr "El Salvador"
2660
 
2661
  # Equatorial Guinea
2662
+ #: ../admin/view/wp-slimstat-reports.php:1811
2663
  msgid "c-gq"
2664
  msgstr "Equatorial Guinea"
2665
 
2666
  # Eritrea
2667
+ #: ../admin/view/wp-slimstat-reports.php:1811
2668
  msgid "c-er"
2669
  msgstr "Eritrea"
2670
 
2671
  # Estonia
2672
+ #: ../admin/view/wp-slimstat-reports.php:1811
2673
  msgid "c-ee"
2674
  msgstr "Estonia"
2675
 
2676
  # Ethiopia
2677
+ #: ../admin/view/wp-slimstat-reports.php:1811
2678
  msgid "c-et"
2679
  msgstr "Ethiopia"
2680
 
2681
  # Faroe Islands
2682
+ #: ../admin/view/wp-slimstat-reports.php:1811
2683
  msgid "c-fo"
2684
  msgstr "Faroe Islands"
2685
 
2686
  # Falkland Islands (Malvinas)
2687
+ #: ../admin/view/wp-slimstat-reports.php:1811
2688
  msgid "c-fk"
2689
  msgstr "Falkland Islands (Malvinas)"
2690
 
2691
  # Fiji
2692
+ #: ../admin/view/wp-slimstat-reports.php:1811
2693
  msgid "c-fj"
2694
  msgstr "Fiji"
2695
 
2696
  # Finland
2697
+ #: ../admin/view/wp-slimstat-reports.php:1811
2698
  msgid "c-fi"
2699
  msgstr "Finland"
2700
 
2701
  # France
2702
+ #: ../admin/view/wp-slimstat-reports.php:1811
2703
  msgid "c-fr"
2704
  msgstr "France"
2705
 
2706
  # French Guiana
2707
+ #: ../admin/view/wp-slimstat-reports.php:1811
2708
  msgid "c-gf"
2709
  msgstr "French Guiana"
2710
 
2711
  # Gabon
2712
+ #: ../admin/view/wp-slimstat-reports.php:1811
2713
  msgid "c-ga"
2714
  msgstr "Gabon"
2715
 
2716
  # Gambia
2717
+ #: ../admin/view/wp-slimstat-reports.php:1811
2718
  msgid "c-gm"
2719
  msgstr "Gambia"
2720
 
2721
  # Georgia
2722
+ #: ../admin/view/wp-slimstat-reports.php:1811
2723
  msgid "c-ge"
2724
  msgstr "Georgia"
2725
 
2726
  # Germany
2727
+ #: ../admin/view/wp-slimstat-reports.php:1811
2728
  msgid "c-de"
2729
  msgstr "Germany"
2730
 
2731
  # Ghana
2732
+ #: ../admin/view/wp-slimstat-reports.php:1811
2733
  msgid "c-gh"
2734
  msgstr "Ghana"
2735
 
2736
  # Greece
2737
+ #: ../admin/view/wp-slimstat-reports.php:1811
2738
  msgid "c-gr"
2739
  msgstr "Greece"
2740
 
2741
  # Greenland
2742
+ #: ../admin/view/wp-slimstat-reports.php:1811
2743
  msgid "c-gl"
2744
  msgstr "Greenland"
2745
 
2746
  # Grenada
2747
+ #: ../admin/view/wp-slimstat-reports.php:1811
2748
  msgid "c-gd"
2749
  msgstr "Grenada"
2750
 
2751
  # Guadeloupe
2752
+ #: ../admin/view/wp-slimstat-reports.php:1811
2753
  msgid "c-gp"
2754
  msgstr "Guadeloupe"
2755
 
2756
  # Guatemala
2757
+ #: ../admin/view/wp-slimstat-reports.php:1811
2758
  msgid "c-gt"
2759
  msgstr "Guatemala"
2760
 
2761
  # Guinea
2762
+ #: ../admin/view/wp-slimstat-reports.php:1811
2763
  msgid "c-gn"
2764
  msgstr "Guinea"
2765
 
2766
  # Guinea-Bissau
2767
+ #: ../admin/view/wp-slimstat-reports.php:1811
2768
  msgid "c-gw"
2769
  msgstr "Guinea-Bissau"
2770
 
2771
  # Guyana
2772
+ #: ../admin/view/wp-slimstat-reports.php:1811
2773
  msgid "c-gy"
2774
  msgstr "Guyana"
2775
 
2776
  # Haiti
2777
+ #: ../admin/view/wp-slimstat-reports.php:1811
2778
  msgid "c-ht"
2779
  msgstr "Haiti"
2780
 
2781
  # Honduras
2782
+ #: ../admin/view/wp-slimstat-reports.php:1811
2783
  msgid "c-hn"
2784
  msgstr "Honduras"
2785
 
2786
  # Hong Kong
2787
+ #: ../admin/view/wp-slimstat-reports.php:1811
2788
  msgid "c-hk"
2789
  msgstr "Hong Kong"
2790
 
2791
  # Hungary
2792
+ #: ../admin/view/wp-slimstat-reports.php:1811
2793
  msgid "c-hu"
2794
  msgstr "Hungary"
2795
 
2796
  # Iceland
2797
+ #: ../admin/view/wp-slimstat-reports.php:1811
2798
  msgid "c-is"
2799
  msgstr "Iceland"
2800
 
2801
  # India
2802
+ #: ../admin/view/wp-slimstat-reports.php:1811
2803
  msgid "c-in"
2804
  msgstr "India"
2805
 
2806
  # Indonesia
2807
+ #: ../admin/view/wp-slimstat-reports.php:1811
2808
  msgid "c-id"
2809
  msgstr "Indonesia"
2810
 
2811
  # Islamic Republic of Iran
2812
+ #: ../admin/view/wp-slimstat-reports.php:1811
2813
  msgid "c-ir"
2814
  msgstr "Islamic Republic of Iran"
2815
 
2816
  # Iraq
2817
+ #: ../admin/view/wp-slimstat-reports.php:1811
2818
  msgid "c-iq"
2819
  msgstr "Iraq"
2820
 
2821
  # Ireland
2822
+ #: ../admin/view/wp-slimstat-reports.php:1811
2823
  msgid "c-ie"
2824
  msgstr "Ireland"
2825
 
2826
  # Israel
2827
+ #: ../admin/view/wp-slimstat-reports.php:1811
2828
  msgid "c-il"
2829
  msgstr "Israel"
2830
 
2831
  # Italy
2832
+ #: ../admin/view/wp-slimstat-reports.php:1811
2833
  msgid "c-it"
2834
  msgstr "Italy"
2835
 
2836
  # Jamaica
2837
+ #: ../admin/view/wp-slimstat-reports.php:1811
2838
  msgid "c-jm"
2839
  msgstr "Jamaica"
2840
 
2841
  # Japan
2842
+ #: ../admin/view/wp-slimstat-reports.php:1811
2843
  msgid "c-jp"
2844
  msgstr "Japan"
2845
 
2846
  # Jordan
2847
+ #: ../admin/view/wp-slimstat-reports.php:1811
2848
  msgid "c-jo"
2849
  msgstr "Jordan"
2850
 
2851
  # Kazakhstan
2852
+ #: ../admin/view/wp-slimstat-reports.php:1811
2853
  msgid "c-kz"
2854
  msgstr "Kazakhstan"
2855
 
2856
  # Kenya
2857
+ #: ../admin/view/wp-slimstat-reports.php:1811
2858
  msgid "c-ke"
2859
  msgstr "Kenya"
2860
 
2861
  # Nauru
2862
+ #: ../admin/view/wp-slimstat-reports.php:1811
2863
  msgid "c-nr"
2864
  msgstr "Nauru"
2865
 
2866
  # Democratic People's Republic of Korea
2867
+ #: ../admin/view/wp-slimstat-reports.php:1811
2868
  msgid "c-kp"
2869
  msgstr "Democratic People's Republic of Korea"
2870
 
2871
  # Republic of Korea
2872
+ #: ../admin/view/wp-slimstat-reports.php:1811
2873
  msgid "c-kr"
2874
  msgstr "Republic of Korea"
2875
 
2876
+ #: ../admin/view/wp-slimstat-reports.php:1811
2877
  msgid "c-kv"
2878
  msgstr "Kosovo"
2879
 
2880
  # Kuwait
2881
+ #: ../admin/view/wp-slimstat-reports.php:1811
2882
  msgid "c-kw"
2883
  msgstr "Kuwait"
2884
 
2885
  # Kyrgyzstan
2886
+ #: ../admin/view/wp-slimstat-reports.php:1811
2887
  msgid "c-kg"
2888
  msgstr "Kyrgyzstan"
2889
 
2890
  # Lao People's Democratic Republic
2891
+ #: ../admin/view/wp-slimstat-reports.php:1811
2892
  msgid "c-la"
2893
  msgstr "Lao People's Democratic Republic"
2894
 
2895
  # Latvia
2896
+ #: ../admin/view/wp-slimstat-reports.php:1811
2897
  msgid "c-lv"
2898
  msgstr "Latvia"
2899
 
2900
  # Lebanon
2901
+ #: ../admin/view/wp-slimstat-reports.php:1811
2902
  msgid "c-lb"
2903
  msgstr "Lebanon"
2904
 
2905
  # Lesotho
2906
+ #: ../admin/view/wp-slimstat-reports.php:1811
2907
  msgid "c-ls"
2908
  msgstr "Lesotho"
2909
 
2910
  # Liberia
2911
+ #: ../admin/view/wp-slimstat-reports.php:1811
2912
  msgid "c-lr"
2913
  msgstr "Liberia"
2914
 
2915
  # Libyan Arab Jamahiriya
2916
+ #: ../admin/view/wp-slimstat-reports.php:1811
2917
  msgid "c-ly"
2918
  msgstr "Libyan Arab Jamahiriya"
2919
 
2920
  # Liechtenstein
2921
+ #: ../admin/view/wp-slimstat-reports.php:1811
2922
  msgid "c-li"
2923
  msgstr "Liechtenstein"
2924
 
2925
  # Lithuania
2926
+ #: ../admin/view/wp-slimstat-reports.php:1811
2927
  msgid "c-lt"
2928
  msgstr "Lithuania"
2929
 
2930
  # Luxembourg
2931
+ #: ../admin/view/wp-slimstat-reports.php:1811
2932
  msgid "c-lu"
2933
  msgstr "Luxembourg"
2934
 
2935
  # The Former Yugoslav Republic of Macedonia
2936
+ #: ../admin/view/wp-slimstat-reports.php:1811
2937
  msgid "c-mk"
2938
  msgstr "The Former Yugoslav Republic of Macedonia"
2939
 
2940
  # Madagascar
2941
+ #: ../admin/view/wp-slimstat-reports.php:1811
2942
  msgid "c-mg"
2943
  msgstr "Madagascar"
2944
 
2945
  # Malawi
2946
+ #: ../admin/view/wp-slimstat-reports.php:1811
2947
  msgid "c-mw"
2948
  msgstr "Malawi"
2949
 
2950
  # Malaysia
2951
+ #: ../admin/view/wp-slimstat-reports.php:1811
2952
  msgid "c-my"
2953
  msgstr "Malaysia"
2954
 
2955
  # Mali
2956
+ #: ../admin/view/wp-slimstat-reports.php:1811
2957
  msgid "c-ml"
2958
  msgstr "Mali"
2959
 
2960
  # Malta
2961
+ #: ../admin/view/wp-slimstat-reports.php:1811
2962
  msgid "c-mt"
2963
  msgstr "Malta"
2964
 
2965
  # Martinique
2966
+ #: ../admin/view/wp-slimstat-reports.php:1811
2967
  msgid "c-mq"
2968
  msgstr "Martinique"
2969
 
2970
  # Mauritania
2971
+ #: ../admin/view/wp-slimstat-reports.php:1811
2972
  msgid "c-mr"
2973
  msgstr "Mauritania"
2974
 
2975
  # Mauritius
2976
+ #: ../admin/view/wp-slimstat-reports.php:1811
2977
  msgid "c-mu"
2978
  msgstr "Mauritius"
2979
 
2980
  # Mexico
2981
+ #: ../admin/view/wp-slimstat-reports.php:1811
2982
  msgid "c-mx"
2983
  msgstr "Mexico"
2984
 
2985
  # Moldova
2986
+ #: ../admin/view/wp-slimstat-reports.php:1811
2987
  msgid "c-md"
2988
  msgstr "Moldova"
2989
 
2990
  # Mongolia
2991
+ #: ../admin/view/wp-slimstat-reports.php:1811
2992
  msgid "c-mn"
2993
  msgstr "Mongolia"
2994
 
2995
  # Montenegro
2996
+ #: ../admin/view/wp-slimstat-reports.php:1811
2997
  msgid "c-me"
2998
  msgstr "Montenegro"
2999
 
3000
  # Montserrat
3001
+ #: ../admin/view/wp-slimstat-reports.php:1811
3002
  msgid "c-ms"
3003
  msgstr "Montserrat"
3004
 
3005
  # Morocco
3006
+ #: ../admin/view/wp-slimstat-reports.php:1811
3007
  msgid "c-ma"
3008
  msgstr "Morocco"
3009
 
3010
  # Mozambique
3011
+ #: ../admin/view/wp-slimstat-reports.php:1811
3012
  msgid "c-mz"
3013
  msgstr "Mozambique"
3014
 
3015
  # Myanmar
3016
+ #: ../admin/view/wp-slimstat-reports.php:1811
3017
  msgid "c-mm"
3018
  msgstr "Myanmar"
3019
 
3020
  # Namibia
3021
+ #: ../admin/view/wp-slimstat-reports.php:1811
3022
  msgid "c-na"
3023
  msgstr "Namibia"
3024
 
3025
  # Nepal
3026
+ #: ../admin/view/wp-slimstat-reports.php:1811
3027
  msgid "c-np"
3028
  msgstr "Nepal"
3029
 
3030
  # Netherlands
3031
+ #: ../admin/view/wp-slimstat-reports.php:1811
3032
  msgid "c-nl"
3033
  msgstr "Netherlands"
3034
 
3035
  # New Caledonia
3036
+ #: ../admin/view/wp-slimstat-reports.php:1811
3037
  msgid "c-nc"
3038
  msgstr "New Caledonia"
3039
 
3040
  # New Zealand
3041
+ #: ../admin/view/wp-slimstat-reports.php:1811
3042
  msgid "c-nz"
3043
  msgstr "New Zealand"
3044
 
3045
  # Nicaragua
3046
+ #: ../admin/view/wp-slimstat-reports.php:1811
3047
  msgid "c-ni"
3048
  msgstr "Nicaragua"
3049
 
3050
  # Niger
3051
+ #: ../admin/view/wp-slimstat-reports.php:1811
3052
  msgid "c-ne"
3053
  msgstr "Niger"
3054
 
3055
  # Nigeria
3056
+ #: ../admin/view/wp-slimstat-reports.php:1811
3057
  msgid "c-ng"
3058
  msgstr "Nigeria"
3059
 
3060
  # Norway
3061
+ #: ../admin/view/wp-slimstat-reports.php:1811
3062
  msgid "c-no"
3063
  msgstr "Norway"
3064
 
3065
  # Oman
3066
+ #: ../admin/view/wp-slimstat-reports.php:1811
3067
  msgid "c-om"
3068
  msgstr "Oman"
3069
 
3070
  # Pakistan
3071
+ #: ../admin/view/wp-slimstat-reports.php:1811
3072
  msgid "c-pk"
3073
  msgstr "Pakistan"
3074
 
3075
  # Palau
3076
+ #: ../admin/view/wp-slimstat-reports.php:1811
3077
  msgid "c-pw"
3078
  msgstr "Palau"
3079
 
3080
  # Occupied Palestinian Territory
3081
+ #: ../admin/view/wp-slimstat-reports.php:1811
3082
  msgid "c-ps"
3083
  msgstr "Occupied Palestinian Territory"
3084
 
3085
  # Panama
3086
+ #: ../admin/view/wp-slimstat-reports.php:1811
3087
  msgid "c-pa"
3088
  msgstr "Panama"
3089
 
3090
  # Papua New Guinea
3091
+ #: ../admin/view/wp-slimstat-reports.php:1811
3092
  msgid "c-pg"
3093
  msgstr "Papua New Guinea"
3094
 
3095
  # Paraguay
3096
+ #: ../admin/view/wp-slimstat-reports.php:1811
3097
  msgid "c-py"
3098
  msgstr "Paraguay"
3099
 
3100
  # Peru
3101
+ #: ../admin/view/wp-slimstat-reports.php:1811
3102
  msgid "c-pe"
3103
  msgstr "Peru"
3104
 
3105
  # Philippines
3106
+ #: ../admin/view/wp-slimstat-reports.php:1811
3107
  msgid "c-ph"
3108
  msgstr "Philippines"
3109
 
3110
  # Poland
3111
+ #: ../admin/view/wp-slimstat-reports.php:1811
3112
  msgid "c-pl"
3113
  msgstr "Poland"
3114
 
3115
  # Portugal
3116
+ #: ../admin/view/wp-slimstat-reports.php:1811
3117
  msgid "c-pt"
3118
  msgstr "Portugal"
3119
 
3120
  # Puerto Rico
3121
+ #: ../admin/view/wp-slimstat-reports.php:1811
3122
  msgid "c-pr"
3123
  msgstr "Puerto Rico"
3124
 
3125
  # Qatar
3126
+ #: ../admin/view/wp-slimstat-reports.php:1811
3127
  msgid "c-qa"
3128
  msgstr "Qatar"
3129
 
3130
  # Réunion
3131
+ #: ../admin/view/wp-slimstat-reports.php:1811
3132
  msgid "c-re"
3133
  msgstr "Réunion"
3134
 
3135
  # Romania
3136
+ #: ../admin/view/wp-slimstat-reports.php:1811
3137
  msgid "c-ro"
3138
  msgstr "Romania"
3139
 
3140
  # Russian Federation
3141
+ #: ../admin/view/wp-slimstat-reports.php:1811
3142
  msgid "c-ru"
3143
  msgstr "Russian Federation"
3144
 
3145
  # Rwanda
3146
+ #: ../admin/view/wp-slimstat-reports.php:1811
3147
  msgid "c-rw"
3148
  msgstr "Rwanda"
3149
 
3150
  # Saint Kitts and Nevis
3151
+ #: ../admin/view/wp-slimstat-reports.php:1811
3152
  msgid "c-kn"
3153
  msgstr "Saint Kitts and Nevis"
3154
 
3155
  # Saint Lucia
3156
+ #: ../admin/view/wp-slimstat-reports.php:1811
3157
  msgid "c-lc"
3158
  msgstr "Saint Lucia"
3159
 
3160
  # Saint Martin
3161
+ #: ../admin/view/wp-slimstat-reports.php:1811
3162
  msgid "c-mf"
3163
  msgstr "Saint Martin"
3164
 
3165
  # Saint Vincent and the Grenadines
3166
+ #: ../admin/view/wp-slimstat-reports.php:1811
3167
  msgid "c-vc"
3168
  msgstr "Saint Vincent and the Grenadines"
3169
 
3170
  # Samoa
3171
+ #: ../admin/view/wp-slimstat-reports.php:1811
3172
  msgid "c-ws"
3173
  msgstr "Samoa"
3174
 
3175
  # Sao Tome and Principe
3176
+ #: ../admin/view/wp-slimstat-reports.php:1811
3177
  msgid "c-st"
3178
  msgstr "Sao Tome and Principe"
3179
 
3180
  # Saudi Arabia
3181
+ #: ../admin/view/wp-slimstat-reports.php:1811
3182
  msgid "c-sa"
3183
  msgstr "Saudi Arabia"
3184
 
3185
  # Senegal
3186
+ #: ../admin/view/wp-slimstat-reports.php:1811
3187
  msgid "c-sn"
3188
  msgstr "Senegal"
3189
 
3190
  # Serbia
3191
+ #: ../admin/view/wp-slimstat-reports.php:1811
3192
  msgid "c-rs"
3193
  msgstr "Serbia"
3194
 
3195
  # Sierra Leone
3196
+ #: ../admin/view/wp-slimstat-reports.php:1811
3197
  msgid "c-sl"
3198
  msgstr "Sierra Leone"
3199
 
3200
  # Singapore
3201
+ #: ../admin/view/wp-slimstat-reports.php:1811
3202
  msgid "c-sg"
3203
  msgstr "Singapore"
3204
 
3205
  # Slovakia
3206
+ #: ../admin/view/wp-slimstat-reports.php:1811
3207
  msgid "c-sk"
3208
  msgstr "Slovakia"
3209
 
3210
  # Slovenia
3211
+ #: ../admin/view/wp-slimstat-reports.php:1811
3212
  msgid "c-si"
3213
  msgstr "Slovenia"
3214
 
3215
  # Solomon Islands
3216
+ #: ../admin/view/wp-slimstat-reports.php:1811
3217
  msgid "c-sb"
3218
  msgstr "Solomon Islands"
3219
 
3220
  # Somalia
3221
+ #: ../admin/view/wp-slimstat-reports.php:1811
3222
  msgid "c-so"
3223
  msgstr "Somalia"
3224
 
3225
  # South Africa
3226
+ #: ../admin/view/wp-slimstat-reports.php:1811
3227
  msgid "c-za"
3228
  msgstr "South Africa"
3229
 
3230
  # South Georgia and the South Sandwich Islands
3231
+ #: ../admin/view/wp-slimstat-reports.php:1811
3232
  msgid "c-gs"
3233
  msgstr "South Georgia and the South Sandwich Islands"
3234
 
3235
  # Spain
3236
+ #: ../admin/view/wp-slimstat-reports.php:1811
3237
  msgid "c-es"
3238
  msgstr "Spain"
3239
 
3240
  # Sri Lanka
3241
+ #: ../admin/view/wp-slimstat-reports.php:1811
3242
  msgid "c-lk"
3243
  msgstr "Sri Lanka"
3244
 
3245
+ #: ../admin/view/wp-slimstat-reports.php:1811
3246
  msgid "c-sc"
3247
  msgstr "Seychelles"
3248
 
3249
  # Sudan
3250
+ #: ../admin/view/wp-slimstat-reports.php:1811
3251
  msgid "c-sd"
3252
  msgstr "Sudan"
3253
 
3254
+ #: ../admin/view/wp-slimstat-reports.php:1811
3255
  msgid "c-ss"
3256
  msgstr "South Sudan"
3257
 
3258
  # Suriname
3259
+ #: ../admin/view/wp-slimstat-reports.php:1811
3260
  msgid "c-sr"
3261
  msgstr "Suriname"
3262
 
3263
  # Svalbard and Jan Mayen
3264
+ #: ../admin/view/wp-slimstat-reports.php:1811
3265
  msgid "c-sj"
3266
  msgstr "Svalbard and Jan Mayen"
3267
 
3268
  # Swaziland
3269
+ #: ../admin/view/wp-slimstat-reports.php:1811
3270
  msgid "c-sz"
3271
  msgstr "Swaziland"
3272
 
3273
  # Sweden
3274
+ #: ../admin/view/wp-slimstat-reports.php:1811
3275
  msgid "c-se"
3276
  msgstr "Sweden"
3277
 
3278
  # Switzerland
3279
+ #: ../admin/view/wp-slimstat-reports.php:1811
3280
  msgid "c-ch"
3281
  msgstr "Switzerland"
3282
 
3283
  # Syrian Arab Republic
3284
+ #: ../admin/view/wp-slimstat-reports.php:1811
3285
  msgid "c-sy"
3286
  msgstr "Syrian Arab Republic"
3287
 
3288
  # Taiwan, Province of China
3289
+ #: ../admin/view/wp-slimstat-reports.php:1811
3290
  msgid "c-tw"
3291
  msgstr "Taiwan"
3292
 
3293
  # Tajikistan
3294
+ #: ../admin/view/wp-slimstat-reports.php:1811
3295
  msgid "c-tj"
3296
  msgstr "Tajikistan"
3297
 
3298
  # United Republic of Tanzania
3299
+ #: ../admin/view/wp-slimstat-reports.php:1811
3300
  msgid "c-tz"
3301
  msgstr "United Republic of Tanzania"
3302
 
3303
  # Thailand
3304
+ #: ../admin/view/wp-slimstat-reports.php:1811
3305
  msgid "c-th"
3306
  msgstr "Thailand"
3307
 
3308
  # Timor-Leste
3309
+ #: ../admin/view/wp-slimstat-reports.php:1811
3310
  msgid "c-tl"
3311
  msgstr "Timor-Leste"
3312
 
3313
  # Togo
3314
+ #: ../admin/view/wp-slimstat-reports.php:1811
3315
  msgid "c-tg"
3316
  msgstr "Togo"
3317
 
3318
  # Tonga
3319
+ #: ../admin/view/wp-slimstat-reports.php:1811
3320
  msgid "c-to"
3321
  msgstr "Tonga"
3322
 
3323
  # Trinidad and Tobago
3324
+ #: ../admin/view/wp-slimstat-reports.php:1811
3325
  msgid "c-tt"
3326
  msgstr "Trinidad and Tobago"
3327
 
3328
  # Tunisia
3329
+ #: ../admin/view/wp-slimstat-reports.php:1811
3330
  msgid "c-tn"
3331
  msgstr "Tunisia"
3332
 
3333
  # Turkey
3334
+ #: ../admin/view/wp-slimstat-reports.php:1811
3335
  msgid "c-tr"
3336
  msgstr "Turkey"
3337
 
3338
  # Turkmenistan
3339
+ #: ../admin/view/wp-slimstat-reports.php:1811
3340
  msgid "c-tm"
3341
  msgstr "Turkmenistan"
3342
 
3343
  # Turks and Caicos Islands
3344
+ #: ../admin/view/wp-slimstat-reports.php:1811
3345
  msgid "c-tc"
3346
  msgstr "Turks and Caicos Islands"
3347
 
3348
  # Uganda
3349
+ #: ../admin/view/wp-slimstat-reports.php:1811
3350
  msgid "c-ug"
3351
  msgstr "Uganda"
3352
 
3353
  # Ukraine
3354
+ #: ../admin/view/wp-slimstat-reports.php:1811
3355
  msgid "c-ua"
3356
  msgstr "Ukraine"
3357
 
3358
  # United Arab Emirates
3359
+ #: ../admin/view/wp-slimstat-reports.php:1811
3360
  msgid "c-ae"
3361
  msgstr "United Arab Emirates"
3362
 
3363
  # United Kingdom
3364
+ #: ../admin/view/wp-slimstat-reports.php:1811
3365
  msgid "c-gb"
3366
  msgstr "United Kingdom"
3367
 
3368
  # United States
3369
+ #: ../admin/view/wp-slimstat-reports.php:1811
3370
  msgid "c-us"
3371
  msgstr "United States"
3372
 
3373
  # Uruguay
3374
+ #: ../admin/view/wp-slimstat-reports.php:1811
3375
  msgid "c-uy"
3376
  msgstr "Uruguay"
3377
 
3378
  # Uzbekistan
3379
+ #: ../admin/view/wp-slimstat-reports.php:1811
3380
  msgid "c-uz"
3381
  msgstr "Uzbekistan"
3382
 
3383
  # Vanuatu
3384
+ #: ../admin/view/wp-slimstat-reports.php:1811
3385
  msgid "c-vu"
3386
  msgstr "Vanuatu"
3387
 
3388
  # Venezuela
3389
+ #: ../admin/view/wp-slimstat-reports.php:1811
3390
  msgid "c-ve"
3391
  msgstr "Venezuela"
3392
 
3393
  # Viet Nam
3394
+ #: ../admin/view/wp-slimstat-reports.php:1811
3395
  msgid "c-vn"
3396
  msgstr "Viet Nam"
3397
 
3398
  # British Virgin Islands
3399
+ #: ../admin/view/wp-slimstat-reports.php:1811
3400
  msgid "c-vg"
3401
  msgstr "British Virgin Islands"
3402
 
3403
  # U.S. Virgin Islands
3404
+ #: ../admin/view/wp-slimstat-reports.php:1811
3405
  msgid "c-vi"
3406
  msgstr "U.S. Virgin Islands"
3407
 
3408
  # Western Sahara
3409
+ #: ../admin/view/wp-slimstat-reports.php:1811
3410
  msgid "c-eh"
3411
  msgstr "Western Sahara"
3412
 
3413
  # Yemen
3414
+ #: ../admin/view/wp-slimstat-reports.php:1811
3415
  msgid "c-ye"
3416
  msgstr "Yemen"
3417
 
3418
  # Zambia
3419
+ #: ../admin/view/wp-slimstat-reports.php:1811
3420
  msgid "c-zm"
3421
  msgstr "Zambia"
3422
 
3423
  # Zimbabwe
3424
+ #: ../admin/view/wp-slimstat-reports.php:1811
3425
  msgid "c-zw"
3426
  msgstr "Zimbabwe"
3427
 
3428
  # Guernsey
3429
+ #: ../admin/view/wp-slimstat-reports.php:1811
3430
  msgid "c-gg"
3431
  msgstr "Guernsey"
3432
 
3433
  # Jersey
3434
+ #: ../admin/view/wp-slimstat-reports.php:1811
3435
  msgid "c-je"
3436
  msgstr "Jersey"
3437
 
3438
  # Isle of Man
3439
+ #: ../admin/view/wp-slimstat-reports.php:1811
3440
  msgid "c-im"
3441
  msgstr "Isle of Man"
3442
 
3443
  # Maldives
3444
+ #: ../admin/view/wp-slimstat-reports.php:1811
3445
  msgid "c-mv"
3446
  msgstr "Maldives"
3447
 
3448
+ #: ../admin/view/wp-slimstat-reports.php:1812
3449
  msgid "c-eu"
3450
  msgstr "Europe"
3451
 
3452
+ #: ../admin/view/wp-slimstat-reports.php:1894
3453
  msgid "src"
3454
  msgstr ""
3455
 
3456
+ #: ../admin/view/wp-slimstat-reports.php:1897
3457
  msgid "serp"
3458
  msgstr ""
3459
 
3460
+ #: ../admin/view/wp-slimstat-reports.php:1904
3461
  msgid "Go to the referring page"
3462
  msgstr ""
3463
 
3464
+ #: ../admin/view/wp-slimstat-reports.php:1926
3465
  msgid "Remove filter for"
3466
  msgstr ""
3467
 
3468
+ #: ../admin/view/wp-slimstat-reports.php:1930
3469
  msgid "Save"
3470
  msgstr ""
3471
 
3472
+ #: ../admin/view/wp-slimstat-reports.php:1933
3473
  msgid "Reset All"
3474
  msgstr ""
3475
 
3476
+ #: ../admin/view/wp-slimstat-reports.php:1937
3477
  msgid "Current filters:"
3478
  msgstr ""
3479
 
3480
+ #: ../admin/wp-slimstat-admin.php:482 ../admin/wp-slimstat-admin.php:493
3481
+ #: ../admin/wp-slimstat-admin.php:495
3482
  msgid "SlimStat"
3483
  msgstr ""
3484
 
3485
+ #: ../admin/wp-slimstat-admin.php:489 ../admin/wp-slimstat-admin.php:504
3486
+ #: ../wp-slimstat.php:1799
3487
+ msgid "Customize"
3488
  msgstr ""
3489
 
3490
+ #: ../admin/wp-slimstat-admin.php:587
3491
  msgid "Pageviews in the last "
3492
  msgstr ""
3493
 
3494
+ #: ../admin/wp-slimstat-admin.php:590
3495
  msgid "Unique IPs in the last "
3496
  msgstr ""
3497
 
3498
+ #: ../admin/wp-slimstat-admin.php:644
3499
  msgid "Show on screen"
3500
  msgstr ""
3501
 
3502
+ #: ../admin/wp-slimstat-admin.php:725
3503
  msgid "Already saved"
3504
  msgstr ""
3505
 
3506
+ #: ../admin/wp-slimstat-admin.php:733
3507
  msgid "Saved"
3508
  msgstr ""
3509
 
3510
+ #: ../admin/wp-slimstat-admin.php:753
3511
  msgid "Delete this filter"
3512
  msgstr ""
3513
 
3514
+ #: ../admin/wp-slimstat-admin.php:797
3515
  msgid "There was an error updating the following options:"
3516
  msgstr ""
3517
 
3518
+ #: ../admin/wp-slimstat-admin.php:800
3519
  msgid "Your changes have been saved."
3520
  msgstr ""
3521
 
3522
+ #: ../admin/wp-slimstat-admin.php:823
3523
  msgid "Save Changes"
3524
  msgstr ""
3525
 
3526
+ #: ../admin/wp-slimstat-admin.php:839
3527
  msgid "Definitions"
3528
  msgstr ""
3529
 
3530
+ #: ../admin/wp-slimstat-admin.php:842
3531
  msgid "Pageview"
3532
  msgstr ""
3533
 
3534
+ #: ../admin/wp-slimstat-admin.php:842
3535
  msgid ""
3536
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3537
  "with a \"hit\", which refers to a request for any file from a web server. "
3538
  "Slimstat logs a pageview each time the tracking code is executed"
3539
  msgstr ""
3540
 
3541
+ #: ../admin/wp-slimstat-admin.php:843
3542
  msgid "(Human) Visit"
3543
  msgstr ""
3544
 
3545
+ #: ../admin/wp-slimstat-admin.php:843
3546
  msgid ""
3547
  "A period of interaction between a visitor's browser and your website, ending "
3548
  "when the browser is closed or when the user has been inactive on that site "
3549
  "for 30 minutes"
3550
  msgstr ""
3551
 
3552
+ #: ../admin/wp-slimstat-admin.php:844
3553
  msgid ""
3554
  "Any user who has left a comment on your blog, and is thus identified by "
3555
  "Wordpress as a returning visitor"
3556
  msgstr ""
3557
 
3558
+ #: ../admin/wp-slimstat-admin.php:845
3559
  msgid "Unique IP"
3560
  msgstr ""
3561
 
3562
+ #: ../admin/wp-slimstat-admin.php:845
3563
  msgid ""
3564
  "Used to differentiate between multiple requests to download a file from one "
3565
  "internet address (IP) and requests originating from many distinct addresses; "
3567
  "from, it is useful, but not perfect"
3568
  msgstr ""
3569
 
3570
+ #: ../admin/wp-slimstat-admin.php:846
3571
  msgid ""
3572
  "the originating IP address of a client connecting to a web server through an "
3573
  "HTTP proxy or load balancer"
3574
  msgstr ""
3575
 
3576
+ #: ../admin/wp-slimstat-admin.php:847
3577
  msgid "Direct Traffic"
3578
  msgstr ""
3579
 
3580
+ #: ../admin/wp-slimstat-admin.php:847
3581
  msgid ""
3582
  "All those people showing up to your Web site by typing in the URL of your "
3583
  "Web site coming or from a bookmark; some people also call this \"default "
3584
  "traffic\" or \"ambient traffic\""
3585
  msgstr ""
3586
 
3587
+ #: ../admin/wp-slimstat-admin.php:848
3588
  msgid "Search Engine"
3589
  msgstr ""
3590
 
3591
+ #: ../admin/wp-slimstat-admin.php:848
3592
  msgid ""
3593
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3594
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
3595
  msgstr ""
3596
 
3597
+ #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
3598
  msgid "Keywords used by your visitors to find your website on a search engine"
3599
  msgstr ""
3600
 
3601
+ #: ../admin/wp-slimstat-admin.php:850
3602
  msgid "SERP"
3603
  msgstr ""
3604
 
3605
+ #: ../admin/wp-slimstat-admin.php:850
3606
  msgid ""
3607
  "Short for search engine results page, the Web page that a search engine "
3608
  "returns with the results of its search. The value shown represents your rank "
3609
  "(or position) within that list of results"
3610
  msgstr ""
3611
 
3612
+ #: ../admin/wp-slimstat-admin.php:851
3613
  msgid ""
3614
  "Any program used for accessing a website; this includes browsers, robots, "
3615
  "spiders and any other program that was used to retrieve information from the "
3616
  "site"
3617
  msgstr ""
3618
 
3619
+ #: ../admin/wp-slimstat-admin.php:852
3620
  msgid ""
3621
  "A link from one domain to another is said to be outbound from its source "
3622
  "anchor and inbound to its target. This report lists all the links to other "
3623
  "websites followed by your visitors."
3624
  msgstr ""
3625
 
3626
+ #: ../admin/wp-slimstat-admin.php:859
3627
  msgid "Basic Filters"
3628
  msgstr ""
3629
 
3630
+ #: ../admin/wp-slimstat-admin.php:862
3631
  msgid "User agent (Firefox, Chrome, ...)"
3632
  msgstr ""
3633
 
3634
+ #: ../admin/wp-slimstat-admin.php:863
3635
  msgid "2-letter code (us, ru, de, it, ...)"
3636
  msgstr ""
3637
 
3638
+ #: ../admin/wp-slimstat-admin.php:864
3639
  msgid "IP"
3640
  msgstr ""
3641
 
3642
+ #: ../admin/wp-slimstat-admin.php:864
3643
  msgid "Visitor's public IP address"
3644
  msgstr ""
3645
 
3646
+ #: ../admin/wp-slimstat-admin.php:866
3647
  msgid ""
3648
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
3649
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
3650
  "column) for more information"
3651
  msgstr ""
3652
 
3653
+ #: ../admin/wp-slimstat-admin.php:867
3654
  msgid ""
3655
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
3656
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
3657
  "manual page</a> for more information"
3658
  msgstr ""
3659
 
3660
+ #: ../admin/wp-slimstat-admin.php:868
3661
  msgid "URL accessed on your site"
3662
  msgstr ""
3663
 
3664
+ #: ../admin/wp-slimstat-admin.php:869
3665
  msgid "Complete address of the referrer page"
3666
  msgstr ""
3667
 
3668
+ #: ../admin/wp-slimstat-admin.php:870
3669
  msgid ""
3670
  "Visitors' names according to the cookie set by Wordpress after they leave a "
3671
  "comment"
3672
  msgstr ""
3673
 
3674
+ #: ../admin/wp-slimstat-admin.php:878
3675
  msgid "Advanced Filters"
3676
  msgstr ""
3677
 
3678
+ #: ../admin/wp-slimstat-admin.php:881
3679
  msgid "user agent version (9.0, 11, ...)"
3680
  msgstr ""
3681
 
3682
+ #: ../admin/wp-slimstat-admin.php:882
3683
  msgid ""
3684
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
3685
  "all others"
3686
  msgstr ""
3687
 
3688
+ #: ../admin/wp-slimstat-admin.php:883
3689
  msgid "Pageview Attributes"
3690
  msgstr ""
3691
 
3692
+ #: ../admin/wp-slimstat-admin.php:883
3693
  msgid ""
3694
  "this field is set to <em>[pre]</em> if the resource has been accessed "
3695
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
3696
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
3697
  msgstr ""
3698
 
3699
+ #: ../admin/wp-slimstat-admin.php:884
3700
  msgid "author associated to that post/page when the resource was accessed"
3701
  msgstr ""
3702
 
3703
+ #: ../admin/wp-slimstat-admin.php:885
3704
  msgid "ID of the category/term associated to the resource, when available"
3705
  msgstr ""
3706
 
3707
+ #: ../admin/wp-slimstat-admin.php:886
3708
  msgid "visitor's originating IP address, if available"
3709
  msgstr ""
3710
 
3711
+ #: ../admin/wp-slimstat-admin.php:887
3712
  msgid ""
3713
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
3714
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
3717
  "information"
3718
  msgstr ""
3719
 
3720
+ #: ../admin/wp-slimstat-admin.php:888
3721
  msgid "Screen Resolution"
3722
  msgstr ""
3723
 
3724
+ #: ../admin/wp-slimstat-admin.php:888
3725
  msgid "viewport width and height (1024x768, 800x600, ...)"
3726
  msgstr ""
3727
 
3728
+ #: ../admin/wp-slimstat-admin.php:889
3729
  msgid ""
3730
  "generally used in conjunction with <em>is not empty</em>, identifies human "
3731
  "visitors"
3732
  msgstr ""
3733
 
3734
+ #: ../admin/wp-slimstat-admin.php:890
3735
  msgid "Date Filters"
3736
  msgstr ""
3737
 
3738
+ #: ../admin/wp-slimstat-admin.php:890
3739
  msgid ""
3740
  "you can specify the timeframe by entering a number in the <em>interval</em> "
3741
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
3742
  "year=blank, interval=-1 will set a year-to-date filter)"
3743
  msgstr ""
3744
 
3745
+ #: ../admin/wp-slimstat-admin.php:891
3746
  msgid "SERP Position"
3747
  msgstr ""
3748
 
3749
+ #: ../admin/wp-slimstat-admin.php:891
3750
  msgid ""
3751
  "set the filter to Referer contains cd=N&, where N is the position you are "
3752
  "looking for"
3753
  msgstr ""
3754
 
3755
+ #: ../admin/wp-slimstat-admin.php:918
3756
  msgid "Yes"
3757
  msgstr ""
3758
 
3759
+ #: ../admin/wp-slimstat-admin.php:919
3760
  msgid "No"
3761
  msgstr ""
3762
 
3763
+ #: ../admin/wp-slimstat-admin.php:920
3764
  msgid "Site Specific"
3765
  msgstr ""
3766
 
5228
  msgid "c-xy"
5229
  msgstr "Local IP"
5230
 
5231
+ #: ../wp-slimstat.php:223 ../wp-slimstat.php:515
5232
+ msgid "Notice: Pageview filtered by third-party code"
5233
  msgstr ""
5234
 
5235
+ #: ../wp-slimstat.php:240
5236
+ #, php-format
5237
+ msgid "Error: Malformed URL %s"
5238
  msgstr ""
5239
 
5240
+ #: ../wp-slimstat.php:259
5241
+ #, php-format
5242
+ msgid "Notice: Referrer %s is blacklisted"
5243
  msgstr ""
5244
 
5245
+ #: ../wp-slimstat.php:347
5246
+ #, php-format
5247
+ msgid "Notice: Permalink %s is blacklisted"
5248
  msgstr ""
5249
 
5250
+ #: ../wp-slimstat.php:358
5251
+ msgid "Error: Empty or not supported IP address format (IPv6)"
5252
  msgstr ""
5253
 
5254
+ #: ../wp-slimstat.php:367
5255
+ #, php-format
5256
+ msgid "Notice: Logged in user %s not tracked"
5257
  msgstr ""
5258
 
5259
+ #: ../wp-slimstat.php:375
5260
+ #, php-format
5261
+ msgid "Notice: User with capability %s not tracked"
5262
  msgstr ""
5263
 
5264
+ #: ../wp-slimstat.php:385
5265
  #, php-format
5266
+ msgid "Notice: User %s is blacklisted"
5267
  msgstr ""
5268
 
5269
+ #: ../wp-slimstat.php:406
5270
  #, php-format
5271
+ msgid "Notice: Spammer %s not tracked"
5272
  msgstr ""
5273
 
5274
+ #: ../wp-slimstat.php:435
5275
  #, php-format
5276
+ msgid "Notice: IP address %s is blacklisted"
5277
  msgstr ""
5278
 
5279
+ #: ../wp-slimstat.php:464
5280
  #, php-format
5281
+ msgid "Notice: Country %s is blacklisted"
5282
  msgstr ""
5283
 
5284
+ #: ../wp-slimstat.php:473
5285
+ msgid "Notice: Prefetch requests are ignored"
5286
  msgstr ""
5287
 
5288
+ #: ../wp-slimstat.php:489
5289
+ msgid "Notice: Bot not tracked"
5290
  msgstr ""
5291
 
5292
+ #: ../wp-slimstat.php:498
5293
  #, php-format
5294
+ msgid "Notice: Browser %s is blacklisted"
5295
+ msgstr ""
5296
+
5297
+ #: ../wp-slimstat.php:528
5298
+ msgid "Error:"
5299
  msgstr ""
5300
 
5301
+ #: ../wp-slimstat.php:1209
5302
  msgid "Invalid payload string. Try clearing your WordPress cache."
5303
  msgstr ""
5304
 
5305
+ #: ../wp-slimstat.php:1219
5306
  msgid "Invalid data signature. Try clearing your WordPress cache."
5307
  msgstr ""
5308
 
5309
+ #: ../wp-slimstat.php:1289
5310
  msgid "There was an error downloading the MaxMind Geolite DB:"
5311
  msgstr ""
5312
 
5313
+ #: ../wp-slimstat.php:1297 ../wp-slimstat.php:1306
5314
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5315
  msgstr ""
5316
 
5317
+ #: ../wp-slimstat.php:1301
5318
  msgid "Function gzopen not defined. Aborting."
5319
  msgstr ""
5320
 
5321
+ #: ../wp-slimstat.php:1311
5322
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5323
  msgstr ""
5324
 
languages/wp-slimstat-es_ES.mo CHANGED
Binary file
languages/wp-slimstat-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Slimstat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-01 20:59-0500\n"
6
- "PO-Revision-Date: 2015-10-01 20:59-0500\n"
7
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
8
  "Language-Team: \n"
9
  "Language: es_ES\n"
@@ -17,85 +17,7 @@ msgstr ""
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
- #: ../admin/config/addons.php:15
21
- msgid ""
22
- "There was an error retrieving the add-ons list from the server. Please try "
23
- "again later. Error Message:"
24
- msgstr ""
25
- "Hubo un error al recuperar la lista de complementos desde el servidor. Por "
26
- "favor, inténtelo de nuevo más tarde. Mensaje de error:"
27
-
28
- #: ../admin/config/addons.php:25
29
- msgid ""
30
- "There was an error decoding the add-ons list from the server. Please try "
31
- "again later."
32
- msgstr ""
33
- "Se produjo un error decodificando la lista de complementos desde el "
34
- "servidor. Por favor, inténtelo de nuevo más tarde."
35
-
36
- #: ../admin/config/addons.php:32 ../admin/config/index.php:255
37
- #: ../admin/wp-slimstat-admin.php:656 ../admin/wp-slimstat-admin.php:670
38
- #: ../wp-slimstat.php:1789
39
- msgid "Add-ons"
40
- msgstr "Añadidos"
41
-
42
- #: ../admin/config/addons.php:33
43
- #, fuzzy
44
- msgid ""
45
- "Add-ons extend the functionality of Slimstat in many interesting ways. We "
46
- "offer both free and premium (paid) extensions. Each add-on can be installed "
47
- "as a separate plugin, which will receive regular updates via the WordPress "
48
- "Plugins panel. In order to be notified when a new version of a premium add-"
49
- "on is available, please enter the <strong>license key</strong> you received "
50
- "when you purchased it."
51
- msgstr ""
52
- "Los complementos amplían la funcionalidad de WP SLIMStat de muchas maneras "
53
- "interesantes. Ofrecemos extensiones tanto gratuitas como premium (de pago). "
54
- "Cada complemento se puede instalar como un plugin independiente, que "
55
- "recibirá actualizaciones regulares a través del panel de WordPress Plugins. "
56
- "Para ser notificado cuando una nueva versión de un añadido premium está "
57
- "disponible, por favor introduzca la clave<strong> de licencia </strong> que "
58
- "recibió cuando compró."
59
-
60
- #: ../admin/config/addons.php:37
61
- #, php-format
62
- msgid ""
63
- "This list is refreshed once daily: <a href=\"%s&amp;force_refresh=true"
64
- "\">click here</a> to clear the cache."
65
- msgstr ""
66
-
67
- #: ../admin/config/addons.php:46
68
- msgid "Add-on"
69
- msgstr "Añadido"
70
-
71
- #: ../admin/config/addons.php:46
72
- msgid "Description"
73
- msgstr "Descripción"
74
-
75
- #: ../admin/config/addons.php:57
76
- #, fuzzy
77
- msgid "Repo Version"
78
- msgstr "Versión de CSS"
79
-
80
- #: ../admin/config/addons.php:57
81
- #, fuzzy
82
- msgid "Version"
83
- msgstr "Versión de CSS"
84
-
85
- #: ../admin/config/addons.php:69
86
- #, fuzzy
87
- msgid "Your Version:"
88
- msgstr "Versión del Navegador"
89
-
90
- #: ../admin/config/addons.php:72
91
- msgid "Installed and Active"
92
- msgstr ""
93
-
94
- #: ../admin/config/index.php:47
95
- msgid "Ignore users (username not found)"
96
- msgstr "Ignorar usuarios (nombre de usuario no encontrado)"
97
-
98
- #: ../admin/config/index.php:67
99
  msgid ""
100
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
101
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
@@ -104,11 +26,11 @@ msgstr ""
104
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> esta página </a> "
105
  "para obtener más información"
106
 
107
- #: ../admin/config/index.php:82
108
  msgid "Read access: username not found"
109
  msgstr "Acceso de lectura: Nombre de usuario no se encuentra"
110
 
111
- #: ../admin/config/index.php:92 ../admin/config/index.php:117
112
  msgid ""
113
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
114
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
@@ -118,45 +40,35 @@ msgstr ""
118
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\">esta página</a> para "
119
  "obtener más información"
120
 
121
- #: ../admin/config/index.php:107
122
  msgid "Config access: username not found"
123
  msgstr "Acceso de configuración: Nombre de usuario no encontrado"
124
 
125
- #: ../admin/config/index.php:126
126
- msgid "General"
127
- msgstr "General"
128
 
129
- #: ../admin/config/index.php:128 ../admin/config/index.php:224
130
  msgid "Tracker"
131
  msgstr "Rastreador"
132
 
133
- #: ../admin/config/index.php:129
134
- #, fuzzy
135
- msgid "Track Pageviews"
136
- msgstr "Paginas visitadas"
137
 
138
- #: ../admin/config/index.php:129
139
  #, fuzzy
140
  msgid "Turn the tracker on or off, while keeping the reports accessible."
141
  msgstr ""
142
  "Activar el rastreador de encendido o apagado, pero conserve los informes "
143
  "accesibles (que no tendría, si desactivó el plugin)."
144
 
145
- #: ../admin/config/index.php:129 ../admin/config/index.php:131
146
- msgid "On"
147
- msgstr "El"
148
-
149
- #: ../admin/config/index.php:129 ../admin/config/index.php:131
150
- #: ../admin/view/wp-slimstat-reports.php:1269
151
- msgid "Off"
152
- msgstr ""
153
-
154
- #: ../admin/config/index.php:130
155
  #, fuzzy
156
  msgid "Tracking Mode"
157
  msgstr "Seguimiento Activo"
158
 
159
- #: ../admin/config/index.php:130
160
  #, fuzzy
161
  msgid ""
162
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
@@ -172,20 +84,20 @@ msgstr ""
172
  "la mayoría de los <strong> spammers, buscadores y otros rastreadores </"
173
  "strong> no serán registrados."
174
 
175
- #: ../admin/config/index.php:130
176
- msgid "Client"
177
  msgstr ""
178
 
179
- #: ../admin/config/index.php:130
180
  #, fuzzy
181
- msgid "Server"
182
  msgstr "Del lado del servidor"
183
 
184
- #: ../admin/config/index.php:131
185
  msgid "Stealth Mode"
186
  msgstr ""
187
 
188
- #: ../admin/config/index.php:131
189
  msgid ""
190
  "Do not add the javascript tracking code to your pages, if tracking mode is "
191
  "set to Server. Please note: if enabled, this will prevent the tracker from "
@@ -193,36 +105,44 @@ msgid ""
193
  "etc. This option is ignored is Tracking Mode is set to Client."
194
  msgstr ""
195
 
196
- #: ../admin/config/index.php:132
 
 
 
 
 
 
 
 
197
  #, fuzzy
198
  msgid "Admin Pages"
199
  msgstr "Principales Páginas de Salida"
200
 
201
- #: ../admin/config/index.php:132
202
  msgid "Enable this option to track your users' activity within the admin."
203
  msgstr ""
204
  "Habilite esta opción para realizar un seguimiento de la actividad de sus "
205
  "usuarios dentro de la administración."
206
 
207
- #: ../admin/config/index.php:132
208
  #, fuzzy
209
  msgid "Track"
210
  msgstr "Rastreador"
211
 
212
- #: ../admin/config/index.php:132
213
  #, fuzzy
214
  msgid "Do not track"
215
  msgstr "Bot o Crawler"
216
 
217
- #: ../admin/config/index.php:134
218
  msgid "WordPress Integration"
219
  msgstr "Integración WordPress"
220
 
221
- #: ../admin/config/index.php:135
222
  msgid "Menu Position"
223
  msgstr "Posición de menú"
224
 
225
- #: ../admin/config/index.php:135
226
  #, fuzzy
227
  msgid ""
228
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
@@ -231,98 +151,98 @@ msgstr ""
231
  "Elija entre un menú de administración independiente para WP SLIMStat o un "
232
  "menú desplegable en la barra de administrador (si está visible)."
233
 
234
- #: ../admin/config/index.php:135
235
  msgid "Side Menu"
236
  msgstr "Menú lateral"
237
 
238
- #: ../admin/config/index.php:135
239
  msgid "Admin Bar"
240
  msgstr "Barra de administración"
241
 
242
- #: ../admin/config/index.php:136
243
  #, fuzzy
244
  msgid "Posts and Pages"
245
  msgstr "Añadir columna a Publicaciones"
246
 
247
- #: ../admin/config/index.php:136
248
  #, fuzzy
249
  msgid ""
250
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
251
- "per post in the last 365 days."
252
  msgstr ""
253
  "Añadir una nueva columna a la pantalla Editar publicaciones, con el número "
254
  "de visitas por publicación (pueden ralentizar la renderización de páginas)."
255
 
256
- #: ../admin/config/index.php:137
257
- #, fuzzy
258
- msgid "Dashboard Widgets"
259
- msgstr "Sumario"
260
-
261
- #: ../admin/config/index.php:137
262
- msgid ""
263
- "Choose if you want to have the most important reports on your WordPress "
264
- "Dashboard. Use the Screen Options dropdown to select which ones to display."
265
- msgstr ""
266
-
267
- #: ../admin/config/index.php:138
268
  #, fuzzy
269
  msgid "Report Interval"
270
  msgstr "Únicamente interno"
271
 
272
- #: ../admin/config/index.php:138
273
  msgid ""
274
  "Enter the time range, in days, that should be used to calculate the value "
275
  "here above."
276
  msgstr ""
277
 
278
- #: ../admin/config/index.php:139
279
  #, fuzzy
280
  msgid "Report Type"
281
  msgstr "Informes Personalizados"
282
 
283
- #: ../admin/config/index.php:139
284
  msgid ""
285
  "Select what kind of information you would like to see displayed on the Posts "
286
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
287
  "IPs consider only one hit per user in the given time range."
288
  msgstr ""
289
 
290
- #: ../admin/config/index.php:139 ../admin/view/wp-slimstat-reports.php:97
291
- #: ../admin/view/wp-slimstat-reports.php:1124
292
- #: ../admin/view/wp-slimstat-reports.php:1285
293
- #: ../admin/view/wp-slimstat-reports.php:1443
294
  msgid "Pageviews"
295
  msgstr "Paginas visitadas"
296
 
297
- #: ../admin/config/index.php:139 ../admin/view/wp-slimstat-reports.php:1124
298
- #: ../admin/view/wp-slimstat-reports.php:1129
299
- #: ../admin/view/wp-slimstat-reports.php:1134
300
- #: ../admin/view/wp-slimstat-reports.php:1300
301
- #: ../admin/view/wp-slimstat-reports.php:1345
302
  msgid "Unique IPs"
303
  msgstr "IPs Unicas"
304
 
305
- #: ../admin/config/index.php:140
 
 
 
 
 
 
 
 
 
 
 
306
  #, fuzzy
307
  msgid "Hide Add-ons"
308
  msgstr "Añadidos"
309
 
310
- #: ../admin/config/index.php:140
311
  msgid ""
312
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
313
  "from the list of plugins in WordPress. Please note that you will still "
314
  "receive updates for hidden add-ons."
315
  msgstr ""
316
 
317
- #: ../admin/config/index.php:142
318
  msgid "Database"
319
  msgstr "Base de datos"
320
 
321
- #: ../admin/config/index.php:143
322
  msgid "Retain data for"
323
  msgstr "Conservar los datos durante"
324
 
325
- #: ../admin/config/index.php:143
326
  #, fuzzy
327
  msgid ""
328
  "Clean-up log entries older than the number of days specified here above. "
@@ -333,11 +253,11 @@ msgstr ""
333
  "aquí arriba. Introduzca <strong> 0 </strong> (número cero) si desea "
334
  "conservar sus datos independientemente de su edad."
335
 
336
- #: ../admin/config/index.php:143
337
  msgid "Next clean-up on"
338
  msgstr "Siguiente limpieza en"
339
 
340
- #: ../admin/config/index.php:143
341
  #, fuzzy, php-format
342
  msgid ""
343
  "Entries logged on or before %s will be archived or deleted according to the "
@@ -346,18 +266,18 @@ msgstr ""
346
  "Los comentarios registrados en o antes del %s se eliminarán de forma "
347
  "permanente."
348
 
349
- #: ../admin/config/index.php:143 ../admin/view/index.php:102
350
  #: ../admin/view/wp-slimstat-db.php:79
351
- #: ../admin/view/wp-slimstat-reports.php:1269
352
  msgid "days"
353
  msgstr "dias"
354
 
355
- #: ../admin/config/index.php:144
356
  #, fuzzy
357
  msgid "Delete records"
358
  msgstr "Palabras clave"
359
 
360
- #: ../admin/config/index.php:144
361
  msgid ""
362
  "If DB space is not an issue, you can decide to archive older records in "
363
  "another table, instead of deleting them. This way performance is preserved, "
@@ -367,268 +287,221 @@ msgid ""
367
  "is uninstalled. Make sure to backup your data before you proceed."
368
  msgstr ""
369
 
370
- #: ../admin/config/index.php:149 ../admin/config/index.php:210
371
  #, fuzzy
372
- msgid "Reports"
373
- msgstr "Informes Personalizados"
374
 
375
- #: ../admin/config/index.php:151
376
- msgid "Formats and Conversions"
 
 
 
 
 
 
 
 
377
  msgstr ""
 
 
378
 
379
- #: ../admin/config/index.php:152
380
- msgid "Number Format"
381
- msgstr "Formato de número"
382
 
383
- #: ../admin/config/index.php:152
384
- #, fuzzy
385
- msgid "Choose the number format you want to use for your reports."
 
 
 
386
  msgstr ""
387
- "Seleccione el formato de número que desea utilizar para sus informes, "
388
- "europeos o americanos."
389
 
390
- #: ../admin/config/index.php:153
391
- #, fuzzy
392
- msgid "Date Format"
393
- msgstr "Fecha y hora"
394
 
395
- #: ../admin/config/index.php:153
396
  msgid ""
397
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
398
- "Format</a> to use when displaying a pageview's date."
 
399
  msgstr ""
 
 
 
400
 
401
- #: ../admin/config/index.php:154
402
- #, fuzzy
403
- msgid "Time Format"
404
- msgstr "Formato de número"
405
 
406
- #: ../admin/config/index.php:154
407
  msgid ""
408
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
409
- "Format</a> to use when displaying a pageview's time."
 
 
 
410
  msgstr ""
 
 
 
 
 
411
 
412
- #: ../admin/config/index.php:155
413
  #, fuzzy
414
- msgid "Use Display Name"
415
- msgstr "Mostrar Nombre para mostrar"
 
 
 
 
 
416
 
417
- #: ../admin/config/index.php:155
418
  msgid ""
419
- "By default, users are listed by their usernames. Use this option to "
420
- "visualize their display names instead."
421
  msgstr ""
422
- "De forma predeterminada, los usuarios se enumeran por sus nombres de "
423
- "usuario. Utilice esta opción para visualizar los nombres para mostrar en su "
424
- "lugar."
425
 
426
- #: ../admin/config/index.php:156
427
  #, fuzzy
428
- msgid "Use Titles"
429
- msgstr "Mostrar Títulos"
430
 
431
- #: ../admin/config/index.php:156
432
- #, fuzzy
433
  msgid ""
434
- "Slimstat converts your permalinks into post, page and category titles. "
435
- "Disable this feature if you need to see the URL in your reports."
 
436
  msgstr ""
437
- "WP SLIMStat convierte tus enlaces permanentes en títulos de publicaciones y "
438
- "páginas. Desactive esta función si necesita ver la URL en sus informes."
439
-
440
- #: ../admin/config/index.php:157
441
- msgid "Convert IP Addresses"
442
- msgstr "Convertir Direcciones IP"
443
 
444
- #: ../admin/config/index.php:157
445
- msgid "Display provider names instead of IP addresses."
446
- msgstr "Muestra los nombres de proveedores, en lugar de direcciones IP."
447
 
448
- #: ../admin/config/index.php:159
449
- msgid "Functionality"
450
- msgstr "Funcionalidad"
 
 
 
 
451
 
452
- #: ../admin/config/index.php:160
453
- msgid "SlimScroll"
454
  msgstr ""
455
 
456
- #: ../admin/config/index.php:160
457
  msgid ""
458
- "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
459
- "scrollbar."
 
460
  msgstr ""
461
 
462
- #: ../admin/config/index.php:161
463
- msgid "Expand Details"
464
- msgstr "Expandir Detalles"
465
-
466
- #: ../admin/config/index.php:161
467
- msgid "Expand each row's details by default, insted of on mousehover."
468
  msgstr ""
469
- "Expandir cada fila de forma predeterminada, en vez de al sobreponer el ratón."
470
 
471
- #: ../admin/config/index.php:162 ../admin/config/index.php:167
472
- #, fuzzy
473
- msgid "Rows to Display"
474
- msgstr "No hay datos que mostrar"
475
-
476
- #: ../admin/config/index.php:162
477
- msgid "Specify the number of items in each report."
478
- msgstr "Especifique el número de elementos en cada informe."
479
-
480
- #: ../admin/config/index.php:163 ../admin/view/wp-slimstat-db.php:101
481
- #, fuzzy
482
- msgid "Max Results"
483
- msgstr "Limitar Resultados"
484
-
485
- #: ../admin/config/index.php:163
486
  msgid ""
487
- "Decide how many records should be retrieved from the database in total. "
488
- "Depending on your server configuration, you may want to fine tune this value "
489
- "to avoid exceeding your PHP memory limit."
490
  msgstr ""
491
 
492
- #: ../admin/config/index.php:165
493
- msgid "Activity Log"
494
- msgstr "Bitácora de actividades"
495
-
496
- #: ../admin/config/index.php:166
497
- msgid "Live Stream"
498
- msgstr "Transmisión en Vivo"
499
-
500
- #: ../admin/config/index.php:166
501
  #, fuzzy
 
 
 
 
502
  msgid ""
503
- "Enable the Live view, which refreshes the Activity Log every X seconds. "
504
- "Enter <strong>0</strong> (number zero) to deactivate this feature."
 
 
 
 
 
505
  msgstr ""
506
- "Habilitar la vista en vivo, lo que refresca la pantalla Ahora cada X "
507
- "segundos. Introduzca <strong> 0 </strong> (número cero) para deshabilitar "
508
- "esta funcionalidad."
509
-
510
- #: ../admin/config/index.php:166 ../admin/config/index.php:225
511
- msgid "seconds"
512
- msgstr "Segundos"
513
-
514
- #: ../admin/config/index.php:167
515
- #, fuzzy
516
- msgid "Specify the number of items in the Activity Log."
517
- msgstr "Especifica el número de elementos en Ahora."
518
 
519
- #: ../admin/config/index.php:169 ../admin/config/index.php:201
520
- #: ../admin/config/index.php:242
521
  msgid "Miscellaneous"
522
  msgstr "Varios"
523
 
524
- #: ../admin/config/index.php:170
525
- msgid "Custom CSS"
526
- msgstr "CSS personalizado"
527
-
528
- #: ../admin/config/index.php:170
529
- #, fuzzy
530
- msgid ""
531
- "Paste here your custom stylesheet to personalize the way your reports look. "
532
- "<a href='https://slimstat.freshdesk.com/support/solutions/"
533
- "articles/5000528528-how-can-i-change-the-colors-associated-to-color-coded-"
534
- "pageviews-known-user-known-visitors-search-e' target='_blank'>Check the FAQ</"
535
- "a> for more information on how to use this setting."
536
- msgstr ""
537
- "Pega aquí tu hoja de estilo personalizada para personalizar la forma en que "
538
- "sus informes se ven. <a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
539
- "target='_blank'> Compruebe la FAQ </a> para obtener más información sobre "
540
- "cómo utilizar esta funcionalidad."
541
-
542
- #: ../admin/config/index.php:171
543
- #, fuzzy
544
- msgid "Chart Colors"
545
- msgstr "Controles de gráfica"
546
-
547
- #: ../admin/config/index.php:171
548
- msgid ""
549
- "Customize the look and feel of your charts by assigning personalized colors "
550
- "to each metric. List 4 hex colors separated by commas, strictly in the "
551
- "following order: metric 1 previous, metric 2 previous, metric 1 current, "
552
- "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
553
- msgstr ""
554
-
555
- #: ../admin/config/index.php:172
556
- #, fuzzy
557
- msgid "Show User Agent"
558
- msgstr "Buscadores"
559
-
560
- #: ../admin/config/index.php:172
561
- msgid ""
562
- "Choose if you want to see the browser name or a complete user agent string "
563
- "when hovering on browser icons."
564
- msgstr ""
565
- "Seleccione si desea ver el nombre del navegador o una cadena completa de "
566
- "agente de usuario al pasar el cursor sobre los iconos del navegador."
567
 
568
- #: ../admin/config/index.php:173
569
  #, fuzzy
570
- msgid "Enable SOV"
571
- msgstr "Habilitar CDN"
572
-
573
- #: ../admin/config/index.php:173
574
- msgid ""
575
- "In linguistic typology, a subject-object-verb (SOV) language is one in which "
576
- "the subject, object, and verb of a sentence appear in that order, like in "
577
- "Japanese."
578
- msgstr ""
579
-
580
- #: ../admin/config/index.php:174
581
- msgid "Social Analytics"
582
- msgstr ""
583
-
584
- #: ../admin/config/index.php:174
585
  msgid ""
586
- "Thanks to a <a href='http://getsocial.io/enterprise' "
587
- "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
588
- "set of analytics for social media where you can identify top performing "
589
- "posts. Track social sharing to understand which of your posts are generating "
590
- "more engagement. When this option is enabled, Slimstat sends a list of all "
591
- "your posts's URLs to their service for analysis once daily."
592
  msgstr ""
 
 
 
 
 
593
 
594
- #: ../admin/config/index.php:179
595
  msgid "Filters"
596
  msgstr "Filtros"
597
 
598
- #: ../admin/config/index.php:181
599
  #, fuzzy
600
- msgid "Visitors and Known Users"
601
- msgstr "Navegadores recientes"
602
 
603
- #: ../admin/config/index.php:182
604
  msgid "Track Registered Users"
605
  msgstr "Seguimiento Usuarios Registrados"
606
 
607
- #: ../admin/config/index.php:182
608
  msgid "Enable this option to track logged in users."
609
  msgstr "Active esta opción para rastrear usuarios registrados."
610
 
611
- #: ../admin/config/index.php:183
612
  #, fuzzy
613
  msgid "Blacklist by Username"
614
  msgstr "Direcciones IP Blacklist"
615
 
616
- #: ../admin/config/index.php:183
 
617
  msgid ""
618
  "List all the usernames you don't want to track, separated by commas. Please "
619
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
620
- "sensitive."
 
 
 
621
  msgstr ""
622
- "Lista de todos los nombres de usuario de los que que no desee realizar el "
623
- "seguimiento, separados por comas. Tenga en cuenta que los espacios son <em> "
624
- "no </em> ignorados y que los nombres de usuario distinguen entre mayúsculas "
625
- "y minúsculas."
 
 
 
 
626
 
627
- #: ../admin/config/index.php:184
628
  msgid "Blacklist by IP Address"
629
  msgstr "Direcciones IP Blacklist"
630
 
631
- #: ../admin/config/index.php:184
632
  #, fuzzy
633
  msgid ""
634
  "List all the IP addresses you don't want to track, separated by commas. Each "
@@ -643,12 +516,12 @@ msgstr ""
643
  "CIDR </a> (es decir, < em> 192.168.0.0/24 </em>). Si el formato no es "
644
  "correcto, WP SLIMStat no puede rastrear páginas vistas correctamente."
645
 
646
- #: ../admin/config/index.php:185
647
  #, fuzzy
648
  msgid "Blacklist by Capability"
649
  msgstr "Navegador"
650
 
651
- #: ../admin/config/index.php:185
652
  msgid ""
653
  "Users having at least one of the <a href='http://codex.wordpress.org/"
654
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
@@ -659,15 +532,15 @@ msgstr ""
659
  "no se les rastreará. Las Capacidades distinguen entre mayúsculas y "
660
  "minúsculas."
661
 
662
- #: ../admin/config/index.php:187
663
  msgid "Profiling"
664
  msgstr "Haciendo perfil"
665
 
666
- #: ../admin/config/index.php:188
667
  msgid "Ignore Spammers"
668
  msgstr "Ignorar Spammers"
669
 
670
- #: ../admin/config/index.php:188
671
  msgid ""
672
  "Enable this option if you don't want to track visits from users identified "
673
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -680,12 +553,12 @@ msgstr ""
680
  "adelante se marcan como correo no deseado, también se eliminarán de la base "
681
  "de datos."
682
 
683
- #: ../admin/config/index.php:189
684
  #, fuzzy
685
  msgid "Ignore Bots"
686
  msgstr "Navegadores recientes"
687
 
688
- #: ../admin/config/index.php:189
689
  msgid ""
690
  "Turn on this feature if you want to have the accuracy level of server-side "
691
  "tracking, but not the inconvenience of getting your database clogged with "
@@ -693,12 +566,12 @@ msgid ""
693
  "note that in Client mode, bots are ignored regardless of this setting."
694
  msgstr ""
695
 
696
- #: ../admin/config/index.php:190
697
  #, fuzzy
698
  msgid "Permalinks"
699
  msgstr "Enlace Permanente"
700
 
701
- #: ../admin/config/index.php:190
702
  msgid ""
703
  "List all the URLs on your website that you don't want to track, separated by "
704
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -717,12 +590,12 @@ msgstr ""
717
  "<code> / abo! T </ code > coincidirá con /about and /abort. Las cadenas no "
718
  "se afectan por mayúsculas y minúsculas."
719
 
720
- #: ../admin/config/index.php:191
721
  #, fuzzy
722
  msgid "Countries"
723
  msgstr "Paises que más visitan"
724
 
725
- #: ../admin/config/index.php:191
726
  msgid ""
727
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
728
  "track, separated by commas."
@@ -730,12 +603,12 @@ msgstr ""
730
  "Los códigos de país (Es decir: <code> es-es, it, es </code>) a los que no "
731
  "desee realizar el seguimiento, separados por comas"
732
 
733
- #: ../admin/config/index.php:192
734
  #, fuzzy
735
  msgid "User Agents"
736
  msgstr "Buscadores"
737
 
738
- #: ../admin/config/index.php:192
739
  msgid ""
740
  "Browsers (user agents) you don't want to track, separated by commas. You can "
741
  "specify the browser's version adding a slash after the name (i.e. "
@@ -752,12 +625,12 @@ msgstr ""
752
  "code> coincidirá Chrome y cromo, <code> IE /! 0.0 </code> coincidirá IE/7.0 "
753
  "y IE/8.0. Las cadenas son de mayúsculas y minúsculas."
754
 
755
- #: ../admin/config/index.php:193
756
  #, fuzzy
757
  msgid "Referring Sites"
758
  msgstr "Motores de Búsqueda"
759
 
760
- #: ../admin/config/index.php:193
761
  msgid ""
762
  "Referring URLs that you don't want to track, separated by commas: "
763
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -772,95 +645,265 @@ msgstr ""
772
  "cadenas son mayúsculas y minúsculas. Por favor incluya ya sea un comodín o "
773
  "el protocolo que desea filtrar (http://, https://)."
774
 
775
- #: ../admin/config/index.php:195
 
 
 
 
 
 
 
 
 
 
 
 
 
 
776
  #, fuzzy
777
- msgid "Internal and Outbound Links"
778
- msgstr "Enlaces Salientes Recientes"
 
 
 
 
 
 
779
 
780
- #: ../admin/config/index.php:196
781
  #, fuzzy
782
- msgid "Track Outbound Clicks"
783
- msgstr "Enlaces Salientes Recientes"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
784
 
785
- #: ../admin/config/index.php:196
786
  msgid ""
787
- "Track when your visitors click on link to external websites. This option "
788
- "required Spy Mode to be enabled."
789
  msgstr ""
790
- "Rastree cuando los usuarios hacen clic en el enlace a sitios web externos. "
791
- "Esta opción requere que el modo Espía esté habilitado."
792
 
793
- #: ../admin/config/index.php:197
794
  #, fuzzy
795
- msgid "Track Coordinates"
796
- msgstr "Seguimiento Activo"
797
 
798
- #: ../admin/config/index.php:197
799
  msgid ""
800
- "Collect mouse coordinates and other information for clicks on internal "
801
- "links. Strongly recommended if you're using the heatmap add-on. By default, "
802
- "this information is only collected for external links."
 
 
 
 
 
 
 
 
 
 
803
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
804
 
805
  #: ../admin/config/index.php:198
806
- msgid "No Callback"
807
  msgstr ""
808
 
809
  #: ../admin/config/index.php:198
810
  msgid ""
811
- "Track the event but do not invoke the callback function on links marked with "
812
- "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
813
- "attribute contains one of these strings (separated by comma). Useful to "
814
- "prevent conflicts with lightbox and similar libraries."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
815
  msgstr ""
816
 
817
- #: ../admin/config/index.php:199
818
- msgid "Do Not Track"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
819
  msgstr ""
820
 
821
- #: ../admin/config/index.php:199
 
 
 
 
 
822
  msgid ""
823
- "Do not track links marked with one of these class names, <em>rel</em> "
824
- "attributes or whose <em>href</em> attribute contains one of these strings "
825
- "(separated by comma)."
826
  msgstr ""
 
 
827
 
828
- #: ../admin/config/index.php:202
829
- msgid "Enable Privacy Mode"
830
- msgstr "Activar el modo de privacidad"
 
831
 
832
- #: ../admin/config/index.php:202
833
- msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
 
 
 
834
  msgstr ""
835
- "Enmascarar direcciones IP de sus visitantes para cumplir con leyes de "
836
- "privacidad europeas."
837
 
838
- #: ../admin/config/index.php:203
839
- msgid "Ignore Prefetch Requests"
840
- msgstr "Ignorar PPeticiones Prefetch"
841
 
842
- #: ../admin/config/index.php:203
843
- #, fuzzy
844
  msgid ""
845
- "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
846
- "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
847
- "target='_blank'>Link Prefetching functionality</a>."
 
 
 
848
  msgstr ""
849
- "Evitar que WP SLIMStat de el seguimiento de páginas vistas generadas por <a "
850
- "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
851
- "target='_blank'> Función de Prellamado de enlaces de Firefox </a>."
852
 
853
- #: ../admin/config/index.php:208
854
- #, fuzzy
855
- msgid "Permissions"
856
- msgstr "Enlace Permanente"
857
 
858
- #: ../admin/config/index.php:211
859
  #, fuzzy
860
  msgid "Restrict Authors"
861
  msgstr "Autor de la entrada(sección)"
862
 
863
- #: ../admin/config/index.php:211
864
  #, fuzzy
865
  msgid ""
866
  "Enable this option if you want your authors to only see stats related to "
@@ -869,12 +912,12 @@ msgstr ""
869
  "Habilite esta opción si desea que sus autores sólo vean las estadísticas "
870
  "relacionadas con su propio contenido"
871
 
872
- #: ../admin/config/index.php:212 ../admin/config/index.php:216
873
  #, fuzzy
874
  msgid "Capability"
875
  msgstr "Navegador"
876
 
877
- #: ../admin/config/index.php:212
878
  #, fuzzy
879
  msgid ""
880
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -892,11 +935,11 @@ msgstr ""
892
  "blanca 'Acceso de lectura' aquí abajo. En este caso, la lista tiene "
893
  "prioridad sobre la capacidad."
894
 
895
- #: ../admin/config/index.php:213 ../admin/config/index.php:217
896
  msgid "Whitelist"
897
  msgstr "Lista blanca"
898
 
899
- #: ../admin/config/index.php:213
900
  msgid ""
901
  "List all the users who should have access to the reports, separated by "
902
  "commas. Administrators are implicitly allowed, so you don't need to list "
@@ -907,14 +950,14 @@ msgstr ""
907
  "es necesario enumerarlos aquí. Los nombres de usuario distinguen entre "
908
  "mayúsculas y minúsculasdefecto."
909
 
910
- #: ../admin/config/index.php:215 ../admin/config/index.php:268
911
- #: ../admin/wp-slimstat-admin.php:697 ../admin/wp-slimstat-admin.php:700
912
- #: ../wp-slimstat.php:1792
913
  #, fuzzy
914
  msgid "Settings"
915
  msgstr "Seleccionar orden"
916
 
917
- #: ../admin/config/index.php:216
918
  #, fuzzy
919
  msgid ""
920
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -928,7 +971,7 @@ msgstr ""
928
  "blanca de aquí abajo se puede utilizar para anular esta opción para usuarios "
929
  "específicos."
930
 
931
- #: ../admin/config/index.php:217
932
  msgid ""
933
  "List all the users who can edit these options, separated by commas. Please "
934
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
@@ -939,132 +982,16 @@ msgstr ""
939
  "implícitamente permitidos, así que ¡no se olvide de incluirse a si mismo! "
940
  "Los nombres de usuario distinguen entre mayúsculas y minúsculas."
941
 
942
- #: ../admin/config/index.php:222
943
- msgid "Advanced"
944
- msgstr "Avanzados"
945
-
946
- #: ../admin/config/index.php:225
947
- #, fuzzy
948
- msgid "Session Duration"
949
- msgstr "Visitas"
950
-
951
- #: ../admin/config/index.php:225
952
- #, fuzzy
953
- msgid ""
954
- "How many seconds should a human session last? Google Analytics sets it to "
955
- "1800 seconds."
956
- msgstr ""
957
- "¿Cuántos segundos debe durar una sesión humana en su sitio? Google Analytics "
958
- "lo establece en 1.800 segundos."
959
-
960
- #: ../admin/config/index.php:226
961
- msgid "Extend Session"
962
- msgstr "Extender Sesión"
963
-
964
- #: ../admin/config/index.php:226
965
- msgid "Extend the duration of a session each time the user visits a new page."
966
- msgstr ""
967
- "Extender la duración de una sesión cada vez que el usuario visita una página "
968
- "nueva."
969
-
970
- #: ../admin/config/index.php:227
971
- msgid "Enable CDN"
972
- msgstr "Habilitar CDN"
973
-
974
- #: ../admin/config/index.php:227
975
- msgid ""
976
- "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
977
- "by serving our tracking code from their fast and reliable network (free "
978
- "service)."
979
- msgstr ""
980
- "Uso <a href='http://www.jsdelivr.com/' target='_blank'> JSDelivr </a> 's "
981
- "CDN, sirviendo nuestro código de seguimiento de su red rápida y confiable "
982
- "(servicio gratuito)."
983
-
984
- #: ../admin/config/index.php:228
985
- msgid "Extensions to Track"
986
- msgstr "Extensiones a rastreo"
987
-
988
- #: ../admin/config/index.php:228
989
- msgid ""
990
- "List all the file extensions that you want to be treated as Downloads. "
991
- "Please note that links pointing to external resources (i.e. PDFs on a "
992
- "different website) are considered Downloads and not Outbound Links (and "
993
- "tracked as such), if their extension matches one of the ones listed here "
994
- "below."
995
- msgstr ""
996
- "Enlista todas las extensiones de archivo que desea sean tratadas como "
997
- "descargas. Por favor, tenga en cuenta que los enlaces que apuntan a recursos "
998
- "externos (es decir, archivos PDF en un sitio web diferente) se consideran "
999
- "Descargas y no Vínculos salientes (y rastreado como tal), si su extensión "
1000
- "coincide con uno de los que se enumeran a continuación."
1001
-
1002
- #: ../admin/config/index.php:230
1003
- msgid "Pages not belonging to this site"
1004
- msgstr ""
1005
-
1006
- #: ../admin/config/index.php:231
1007
- msgid ""
1008
- "Add the following code to all the non-WP pages you want to track, right "
1009
- "before the closing BODY tag"
1010
- msgstr ""
1011
-
1012
- #: ../admin/config/index.php:241
1013
- #, fuzzy
1014
- msgid "Allow External Domains"
1015
- msgstr "Enlaces Externos Hostiles"
1016
-
1017
- #: ../admin/config/index.php:241
1018
- msgid ""
1019
- "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
1020
- "header is present on the requested resource, when using the external "
1021
- "tracking code here above, list the domains (complete with scheme, separated "
1022
- "by commas) you would like to allow. For example: <code>http://my.domain.ext</"
1023
- "code> (no trailing slash). Please see <a href='http://www.w3.org/TR/cors/"
1024
- "#security' target='_blank'>this W3 resource</a> for more information on the "
1025
- "security implications of allowing CORS requests."
1026
- msgstr ""
1027
-
1028
- #: ../admin/config/index.php:243
1029
- msgid "Debug Mode"
1030
- msgstr ""
1031
-
1032
- #: ../admin/config/index.php:243
1033
- msgid "Display the SQL queries used to retrieve the data."
1034
- msgstr ""
1035
-
1036
- #: ../admin/config/index.php:244
1037
- msgid "IP Lookup"
1038
- msgstr "Búsqueda de IP"
1039
-
1040
- #: ../admin/config/index.php:244
1041
- msgid "Customize the Geolocation service to be used in the reports."
1042
- msgstr ""
1043
- "Personalizar el servicio de Geolocalización de ser utilizado en los informes."
1044
-
1045
- #: ../admin/config/index.php:245
1046
- msgid "Enable UAN"
1047
- msgstr "Habilitar UAN"
1048
-
1049
- #: ../admin/config/index.php:245
1050
- #, fuzzy
1051
- msgid ""
1052
- "Send anonymous data about user agents to our server for analysis. This "
1053
- "allows us to contribute to the <a href='http://browscap.org/' "
1054
- "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
1055
- "Slimstat's browser detection functionality. It also enables our transparent "
1056
- "ads network. No worries, your site will not be affected in any way."
1057
- msgstr ""
1058
- "Recopilar datos sobre los agentes de usuario desconocidos, y enviarlos de "
1059
- "forma anónima a nuestro servidor para su análisis. Esto nos permite "
1060
- "contribuir con el proyecto <a href='http://browscap.co/' target='_blank'> "
1061
- "opensource BrowsCap </a>, y mejorar la precisión de la funcionalidad de "
1062
- "detección de navegador del SLIMStat."
1063
-
1064
- #: ../admin/config/index.php:250
1065
  msgid "Maintenance"
1066
  msgstr "Mantenimiento"
1067
 
 
 
 
 
 
 
1068
  #: ../admin/config/maintenance.php:16
1069
  #, fuzzy
1070
  msgid ""
@@ -1074,26 +1001,26 @@ msgstr ""
1074
  "¡Felicidades! WP SLIMStat está ahora optimizado para <a href=\"http://www."
1075
  "youtube.com/watch?v=ygE01sOhzz0\" target=\"_blank\"> velocidad ridícula </a>."
1076
 
1077
- #: ../admin/config/maintenance.php:23
1078
  #, fuzzy
1079
  msgid "Indexing has been disabled. Enjoy the extra database space!"
1080
  msgstr ""
1081
  "Indexación se ha desactivado con éxito. Disfrute del espacio de base de "
1082
  "datos adicional ¡que acaba de ganar!"
1083
 
1084
- #: ../admin/config/maintenance.php:35
1085
  msgid "records deleted from your database."
1086
  msgstr "Registros eliminados de la base de datos."
1087
 
1088
- #: ../admin/config/maintenance.php:40
1089
  msgid "The geolocation database has been uninstalled from your server."
1090
  msgstr ""
1091
 
1092
- #: ../admin/config/maintenance.php:50
1093
  msgid "The geolocation database has been installed on your server."
1094
  msgstr ""
1095
 
1096
- #: ../admin/config/maintenance.php:158
1097
  msgid ""
1098
  "Your data was successfully imported. You may now drop the old tables: "
1099
  "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
@@ -1102,54 +1029,78 @@ msgid ""
1102
  "delete the old tables."
1103
  msgstr ""
1104
 
1105
- #: ../admin/config/maintenance.php:169
1106
  msgid "Your reports were successfully restored to their default arrangement."
1107
  msgstr ""
1108
  "Sus informes fueron restaurados con éxito a su disposición de forma "
1109
  "predeterminada."
1110
 
1111
- #: ../admin/config/maintenance.php:179
1112
  #, fuzzy
1113
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1114
  msgstr "Sus tablas WP SLIMStat han sido convertidas correctamente a. InnoDB"
1115
 
1116
- #: ../admin/config/maintenance.php:185
1117
  #, fuzzy
1118
  msgid "All the archived records were successfully deleted."
1119
  msgstr "Todos los registros se han eliminado con éxito."
1120
 
1121
- #: ../admin/config/maintenance.php:193
1122
  msgid "All the records were successfully deleted."
1123
  msgstr "Todos los registros se han eliminado con éxito."
1124
 
1125
- #: ../admin/config/maintenance.php:215
1126
  msgid "Debugging"
1127
  msgstr ""
1128
 
1129
- #: ../admin/config/maintenance.php:218
1130
- msgid "Tracker Error Code"
1131
- msgstr ""
 
1132
 
1133
- #: ../admin/config/maintenance.php:220
1134
  #, fuzzy
1135
  msgid "recorded on"
1136
  msgstr "Palabras clave"
1137
 
1138
- #: ../admin/config/maintenance.php:220
1139
  msgid "No Errors so far"
1140
  msgstr ""
1141
 
1142
- #: ../admin/config/maintenance.php:221
1143
  msgid ""
1144
  "The information here above is useful to troubleshoot issues with the "
1145
- "tracker. Please include this code when sending a support request."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1146
  msgstr ""
1147
 
1148
- #: ../admin/config/maintenance.php:225
1149
  msgid "Layout"
1150
  msgstr ""
1151
 
1152
- #: ../admin/config/maintenance.php:228
1153
  #, fuzzy
1154
  msgid ""
1155
  "Are you sure you want to restore the default arrangement of your reports?"
@@ -1157,11 +1108,11 @@ msgstr ""
1157
  "¿Está seguro de que desea restaurar la disposición por defecto de sus "
1158
  "informes?"
1159
 
1160
- #: ../admin/config/maintenance.php:228
1161
  msgid "No Panic Button"
1162
  msgstr "Botón No Pánico"
1163
 
1164
- #: ../admin/config/maintenance.php:230
1165
  #, fuzzy
1166
  msgid ""
1167
  "Reset the default arrangement of your reports. Helpful when, for some "
@@ -1171,89 +1122,89 @@ msgstr ""
1171
  "Cambiar la disposición por defecto de sus informes. Útil cuando, por alguna "
1172
  "razón, los informes desaparecen de sus paneles."
1173
 
1174
- #: ../admin/config/maintenance.php:234
1175
  msgid "Data Maintenance"
1176
  msgstr "Mantenimiento de Datos"
1177
 
1178
- #: ../admin/config/maintenance.php:237
1179
  #, fuzzy
1180
  msgid "Delete pageviews where"
1181
  msgstr "Filtrar páginas visitadas dondé:"
1182
 
1183
- #: ../admin/config/maintenance.php:251 ../admin/view/index.php:16
1184
  msgid "equals"
1185
  msgstr "es igual a"
1186
 
1187
- #: ../admin/config/maintenance.php:252 ../admin/view/index.php:17
1188
  msgid "is not equal to"
1189
  msgstr "no es igual a"
1190
 
1191
- #: ../admin/config/maintenance.php:253 ../admin/view/index.php:18
1192
  #, fuzzy
1193
  msgid "contains"
1194
  msgstr "Contiene"
1195
 
1196
- #: ../admin/config/maintenance.php:254 ../admin/view/index.php:19
1197
  msgid "is included in"
1198
  msgstr ""
1199
 
1200
- #: ../admin/config/maintenance.php:255 ../admin/view/index.php:20
1201
  #, fuzzy
1202
  msgid "does not contain"
1203
  msgstr "No contiene"
1204
 
1205
- #: ../admin/config/maintenance.php:256 ../admin/view/index.php:21
1206
  #, fuzzy
1207
  msgid "starts with"
1208
  msgstr "Empieza por"
1209
 
1210
- #: ../admin/config/maintenance.php:257 ../admin/view/index.php:22
1211
  #, fuzzy
1212
  msgid "ends with"
1213
  msgstr "Acaba en"
1214
 
1215
- #: ../admin/config/maintenance.php:258 ../admin/view/index.php:23
1216
  msgid "sounds like"
1217
  msgstr "suena como"
1218
 
1219
- #: ../admin/config/maintenance.php:259 ../admin/view/index.php:24
1220
  msgid "is greater than"
1221
  msgstr "es mayor que"
1222
 
1223
- #: ../admin/config/maintenance.php:260 ../admin/view/index.php:25
1224
  msgid "is less than"
1225
  msgstr "es menor que"
1226
 
1227
- #: ../admin/config/maintenance.php:261 ../admin/view/index.php:27
1228
  msgid "matches"
1229
  msgstr "coincide"
1230
 
1231
- #: ../admin/config/maintenance.php:262 ../admin/view/index.php:28
1232
  #, fuzzy
1233
  msgid "does not match"
1234
  msgstr "No contiene"
1235
 
1236
- #: ../admin/config/maintenance.php:263 ../admin/view/index.php:29
1237
  msgid "is empty"
1238
  msgstr "está vacío"
1239
 
1240
- #: ../admin/config/maintenance.php:264 ../admin/view/index.php:30
1241
  msgid "is not empty"
1242
  msgstr "no está vacío"
1243
 
1244
- #: ../admin/config/maintenance.php:267 ../admin/view/index.php:42
1245
  #: ../admin/view/index.php:105
1246
  msgid "Apply"
1247
  msgstr "Aplicar"
1248
 
1249
- #: ../admin/config/maintenance.php:268
1250
  msgid ""
1251
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1252
  msgstr ""
1253
  "¿Está seguro que desea eliminar PERMANENTEMENTE estos registros de su base "
1254
  "de datos?"
1255
 
1256
- #: ../admin/config/maintenance.php:275
1257
  msgid ""
1258
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1259
  "database?"
@@ -1261,12 +1212,12 @@ msgstr ""
1261
  "¿Está seguro que quiere BORRAR PERMANENTEMENTE TODOS los registros de su "
1262
  "base de datos?"
1263
 
1264
- #: ../admin/config/maintenance.php:275
1265
  #, fuzzy
1266
  msgid "Delete All Records"
1267
  msgstr "Paginas visitadas"
1268
 
1269
- #: ../admin/config/maintenance.php:278
1270
  #, fuzzy
1271
  msgid ""
1272
  "Erase all the information collected so far by Slimstat, including the "
@@ -1275,7 +1226,7 @@ msgstr ""
1275
  "Borrar toda la información recopilada hasta el momento por WP SLIMStat. Esta "
1276
  "<strong> operación no </strong> restablece la configuración."
1277
 
1278
- #: ../admin/config/maintenance.php:284
1279
  #, fuzzy
1280
  msgid ""
1281
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
@@ -1284,20 +1235,20 @@ msgstr ""
1284
  "¿Está seguro que quiere BORRAR PERMANENTEMENTE TODOS los registros de su "
1285
  "base de datos?"
1286
 
1287
- #: ../admin/config/maintenance.php:284
1288
  #, fuzzy
1289
  msgid "Delete Archive"
1290
  msgstr "Filtrar páginas visitadas dondé:"
1291
 
1292
- #: ../admin/config/maintenance.php:287
1293
  msgid "Erase all the archived records. This operation cannot be undone."
1294
  msgstr ""
1295
 
1296
- #: ../admin/config/maintenance.php:293
1297
  msgid "Improve Performance"
1298
  msgstr "Mejorar el rendimiento"
1299
 
1300
- #: ../admin/config/maintenance.php:297
1301
  msgid ""
1302
  "Please note that you will need about 30% more DB space to store the extra "
1303
  "information required."
@@ -1305,11 +1256,11 @@ msgstr ""
1305
  "Por favor, tenga en cuenta que necesitará un 30% más de espacio BD para "
1306
  "almacenar la información adicional que se requiere."
1307
 
1308
- #: ../admin/config/maintenance.php:301
1309
  msgid "Save DB Space"
1310
  msgstr "Guardar Espacio BD"
1311
 
1312
- #: ../admin/config/maintenance.php:304
1313
  #, fuzzy
1314
  msgid ""
1315
  "Please note that by removing table indexes, Slimstat's performance will be "
@@ -1318,46 +1269,46 @@ msgstr ""
1318
  "Tenga en cuenta que al eliminar los índices de tabla, el rendimiento de WP "
1319
  "SLIMStat se verá afectado."
1320
 
1321
- #: ../admin/config/maintenance.php:311
1322
  msgid ""
1323
  "Hold on tight, we are about to import all your old data. Are you sure you "
1324
  "want to proceed?"
1325
  msgstr ""
1326
 
1327
- #: ../admin/config/maintenance.php:311
1328
  #, fuzzy
1329
  msgid "Import old data"
1330
  msgstr "Importar y Exportar"
1331
 
1332
- #: ../admin/config/maintenance.php:314
1333
  msgid ""
1334
  "Import all the records from the old table structure. No data will be deleted "
1335
  "from your database."
1336
  msgstr ""
1337
 
1338
- #: ../admin/config/maintenance.php:318
1339
  msgid "MaxMind IP to Country"
1340
  msgstr ""
1341
 
1342
- #: ../admin/config/maintenance.php:324
1343
  msgid ""
1344
  "Do you want to download and install the geolocation database from MaxMind's "
1345
  "server?"
1346
  msgstr ""
1347
 
1348
- #: ../admin/config/maintenance.php:324
1349
  msgid "Install GeoLite DB"
1350
  msgstr ""
1351
 
1352
- #: ../admin/config/maintenance.php:327
1353
  msgid "Do you want to uninstall the geolocation database?"
1354
  msgstr ""
1355
 
1356
- #: ../admin/config/maintenance.php:327
1357
  msgid "Uninstall GeoLite DB"
1358
  msgstr ""
1359
 
1360
- #: ../admin/config/maintenance.php:331
1361
  msgid ""
1362
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1363
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
@@ -1367,46 +1318,114 @@ msgid ""
1367
  "enable this functionality."
1368
  msgstr ""
1369
 
1370
- #: ../admin/config/maintenance.php:336
1371
- msgid "Import and Export"
1372
- msgstr "Importar y Exportar"
1373
-
1374
- #: ../admin/config/maintenance.php:340
1375
- #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1376
  msgid ""
1377
- "Here below you can find the current configuration string for Slimstat. You "
1378
- "can update your settings by pasting a new string inside the text area and "
1379
- "clicking the Import button."
1380
  msgstr ""
1381
- "Aquí abajo puede encontrar la cadena actual de configuración para WP "
1382
- "SlimStat. Puede actualizar su configuración pegando una nueva cadena aquí "
1383
- "abajo y haciendo clic en Importar."
1384
 
1385
- #: ../admin/config/maintenance.php:345
1386
- msgid "Import"
1387
- msgstr "Importar"
1388
-
1389
- #: ../admin/config/maintenance.php:346
1390
- msgid "Are you sure you want to OVERWRITE your current settings?"
1391
- msgstr "¿Seguro de que desea sobrescribir la configuración actual?"
1392
 
1393
- #: ../admin/config/maintenance.php:351
1394
- msgid "Database Information"
1395
- msgstr "Información Base de datos"
1396
 
1397
- #: ../admin/config/maintenance.php:354
1398
  #, fuzzy
1399
- msgid "Engine"
1400
- msgstr "Motores de Búsqueda"
1401
 
1402
- #: ../admin/config/maintenance.php:358
1403
- msgid "switch to InnoDB"
1404
- msgstr "cambiar a InnoDB"
 
1405
 
1406
- #: ../admin/config/maintenance.php:369
1407
  #, fuzzy
1408
- msgid "records"
1409
- msgstr "Palabras clave"
 
 
 
 
1410
 
1411
  #: ../admin/view/index.php:26
1412
  msgid "is between (x,y)"
@@ -1416,11 +1435,11 @@ msgstr ""
1416
  msgid "Load"
1417
  msgstr ""
1418
 
1419
- #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1307
1420
  msgid "Today"
1421
  msgstr "Hoy"
1422
 
1423
- #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1310
1424
  msgid "Yesterday"
1425
  msgstr "Ayer"
1426
 
@@ -1487,6 +1506,31 @@ msgid ""
1487
  "country of origin."
1488
  msgstr ""
1489
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1490
  #: ../admin/view/right-now.php:12
1491
  msgid "Human"
1492
  msgstr "Humana"
@@ -1503,8 +1547,8 @@ msgstr "Dispositivo Móvil"
1503
  msgid "Syndication Reader"
1504
  msgstr "Lector de Sindicación"
1505
 
1506
- #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:939
1507
- #: ../admin/view/wp-slimstat-reports.php:1616
1508
  msgid "No data to display"
1509
  msgstr "No hay datos que mostrar"
1510
 
@@ -1514,74 +1558,86 @@ msgid "Date and Time"
1514
  msgstr "Fecha/Hora"
1515
 
1516
  # Unknown
1517
- #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:990
1518
- #: ../admin/view/wp-slimstat-reports.php:1730
1519
  msgid "c-"
1520
  msgstr "Unknown"
1521
 
1522
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1523
- #: ../admin/wp-slimstat-admin.php:1009 ../admin/wp-slimstat-admin.php:1049
1524
  msgid "Originating IP"
1525
  msgstr "IP de Origen"
1526
 
1527
- #: ../admin/view/right-now.php:142
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1528
  msgid "Server Latency and Page Speed in milliseconds"
1529
  msgstr ""
1530
 
1531
- #: ../admin/view/right-now.php:142
1532
  msgid "SL"
1533
  msgstr ""
1534
 
1535
- #: ../admin/view/right-now.php:142
1536
  msgid "PS"
1537
  msgstr ""
1538
 
1539
- #: ../admin/view/right-now.php:148
1540
  #, fuzzy
1541
  msgid "Time spent on this page in seconds"
1542
  msgstr "Abrir %s en una nueva ventana"
1543
 
1544
- #: ../admin/view/right-now.php:160 ../admin/view/wp-slimstat-reports.php:1087
1545
- #: ../admin/view/wp-slimstat-reports.php:1091
1546
- #, fuzzy
1547
- msgid "Open this URL in a new window"
1548
- msgstr "Abrir %s en una nueva ventana"
1549
-
1550
- #: ../admin/view/right-now.php:163
1551
- msgid "Local search results page"
1552
- msgstr "Página de resultados de búsqueda local"
1553
-
1554
- #: ../admin/view/right-now.php:171 ../admin/view/wp-slimstat-db.php:42
1555
- #: ../admin/wp-slimstat-admin.php:1012 ../admin/wp-slimstat-admin.php:1028
1556
- #, fuzzy
1557
- msgid "Search Terms"
1558
- msgstr "Principales Recursos"
1559
-
1560
- #: ../admin/view/right-now.php:177
1561
  #, fuzzy
1562
  msgid "Open this referrer in a new window"
1563
  msgstr "Abrir referido en una nueva página"
1564
 
1565
- #: ../admin/view/right-now.php:178
1566
  #, fuzzy
1567
  msgid "Open this outbound link in a new window"
1568
  msgstr "Abrir %s en una nueva ventana"
1569
 
1570
- #: ../admin/view/right-now.php:179
1571
  #, fuzzy
1572
  msgid "Content Type"
1573
  msgstr "Contenido"
1574
 
1575
- #: ../admin/view/right-now.php:182
1576
  #, fuzzy
1577
  msgid "Delete this pageview"
1578
  msgstr "Filtrar páginas visitadas dondé:"
1579
 
1580
- #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:1025
 
 
 
 
 
 
 
 
 
 
1581
  msgid "Browser"
1582
  msgstr "Navegador"
1583
 
1584
- #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:1026
1585
  msgid "Country Code"
1586
  msgstr "Código de Pais"
1587
 
@@ -1589,30 +1645,30 @@ msgstr "Código de Pais"
1589
  msgid "IP Address"
1590
  msgstr "Dirección IP"
1591
 
1592
- #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:1029
1593
  msgid "Language Code"
1594
  msgstr "Código de Idioma"
1595
 
1596
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1597
- #: ../admin/wp-slimstat-admin.php:1030
1598
  msgid "Operating System"
1599
  msgstr "Sistema Operativo"
1600
 
1601
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1602
- #: ../admin/wp-slimstat-admin.php:1031
1603
  msgid "Permalink"
1604
  msgstr "Enlace Permanente"
1605
 
1606
- #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:1032
1607
  msgid "Referer"
1608
  msgstr "Referido"
1609
 
1610
- #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:1033
1611
  #, fuzzy
1612
  msgid "Visitor's Name"
1613
  msgstr "Visitantes"
1614
 
1615
- #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:1015
1616
  #, fuzzy
1617
  msgid "Outbound Link"
1618
  msgstr "Enlaces Salientes Recientes"
@@ -1626,22 +1682,22 @@ msgid "-- Advanced filters --"
1626
  msgstr "-- Filtros Avanzados --"
1627
 
1628
  #: ../admin/view/wp-slimstat-db.php:52
1629
- #: ../admin/view/wp-slimstat-reports.php:336
1630
  #, fuzzy
1631
  msgid "Browser Capabilities"
1632
  msgstr "Navegador"
1633
 
1634
- #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:1044
1635
  #, fuzzy
1636
  msgid "Browser Version"
1637
  msgstr "Versión del Navegador"
1638
 
1639
- #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:1045
1640
  #, fuzzy
1641
  msgid "Browser Type"
1642
  msgstr "Navegador"
1643
 
1644
- #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:1014
1645
  #, fuzzy
1646
  msgid "User Agent"
1647
  msgstr "Buscadores"
@@ -1655,15 +1711,15 @@ msgstr "Anotaciones de Gráfica"
1655
  msgid "Server Latency"
1656
  msgstr ""
1657
 
1658
- #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:1047
1659
  msgid "Post Author"
1660
  msgstr "Autor de la entrada(sección)"
1661
 
1662
- #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:1048
1663
  msgid "Post Category ID"
1664
  msgstr "ID de la entrada(sección) de la Categoria"
1665
 
1666
- #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:1050
1667
  #, fuzzy
1668
  msgid "Resource Content Type"
1669
  msgstr "Contenidos Recientes"
@@ -1686,7 +1742,7 @@ msgstr "Resolución de Pantalla"
1686
  msgid "Viewport Size"
1687
  msgstr ""
1688
 
1689
- #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:1052
1690
  #, fuzzy
1691
  msgid "Visit ID"
1692
  msgstr "Visitas"
@@ -1733,7 +1789,7 @@ msgid "Event ID"
1733
  msgstr ""
1734
 
1735
  #: ../admin/view/wp-slimstat-db.php:96
1736
- #: ../admin/view/wp-slimstat-reports.php:1630
1737
  msgid "Type"
1738
  msgstr ""
1739
 
@@ -1756,152 +1812,160 @@ msgstr "director"
1756
  msgid "Offset"
1757
  msgstr ""
1758
 
1759
- #: ../admin/view/wp-slimstat-reports.php:20 ../admin/wp-slimstat-admin.php:649
1760
- #: ../wp-slimstat.php:1783
1761
  msgid "Access Log"
1762
  msgstr ""
1763
 
1764
- #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:650
1765
- #: ../admin/wp-slimstat-admin.php:665 ../wp-slimstat.php:1784
1766
  msgid "Overview"
1767
  msgstr "Visión general"
1768
 
1769
- #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:651
1770
- #: ../admin/wp-slimstat-admin.php:666 ../wp-slimstat.php:1785
1771
  msgid "Audience"
1772
  msgstr ""
1773
 
1774
- #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:652
1775
- #: ../admin/wp-slimstat-admin.php:667 ../wp-slimstat.php:1786
1776
  msgid "Site Analysis"
1777
  msgstr ""
1778
 
1779
- #: ../admin/view/wp-slimstat-reports.php:24
1780
- #: ../admin/view/wp-slimstat-reports.php:461
1781
- #: ../admin/wp-slimstat-admin.php:653 ../admin/wp-slimstat-admin.php:668
1782
- #: ../wp-slimstat.php:1787
1783
  msgid "Traffic Sources"
1784
  msgstr "Origen del Tráfico"
1785
 
1786
- #: ../admin/view/wp-slimstat-reports.php:25 ../admin/wp-slimstat-admin.php:654
1787
- #: ../admin/wp-slimstat-admin.php:669 ../wp-slimstat.php:1788
1788
- msgid "Map Overlay"
1789
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
1790
 
1791
- #: ../admin/view/wp-slimstat-reports.php:74
1792
  msgid "Chart controls"
1793
  msgstr "Controles de gráfica"
1794
 
1795
- #: ../admin/view/wp-slimstat-reports.php:74
1796
  msgid "Use your mouse wheel to zoom in and out"
1797
  msgstr "Use su ratón para acercarse y alejarse"
1798
 
1799
- #: ../admin/view/wp-slimstat-reports.php:74
1800
  msgid "While zooming in, drag the chart to move to a different area"
1801
  msgstr "Al acercarse, arrastre la gráfica para mverla a otra área"
1802
 
1803
- #: ../admin/view/wp-slimstat-reports.php:74
1804
- msgid "Double click on an empty region to reset the zoom level"
1805
  msgstr ""
1806
- "Haga doble clic en una región vacía para resetear el nivel de acercamiento"
1807
 
1808
- #: ../admin/view/wp-slimstat-reports.php:77
1809
- msgid ""
1810
- "Social Sharing Analytics <a href=\"http://getsocial.io/?utm_source=slimstat"
1811
- "\">powered by GetSocial</a>"
1812
- msgstr ""
1813
-
1814
- #: ../admin/view/wp-slimstat-reports.php:84
1815
  #, fuzzy
1816
  msgid "Visitors Activity"
1817
  msgstr "Bitácora de actividades"
1818
 
1819
- #: ../admin/view/wp-slimstat-reports.php:93
1820
  #, fuzzy
1821
  msgid "Color codes"
1822
  msgstr "Código de Pais"
1823
 
1824
- #: ../admin/view/wp-slimstat-reports.php:93
1825
  #, fuzzy
1826
  msgid "From search result page"
1827
  msgstr "Desde una página con resultados de búsqueda"
1828
 
1829
- #: ../admin/view/wp-slimstat-reports.php:93
1830
- #: ../admin/wp-slimstat-admin.php:1007
1831
  #, fuzzy
1832
  msgid "Known Visitor"
1833
  msgstr "Palabras clave recientes"
1834
 
1835
- #: ../admin/view/wp-slimstat-reports.php:93
1836
  #, fuzzy
1837
  msgid "Known Users"
1838
  msgstr "Navegadores recientes"
1839
 
1840
- #: ../admin/view/wp-slimstat-reports.php:93
1841
  msgid "Other Humans"
1842
  msgstr "Otros seres humanos"
1843
 
1844
- #: ../admin/view/wp-slimstat-reports.php:93
1845
  msgid "Bot or Crawler"
1846
  msgstr "Bot o Crawler"
1847
 
1848
- #: ../admin/view/wp-slimstat-reports.php:107
1849
  #, fuzzy
1850
  msgid "About Slimstat"
1851
  msgstr "Acerca de WP-SlimStat"
1852
 
1853
- #: ../admin/view/wp-slimstat-reports.php:117
1854
  #, fuzzy
1855
  msgid "Traffic at a Glance"
1856
  msgstr "Un vistazo"
1857
 
1858
- #: ../admin/view/wp-slimstat-reports.php:127
1859
  #, fuzzy
1860
  msgid "Currently Online"
1861
  msgstr "Filtros Actuales:"
1862
 
1863
- #: ../admin/view/wp-slimstat-reports.php:140
1864
  #, fuzzy
1865
  msgid "Recent Search Terms"
1866
  msgstr "Búsquedas Internas Recientes"
1867
 
1868
- #: ../admin/view/wp-slimstat-reports.php:150
1869
  msgid "Keywords used by your visitors to find your website on a search engine."
1870
  msgstr ""
1871
  "Palabras clave utilizadas por los visitantes para encontrar su sitio en un "
1872
  "motor de búsqueda."
1873
 
1874
- #: ../admin/view/wp-slimstat-reports.php:153
1875
  #, fuzzy
1876
- msgid "Top Pages"
1877
  msgstr "Principales Páginas de Salida"
1878
 
1879
- #: ../admin/view/wp-slimstat-reports.php:164
1880
  msgid ""
1881
- "Here a \"page\" is not just a WordPress page type, but any web page on your "
1882
- "website, including posts, products, categories, and so on."
 
 
 
1883
  msgstr ""
1884
 
1885
- #: ../admin/view/wp-slimstat-reports.php:167
1886
  #, fuzzy
1887
  msgid "Top Traffic Sources"
1888
  msgstr "Origen del Tráfico"
1889
 
1890
- #: ../admin/view/wp-slimstat-reports.php:179
1891
  #, fuzzy
1892
  msgid "Top Known Visitors"
1893
  msgstr "Palabras clave recientes"
1894
 
1895
- #: ../admin/view/wp-slimstat-reports.php:190
1896
  #, fuzzy
1897
  msgid "Top Search Terms"
1898
  msgstr "Principales Recursos"
1899
 
1900
- #: ../admin/view/wp-slimstat-reports.php:201
1901
  msgid "Top Countries"
1902
  msgstr "Paises que más visitan"
1903
 
1904
- #: ../admin/view/wp-slimstat-reports.php:210
1905
  #, fuzzy
1906
  msgid ""
1907
  "You can configure Slimstat to ignore a specific Country by setting the "
@@ -1911,11 +1975,11 @@ msgstr ""
1911
  "el establecimiento de el filtro correspondiente en Configuración> SLIMStat> "
1912
  "Filtros."
1913
 
1914
- #: ../admin/view/wp-slimstat-reports.php:213
1915
  msgid "Rankings"
1916
  msgstr "Calificaciones"
1917
 
1918
- #: ../admin/view/wp-slimstat-reports.php:217
1919
  #, fuzzy
1920
  msgid ""
1921
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
@@ -1926,17 +1990,17 @@ msgstr ""
1926
  "para medir el ranking de su sitio. Los valores se actualizan cada 12 horas. "
1927
  "Filtros indicados anteriormente no se aplican a este informe."
1928
 
1929
- #: ../admin/view/wp-slimstat-reports.php:220
1930
  #, fuzzy
1931
  msgid "Top Language Families"
1932
  msgstr "Idiomas"
1933
 
1934
- #: ../admin/view/wp-slimstat-reports.php:233
1935
  #, fuzzy
1936
  msgid "Users Currently Online"
1937
  msgstr "Filtros Actuales:"
1938
 
1939
- #: ../admin/view/wp-slimstat-reports.php:244
1940
  #, fuzzy
1941
  msgid ""
1942
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
@@ -1948,38 +2012,48 @@ msgstr ""
1948
  "visitantes que regresan. Por favor, tenga en cuenta que los visitantes "
1949
  "también incluyen a los usuarios registrados."
1950
 
1951
- #: ../admin/view/wp-slimstat-reports.php:248
 
 
 
 
 
1952
  msgid "Human Visits"
1953
  msgstr "Visitas humanas"
1954
 
1955
- #: ../admin/view/wp-slimstat-reports.php:258
 
 
 
 
 
1956
  #, fuzzy
1957
  msgid "Audience Overview"
1958
  msgstr "Visión general"
1959
 
1960
- #: ../admin/view/wp-slimstat-reports.php:265
1961
  msgid ""
1962
  "Where not otherwise specified, the metrics in this report are referred to "
1963
  "human visitors."
1964
  msgstr ""
1965
 
1966
- #: ../admin/view/wp-slimstat-reports.php:268
1967
  #, fuzzy
1968
  msgid "Top Languages"
1969
  msgstr "Idiomas"
1970
 
1971
- #: ../admin/view/wp-slimstat-reports.php:279
1972
  #, fuzzy
1973
  msgid "Top Browsers"
1974
  msgstr "Navegador"
1975
 
1976
- #: ../admin/view/wp-slimstat-reports.php:290
1977
  #, fuzzy
1978
  msgid "Top Service Providers"
1979
  msgstr "Principales Recursos"
1980
 
1981
- #: ../admin/view/wp-slimstat-reports.php:299
1982
- #: ../admin/view/wp-slimstat-reports.php:311
1983
  #, fuzzy
1984
  msgid ""
1985
  "Internet Service Provider: a company which provides other companies or "
@@ -1993,27 +2067,27 @@ msgstr ""
1993
  "IP específicas estableciendo el filtro correspondiente en Configuración> "
1994
  "SLIMStat> Filtros."
1995
 
1996
- #: ../admin/view/wp-slimstat-reports.php:302
1997
  #, fuzzy
1998
  msgid "Top Operating Systems"
1999
  msgstr "Sistemas Operativos"
2000
 
2001
- #: ../admin/view/wp-slimstat-reports.php:314
2002
  #, fuzzy
2003
  msgid "Top Screen Resolutions"
2004
  msgstr "Resolución de Pantalla"
2005
 
2006
- #: ../admin/view/wp-slimstat-reports.php:325
2007
  #, fuzzy
2008
  msgid "Top Viewport Sizes"
2009
  msgstr "Principales Páginas de Salida"
2010
 
2011
- #: ../admin/view/wp-slimstat-reports.php:345
2012
  #, fuzzy
2013
  msgid "Visit Duration"
2014
  msgstr "Visitas"
2015
 
2016
- #: ../admin/view/wp-slimstat-reports.php:352
2017
  #, fuzzy
2018
  msgid ""
2019
  "All values represent the percentages of pageviews within the corresponding "
@@ -2022,36 +2096,36 @@ msgstr ""
2022
  "Mapa del Mundo - Los valores representan el porcentaje de visitas "
2023
  "procedentes de ese país"
2024
 
2025
- #: ../admin/view/wp-slimstat-reports.php:355
2026
  msgid "Recent Countries"
2027
  msgstr "Paises Recientes"
2028
 
2029
- #: ../admin/view/wp-slimstat-reports.php:366
2030
  #, fuzzy
2031
  msgid "Recent Viewport Sizes"
2032
  msgstr "Paises Recientes"
2033
 
2034
- #: ../admin/view/wp-slimstat-reports.php:377
2035
  #, fuzzy
2036
  msgid "Recent Operating Systems"
2037
  msgstr "Sistemas Operativos"
2038
 
2039
- #: ../admin/view/wp-slimstat-reports.php:388
2040
  #, fuzzy
2041
  msgid "Recent Browsers"
2042
  msgstr "Contenidos Recientes"
2043
 
2044
- #: ../admin/view/wp-slimstat-reports.php:399
2045
  #, fuzzy
2046
  msgid "Recent Languages"
2047
  msgstr "Idiomas"
2048
 
2049
- #: ../admin/view/wp-slimstat-reports.php:410
2050
  #, fuzzy
2051
  msgid "Top Browser Families"
2052
  msgstr "Navegador"
2053
 
2054
- #: ../admin/view/wp-slimstat-reports.php:419
2055
  msgid ""
2056
  "This report shows you what user agent families (no version considered) are "
2057
  "popular among your visitors."
@@ -2059,11 +2133,11 @@ msgstr ""
2059
  "Este informe muestra qué familias de agentes de usuarios son populares entre "
2060
  "los visitantes (no considerada la versión)."
2061
 
2062
- #: ../admin/view/wp-slimstat-reports.php:422
2063
  msgid "Top OS Families"
2064
  msgstr "Páginas Recientes no encontradas"
2065
 
2066
- #: ../admin/view/wp-slimstat-reports.php:433
2067
  msgid ""
2068
  "This report shows you what operating system families (no version considered) "
2069
  "are popular among your visitors."
@@ -2071,76 +2145,91 @@ msgstr ""
2071
  "Este informe le muestra qué familias de sistema operativo (sin versión "
2072
  "considerado) son populares entre los visitantes."
2073
 
2074
- #: ../admin/view/wp-slimstat-reports.php:436
2075
  #, fuzzy
2076
  msgid "Recent Users"
2077
  msgstr "Buscadores"
2078
 
2079
- #: ../admin/view/wp-slimstat-reports.php:448
2080
  #, fuzzy
2081
  msgid "Top Users"
2082
  msgstr "Buscadores"
2083
 
2084
- #: ../admin/view/wp-slimstat-reports.php:471
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2085
  #, fuzzy
2086
  msgid "Traffic Summary"
2087
  msgstr "Origen del Tráfico"
2088
 
2089
- #: ../admin/view/wp-slimstat-reports.php:480
2090
  #, fuzzy
2091
  msgid "Top Referring Search Engines"
2092
  msgstr "Motores de Búsqueda"
2093
 
2094
- #: ../admin/view/wp-slimstat-reports.php:507
2095
  msgid "Recent Outbound Links"
2096
  msgstr "Enlaces Salientes Recientes"
2097
 
2098
- #: ../admin/view/wp-slimstat-reports.php:519
2099
  #, fuzzy
2100
  msgid "Recent Posts"
2101
  msgstr "Contenidos Recientes"
2102
 
2103
- #: ../admin/view/wp-slimstat-reports.php:547
2104
  msgid "Recent Feeds"
2105
  msgstr "Feeds Recientes"
2106
 
2107
- #: ../admin/view/wp-slimstat-reports.php:559
2108
  msgid "Recent Pages Not Found"
2109
  msgstr "Páginas Recientes no encontradas"
2110
 
2111
- #: ../admin/view/wp-slimstat-reports.php:571
2112
  msgid "Recent Internal Searches"
2113
  msgstr "Búsquedas Internas Recientes"
2114
 
2115
- #: ../admin/view/wp-slimstat-reports.php:581
2116
  #, fuzzy
2117
  msgid "Searches performed using WordPress' built-in search functionality."
2118
  msgstr ""
2119
  "Búsquedas realizadas utilizando la funcionalidad integrada de búsqueda de "
2120
  "Wordpress"
2121
 
2122
- #: ../admin/view/wp-slimstat-reports.php:584
2123
  #, fuzzy
2124
  msgid "Top Categories"
2125
  msgstr "Principales Páginas de Salida"
2126
 
2127
- #: ../admin/view/wp-slimstat-reports.php:597
2128
  #, fuzzy
2129
  msgid "Top Downloads"
2130
  msgstr "Descargas Recientes"
2131
 
2132
- #: ../admin/view/wp-slimstat-reports.php:608
2133
  msgid ""
2134
  "You can configure Slimstat to track specific file extensions as downloads."
2135
  msgstr ""
2136
 
2137
- #: ../admin/view/wp-slimstat-reports.php:611
2138
  #, fuzzy
2139
  msgid "Recent Events"
2140
  msgstr "Contenidos Recientes"
2141
 
2142
- #: ../admin/view/wp-slimstat-reports.php:620
2143
- #: ../admin/view/wp-slimstat-reports.php:644
2144
  #, fuzzy
2145
  msgid ""
2146
  "This report lists any <em>event</em> occurred on your website. Please refer "
@@ -2150,55 +2239,55 @@ msgstr ""
2150
  "Por favor, consulte las preguntas frecuentes para más información sobre cómo "
2151
  "aprovechar esta funcionalidad."
2152
 
2153
- #: ../admin/view/wp-slimstat-reports.php:623
2154
  #, fuzzy
2155
  msgid "Top Posts"
2156
  msgstr "Paises que más visitan"
2157
 
2158
- #: ../admin/view/wp-slimstat-reports.php:635
2159
  #, fuzzy
2160
  msgid "Top Events"
2161
  msgstr "Principales Páginas de Salida"
2162
 
2163
- #: ../admin/view/wp-slimstat-reports.php:647
2164
  #, fuzzy
2165
  msgid "Top Internal Searches"
2166
  msgstr "Búsquedas Internas Recientes"
2167
 
2168
- #: ../admin/view/wp-slimstat-reports.php:659
2169
  #, fuzzy
2170
  msgid "Recent Categories"
2171
  msgstr "Paises Recientes"
2172
 
2173
- #: ../admin/view/wp-slimstat-reports.php:671
2174
  #, fuzzy
2175
  msgid "Top Pages Not Found"
2176
  msgstr "Principales Páginas de Salida"
2177
 
2178
- #: ../admin/view/wp-slimstat-reports.php:683
2179
  #, fuzzy
2180
  msgid "Top Authors"
2181
  msgstr "Autor de la entrada(sección)"
2182
 
2183
- #: ../admin/view/wp-slimstat-reports.php:694
2184
  #, fuzzy
2185
  msgid "Top Tags"
2186
  msgstr "Principales Páginas de Salida"
2187
 
2188
- #: ../admin/view/wp-slimstat-reports.php:706
2189
  msgid "Recent Downloads"
2190
  msgstr "Descargas Recientes"
2191
 
2192
- #: ../admin/view/wp-slimstat-reports.php:718
2193
  #, fuzzy
2194
  msgid "Top Outbound Links"
2195
  msgstr "Enlaces Salientes Recientes"
2196
 
2197
- #: ../admin/view/wp-slimstat-reports.php:729
2198
  msgid "Your Website"
2199
  msgstr "Su sitio web"
2200
 
2201
- #: ../admin/view/wp-slimstat-reports.php:736
2202
  msgid ""
2203
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2204
  "this report is not affected by the filters set here above."
@@ -2207,139 +2296,135 @@ msgstr ""
2207
  "en cuenta que este informe no es afectado por los filtros establecidos aquí "
2208
  "arriba."
2209
 
2210
- #: ../admin/view/wp-slimstat-reports.php:739
2211
  #, fuzzy
2212
  msgid "Top Bounce Pages"
2213
  msgstr "Porcentaje de Abandonos"
2214
 
2215
- #: ../admin/view/wp-slimstat-reports.php:752
2216
  #, fuzzy
2217
  msgid "Top Exit Pages"
2218
  msgstr "Principales Páginas de Salida"
2219
 
2220
- #: ../admin/view/wp-slimstat-reports.php:765
2221
  #, fuzzy
2222
  msgid "Top Entry Pages"
2223
  msgstr "Principales Páginas de Salida"
2224
 
2225
- #: ../admin/view/wp-slimstat-reports.php:779
 
 
 
 
 
 
 
 
 
 
2226
  msgid "World Map"
2227
  msgstr "Mapa del Mundo"
2228
 
2229
- #: ../admin/view/wp-slimstat-reports.php:852
2230
  msgid "Refresh"
2231
  msgstr "Refrescar"
2232
 
2233
- #: ../admin/view/wp-slimstat-reports.php:889
2234
  #, php-format
2235
  msgid "Results %s - %s of %s"
2236
  msgstr "Resultados %s - %s de %s"
2237
 
2238
- #: ../admin/view/wp-slimstat-reports.php:891
2239
  msgid "Refresh in"
2240
  msgstr "Refrescar en"
2241
 
2242
- #: ../admin/view/wp-slimstat-reports.php:984
2243
  #, fuzzy
2244
  msgid "Category ID"
2245
  msgstr "ID de la entrada(sección) de la Categoria"
2246
 
2247
- #: ../admin/view/wp-slimstat-reports.php:989
2248
- #: ../admin/view/wp-slimstat-reports.php:1004
2249
- #: ../admin/view/wp-slimstat-reports.php:1010
2250
  #, fuzzy
2251
  msgid "Code"
2252
  msgstr "Código OS"
2253
 
2254
- #: ../admin/view/wp-slimstat-reports.php:1005
2255
- #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1424
2256
  msgid "l-"
2257
  msgstr "l-"
2258
 
2259
- #: ../admin/view/wp-slimstat-reports.php:1022
2260
  msgid "URL"
2261
  msgstr ""
2262
 
2263
- #: ../admin/view/wp-slimstat-reports.php:1035
2264
  #, fuzzy
2265
  msgid "Referrer"
2266
  msgstr "Referido"
2267
 
2268
- #: ../admin/view/wp-slimstat-reports.php:1076
2269
- #: ../admin/view/wp-slimstat-reports.php:1325
2270
- #: ../admin/view/wp-slimstat-reports.php:1381
2271
- #: ../admin/view/wp-slimstat-reports.php:1387
2272
- #: ../admin/view/wp-slimstat-reports.php:1393
2273
- #: ../admin/view/wp-slimstat-reports.php:1399
2274
- #: ../admin/view/wp-slimstat-reports.php:1405
2275
- #: ../admin/view/wp-slimstat-reports.php:1411
2276
- #: ../admin/view/wp-slimstat-reports.php:1417
2277
- #: ../admin/view/wp-slimstat-reports.php:1637
2278
  #, fuzzy
2279
  msgid "Hits"
2280
  msgstr "Visitas"
2281
 
2282
- #: ../admin/view/wp-slimstat-reports.php:1129
2283
- #: ../admin/view/wp-slimstat-reports.php:1341
2284
- msgid "Visits"
2285
- msgstr "Visitas"
2286
-
2287
- #: ../admin/view/wp-slimstat-reports.php:1134
2288
- msgid "Domains"
2289
- msgstr "Dominios"
2290
-
2291
- #: ../admin/view/wp-slimstat-reports.php:1252
2292
  #, fuzzy
2293
  msgid "Dataset Size"
2294
  msgstr "Tamaño de los Datos"
2295
 
2296
- #: ../admin/view/wp-slimstat-reports.php:1254
2297
  msgid "Total number of records stored in the database."
2298
  msgstr ""
2299
 
2300
- #: ../admin/view/wp-slimstat-reports.php:1256
2301
  #, fuzzy
2302
  msgid "DB Size"
2303
  msgstr "Tamaño de los Datos"
2304
 
2305
- #: ../admin/view/wp-slimstat-reports.php:1259
2306
  #, fuzzy
2307
  msgid "Tracking Enabled"
2308
  msgstr "Seguimiento Activo"
2309
 
2310
- #: ../admin/view/wp-slimstat-reports.php:1262
2311
  msgid "Javascript Mode"
2312
  msgstr "Modo Javascript"
2313
 
2314
- #: ../admin/view/wp-slimstat-reports.php:1265
2315
  msgid "Tracking Browser Caps"
2316
  msgstr "Caps para rastreo de Navegador"
2317
 
2318
- #: ../admin/view/wp-slimstat-reports.php:1268
2319
  msgid "Auto purge"
2320
  msgstr "Autopurgar"
2321
 
2322
- #: ../admin/view/wp-slimstat-reports.php:1271
2323
  #, fuzzy
2324
  msgid "Oldest pageview"
2325
  msgstr "Visita más larga"
2326
 
2327
- #: ../admin/view/wp-slimstat-reports.php:1272
2328
  #, fuzzy
2329
  msgid "No visits"
2330
  msgstr "Visitantes"
2331
 
2332
- #: ../admin/view/wp-slimstat-reports.php:1274
2333
- #, fuzzy
2334
- msgid "Geolocation"
2335
- msgstr "director"
2336
-
2337
- #: ../admin/view/wp-slimstat-reports.php:1276
2338
  msgid "Date when the MaxMind Geolocation database was last updated."
2339
  msgstr ""
2340
 
2341
- #: ../admin/view/wp-slimstat-reports.php:1287
2342
- #: ../admin/view/wp-slimstat-reports.php:1445
2343
  #, fuzzy
2344
  msgid ""
2345
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
@@ -2348,29 +2433,29 @@ msgstr ""
2348
  "Una petición para cargar un archivo HTML único. WP SlimStat registra un "
2349
  "\"pageview\" cada vez que se ejecuta el código de rastreo."
2350
 
2351
- #: ../admin/view/wp-slimstat-reports.php:1289
2352
  #, fuzzy
2353
  msgid "Days in Range"
2354
  msgstr "Fecha y hora"
2355
 
2356
- #: ../admin/view/wp-slimstat-reports.php:1292
2357
  #, fuzzy
2358
  msgid "Average Daily Pageviews"
2359
  msgstr "Promedio Paginas Visitadas"
2360
 
2361
- #: ../admin/view/wp-slimstat-reports.php:1294
2362
  #, fuzzy
2363
  msgid ""
2364
  "How many pages have been visited on average every day during the current "
2365
  "period."
2366
  msgstr "Cuántas páginas se han visitado en promedio durante el período actual."
2367
 
2368
- #: ../admin/view/wp-slimstat-reports.php:1296
2369
  #, fuzzy
2370
  msgid "From Search Results"
2371
  msgstr "Principales Recursos"
2372
 
2373
- #: ../admin/view/wp-slimstat-reports.php:1298
2374
  msgid ""
2375
  "Visitors who landed on your site after searching for a keyword on Google, "
2376
  "Yahoo, etc."
@@ -2378,7 +2463,7 @@ msgstr ""
2378
  "Visitantes que han llegado a su sitio después de buscar una palabra clave en "
2379
  "Google, yahoo, etc."
2380
 
2381
- #: ../admin/view/wp-slimstat-reports.php:1302
2382
  msgid ""
2383
  "Used to differentiate between multiple requests to download a file from one "
2384
  "internet address (IP) and requests originating from many distinct addresses"
@@ -2387,11 +2472,11 @@ msgstr ""
2387
  "desde una dirección de internet (IP) y peticiones que se originan en muchas "
2388
  "diferentes direcciones"
2389
 
2390
- #: ../admin/view/wp-slimstat-reports.php:1304
2391
  msgid "Last 30 minutes"
2392
  msgstr "Últimos 30 minutos"
2393
 
2394
- #: ../admin/view/wp-slimstat-reports.php:1343
2395
  msgid ""
2396
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2397
  "multiple times if they perform multiple visits."
@@ -2399,15 +2484,15 @@ msgstr ""
2399
  "Una visita es una sesión de cuando mucho 30 minutos.Los visitantes de "
2400
  "regreso se cuentan múltiples veces si llevan a cabo múltiples visitas."
2401
 
2402
- #: ../admin/view/wp-slimstat-reports.php:1347
2403
  msgid "It includes only traffic generated by human visitors."
2404
  msgstr "Incluye sólo tráfico generado por visitantes humanos."
2405
 
2406
- #: ../admin/view/wp-slimstat-reports.php:1349
2407
  msgid "Bounce rate"
2408
  msgstr "Porcentaje de Abandonos"
2409
 
2410
- #: ../admin/view/wp-slimstat-reports.php:1351
2411
  msgid ""
2412
  "Percentage of single-page visits, i.e. visits in which the person left your "
2413
  "site from the entrance page."
@@ -2415,80 +2500,81 @@ msgstr ""
2415
  "Porcentaje de visitas de una página, p. ej. visitas en las cuales la persona "
2416
  "dejó su sitio desde la página de entrada."
2417
 
2418
- #: ../admin/view/wp-slimstat-reports.php:1353
2419
  #, fuzzy
2420
  msgid "Known visitors"
2421
  msgstr "Palabras clave recientes"
2422
 
2423
- #: ../admin/view/wp-slimstat-reports.php:1355
2424
  msgid "Visitors who had previously left a comment on your blog."
2425
  msgstr "Visitantes que han dejado un comentario en su blog previamente."
2426
 
2427
- #: ../admin/view/wp-slimstat-reports.php:1357
2428
  #, fuzzy
2429
  msgid "New visitors"
2430
  msgstr "Visitantes"
2431
 
2432
- #: ../admin/view/wp-slimstat-reports.php:1359
2433
  msgid "Human users who visited your site only once."
2434
  msgstr "Visitantes humanos que visitaron su sitio sólo una vez."
2435
 
2436
- #: ../admin/view/wp-slimstat-reports.php:1361
2437
  msgid "Bots"
2438
  msgstr "Motores de Búsqueda"
2439
 
2440
- #: ../admin/view/wp-slimstat-reports.php:1364
2441
- msgid "Pages per visit"
 
2442
  msgstr "Páginas por visita"
2443
 
2444
- #: ../admin/view/wp-slimstat-reports.php:1367
2445
  msgid "Longest visit"
2446
  msgstr "Visita más larga"
2447
 
2448
- #: ../admin/view/wp-slimstat-reports.php:1368
2449
  #, fuzzy
2450
  msgid "hits"
2451
  msgstr "Visitas"
2452
 
2453
- #: ../admin/view/wp-slimstat-reports.php:1379
2454
  msgid "0 - 30 seconds"
2455
  msgstr "0 - 30 segundos"
2456
 
2457
- #: ../admin/view/wp-slimstat-reports.php:1385
2458
  msgid "31 - 60 seconds"
2459
  msgstr "31 - 60 segundos"
2460
 
2461
- #: ../admin/view/wp-slimstat-reports.php:1391
2462
  msgid "1 - 3 minutes"
2463
  msgstr "1 - 3 minutos"
2464
 
2465
- #: ../admin/view/wp-slimstat-reports.php:1397
2466
  msgid "3 - 5 minutes"
2467
  msgstr "3 - 5 minutos"
2468
 
2469
- #: ../admin/view/wp-slimstat-reports.php:1403
2470
  msgid "5 - 7 minutes"
2471
  msgstr "5 - 7 minutos"
2472
 
2473
- #: ../admin/view/wp-slimstat-reports.php:1409
2474
  msgid "7 - 10 minutes"
2475
  msgstr "7 - 10 minutos"
2476
 
2477
- #: ../admin/view/wp-slimstat-reports.php:1415
2478
  msgid "More than 10 minutes"
2479
  msgstr "Más de 10 minutos"
2480
 
2481
- #: ../admin/view/wp-slimstat-reports.php:1427
2482
  #, fuzzy
2483
  msgid "Average visit duration"
2484
  msgstr "Visitas"
2485
 
2486
- #: ../admin/view/wp-slimstat-reports.php:1447
2487
  #, fuzzy
2488
  msgid "Unique Referrers"
2489
  msgstr "Referidos Únicos"
2490
 
2491
- #: ../admin/view/wp-slimstat-reports.php:1449
2492
  msgid ""
2493
  "A referrer (or referring site) is the site that a visitor previously visited "
2494
  "before following a link to your site."
@@ -2496,12 +2582,12 @@ msgstr ""
2496
  "Un sitio referente (o que refiere) es el sitio al cual el visitante tuvo "
2497
  "acceso antes de seguir un enlace a su sitio."
2498
 
2499
- #: ../admin/view/wp-slimstat-reports.php:1451
2500
  #, fuzzy
2501
  msgid "Direct Pageviews"
2502
  msgstr "Paginas visitadas"
2503
 
2504
- #: ../admin/view/wp-slimstat-reports.php:1453
2505
  msgid ""
2506
  "Visitors who visited the site by typing the URL directly into their browser. "
2507
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -2513,11 +2599,11 @@ msgstr ""
2513
  "hicieron clic en sus favoritos, usaron etiquetas de enlaces en emails, o "
2514
  "enlaces de documentos que no incluyen variables de rastreo."
2515
 
2516
- #: ../admin/view/wp-slimstat-reports.php:1455
2517
  msgid "From a search result"
2518
  msgstr "Desde un resultado de búsqueda"
2519
 
2520
- #: ../admin/view/wp-slimstat-reports.php:1457
2521
  msgid ""
2522
  "Visitors who came to your site via searches on Google or some other search "
2523
  "engine."
@@ -2525,12 +2611,12 @@ msgstr ""
2525
  "Visitantes que llegaron a su sitio después de buscar una palabra clave en "
2526
  "Google, yahoo, etc."
2527
 
2528
- #: ../admin/view/wp-slimstat-reports.php:1459
2529
  #, fuzzy
2530
  msgid "Unique Landing Pages"
2531
  msgstr "IPs Unicas"
2532
 
2533
- #: ../admin/view/wp-slimstat-reports.php:1461
2534
  msgid ""
2535
  "The first page that a user views during a session. This is also known as the "
2536
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -2542,22 +2628,22 @@ msgstr ""
2542
  "Brooklyn,” y llegan a su página de inicio, se cuenta (para esa visita) como "
2543
  "página de entrada."
2544
 
2545
- #: ../admin/view/wp-slimstat-reports.php:1463
2546
  #, fuzzy
2547
  msgid "Bounce Pages"
2548
  msgstr "Porcentaje de Abandonos"
2549
 
2550
- #: ../admin/view/wp-slimstat-reports.php:1465
2551
  #, fuzzy
2552
  msgid "Number of single page visits to your site over the selected period."
2553
  msgstr "Número de visitas a una página en el período seleccionado."
2554
 
2555
- #: ../admin/view/wp-slimstat-reports.php:1467
2556
  #, fuzzy
2557
  msgid "New Visitors Rate"
2558
  msgstr "Visitantes"
2559
 
2560
- #: ../admin/view/wp-slimstat-reports.php:1469
2561
  #, fuzzy
2562
  msgid ""
2563
  "Percentage of single page visits, i.e. visits in which the person left your "
@@ -2566,12 +2652,12 @@ msgstr ""
2566
  "Porcentaje de visitas de una página, p. ej. visitas en las cuales la persona "
2567
  "dejó su sitio desde la página de entrada."
2568
 
2569
- #: ../admin/view/wp-slimstat-reports.php:1471
2570
  #, fuzzy
2571
  msgid "Currently from search engines"
2572
  msgstr "Motores de Búsqueda"
2573
 
2574
- #: ../admin/view/wp-slimstat-reports.php:1473
2575
  msgid ""
2576
  "Visitors who visited the site in the last 5 minutes coming from a search "
2577
  "engine."
@@ -2579,24 +2665,24 @@ msgstr ""
2579
  "Visitantes que visitaron el sitio en los últimos 5 minutos y vienen de un "
2580
  "motor de búsqueda."
2581
 
2582
- #: ../admin/view/wp-slimstat-reports.php:1543
2583
  msgid "Number of pages in your site included in Google's index."
2584
  msgstr "Número de páginas en su sitio incluidas en el índice de Google."
2585
 
2586
- #: ../admin/view/wp-slimstat-reports.php:1544
2587
  msgid "Google Index"
2588
  msgstr "Indice de Google"
2589
 
2590
- #: ../admin/view/wp-slimstat-reports.php:1545
2591
  msgid "Number of pages, according to Google, that link back to your site."
2592
  msgstr ""
2593
  "Número de páginas, de acuerdo a Google, que enlazan de regreso a su sitio."
2594
 
2595
- #: ../admin/view/wp-slimstat-reports.php:1546
2596
  msgid "Google Backlinks"
2597
  msgstr "Backlinks Google"
2598
 
2599
- #: ../admin/view/wp-slimstat-reports.php:1547
2600
  msgid ""
2601
  "How many times the Facebook Like button has been approximately clicked on "
2602
  "your site."
@@ -2604,30 +2690,30 @@ msgstr ""
2604
  "Aproximadamente cuántas veces se ha hecho clic en el botón “Me Gusta” de "
2605
  "Facebook en su sitio."
2606
 
2607
- #: ../admin/view/wp-slimstat-reports.php:1548
2608
  msgid "Facebook Likes"
2609
  msgstr "Me Gusta de Facebook"
2610
 
2611
- #: ../admin/view/wp-slimstat-reports.php:1549
2612
  msgid ""
2613
  "How many times your site has been shared by someone on the social network."
2614
  msgstr ""
2615
  "Cuántas veces ha sido compartido su sitio con alguien en las redes sociales."
2616
 
2617
- #: ../admin/view/wp-slimstat-reports.php:1550
2618
  msgid "Facebook Shares"
2619
  msgstr "Compartidas en Facebook"
2620
 
2621
- #: ../admin/view/wp-slimstat-reports.php:1551
2622
  msgid "How many times links to your website have been clicked on Facebook."
2623
  msgstr "Cuántas veces se ha hecho clic en enlaces a su sitio en Facebook."
2624
 
2625
- #: ../admin/view/wp-slimstat-reports.php:1552
2626
  #, fuzzy
2627
  msgid "Facebook Clicks"
2628
  msgstr "Enlaces Salientes Recientes"
2629
 
2630
- #: ../admin/view/wp-slimstat-reports.php:1553
2631
  msgid ""
2632
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2633
  "traffic data."
@@ -2635,24 +2721,24 @@ msgstr ""
2635
  "Alexa es una compaañ+ía subsidiaria de Amazon.com que proporciona "
2636
  "información de tráfico de datos."
2637
 
2638
- #: ../admin/view/wp-slimstat-reports.php:1554
2639
  msgid "Alexa World Rank"
2640
  msgstr "Clasificación Mundial Alexa."
2641
 
2642
- #: ../admin/view/wp-slimstat-reports.php:1555
2643
  msgid "Alexa Country Rank"
2644
  msgstr "Clasificación por país Alexa"
2645
 
2646
- #: ../admin/view/wp-slimstat-reports.php:1556
2647
  msgid "Alexa Popularity"
2648
  msgstr "Popularidad Alexa"
2649
 
2650
- #: ../admin/view/wp-slimstat-reports.php:1567
2651
  #, fuzzy
2652
  msgid "Content Items"
2653
  msgstr "Contenido"
2654
 
2655
- #: ../admin/view/wp-slimstat-reports.php:1569
2656
  msgid ""
2657
  "This value includes not only posts, but also custom post types, regardless "
2658
  "of their status"
@@ -2660,64 +2746,64 @@ msgstr ""
2660
  "Este valor incluye no sólo publicaciones, sino también tipos de publicación "
2661
  "personalizados, sin importar su estado"
2662
 
2663
- #: ../admin/view/wp-slimstat-reports.php:1571
2664
  #, fuzzy
2665
  msgid "Posts"
2666
  msgstr "Paises que más visitan"
2667
 
2668
- #: ../admin/view/wp-slimstat-reports.php:1574
2669
  #, fuzzy
2670
  msgid "Pages"
2671
  msgstr "Principales Páginas de Salida"
2672
 
2673
- #: ../admin/view/wp-slimstat-reports.php:1577
2674
  msgid "Attachments"
2675
  msgstr ""
2676
 
2677
- #: ../admin/view/wp-slimstat-reports.php:1580
2678
  #, fuzzy
2679
  msgid "Revisions"
2680
  msgstr "Enlace Permanente"
2681
 
2682
- #: ../admin/view/wp-slimstat-reports.php:1583
2683
  #, fuzzy
2684
  msgid "Comments"
2685
  msgstr "Total de Accesos"
2686
 
2687
- #: ../admin/view/wp-slimstat-reports.php:1586
2688
  #, fuzzy
2689
  msgid "Avg Comments per Post"
2690
  msgstr "Promedio de Comentarios por Publicación"
2691
 
2692
- #: ../admin/view/wp-slimstat-reports.php:1589
2693
  msgid "Avg Server Latency"
2694
  msgstr ""
2695
 
2696
- #: ../admin/view/wp-slimstat-reports.php:1591
2697
  msgid ""
2698
  "Latency is the amount of time it takes for the host server to receive and "
2699
  "process a request for a page object. The amount of latency depends largely "
2700
  "on how far away the user is from the server."
2701
  msgstr ""
2702
 
2703
- #: ../admin/view/wp-slimstat-reports.php:1634
2704
  #, fuzzy
2705
  msgid "Coordinates"
2706
  msgstr "Seguimiento Activo"
2707
 
2708
- #: ../admin/view/wp-slimstat-reports.php:1634
2709
  msgid "Date"
2710
  msgstr ""
2711
 
2712
- #: ../admin/view/wp-slimstat-reports.php:1671
2713
  msgid "Error contacting the GetSocial endpoint."
2714
  msgstr ""
2715
 
2716
- #: ../admin/view/wp-slimstat-reports.php:1679
2717
  msgid "Error decoding the GetSocial payload."
2718
  msgstr ""
2719
 
2720
- #: ../admin/view/wp-slimstat-reports.php:1711
2721
  msgid ""
2722
  "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2723
  ">social media metrics and identify your top performing posts.<br/> <a "
@@ -2725,1182 +2811,1184 @@ msgid ""
2725
  msgstr ""
2726
 
2727
  # Unknown
2728
- #: ../admin/view/wp-slimstat-reports.php:1721
2729
  msgid "c-xx"
2730
  msgstr "Unknown"
2731
 
2732
  # Afghanistan
2733
- #: ../admin/view/wp-slimstat-reports.php:1721
2734
  msgid "c-af"
2735
  msgstr "Afghanistan"
2736
 
2737
  # Åland Islands
2738
- #: ../admin/view/wp-slimstat-reports.php:1721
2739
  msgid "c-ax"
2740
  msgstr "Åland Islands"
2741
 
2742
  # Albania
2743
- #: ../admin/view/wp-slimstat-reports.php:1721
2744
  msgid "c-al"
2745
  msgstr "Albania"
2746
 
2747
  # Algeria
2748
- #: ../admin/view/wp-slimstat-reports.php:1721
2749
  msgid "c-dz"
2750
  msgstr "Algeria"
2751
 
2752
  # Andorra
2753
- #: ../admin/view/wp-slimstat-reports.php:1721
2754
  msgid "c-ad"
2755
  msgstr "Andorra"
2756
 
2757
  # Angola
2758
- #: ../admin/view/wp-slimstat-reports.php:1721
2759
  msgid "c-ao"
2760
  msgstr "Angola"
2761
 
2762
  # Anguilla
2763
- #: ../admin/view/wp-slimstat-reports.php:1721
2764
  msgid "c-ai"
2765
  msgstr "Anguilla"
2766
 
2767
  # Antigua and Barbuda
2768
- #: ../admin/view/wp-slimstat-reports.php:1721
2769
  msgid "c-ag"
2770
  msgstr "Antigua and Barbuda"
2771
 
2772
  # Argentina
2773
- #: ../admin/view/wp-slimstat-reports.php:1721
2774
  msgid "c-ar"
2775
  msgstr "Argentina"
2776
 
2777
  # Armenia
2778
- #: ../admin/view/wp-slimstat-reports.php:1721
2779
  msgid "c-am"
2780
  msgstr "Armenia"
2781
 
2782
  # Aruba
2783
- #: ../admin/view/wp-slimstat-reports.php:1721
2784
  msgid "c-aw"
2785
  msgstr "Aruba"
2786
 
2787
  # Australia
2788
- #: ../admin/view/wp-slimstat-reports.php:1721
2789
  msgid "c-au"
2790
  msgstr "Australia"
2791
 
2792
  # Austria
2793
- #: ../admin/view/wp-slimstat-reports.php:1721
2794
  msgid "c-at"
2795
  msgstr "Austria"
2796
 
2797
  # Azerbaijan
2798
- #: ../admin/view/wp-slimstat-reports.php:1721
2799
  msgid "c-az"
2800
  msgstr "Azerbaijan"
2801
 
2802
  # Bahamas
2803
- #: ../admin/view/wp-slimstat-reports.php:1721
2804
  msgid "c-bs"
2805
  msgstr "Bahamas"
2806
 
2807
  # Bahrain
2808
- #: ../admin/view/wp-slimstat-reports.php:1721
2809
  msgid "c-bh"
2810
  msgstr "Bahrain"
2811
 
2812
  # Bangladesh
2813
- #: ../admin/view/wp-slimstat-reports.php:1721
2814
  msgid "c-bd"
2815
  msgstr "Bangladesh"
2816
 
2817
  # Barbados
2818
- #: ../admin/view/wp-slimstat-reports.php:1721
2819
  msgid "c-bb"
2820
  msgstr "Barbados"
2821
 
2822
  # Belarus
2823
- #: ../admin/view/wp-slimstat-reports.php:1721
2824
  msgid "c-by"
2825
  msgstr "Belarus"
2826
 
2827
  # Belgium
2828
- #: ../admin/view/wp-slimstat-reports.php:1721
2829
  msgid "c-be"
2830
  msgstr "Belgium"
2831
 
2832
  # Belize
2833
- #: ../admin/view/wp-slimstat-reports.php:1721
2834
  msgid "c-bz"
2835
  msgstr "Belize"
2836
 
2837
  # Benin
2838
- #: ../admin/view/wp-slimstat-reports.php:1721
2839
  msgid "c-bj"
2840
  msgstr "Benin"
2841
 
2842
  # Bermuda
2843
- #: ../admin/view/wp-slimstat-reports.php:1721
2844
  msgid "c-bm"
2845
  msgstr "Bermuda"
2846
 
2847
  # Bhutan
2848
- #: ../admin/view/wp-slimstat-reports.php:1721
2849
  msgid "c-bt"
2850
  msgstr "Bhutan"
2851
 
2852
  # Bolivia
2853
- #: ../admin/view/wp-slimstat-reports.php:1721
2854
  msgid "c-bo"
2855
  msgstr "Bolivia"
2856
 
2857
  # Bosnia and Herzegovina
2858
- #: ../admin/view/wp-slimstat-reports.php:1721
2859
  msgid "c-ba"
2860
  msgstr "Bosnia and Herzegovina"
2861
 
2862
  # Botswana
2863
- #: ../admin/view/wp-slimstat-reports.php:1721
2864
  msgid "c-bw"
2865
  msgstr "Botswana"
2866
 
2867
  # Brazil
2868
- #: ../admin/view/wp-slimstat-reports.php:1721
2869
  msgid "c-br"
2870
  msgstr "Brazil"
2871
 
2872
  # Brunei Darussalam
2873
- #: ../admin/view/wp-slimstat-reports.php:1721
2874
  msgid "c-bn"
2875
  msgstr "Brunei Darussalam"
2876
 
2877
  # Bulgaria
2878
- #: ../admin/view/wp-slimstat-reports.php:1721
2879
  msgid "c-bg"
2880
  msgstr "Bulgaria"
2881
 
2882
  # Burkina Faso
2883
- #: ../admin/view/wp-slimstat-reports.php:1721
2884
  msgid "c-bf"
2885
  msgstr "Burkina Faso"
2886
 
2887
  # Burundi
2888
- #: ../admin/view/wp-slimstat-reports.php:1721
2889
  msgid "c-bi"
2890
  msgstr "Burundi"
2891
 
2892
  # Cambodia
2893
- #: ../admin/view/wp-slimstat-reports.php:1721
2894
  msgid "c-kh"
2895
  msgstr "Cambodia"
2896
 
2897
  # Cameroon
2898
- #: ../admin/view/wp-slimstat-reports.php:1721
2899
  msgid "c-cm"
2900
  msgstr "Cameroon"
2901
 
2902
  # Canada
2903
- #: ../admin/view/wp-slimstat-reports.php:1721
2904
  msgid "c-ca"
2905
  msgstr "Canada"
2906
 
2907
  # Cape Verde
2908
- #: ../admin/view/wp-slimstat-reports.php:1721
2909
  msgid "c-cv"
2910
  msgstr "Cape Verde"
2911
 
2912
  # Cayman Islands
2913
- #: ../admin/view/wp-slimstat-reports.php:1721
2914
  msgid "c-ky"
2915
  msgstr "Cayman Islands"
2916
 
2917
  # Central African Republic
2918
- #: ../admin/view/wp-slimstat-reports.php:1721
2919
  msgid "c-cf"
2920
  msgstr "Central African Republic"
2921
 
2922
  # Chad
2923
- #: ../admin/view/wp-slimstat-reports.php:1721
2924
  msgid "c-td"
2925
  msgstr "Chad"
2926
 
2927
  # Chile
2928
- #: ../admin/view/wp-slimstat-reports.php:1721
2929
  msgid "c-cl"
2930
  msgstr "Chile"
2931
 
2932
  # China
2933
- #: ../admin/view/wp-slimstat-reports.php:1721
2934
  msgid "c-cn"
2935
  msgstr "China"
2936
 
2937
  # Colombia
2938
- #: ../admin/view/wp-slimstat-reports.php:1721
2939
  msgid "c-co"
2940
  msgstr "Colombia"
2941
 
2942
  # Comoros
2943
- #: ../admin/view/wp-slimstat-reports.php:1721
2944
  msgid "c-km"
2945
  msgstr "Comoros"
2946
 
2947
  # Congo
2948
- #: ../admin/view/wp-slimstat-reports.php:1721
2949
  msgid "c-cg"
2950
  msgstr "Congo"
2951
 
2952
  # The Democratic Republic of the Congo
2953
- #: ../admin/view/wp-slimstat-reports.php:1721
2954
  msgid "c-cd"
2955
  msgstr "The Democratic Republic of the Congo"
2956
 
2957
  # Costa Rica
2958
- #: ../admin/view/wp-slimstat-reports.php:1721
2959
  msgid "c-cr"
2960
  msgstr "Costa Rica"
2961
 
2962
  # Côte d'Ivoire
2963
- #: ../admin/view/wp-slimstat-reports.php:1721
2964
  msgid "c-ci"
2965
  msgstr "Côte d'Ivoire"
2966
 
2967
  # Croatia
2968
- #: ../admin/view/wp-slimstat-reports.php:1721
2969
  msgid "c-hr"
2970
  msgstr "Croatia"
2971
 
2972
  # Cuba
2973
- #: ../admin/view/wp-slimstat-reports.php:1721
2974
  msgid "c-cu"
2975
  msgstr "Cuba"
2976
 
2977
  # Cyprus
2978
- #: ../admin/view/wp-slimstat-reports.php:1721
2979
  msgid "c-cy"
2980
  msgstr "Cyprus"
2981
 
2982
  # Czech Republic
2983
- #: ../admin/view/wp-slimstat-reports.php:1721
2984
  msgid "c-cz"
2985
  msgstr "Czech Republic"
2986
 
2987
  # Denmark
2988
- #: ../admin/view/wp-slimstat-reports.php:1721
2989
  msgid "c-dk"
2990
  msgstr "Denmark"
2991
 
2992
  # Djibouti
2993
- #: ../admin/view/wp-slimstat-reports.php:1721
2994
  msgid "c-dj"
2995
  msgstr "Djibouti"
2996
 
2997
  # Dominica
2998
- #: ../admin/view/wp-slimstat-reports.php:1721
2999
  msgid "c-dm"
3000
  msgstr "Dominica"
3001
 
3002
  # Dominican Republic
3003
- #: ../admin/view/wp-slimstat-reports.php:1721
3004
  msgid "c-do"
3005
  msgstr "Dominican Republic"
3006
 
3007
  # Ecuador
3008
- #: ../admin/view/wp-slimstat-reports.php:1721
3009
  msgid "c-ec"
3010
  msgstr "Ecuador"
3011
 
3012
  # Egypt
3013
- #: ../admin/view/wp-slimstat-reports.php:1721
3014
  msgid "c-eg"
3015
  msgstr "Egypt"
3016
 
3017
  # El Salvador
3018
- #: ../admin/view/wp-slimstat-reports.php:1721
3019
  msgid "c-sv"
3020
  msgstr "El Salvador"
3021
 
3022
  # Equatorial Guinea
3023
- #: ../admin/view/wp-slimstat-reports.php:1721
3024
  msgid "c-gq"
3025
  msgstr "Equatorial Guinea"
3026
 
3027
  # Eritrea
3028
- #: ../admin/view/wp-slimstat-reports.php:1721
3029
  msgid "c-er"
3030
  msgstr "Eritrea"
3031
 
3032
  # Estonia
3033
- #: ../admin/view/wp-slimstat-reports.php:1721
3034
  msgid "c-ee"
3035
  msgstr "Estonia"
3036
 
3037
  # Ethiopia
3038
- #: ../admin/view/wp-slimstat-reports.php:1721
3039
  msgid "c-et"
3040
  msgstr "Ethiopia"
3041
 
3042
  # Faroe Islands
3043
- #: ../admin/view/wp-slimstat-reports.php:1721
3044
  msgid "c-fo"
3045
  msgstr "Faroe Islands"
3046
 
3047
  # Falkland Islands (Malvinas)
3048
- #: ../admin/view/wp-slimstat-reports.php:1721
3049
  msgid "c-fk"
3050
  msgstr "Falkland Islands (Malvinas)"
3051
 
3052
  # Fiji
3053
- #: ../admin/view/wp-slimstat-reports.php:1721
3054
  msgid "c-fj"
3055
  msgstr "Fiji"
3056
 
3057
  # Finland
3058
- #: ../admin/view/wp-slimstat-reports.php:1721
3059
  msgid "c-fi"
3060
  msgstr "Finland"
3061
 
3062
  # France
3063
- #: ../admin/view/wp-slimstat-reports.php:1721
3064
  msgid "c-fr"
3065
  msgstr "France"
3066
 
3067
  # French Guiana
3068
- #: ../admin/view/wp-slimstat-reports.php:1721
3069
  msgid "c-gf"
3070
  msgstr "French Guiana"
3071
 
3072
  # Gabon
3073
- #: ../admin/view/wp-slimstat-reports.php:1721
3074
  msgid "c-ga"
3075
  msgstr "Gabon"
3076
 
3077
  # Gambia
3078
- #: ../admin/view/wp-slimstat-reports.php:1721
3079
  msgid "c-gm"
3080
  msgstr "Gambia"
3081
 
3082
  # Georgia
3083
- #: ../admin/view/wp-slimstat-reports.php:1721
3084
  msgid "c-ge"
3085
  msgstr "Georgia"
3086
 
3087
  # Germany
3088
- #: ../admin/view/wp-slimstat-reports.php:1721
3089
  msgid "c-de"
3090
  msgstr "Germany"
3091
 
3092
  # Ghana
3093
- #: ../admin/view/wp-slimstat-reports.php:1721
3094
  msgid "c-gh"
3095
  msgstr "Ghana"
3096
 
3097
  # Greece
3098
- #: ../admin/view/wp-slimstat-reports.php:1721
3099
  msgid "c-gr"
3100
  msgstr "Greece"
3101
 
3102
  # Greenland
3103
- #: ../admin/view/wp-slimstat-reports.php:1721
3104
  msgid "c-gl"
3105
  msgstr "Greenland"
3106
 
3107
  # Grenada
3108
- #: ../admin/view/wp-slimstat-reports.php:1721
3109
  msgid "c-gd"
3110
  msgstr "Grenada"
3111
 
3112
  # Guadeloupe
3113
- #: ../admin/view/wp-slimstat-reports.php:1721
3114
  msgid "c-gp"
3115
  msgstr "Guadeloupe"
3116
 
3117
  # Guatemala
3118
- #: ../admin/view/wp-slimstat-reports.php:1721
3119
  msgid "c-gt"
3120
  msgstr "Guatemala"
3121
 
3122
  # Guinea
3123
- #: ../admin/view/wp-slimstat-reports.php:1721
3124
  msgid "c-gn"
3125
  msgstr "Guinea"
3126
 
3127
  # Guinea-Bissau
3128
- #: ../admin/view/wp-slimstat-reports.php:1721
3129
  msgid "c-gw"
3130
  msgstr "Guinea-Bissau"
3131
 
3132
  # Guyana
3133
- #: ../admin/view/wp-slimstat-reports.php:1721
3134
  msgid "c-gy"
3135
  msgstr "Guyana"
3136
 
3137
  # Haiti
3138
- #: ../admin/view/wp-slimstat-reports.php:1721
3139
  msgid "c-ht"
3140
  msgstr "Haiti"
3141
 
3142
  # Honduras
3143
- #: ../admin/view/wp-slimstat-reports.php:1721
3144
  msgid "c-hn"
3145
  msgstr "Honduras"
3146
 
3147
  # Hong Kong
3148
- #: ../admin/view/wp-slimstat-reports.php:1721
3149
  msgid "c-hk"
3150
  msgstr "Hong Kong"
3151
 
3152
  # Hungary
3153
- #: ../admin/view/wp-slimstat-reports.php:1721
3154
  msgid "c-hu"
3155
  msgstr "Hungary"
3156
 
3157
  # Iceland
3158
- #: ../admin/view/wp-slimstat-reports.php:1721
3159
  msgid "c-is"
3160
  msgstr "Iceland"
3161
 
3162
  # India
3163
- #: ../admin/view/wp-slimstat-reports.php:1721
3164
  msgid "c-in"
3165
  msgstr "India"
3166
 
3167
  # Indonesia
3168
- #: ../admin/view/wp-slimstat-reports.php:1721
3169
  msgid "c-id"
3170
  msgstr "Indonesia"
3171
 
3172
  # Islamic Republic of Iran
3173
- #: ../admin/view/wp-slimstat-reports.php:1721
3174
  msgid "c-ir"
3175
  msgstr "Islamic Republic of Iran"
3176
 
3177
  # Iraq
3178
- #: ../admin/view/wp-slimstat-reports.php:1721
3179
  msgid "c-iq"
3180
  msgstr "Iraq"
3181
 
3182
  # Ireland
3183
- #: ../admin/view/wp-slimstat-reports.php:1721
3184
  msgid "c-ie"
3185
  msgstr "Ireland"
3186
 
3187
  # Israel
3188
- #: ../admin/view/wp-slimstat-reports.php:1721
3189
  msgid "c-il"
3190
  msgstr "Israel"
3191
 
3192
  # Italy
3193
- #: ../admin/view/wp-slimstat-reports.php:1721
3194
  msgid "c-it"
3195
  msgstr "Italy"
3196
 
3197
  # Jamaica
3198
- #: ../admin/view/wp-slimstat-reports.php:1721
3199
  msgid "c-jm"
3200
  msgstr "Jamaica"
3201
 
3202
  # Japan
3203
- #: ../admin/view/wp-slimstat-reports.php:1721
3204
  msgid "c-jp"
3205
  msgstr "Japan"
3206
 
3207
  # Jordan
3208
- #: ../admin/view/wp-slimstat-reports.php:1721
3209
  msgid "c-jo"
3210
  msgstr "Jordan"
3211
 
3212
  # Kazakhstan
3213
- #: ../admin/view/wp-slimstat-reports.php:1721
3214
  msgid "c-kz"
3215
  msgstr "Kazakhstan"
3216
 
3217
  # Kenya
3218
- #: ../admin/view/wp-slimstat-reports.php:1721
3219
  msgid "c-ke"
3220
  msgstr "Kenya"
3221
 
3222
  # Nauru
3223
- #: ../admin/view/wp-slimstat-reports.php:1721
3224
  msgid "c-nr"
3225
  msgstr "Nauru"
3226
 
3227
  # Democratic People's Republic of Korea
3228
- #: ../admin/view/wp-slimstat-reports.php:1721
3229
  msgid "c-kp"
3230
  msgstr "Democratic People's Republic of Korea"
3231
 
3232
  # Republic of Korea
3233
- #: ../admin/view/wp-slimstat-reports.php:1721
3234
  msgid "c-kr"
3235
  msgstr "Republic of Korea"
3236
 
3237
- #: ../admin/view/wp-slimstat-reports.php:1721
3238
  msgid "c-kv"
3239
  msgstr "c-kv"
3240
 
3241
  # Kuwait
3242
- #: ../admin/view/wp-slimstat-reports.php:1721
3243
  msgid "c-kw"
3244
  msgstr "Kuwait"
3245
 
3246
  # Kyrgyzstan
3247
- #: ../admin/view/wp-slimstat-reports.php:1721
3248
  msgid "c-kg"
3249
  msgstr "Kyrgyzstan"
3250
 
3251
  # Lao People's Democratic Republic
3252
- #: ../admin/view/wp-slimstat-reports.php:1721
3253
  msgid "c-la"
3254
  msgstr "Lao People's Democratic Republic"
3255
 
3256
  # Latvia
3257
- #: ../admin/view/wp-slimstat-reports.php:1721
3258
  msgid "c-lv"
3259
  msgstr "Latvia"
3260
 
3261
  # Lebanon
3262
- #: ../admin/view/wp-slimstat-reports.php:1721
3263
  msgid "c-lb"
3264
  msgstr "Lebanon"
3265
 
3266
  # Lesotho
3267
- #: ../admin/view/wp-slimstat-reports.php:1721
3268
  msgid "c-ls"
3269
  msgstr "Lesotho"
3270
 
3271
  # Liberia
3272
- #: ../admin/view/wp-slimstat-reports.php:1721
3273
  msgid "c-lr"
3274
  msgstr "Liberia"
3275
 
3276
  # Libyan Arab Jamahiriya
3277
- #: ../admin/view/wp-slimstat-reports.php:1721
3278
  msgid "c-ly"
3279
  msgstr "Libyan Arab Jamahiriya"
3280
 
3281
  # Liechtenstein
3282
- #: ../admin/view/wp-slimstat-reports.php:1721
3283
  msgid "c-li"
3284
  msgstr "Liechtenstein"
3285
 
3286
  # Lithuania
3287
- #: ../admin/view/wp-slimstat-reports.php:1721
3288
  msgid "c-lt"
3289
  msgstr "Lithuania"
3290
 
3291
  # Luxembourg
3292
- #: ../admin/view/wp-slimstat-reports.php:1721
3293
  msgid "c-lu"
3294
  msgstr "Luxembourg"
3295
 
3296
  # The Former Yugoslav Republic of Macedonia
3297
- #: ../admin/view/wp-slimstat-reports.php:1721
3298
  msgid "c-mk"
3299
  msgstr "The Former Yugoslav Republic of Macedonia"
3300
 
3301
  # Madagascar
3302
- #: ../admin/view/wp-slimstat-reports.php:1721
3303
  msgid "c-mg"
3304
  msgstr "Madagascar"
3305
 
3306
  # Malawi
3307
- #: ../admin/view/wp-slimstat-reports.php:1721
3308
  msgid "c-mw"
3309
  msgstr "Malawi"
3310
 
3311
  # Malaysia
3312
- #: ../admin/view/wp-slimstat-reports.php:1721
3313
  msgid "c-my"
3314
  msgstr "Malaysia"
3315
 
3316
  # Mali
3317
- #: ../admin/view/wp-slimstat-reports.php:1721
3318
  msgid "c-ml"
3319
  msgstr "Mali"
3320
 
3321
  # Malta
3322
- #: ../admin/view/wp-slimstat-reports.php:1721
3323
  msgid "c-mt"
3324
  msgstr "Malta"
3325
 
3326
  # Martinique
3327
- #: ../admin/view/wp-slimstat-reports.php:1721
3328
  msgid "c-mq"
3329
  msgstr "Martinique"
3330
 
3331
  # Mauritania
3332
- #: ../admin/view/wp-slimstat-reports.php:1721
3333
  msgid "c-mr"
3334
  msgstr "Mauritania"
3335
 
3336
  # Mauritius
3337
- #: ../admin/view/wp-slimstat-reports.php:1721
3338
  msgid "c-mu"
3339
  msgstr "Mauritius"
3340
 
3341
  # Mexico
3342
- #: ../admin/view/wp-slimstat-reports.php:1721
3343
  msgid "c-mx"
3344
  msgstr "Mexico"
3345
 
3346
  # Moldova
3347
- #: ../admin/view/wp-slimstat-reports.php:1721
3348
  msgid "c-md"
3349
  msgstr "Moldova"
3350
 
3351
  # Mongolia
3352
- #: ../admin/view/wp-slimstat-reports.php:1721
3353
  msgid "c-mn"
3354
  msgstr "Mongolia"
3355
 
3356
  # Montenegro
3357
- #: ../admin/view/wp-slimstat-reports.php:1721
3358
  msgid "c-me"
3359
  msgstr "Montenegro"
3360
 
3361
  # Montserrat
3362
- #: ../admin/view/wp-slimstat-reports.php:1721
3363
  msgid "c-ms"
3364
  msgstr "Montserrat"
3365
 
3366
  # Morocco
3367
- #: ../admin/view/wp-slimstat-reports.php:1721
3368
  msgid "c-ma"
3369
  msgstr "Morocco"
3370
 
3371
  # Mozambique
3372
- #: ../admin/view/wp-slimstat-reports.php:1721
3373
  msgid "c-mz"
3374
  msgstr "Mozambique"
3375
 
3376
  # Myanmar
3377
- #: ../admin/view/wp-slimstat-reports.php:1721
3378
  msgid "c-mm"
3379
  msgstr "Myanmar"
3380
 
3381
  # Namibia
3382
- #: ../admin/view/wp-slimstat-reports.php:1721
3383
  msgid "c-na"
3384
  msgstr "Namibia"
3385
 
3386
  # Nepal
3387
- #: ../admin/view/wp-slimstat-reports.php:1721
3388
  msgid "c-np"
3389
  msgstr "Nepal"
3390
 
3391
  # Netherlands
3392
- #: ../admin/view/wp-slimstat-reports.php:1721
3393
  msgid "c-nl"
3394
  msgstr "Netherlands"
3395
 
3396
  # New Caledonia
3397
- #: ../admin/view/wp-slimstat-reports.php:1721
3398
  msgid "c-nc"
3399
  msgstr "New Caledonia"
3400
 
3401
  # New Zealand
3402
- #: ../admin/view/wp-slimstat-reports.php:1721
3403
  msgid "c-nz"
3404
  msgstr "New Zealand"
3405
 
3406
  # Nicaragua
3407
- #: ../admin/view/wp-slimstat-reports.php:1721
3408
  msgid "c-ni"
3409
  msgstr "Nicaragua"
3410
 
3411
  # Niger
3412
- #: ../admin/view/wp-slimstat-reports.php:1721
3413
  msgid "c-ne"
3414
  msgstr "Niger"
3415
 
3416
  # Nigeria
3417
- #: ../admin/view/wp-slimstat-reports.php:1721
3418
  msgid "c-ng"
3419
  msgstr "Nigeria"
3420
 
3421
  # Norway
3422
- #: ../admin/view/wp-slimstat-reports.php:1721
3423
  msgid "c-no"
3424
  msgstr "Norway"
3425
 
3426
  # Oman
3427
- #: ../admin/view/wp-slimstat-reports.php:1721
3428
  msgid "c-om"
3429
  msgstr "Oman"
3430
 
3431
  # Pakistan
3432
- #: ../admin/view/wp-slimstat-reports.php:1721
3433
  msgid "c-pk"
3434
  msgstr "Pakistan"
3435
 
3436
  # Palau
3437
- #: ../admin/view/wp-slimstat-reports.php:1721
3438
  msgid "c-pw"
3439
  msgstr "Palau"
3440
 
3441
  # Occupied Palestinian Territory
3442
- #: ../admin/view/wp-slimstat-reports.php:1721
3443
  msgid "c-ps"
3444
  msgstr "Occupied Palestinian Territory"
3445
 
3446
  # Panama
3447
- #: ../admin/view/wp-slimstat-reports.php:1721
3448
  msgid "c-pa"
3449
  msgstr "Panama"
3450
 
3451
  # Papua New Guinea
3452
- #: ../admin/view/wp-slimstat-reports.php:1721
3453
  msgid "c-pg"
3454
  msgstr "Papua New Guinea"
3455
 
3456
  # Paraguay
3457
- #: ../admin/view/wp-slimstat-reports.php:1721
3458
  msgid "c-py"
3459
  msgstr "Paraguay"
3460
 
3461
  # Peru
3462
- #: ../admin/view/wp-slimstat-reports.php:1721
3463
  msgid "c-pe"
3464
  msgstr "Peru"
3465
 
3466
  # Philippines
3467
- #: ../admin/view/wp-slimstat-reports.php:1721
3468
  msgid "c-ph"
3469
  msgstr "Philippines"
3470
 
3471
  # Poland
3472
- #: ../admin/view/wp-slimstat-reports.php:1721
3473
  msgid "c-pl"
3474
  msgstr "Poland"
3475
 
3476
  # Portugal
3477
- #: ../admin/view/wp-slimstat-reports.php:1721
3478
  msgid "c-pt"
3479
  msgstr "Portugal"
3480
 
3481
  # Puerto Rico
3482
- #: ../admin/view/wp-slimstat-reports.php:1721
3483
  msgid "c-pr"
3484
  msgstr "Puerto Rico"
3485
 
3486
  # Qatar
3487
- #: ../admin/view/wp-slimstat-reports.php:1721
3488
  msgid "c-qa"
3489
  msgstr "Qatar"
3490
 
3491
  # Réunion
3492
- #: ../admin/view/wp-slimstat-reports.php:1721
3493
  msgid "c-re"
3494
  msgstr "Réunion"
3495
 
3496
  # Romania
3497
- #: ../admin/view/wp-slimstat-reports.php:1721
3498
  msgid "c-ro"
3499
  msgstr "Romania"
3500
 
3501
  # Russian Federation
3502
- #: ../admin/view/wp-slimstat-reports.php:1721
3503
  msgid "c-ru"
3504
  msgstr "Russian Federation"
3505
 
3506
  # Rwanda
3507
- #: ../admin/view/wp-slimstat-reports.php:1721
3508
  msgid "c-rw"
3509
  msgstr "Rwanda"
3510
 
3511
  # Saint Kitts and Nevis
3512
- #: ../admin/view/wp-slimstat-reports.php:1721
3513
  msgid "c-kn"
3514
  msgstr "Saint Kitts and Nevis"
3515
 
3516
  # Saint Lucia
3517
- #: ../admin/view/wp-slimstat-reports.php:1721
3518
  msgid "c-lc"
3519
  msgstr "Saint Lucia"
3520
 
3521
  # Saint Martin
3522
- #: ../admin/view/wp-slimstat-reports.php:1721
3523
  msgid "c-mf"
3524
  msgstr "Saint Martin"
3525
 
3526
  # Saint Vincent and the Grenadines
3527
- #: ../admin/view/wp-slimstat-reports.php:1721
3528
  msgid "c-vc"
3529
  msgstr "Saint Vincent and the Grenadines"
3530
 
3531
  # Samoa
3532
- #: ../admin/view/wp-slimstat-reports.php:1721
3533
  msgid "c-ws"
3534
  msgstr "Samoa"
3535
 
3536
  # Sao Tome and Principe
3537
- #: ../admin/view/wp-slimstat-reports.php:1721
3538
  msgid "c-st"
3539
  msgstr "Sao Tome and Principe"
3540
 
3541
  # Saudi Arabia
3542
- #: ../admin/view/wp-slimstat-reports.php:1721
3543
  msgid "c-sa"
3544
  msgstr "Saudi Arabia"
3545
 
3546
  # Senegal
3547
- #: ../admin/view/wp-slimstat-reports.php:1721
3548
  msgid "c-sn"
3549
  msgstr "Senegal"
3550
 
3551
  # Serbia
3552
- #: ../admin/view/wp-slimstat-reports.php:1721
3553
  msgid "c-rs"
3554
  msgstr "Serbia"
3555
 
3556
  # Sierra Leone
3557
- #: ../admin/view/wp-slimstat-reports.php:1721
3558
  msgid "c-sl"
3559
  msgstr "Sierra Leone"
3560
 
3561
  # Singapore
3562
- #: ../admin/view/wp-slimstat-reports.php:1721
3563
  msgid "c-sg"
3564
  msgstr "Singapore"
3565
 
3566
  # Slovakia
3567
- #: ../admin/view/wp-slimstat-reports.php:1721
3568
  msgid "c-sk"
3569
  msgstr "Slovakia"
3570
 
3571
  # Slovenia
3572
- #: ../admin/view/wp-slimstat-reports.php:1721
3573
  msgid "c-si"
3574
  msgstr "Slovenia"
3575
 
3576
  # Solomon Islands
3577
- #: ../admin/view/wp-slimstat-reports.php:1721
3578
  msgid "c-sb"
3579
  msgstr "Solomon Islands"
3580
 
3581
  # Somalia
3582
- #: ../admin/view/wp-slimstat-reports.php:1721
3583
  msgid "c-so"
3584
  msgstr "Somalia"
3585
 
3586
  # South Africa
3587
- #: ../admin/view/wp-slimstat-reports.php:1721
3588
  msgid "c-za"
3589
  msgstr "South Africa"
3590
 
3591
  # South Georgia and the South Sandwich Islands
3592
- #: ../admin/view/wp-slimstat-reports.php:1721
3593
  msgid "c-gs"
3594
  msgstr "South Georgia and the South Sandwich Islands"
3595
 
3596
  # Spain
3597
- #: ../admin/view/wp-slimstat-reports.php:1721
3598
  msgid "c-es"
3599
  msgstr "Spain"
3600
 
3601
  # Sri Lanka
3602
- #: ../admin/view/wp-slimstat-reports.php:1721
3603
  msgid "c-lk"
3604
  msgstr "Sri Lanka"
3605
 
3606
  # Seychelles
3607
- #: ../admin/view/wp-slimstat-reports.php:1721
3608
  msgid "c-sc"
3609
  msgstr "Seychelles"
3610
 
3611
  # Sudan
3612
- #: ../admin/view/wp-slimstat-reports.php:1721
3613
  msgid "c-sd"
3614
  msgstr "Sudan"
3615
 
3616
- #: ../admin/view/wp-slimstat-reports.php:1721
3617
  msgid "c-ss"
3618
  msgstr "c-ss"
3619
 
3620
  # Suriname
3621
- #: ../admin/view/wp-slimstat-reports.php:1721
3622
  msgid "c-sr"
3623
  msgstr "Suriname"
3624
 
3625
  # Svalbard and Jan Mayen
3626
- #: ../admin/view/wp-slimstat-reports.php:1721
3627
  msgid "c-sj"
3628
  msgstr "Svalbard and Jan Mayen"
3629
 
3630
  # Swaziland
3631
- #: ../admin/view/wp-slimstat-reports.php:1721
3632
  msgid "c-sz"
3633
  msgstr "Swaziland"
3634
 
3635
  # Sweden
3636
- #: ../admin/view/wp-slimstat-reports.php:1721
3637
  msgid "c-se"
3638
  msgstr "Sweden"
3639
 
3640
  # Switzerland
3641
- #: ../admin/view/wp-slimstat-reports.php:1721
3642
  msgid "c-ch"
3643
  msgstr "Switzerland"
3644
 
3645
  # Syrian Arab Republic
3646
- #: ../admin/view/wp-slimstat-reports.php:1721
3647
  msgid "c-sy"
3648
  msgstr "Syrian Arab Republic"
3649
 
3650
  # Taiwan, Province of China
3651
- #: ../admin/view/wp-slimstat-reports.php:1721
3652
  msgid "c-tw"
3653
  msgstr "Taiwan, Province of China"
3654
 
3655
  # Tajikistan
3656
- #: ../admin/view/wp-slimstat-reports.php:1721
3657
  msgid "c-tj"
3658
  msgstr "Tajikistan"
3659
 
3660
  # United Republic of Tanzania
3661
- #: ../admin/view/wp-slimstat-reports.php:1721
3662
  msgid "c-tz"
3663
  msgstr "United Republic of Tanzania"
3664
 
3665
  # Thailand
3666
- #: ../admin/view/wp-slimstat-reports.php:1721
3667
  msgid "c-th"
3668
  msgstr "Thailand"
3669
 
3670
  # Timor-Leste
3671
- #: ../admin/view/wp-slimstat-reports.php:1721
3672
  msgid "c-tl"
3673
  msgstr "Timor-Leste"
3674
 
3675
  # Togo
3676
- #: ../admin/view/wp-slimstat-reports.php:1721
3677
  msgid "c-tg"
3678
  msgstr "Togo"
3679
 
3680
  # Tonga
3681
- #: ../admin/view/wp-slimstat-reports.php:1721
3682
  msgid "c-to"
3683
  msgstr "Tonga"
3684
 
3685
  # Trinidad and Tobago
3686
- #: ../admin/view/wp-slimstat-reports.php:1721
3687
  msgid "c-tt"
3688
  msgstr "Trinidad and Tobago"
3689
 
3690
  # Tunisia
3691
- #: ../admin/view/wp-slimstat-reports.php:1721
3692
  msgid "c-tn"
3693
  msgstr "Tunisia"
3694
 
3695
  # Turkey
3696
- #: ../admin/view/wp-slimstat-reports.php:1721
3697
  msgid "c-tr"
3698
  msgstr "Turkey"
3699
 
3700
  # Turkmenistan
3701
- #: ../admin/view/wp-slimstat-reports.php:1721
3702
  msgid "c-tm"
3703
  msgstr "Turkmenistan"
3704
 
3705
  # Turks and Caicos Islands
3706
- #: ../admin/view/wp-slimstat-reports.php:1721
3707
  msgid "c-tc"
3708
  msgstr "Turks and Caicos Islands"
3709
 
3710
  # Uganda
3711
- #: ../admin/view/wp-slimstat-reports.php:1721
3712
  msgid "c-ug"
3713
  msgstr "Uganda"
3714
 
3715
  # Ukraine
3716
- #: ../admin/view/wp-slimstat-reports.php:1721
3717
  msgid "c-ua"
3718
  msgstr "Ukraine"
3719
 
3720
  # United Arab Emirates
3721
- #: ../admin/view/wp-slimstat-reports.php:1721
3722
  msgid "c-ae"
3723
  msgstr "United Arab Emirates"
3724
 
3725
  # United Kingdom
3726
- #: ../admin/view/wp-slimstat-reports.php:1721
3727
  msgid "c-gb"
3728
  msgstr "United Kingdom"
3729
 
3730
  # United States
3731
- #: ../admin/view/wp-slimstat-reports.php:1721
3732
  msgid "c-us"
3733
  msgstr "United States"
3734
 
3735
  # Uruguay
3736
- #: ../admin/view/wp-slimstat-reports.php:1721
3737
  msgid "c-uy"
3738
  msgstr "Uruguay"
3739
 
3740
  # Uzbekistan
3741
- #: ../admin/view/wp-slimstat-reports.php:1721
3742
  msgid "c-uz"
3743
  msgstr "Uzbekistan"
3744
 
3745
  # Vanuatu
3746
- #: ../admin/view/wp-slimstat-reports.php:1721
3747
  msgid "c-vu"
3748
  msgstr "Vanuatu"
3749
 
3750
  # Venezuela
3751
- #: ../admin/view/wp-slimstat-reports.php:1721
3752
  msgid "c-ve"
3753
  msgstr "Venezuela"
3754
 
3755
  # Viet Nam
3756
- #: ../admin/view/wp-slimstat-reports.php:1721
3757
  msgid "c-vn"
3758
  msgstr "Viet Nam"
3759
 
3760
  # British Virgin Islands
3761
- #: ../admin/view/wp-slimstat-reports.php:1721
3762
  msgid "c-vg"
3763
  msgstr "British Virgin Islands"
3764
 
3765
  # U.S. Virgin Islands
3766
- #: ../admin/view/wp-slimstat-reports.php:1721
3767
  msgid "c-vi"
3768
  msgstr "U.S. Virgin Islands"
3769
 
3770
  # Western Sahara
3771
- #: ../admin/view/wp-slimstat-reports.php:1721
3772
  msgid "c-eh"
3773
  msgstr "Western Sahara"
3774
 
3775
  # Yemen
3776
- #: ../admin/view/wp-slimstat-reports.php:1721
3777
  msgid "c-ye"
3778
  msgstr "Yemen"
3779
 
3780
  # Zambia
3781
- #: ../admin/view/wp-slimstat-reports.php:1721
3782
  msgid "c-zm"
3783
  msgstr "Zambia"
3784
 
3785
  # Zimbabwe
3786
- #: ../admin/view/wp-slimstat-reports.php:1721
3787
  msgid "c-zw"
3788
  msgstr "Zimbabwe"
3789
 
3790
  # Guernsey
3791
- #: ../admin/view/wp-slimstat-reports.php:1721
3792
  msgid "c-gg"
3793
  msgstr "Guernsey"
3794
 
3795
  # Jersey
3796
- #: ../admin/view/wp-slimstat-reports.php:1721
3797
  msgid "c-je"
3798
  msgstr "Jersey"
3799
 
3800
  # Isle of Man
3801
- #: ../admin/view/wp-slimstat-reports.php:1721
3802
  msgid "c-im"
3803
  msgstr "Isle of Man"
3804
 
3805
  # Maldives
3806
- #: ../admin/view/wp-slimstat-reports.php:1721
3807
  msgid "c-mv"
3808
  msgstr "Maldives"
3809
 
3810
  # European Union
3811
- #: ../admin/view/wp-slimstat-reports.php:1722
3812
  msgid "c-eu"
3813
  msgstr "European Union"
3814
 
3815
- #: ../admin/view/wp-slimstat-reports.php:1804
3816
  msgid "src"
3817
  msgstr "Src"
3818
 
3819
- #: ../admin/view/wp-slimstat-reports.php:1807
3820
  msgid "serp"
3821
  msgstr "Serp"
3822
 
3823
- #: ../admin/view/wp-slimstat-reports.php:1814
3824
  msgid "Go to the referring page"
3825
  msgstr "Vaya a la página de referencia"
3826
 
3827
- #: ../admin/view/wp-slimstat-reports.php:1836
3828
  #, fuzzy
3829
  msgid "Remove filter for"
3830
  msgstr "Seleccionar filtro"
3831
 
3832
- #: ../admin/view/wp-slimstat-reports.php:1840
3833
  msgid "Save"
3834
  msgstr ""
3835
 
3836
- #: ../admin/view/wp-slimstat-reports.php:1843
3837
  msgid "Reset All"
3838
  msgstr "Resetear todos"
3839
 
3840
- #: ../admin/view/wp-slimstat-reports.php:1847
3841
  msgid "Current filters:"
3842
  msgstr "Filtros Actuales:"
3843
 
3844
- #: ../admin/wp-slimstat-admin.php:648 ../admin/wp-slimstat-admin.php:659
3845
- #: ../admin/wp-slimstat-admin.php:661
3846
  #, fuzzy
3847
  msgid "SlimStat"
3848
  msgstr "Acerca de WP-SlimStat"
3849
 
3850
- #: ../admin/wp-slimstat-admin.php:655
3851
- msgid "Custom Reports"
3852
- msgstr "Informes Personalizados"
 
 
3853
 
3854
- #: ../admin/wp-slimstat-admin.php:744
3855
  #, fuzzy
3856
  msgid "Pageviews in the last "
3857
  msgstr "Visitas a la página en los últimos 365 días"
3858
 
3859
- #: ../admin/wp-slimstat-admin.php:747
3860
  #, fuzzy
3861
  msgid "Unique IPs in the last "
3862
  msgstr "Únicamente interno"
3863
 
3864
- #: ../admin/wp-slimstat-admin.php:803
3865
  msgid "Show on screen"
3866
  msgstr "Mostrar en pantalla"
3867
 
3868
- #: ../admin/wp-slimstat-admin.php:888
3869
  msgid "Already saved"
3870
  msgstr ""
3871
 
3872
- #: ../admin/wp-slimstat-admin.php:896
3873
  msgid "Saved"
3874
  msgstr ""
3875
 
3876
- #: ../admin/wp-slimstat-admin.php:916
3877
  #, fuzzy
3878
  msgid "Delete this filter"
3879
  msgstr "Filtrar páginas visitadas dondé:"
3880
 
3881
- #: ../admin/wp-slimstat-admin.php:960
3882
  msgid "There was an error updating the following options:"
3883
  msgstr "Hubo un error al actualizar las siguientes opciones:"
3884
 
3885
- #: ../admin/wp-slimstat-admin.php:963
3886
  #, fuzzy
3887
  msgid "Your changes have been saved."
3888
  msgstr "Sus ajustes se han actualizado correctamente."
3889
 
3890
- #: ../admin/wp-slimstat-admin.php:986
3891
  msgid "Save Changes"
3892
  msgstr "Guardar los cambios"
3893
 
3894
- #: ../admin/wp-slimstat-admin.php:1002
3895
  msgid "Definitions"
3896
  msgstr "Definiciones"
3897
 
3898
- #: ../admin/wp-slimstat-admin.php:1005
3899
  #, fuzzy
3900
  msgid "Pageview"
3901
  msgstr "Paginas visitadas"
3902
 
3903
- #: ../admin/wp-slimstat-admin.php:1005
3904
  #, fuzzy
3905
  msgid ""
3906
  "A request to load a single HTML file (\"page\"). This should be contrasted "
@@ -3912,12 +4000,12 @@ msgstr ""
3912
  "archivo desde un servidor web. WP SLIMStat registra una visita de página "
3913
  "cada vez que el código de seguimiento se ejecuta"
3914
 
3915
- #: ../admin/wp-slimstat-admin.php:1006
3916
  #, fuzzy
3917
  msgid "(Human) Visit"
3918
  msgstr "Visitas humanas"
3919
 
3920
- #: ../admin/wp-slimstat-admin.php:1006
3921
  msgid ""
3922
  "A period of interaction between a visitor's browser and your website, ending "
3923
  "when the browser is closed or when the user has been inactive on that site "
@@ -3927,7 +4015,7 @@ msgstr ""
3927
  "termina cuando se cierra el navegador o cuando el usuario ha estado inactivo "
3928
  "en ese sitio durante 30 minutos"
3929
 
3930
- #: ../admin/wp-slimstat-admin.php:1007
3931
  msgid ""
3932
  "Any user who has left a comment on your blog, and is thus identified by "
3933
  "Wordpress as a returning visitor"
@@ -3935,12 +4023,12 @@ msgstr ""
3935
  "Todo usuario que haya dejado un comentario en su blog, por lo que es "
3936
  "identificado por Wordpress como un visitante que regresó"
3937
 
3938
- #: ../admin/wp-slimstat-admin.php:1008
3939
  #, fuzzy
3940
  msgid "Unique IP"
3941
  msgstr "IPs Unicas"
3942
 
3943
- #: ../admin/wp-slimstat-admin.php:1008
3944
  msgid ""
3945
  "Used to differentiate between multiple requests to download a file from one "
3946
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -3953,7 +4041,7 @@ msgstr ""
3953
  "dirección de Internet de donde vino una visita de página, es útil, pero no "
3954
  "es perfecta"
3955
 
3956
- #: ../admin/wp-slimstat-admin.php:1009
3957
  msgid ""
3958
  "the originating IP address of a client connecting to a web server through an "
3959
  "HTTP proxy or load balancer"
@@ -3961,12 +4049,12 @@ msgstr ""
3961
  "dirección IP de origen de un cliente que se conecta a un servidor web a "
3962
  "través de un proxy HTTP o equilibrador de carga"
3963
 
3964
- #: ../admin/wp-slimstat-admin.php:1010
3965
  #, fuzzy
3966
  msgid "Direct Traffic"
3967
  msgstr "Visita Directa"
3968
 
3969
- #: ../admin/wp-slimstat-admin.php:1010
3970
  msgid ""
3971
  "All those people showing up to your Web site by typing in the URL of your "
3972
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -3976,12 +4064,12 @@ msgstr ""
3976
  "URL de su sitio web o que vienen de un favorito, algunas personas también "
3977
  "llaman a esto \"tráfico por defecto\" o \"tráfico ambiente\""
3978
 
3979
- #: ../admin/wp-slimstat-admin.php:1011
3980
  #, fuzzy
3981
  msgid "Search Engine"
3982
  msgstr "Motores de Búsqueda"
3983
 
3984
- #: ../admin/wp-slimstat-admin.php:1011
3985
  msgid ""
3986
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3987
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -3989,17 +4077,17 @@ msgstr ""
3989
  "Google, Yahoo, MSN, Ask, otros; este cubo incluirá tanto su tráfico "
3990
  "orgánico, así como por pago (PPC / SEM), así que tenga cuidado de que"
3991
 
3992
- #: ../admin/wp-slimstat-admin.php:1012 ../admin/wp-slimstat-admin.php:1028
3993
  msgid "Keywords used by your visitors to find your website on a search engine"
3994
  msgstr ""
3995
  "Las palabras clave utilizadas por los visitantes para encontrar su sitio web "
3996
  "en un buscador"
3997
 
3998
- #: ../admin/wp-slimstat-admin.php:1013
3999
  msgid "SERP"
4000
  msgstr "SERP"
4001
 
4002
- #: ../admin/wp-slimstat-admin.php:1013
4003
  msgid ""
4004
  "Short for search engine results page, the Web page that a search engine "
4005
  "returns with the results of its search. The value shown represents your rank "
@@ -4010,7 +4098,7 @@ msgstr ""
4010
  "que se muestra representa su rango (o posición) dentro de esa lista de los "
4011
  "resultados"
4012
 
4013
- #: ../admin/wp-slimstat-admin.php:1014
4014
  msgid ""
4015
  "Any program used for accessing a website; this includes browsers, robots, "
4016
  "spiders and any other program that was used to retrieve information from the "
@@ -4020,7 +4108,7 @@ msgstr ""
4020
  "navegadores, robots, arañas y cualquier otro programa que se utiliza para "
4021
  "recuperar información del sitio"
4022
 
4023
- #: ../admin/wp-slimstat-admin.php:1015
4024
  msgid ""
4025
  "A link from one domain to another is said to be outbound from its source "
4026
  "anchor and inbound to its target. This report lists all the links to other "
@@ -4030,27 +4118,27 @@ msgstr ""
4030
  "de anclaje y de entrada a su objetivo. Este informe muestra todos los "
4031
  "enlaces a otros sitios web, seguidos por sus visitantes."
4032
 
4033
- #: ../admin/wp-slimstat-admin.php:1022
4034
  msgid "Basic Filters"
4035
  msgstr "Filtros básicos"
4036
 
4037
- #: ../admin/wp-slimstat-admin.php:1025
4038
  msgid "User agent (Firefox, Chrome, ...)"
4039
  msgstr "Agente usuario(Firefox, Chrome, ...)"
4040
 
4041
- #: ../admin/wp-slimstat-admin.php:1026
4042
  msgid "2-letter code (us, ru, de, it, ...)"
4043
  msgstr "código de 2 letras (eu, ru, de, it, ...)"
4044
 
4045
- #: ../admin/wp-slimstat-admin.php:1027
4046
  msgid "IP"
4047
  msgstr "IP"
4048
 
4049
- #: ../admin/wp-slimstat-admin.php:1027
4050
  msgid "Visitor's public IP address"
4051
  msgstr "Dirección IP pública del visitante"
4052
 
4053
- #: ../admin/wp-slimstat-admin.php:1029
4054
  msgid ""
4055
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
4056
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -4060,7 +4148,7 @@ msgstr ""
4060
  "en-us/library/ee825488(v=cs.20).aspx\">págna de cultura del lenguaje</a> "
4061
  "(primera columna) para más información"
4062
 
4063
- #: ../admin/wp-slimstat-admin.php:1030
4064
  msgid ""
4065
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
4066
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -4070,15 +4158,15 @@ msgstr ""
4070
  "target=\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php"
4071
  "\">esta página del manual</a> para obtener más información"
4072
 
4073
- #: ../admin/wp-slimstat-admin.php:1031
4074
  msgid "URL accessed on your site"
4075
  msgstr "URL visitada en su sitio"
4076
 
4077
- #: ../admin/wp-slimstat-admin.php:1032
4078
  msgid "Complete address of the referrer page"
4079
  msgstr "Dirección completa de la página que refiere"
4080
 
4081
- #: ../admin/wp-slimstat-admin.php:1033
4082
  msgid ""
4083
  "Visitors' names according to the cookie set by Wordpress after they leave a "
4084
  "comment"
@@ -4086,15 +4174,15 @@ msgstr ""
4086
  "Nombres de visitantes según la cookie establecida por Wordpress después de "
4087
  "dejar un comentario"
4088
 
4089
- #: ../admin/wp-slimstat-admin.php:1041
4090
  msgid "Advanced Filters"
4091
  msgstr "Filtros avanzados"
4092
 
4093
- #: ../admin/wp-slimstat-admin.php:1044
4094
  msgid "user agent version (9.0, 11, ...)"
4095
  msgstr "versión del agente de usuario (9,0, 11, ...)"
4096
 
4097
- #: ../admin/wp-slimstat-admin.php:1045
4098
  msgid ""
4099
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
4100
  "all others"
@@ -4102,12 +4190,12 @@ msgstr ""
4102
  "1 = oruga del motor de búsqueda, 2 = dispositivo móvil, 3 = lector de "
4103
  "sindicación, 0 =a todos los demás"
4104
 
4105
- #: ../admin/wp-slimstat-admin.php:1046
4106
  #, fuzzy
4107
  msgid "Pageview Attributes"
4108
  msgstr "Paginas visitadas"
4109
 
4110
- #: ../admin/wp-slimstat-admin.php:1046
4111
  msgid ""
4112
  "this field is set to <em>[pre]</em> if the resource has been accessed "
4113
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -4117,20 +4205,20 @@ msgstr ""
4117
  "través de <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4118
  "Link_prefetching_FAQ\">Preecaptura de Enlaces</a> o técnicas similares"
4119
 
4120
- #: ../admin/wp-slimstat-admin.php:1047
4121
  msgid "author associated to that post/page when the resource was accessed"
4122
  msgstr "autor asociado a esa publicación/página cuando se accedió al recurso"
4123
 
4124
- #: ../admin/wp-slimstat-admin.php:1048
4125
  msgid "ID of the category/term associated to the resource, when available"
4126
  msgstr ""
4127
  "ID de la categoría / término asociado al recurso, cuando esté disponible"
4128
 
4129
- #: ../admin/wp-slimstat-admin.php:1049
4130
  msgid "visitor's originating IP address, if available"
4131
  msgstr "dirección IP de origen del visitante, si está disponible"
4132
 
4133
- #: ../admin/wp-slimstat-admin.php:1050
4134
  msgid ""
4135
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4136
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -4144,15 +4232,15 @@ msgstr ""
4144
  "wordpress.org/Conditional_Tags\">Etiquetas condicionales</a> página del "
4145
  "manual para más información"
4146
 
4147
- #: ../admin/wp-slimstat-admin.php:1051
4148
  msgid "Screen Resolution"
4149
  msgstr "Resolución de Pantalla"
4150
 
4151
- #: ../admin/wp-slimstat-admin.php:1051
4152
  msgid "viewport width and height (1024x768, 800x600, ...)"
4153
  msgstr "ancho de vista y altura (1024x768, 800x600 , ...)"
4154
 
4155
- #: ../admin/wp-slimstat-admin.php:1052
4156
  msgid ""
4157
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4158
  "visitors"
@@ -4160,11 +4248,11 @@ msgstr ""
4160
  "se utiliza generalmente en conjunción con <em> no está vacío </em>, "
4161
  "identifica los visitantes humanos"
4162
 
4163
- #: ../admin/wp-slimstat-admin.php:1053
4164
  msgid "Date Filters"
4165
  msgstr "Filtros de fecha"
4166
 
4167
- #: ../admin/wp-slimstat-admin.php:1053
4168
  msgid ""
4169
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4170
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -4175,11 +4263,11 @@ msgstr ""
4175
  "(es decir, día=1, mes=1, año=blank, intervalo=-1 establecerá un filtro de "
4176
  "año a la fecha)"
4177
 
4178
- #: ../admin/wp-slimstat-admin.php:1054
4179
  msgid "SERP Position"
4180
  msgstr "Posición SERP"
4181
 
4182
- #: ../admin/wp-slimstat-admin.php:1054
4183
  msgid ""
4184
  "set the filter to Referer contains cd=N&, where N is the position you are "
4185
  "looking for"
@@ -4187,15 +4275,15 @@ msgstr ""
4187
  "configurar el filtro para Referer contiene cd=N&, donde N es la posición que "
4188
  "usted está buscando"
4189
 
4190
- #: ../admin/wp-slimstat-admin.php:1081
4191
  msgid "Yes"
4192
  msgstr "Si"
4193
 
4194
- #: ../admin/wp-slimstat-admin.php:1082
4195
  msgid "No"
4196
  msgstr "No"
4197
 
4198
- #: ../admin/wp-slimstat-admin.php:1083
4199
  msgid "Site Specific"
4200
  msgstr ""
4201
 
@@ -5753,97 +5841,143 @@ msgstr "Unknown"
5753
  msgid "c-xy"
5754
  msgstr "Local IP"
5755
 
5756
- #: ../wp-slimstat.php:219 ../wp-slimstat.php:497
5757
- msgid "Pageview filtered by third-party code"
5758
  msgstr ""
5759
 
5760
- #: ../wp-slimstat.php:236
5761
- #, fuzzy
5762
- msgid "Malformed URL"
5763
  msgstr "Navegadores recientes"
5764
 
5765
- #: ../wp-slimstat.php:255
5766
- msgid "Referrer is blacklisted"
5767
- msgstr ""
 
5768
 
5769
- #: ../wp-slimstat.php:333
5770
- msgid "Permalink is blacklisted"
5771
- msgstr ""
 
5772
 
5773
- #: ../wp-slimstat.php:344
5774
- msgid "Empty or not supported IP address format (IPv6)"
5775
  msgstr ""
5776
 
5777
- #: ../wp-slimstat.php:353
5778
- msgid "Logged in user not tracked"
 
5779
  msgstr ""
5780
 
5781
- #: ../wp-slimstat.php:361
5782
- msgid "User with given capability not tracked"
 
5783
  msgstr ""
5784
 
5785
- #: ../wp-slimstat.php:368
5786
  #, fuzzy, php-format
5787
- msgid "User %s is blacklisted"
5788
  msgstr "Navegador"
5789
 
5790
- #: ../wp-slimstat.php:388
5791
  #, fuzzy, php-format
5792
- msgid "Spammer %s not tracked"
5793
  msgstr "Bot o Crawler"
5794
 
5795
- #: ../wp-slimstat.php:417
5796
  #, fuzzy, php-format
5797
- msgid "IP address %s is blacklisted"
5798
  msgstr "Navegador"
5799
 
5800
- #: ../wp-slimstat.php:446
5801
  #, fuzzy, php-format
5802
- msgid "Country %s is blacklisted"
5803
  msgstr "Navegador"
5804
 
5805
- #: ../wp-slimstat.php:455
5806
  #, fuzzy
5807
- msgid "Prefetch requests are ignored"
5808
  msgstr "Ignorar PPeticiones Prefetch"
5809
 
5810
- #: ../wp-slimstat.php:471
5811
  #, fuzzy
5812
- msgid "Bot not tracked"
5813
  msgstr "Bot o Crawler"
5814
 
5815
- #: ../wp-slimstat.php:480
5816
  #, fuzzy, php-format
5817
- msgid "Browser %s is blacklisted"
5818
  msgstr "Navegador"
5819
 
5820
- #: ../wp-slimstat.php:1206
 
 
 
 
5821
  msgid "Invalid payload string. Try clearing your WordPress cache."
5822
  msgstr ""
5823
 
5824
- #: ../wp-slimstat.php:1216
5825
  msgid "Invalid data signature. Try clearing your WordPress cache."
5826
  msgstr ""
5827
 
5828
- #: ../wp-slimstat.php:1286
5829
  #, fuzzy
5830
  msgid "There was an error downloading the MaxMind Geolite DB:"
5831
  msgstr "Hubo un error al actualizar las siguientes opciones:"
5832
 
5833
- #: ../wp-slimstat.php:1294 ../wp-slimstat.php:1303
5834
  #, fuzzy
5835
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5836
  msgstr "Hubo un error al actualizar las siguientes opciones:"
5837
 
5838
- #: ../wp-slimstat.php:1298
5839
  msgid "Function gzopen not defined. Aborting."
5840
  msgstr ""
5841
 
5842
- #: ../wp-slimstat.php:1308
5843
  #, fuzzy
5844
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5845
  msgstr "Hubo un error al actualizar las siguientes opciones:"
5846
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5847
  #, fuzzy
5848
  #~ msgid "Tracking"
5849
  #~ msgstr "Seguimiento Activo"
@@ -5875,10 +6009,6 @@ msgstr "Hubo un error al actualizar las siguientes opciones:"
5875
  #~ msgid "External Pages"
5876
  #~ msgstr "Paginas visitadas"
5877
 
5878
- #, fuzzy
5879
- #~ msgid "Reset Reports"
5880
- #~ msgstr "Informes Personalizados"
5881
-
5882
  #~ msgid "Start From"
5883
  #~ msgstr "Comenzar desde"
5884
 
@@ -5926,12 +6056,6 @@ msgstr "Hubo un error al actualizar las siguientes opciones:"
5926
  #~ msgid "Avg Page Load Time"
5927
  #~ msgstr "Promedio Paginas Visitadas"
5928
 
5929
- #~ msgid "Enable Tracking"
5930
- #~ msgstr "Activar Seguimiento"
5931
-
5932
- #~ msgid "Enable Spy Mode"
5933
- #~ msgstr "Habilitar modo Espía"
5934
-
5935
  #~ msgid "Javascript"
5936
  #~ msgstr "Javascript"
5937
 
@@ -6294,10 +6418,6 @@ msgstr "Hubo un error al actualizar las siguientes opciones:"
6294
  #~ msgid "IP Addresses"
6295
  #~ msgstr "Direcciones IP y Dominios"
6296
 
6297
- #, fuzzy
6298
- #~ msgid "Users"
6299
- #~ msgstr "Navegadores recientes"
6300
-
6301
  #, fuzzy
6302
  #~ msgid "Track Browser Capabilities"
6303
  #~ msgstr "Navegador"
2
  msgstr ""
3
  "Project-Id-Version: WP Slimstat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-24 09:19-0500\n"
6
+ "PO-Revision-Date: 2015-12-24 09:20-0500\n"
7
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
8
  "Language-Team: \n"
9
  "Language: es_ES\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../admin/config/index.php:50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgid ""
22
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
23
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
26
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> esta página </a> "
27
  "para obtener más información"
28
 
29
+ #: ../admin/config/index.php:65
30
  msgid "Read access: username not found"
31
  msgstr "Acceso de lectura: Nombre de usuario no se encuentra"
32
 
33
+ #: ../admin/config/index.php:75 ../admin/config/index.php:100
34
  msgid ""
35
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
36
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
40
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\">esta página</a> para "
41
  "obtener más información"
42
 
43
+ #: ../admin/config/index.php:90
44
  msgid "Config access: username not found"
45
  msgstr "Acceso de configuración: Nombre de usuario no encontrado"
46
 
47
+ #: ../admin/config/index.php:109
48
+ msgid "Basic"
49
+ msgstr ""
50
 
51
+ #: ../admin/config/index.php:111 ../admin/config/index.php:132
52
  msgid "Tracker"
53
  msgstr "Rastreador"
54
 
55
+ #: ../admin/config/index.php:112
56
+ msgid "Enable Tracking"
57
+ msgstr "Activar Seguimiento"
 
58
 
59
+ #: ../admin/config/index.php:112
60
  #, fuzzy
61
  msgid "Turn the tracker on or off, while keeping the reports accessible."
62
  msgstr ""
63
  "Activar el rastreador de encendido o apagado, pero conserve los informes "
64
  "accesibles (que no tendría, si desactivó el plugin)."
65
 
66
+ #: ../admin/config/index.php:113
 
 
 
 
 
 
 
 
 
67
  #, fuzzy
68
  msgid "Tracking Mode"
69
  msgstr "Seguimiento Activo"
70
 
71
+ #: ../admin/config/index.php:113
72
  #, fuzzy
73
  msgid ""
74
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
84
  "la mayoría de los <strong> spammers, buscadores y otros rastreadores </"
85
  "strong> no serán registrados."
86
 
87
+ #: ../admin/config/index.php:113
88
+ msgid "Client Side"
89
  msgstr ""
90
 
91
+ #: ../admin/config/index.php:113
92
  #, fuzzy
93
+ msgid "Server Side"
94
  msgstr "Del lado del servidor"
95
 
96
+ #: ../admin/config/index.php:114
97
  msgid "Stealth Mode"
98
  msgstr ""
99
 
100
+ #: ../admin/config/index.php:114
101
  msgid ""
102
  "Do not add the javascript tracking code to your pages, if tracking mode is "
103
  "set to Server. Please note: if enabled, this will prevent the tracker from "
105
  "etc. This option is ignored is Tracking Mode is set to Client."
106
  msgstr ""
107
 
108
+ #: ../admin/config/index.php:114 ../admin/view/wp-slimstat-reports.php:1359
109
+ msgid "Off"
110
+ msgstr ""
111
+
112
+ #: ../admin/config/index.php:114
113
+ msgid "On"
114
+ msgstr "El"
115
+
116
+ #: ../admin/config/index.php:115
117
  #, fuzzy
118
  msgid "Admin Pages"
119
  msgstr "Principales Páginas de Salida"
120
 
121
+ #: ../admin/config/index.php:115
122
  msgid "Enable this option to track your users' activity within the admin."
123
  msgstr ""
124
  "Habilite esta opción para realizar un seguimiento de la actividad de sus "
125
  "usuarios dentro de la administración."
126
 
127
+ #: ../admin/config/index.php:115
128
  #, fuzzy
129
  msgid "Track"
130
  msgstr "Rastreador"
131
 
132
+ #: ../admin/config/index.php:115
133
  #, fuzzy
134
  msgid "Do not track"
135
  msgstr "Bot o Crawler"
136
 
137
+ #: ../admin/config/index.php:117
138
  msgid "WordPress Integration"
139
  msgstr "Integración WordPress"
140
 
141
+ #: ../admin/config/index.php:118
142
  msgid "Menu Position"
143
  msgstr "Posición de menú"
144
 
145
+ #: ../admin/config/index.php:118
146
  #, fuzzy
147
  msgid ""
148
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
151
  "Elija entre un menú de administración independiente para WP SLIMStat o un "
152
  "menú desplegable en la barra de administrador (si está visible)."
153
 
154
+ #: ../admin/config/index.php:118
155
  msgid "Side Menu"
156
  msgstr "Menú lateral"
157
 
158
+ #: ../admin/config/index.php:118
159
  msgid "Admin Bar"
160
  msgstr "Barra de administración"
161
 
162
+ #: ../admin/config/index.php:119
163
  #, fuzzy
164
  msgid "Posts and Pages"
165
  msgstr "Añadir columna a Publicaciones"
166
 
167
+ #: ../admin/config/index.php:119
168
  #, fuzzy
169
  msgid ""
170
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
171
+ "per post within the timeframe specified here below."
172
  msgstr ""
173
  "Añadir una nueva columna a la pantalla Editar publicaciones, con el número "
174
  "de visitas por publicación (pueden ralentizar la renderización de páginas)."
175
 
176
+ #: ../admin/config/index.php:120
 
 
 
 
 
 
 
 
 
 
 
177
  #, fuzzy
178
  msgid "Report Interval"
179
  msgstr "Únicamente interno"
180
 
181
+ #: ../admin/config/index.php:120
182
  msgid ""
183
  "Enter the time range, in days, that should be used to calculate the value "
184
  "here above."
185
  msgstr ""
186
 
187
+ #: ../admin/config/index.php:121
188
  #, fuzzy
189
  msgid "Report Type"
190
  msgstr "Informes Personalizados"
191
 
192
+ #: ../admin/config/index.php:121
193
  msgid ""
194
  "Select what kind of information you would like to see displayed on the Posts "
195
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
196
  "IPs consider only one hit per user in the given time range."
197
  msgstr ""
198
 
199
+ #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:100
200
+ #: ../admin/view/wp-slimstat-reports.php:109
201
+ #: ../admin/view/wp-slimstat-reports.php:1375
202
+ #: ../admin/view/wp-slimstat-reports.php:1533
203
  msgid "Pageviews"
204
  msgstr "Paginas visitadas"
205
 
206
+ #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:110
207
+ #: ../admin/view/wp-slimstat-reports.php:286
208
+ #: ../admin/view/wp-slimstat-reports.php:526
209
+ #: ../admin/view/wp-slimstat-reports.php:1390
210
+ #: ../admin/view/wp-slimstat-reports.php:1435
211
  msgid "Unique IPs"
212
  msgstr "IPs Unicas"
213
 
214
+ #: ../admin/config/index.php:122
215
+ #, fuzzy
216
+ msgid "Dashboard Widgets"
217
+ msgstr "Sumario"
218
+
219
+ #: ../admin/config/index.php:122
220
+ msgid ""
221
+ "Choose if you want to have the most important reports on your WordPress "
222
+ "Dashboard. Use the Screen Options dropdown to select which ones to display."
223
+ msgstr ""
224
+
225
+ #: ../admin/config/index.php:123
226
  #, fuzzy
227
  msgid "Hide Add-ons"
228
  msgstr "Añadidos"
229
 
230
+ #: ../admin/config/index.php:123
231
  msgid ""
232
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
233
  "from the list of plugins in WordPress. Please note that you will still "
234
  "receive updates for hidden add-ons."
235
  msgstr ""
236
 
237
+ #: ../admin/config/index.php:125
238
  msgid "Database"
239
  msgstr "Base de datos"
240
 
241
+ #: ../admin/config/index.php:126
242
  msgid "Retain data for"
243
  msgstr "Conservar los datos durante"
244
 
245
+ #: ../admin/config/index.php:126
246
  #, fuzzy
247
  msgid ""
248
  "Clean-up log entries older than the number of days specified here above. "
253
  "aquí arriba. Introduzca <strong> 0 </strong> (número cero) si desea "
254
  "conservar sus datos independientemente de su edad."
255
 
256
+ #: ../admin/config/index.php:126
257
  msgid "Next clean-up on"
258
  msgstr "Siguiente limpieza en"
259
 
260
+ #: ../admin/config/index.php:126
261
  #, fuzzy, php-format
262
  msgid ""
263
  "Entries logged on or before %s will be archived or deleted according to the "
266
  "Los comentarios registrados en o antes del %s se eliminarán de forma "
267
  "permanente."
268
 
269
+ #: ../admin/config/index.php:126 ../admin/view/index.php:102
270
  #: ../admin/view/wp-slimstat-db.php:79
271
+ #: ../admin/view/wp-slimstat-reports.php:1359
272
  msgid "days"
273
  msgstr "dias"
274
 
275
+ #: ../admin/config/index.php:127
276
  #, fuzzy
277
  msgid "Delete records"
278
  msgstr "Palabras clave"
279
 
280
+ #: ../admin/config/index.php:127
281
  msgid ""
282
  "If DB space is not an issue, you can decide to archive older records in "
283
  "another table, instead of deleting them. This way performance is preserved, "
287
  "is uninstalled. Make sure to backup your data before you proceed."
288
  msgstr ""
289
 
290
+ #: ../admin/config/index.php:134
291
  #, fuzzy
292
+ msgid "Advanced Options"
293
+ msgstr "Filtros avanzados"
294
 
295
+ #: ../admin/config/index.php:135
296
+ #, fuzzy
297
+ msgid "Session Duration"
298
+ msgstr "Visitas"
299
+
300
+ #: ../admin/config/index.php:135
301
+ #, fuzzy
302
+ msgid ""
303
+ "How many seconds should a human session last? Google Analytics sets it to "
304
+ "1800 seconds."
305
  msgstr ""
306
+ "¿Cuántos segundos debe durar una sesión humana en su sitio? Google Analytics "
307
+ "lo establece en 1.800 segundos."
308
 
309
+ #: ../admin/config/index.php:135 ../admin/config/index.php:205
310
+ msgid "seconds"
311
+ msgstr "Segundos"
312
 
313
+ #: ../admin/config/index.php:136
314
+ msgid "Extend Session"
315
+ msgstr "Extender Sesión"
316
+
317
+ #: ../admin/config/index.php:136
318
+ msgid "Extend the duration of a session each time the user visits a new page."
319
  msgstr ""
320
+ "Extender la duración de una sesión cada vez que el usuario visita una página "
321
+ "nueva."
322
 
323
+ #: ../admin/config/index.php:137
324
+ msgid "Enable CDN"
325
+ msgstr "Habilitar CDN"
 
326
 
327
+ #: ../admin/config/index.php:137
328
  msgid ""
329
+ "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
330
+ "by serving our tracking code from their fast and reliable network (free "
331
+ "service)."
332
  msgstr ""
333
+ "Uso <a href='http://www.jsdelivr.com/' target='_blank'> JSDelivr </a> 's "
334
+ "CDN, sirviendo nuestro código de seguimiento de su red rápida y confiable "
335
+ "(servicio gratuito)."
336
 
337
+ #: ../admin/config/index.php:138
338
+ msgid "Extensions to Track"
339
+ msgstr "Extensiones a rastreo"
 
340
 
341
+ #: ../admin/config/index.php:138
342
  msgid ""
343
+ "List all the file extensions that you want to be treated as Downloads. "
344
+ "Please note that links pointing to external resources (i.e. PDFs on a "
345
+ "different website) are considered Downloads and not Outbound Links (and "
346
+ "tracked as such), if their extension matches one of the ones listed here "
347
+ "below."
348
  msgstr ""
349
+ "Enlista todas las extensiones de archivo que desea sean tratadas como "
350
+ "descargas. Por favor, tenga en cuenta que los enlaces que apuntan a recursos "
351
+ "externos (es decir, archivos PDF en un sitio web diferente) se consideran "
352
+ "Descargas y no Vínculos salientes (y rastreado como tal), si su extensión "
353
+ "coincide con uno de los que se enumeran a continuación."
354
 
355
+ #: ../admin/config/index.php:140
356
  #, fuzzy
357
+ msgid "Internal and Outbound Links"
358
+ msgstr "Enlaces Salientes Recientes"
359
+
360
+ #: ../admin/config/index.php:141
361
+ #, fuzzy
362
+ msgid "Track Outbound Clicks"
363
+ msgstr "Enlaces Salientes Recientes"
364
 
365
+ #: ../admin/config/index.php:141
366
  msgid ""
367
+ "Track when your visitors click on link to external websites. This option "
368
+ "required Spy Mode to be enabled."
369
  msgstr ""
370
+ "Rastree cuando los usuarios hacen clic en el enlace a sitios web externos. "
371
+ "Esta opción requere que el modo Espía esté habilitado."
 
372
 
373
+ #: ../admin/config/index.php:142
374
  #, fuzzy
375
+ msgid "Track Coordinates"
376
+ msgstr "Seguimiento Activo"
377
 
378
+ #: ../admin/config/index.php:142
 
379
  msgid ""
380
+ "Collect mouse coordinates and other information for clicks on internal "
381
+ "links. Strongly recommended if you're using the heatmap add-on. By default, "
382
+ "this information is only collected for external links."
383
  msgstr ""
 
 
 
 
 
 
384
 
385
+ #: ../admin/config/index.php:143
386
+ msgid "No Callback"
387
+ msgstr ""
388
 
389
+ #: ../admin/config/index.php:143
390
+ msgid ""
391
+ "Track the event but do not invoke the callback function on links marked with "
392
+ "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
393
+ "attribute contains one of these strings (separated by comma). Useful to "
394
+ "prevent conflicts with lightbox and similar libraries."
395
+ msgstr ""
396
 
397
+ #: ../admin/config/index.php:144
398
+ msgid "Do Not Track"
399
  msgstr ""
400
 
401
+ #: ../admin/config/index.php:144
402
  msgid ""
403
+ "Do not track links marked with one of these class names, <em>rel</em> "
404
+ "attributes or whose <em>href</em> attribute contains one of these strings "
405
+ "(separated by comma)."
406
  msgstr ""
407
 
408
+ #: ../admin/config/index.php:146
409
+ msgid "Pages not belonging to this site"
 
 
 
 
410
  msgstr ""
 
411
 
412
+ #: ../admin/config/index.php:147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
413
  msgid ""
414
+ "Add the following code to all the non-WP pages you want to track, right "
415
+ "before the closing BODY tag. Please make sure to change the protocol of all "
416
+ "the URLs to HTTPS, if you external site is served over a secure channel."
417
  msgstr ""
418
 
419
+ #: ../admin/config/index.php:157
 
 
 
 
 
 
 
 
420
  #, fuzzy
421
+ msgid "Allow External Domains"
422
+ msgstr "Enlaces Externos Hostiles"
423
+
424
+ #: ../admin/config/index.php:157
425
  msgid ""
426
+ "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
427
+ "header is present on the requested resource, when using the external "
428
+ "tracking code here above, list the domains (complete with scheme, separated "
429
+ "by commas) you would like to allow. For example: <code>http://my.domain.ext</"
430
+ "code> (no trailing slash). Please see <a href='http://www.w3.org/TR/cors/"
431
+ "#security' target='_blank'>this W3 resource</a> for more information on the "
432
+ "security implications of allowing CORS requests."
433
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
434
 
435
+ #: ../admin/config/index.php:158 ../admin/config/index.php:180
436
+ #: ../admin/config/index.php:208
437
  msgid "Miscellaneous"
438
  msgstr "Varios"
439
 
440
+ #: ../admin/config/index.php:159
441
+ msgid "Enable UAN"
442
+ msgstr "Habilitar UAN"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
443
 
444
+ #: ../admin/config/index.php:159
445
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
446
  msgid ""
447
+ "Send anonymous data about user agents to our server for analysis. This "
448
+ "allows us to contribute to the <a href='http://browscap.org/' "
449
+ "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
450
+ "Slimstat's browser detection functionality. It also enables our transparent "
451
+ "ads network. No worries, your site will not be affected in any way."
 
452
  msgstr ""
453
+ "Recopilar datos sobre los agentes de usuario desconocidos, y enviarlos de "
454
+ "forma anónima a nuestro servidor para su análisis. Esto nos permite "
455
+ "contribuir con el proyecto <a href='http://browscap.co/' target='_blank'> "
456
+ "opensource BrowsCap </a>, y mejorar la precisión de la funcionalidad de "
457
+ "detección de navegador del SLIMStat."
458
 
459
+ #: ../admin/config/index.php:164
460
  msgid "Filters"
461
  msgstr "Filtros"
462
 
463
+ #: ../admin/config/index.php:166
464
  #, fuzzy
465
+ msgid "Do not track settings"
466
+ msgstr "Bot o Crawler"
467
 
468
+ #: ../admin/config/index.php:167
469
  msgid "Track Registered Users"
470
  msgstr "Seguimiento Usuarios Registrados"
471
 
472
+ #: ../admin/config/index.php:167
473
  msgid "Enable this option to track logged in users."
474
  msgstr "Active esta opción para rastrear usuarios registrados."
475
 
476
+ #: ../admin/config/index.php:168
477
  #, fuzzy
478
  msgid "Blacklist by Username"
479
  msgstr "Direcciones IP Blacklist"
480
 
481
+ #: ../admin/config/index.php:168
482
+ #, fuzzy
483
  msgid ""
484
  "List all the usernames you don't want to track, separated by commas. Please "
485
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
486
+ "sensitive. Wildcards: <code>*</code> matches 'any string, including the "
487
+ "empty string', <code>!</code> matches 'any character'. For example, "
488
+ "<code>user*</code> will match user12 and userfoo, <code>u*100</code> will "
489
+ "match user100 and uber100, <code>user!0</code> will match user10 and user90."
490
  msgstr ""
491
+ "Enumere todas las URL de su sitio web a las que usted no desee realizar el "
492
+ "seguimiento, separadas por comas. No incluya el nombre de dominio: <em>/"
493
+ "about, ?p=1</em>, etc. Wildcards: <code>*</code> coincide con 'cualquier "
494
+ "cadena, incluyendo cadena vacía', <code>!</code> coincide con cualquier "
495
+ "caracter'. Por ejemplo, <code>/abou*</code> coincidirá con /about and /"
496
+ "abound, <code> / abo* t </code> coincidirá con /aboundant and /about/, "
497
+ "<code> / abo! T </ code > coincidirá con /about and /abort. Las cadenas no "
498
+ "se afectan por mayúsculas y minúsculas."
499
 
500
+ #: ../admin/config/index.php:169
501
  msgid "Blacklist by IP Address"
502
  msgstr "Direcciones IP Blacklist"
503
 
504
+ #: ../admin/config/index.php:169
505
  #, fuzzy
506
  msgid ""
507
  "List all the IP addresses you don't want to track, separated by commas. Each "
516
  "CIDR </a> (es decir, < em> 192.168.0.0/24 </em>). Si el formato no es "
517
  "correcto, WP SLIMStat no puede rastrear páginas vistas correctamente."
518
 
519
+ #: ../admin/config/index.php:170
520
  #, fuzzy
521
  msgid "Blacklist by Capability"
522
  msgstr "Navegador"
523
 
524
+ #: ../admin/config/index.php:170
525
  msgid ""
526
  "Users having at least one of the <a href='http://codex.wordpress.org/"
527
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
532
  "no se les rastreará. Las Capacidades distinguen entre mayúsculas y "
533
  "minúsculas."
534
 
535
+ #: ../admin/config/index.php:172
536
  msgid "Profiling"
537
  msgstr "Haciendo perfil"
538
 
539
+ #: ../admin/config/index.php:173
540
  msgid "Ignore Spammers"
541
  msgstr "Ignorar Spammers"
542
 
543
+ #: ../admin/config/index.php:173
544
  msgid ""
545
  "Enable this option if you don't want to track visits from users identified "
546
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
553
  "adelante se marcan como correo no deseado, también se eliminarán de la base "
554
  "de datos."
555
 
556
+ #: ../admin/config/index.php:174
557
  #, fuzzy
558
  msgid "Ignore Bots"
559
  msgstr "Navegadores recientes"
560
 
561
+ #: ../admin/config/index.php:174
562
  msgid ""
563
  "Turn on this feature if you want to have the accuracy level of server-side "
564
  "tracking, but not the inconvenience of getting your database clogged with "
566
  "note that in Client mode, bots are ignored regardless of this setting."
567
  msgstr ""
568
 
569
+ #: ../admin/config/index.php:175
570
  #, fuzzy
571
  msgid "Permalinks"
572
  msgstr "Enlace Permanente"
573
 
574
+ #: ../admin/config/index.php:175
575
  msgid ""
576
  "List all the URLs on your website that you don't want to track, separated by "
577
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
590
  "<code> / abo! T </ code > coincidirá con /about and /abort. Las cadenas no "
591
  "se afectan por mayúsculas y minúsculas."
592
 
593
+ #: ../admin/config/index.php:176
594
  #, fuzzy
595
  msgid "Countries"
596
  msgstr "Paises que más visitan"
597
 
598
+ #: ../admin/config/index.php:176
599
  msgid ""
600
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
601
  "track, separated by commas."
603
  "Los códigos de país (Es decir: <code> es-es, it, es </code>) a los que no "
604
  "desee realizar el seguimiento, separados por comas"
605
 
606
+ #: ../admin/config/index.php:177
607
  #, fuzzy
608
  msgid "User Agents"
609
  msgstr "Buscadores"
610
 
611
+ #: ../admin/config/index.php:177
612
  msgid ""
613
  "Browsers (user agents) you don't want to track, separated by commas. You can "
614
  "specify the browser's version adding a slash after the name (i.e. "
625
  "code> coincidirá Chrome y cromo, <code> IE /! 0.0 </code> coincidirá IE/7.0 "
626
  "y IE/8.0. Las cadenas son de mayúsculas y minúsculas."
627
 
628
+ #: ../admin/config/index.php:178
629
  #, fuzzy
630
  msgid "Referring Sites"
631
  msgstr "Motores de Búsqueda"
632
 
633
+ #: ../admin/config/index.php:178
634
  msgid ""
635
  "Referring URLs that you don't want to track, separated by commas: "
636
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
645
  "cadenas son mayúsculas y minúsculas. Por favor incluya ya sea un comodín o "
646
  "el protocolo que desea filtrar (http://, https://)."
647
 
648
+ #: ../admin/config/index.php:181
649
+ msgid "Enable Privacy Mode"
650
+ msgstr "Activar el modo de privacidad"
651
+
652
+ #: ../admin/config/index.php:181
653
+ msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
654
+ msgstr ""
655
+ "Enmascarar direcciones IP de sus visitantes para cumplir con leyes de "
656
+ "privacidad europeas."
657
+
658
+ #: ../admin/config/index.php:182
659
+ msgid "Ignore Prefetch Requests"
660
+ msgstr "Ignorar PPeticiones Prefetch"
661
+
662
+ #: ../admin/config/index.php:182
663
  #, fuzzy
664
+ msgid ""
665
+ "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
666
+ "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
667
+ "target='_blank'>Link Prefetching functionality</a>."
668
+ msgstr ""
669
+ "Evitar que WP SLIMStat de el seguimiento de páginas vistas generadas por <a "
670
+ "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
671
+ "target='_blank'> Función de Prellamado de enlaces de Firefox </a>."
672
 
673
+ #: ../admin/config/index.php:187 ../admin/config/index.php:220
674
  #, fuzzy
675
+ msgid "Reports"
676
+ msgstr "Informes Personalizados"
677
+
678
+ #: ../admin/config/index.php:189
679
+ msgid "Formats and Conversions"
680
+ msgstr ""
681
+
682
+ #: ../admin/config/index.php:190
683
+ msgid "Number Format"
684
+ msgstr "Formato de número"
685
+
686
+ #: ../admin/config/index.php:190
687
+ #, fuzzy
688
+ msgid "Choose the number format you want to use for your reports."
689
+ msgstr ""
690
+ "Seleccione el formato de número que desea utilizar para sus informes, "
691
+ "europeos o americanos."
692
+
693
+ #: ../admin/config/index.php:191
694
+ #, fuzzy
695
+ msgid "Date Format"
696
+ msgstr "Fecha y hora"
697
 
698
+ #: ../admin/config/index.php:191
699
  msgid ""
700
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
701
+ "Format</a> to use when displaying a pageview's date."
702
  msgstr ""
 
 
703
 
704
+ #: ../admin/config/index.php:192
705
  #, fuzzy
706
+ msgid "Time Format"
707
+ msgstr "Formato de número"
708
 
709
+ #: ../admin/config/index.php:192
710
  msgid ""
711
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
712
+ "Format</a> to use when displaying a pageview's time."
713
+ msgstr ""
714
+
715
+ #: ../admin/config/index.php:193
716
+ #, fuzzy
717
+ msgid "Use Display Name"
718
+ msgstr "Mostrar Nombre para mostrar"
719
+
720
+ #: ../admin/config/index.php:193
721
+ msgid ""
722
+ "By default, users are listed by their usernames. Use this option to "
723
+ "visualize their display names instead."
724
  msgstr ""
725
+ "De forma predeterminada, los usuarios se enumeran por sus nombres de "
726
+ "usuario. Utilice esta opción para visualizar los nombres para mostrar en su "
727
+ "lugar."
728
+
729
+ #: ../admin/config/index.php:194
730
+ #, fuzzy
731
+ msgid "Use Titles"
732
+ msgstr "Mostrar Títulos"
733
+
734
+ #: ../admin/config/index.php:194
735
+ #, fuzzy
736
+ msgid ""
737
+ "Slimstat converts your permalinks into post, page and category titles. "
738
+ "Disable this feature if you need to see the URL in your reports."
739
+ msgstr ""
740
+ "WP SLIMStat convierte tus enlaces permanentes en títulos de publicaciones y "
741
+ "páginas. Desactive esta función si necesita ver la URL en sus informes."
742
+
743
+ #: ../admin/config/index.php:195
744
+ msgid "Convert IP Addresses"
745
+ msgstr "Convertir Direcciones IP"
746
+
747
+ #: ../admin/config/index.php:195
748
+ msgid "Display provider names instead of IP addresses."
749
+ msgstr "Muestra los nombres de proveedores, en lugar de direcciones IP."
750
+
751
+ #: ../admin/config/index.php:197
752
+ msgid "Functionality"
753
+ msgstr "Funcionalidad"
754
 
755
  #: ../admin/config/index.php:198
756
+ msgid "SlimScroll"
757
  msgstr ""
758
 
759
  #: ../admin/config/index.php:198
760
  msgid ""
761
+ "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
762
+ "scrollbar."
763
+ msgstr ""
764
+
765
+ #: ../admin/config/index.php:199
766
+ msgid "Expand Details"
767
+ msgstr "Expandir Detalles"
768
+
769
+ #: ../admin/config/index.php:199
770
+ msgid "Expand each row's details by default, insted of on mousehover."
771
+ msgstr ""
772
+ "Expandir cada fila de forma predeterminada, en vez de al sobreponer el ratón."
773
+
774
+ #: ../admin/config/index.php:200 ../admin/config/index.php:206
775
+ #, fuzzy
776
+ msgid "Rows to Display"
777
+ msgstr "No hay datos que mostrar"
778
+
779
+ #: ../admin/config/index.php:200
780
+ msgid "Specify the number of items in each report."
781
+ msgstr "Especifique el número de elementos en cada informe."
782
+
783
+ #: ../admin/config/index.php:201 ../admin/view/wp-slimstat-db.php:101
784
+ #, fuzzy
785
+ msgid "Max Results"
786
+ msgstr "Limitar Resultados"
787
+
788
+ #: ../admin/config/index.php:201
789
+ msgid ""
790
+ "Decide how many records should be retrieved from the database in total. "
791
+ "Depending on your server configuration, you may want to fine tune this value "
792
+ "to avoid exceeding your PHP memory limit."
793
  msgstr ""
794
 
795
+ #: ../admin/config/index.php:202
796
+ msgid "IP Lookup"
797
+ msgstr "Búsqueda de IP"
798
+
799
+ #: ../admin/config/index.php:202
800
+ msgid "Customize the Geolocation service to be used in the reports."
801
+ msgstr ""
802
+ "Personalizar el servicio de Geolocalización de ser utilizado en los informes."
803
+
804
+ #: ../admin/config/index.php:204
805
+ msgid "Activity Log"
806
+ msgstr "Bitácora de actividades"
807
+
808
+ #: ../admin/config/index.php:205
809
+ msgid "Live Stream"
810
+ msgstr "Transmisión en Vivo"
811
+
812
+ #: ../admin/config/index.php:205
813
+ #, fuzzy
814
+ msgid ""
815
+ "Enable the Live view, which refreshes the Activity Log every X seconds. "
816
+ "Enter <strong>0</strong> (number zero) to deactivate this feature."
817
+ msgstr ""
818
+ "Habilitar la vista en vivo, lo que refresca la pantalla Ahora cada X "
819
+ "segundos. Introduzca <strong> 0 </strong> (número cero) para deshabilitar "
820
+ "esta funcionalidad."
821
+
822
+ #: ../admin/config/index.php:206
823
+ #, fuzzy
824
+ msgid "Specify the number of items in the Activity Log."
825
+ msgstr "Especifica el número de elementos en Ahora."
826
+
827
+ #: ../admin/config/index.php:209
828
+ msgid "Custom CSS"
829
+ msgstr "CSS personalizado"
830
+
831
+ #: ../admin/config/index.php:209
832
+ #, fuzzy
833
+ msgid ""
834
+ "Paste here your custom stylesheet to personalize the way your reports look. "
835
+ "<a href='https://slimstat.freshdesk.com/support/solutions/"
836
+ "articles/5000528528-how-can-i-change-the-colors-associated-to-color-coded-"
837
+ "pageviews-known-user-known-visitors-search-e' target='_blank'>Check the FAQ</"
838
+ "a> for more information on how to use this setting."
839
+ msgstr ""
840
+ "Pega aquí tu hoja de estilo personalizada para personalizar la forma en que "
841
+ "sus informes se ven. <a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
842
+ "target='_blank'> Compruebe la FAQ </a> para obtener más información sobre "
843
+ "cómo utilizar esta funcionalidad."
844
+
845
+ #: ../admin/config/index.php:210
846
+ #, fuzzy
847
+ msgid "Chart Colors"
848
+ msgstr "Controles de gráfica"
849
+
850
+ #: ../admin/config/index.php:210
851
+ msgid ""
852
+ "Customize the look and feel of your charts by assigning personalized colors "
853
+ "to each metric. List 4 hex colors separated by commas, strictly in the "
854
+ "following order: metric 1 previous, metric 2 previous, metric 1 current, "
855
+ "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
856
  msgstr ""
857
 
858
+ #: ../admin/config/index.php:211
859
+ #, fuzzy
860
+ msgid "Show User Agent"
861
+ msgstr "Buscadores"
862
+
863
+ #: ../admin/config/index.php:211
864
  msgid ""
865
+ "Choose if you want to see the browser name or a complete user agent string "
866
+ "when hovering on browser icons."
 
867
  msgstr ""
868
+ "Seleccione si desea ver el nombre del navegador o una cadena completa de "
869
+ "agente de usuario al pasar el cursor sobre los iconos del navegador."
870
 
871
+ #: ../admin/config/index.php:212
872
+ #, fuzzy
873
+ msgid "Enable SOV"
874
+ msgstr "Habilitar CDN"
875
 
876
+ #: ../admin/config/index.php:212
877
+ msgid ""
878
+ "In linguistic typology, a subject-object-verb (SOV) language is one in which "
879
+ "the subject, object, and verb of a sentence appear in that order, like in "
880
+ "Japanese."
881
  msgstr ""
 
 
882
 
883
+ #: ../admin/config/index.php:213
884
+ msgid "Social Analytics"
885
+ msgstr ""
886
 
887
+ #: ../admin/config/index.php:213
 
888
  msgid ""
889
+ "Thanks to a <a href='http://getsocial.io/enterprise' "
890
+ "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
891
+ "set of analytics for social media where you can identify top performing "
892
+ "posts. Track social sharing to understand which of your posts are generating "
893
+ "more engagement. When this option is enabled, Slimstat sends a list of all "
894
+ "your posts's URLs to their service for analysis once daily."
895
  msgstr ""
 
 
 
896
 
897
+ #: ../admin/config/index.php:218
898
+ msgid "Access Control"
899
+ msgstr ""
 
900
 
901
+ #: ../admin/config/index.php:221
902
  #, fuzzy
903
  msgid "Restrict Authors"
904
  msgstr "Autor de la entrada(sección)"
905
 
906
+ #: ../admin/config/index.php:221
907
  #, fuzzy
908
  msgid ""
909
  "Enable this option if you want your authors to only see stats related to "
912
  "Habilite esta opción si desea que sus autores sólo vean las estadísticas "
913
  "relacionadas con su propio contenido"
914
 
915
+ #: ../admin/config/index.php:222 ../admin/config/index.php:226
916
  #, fuzzy
917
  msgid "Capability"
918
  msgstr "Navegador"
919
 
920
+ #: ../admin/config/index.php:222
921
  #, fuzzy
922
  msgid ""
923
  "Specify the minimum <a href='http://codex.wordpress.org/"
935
  "blanca 'Acceso de lectura' aquí abajo. En este caso, la lista tiene "
936
  "prioridad sobre la capacidad."
937
 
938
+ #: ../admin/config/index.php:223 ../admin/config/index.php:227
939
  msgid "Whitelist"
940
  msgstr "Lista blanca"
941
 
942
+ #: ../admin/config/index.php:223
943
  msgid ""
944
  "List all the users who should have access to the reports, separated by "
945
  "commas. Administrators are implicitly allowed, so you don't need to list "
950
  "es necesario enumerarlos aquí. Los nombres de usuario distinguen entre "
951
  "mayúsculas y minúsculasdefecto."
952
 
953
+ #: ../admin/config/index.php:225 ../admin/config/index.php:250
954
+ #: ../admin/wp-slimstat-admin.php:532 ../admin/wp-slimstat-admin.php:535
955
+ #: ../wp-slimstat.php:1803
956
  #, fuzzy
957
  msgid "Settings"
958
  msgstr "Seleccionar orden"
959
 
960
+ #: ../admin/config/index.php:226
961
  #, fuzzy
962
  msgid ""
963
  "Specify the minimum <a href='http://codex.wordpress.org/"
971
  "blanca de aquí abajo se puede utilizar para anular esta opción para usuarios "
972
  "específicos."
973
 
974
+ #: ../admin/config/index.php:227
975
  msgid ""
976
  "List all the users who can edit these options, separated by commas. Please "
977
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
982
  "implícitamente permitidos, así que ¡no se olvide de incluirse a si mismo! "
983
  "Los nombres de usuario distinguen entre mayúsculas y minúsculas."
984
 
985
+ #: ../admin/config/index.php:232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
986
  msgid "Maintenance"
987
  msgstr "Mantenimiento"
988
 
989
+ #: ../admin/config/index.php:237 ../admin/view/addons.php:32
990
+ #: ../admin/wp-slimstat-admin.php:490 ../admin/wp-slimstat-admin.php:505
991
+ #: ../wp-slimstat.php:1800
992
+ msgid "Add-ons"
993
+ msgstr "Añadidos"
994
+
995
  #: ../admin/config/maintenance.php:16
996
  #, fuzzy
997
  msgid ""
1001
  "¡Felicidades! WP SLIMStat está ahora optimizado para <a href=\"http://www."
1002
  "youtube.com/watch?v=ygE01sOhzz0\" target=\"_blank\"> velocidad ridícula </a>."
1003
 
1004
+ #: ../admin/config/maintenance.php:27
1005
  #, fuzzy
1006
  msgid "Indexing has been disabled. Enjoy the extra database space!"
1007
  msgstr ""
1008
  "Indexación se ha desactivado con éxito. Disfrute del espacio de base de "
1009
  "datos adicional ¡que acaba de ganar!"
1010
 
1011
+ #: ../admin/config/maintenance.php:43
1012
  msgid "records deleted from your database."
1013
  msgstr "Registros eliminados de la base de datos."
1014
 
1015
+ #: ../admin/config/maintenance.php:48
1016
  msgid "The geolocation database has been uninstalled from your server."
1017
  msgstr ""
1018
 
1019
+ #: ../admin/config/maintenance.php:58
1020
  msgid "The geolocation database has been installed on your server."
1021
  msgstr ""
1022
 
1023
+ #: ../admin/config/maintenance.php:166
1024
  msgid ""
1025
  "Your data was successfully imported. You may now drop the old tables: "
1026
  "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
1029
  "delete the old tables."
1030
  msgstr ""
1031
 
1032
+ #: ../admin/config/maintenance.php:175
1033
  msgid "Your reports were successfully restored to their default arrangement."
1034
  msgstr ""
1035
  "Sus informes fueron restaurados con éxito a su disposición de forma "
1036
  "predeterminada."
1037
 
1038
+ #: ../admin/config/maintenance.php:185
1039
  #, fuzzy
1040
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1041
  msgstr "Sus tablas WP SLIMStat han sido convertidas correctamente a. InnoDB"
1042
 
1043
+ #: ../admin/config/maintenance.php:191
1044
  #, fuzzy
1045
  msgid "All the archived records were successfully deleted."
1046
  msgstr "Todos los registros se han eliminado con éxito."
1047
 
1048
+ #: ../admin/config/maintenance.php:199
1049
  msgid "All the records were successfully deleted."
1050
  msgstr "Todos los registros se han eliminado con éxito."
1051
 
1052
+ #: ../admin/config/maintenance.php:221
1053
  msgid "Debugging"
1054
  msgstr ""
1055
 
1056
+ #: ../admin/config/maintenance.php:224
1057
+ #, fuzzy
1058
+ msgid "Tracker Status"
1059
+ msgstr "Rastreador"
1060
 
1061
+ #: ../admin/config/maintenance.php:226
1062
  #, fuzzy
1063
  msgid "recorded on"
1064
  msgstr "Palabras clave"
1065
 
1066
+ #: ../admin/config/maintenance.php:226
1067
  msgid "No Errors so far"
1068
  msgstr ""
1069
 
1070
+ #: ../admin/config/maintenance.php:227
1071
  msgid ""
1072
  "The information here above is useful to troubleshoot issues with the "
1073
+ "tracker. It includes both <strong>errors</strong>, which are returned when "
1074
+ "the tracker could not record a pageview and are indicative of some kind of "
1075
+ "malfunction, and <strong>notices</strong>, which explain the reason why the "
1076
+ "most recent pageview was not recorded, based on your settings (filters, "
1077
+ "blackslists, etc). Please include this code when sending a support request."
1078
+ msgstr ""
1079
+
1080
+ #: ../admin/config/maintenance.php:233
1081
+ #, fuzzy
1082
+ msgid "Enable SQL Debug"
1083
+ msgstr "Habilitar modo Espía"
1084
+
1085
+ #: ../admin/config/maintenance.php:236
1086
+ msgid ""
1087
+ "Display the SQL code used to retrieve the data from the database. Useful to "
1088
+ "troubleshoot issues with data consistency or missing pageviews."
1089
+ msgstr ""
1090
+
1091
+ #: ../admin/config/maintenance.php:240
1092
+ msgid "Disable SQL Debug"
1093
+ msgstr ""
1094
+
1095
+ #: ../admin/config/maintenance.php:243
1096
+ msgid "Deactivate the SQL output on top of each report."
1097
  msgstr ""
1098
 
1099
+ #: ../admin/config/maintenance.php:248
1100
  msgid "Layout"
1101
  msgstr ""
1102
 
1103
+ #: ../admin/config/maintenance.php:251
1104
  #, fuzzy
1105
  msgid ""
1106
  "Are you sure you want to restore the default arrangement of your reports?"
1108
  "¿Está seguro de que desea restaurar la disposición por defecto de sus "
1109
  "informes?"
1110
 
1111
+ #: ../admin/config/maintenance.php:251
1112
  msgid "No Panic Button"
1113
  msgstr "Botón No Pánico"
1114
 
1115
+ #: ../admin/config/maintenance.php:253
1116
  #, fuzzy
1117
  msgid ""
1118
  "Reset the default arrangement of your reports. Helpful when, for some "
1122
  "Cambiar la disposición por defecto de sus informes. Útil cuando, por alguna "
1123
  "razón, los informes desaparecen de sus paneles."
1124
 
1125
+ #: ../admin/config/maintenance.php:257
1126
  msgid "Data Maintenance"
1127
  msgstr "Mantenimiento de Datos"
1128
 
1129
+ #: ../admin/config/maintenance.php:260
1130
  #, fuzzy
1131
  msgid "Delete pageviews where"
1132
  msgstr "Filtrar páginas visitadas dondé:"
1133
 
1134
+ #: ../admin/config/maintenance.php:274 ../admin/view/index.php:16
1135
  msgid "equals"
1136
  msgstr "es igual a"
1137
 
1138
+ #: ../admin/config/maintenance.php:275 ../admin/view/index.php:17
1139
  msgid "is not equal to"
1140
  msgstr "no es igual a"
1141
 
1142
+ #: ../admin/config/maintenance.php:276 ../admin/view/index.php:18
1143
  #, fuzzy
1144
  msgid "contains"
1145
  msgstr "Contiene"
1146
 
1147
+ #: ../admin/config/maintenance.php:277 ../admin/view/index.php:19
1148
  msgid "is included in"
1149
  msgstr ""
1150
 
1151
+ #: ../admin/config/maintenance.php:278 ../admin/view/index.php:20
1152
  #, fuzzy
1153
  msgid "does not contain"
1154
  msgstr "No contiene"
1155
 
1156
+ #: ../admin/config/maintenance.php:279 ../admin/view/index.php:21
1157
  #, fuzzy
1158
  msgid "starts with"
1159
  msgstr "Empieza por"
1160
 
1161
+ #: ../admin/config/maintenance.php:280 ../admin/view/index.php:22
1162
  #, fuzzy
1163
  msgid "ends with"
1164
  msgstr "Acaba en"
1165
 
1166
+ #: ../admin/config/maintenance.php:281 ../admin/view/index.php:23
1167
  msgid "sounds like"
1168
  msgstr "suena como"
1169
 
1170
+ #: ../admin/config/maintenance.php:282 ../admin/view/index.php:24
1171
  msgid "is greater than"
1172
  msgstr "es mayor que"
1173
 
1174
+ #: ../admin/config/maintenance.php:283 ../admin/view/index.php:25
1175
  msgid "is less than"
1176
  msgstr "es menor que"
1177
 
1178
+ #: ../admin/config/maintenance.php:284 ../admin/view/index.php:27
1179
  msgid "matches"
1180
  msgstr "coincide"
1181
 
1182
+ #: ../admin/config/maintenance.php:285 ../admin/view/index.php:28
1183
  #, fuzzy
1184
  msgid "does not match"
1185
  msgstr "No contiene"
1186
 
1187
+ #: ../admin/config/maintenance.php:286 ../admin/view/index.php:29
1188
  msgid "is empty"
1189
  msgstr "está vacío"
1190
 
1191
+ #: ../admin/config/maintenance.php:287 ../admin/view/index.php:30
1192
  msgid "is not empty"
1193
  msgstr "no está vacío"
1194
 
1195
+ #: ../admin/config/maintenance.php:290 ../admin/view/index.php:42
1196
  #: ../admin/view/index.php:105
1197
  msgid "Apply"
1198
  msgstr "Aplicar"
1199
 
1200
+ #: ../admin/config/maintenance.php:291
1201
  msgid ""
1202
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1203
  msgstr ""
1204
  "¿Está seguro que desea eliminar PERMANENTEMENTE estos registros de su base "
1205
  "de datos?"
1206
 
1207
+ #: ../admin/config/maintenance.php:298
1208
  msgid ""
1209
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1210
  "database?"
1212
  "¿Está seguro que quiere BORRAR PERMANENTEMENTE TODOS los registros de su "
1213
  "base de datos?"
1214
 
1215
+ #: ../admin/config/maintenance.php:298
1216
  #, fuzzy
1217
  msgid "Delete All Records"
1218
  msgstr "Paginas visitadas"
1219
 
1220
+ #: ../admin/config/maintenance.php:301
1221
  #, fuzzy
1222
  msgid ""
1223
  "Erase all the information collected so far by Slimstat, including the "
1226
  "Borrar toda la información recopilada hasta el momento por WP SLIMStat. Esta "
1227
  "<strong> operación no </strong> restablece la configuración."
1228
 
1229
+ #: ../admin/config/maintenance.php:307
1230
  #, fuzzy
1231
  msgid ""
1232
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1235
  "¿Está seguro que quiere BORRAR PERMANENTEMENTE TODOS los registros de su "
1236
  "base de datos?"
1237
 
1238
+ #: ../admin/config/maintenance.php:307
1239
  #, fuzzy
1240
  msgid "Delete Archive"
1241
  msgstr "Filtrar páginas visitadas dondé:"
1242
 
1243
+ #: ../admin/config/maintenance.php:310
1244
  msgid "Erase all the archived records. This operation cannot be undone."
1245
  msgstr ""
1246
 
1247
+ #: ../admin/config/maintenance.php:316
1248
  msgid "Improve Performance"
1249
  msgstr "Mejorar el rendimiento"
1250
 
1251
+ #: ../admin/config/maintenance.php:320
1252
  msgid ""
1253
  "Please note that you will need about 30% more DB space to store the extra "
1254
  "information required."
1256
  "Por favor, tenga en cuenta que necesitará un 30% más de espacio BD para "
1257
  "almacenar la información adicional que se requiere."
1258
 
1259
+ #: ../admin/config/maintenance.php:324
1260
  msgid "Save DB Space"
1261
  msgstr "Guardar Espacio BD"
1262
 
1263
+ #: ../admin/config/maintenance.php:327
1264
  #, fuzzy
1265
  msgid ""
1266
  "Please note that by removing table indexes, Slimstat's performance will be "
1269
  "Tenga en cuenta que al eliminar los índices de tabla, el rendimiento de WP "
1270
  "SLIMStat se verá afectado."
1271
 
1272
+ #: ../admin/config/maintenance.php:334
1273
  msgid ""
1274
  "Hold on tight, we are about to import all your old data. Are you sure you "
1275
  "want to proceed?"
1276
  msgstr ""
1277
 
1278
+ #: ../admin/config/maintenance.php:334
1279
  #, fuzzy
1280
  msgid "Import old data"
1281
  msgstr "Importar y Exportar"
1282
 
1283
+ #: ../admin/config/maintenance.php:337
1284
  msgid ""
1285
  "Import all the records from the old table structure. No data will be deleted "
1286
  "from your database."
1287
  msgstr ""
1288
 
1289
+ #: ../admin/config/maintenance.php:341
1290
  msgid "MaxMind IP to Country"
1291
  msgstr ""
1292
 
1293
+ #: ../admin/config/maintenance.php:347
1294
  msgid ""
1295
  "Do you want to download and install the geolocation database from MaxMind's "
1296
  "server?"
1297
  msgstr ""
1298
 
1299
+ #: ../admin/config/maintenance.php:347
1300
  msgid "Install GeoLite DB"
1301
  msgstr ""
1302
 
1303
+ #: ../admin/config/maintenance.php:350
1304
  msgid "Do you want to uninstall the geolocation database?"
1305
  msgstr ""
1306
 
1307
+ #: ../admin/config/maintenance.php:350
1308
  msgid "Uninstall GeoLite DB"
1309
  msgstr ""
1310
 
1311
+ #: ../admin/config/maintenance.php:354
1312
  msgid ""
1313
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1314
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
1318
  "enable this functionality."
1319
  msgstr ""
1320
 
1321
+ #: ../admin/config/maintenance.php:359
1322
+ msgid "Import and Export"
1323
+ msgstr "Importar y Exportar"
1324
+
1325
+ #: ../admin/config/maintenance.php:363
1326
+ #, fuzzy
1327
+ msgid ""
1328
+ "Here below you can find the current configuration string for Slimstat. You "
1329
+ "can update your settings by pasting a new string inside the text area and "
1330
+ "clicking the Import button."
1331
+ msgstr ""
1332
+ "Aquí abajo puede encontrar la cadena actual de configuración para WP "
1333
+ "SlimStat. Puede actualizar su configuración pegando una nueva cadena aquí "
1334
+ "abajo y haciendo clic en Importar."
1335
+
1336
+ #: ../admin/config/maintenance.php:368
1337
+ msgid "Import"
1338
+ msgstr "Importar"
1339
+
1340
+ #: ../admin/config/maintenance.php:369
1341
+ msgid "Are you sure you want to OVERWRITE your current settings?"
1342
+ msgstr "¿Seguro de que desea sobrescribir la configuración actual?"
1343
+
1344
+ #: ../admin/config/maintenance.php:374
1345
+ msgid "Database Information"
1346
+ msgstr "Información Base de datos"
1347
+
1348
+ #: ../admin/config/maintenance.php:377
1349
+ #, fuzzy
1350
+ msgid "Engine"
1351
+ msgstr "Motores de Búsqueda"
1352
+
1353
+ #: ../admin/config/maintenance.php:381
1354
+ msgid "switch to InnoDB"
1355
+ msgstr "cambiar a InnoDB"
1356
+
1357
+ #: ../admin/config/maintenance.php:392
1358
+ #, fuzzy
1359
+ msgid "records"
1360
+ msgstr "Palabras clave"
1361
+
1362
+ #: ../admin/view/addons.php:15
1363
+ msgid ""
1364
+ "There was an error retrieving the add-ons list from the server. Please try "
1365
+ "again later. Error Message:"
1366
+ msgstr ""
1367
+ "Hubo un error al recuperar la lista de complementos desde el servidor. Por "
1368
+ "favor, inténtelo de nuevo más tarde. Mensaje de error:"
1369
+
1370
+ #: ../admin/view/addons.php:25
1371
+ msgid ""
1372
+ "There was an error decoding the add-ons list from the server. Please try "
1373
+ "again later."
1374
+ msgstr ""
1375
+ "Se produjo un error decodificando la lista de complementos desde el "
1376
+ "servidor. Por favor, inténtelo de nuevo más tarde."
1377
+
1378
+ #: ../admin/view/addons.php:33
1379
+ #, fuzzy
1380
+ msgid ""
1381
+ "Add-ons extend the functionality of Slimstat in many interesting ways. We "
1382
+ "offer both free and premium (paid) extensions. Each add-on can be installed "
1383
+ "as a separate plugin, which will receive regular updates via the WordPress "
1384
+ "Plugins panel. In order to be notified when a new version of a premium add-"
1385
+ "on is available, please enter the <strong>license key</strong> you received "
1386
+ "when you purchased it."
1387
+ msgstr ""
1388
+ "Los complementos amplían la funcionalidad de WP SLIMStat de muchas maneras "
1389
+ "interesantes. Ofrecemos extensiones tanto gratuitas como premium (de pago). "
1390
+ "Cada complemento se puede instalar como un plugin independiente, que "
1391
+ "recibirá actualizaciones regulares a través del panel de WordPress Plugins. "
1392
+ "Para ser notificado cuando una nueva versión de un añadido premium está "
1393
+ "disponible, por favor introduzca la clave<strong> de licencia </strong> que "
1394
+ "recibió cuando compró."
1395
+
1396
+ #: ../admin/view/addons.php:37
1397
+ #, php-format
1398
  msgid ""
1399
+ "This list is refreshed once daily: <a href=\"%s&amp;force_refresh=true"
1400
+ "\">click here</a> to clear the cache."
 
1401
  msgstr ""
 
 
 
1402
 
1403
+ #: ../admin/view/addons.php:46
1404
+ msgid "Add-on"
1405
+ msgstr "Añadido"
 
 
 
 
1406
 
1407
+ #: ../admin/view/addons.php:46
1408
+ msgid "Description"
1409
+ msgstr "Descripción"
1410
 
1411
+ #: ../admin/view/addons.php:57
1412
  #, fuzzy
1413
+ msgid "Repo Version"
1414
+ msgstr "Versión de CSS"
1415
 
1416
+ #: ../admin/view/addons.php:57
1417
+ #, fuzzy
1418
+ msgid "Version"
1419
+ msgstr "Versión de CSS"
1420
 
1421
+ #: ../admin/view/addons.php:69
1422
  #, fuzzy
1423
+ msgid "Your Version:"
1424
+ msgstr "Versión del Navegador"
1425
+
1426
+ #: ../admin/view/addons.php:72
1427
+ msgid "Installed and Active"
1428
+ msgstr ""
1429
 
1430
  #: ../admin/view/index.php:26
1431
  msgid "is between (x,y)"
1435
  msgid "Load"
1436
  msgstr ""
1437
 
1438
+ #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1397
1439
  msgid "Today"
1440
  msgstr "Hoy"
1441
 
1442
+ #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1400
1443
  msgid "Yesterday"
1444
  msgstr "Ayer"
1445
 
1506
  "country of origin."
1507
  msgstr ""
1508
 
1509
+ #: ../admin/view/layout.php:40
1510
+ msgid "Customize and organize your reports"
1511
+ msgstr ""
1512
+
1513
+ #: ../admin/view/layout.php:41
1514
+ msgid ""
1515
+ "Drag and drop report placeholders from one container to another, to "
1516
+ "customize the information you want to see right away when you open Slimstat. "
1517
+ "Place two or more charts on the same view, clone reports or move them to the "
1518
+ "Inactive Reports container for improved performance. It is your website, and "
1519
+ "you know how metrics should be combined to get a clear picture of the "
1520
+ "traffic it generates.<br/><br/><strong>Note</strong>: if a placeholder is "
1521
+ "greyed out, it means that the corresponding report is currently hidden "
1522
+ "(Screen Options tab)."
1523
+ msgstr ""
1524
+
1525
+ #: ../admin/view/layout.php:53
1526
+ msgid "Clone"
1527
+ msgstr ""
1528
+
1529
+ #: ../admin/view/layout.php:57
1530
+ #, fuzzy
1531
+ msgid "Delete"
1532
+ msgstr "Palabras clave"
1533
+
1534
  #: ../admin/view/right-now.php:12
1535
  msgid "Human"
1536
  msgstr "Humana"
1547
  msgid "Syndication Reader"
1548
  msgstr "Lector de Sindicación"
1549
 
1550
+ #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1031
1551
+ #: ../admin/view/wp-slimstat-reports.php:1706
1552
  msgid "No data to display"
1553
  msgstr "No hay datos que mostrar"
1554
 
1558
  msgstr "Fecha/Hora"
1559
 
1560
  # Unknown
1561
+ #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1082
1562
+ #: ../admin/view/wp-slimstat-reports.php:1820 ../wp-slimstat.php:1409
1563
  msgid "c-"
1564
  msgstr "Unknown"
1565
 
1566
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1567
+ #: ../admin/wp-slimstat-admin.php:846 ../admin/wp-slimstat-admin.php:886
1568
  msgid "Originating IP"
1569
  msgstr "IP de Origen"
1570
 
1571
+ #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1179
1572
+ #: ../admin/view/wp-slimstat-reports.php:1183
1573
+ #, fuzzy
1574
+ msgid "Open this URL in a new window"
1575
+ msgstr "Abrir %s en una nueva ventana"
1576
+
1577
+ #: ../admin/view/right-now.php:151
1578
+ msgid "Local search results page"
1579
+ msgstr "Página de resultados de búsqueda local"
1580
+
1581
+ #: ../admin/view/right-now.php:156 ../admin/view/wp-slimstat-db.php:42
1582
+ #: ../admin/view/wp-slimstat-reports.php:257
1583
+ #: ../admin/view/wp-slimstat-reports.php:266
1584
+ #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
1585
+ #, fuzzy
1586
+ msgid "Search Terms"
1587
+ msgstr "Principales Recursos"
1588
+
1589
+ #: ../admin/view/right-now.php:162
1590
  msgid "Server Latency and Page Speed in milliseconds"
1591
  msgstr ""
1592
 
1593
+ #: ../admin/view/right-now.php:162
1594
  msgid "SL"
1595
  msgstr ""
1596
 
1597
+ #: ../admin/view/right-now.php:162
1598
  msgid "PS"
1599
  msgstr ""
1600
 
1601
+ #: ../admin/view/right-now.php:169
1602
  #, fuzzy
1603
  msgid "Time spent on this page in seconds"
1604
  msgstr "Abrir %s en una nueva ventana"
1605
 
1606
+ #: ../admin/view/right-now.php:179
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1607
  #, fuzzy
1608
  msgid "Open this referrer in a new window"
1609
  msgstr "Abrir referido en una nueva página"
1610
 
1611
+ #: ../admin/view/right-now.php:180
1612
  #, fuzzy
1613
  msgid "Open this outbound link in a new window"
1614
  msgstr "Abrir %s en una nueva ventana"
1615
 
1616
+ #: ../admin/view/right-now.php:181
1617
  #, fuzzy
1618
  msgid "Content Type"
1619
  msgstr "Contenido"
1620
 
1621
+ #: ../admin/view/right-now.php:184
1622
  #, fuzzy
1623
  msgid "Delete this pageview"
1624
  msgstr "Filtrar páginas visitadas dondé:"
1625
 
1626
+ #: ../admin/view/right-now.php:195
1627
+ #, fuzzy
1628
+ msgid "User Logged In"
1629
+ msgstr "Buscadores"
1630
+
1631
+ #: ../admin/view/right-now.php:205
1632
+ #, fuzzy
1633
+ msgid "User Logged Out"
1634
+ msgstr "Buscadores"
1635
+
1636
+ #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:862
1637
  msgid "Browser"
1638
  msgstr "Navegador"
1639
 
1640
+ #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:863
1641
  msgid "Country Code"
1642
  msgstr "Código de Pais"
1643
 
1645
  msgid "IP Address"
1646
  msgstr "Dirección IP"
1647
 
1648
+ #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:866
1649
  msgid "Language Code"
1650
  msgstr "Código de Idioma"
1651
 
1652
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1653
+ #: ../admin/wp-slimstat-admin.php:867
1654
  msgid "Operating System"
1655
  msgstr "Sistema Operativo"
1656
 
1657
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1658
+ #: ../admin/wp-slimstat-admin.php:868
1659
  msgid "Permalink"
1660
  msgstr "Enlace Permanente"
1661
 
1662
+ #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:869
1663
  msgid "Referer"
1664
  msgstr "Referido"
1665
 
1666
+ #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:870
1667
  #, fuzzy
1668
  msgid "Visitor's Name"
1669
  msgstr "Visitantes"
1670
 
1671
+ #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:852
1672
  #, fuzzy
1673
  msgid "Outbound Link"
1674
  msgstr "Enlaces Salientes Recientes"
1682
  msgstr "-- Filtros Avanzados --"
1683
 
1684
  #: ../admin/view/wp-slimstat-db.php:52
1685
+ #: ../admin/view/wp-slimstat-reports.php:373
1686
  #, fuzzy
1687
  msgid "Browser Capabilities"
1688
  msgstr "Navegador"
1689
 
1690
+ #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:881
1691
  #, fuzzy
1692
  msgid "Browser Version"
1693
  msgstr "Versión del Navegador"
1694
 
1695
+ #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:882
1696
  #, fuzzy
1697
  msgid "Browser Type"
1698
  msgstr "Navegador"
1699
 
1700
+ #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:851
1701
  #, fuzzy
1702
  msgid "User Agent"
1703
  msgstr "Buscadores"
1711
  msgid "Server Latency"
1712
  msgstr ""
1713
 
1714
+ #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:884
1715
  msgid "Post Author"
1716
  msgstr "Autor de la entrada(sección)"
1717
 
1718
+ #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:885
1719
  msgid "Post Category ID"
1720
  msgstr "ID de la entrada(sección) de la Categoria"
1721
 
1722
+ #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:887
1723
  #, fuzzy
1724
  msgid "Resource Content Type"
1725
  msgstr "Contenidos Recientes"
1742
  msgid "Viewport Size"
1743
  msgstr ""
1744
 
1745
+ #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:889
1746
  #, fuzzy
1747
  msgid "Visit ID"
1748
  msgstr "Visitas"
1789
  msgstr ""
1790
 
1791
  #: ../admin/view/wp-slimstat-db.php:96
1792
+ #: ../admin/view/wp-slimstat-reports.php:1720
1793
  msgid "Type"
1794
  msgstr ""
1795
 
1812
  msgid "Offset"
1813
  msgstr ""
1814
 
1815
+ #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:483
1816
+ #: ../wp-slimstat.php:1793
1817
  msgid "Access Log"
1818
  msgstr ""
1819
 
1820
+ #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:484
1821
+ #: ../admin/wp-slimstat-admin.php:499 ../wp-slimstat.php:1794
1822
  msgid "Overview"
1823
  msgstr "Visión general"
1824
 
1825
+ #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:485
1826
+ #: ../admin/wp-slimstat-admin.php:500 ../wp-slimstat.php:1795
1827
  msgid "Audience"
1828
  msgstr ""
1829
 
1830
+ #: ../admin/view/wp-slimstat-reports.php:24 ../admin/wp-slimstat-admin.php:486
1831
+ #: ../admin/wp-slimstat-admin.php:501 ../wp-slimstat.php:1796
1832
  msgid "Site Analysis"
1833
  msgstr ""
1834
 
1835
+ #: ../admin/view/wp-slimstat-reports.php:25
1836
+ #: ../admin/view/wp-slimstat-reports.php:516
1837
+ #: ../admin/wp-slimstat-admin.php:487 ../admin/wp-slimstat-admin.php:502
1838
+ #: ../wp-slimstat.php:1797
1839
  msgid "Traffic Sources"
1840
  msgstr "Origen del Tráfico"
1841
 
1842
+ #: ../admin/view/wp-slimstat-reports.php:26
1843
+ #: ../admin/view/wp-slimstat-reports.php:1364
1844
+ #: ../admin/wp-slimstat-admin.php:488 ../admin/wp-slimstat-admin.php:503
1845
+ #: ../wp-slimstat.php:1798
1846
+ #, fuzzy
1847
+ msgid "Geolocation"
1848
+ msgstr "director"
1849
+
1850
+ #: ../admin/view/wp-slimstat-reports.php:27
1851
+ #, fuzzy
1852
+ msgid "WordPress Dashboard"
1853
+ msgstr "Integración WordPress"
1854
+
1855
+ #: ../admin/view/wp-slimstat-reports.php:28
1856
+ #, fuzzy
1857
+ msgid "Inactive Reports"
1858
+ msgstr "Informes Personalizados"
1859
 
1860
+ #: ../admin/view/wp-slimstat-reports.php:77
1861
  msgid "Chart controls"
1862
  msgstr "Controles de gráfica"
1863
 
1864
+ #: ../admin/view/wp-slimstat-reports.php:77
1865
  msgid "Use your mouse wheel to zoom in and out"
1866
  msgstr "Use su ratón para acercarse y alejarse"
1867
 
1868
+ #: ../admin/view/wp-slimstat-reports.php:77
1869
  msgid "While zooming in, drag the chart to move to a different area"
1870
  msgstr "Al acercarse, arrastre la gráfica para mverla a otra área"
1871
 
1872
+ #: ../admin/view/wp-slimstat-reports.php:80
1873
+ msgid "Social Sharing Analytics"
1874
  msgstr ""
 
1875
 
1876
+ #: ../admin/view/wp-slimstat-reports.php:87
 
 
 
 
 
 
1877
  #, fuzzy
1878
  msgid "Visitors Activity"
1879
  msgstr "Bitácora de actividades"
1880
 
1881
+ #: ../admin/view/wp-slimstat-reports.php:96
1882
  #, fuzzy
1883
  msgid "Color codes"
1884
  msgstr "Código de Pais"
1885
 
1886
+ #: ../admin/view/wp-slimstat-reports.php:96
1887
  #, fuzzy
1888
  msgid "From search result page"
1889
  msgstr "Desde una página con resultados de búsqueda"
1890
 
1891
+ #: ../admin/view/wp-slimstat-reports.php:96 ../admin/wp-slimstat-admin.php:844
 
1892
  #, fuzzy
1893
  msgid "Known Visitor"
1894
  msgstr "Palabras clave recientes"
1895
 
1896
+ #: ../admin/view/wp-slimstat-reports.php:96
1897
  #, fuzzy
1898
  msgid "Known Users"
1899
  msgstr "Navegadores recientes"
1900
 
1901
+ #: ../admin/view/wp-slimstat-reports.php:96
1902
  msgid "Other Humans"
1903
  msgstr "Otros seres humanos"
1904
 
1905
+ #: ../admin/view/wp-slimstat-reports.php:96
1906
  msgid "Bot or Crawler"
1907
  msgstr "Bot o Crawler"
1908
 
1909
+ #: ../admin/view/wp-slimstat-reports.php:118
1910
  #, fuzzy
1911
  msgid "About Slimstat"
1912
  msgstr "Acerca de WP-SlimStat"
1913
 
1914
+ #: ../admin/view/wp-slimstat-reports.php:127
1915
  #, fuzzy
1916
  msgid "Traffic at a Glance"
1917
  msgstr "Un vistazo"
1918
 
1919
+ #: ../admin/view/wp-slimstat-reports.php:137
1920
  #, fuzzy
1921
  msgid "Currently Online"
1922
  msgstr "Filtros Actuales:"
1923
 
1924
+ #: ../admin/view/wp-slimstat-reports.php:150
1925
  #, fuzzy
1926
  msgid "Recent Search Terms"
1927
  msgstr "Búsquedas Internas Recientes"
1928
 
1929
+ #: ../admin/view/wp-slimstat-reports.php:160
1930
  msgid "Keywords used by your visitors to find your website on a search engine."
1931
  msgstr ""
1932
  "Palabras clave utilizadas por los visitantes para encontrar su sitio en un "
1933
  "motor de búsqueda."
1934
 
1935
+ #: ../admin/view/wp-slimstat-reports.php:163
1936
  #, fuzzy
1937
+ msgid "Top Web Pages"
1938
  msgstr "Principales Páginas de Salida"
1939
 
1940
+ #: ../admin/view/wp-slimstat-reports.php:174
1941
  msgid ""
1942
+ "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1943
+ "site, including posts, products, categories, and so on. You can set the "
1944
+ "corresponding filter where Resource Content Type equals cpt:"
1945
+ "you_cpt_slug_here to get top web pages for a specific custom post type you "
1946
+ "have."
1947
  msgstr ""
1948
 
1949
+ #: ../admin/view/wp-slimstat-reports.php:177
1950
  #, fuzzy
1951
  msgid "Top Traffic Sources"
1952
  msgstr "Origen del Tráfico"
1953
 
1954
+ #: ../admin/view/wp-slimstat-reports.php:189
1955
  #, fuzzy
1956
  msgid "Top Known Visitors"
1957
  msgstr "Palabras clave recientes"
1958
 
1959
+ #: ../admin/view/wp-slimstat-reports.php:200
1960
  #, fuzzy
1961
  msgid "Top Search Terms"
1962
  msgstr "Principales Recursos"
1963
 
1964
+ #: ../admin/view/wp-slimstat-reports.php:211
1965
  msgid "Top Countries"
1966
  msgstr "Paises que más visitan"
1967
 
1968
+ #: ../admin/view/wp-slimstat-reports.php:220
1969
  #, fuzzy
1970
  msgid ""
1971
  "You can configure Slimstat to ignore a specific Country by setting the "
1975
  "el establecimiento de el filtro correspondiente en Configuración> SLIMStat> "
1976
  "Filtros."
1977
 
1978
+ #: ../admin/view/wp-slimstat-reports.php:223
1979
  msgid "Rankings"
1980
  msgstr "Calificaciones"
1981
 
1982
+ #: ../admin/view/wp-slimstat-reports.php:227
1983
  #, fuzzy
1984
  msgid ""
1985
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1990
  "para medir el ranking de su sitio. Los valores se actualizan cada 12 horas. "
1991
  "Filtros indicados anteriormente no se aplican a este informe."
1992
 
1993
+ #: ../admin/view/wp-slimstat-reports.php:230
1994
  #, fuzzy
1995
  msgid "Top Language Families"
1996
  msgstr "Idiomas"
1997
 
1998
+ #: ../admin/view/wp-slimstat-reports.php:243
1999
  #, fuzzy
2000
  msgid "Users Currently Online"
2001
  msgstr "Filtros Actuales:"
2002
 
2003
+ #: ../admin/view/wp-slimstat-reports.php:254
2004
  #, fuzzy
2005
  msgid ""
2006
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2012
  "visitantes que regresan. Por favor, tenga en cuenta que los visitantes "
2013
  "también incluyen a los usuarios registrados."
2014
 
2015
+ #: ../admin/view/wp-slimstat-reports.php:267
2016
+ #, fuzzy
2017
+ msgid "Unique Terms"
2018
+ msgstr "IPs Unicas"
2019
+
2020
+ #: ../admin/view/wp-slimstat-reports.php:276
2021
  msgid "Human Visits"
2022
  msgstr "Visitas humanas"
2023
 
2024
+ #: ../admin/view/wp-slimstat-reports.php:285
2025
+ #: ../admin/view/wp-slimstat-reports.php:1431
2026
+ msgid "Visits"
2027
+ msgstr "Visitas"
2028
+
2029
+ #: ../admin/view/wp-slimstat-reports.php:295
2030
  #, fuzzy
2031
  msgid "Audience Overview"
2032
  msgstr "Visión general"
2033
 
2034
+ #: ../admin/view/wp-slimstat-reports.php:302
2035
  msgid ""
2036
  "Where not otherwise specified, the metrics in this report are referred to "
2037
  "human visitors."
2038
  msgstr ""
2039
 
2040
+ #: ../admin/view/wp-slimstat-reports.php:305
2041
  #, fuzzy
2042
  msgid "Top Languages"
2043
  msgstr "Idiomas"
2044
 
2045
+ #: ../admin/view/wp-slimstat-reports.php:316
2046
  #, fuzzy
2047
  msgid "Top Browsers"
2048
  msgstr "Navegador"
2049
 
2050
+ #: ../admin/view/wp-slimstat-reports.php:327
2051
  #, fuzzy
2052
  msgid "Top Service Providers"
2053
  msgstr "Principales Recursos"
2054
 
2055
+ #: ../admin/view/wp-slimstat-reports.php:336
2056
+ #: ../admin/view/wp-slimstat-reports.php:348
2057
  #, fuzzy
2058
  msgid ""
2059
  "Internet Service Provider: a company which provides other companies or "
2067
  "IP específicas estableciendo el filtro correspondiente en Configuración> "
2068
  "SLIMStat> Filtros."
2069
 
2070
+ #: ../admin/view/wp-slimstat-reports.php:339
2071
  #, fuzzy
2072
  msgid "Top Operating Systems"
2073
  msgstr "Sistemas Operativos"
2074
 
2075
+ #: ../admin/view/wp-slimstat-reports.php:351
2076
  #, fuzzy
2077
  msgid "Top Screen Resolutions"
2078
  msgstr "Resolución de Pantalla"
2079
 
2080
+ #: ../admin/view/wp-slimstat-reports.php:362
2081
  #, fuzzy
2082
  msgid "Top Viewport Sizes"
2083
  msgstr "Principales Páginas de Salida"
2084
 
2085
+ #: ../admin/view/wp-slimstat-reports.php:382
2086
  #, fuzzy
2087
  msgid "Visit Duration"
2088
  msgstr "Visitas"
2089
 
2090
+ #: ../admin/view/wp-slimstat-reports.php:389
2091
  #, fuzzy
2092
  msgid ""
2093
  "All values represent the percentages of pageviews within the corresponding "
2096
  "Mapa del Mundo - Los valores representan el porcentaje de visitas "
2097
  "procedentes de ese país"
2098
 
2099
+ #: ../admin/view/wp-slimstat-reports.php:392
2100
  msgid "Recent Countries"
2101
  msgstr "Paises Recientes"
2102
 
2103
+ #: ../admin/view/wp-slimstat-reports.php:403
2104
  #, fuzzy
2105
  msgid "Recent Viewport Sizes"
2106
  msgstr "Paises Recientes"
2107
 
2108
+ #: ../admin/view/wp-slimstat-reports.php:414
2109
  #, fuzzy
2110
  msgid "Recent Operating Systems"
2111
  msgstr "Sistemas Operativos"
2112
 
2113
+ #: ../admin/view/wp-slimstat-reports.php:425
2114
  #, fuzzy
2115
  msgid "Recent Browsers"
2116
  msgstr "Contenidos Recientes"
2117
 
2118
+ #: ../admin/view/wp-slimstat-reports.php:436
2119
  #, fuzzy
2120
  msgid "Recent Languages"
2121
  msgstr "Idiomas"
2122
 
2123
+ #: ../admin/view/wp-slimstat-reports.php:447
2124
  #, fuzzy
2125
  msgid "Top Browser Families"
2126
  msgstr "Navegador"
2127
 
2128
+ #: ../admin/view/wp-slimstat-reports.php:456
2129
  msgid ""
2130
  "This report shows you what user agent families (no version considered) are "
2131
  "popular among your visitors."
2133
  "Este informe muestra qué familias de agentes de usuarios son populares entre "
2134
  "los visitantes (no considerada la versión)."
2135
 
2136
+ #: ../admin/view/wp-slimstat-reports.php:459
2137
  msgid "Top OS Families"
2138
  msgstr "Páginas Recientes no encontradas"
2139
 
2140
+ #: ../admin/view/wp-slimstat-reports.php:470
2141
  msgid ""
2142
  "This report shows you what operating system families (no version considered) "
2143
  "are popular among your visitors."
2145
  "Este informe le muestra qué familias de sistema operativo (sin versión "
2146
  "considerado) son populares entre los visitantes."
2147
 
2148
+ #: ../admin/view/wp-slimstat-reports.php:473
2149
  #, fuzzy
2150
  msgid "Recent Users"
2151
  msgstr "Buscadores"
2152
 
2153
+ #: ../admin/view/wp-slimstat-reports.php:485
2154
  #, fuzzy
2155
  msgid "Top Users"
2156
  msgstr "Buscadores"
2157
 
2158
+ #: ../admin/view/wp-slimstat-reports.php:497
2159
+ #: ../admin/view/wp-slimstat-reports.php:506
2160
+ #, fuzzy
2161
+ msgid "Users"
2162
+ msgstr "Navegadores recientes"
2163
+
2164
+ #: ../admin/view/wp-slimstat-reports.php:507
2165
+ #, fuzzy
2166
+ msgid "Unique Users"
2167
+ msgstr "IPs Unicas"
2168
+
2169
+ #: ../admin/view/wp-slimstat-reports.php:525
2170
+ msgid "Domains"
2171
+ msgstr "Dominios"
2172
+
2173
+ #: ../admin/view/wp-slimstat-reports.php:535
2174
  #, fuzzy
2175
  msgid "Traffic Summary"
2176
  msgstr "Origen del Tráfico"
2177
 
2178
+ #: ../admin/view/wp-slimstat-reports.php:544
2179
  #, fuzzy
2180
  msgid "Top Referring Search Engines"
2181
  msgstr "Motores de Búsqueda"
2182
 
2183
+ #: ../admin/view/wp-slimstat-reports.php:571
2184
  msgid "Recent Outbound Links"
2185
  msgstr "Enlaces Salientes Recientes"
2186
 
2187
+ #: ../admin/view/wp-slimstat-reports.php:583
2188
  #, fuzzy
2189
  msgid "Recent Posts"
2190
  msgstr "Contenidos Recientes"
2191
 
2192
+ #: ../admin/view/wp-slimstat-reports.php:611
2193
  msgid "Recent Feeds"
2194
  msgstr "Feeds Recientes"
2195
 
2196
+ #: ../admin/view/wp-slimstat-reports.php:623
2197
  msgid "Recent Pages Not Found"
2198
  msgstr "Páginas Recientes no encontradas"
2199
 
2200
+ #: ../admin/view/wp-slimstat-reports.php:635
2201
  msgid "Recent Internal Searches"
2202
  msgstr "Búsquedas Internas Recientes"
2203
 
2204
+ #: ../admin/view/wp-slimstat-reports.php:645
2205
  #, fuzzy
2206
  msgid "Searches performed using WordPress' built-in search functionality."
2207
  msgstr ""
2208
  "Búsquedas realizadas utilizando la funcionalidad integrada de búsqueda de "
2209
  "Wordpress"
2210
 
2211
+ #: ../admin/view/wp-slimstat-reports.php:648
2212
  #, fuzzy
2213
  msgid "Top Categories"
2214
  msgstr "Principales Páginas de Salida"
2215
 
2216
+ #: ../admin/view/wp-slimstat-reports.php:661
2217
  #, fuzzy
2218
  msgid "Top Downloads"
2219
  msgstr "Descargas Recientes"
2220
 
2221
+ #: ../admin/view/wp-slimstat-reports.php:672
2222
  msgid ""
2223
  "You can configure Slimstat to track specific file extensions as downloads."
2224
  msgstr ""
2225
 
2226
+ #: ../admin/view/wp-slimstat-reports.php:675
2227
  #, fuzzy
2228
  msgid "Recent Events"
2229
  msgstr "Contenidos Recientes"
2230
 
2231
+ #: ../admin/view/wp-slimstat-reports.php:684
2232
+ #: ../admin/view/wp-slimstat-reports.php:708
2233
  #, fuzzy
2234
  msgid ""
2235
  "This report lists any <em>event</em> occurred on your website. Please refer "
2239
  "Por favor, consulte las preguntas frecuentes para más información sobre cómo "
2240
  "aprovechar esta funcionalidad."
2241
 
2242
+ #: ../admin/view/wp-slimstat-reports.php:687
2243
  #, fuzzy
2244
  msgid "Top Posts"
2245
  msgstr "Paises que más visitan"
2246
 
2247
+ #: ../admin/view/wp-slimstat-reports.php:699
2248
  #, fuzzy
2249
  msgid "Top Events"
2250
  msgstr "Principales Páginas de Salida"
2251
 
2252
+ #: ../admin/view/wp-slimstat-reports.php:711
2253
  #, fuzzy
2254
  msgid "Top Internal Searches"
2255
  msgstr "Búsquedas Internas Recientes"
2256
 
2257
+ #: ../admin/view/wp-slimstat-reports.php:723
2258
  #, fuzzy
2259
  msgid "Recent Categories"
2260
  msgstr "Paises Recientes"
2261
 
2262
+ #: ../admin/view/wp-slimstat-reports.php:735
2263
  #, fuzzy
2264
  msgid "Top Pages Not Found"
2265
  msgstr "Principales Páginas de Salida"
2266
 
2267
+ #: ../admin/view/wp-slimstat-reports.php:747
2268
  #, fuzzy
2269
  msgid "Top Authors"
2270
  msgstr "Autor de la entrada(sección)"
2271
 
2272
+ #: ../admin/view/wp-slimstat-reports.php:758
2273
  #, fuzzy
2274
  msgid "Top Tags"
2275
  msgstr "Principales Páginas de Salida"
2276
 
2277
+ #: ../admin/view/wp-slimstat-reports.php:770
2278
  msgid "Recent Downloads"
2279
  msgstr "Descargas Recientes"
2280
 
2281
+ #: ../admin/view/wp-slimstat-reports.php:782
2282
  #, fuzzy
2283
  msgid "Top Outbound Links"
2284
  msgstr "Enlaces Salientes Recientes"
2285
 
2286
+ #: ../admin/view/wp-slimstat-reports.php:794
2287
  msgid "Your Website"
2288
  msgstr "Su sitio web"
2289
 
2290
+ #: ../admin/view/wp-slimstat-reports.php:801
2291
  msgid ""
2292
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2293
  "this report is not affected by the filters set here above."
2296
  "en cuenta que este informe no es afectado por los filtros establecidos aquí "
2297
  "arriba."
2298
 
2299
+ #: ../admin/view/wp-slimstat-reports.php:804
2300
  #, fuzzy
2301
  msgid "Top Bounce Pages"
2302
  msgstr "Porcentaje de Abandonos"
2303
 
2304
+ #: ../admin/view/wp-slimstat-reports.php:817
2305
  #, fuzzy
2306
  msgid "Top Exit Pages"
2307
  msgstr "Principales Páginas de Salida"
2308
 
2309
+ #: ../admin/view/wp-slimstat-reports.php:830
2310
  #, fuzzy
2311
  msgid "Top Entry Pages"
2312
  msgstr "Principales Páginas de Salida"
2313
 
2314
+ #: ../admin/view/wp-slimstat-reports.php:843
2315
+ #: ../admin/view/wp-slimstat-reports.php:852
2316
+ #, fuzzy
2317
+ msgid "Outbound Links"
2318
+ msgstr "Enlaces Salientes Recientes"
2319
+
2320
+ #: ../admin/view/wp-slimstat-reports.php:853
2321
+ msgid "Unique Outbound"
2322
+ msgstr ""
2323
+
2324
+ #: ../admin/view/wp-slimstat-reports.php:862
2325
  msgid "World Map"
2326
  msgstr "Mapa del Mundo"
2327
 
2328
+ #: ../admin/view/wp-slimstat-reports.php:944
2329
  msgid "Refresh"
2330
  msgstr "Refrescar"
2331
 
2332
+ #: ../admin/view/wp-slimstat-reports.php:981
2333
  #, php-format
2334
  msgid "Results %s - %s of %s"
2335
  msgstr "Resultados %s - %s de %s"
2336
 
2337
+ #: ../admin/view/wp-slimstat-reports.php:983
2338
  msgid "Refresh in"
2339
  msgstr "Refrescar en"
2340
 
2341
+ #: ../admin/view/wp-slimstat-reports.php:1076
2342
  #, fuzzy
2343
  msgid "Category ID"
2344
  msgstr "ID de la entrada(sección) de la Categoria"
2345
 
2346
+ #: ../admin/view/wp-slimstat-reports.php:1081
2347
+ #: ../admin/view/wp-slimstat-reports.php:1096
2348
+ #: ../admin/view/wp-slimstat-reports.php:1102
2349
  #, fuzzy
2350
  msgid "Code"
2351
  msgstr "Código OS"
2352
 
2353
+ #: ../admin/view/wp-slimstat-reports.php:1097
2354
+ #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1421
2355
  msgid "l-"
2356
  msgstr "l-"
2357
 
2358
+ #: ../admin/view/wp-slimstat-reports.php:1114
2359
  msgid "URL"
2360
  msgstr ""
2361
 
2362
+ #: ../admin/view/wp-slimstat-reports.php:1127
2363
  #, fuzzy
2364
  msgid "Referrer"
2365
  msgstr "Referido"
2366
 
2367
+ #: ../admin/view/wp-slimstat-reports.php:1168
2368
+ #: ../admin/view/wp-slimstat-reports.php:1415
2369
+ #: ../admin/view/wp-slimstat-reports.php:1471
2370
+ #: ../admin/view/wp-slimstat-reports.php:1477
2371
+ #: ../admin/view/wp-slimstat-reports.php:1483
2372
+ #: ../admin/view/wp-slimstat-reports.php:1489
2373
+ #: ../admin/view/wp-slimstat-reports.php:1495
2374
+ #: ../admin/view/wp-slimstat-reports.php:1501
2375
+ #: ../admin/view/wp-slimstat-reports.php:1507
2376
+ #: ../admin/view/wp-slimstat-reports.php:1727
2377
  #, fuzzy
2378
  msgid "Hits"
2379
  msgstr "Visitas"
2380
 
2381
+ #: ../admin/view/wp-slimstat-reports.php:1342
 
 
 
 
 
 
 
 
 
2382
  #, fuzzy
2383
  msgid "Dataset Size"
2384
  msgstr "Tamaño de los Datos"
2385
 
2386
+ #: ../admin/view/wp-slimstat-reports.php:1344
2387
  msgid "Total number of records stored in the database."
2388
  msgstr ""
2389
 
2390
+ #: ../admin/view/wp-slimstat-reports.php:1346
2391
  #, fuzzy
2392
  msgid "DB Size"
2393
  msgstr "Tamaño de los Datos"
2394
 
2395
+ #: ../admin/view/wp-slimstat-reports.php:1349
2396
  #, fuzzy
2397
  msgid "Tracking Enabled"
2398
  msgstr "Seguimiento Activo"
2399
 
2400
+ #: ../admin/view/wp-slimstat-reports.php:1352
2401
  msgid "Javascript Mode"
2402
  msgstr "Modo Javascript"
2403
 
2404
+ #: ../admin/view/wp-slimstat-reports.php:1355
2405
  msgid "Tracking Browser Caps"
2406
  msgstr "Caps para rastreo de Navegador"
2407
 
2408
+ #: ../admin/view/wp-slimstat-reports.php:1358
2409
  msgid "Auto purge"
2410
  msgstr "Autopurgar"
2411
 
2412
+ #: ../admin/view/wp-slimstat-reports.php:1361
2413
  #, fuzzy
2414
  msgid "Oldest pageview"
2415
  msgstr "Visita más larga"
2416
 
2417
+ #: ../admin/view/wp-slimstat-reports.php:1362
2418
  #, fuzzy
2419
  msgid "No visits"
2420
  msgstr "Visitantes"
2421
 
2422
+ #: ../admin/view/wp-slimstat-reports.php:1366
 
 
 
 
 
2423
  msgid "Date when the MaxMind Geolocation database was last updated."
2424
  msgstr ""
2425
 
2426
+ #: ../admin/view/wp-slimstat-reports.php:1377
2427
+ #: ../admin/view/wp-slimstat-reports.php:1535
2428
  #, fuzzy
2429
  msgid ""
2430
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2433
  "Una petición para cargar un archivo HTML único. WP SlimStat registra un "
2434
  "\"pageview\" cada vez que se ejecuta el código de rastreo."
2435
 
2436
+ #: ../admin/view/wp-slimstat-reports.php:1379
2437
  #, fuzzy
2438
  msgid "Days in Range"
2439
  msgstr "Fecha y hora"
2440
 
2441
+ #: ../admin/view/wp-slimstat-reports.php:1382
2442
  #, fuzzy
2443
  msgid "Average Daily Pageviews"
2444
  msgstr "Promedio Paginas Visitadas"
2445
 
2446
+ #: ../admin/view/wp-slimstat-reports.php:1384
2447
  #, fuzzy
2448
  msgid ""
2449
  "How many pages have been visited on average every day during the current "
2450
  "period."
2451
  msgstr "Cuántas páginas se han visitado en promedio durante el período actual."
2452
 
2453
+ #: ../admin/view/wp-slimstat-reports.php:1386
2454
  #, fuzzy
2455
  msgid "From Search Results"
2456
  msgstr "Principales Recursos"
2457
 
2458
+ #: ../admin/view/wp-slimstat-reports.php:1388
2459
  msgid ""
2460
  "Visitors who landed on your site after searching for a keyword on Google, "
2461
  "Yahoo, etc."
2463
  "Visitantes que han llegado a su sitio después de buscar una palabra clave en "
2464
  "Google, yahoo, etc."
2465
 
2466
+ #: ../admin/view/wp-slimstat-reports.php:1392
2467
  msgid ""
2468
  "Used to differentiate between multiple requests to download a file from one "
2469
  "internet address (IP) and requests originating from many distinct addresses"
2472
  "desde una dirección de internet (IP) y peticiones que se originan en muchas "
2473
  "diferentes direcciones"
2474
 
2475
+ #: ../admin/view/wp-slimstat-reports.php:1394
2476
  msgid "Last 30 minutes"
2477
  msgstr "Últimos 30 minutos"
2478
 
2479
+ #: ../admin/view/wp-slimstat-reports.php:1433
2480
  msgid ""
2481
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2482
  "multiple times if they perform multiple visits."
2484
  "Una visita es una sesión de cuando mucho 30 minutos.Los visitantes de "
2485
  "regreso se cuentan múltiples veces si llevan a cabo múltiples visitas."
2486
 
2487
+ #: ../admin/view/wp-slimstat-reports.php:1437
2488
  msgid "It includes only traffic generated by human visitors."
2489
  msgstr "Incluye sólo tráfico generado por visitantes humanos."
2490
 
2491
+ #: ../admin/view/wp-slimstat-reports.php:1439
2492
  msgid "Bounce rate"
2493
  msgstr "Porcentaje de Abandonos"
2494
 
2495
+ #: ../admin/view/wp-slimstat-reports.php:1441
2496
  msgid ""
2497
  "Percentage of single-page visits, i.e. visits in which the person left your "
2498
  "site from the entrance page."
2500
  "Porcentaje de visitas de una página, p. ej. visitas en las cuales la persona "
2501
  "dejó su sitio desde la página de entrada."
2502
 
2503
+ #: ../admin/view/wp-slimstat-reports.php:1443
2504
  #, fuzzy
2505
  msgid "Known visitors"
2506
  msgstr "Palabras clave recientes"
2507
 
2508
+ #: ../admin/view/wp-slimstat-reports.php:1445
2509
  msgid "Visitors who had previously left a comment on your blog."
2510
  msgstr "Visitantes que han dejado un comentario en su blog previamente."
2511
 
2512
+ #: ../admin/view/wp-slimstat-reports.php:1447
2513
  #, fuzzy
2514
  msgid "New visitors"
2515
  msgstr "Visitantes"
2516
 
2517
+ #: ../admin/view/wp-slimstat-reports.php:1449
2518
  msgid "Human users who visited your site only once."
2519
  msgstr "Visitantes humanos que visitaron su sitio sólo una vez."
2520
 
2521
+ #: ../admin/view/wp-slimstat-reports.php:1451
2522
  msgid "Bots"
2523
  msgstr "Motores de Búsqueda"
2524
 
2525
+ #: ../admin/view/wp-slimstat-reports.php:1454
2526
+ #, fuzzy
2527
+ msgid "Pageviews per visit"
2528
  msgstr "Páginas por visita"
2529
 
2530
+ #: ../admin/view/wp-slimstat-reports.php:1457
2531
  msgid "Longest visit"
2532
  msgstr "Visita más larga"
2533
 
2534
+ #: ../admin/view/wp-slimstat-reports.php:1458
2535
  #, fuzzy
2536
  msgid "hits"
2537
  msgstr "Visitas"
2538
 
2539
+ #: ../admin/view/wp-slimstat-reports.php:1469
2540
  msgid "0 - 30 seconds"
2541
  msgstr "0 - 30 segundos"
2542
 
2543
+ #: ../admin/view/wp-slimstat-reports.php:1475
2544
  msgid "31 - 60 seconds"
2545
  msgstr "31 - 60 segundos"
2546
 
2547
+ #: ../admin/view/wp-slimstat-reports.php:1481
2548
  msgid "1 - 3 minutes"
2549
  msgstr "1 - 3 minutos"
2550
 
2551
+ #: ../admin/view/wp-slimstat-reports.php:1487
2552
  msgid "3 - 5 minutes"
2553
  msgstr "3 - 5 minutos"
2554
 
2555
+ #: ../admin/view/wp-slimstat-reports.php:1493
2556
  msgid "5 - 7 minutes"
2557
  msgstr "5 - 7 minutos"
2558
 
2559
+ #: ../admin/view/wp-slimstat-reports.php:1499
2560
  msgid "7 - 10 minutes"
2561
  msgstr "7 - 10 minutos"
2562
 
2563
+ #: ../admin/view/wp-slimstat-reports.php:1505
2564
  msgid "More than 10 minutes"
2565
  msgstr "Más de 10 minutos"
2566
 
2567
+ #: ../admin/view/wp-slimstat-reports.php:1517
2568
  #, fuzzy
2569
  msgid "Average visit duration"
2570
  msgstr "Visitas"
2571
 
2572
+ #: ../admin/view/wp-slimstat-reports.php:1537
2573
  #, fuzzy
2574
  msgid "Unique Referrers"
2575
  msgstr "Referidos Únicos"
2576
 
2577
+ #: ../admin/view/wp-slimstat-reports.php:1539
2578
  msgid ""
2579
  "A referrer (or referring site) is the site that a visitor previously visited "
2580
  "before following a link to your site."
2582
  "Un sitio referente (o que refiere) es el sitio al cual el visitante tuvo "
2583
  "acceso antes de seguir un enlace a su sitio."
2584
 
2585
+ #: ../admin/view/wp-slimstat-reports.php:1541
2586
  #, fuzzy
2587
  msgid "Direct Pageviews"
2588
  msgstr "Paginas visitadas"
2589
 
2590
+ #: ../admin/view/wp-slimstat-reports.php:1543
2591
  msgid ""
2592
  "Visitors who visited the site by typing the URL directly into their browser. "
2593
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
2599
  "hicieron clic en sus favoritos, usaron etiquetas de enlaces en emails, o "
2600
  "enlaces de documentos que no incluyen variables de rastreo."
2601
 
2602
+ #: ../admin/view/wp-slimstat-reports.php:1545
2603
  msgid "From a search result"
2604
  msgstr "Desde un resultado de búsqueda"
2605
 
2606
+ #: ../admin/view/wp-slimstat-reports.php:1547
2607
  msgid ""
2608
  "Visitors who came to your site via searches on Google or some other search "
2609
  "engine."
2611
  "Visitantes que llegaron a su sitio después de buscar una palabra clave en "
2612
  "Google, yahoo, etc."
2613
 
2614
+ #: ../admin/view/wp-slimstat-reports.php:1549
2615
  #, fuzzy
2616
  msgid "Unique Landing Pages"
2617
  msgstr "IPs Unicas"
2618
 
2619
+ #: ../admin/view/wp-slimstat-reports.php:1551
2620
  msgid ""
2621
  "The first page that a user views during a session. This is also known as the "
2622
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
2628
  "Brooklyn,” y llegan a su página de inicio, se cuenta (para esa visita) como "
2629
  "página de entrada."
2630
 
2631
+ #: ../admin/view/wp-slimstat-reports.php:1553
2632
  #, fuzzy
2633
  msgid "Bounce Pages"
2634
  msgstr "Porcentaje de Abandonos"
2635
 
2636
+ #: ../admin/view/wp-slimstat-reports.php:1555
2637
  #, fuzzy
2638
  msgid "Number of single page visits to your site over the selected period."
2639
  msgstr "Número de visitas a una página en el período seleccionado."
2640
 
2641
+ #: ../admin/view/wp-slimstat-reports.php:1557
2642
  #, fuzzy
2643
  msgid "New Visitors Rate"
2644
  msgstr "Visitantes"
2645
 
2646
+ #: ../admin/view/wp-slimstat-reports.php:1559
2647
  #, fuzzy
2648
  msgid ""
2649
  "Percentage of single page visits, i.e. visits in which the person left your "
2652
  "Porcentaje de visitas de una página, p. ej. visitas en las cuales la persona "
2653
  "dejó su sitio desde la página de entrada."
2654
 
2655
+ #: ../admin/view/wp-slimstat-reports.php:1561
2656
  #, fuzzy
2657
  msgid "Currently from search engines"
2658
  msgstr "Motores de Búsqueda"
2659
 
2660
+ #: ../admin/view/wp-slimstat-reports.php:1563
2661
  msgid ""
2662
  "Visitors who visited the site in the last 5 minutes coming from a search "
2663
  "engine."
2665
  "Visitantes que visitaron el sitio en los últimos 5 minutos y vienen de un "
2666
  "motor de búsqueda."
2667
 
2668
+ #: ../admin/view/wp-slimstat-reports.php:1633
2669
  msgid "Number of pages in your site included in Google's index."
2670
  msgstr "Número de páginas en su sitio incluidas en el índice de Google."
2671
 
2672
+ #: ../admin/view/wp-slimstat-reports.php:1634
2673
  msgid "Google Index"
2674
  msgstr "Indice de Google"
2675
 
2676
+ #: ../admin/view/wp-slimstat-reports.php:1635
2677
  msgid "Number of pages, according to Google, that link back to your site."
2678
  msgstr ""
2679
  "Número de páginas, de acuerdo a Google, que enlazan de regreso a su sitio."
2680
 
2681
+ #: ../admin/view/wp-slimstat-reports.php:1636
2682
  msgid "Google Backlinks"
2683
  msgstr "Backlinks Google"
2684
 
2685
+ #: ../admin/view/wp-slimstat-reports.php:1637
2686
  msgid ""
2687
  "How many times the Facebook Like button has been approximately clicked on "
2688
  "your site."
2690
  "Aproximadamente cuántas veces se ha hecho clic en el botón “Me Gusta” de "
2691
  "Facebook en su sitio."
2692
 
2693
+ #: ../admin/view/wp-slimstat-reports.php:1638
2694
  msgid "Facebook Likes"
2695
  msgstr "Me Gusta de Facebook"
2696
 
2697
+ #: ../admin/view/wp-slimstat-reports.php:1639
2698
  msgid ""
2699
  "How many times your site has been shared by someone on the social network."
2700
  msgstr ""
2701
  "Cuántas veces ha sido compartido su sitio con alguien en las redes sociales."
2702
 
2703
+ #: ../admin/view/wp-slimstat-reports.php:1640
2704
  msgid "Facebook Shares"
2705
  msgstr "Compartidas en Facebook"
2706
 
2707
+ #: ../admin/view/wp-slimstat-reports.php:1641
2708
  msgid "How many times links to your website have been clicked on Facebook."
2709
  msgstr "Cuántas veces se ha hecho clic en enlaces a su sitio en Facebook."
2710
 
2711
+ #: ../admin/view/wp-slimstat-reports.php:1642
2712
  #, fuzzy
2713
  msgid "Facebook Clicks"
2714
  msgstr "Enlaces Salientes Recientes"
2715
 
2716
+ #: ../admin/view/wp-slimstat-reports.php:1643
2717
  msgid ""
2718
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2719
  "traffic data."
2721
  "Alexa es una compaañ+ía subsidiaria de Amazon.com que proporciona "
2722
  "información de tráfico de datos."
2723
 
2724
+ #: ../admin/view/wp-slimstat-reports.php:1644
2725
  msgid "Alexa World Rank"
2726
  msgstr "Clasificación Mundial Alexa."
2727
 
2728
+ #: ../admin/view/wp-slimstat-reports.php:1645
2729
  msgid "Alexa Country Rank"
2730
  msgstr "Clasificación por país Alexa"
2731
 
2732
+ #: ../admin/view/wp-slimstat-reports.php:1646
2733
  msgid "Alexa Popularity"
2734
  msgstr "Popularidad Alexa"
2735
 
2736
+ #: ../admin/view/wp-slimstat-reports.php:1657
2737
  #, fuzzy
2738
  msgid "Content Items"
2739
  msgstr "Contenido"
2740
 
2741
+ #: ../admin/view/wp-slimstat-reports.php:1659
2742
  msgid ""
2743
  "This value includes not only posts, but also custom post types, regardless "
2744
  "of their status"
2746
  "Este valor incluye no sólo publicaciones, sino también tipos de publicación "
2747
  "personalizados, sin importar su estado"
2748
 
2749
+ #: ../admin/view/wp-slimstat-reports.php:1661
2750
  #, fuzzy
2751
  msgid "Posts"
2752
  msgstr "Paises que más visitan"
2753
 
2754
+ #: ../admin/view/wp-slimstat-reports.php:1664
2755
  #, fuzzy
2756
  msgid "Pages"
2757
  msgstr "Principales Páginas de Salida"
2758
 
2759
+ #: ../admin/view/wp-slimstat-reports.php:1667
2760
  msgid "Attachments"
2761
  msgstr ""
2762
 
2763
+ #: ../admin/view/wp-slimstat-reports.php:1670
2764
  #, fuzzy
2765
  msgid "Revisions"
2766
  msgstr "Enlace Permanente"
2767
 
2768
+ #: ../admin/view/wp-slimstat-reports.php:1673
2769
  #, fuzzy
2770
  msgid "Comments"
2771
  msgstr "Total de Accesos"
2772
 
2773
+ #: ../admin/view/wp-slimstat-reports.php:1676
2774
  #, fuzzy
2775
  msgid "Avg Comments per Post"
2776
  msgstr "Promedio de Comentarios por Publicación"
2777
 
2778
+ #: ../admin/view/wp-slimstat-reports.php:1679
2779
  msgid "Avg Server Latency"
2780
  msgstr ""
2781
 
2782
+ #: ../admin/view/wp-slimstat-reports.php:1681
2783
  msgid ""
2784
  "Latency is the amount of time it takes for the host server to receive and "
2785
  "process a request for a page object. The amount of latency depends largely "
2786
  "on how far away the user is from the server."
2787
  msgstr ""
2788
 
2789
+ #: ../admin/view/wp-slimstat-reports.php:1724
2790
  #, fuzzy
2791
  msgid "Coordinates"
2792
  msgstr "Seguimiento Activo"
2793
 
2794
+ #: ../admin/view/wp-slimstat-reports.php:1724
2795
  msgid "Date"
2796
  msgstr ""
2797
 
2798
+ #: ../admin/view/wp-slimstat-reports.php:1761
2799
  msgid "Error contacting the GetSocial endpoint."
2800
  msgstr ""
2801
 
2802
+ #: ../admin/view/wp-slimstat-reports.php:1769
2803
  msgid "Error decoding the GetSocial payload."
2804
  msgstr ""
2805
 
2806
+ #: ../admin/view/wp-slimstat-reports.php:1801
2807
  msgid ""
2808
  "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2809
  ">social media metrics and identify your top performing posts.<br/> <a "
2811
  msgstr ""
2812
 
2813
  # Unknown
2814
+ #: ../admin/view/wp-slimstat-reports.php:1811
2815
  msgid "c-xx"
2816
  msgstr "Unknown"
2817
 
2818
  # Afghanistan
2819
+ #: ../admin/view/wp-slimstat-reports.php:1811
2820
  msgid "c-af"
2821
  msgstr "Afghanistan"
2822
 
2823
  # Åland Islands
2824
+ #: ../admin/view/wp-slimstat-reports.php:1811
2825
  msgid "c-ax"
2826
  msgstr "Åland Islands"
2827
 
2828
  # Albania
2829
+ #: ../admin/view/wp-slimstat-reports.php:1811
2830
  msgid "c-al"
2831
  msgstr "Albania"
2832
 
2833
  # Algeria
2834
+ #: ../admin/view/wp-slimstat-reports.php:1811
2835
  msgid "c-dz"
2836
  msgstr "Algeria"
2837
 
2838
  # Andorra
2839
+ #: ../admin/view/wp-slimstat-reports.php:1811
2840
  msgid "c-ad"
2841
  msgstr "Andorra"
2842
 
2843
  # Angola
2844
+ #: ../admin/view/wp-slimstat-reports.php:1811
2845
  msgid "c-ao"
2846
  msgstr "Angola"
2847
 
2848
  # Anguilla
2849
+ #: ../admin/view/wp-slimstat-reports.php:1811
2850
  msgid "c-ai"
2851
  msgstr "Anguilla"
2852
 
2853
  # Antigua and Barbuda
2854
+ #: ../admin/view/wp-slimstat-reports.php:1811
2855
  msgid "c-ag"
2856
  msgstr "Antigua and Barbuda"
2857
 
2858
  # Argentina
2859
+ #: ../admin/view/wp-slimstat-reports.php:1811
2860
  msgid "c-ar"
2861
  msgstr "Argentina"
2862
 
2863
  # Armenia
2864
+ #: ../admin/view/wp-slimstat-reports.php:1811
2865
  msgid "c-am"
2866
  msgstr "Armenia"
2867
 
2868
  # Aruba
2869
+ #: ../admin/view/wp-slimstat-reports.php:1811
2870
  msgid "c-aw"
2871
  msgstr "Aruba"
2872
 
2873
  # Australia
2874
+ #: ../admin/view/wp-slimstat-reports.php:1811
2875
  msgid "c-au"
2876
  msgstr "Australia"
2877
 
2878
  # Austria
2879
+ #: ../admin/view/wp-slimstat-reports.php:1811
2880
  msgid "c-at"
2881
  msgstr "Austria"
2882
 
2883
  # Azerbaijan
2884
+ #: ../admin/view/wp-slimstat-reports.php:1811
2885
  msgid "c-az"
2886
  msgstr "Azerbaijan"
2887
 
2888
  # Bahamas
2889
+ #: ../admin/view/wp-slimstat-reports.php:1811
2890
  msgid "c-bs"
2891
  msgstr "Bahamas"
2892
 
2893
  # Bahrain
2894
+ #: ../admin/view/wp-slimstat-reports.php:1811
2895
  msgid "c-bh"
2896
  msgstr "Bahrain"
2897
 
2898
  # Bangladesh
2899
+ #: ../admin/view/wp-slimstat-reports.php:1811
2900
  msgid "c-bd"
2901
  msgstr "Bangladesh"
2902
 
2903
  # Barbados
2904
+ #: ../admin/view/wp-slimstat-reports.php:1811
2905
  msgid "c-bb"
2906
  msgstr "Barbados"
2907
 
2908
  # Belarus
2909
+ #: ../admin/view/wp-slimstat-reports.php:1811
2910
  msgid "c-by"
2911
  msgstr "Belarus"
2912
 
2913
  # Belgium
2914
+ #: ../admin/view/wp-slimstat-reports.php:1811
2915
  msgid "c-be"
2916
  msgstr "Belgium"
2917
 
2918
  # Belize
2919
+ #: ../admin/view/wp-slimstat-reports.php:1811
2920
  msgid "c-bz"
2921
  msgstr "Belize"
2922
 
2923
  # Benin
2924
+ #: ../admin/view/wp-slimstat-reports.php:1811
2925
  msgid "c-bj"
2926
  msgstr "Benin"
2927
 
2928
  # Bermuda
2929
+ #: ../admin/view/wp-slimstat-reports.php:1811
2930
  msgid "c-bm"
2931
  msgstr "Bermuda"
2932
 
2933
  # Bhutan
2934
+ #: ../admin/view/wp-slimstat-reports.php:1811
2935
  msgid "c-bt"
2936
  msgstr "Bhutan"
2937
 
2938
  # Bolivia
2939
+ #: ../admin/view/wp-slimstat-reports.php:1811
2940
  msgid "c-bo"
2941
  msgstr "Bolivia"
2942
 
2943
  # Bosnia and Herzegovina
2944
+ #: ../admin/view/wp-slimstat-reports.php:1811
2945
  msgid "c-ba"
2946
  msgstr "Bosnia and Herzegovina"
2947
 
2948
  # Botswana
2949
+ #: ../admin/view/wp-slimstat-reports.php:1811
2950
  msgid "c-bw"
2951
  msgstr "Botswana"
2952
 
2953
  # Brazil
2954
+ #: ../admin/view/wp-slimstat-reports.php:1811
2955
  msgid "c-br"
2956
  msgstr "Brazil"
2957
 
2958
  # Brunei Darussalam
2959
+ #: ../admin/view/wp-slimstat-reports.php:1811
2960
  msgid "c-bn"
2961
  msgstr "Brunei Darussalam"
2962
 
2963
  # Bulgaria
2964
+ #: ../admin/view/wp-slimstat-reports.php:1811
2965
  msgid "c-bg"
2966
  msgstr "Bulgaria"
2967
 
2968
  # Burkina Faso
2969
+ #: ../admin/view/wp-slimstat-reports.php:1811
2970
  msgid "c-bf"
2971
  msgstr "Burkina Faso"
2972
 
2973
  # Burundi
2974
+ #: ../admin/view/wp-slimstat-reports.php:1811
2975
  msgid "c-bi"
2976
  msgstr "Burundi"
2977
 
2978
  # Cambodia
2979
+ #: ../admin/view/wp-slimstat-reports.php:1811
2980
  msgid "c-kh"
2981
  msgstr "Cambodia"
2982
 
2983
  # Cameroon
2984
+ #: ../admin/view/wp-slimstat-reports.php:1811
2985
  msgid "c-cm"
2986
  msgstr "Cameroon"
2987
 
2988
  # Canada
2989
+ #: ../admin/view/wp-slimstat-reports.php:1811
2990
  msgid "c-ca"
2991
  msgstr "Canada"
2992
 
2993
  # Cape Verde
2994
+ #: ../admin/view/wp-slimstat-reports.php:1811
2995
  msgid "c-cv"
2996
  msgstr "Cape Verde"
2997
 
2998
  # Cayman Islands
2999
+ #: ../admin/view/wp-slimstat-reports.php:1811
3000
  msgid "c-ky"
3001
  msgstr "Cayman Islands"
3002
 
3003
  # Central African Republic
3004
+ #: ../admin/view/wp-slimstat-reports.php:1811
3005
  msgid "c-cf"
3006
  msgstr "Central African Republic"
3007
 
3008
  # Chad
3009
+ #: ../admin/view/wp-slimstat-reports.php:1811
3010
  msgid "c-td"
3011
  msgstr "Chad"
3012
 
3013
  # Chile
3014
+ #: ../admin/view/wp-slimstat-reports.php:1811
3015
  msgid "c-cl"
3016
  msgstr "Chile"
3017
 
3018
  # China
3019
+ #: ../admin/view/wp-slimstat-reports.php:1811
3020
  msgid "c-cn"
3021
  msgstr "China"
3022
 
3023
  # Colombia
3024
+ #: ../admin/view/wp-slimstat-reports.php:1811
3025
  msgid "c-co"
3026
  msgstr "Colombia"
3027
 
3028
  # Comoros
3029
+ #: ../admin/view/wp-slimstat-reports.php:1811
3030
  msgid "c-km"
3031
  msgstr "Comoros"
3032
 
3033
  # Congo
3034
+ #: ../admin/view/wp-slimstat-reports.php:1811
3035
  msgid "c-cg"
3036
  msgstr "Congo"
3037
 
3038
  # The Democratic Republic of the Congo
3039
+ #: ../admin/view/wp-slimstat-reports.php:1811
3040
  msgid "c-cd"
3041
  msgstr "The Democratic Republic of the Congo"
3042
 
3043
  # Costa Rica
3044
+ #: ../admin/view/wp-slimstat-reports.php:1811
3045
  msgid "c-cr"
3046
  msgstr "Costa Rica"
3047
 
3048
  # Côte d'Ivoire
3049
+ #: ../admin/view/wp-slimstat-reports.php:1811
3050
  msgid "c-ci"
3051
  msgstr "Côte d'Ivoire"
3052
 
3053
  # Croatia
3054
+ #: ../admin/view/wp-slimstat-reports.php:1811
3055
  msgid "c-hr"
3056
  msgstr "Croatia"
3057
 
3058
  # Cuba
3059
+ #: ../admin/view/wp-slimstat-reports.php:1811
3060
  msgid "c-cu"
3061
  msgstr "Cuba"
3062
 
3063
  # Cyprus
3064
+ #: ../admin/view/wp-slimstat-reports.php:1811
3065
  msgid "c-cy"
3066
  msgstr "Cyprus"
3067
 
3068
  # Czech Republic
3069
+ #: ../admin/view/wp-slimstat-reports.php:1811
3070
  msgid "c-cz"
3071
  msgstr "Czech Republic"
3072
 
3073
  # Denmark
3074
+ #: ../admin/view/wp-slimstat-reports.php:1811
3075
  msgid "c-dk"
3076
  msgstr "Denmark"
3077
 
3078
  # Djibouti
3079
+ #: ../admin/view/wp-slimstat-reports.php:1811
3080
  msgid "c-dj"
3081
  msgstr "Djibouti"
3082
 
3083
  # Dominica
3084
+ #: ../admin/view/wp-slimstat-reports.php:1811
3085
  msgid "c-dm"
3086
  msgstr "Dominica"
3087
 
3088
  # Dominican Republic
3089
+ #: ../admin/view/wp-slimstat-reports.php:1811
3090
  msgid "c-do"
3091
  msgstr "Dominican Republic"
3092
 
3093
  # Ecuador
3094
+ #: ../admin/view/wp-slimstat-reports.php:1811
3095
  msgid "c-ec"
3096
  msgstr "Ecuador"
3097
 
3098
  # Egypt
3099
+ #: ../admin/view/wp-slimstat-reports.php:1811
3100
  msgid "c-eg"
3101
  msgstr "Egypt"
3102
 
3103
  # El Salvador
3104
+ #: ../admin/view/wp-slimstat-reports.php:1811
3105
  msgid "c-sv"
3106
  msgstr "El Salvador"
3107
 
3108
  # Equatorial Guinea
3109
+ #: ../admin/view/wp-slimstat-reports.php:1811
3110
  msgid "c-gq"
3111
  msgstr "Equatorial Guinea"
3112
 
3113
  # Eritrea
3114
+ #: ../admin/view/wp-slimstat-reports.php:1811
3115
  msgid "c-er"
3116
  msgstr "Eritrea"
3117
 
3118
  # Estonia
3119
+ #: ../admin/view/wp-slimstat-reports.php:1811
3120
  msgid "c-ee"
3121
  msgstr "Estonia"
3122
 
3123
  # Ethiopia
3124
+ #: ../admin/view/wp-slimstat-reports.php:1811
3125
  msgid "c-et"
3126
  msgstr "Ethiopia"
3127
 
3128
  # Faroe Islands
3129
+ #: ../admin/view/wp-slimstat-reports.php:1811
3130
  msgid "c-fo"
3131
  msgstr "Faroe Islands"
3132
 
3133
  # Falkland Islands (Malvinas)
3134
+ #: ../admin/view/wp-slimstat-reports.php:1811
3135
  msgid "c-fk"
3136
  msgstr "Falkland Islands (Malvinas)"
3137
 
3138
  # Fiji
3139
+ #: ../admin/view/wp-slimstat-reports.php:1811
3140
  msgid "c-fj"
3141
  msgstr "Fiji"
3142
 
3143
  # Finland
3144
+ #: ../admin/view/wp-slimstat-reports.php:1811
3145
  msgid "c-fi"
3146
  msgstr "Finland"
3147
 
3148
  # France
3149
+ #: ../admin/view/wp-slimstat-reports.php:1811
3150
  msgid "c-fr"
3151
  msgstr "France"
3152
 
3153
  # French Guiana
3154
+ #: ../admin/view/wp-slimstat-reports.php:1811
3155
  msgid "c-gf"
3156
  msgstr "French Guiana"
3157
 
3158
  # Gabon
3159
+ #: ../admin/view/wp-slimstat-reports.php:1811
3160
  msgid "c-ga"
3161
  msgstr "Gabon"
3162
 
3163
  # Gambia
3164
+ #: ../admin/view/wp-slimstat-reports.php:1811
3165
  msgid "c-gm"
3166
  msgstr "Gambia"
3167
 
3168
  # Georgia
3169
+ #: ../admin/view/wp-slimstat-reports.php:1811
3170
  msgid "c-ge"
3171
  msgstr "Georgia"
3172
 
3173
  # Germany
3174
+ #: ../admin/view/wp-slimstat-reports.php:1811
3175
  msgid "c-de"
3176
  msgstr "Germany"
3177
 
3178
  # Ghana
3179
+ #: ../admin/view/wp-slimstat-reports.php:1811
3180
  msgid "c-gh"
3181
  msgstr "Ghana"
3182
 
3183
  # Greece
3184
+ #: ../admin/view/wp-slimstat-reports.php:1811
3185
  msgid "c-gr"
3186
  msgstr "Greece"
3187
 
3188
  # Greenland
3189
+ #: ../admin/view/wp-slimstat-reports.php:1811
3190
  msgid "c-gl"
3191
  msgstr "Greenland"
3192
 
3193
  # Grenada
3194
+ #: ../admin/view/wp-slimstat-reports.php:1811
3195
  msgid "c-gd"
3196
  msgstr "Grenada"
3197
 
3198
  # Guadeloupe
3199
+ #: ../admin/view/wp-slimstat-reports.php:1811
3200
  msgid "c-gp"
3201
  msgstr "Guadeloupe"
3202
 
3203
  # Guatemala
3204
+ #: ../admin/view/wp-slimstat-reports.php:1811
3205
  msgid "c-gt"
3206
  msgstr "Guatemala"
3207
 
3208
  # Guinea
3209
+ #: ../admin/view/wp-slimstat-reports.php:1811
3210
  msgid "c-gn"
3211
  msgstr "Guinea"
3212
 
3213
  # Guinea-Bissau
3214
+ #: ../admin/view/wp-slimstat-reports.php:1811
3215
  msgid "c-gw"
3216
  msgstr "Guinea-Bissau"
3217
 
3218
  # Guyana
3219
+ #: ../admin/view/wp-slimstat-reports.php:1811
3220
  msgid "c-gy"
3221
  msgstr "Guyana"
3222
 
3223
  # Haiti
3224
+ #: ../admin/view/wp-slimstat-reports.php:1811
3225
  msgid "c-ht"
3226
  msgstr "Haiti"
3227
 
3228
  # Honduras
3229
+ #: ../admin/view/wp-slimstat-reports.php:1811
3230
  msgid "c-hn"
3231
  msgstr "Honduras"
3232
 
3233
  # Hong Kong
3234
+ #: ../admin/view/wp-slimstat-reports.php:1811
3235
  msgid "c-hk"
3236
  msgstr "Hong Kong"
3237
 
3238
  # Hungary
3239
+ #: ../admin/view/wp-slimstat-reports.php:1811
3240
  msgid "c-hu"
3241
  msgstr "Hungary"
3242
 
3243
  # Iceland
3244
+ #: ../admin/view/wp-slimstat-reports.php:1811
3245
  msgid "c-is"
3246
  msgstr "Iceland"
3247
 
3248
  # India
3249
+ #: ../admin/view/wp-slimstat-reports.php:1811
3250
  msgid "c-in"
3251
  msgstr "India"
3252
 
3253
  # Indonesia
3254
+ #: ../admin/view/wp-slimstat-reports.php:1811
3255
  msgid "c-id"
3256
  msgstr "Indonesia"
3257
 
3258
  # Islamic Republic of Iran
3259
+ #: ../admin/view/wp-slimstat-reports.php:1811
3260
  msgid "c-ir"
3261
  msgstr "Islamic Republic of Iran"
3262
 
3263
  # Iraq
3264
+ #: ../admin/view/wp-slimstat-reports.php:1811
3265
  msgid "c-iq"
3266
  msgstr "Iraq"
3267
 
3268
  # Ireland
3269
+ #: ../admin/view/wp-slimstat-reports.php:1811
3270
  msgid "c-ie"
3271
  msgstr "Ireland"
3272
 
3273
  # Israel
3274
+ #: ../admin/view/wp-slimstat-reports.php:1811
3275
  msgid "c-il"
3276
  msgstr "Israel"
3277
 
3278
  # Italy
3279
+ #: ../admin/view/wp-slimstat-reports.php:1811
3280
  msgid "c-it"
3281
  msgstr "Italy"
3282
 
3283
  # Jamaica
3284
+ #: ../admin/view/wp-slimstat-reports.php:1811
3285
  msgid "c-jm"
3286
  msgstr "Jamaica"
3287
 
3288
  # Japan
3289
+ #: ../admin/view/wp-slimstat-reports.php:1811
3290
  msgid "c-jp"
3291
  msgstr "Japan"
3292
 
3293
  # Jordan
3294
+ #: ../admin/view/wp-slimstat-reports.php:1811
3295
  msgid "c-jo"
3296
  msgstr "Jordan"
3297
 
3298
  # Kazakhstan
3299
+ #: ../admin/view/wp-slimstat-reports.php:1811
3300
  msgid "c-kz"
3301
  msgstr "Kazakhstan"
3302
 
3303
  # Kenya
3304
+ #: ../admin/view/wp-slimstat-reports.php:1811
3305
  msgid "c-ke"
3306
  msgstr "Kenya"
3307
 
3308
  # Nauru
3309
+ #: ../admin/view/wp-slimstat-reports.php:1811
3310
  msgid "c-nr"
3311
  msgstr "Nauru"
3312
 
3313
  # Democratic People's Republic of Korea
3314
+ #: ../admin/view/wp-slimstat-reports.php:1811
3315
  msgid "c-kp"
3316
  msgstr "Democratic People's Republic of Korea"
3317
 
3318
  # Republic of Korea
3319
+ #: ../admin/view/wp-slimstat-reports.php:1811
3320
  msgid "c-kr"
3321
  msgstr "Republic of Korea"
3322
 
3323
+ #: ../admin/view/wp-slimstat-reports.php:1811
3324
  msgid "c-kv"
3325
  msgstr "c-kv"
3326
 
3327
  # Kuwait
3328
+ #: ../admin/view/wp-slimstat-reports.php:1811
3329
  msgid "c-kw"
3330
  msgstr "Kuwait"
3331
 
3332
  # Kyrgyzstan
3333
+ #: ../admin/view/wp-slimstat-reports.php:1811
3334
  msgid "c-kg"
3335
  msgstr "Kyrgyzstan"
3336
 
3337
  # Lao People's Democratic Republic
3338
+ #: ../admin/view/wp-slimstat-reports.php:1811
3339
  msgid "c-la"
3340
  msgstr "Lao People's Democratic Republic"
3341
 
3342
  # Latvia
3343
+ #: ../admin/view/wp-slimstat-reports.php:1811
3344
  msgid "c-lv"
3345
  msgstr "Latvia"
3346
 
3347
  # Lebanon
3348
+ #: ../admin/view/wp-slimstat-reports.php:1811
3349
  msgid "c-lb"
3350
  msgstr "Lebanon"
3351
 
3352
  # Lesotho
3353
+ #: ../admin/view/wp-slimstat-reports.php:1811
3354
  msgid "c-ls"
3355
  msgstr "Lesotho"
3356
 
3357
  # Liberia
3358
+ #: ../admin/view/wp-slimstat-reports.php:1811
3359
  msgid "c-lr"
3360
  msgstr "Liberia"
3361
 
3362
  # Libyan Arab Jamahiriya
3363
+ #: ../admin/view/wp-slimstat-reports.php:1811
3364
  msgid "c-ly"
3365
  msgstr "Libyan Arab Jamahiriya"
3366
 
3367
  # Liechtenstein
3368
+ #: ../admin/view/wp-slimstat-reports.php:1811
3369
  msgid "c-li"
3370
  msgstr "Liechtenstein"
3371
 
3372
  # Lithuania
3373
+ #: ../admin/view/wp-slimstat-reports.php:1811
3374
  msgid "c-lt"
3375
  msgstr "Lithuania"
3376
 
3377
  # Luxembourg
3378
+ #: ../admin/view/wp-slimstat-reports.php:1811
3379
  msgid "c-lu"
3380
  msgstr "Luxembourg"
3381
 
3382
  # The Former Yugoslav Republic of Macedonia
3383
+ #: ../admin/view/wp-slimstat-reports.php:1811
3384
  msgid "c-mk"
3385
  msgstr "The Former Yugoslav Republic of Macedonia"
3386
 
3387
  # Madagascar
3388
+ #: ../admin/view/wp-slimstat-reports.php:1811
3389
  msgid "c-mg"
3390
  msgstr "Madagascar"
3391
 
3392
  # Malawi
3393
+ #: ../admin/view/wp-slimstat-reports.php:1811
3394
  msgid "c-mw"
3395
  msgstr "Malawi"
3396
 
3397
  # Malaysia
3398
+ #: ../admin/view/wp-slimstat-reports.php:1811
3399
  msgid "c-my"
3400
  msgstr "Malaysia"
3401
 
3402
  # Mali
3403
+ #: ../admin/view/wp-slimstat-reports.php:1811
3404
  msgid "c-ml"
3405
  msgstr "Mali"
3406
 
3407
  # Malta
3408
+ #: ../admin/view/wp-slimstat-reports.php:1811
3409
  msgid "c-mt"
3410
  msgstr "Malta"
3411
 
3412
  # Martinique
3413
+ #: ../admin/view/wp-slimstat-reports.php:1811
3414
  msgid "c-mq"
3415
  msgstr "Martinique"
3416
 
3417
  # Mauritania
3418
+ #: ../admin/view/wp-slimstat-reports.php:1811
3419
  msgid "c-mr"
3420
  msgstr "Mauritania"
3421
 
3422
  # Mauritius
3423
+ #: ../admin/view/wp-slimstat-reports.php:1811
3424
  msgid "c-mu"
3425
  msgstr "Mauritius"
3426
 
3427
  # Mexico
3428
+ #: ../admin/view/wp-slimstat-reports.php:1811
3429
  msgid "c-mx"
3430
  msgstr "Mexico"
3431
 
3432
  # Moldova
3433
+ #: ../admin/view/wp-slimstat-reports.php:1811
3434
  msgid "c-md"
3435
  msgstr "Moldova"
3436
 
3437
  # Mongolia
3438
+ #: ../admin/view/wp-slimstat-reports.php:1811
3439
  msgid "c-mn"
3440
  msgstr "Mongolia"
3441
 
3442
  # Montenegro
3443
+ #: ../admin/view/wp-slimstat-reports.php:1811
3444
  msgid "c-me"
3445
  msgstr "Montenegro"
3446
 
3447
  # Montserrat
3448
+ #: ../admin/view/wp-slimstat-reports.php:1811
3449
  msgid "c-ms"
3450
  msgstr "Montserrat"
3451
 
3452
  # Morocco
3453
+ #: ../admin/view/wp-slimstat-reports.php:1811
3454
  msgid "c-ma"
3455
  msgstr "Morocco"
3456
 
3457
  # Mozambique
3458
+ #: ../admin/view/wp-slimstat-reports.php:1811
3459
  msgid "c-mz"
3460
  msgstr "Mozambique"
3461
 
3462
  # Myanmar
3463
+ #: ../admin/view/wp-slimstat-reports.php:1811
3464
  msgid "c-mm"
3465
  msgstr "Myanmar"
3466
 
3467
  # Namibia
3468
+ #: ../admin/view/wp-slimstat-reports.php:1811
3469
  msgid "c-na"
3470
  msgstr "Namibia"
3471
 
3472
  # Nepal
3473
+ #: ../admin/view/wp-slimstat-reports.php:1811
3474
  msgid "c-np"
3475
  msgstr "Nepal"
3476
 
3477
  # Netherlands
3478
+ #: ../admin/view/wp-slimstat-reports.php:1811
3479
  msgid "c-nl"
3480
  msgstr "Netherlands"
3481
 
3482
  # New Caledonia
3483
+ #: ../admin/view/wp-slimstat-reports.php:1811
3484
  msgid "c-nc"
3485
  msgstr "New Caledonia"
3486
 
3487
  # New Zealand
3488
+ #: ../admin/view/wp-slimstat-reports.php:1811
3489
  msgid "c-nz"
3490
  msgstr "New Zealand"
3491
 
3492
  # Nicaragua
3493
+ #: ../admin/view/wp-slimstat-reports.php:1811
3494
  msgid "c-ni"
3495
  msgstr "Nicaragua"
3496
 
3497
  # Niger
3498
+ #: ../admin/view/wp-slimstat-reports.php:1811
3499
  msgid "c-ne"
3500
  msgstr "Niger"
3501
 
3502
  # Nigeria
3503
+ #: ../admin/view/wp-slimstat-reports.php:1811
3504
  msgid "c-ng"
3505
  msgstr "Nigeria"
3506
 
3507
  # Norway
3508
+ #: ../admin/view/wp-slimstat-reports.php:1811
3509
  msgid "c-no"
3510
  msgstr "Norway"
3511
 
3512
  # Oman
3513
+ #: ../admin/view/wp-slimstat-reports.php:1811
3514
  msgid "c-om"
3515
  msgstr "Oman"
3516
 
3517
  # Pakistan
3518
+ #: ../admin/view/wp-slimstat-reports.php:1811
3519
  msgid "c-pk"
3520
  msgstr "Pakistan"
3521
 
3522
  # Palau
3523
+ #: ../admin/view/wp-slimstat-reports.php:1811
3524
  msgid "c-pw"
3525
  msgstr "Palau"
3526
 
3527
  # Occupied Palestinian Territory
3528
+ #: ../admin/view/wp-slimstat-reports.php:1811
3529
  msgid "c-ps"
3530
  msgstr "Occupied Palestinian Territory"
3531
 
3532
  # Panama
3533
+ #: ../admin/view/wp-slimstat-reports.php:1811
3534
  msgid "c-pa"
3535
  msgstr "Panama"
3536
 
3537
  # Papua New Guinea
3538
+ #: ../admin/view/wp-slimstat-reports.php:1811
3539
  msgid "c-pg"
3540
  msgstr "Papua New Guinea"
3541
 
3542
  # Paraguay
3543
+ #: ../admin/view/wp-slimstat-reports.php:1811
3544
  msgid "c-py"
3545
  msgstr "Paraguay"
3546
 
3547
  # Peru
3548
+ #: ../admin/view/wp-slimstat-reports.php:1811
3549
  msgid "c-pe"
3550
  msgstr "Peru"
3551
 
3552
  # Philippines
3553
+ #: ../admin/view/wp-slimstat-reports.php:1811
3554
  msgid "c-ph"
3555
  msgstr "Philippines"
3556
 
3557
  # Poland
3558
+ #: ../admin/view/wp-slimstat-reports.php:1811
3559
  msgid "c-pl"
3560
  msgstr "Poland"
3561
 
3562
  # Portugal
3563
+ #: ../admin/view/wp-slimstat-reports.php:1811
3564
  msgid "c-pt"
3565
  msgstr "Portugal"
3566
 
3567
  # Puerto Rico
3568
+ #: ../admin/view/wp-slimstat-reports.php:1811
3569
  msgid "c-pr"
3570
  msgstr "Puerto Rico"
3571
 
3572
  # Qatar
3573
+ #: ../admin/view/wp-slimstat-reports.php:1811
3574
  msgid "c-qa"
3575
  msgstr "Qatar"
3576
 
3577
  # Réunion
3578
+ #: ../admin/view/wp-slimstat-reports.php:1811
3579
  msgid "c-re"
3580
  msgstr "Réunion"
3581
 
3582
  # Romania
3583
+ #: ../admin/view/wp-slimstat-reports.php:1811
3584
  msgid "c-ro"
3585
  msgstr "Romania"
3586
 
3587
  # Russian Federation
3588
+ #: ../admin/view/wp-slimstat-reports.php:1811
3589
  msgid "c-ru"
3590
  msgstr "Russian Federation"
3591
 
3592
  # Rwanda
3593
+ #: ../admin/view/wp-slimstat-reports.php:1811
3594
  msgid "c-rw"
3595
  msgstr "Rwanda"
3596
 
3597
  # Saint Kitts and Nevis
3598
+ #: ../admin/view/wp-slimstat-reports.php:1811
3599
  msgid "c-kn"
3600
  msgstr "Saint Kitts and Nevis"
3601
 
3602
  # Saint Lucia
3603
+ #: ../admin/view/wp-slimstat-reports.php:1811
3604
  msgid "c-lc"
3605
  msgstr "Saint Lucia"
3606
 
3607
  # Saint Martin
3608
+ #: ../admin/view/wp-slimstat-reports.php:1811
3609
  msgid "c-mf"
3610
  msgstr "Saint Martin"
3611
 
3612
  # Saint Vincent and the Grenadines
3613
+ #: ../admin/view/wp-slimstat-reports.php:1811
3614
  msgid "c-vc"
3615
  msgstr "Saint Vincent and the Grenadines"
3616
 
3617
  # Samoa
3618
+ #: ../admin/view/wp-slimstat-reports.php:1811
3619
  msgid "c-ws"
3620
  msgstr "Samoa"
3621
 
3622
  # Sao Tome and Principe
3623
+ #: ../admin/view/wp-slimstat-reports.php:1811
3624
  msgid "c-st"
3625
  msgstr "Sao Tome and Principe"
3626
 
3627
  # Saudi Arabia
3628
+ #: ../admin/view/wp-slimstat-reports.php:1811
3629
  msgid "c-sa"
3630
  msgstr "Saudi Arabia"
3631
 
3632
  # Senegal
3633
+ #: ../admin/view/wp-slimstat-reports.php:1811
3634
  msgid "c-sn"
3635
  msgstr "Senegal"
3636
 
3637
  # Serbia
3638
+ #: ../admin/view/wp-slimstat-reports.php:1811
3639
  msgid "c-rs"
3640
  msgstr "Serbia"
3641
 
3642
  # Sierra Leone
3643
+ #: ../admin/view/wp-slimstat-reports.php:1811
3644
  msgid "c-sl"
3645
  msgstr "Sierra Leone"
3646
 
3647
  # Singapore
3648
+ #: ../admin/view/wp-slimstat-reports.php:1811
3649
  msgid "c-sg"
3650
  msgstr "Singapore"
3651
 
3652
  # Slovakia
3653
+ #: ../admin/view/wp-slimstat-reports.php:1811
3654
  msgid "c-sk"
3655
  msgstr "Slovakia"
3656
 
3657
  # Slovenia
3658
+ #: ../admin/view/wp-slimstat-reports.php:1811
3659
  msgid "c-si"
3660
  msgstr "Slovenia"
3661
 
3662
  # Solomon Islands
3663
+ #: ../admin/view/wp-slimstat-reports.php:1811
3664
  msgid "c-sb"
3665
  msgstr "Solomon Islands"
3666
 
3667
  # Somalia
3668
+ #: ../admin/view/wp-slimstat-reports.php:1811
3669
  msgid "c-so"
3670
  msgstr "Somalia"
3671
 
3672
  # South Africa
3673
+ #: ../admin/view/wp-slimstat-reports.php:1811
3674
  msgid "c-za"
3675
  msgstr "South Africa"
3676
 
3677
  # South Georgia and the South Sandwich Islands
3678
+ #: ../admin/view/wp-slimstat-reports.php:1811
3679
  msgid "c-gs"
3680
  msgstr "South Georgia and the South Sandwich Islands"
3681
 
3682
  # Spain
3683
+ #: ../admin/view/wp-slimstat-reports.php:1811
3684
  msgid "c-es"
3685
  msgstr "Spain"
3686
 
3687
  # Sri Lanka
3688
+ #: ../admin/view/wp-slimstat-reports.php:1811
3689
  msgid "c-lk"
3690
  msgstr "Sri Lanka"
3691
 
3692
  # Seychelles
3693
+ #: ../admin/view/wp-slimstat-reports.php:1811
3694
  msgid "c-sc"
3695
  msgstr "Seychelles"
3696
 
3697
  # Sudan
3698
+ #: ../admin/view/wp-slimstat-reports.php:1811
3699
  msgid "c-sd"
3700
  msgstr "Sudan"
3701
 
3702
+ #: ../admin/view/wp-slimstat-reports.php:1811
3703
  msgid "c-ss"
3704
  msgstr "c-ss"
3705
 
3706
  # Suriname
3707
+ #: ../admin/view/wp-slimstat-reports.php:1811
3708
  msgid "c-sr"
3709
  msgstr "Suriname"
3710
 
3711
  # Svalbard and Jan Mayen
3712
+ #: ../admin/view/wp-slimstat-reports.php:1811
3713
  msgid "c-sj"
3714
  msgstr "Svalbard and Jan Mayen"
3715
 
3716
  # Swaziland
3717
+ #: ../admin/view/wp-slimstat-reports.php:1811
3718
  msgid "c-sz"
3719
  msgstr "Swaziland"
3720
 
3721
  # Sweden
3722
+ #: ../admin/view/wp-slimstat-reports.php:1811
3723
  msgid "c-se"
3724
  msgstr "Sweden"
3725
 
3726
  # Switzerland
3727
+ #: ../admin/view/wp-slimstat-reports.php:1811
3728
  msgid "c-ch"
3729
  msgstr "Switzerland"
3730
 
3731
  # Syrian Arab Republic
3732
+ #: ../admin/view/wp-slimstat-reports.php:1811
3733
  msgid "c-sy"
3734
  msgstr "Syrian Arab Republic"
3735
 
3736
  # Taiwan, Province of China
3737
+ #: ../admin/view/wp-slimstat-reports.php:1811
3738
  msgid "c-tw"
3739
  msgstr "Taiwan, Province of China"
3740
 
3741
  # Tajikistan
3742
+ #: ../admin/view/wp-slimstat-reports.php:1811
3743
  msgid "c-tj"
3744
  msgstr "Tajikistan"
3745
 
3746
  # United Republic of Tanzania
3747
+ #: ../admin/view/wp-slimstat-reports.php:1811
3748
  msgid "c-tz"
3749
  msgstr "United Republic of Tanzania"
3750
 
3751
  # Thailand
3752
+ #: ../admin/view/wp-slimstat-reports.php:1811
3753
  msgid "c-th"
3754
  msgstr "Thailand"
3755
 
3756
  # Timor-Leste
3757
+ #: ../admin/view/wp-slimstat-reports.php:1811
3758
  msgid "c-tl"
3759
  msgstr "Timor-Leste"
3760
 
3761
  # Togo
3762
+ #: ../admin/view/wp-slimstat-reports.php:1811
3763
  msgid "c-tg"
3764
  msgstr "Togo"
3765
 
3766
  # Tonga
3767
+ #: ../admin/view/wp-slimstat-reports.php:1811
3768
  msgid "c-to"
3769
  msgstr "Tonga"
3770
 
3771
  # Trinidad and Tobago
3772
+ #: ../admin/view/wp-slimstat-reports.php:1811
3773
  msgid "c-tt"
3774
  msgstr "Trinidad and Tobago"
3775
 
3776
  # Tunisia
3777
+ #: ../admin/view/wp-slimstat-reports.php:1811
3778
  msgid "c-tn"
3779
  msgstr "Tunisia"
3780
 
3781
  # Turkey
3782
+ #: ../admin/view/wp-slimstat-reports.php:1811
3783
  msgid "c-tr"
3784
  msgstr "Turkey"
3785
 
3786
  # Turkmenistan
3787
+ #: ../admin/view/wp-slimstat-reports.php:1811
3788
  msgid "c-tm"
3789
  msgstr "Turkmenistan"
3790
 
3791
  # Turks and Caicos Islands
3792
+ #: ../admin/view/wp-slimstat-reports.php:1811
3793
  msgid "c-tc"
3794
  msgstr "Turks and Caicos Islands"
3795
 
3796
  # Uganda
3797
+ #: ../admin/view/wp-slimstat-reports.php:1811
3798
  msgid "c-ug"
3799
  msgstr "Uganda"
3800
 
3801
  # Ukraine
3802
+ #: ../admin/view/wp-slimstat-reports.php:1811
3803
  msgid "c-ua"
3804
  msgstr "Ukraine"
3805
 
3806
  # United Arab Emirates
3807
+ #: ../admin/view/wp-slimstat-reports.php:1811
3808
  msgid "c-ae"
3809
  msgstr "United Arab Emirates"
3810
 
3811
  # United Kingdom
3812
+ #: ../admin/view/wp-slimstat-reports.php:1811
3813
  msgid "c-gb"
3814
  msgstr "United Kingdom"
3815
 
3816
  # United States
3817
+ #: ../admin/view/wp-slimstat-reports.php:1811
3818
  msgid "c-us"
3819
  msgstr "United States"
3820
 
3821
  # Uruguay
3822
+ #: ../admin/view/wp-slimstat-reports.php:1811
3823
  msgid "c-uy"
3824
  msgstr "Uruguay"
3825
 
3826
  # Uzbekistan
3827
+ #: ../admin/view/wp-slimstat-reports.php:1811
3828
  msgid "c-uz"
3829
  msgstr "Uzbekistan"
3830
 
3831
  # Vanuatu
3832
+ #: ../admin/view/wp-slimstat-reports.php:1811
3833
  msgid "c-vu"
3834
  msgstr "Vanuatu"
3835
 
3836
  # Venezuela
3837
+ #: ../admin/view/wp-slimstat-reports.php:1811
3838
  msgid "c-ve"
3839
  msgstr "Venezuela"
3840
 
3841
  # Viet Nam
3842
+ #: ../admin/view/wp-slimstat-reports.php:1811
3843
  msgid "c-vn"
3844
  msgstr "Viet Nam"
3845
 
3846
  # British Virgin Islands
3847
+ #: ../admin/view/wp-slimstat-reports.php:1811
3848
  msgid "c-vg"
3849
  msgstr "British Virgin Islands"
3850
 
3851
  # U.S. Virgin Islands
3852
+ #: ../admin/view/wp-slimstat-reports.php:1811
3853
  msgid "c-vi"
3854
  msgstr "U.S. Virgin Islands"
3855
 
3856
  # Western Sahara
3857
+ #: ../admin/view/wp-slimstat-reports.php:1811
3858
  msgid "c-eh"
3859
  msgstr "Western Sahara"
3860
 
3861
  # Yemen
3862
+ #: ../admin/view/wp-slimstat-reports.php:1811
3863
  msgid "c-ye"
3864
  msgstr "Yemen"
3865
 
3866
  # Zambia
3867
+ #: ../admin/view/wp-slimstat-reports.php:1811
3868
  msgid "c-zm"
3869
  msgstr "Zambia"
3870
 
3871
  # Zimbabwe
3872
+ #: ../admin/view/wp-slimstat-reports.php:1811
3873
  msgid "c-zw"
3874
  msgstr "Zimbabwe"
3875
 
3876
  # Guernsey
3877
+ #: ../admin/view/wp-slimstat-reports.php:1811
3878
  msgid "c-gg"
3879
  msgstr "Guernsey"
3880
 
3881
  # Jersey
3882
+ #: ../admin/view/wp-slimstat-reports.php:1811
3883
  msgid "c-je"
3884
  msgstr "Jersey"
3885
 
3886
  # Isle of Man
3887
+ #: ../admin/view/wp-slimstat-reports.php:1811
3888
  msgid "c-im"
3889
  msgstr "Isle of Man"
3890
 
3891
  # Maldives
3892
+ #: ../admin/view/wp-slimstat-reports.php:1811
3893
  msgid "c-mv"
3894
  msgstr "Maldives"
3895
 
3896
  # European Union
3897
+ #: ../admin/view/wp-slimstat-reports.php:1812
3898
  msgid "c-eu"
3899
  msgstr "European Union"
3900
 
3901
+ #: ../admin/view/wp-slimstat-reports.php:1894
3902
  msgid "src"
3903
  msgstr "Src"
3904
 
3905
+ #: ../admin/view/wp-slimstat-reports.php:1897
3906
  msgid "serp"
3907
  msgstr "Serp"
3908
 
3909
+ #: ../admin/view/wp-slimstat-reports.php:1904
3910
  msgid "Go to the referring page"
3911
  msgstr "Vaya a la página de referencia"
3912
 
3913
+ #: ../admin/view/wp-slimstat-reports.php:1926
3914
  #, fuzzy
3915
  msgid "Remove filter for"
3916
  msgstr "Seleccionar filtro"
3917
 
3918
+ #: ../admin/view/wp-slimstat-reports.php:1930
3919
  msgid "Save"
3920
  msgstr ""
3921
 
3922
+ #: ../admin/view/wp-slimstat-reports.php:1933
3923
  msgid "Reset All"
3924
  msgstr "Resetear todos"
3925
 
3926
+ #: ../admin/view/wp-slimstat-reports.php:1937
3927
  msgid "Current filters:"
3928
  msgstr "Filtros Actuales:"
3929
 
3930
+ #: ../admin/wp-slimstat-admin.php:482 ../admin/wp-slimstat-admin.php:493
3931
+ #: ../admin/wp-slimstat-admin.php:495
3932
  #, fuzzy
3933
  msgid "SlimStat"
3934
  msgstr "Acerca de WP-SlimStat"
3935
 
3936
+ #: ../admin/wp-slimstat-admin.php:489 ../admin/wp-slimstat-admin.php:504
3937
+ #: ../wp-slimstat.php:1799
3938
+ #, fuzzy
3939
+ msgid "Customize"
3940
+ msgstr "CSS personalizado"
3941
 
3942
+ #: ../admin/wp-slimstat-admin.php:587
3943
  #, fuzzy
3944
  msgid "Pageviews in the last "
3945
  msgstr "Visitas a la página en los últimos 365 días"
3946
 
3947
+ #: ../admin/wp-slimstat-admin.php:590
3948
  #, fuzzy
3949
  msgid "Unique IPs in the last "
3950
  msgstr "Únicamente interno"
3951
 
3952
+ #: ../admin/wp-slimstat-admin.php:644
3953
  msgid "Show on screen"
3954
  msgstr "Mostrar en pantalla"
3955
 
3956
+ #: ../admin/wp-slimstat-admin.php:725
3957
  msgid "Already saved"
3958
  msgstr ""
3959
 
3960
+ #: ../admin/wp-slimstat-admin.php:733
3961
  msgid "Saved"
3962
  msgstr ""
3963
 
3964
+ #: ../admin/wp-slimstat-admin.php:753
3965
  #, fuzzy
3966
  msgid "Delete this filter"
3967
  msgstr "Filtrar páginas visitadas dondé:"
3968
 
3969
+ #: ../admin/wp-slimstat-admin.php:797
3970
  msgid "There was an error updating the following options:"
3971
  msgstr "Hubo un error al actualizar las siguientes opciones:"
3972
 
3973
+ #: ../admin/wp-slimstat-admin.php:800
3974
  #, fuzzy
3975
  msgid "Your changes have been saved."
3976
  msgstr "Sus ajustes se han actualizado correctamente."
3977
 
3978
+ #: ../admin/wp-slimstat-admin.php:823
3979
  msgid "Save Changes"
3980
  msgstr "Guardar los cambios"
3981
 
3982
+ #: ../admin/wp-slimstat-admin.php:839
3983
  msgid "Definitions"
3984
  msgstr "Definiciones"
3985
 
3986
+ #: ../admin/wp-slimstat-admin.php:842
3987
  #, fuzzy
3988
  msgid "Pageview"
3989
  msgstr "Paginas visitadas"
3990
 
3991
+ #: ../admin/wp-slimstat-admin.php:842
3992
  #, fuzzy
3993
  msgid ""
3994
  "A request to load a single HTML file (\"page\"). This should be contrasted "
4000
  "archivo desde un servidor web. WP SLIMStat registra una visita de página "
4001
  "cada vez que el código de seguimiento se ejecuta"
4002
 
4003
+ #: ../admin/wp-slimstat-admin.php:843
4004
  #, fuzzy
4005
  msgid "(Human) Visit"
4006
  msgstr "Visitas humanas"
4007
 
4008
+ #: ../admin/wp-slimstat-admin.php:843
4009
  msgid ""
4010
  "A period of interaction between a visitor's browser and your website, ending "
4011
  "when the browser is closed or when the user has been inactive on that site "
4015
  "termina cuando se cierra el navegador o cuando el usuario ha estado inactivo "
4016
  "en ese sitio durante 30 minutos"
4017
 
4018
+ #: ../admin/wp-slimstat-admin.php:844
4019
  msgid ""
4020
  "Any user who has left a comment on your blog, and is thus identified by "
4021
  "Wordpress as a returning visitor"
4023
  "Todo usuario que haya dejado un comentario en su blog, por lo que es "
4024
  "identificado por Wordpress como un visitante que regresó"
4025
 
4026
+ #: ../admin/wp-slimstat-admin.php:845
4027
  #, fuzzy
4028
  msgid "Unique IP"
4029
  msgstr "IPs Unicas"
4030
 
4031
+ #: ../admin/wp-slimstat-admin.php:845
4032
  msgid ""
4033
  "Used to differentiate between multiple requests to download a file from one "
4034
  "internet address (IP) and requests originating from many distinct addresses; "
4041
  "dirección de Internet de donde vino una visita de página, es útil, pero no "
4042
  "es perfecta"
4043
 
4044
+ #: ../admin/wp-slimstat-admin.php:846
4045
  msgid ""
4046
  "the originating IP address of a client connecting to a web server through an "
4047
  "HTTP proxy or load balancer"
4049
  "dirección IP de origen de un cliente que se conecta a un servidor web a "
4050
  "través de un proxy HTTP o equilibrador de carga"
4051
 
4052
+ #: ../admin/wp-slimstat-admin.php:847
4053
  #, fuzzy
4054
  msgid "Direct Traffic"
4055
  msgstr "Visita Directa"
4056
 
4057
+ #: ../admin/wp-slimstat-admin.php:847
4058
  msgid ""
4059
  "All those people showing up to your Web site by typing in the URL of your "
4060
  "Web site coming or from a bookmark; some people also call this \"default "
4064
  "URL de su sitio web o que vienen de un favorito, algunas personas también "
4065
  "llaman a esto \"tráfico por defecto\" o \"tráfico ambiente\""
4066
 
4067
+ #: ../admin/wp-slimstat-admin.php:848
4068
  #, fuzzy
4069
  msgid "Search Engine"
4070
  msgstr "Motores de Búsqueda"
4071
 
4072
+ #: ../admin/wp-slimstat-admin.php:848
4073
  msgid ""
4074
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
4075
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
4077
  "Google, Yahoo, MSN, Ask, otros; este cubo incluirá tanto su tráfico "
4078
  "orgánico, así como por pago (PPC / SEM), así que tenga cuidado de que"
4079
 
4080
+ #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
4081
  msgid "Keywords used by your visitors to find your website on a search engine"
4082
  msgstr ""
4083
  "Las palabras clave utilizadas por los visitantes para encontrar su sitio web "
4084
  "en un buscador"
4085
 
4086
+ #: ../admin/wp-slimstat-admin.php:850
4087
  msgid "SERP"
4088
  msgstr "SERP"
4089
 
4090
+ #: ../admin/wp-slimstat-admin.php:850
4091
  msgid ""
4092
  "Short for search engine results page, the Web page that a search engine "
4093
  "returns with the results of its search. The value shown represents your rank "
4098
  "que se muestra representa su rango (o posición) dentro de esa lista de los "
4099
  "resultados"
4100
 
4101
+ #: ../admin/wp-slimstat-admin.php:851
4102
  msgid ""
4103
  "Any program used for accessing a website; this includes browsers, robots, "
4104
  "spiders and any other program that was used to retrieve information from the "
4108
  "navegadores, robots, arañas y cualquier otro programa que se utiliza para "
4109
  "recuperar información del sitio"
4110
 
4111
+ #: ../admin/wp-slimstat-admin.php:852
4112
  msgid ""
4113
  "A link from one domain to another is said to be outbound from its source "
4114
  "anchor and inbound to its target. This report lists all the links to other "
4118
  "de anclaje y de entrada a su objetivo. Este informe muestra todos los "
4119
  "enlaces a otros sitios web, seguidos por sus visitantes."
4120
 
4121
+ #: ../admin/wp-slimstat-admin.php:859
4122
  msgid "Basic Filters"
4123
  msgstr "Filtros básicos"
4124
 
4125
+ #: ../admin/wp-slimstat-admin.php:862
4126
  msgid "User agent (Firefox, Chrome, ...)"
4127
  msgstr "Agente usuario(Firefox, Chrome, ...)"
4128
 
4129
+ #: ../admin/wp-slimstat-admin.php:863
4130
  msgid "2-letter code (us, ru, de, it, ...)"
4131
  msgstr "código de 2 letras (eu, ru, de, it, ...)"
4132
 
4133
+ #: ../admin/wp-slimstat-admin.php:864
4134
  msgid "IP"
4135
  msgstr "IP"
4136
 
4137
+ #: ../admin/wp-slimstat-admin.php:864
4138
  msgid "Visitor's public IP address"
4139
  msgstr "Dirección IP pública del visitante"
4140
 
4141
+ #: ../admin/wp-slimstat-admin.php:866
4142
  msgid ""
4143
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
4144
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
4148
  "en-us/library/ee825488(v=cs.20).aspx\">págna de cultura del lenguaje</a> "
4149
  "(primera columna) para más información"
4150
 
4151
+ #: ../admin/wp-slimstat-admin.php:867
4152
  msgid ""
4153
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
4154
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
4158
  "target=\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php"
4159
  "\">esta página del manual</a> para obtener más información"
4160
 
4161
+ #: ../admin/wp-slimstat-admin.php:868
4162
  msgid "URL accessed on your site"
4163
  msgstr "URL visitada en su sitio"
4164
 
4165
+ #: ../admin/wp-slimstat-admin.php:869
4166
  msgid "Complete address of the referrer page"
4167
  msgstr "Dirección completa de la página que refiere"
4168
 
4169
+ #: ../admin/wp-slimstat-admin.php:870
4170
  msgid ""
4171
  "Visitors' names according to the cookie set by Wordpress after they leave a "
4172
  "comment"
4174
  "Nombres de visitantes según la cookie establecida por Wordpress después de "
4175
  "dejar un comentario"
4176
 
4177
+ #: ../admin/wp-slimstat-admin.php:878
4178
  msgid "Advanced Filters"
4179
  msgstr "Filtros avanzados"
4180
 
4181
+ #: ../admin/wp-slimstat-admin.php:881
4182
  msgid "user agent version (9.0, 11, ...)"
4183
  msgstr "versión del agente de usuario (9,0, 11, ...)"
4184
 
4185
+ #: ../admin/wp-slimstat-admin.php:882
4186
  msgid ""
4187
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
4188
  "all others"
4190
  "1 = oruga del motor de búsqueda, 2 = dispositivo móvil, 3 = lector de "
4191
  "sindicación, 0 =a todos los demás"
4192
 
4193
+ #: ../admin/wp-slimstat-admin.php:883
4194
  #, fuzzy
4195
  msgid "Pageview Attributes"
4196
  msgstr "Paginas visitadas"
4197
 
4198
+ #: ../admin/wp-slimstat-admin.php:883
4199
  msgid ""
4200
  "this field is set to <em>[pre]</em> if the resource has been accessed "
4201
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4205
  "través de <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4206
  "Link_prefetching_FAQ\">Preecaptura de Enlaces</a> o técnicas similares"
4207
 
4208
+ #: ../admin/wp-slimstat-admin.php:884
4209
  msgid "author associated to that post/page when the resource was accessed"
4210
  msgstr "autor asociado a esa publicación/página cuando se accedió al recurso"
4211
 
4212
+ #: ../admin/wp-slimstat-admin.php:885
4213
  msgid "ID of the category/term associated to the resource, when available"
4214
  msgstr ""
4215
  "ID de la categoría / término asociado al recurso, cuando esté disponible"
4216
 
4217
+ #: ../admin/wp-slimstat-admin.php:886
4218
  msgid "visitor's originating IP address, if available"
4219
  msgstr "dirección IP de origen del visitante, si está disponible"
4220
 
4221
+ #: ../admin/wp-slimstat-admin.php:887
4222
  msgid ""
4223
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4224
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
4232
  "wordpress.org/Conditional_Tags\">Etiquetas condicionales</a> página del "
4233
  "manual para más información"
4234
 
4235
+ #: ../admin/wp-slimstat-admin.php:888
4236
  msgid "Screen Resolution"
4237
  msgstr "Resolución de Pantalla"
4238
 
4239
+ #: ../admin/wp-slimstat-admin.php:888
4240
  msgid "viewport width and height (1024x768, 800x600, ...)"
4241
  msgstr "ancho de vista y altura (1024x768, 800x600 , ...)"
4242
 
4243
+ #: ../admin/wp-slimstat-admin.php:889
4244
  msgid ""
4245
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4246
  "visitors"
4248
  "se utiliza generalmente en conjunción con <em> no está vacío </em>, "
4249
  "identifica los visitantes humanos"
4250
 
4251
+ #: ../admin/wp-slimstat-admin.php:890
4252
  msgid "Date Filters"
4253
  msgstr "Filtros de fecha"
4254
 
4255
+ #: ../admin/wp-slimstat-admin.php:890
4256
  msgid ""
4257
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4258
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
4263
  "(es decir, día=1, mes=1, año=blank, intervalo=-1 establecerá un filtro de "
4264
  "año a la fecha)"
4265
 
4266
+ #: ../admin/wp-slimstat-admin.php:891
4267
  msgid "SERP Position"
4268
  msgstr "Posición SERP"
4269
 
4270
+ #: ../admin/wp-slimstat-admin.php:891
4271
  msgid ""
4272
  "set the filter to Referer contains cd=N&, where N is the position you are "
4273
  "looking for"
4275
  "configurar el filtro para Referer contiene cd=N&, donde N es la posición que "
4276
  "usted está buscando"
4277
 
4278
+ #: ../admin/wp-slimstat-admin.php:918
4279
  msgid "Yes"
4280
  msgstr "Si"
4281
 
4282
+ #: ../admin/wp-slimstat-admin.php:919
4283
  msgid "No"
4284
  msgstr "No"
4285
 
4286
+ #: ../admin/wp-slimstat-admin.php:920
4287
  msgid "Site Specific"
4288
  msgstr ""
4289
 
5841
  msgid "c-xy"
5842
  msgstr "Local IP"
5843
 
5844
+ #: ../wp-slimstat.php:223 ../wp-slimstat.php:515
5845
+ msgid "Notice: Pageview filtered by third-party code"
5846
  msgstr ""
5847
 
5848
+ #: ../wp-slimstat.php:240
5849
+ #, fuzzy, php-format
5850
+ msgid "Error: Malformed URL %s"
5851
  msgstr "Navegadores recientes"
5852
 
5853
+ #: ../wp-slimstat.php:259
5854
+ #, fuzzy, php-format
5855
+ msgid "Notice: Referrer %s is blacklisted"
5856
+ msgstr "Navegador"
5857
 
5858
+ #: ../wp-slimstat.php:347
5859
+ #, fuzzy, php-format
5860
+ msgid "Notice: Permalink %s is blacklisted"
5861
+ msgstr "Navegador"
5862
 
5863
+ #: ../wp-slimstat.php:358
5864
+ msgid "Error: Empty or not supported IP address format (IPv6)"
5865
  msgstr ""
5866
 
5867
+ #: ../wp-slimstat.php:367
5868
+ #, php-format
5869
+ msgid "Notice: Logged in user %s not tracked"
5870
  msgstr ""
5871
 
5872
+ #: ../wp-slimstat.php:375
5873
+ #, php-format
5874
+ msgid "Notice: User with capability %s not tracked"
5875
  msgstr ""
5876
 
5877
+ #: ../wp-slimstat.php:385
5878
  #, fuzzy, php-format
5879
+ msgid "Notice: User %s is blacklisted"
5880
  msgstr "Navegador"
5881
 
5882
+ #: ../wp-slimstat.php:406
5883
  #, fuzzy, php-format
5884
+ msgid "Notice: Spammer %s not tracked"
5885
  msgstr "Bot o Crawler"
5886
 
5887
+ #: ../wp-slimstat.php:435
5888
  #, fuzzy, php-format
5889
+ msgid "Notice: IP address %s is blacklisted"
5890
  msgstr "Navegador"
5891
 
5892
+ #: ../wp-slimstat.php:464
5893
  #, fuzzy, php-format
5894
+ msgid "Notice: Country %s is blacklisted"
5895
  msgstr "Navegador"
5896
 
5897
+ #: ../wp-slimstat.php:473
5898
  #, fuzzy
5899
+ msgid "Notice: Prefetch requests are ignored"
5900
  msgstr "Ignorar PPeticiones Prefetch"
5901
 
5902
+ #: ../wp-slimstat.php:489
5903
  #, fuzzy
5904
+ msgid "Notice: Bot not tracked"
5905
  msgstr "Bot o Crawler"
5906
 
5907
+ #: ../wp-slimstat.php:498
5908
  #, fuzzy, php-format
5909
+ msgid "Notice: Browser %s is blacklisted"
5910
  msgstr "Navegador"
5911
 
5912
+ #: ../wp-slimstat.php:528
5913
+ msgid "Error:"
5914
+ msgstr ""
5915
+
5916
+ #: ../wp-slimstat.php:1209
5917
  msgid "Invalid payload string. Try clearing your WordPress cache."
5918
  msgstr ""
5919
 
5920
+ #: ../wp-slimstat.php:1219
5921
  msgid "Invalid data signature. Try clearing your WordPress cache."
5922
  msgstr ""
5923
 
5924
+ #: ../wp-slimstat.php:1289
5925
  #, fuzzy
5926
  msgid "There was an error downloading the MaxMind Geolite DB:"
5927
  msgstr "Hubo un error al actualizar las siguientes opciones:"
5928
 
5929
+ #: ../wp-slimstat.php:1297 ../wp-slimstat.php:1306
5930
  #, fuzzy
5931
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5932
  msgstr "Hubo un error al actualizar las siguientes opciones:"
5933
 
5934
+ #: ../wp-slimstat.php:1301
5935
  msgid "Function gzopen not defined. Aborting."
5936
  msgstr ""
5937
 
5938
+ #: ../wp-slimstat.php:1311
5939
  #, fuzzy
5940
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5941
  msgstr "Hubo un error al actualizar las siguientes opciones:"
5942
 
5943
+ #~ msgid "Ignore users (username not found)"
5944
+ #~ msgstr "Ignorar usuarios (nombre de usuario no encontrado)"
5945
+
5946
+ #~ msgid "General"
5947
+ #~ msgstr "General"
5948
+
5949
+ #, fuzzy
5950
+ #~ msgid "Track Pageviews"
5951
+ #~ msgstr "Paginas visitadas"
5952
+
5953
+ #, fuzzy
5954
+ #~ msgid "Visitors and Known Users"
5955
+ #~ msgstr "Navegadores recientes"
5956
+
5957
+ #~ msgid ""
5958
+ #~ "List all the usernames you don't want to track, separated by commas. "
5959
+ #~ "Please be aware that spaces are <em>not</em> ignored and that usernames "
5960
+ #~ "are case sensitive."
5961
+ #~ msgstr ""
5962
+ #~ "Lista de todos los nombres de usuario de los que que no desee realizar el "
5963
+ #~ "seguimiento, separados por comas. Tenga en cuenta que los espacios son "
5964
+ #~ "<em> no </em> ignorados y que los nombres de usuario distinguen entre "
5965
+ #~ "mayúsculas y minúsculas."
5966
+
5967
+ #, fuzzy
5968
+ #~ msgid "Permissions"
5969
+ #~ msgstr "Enlace Permanente"
5970
+
5971
+ #~ msgid "Advanced"
5972
+ #~ msgstr "Avanzados"
5973
+
5974
+ #~ msgid "Double click on an empty region to reset the zoom level"
5975
+ #~ msgstr ""
5976
+ #~ "Haga doble clic en una región vacía para resetear el nivel de acercamiento"
5977
+
5978
+ #~ msgid "Custom Reports"
5979
+ #~ msgstr "Informes Personalizados"
5980
+
5981
  #, fuzzy
5982
  #~ msgid "Tracking"
5983
  #~ msgstr "Seguimiento Activo"
6009
  #~ msgid "External Pages"
6010
  #~ msgstr "Paginas visitadas"
6011
 
 
 
 
 
6012
  #~ msgid "Start From"
6013
  #~ msgstr "Comenzar desde"
6014
 
6056
  #~ msgid "Avg Page Load Time"
6057
  #~ msgstr "Promedio Paginas Visitadas"
6058
 
 
 
 
 
 
 
6059
  #~ msgid "Javascript"
6060
  #~ msgstr "Javascript"
6061
 
6418
  #~ msgid "IP Addresses"
6419
  #~ msgstr "Direcciones IP y Dominios"
6420
 
 
 
 
 
6421
  #, fuzzy
6422
  #~ msgid "Track Browser Capabilities"
6423
  #~ msgstr "Navegador"
languages/wp-slimstat-fa_IR.mo CHANGED
Binary file
languages/wp-slimstat-fa_IR.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
- "POT-Creation-Date: 2015-10-01 21:00-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
7
  "Language-Team: Salman <salmanmp@gmail.com>\n"
@@ -16,81 +16,7 @@ msgstr ""
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../admin/config/addons.php:15
20
- msgid ""
21
- "There was an error retrieving the add-ons list from the server. Please try "
22
- "again later. Error Message:"
23
- msgstr ""
24
- " بازیابی فهرست افزونه ها از دامنه با اشکال مواجه شد. لطفا دوباره آزمایش "
25
- "کنید. شمار خطا: "
26
-
27
- #: ../admin/config/addons.php:25
28
- msgid ""
29
- "There was an error decoding the add-ons list from the server. Please try "
30
- "again later."
31
- msgstr ""
32
- "رمزگشایی فهرست افزونه ها از دامنه با اشکال مواجه شد. لطفا دوباره آزمایش کنید."
33
-
34
- #: ../admin/config/addons.php:32 ../admin/config/index.php:255
35
- #: ../admin/wp-slimstat-admin.php:656 ../admin/wp-slimstat-admin.php:670
36
- #: ../wp-slimstat.php:1789
37
- msgid "Add-ons"
38
- msgstr "افزونه ها"
39
-
40
- #: ../admin/config/addons.php:33
41
- #, fuzzy
42
- msgid ""
43
- "Add-ons extend the functionality of Slimstat in many interesting ways. We "
44
- "offer both free and premium (paid) extensions. Each add-on can be installed "
45
- "as a separate plugin, which will receive regular updates via the WordPress "
46
- "Plugins panel. In order to be notified when a new version of a premium add-"
47
- "on is available, please enter the <strong>license key</strong> you received "
48
- "when you purchased it."
49
- msgstr ""
50
- "میتوانید با استفاده از افزونه ها کارکرد برنامه را گسترش دهید. افزونه های "
51
- "جذابی به صورت رایگان و پولی موجود است که هر یک به طور جداگانه قابل نصب و به "
52
- "روز رسانی میباشد. اگر دوست دارید است از نسخه جدید افزونه با خبر شوید لطفا "
53
- "شماره مجوز که در هنگام خرید دریافت کردید وارد کنید."
54
-
55
- #: ../admin/config/addons.php:37
56
- #, php-format
57
- msgid ""
58
- "This list is refreshed once daily: <a href=\"%s&amp;force_refresh=true"
59
- "\">click here</a> to clear the cache."
60
- msgstr ""
61
-
62
- #: ../admin/config/addons.php:46
63
- msgid "Add-on"
64
- msgstr "افزونه"
65
-
66
- #: ../admin/config/addons.php:46
67
- msgid "Description"
68
- msgstr "توضیحات"
69
-
70
- #: ../admin/config/addons.php:57
71
- #, fuzzy
72
- msgid "Repo Version"
73
- msgstr "نسخه سی‌اس‌اس "
74
-
75
- #: ../admin/config/addons.php:57
76
- #, fuzzy
77
- msgid "Version"
78
- msgstr "نسخه سی‌اس‌اس "
79
-
80
- #: ../admin/config/addons.php:69
81
- #, fuzzy
82
- msgid "Your Version:"
83
- msgstr "نسخه مرورگر"
84
-
85
- #: ../admin/config/addons.php:72
86
- msgid "Installed and Active"
87
- msgstr ""
88
-
89
- #: ../admin/config/index.php:47
90
- msgid "Ignore users (username not found)"
91
- msgstr "نادیده گرفتن کاربر(شناسه کاربر یافت نشد)"
92
-
93
- #: ../admin/config/index.php:67
94
  msgid ""
95
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
96
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
@@ -99,11 +25,11 @@ msgstr ""
99
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> نقش و توانایی</a> "
100
  "مراجعه کنید."
101
 
102
- #: ../admin/config/index.php:82
103
  msgid "Read access: username not found"
104
  msgstr "دست‌رسی خواندن: شناسه کاربری یافت نشد"
105
 
106
- #: ../admin/config/index.php:92 ../admin/config/index.php:117
107
  msgid ""
108
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
109
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
@@ -113,44 +39,34 @@ msgstr ""
113
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> نقش و توانایی</a> "
114
  "مراجعه کنید."
115
 
116
- #: ../admin/config/index.php:107
117
  msgid "Config access: username not found"
118
  msgstr "دست‌رسی پیکربندی: شناسه کاربری یافت نشد"
119
 
120
- #: ../admin/config/index.php:126
121
- msgid "General"
122
- msgstr "عمومی"
123
 
124
- #: ../admin/config/index.php:128 ../admin/config/index.php:224
125
  msgid "Tracker"
126
  msgstr "ره‌گیری"
127
 
128
- #: ../admin/config/index.php:129
129
- #, fuzzy
130
- msgid "Track Pageviews"
131
- msgstr "همه مشاهدات صفحات"
132
 
133
- #: ../admin/config/index.php:129
134
  #, fuzzy
135
  msgid "Turn the tracker on or off, while keeping the reports accessible."
136
  msgstr ""
137
  "رهگیری را روشن و یا خاموش میکند ولی گزارش ها در دسترس خواهد بود که در صورت "
138
  "غیر فعال کردن افزونه بدین گونه نخواهد بود."
139
 
140
- #: ../admin/config/index.php:129 ../admin/config/index.php:131
141
- msgid "On"
142
- msgstr ""
143
-
144
- #: ../admin/config/index.php:129 ../admin/config/index.php:131
145
- #: ../admin/view/wp-slimstat-reports.php:1269
146
- msgid "Off"
147
- msgstr ""
148
-
149
- #: ../admin/config/index.php:130
150
  msgid "Tracking Mode"
151
  msgstr " حالت ردگیری"
152
 
153
- #: ../admin/config/index.php:130
154
  #, fuzzy
155
  msgid ""
156
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
@@ -165,20 +81,20 @@ msgstr ""
165
  "پذیرفته نمیشود. اثر جانبی این حالت این است که بیشتر هرز ها، موتورهای جستجو و "
166
  "دیگر خزنده ها نیز دیگر رهگیری نمیشوند."
167
 
168
- #: ../admin/config/index.php:130
169
- msgid "Client"
170
  msgstr ""
171
 
172
- #: ../admin/config/index.php:130
173
  #, fuzzy
174
- msgid "Server"
175
  msgstr "طرف دامنه"
176
 
177
- #: ../admin/config/index.php:131
178
  msgid "Stealth Mode"
179
  msgstr ""
180
 
181
- #: ../admin/config/index.php:131
182
  msgid ""
183
  "Do not add the javascript tracking code to your pages, if tracking mode is "
184
  "set to Server. Please note: if enabled, this will prevent the tracker from "
@@ -186,130 +102,138 @@ msgid ""
186
  "etc. This option is ignored is Tracking Mode is set to Client."
187
  msgstr ""
188
 
189
- #: ../admin/config/index.php:132
 
 
 
 
 
 
 
 
190
  #, fuzzy
191
  msgid "Admin Pages"
192
  msgstr "نظارت صفحه مدیریت"
193
 
194
- #: ../admin/config/index.php:132
195
  msgid "Enable this option to track your users' activity within the admin."
196
  msgstr "برای رهگیری کاربران در ناحیه مدیریتی ین گزینه را فعال کنید."
197
 
198
- #: ../admin/config/index.php:132
199
  #, fuzzy
200
  msgid "Track"
201
  msgstr "ره‌گیری"
202
 
203
- #: ../admin/config/index.php:132
204
  #, fuzzy
205
  msgid "Do not track"
206
  msgstr "ناشامل"
207
 
208
- #: ../admin/config/index.php:134
209
  msgid "WordPress Integration"
210
  msgstr "تلفیق کردن وردپرس"
211
 
212
- #: ../admin/config/index.php:135
213
  msgid "Menu Position"
214
  msgstr "محل گزینگان"
215
 
216
- #: ../admin/config/index.php:135
217
  #, fuzzy
218
  msgid ""
219
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
220
  "admin bar (if visible)."
221
  msgstr "بین گزینگان مدیریتی ثابت و یا گزینگان مدیریتی ابشاری انتخاب کنید."
222
 
223
- #: ../admin/config/index.php:135
224
  msgid "Side Menu"
225
  msgstr "گزینگان کناره"
226
 
227
- #: ../admin/config/index.php:135
228
  msgid "Admin Bar"
229
  msgstr " منوی مدیریت"
230
 
231
- #: ../admin/config/index.php:136
232
  #, fuzzy
233
  msgid "Posts and Pages"
234
  msgstr "یک ستون به نوشته‌ها اضافه کن"
235
 
236
- #: ../admin/config/index.php:136
237
  #, fuzzy
238
  msgid ""
239
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
240
- "per post in the last 365 days."
241
  msgstr ""
242
  "یک ستون جدید به صفحه «ویرایش ارسال» اضافه می‌کند، که شامل تعداد بازدید برای "
243
  "هر ارسال میباشد (ممکن است مدت تحویل را زیاد کند)"
244
 
245
- #: ../admin/config/index.php:137
246
- msgid "Dashboard Widgets"
247
- msgstr ""
248
-
249
- #: ../admin/config/index.php:137
250
- msgid ""
251
- "Choose if you want to have the most important reports on your WordPress "
252
- "Dashboard. Use the Screen Options dropdown to select which ones to display."
253
- msgstr ""
254
-
255
- #: ../admin/config/index.php:138
256
  msgid "Report Interval"
257
  msgstr ""
258
 
259
- #: ../admin/config/index.php:138
260
  msgid ""
261
  "Enter the time range, in days, that should be used to calculate the value "
262
  "here above."
263
  msgstr ""
264
 
265
- #: ../admin/config/index.php:139
266
  #, fuzzy
267
  msgid "Report Type"
268
  msgstr "گزارش ها"
269
 
270
- #: ../admin/config/index.php:139
271
  msgid ""
272
  "Select what kind of information you would like to see displayed on the Posts "
273
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
274
  "IPs consider only one hit per user in the given time range."
275
  msgstr ""
276
 
277
- #: ../admin/config/index.php:139 ../admin/view/wp-slimstat-reports.php:97
278
- #: ../admin/view/wp-slimstat-reports.php:1124
279
- #: ../admin/view/wp-slimstat-reports.php:1285
280
- #: ../admin/view/wp-slimstat-reports.php:1443
281
  msgid "Pageviews"
282
  msgstr "مشاهدات صفحات"
283
 
284
- #: ../admin/config/index.php:139 ../admin/view/wp-slimstat-reports.php:1124
285
- #: ../admin/view/wp-slimstat-reports.php:1129
286
- #: ../admin/view/wp-slimstat-reports.php:1134
287
- #: ../admin/view/wp-slimstat-reports.php:1300
288
- #: ../admin/view/wp-slimstat-reports.php:1345
289
  msgid "Unique IPs"
290
  msgstr "آی‌پی‌های یکتا"
291
 
292
- #: ../admin/config/index.php:140
 
 
 
 
 
 
 
 
 
 
293
  #, fuzzy
294
  msgid "Hide Add-ons"
295
  msgstr "افزونه ها"
296
 
297
- #: ../admin/config/index.php:140
298
  msgid ""
299
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
300
  "from the list of plugins in WordPress. Please note that you will still "
301
  "receive updates for hidden add-ons."
302
  msgstr ""
303
 
304
- #: ../admin/config/index.php:142
305
  msgid "Database"
306
  msgstr "پایگاه داده"
307
 
308
- #: ../admin/config/index.php:143
309
  msgid "Retain data for"
310
  msgstr "نگاه داشتن داده برای"
311
 
312
- #: ../admin/config/index.php:143
313
  #, fuzzy
314
  msgid ""
315
  "Clean-up log entries older than the number of days specified here above. "
@@ -319,29 +243,29 @@ msgstr ""
319
  "ورودی هایی که از تعداد روزها زیر بیشتر باشد حذف میشوند. صفر وارد کنید اگر "
320
  "مایل به حفظ داده ها صرفنظر از تاریخ آن هستید."
321
 
322
- #: ../admin/config/index.php:143
323
  msgid "Next clean-up on"
324
  msgstr "تمیزکاری بعدی در"
325
 
326
- #: ../admin/config/index.php:143
327
  #, fuzzy, php-format
328
  msgid ""
329
  "Entries logged on or before %s will be archived or deleted according to the "
330
  "option here below."
331
  msgstr "ردیف‌های مربوط به روز %s و قبل از آن حذف خواهند شد."
332
 
333
- #: ../admin/config/index.php:143 ../admin/view/index.php:102
334
  #: ../admin/view/wp-slimstat-db.php:79
335
- #: ../admin/view/wp-slimstat-reports.php:1269
336
  msgid "days"
337
  msgstr "روز"
338
 
339
- #: ../admin/config/index.php:144
340
  #, fuzzy
341
  msgid "Delete records"
342
  msgstr "اطلاعات"
343
 
344
- #: ../admin/config/index.php:144
345
  msgid ""
346
  "If DB space is not an issue, you can decide to archive older records in "
347
  "another table, instead of deleting them. This way performance is preserved, "
@@ -351,256 +275,213 @@ msgid ""
351
  "is uninstalled. Make sure to backup your data before you proceed."
352
  msgstr ""
353
 
354
- #: ../admin/config/index.php:149 ../admin/config/index.php:210
355
- msgid "Reports"
356
- msgstr "گزارش ها"
 
357
 
358
- #: ../admin/config/index.php:151
359
- msgid "Formats and Conversions"
 
 
 
 
 
 
 
360
  msgstr ""
 
 
361
 
362
- #: ../admin/config/index.php:152
363
- msgid "Number Format"
364
- msgstr "نگارش اعداد"
365
 
366
- #: ../admin/config/index.php:152
367
- #, fuzzy
368
- msgid "Choose the number format you want to use for your reports."
 
 
 
369
  msgstr ""
370
- "نگارش مناسب برای ملاحظه گزارش اعداد را نتخاب کنید، امریکایی یا اروپایی."
 
371
 
372
- #: ../admin/config/index.php:153
373
- #, fuzzy
374
- msgid "Date Format"
375
- msgstr "داده و نگارش ها"
376
 
377
- #: ../admin/config/index.php:153
378
  msgid ""
379
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
380
- "Format</a> to use when displaying a pageview's date."
 
381
  msgstr ""
 
 
 
382
 
383
- #: ../admin/config/index.php:154
384
- #, fuzzy
385
- msgid "Time Format"
386
- msgstr "نگارش اعداد"
387
 
388
- #: ../admin/config/index.php:154
389
  msgid ""
390
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
391
- "Format</a> to use when displaying a pageview's time."
 
 
 
392
  msgstr ""
 
 
 
393
 
394
- #: ../admin/config/index.php:155
395
  #, fuzzy
396
- msgid "Use Display Name"
397
- msgstr "نمایش نام صفحه نمایش"
398
 
399
- #: ../admin/config/index.php:155
 
 
 
 
400
  msgid ""
401
- "By default, users are listed by their usernames. Use this option to "
402
- "visualize their display names instead."
403
  msgstr ""
404
- "به طور پیش فرظ، کاربران با نام کاربری فهرست بندی میشوند. این گزینه کاربران "
405
- "را با نام فهرست بندی میکند."
406
 
407
- #: ../admin/config/index.php:156
408
  #, fuzzy
409
- msgid "Use Titles"
410
- msgstr "نمایش عناوین"
411
 
412
- #: ../admin/config/index.php:156
413
- #, fuzzy
414
  msgid ""
415
- "Slimstat converts your permalinks into post, page and category titles. "
416
- "Disable this feature if you need to see the URL in your reports."
 
417
  msgstr ""
418
- " تمامی پیوندهای یکتا را به ارسال و صفحه تبدیل میکند. این ویژگی را غیرفعال "
419
- "کنید اگر در گزارش به نشانی نیاز دارید"
420
-
421
- #: ../admin/config/index.php:157
422
- msgid "Convert IP Addresses"
423
- msgstr "تبدیل نشانی آی‌پی"
424
-
425
- #: ../admin/config/index.php:157
426
- msgid "Display provider names instead of IP addresses."
427
- msgstr "نمایش خدمات دهنده ها به جای ای پی"
428
-
429
- #: ../admin/config/index.php:159
430
- msgid "Functionality"
431
- msgstr "کاربردی"
432
 
433
- #: ../admin/config/index.php:160
434
- msgid "SlimScroll"
435
  msgstr ""
436
 
437
- #: ../admin/config/index.php:160
438
  msgid ""
439
- "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
440
- "scrollbar."
 
 
441
  msgstr ""
442
 
443
- #: ../admin/config/index.php:161
444
- msgid "Expand Details"
445
- msgstr "گسترش جزئیات"
446
 
447
- #: ../admin/config/index.php:161
448
- msgid "Expand each row's details by default, insted of on mousehover."
449
- msgstr "گشترش جزئیات‌ هر سطر به طور پیش فرظ، به جای رویت با توقف اشاره گر"
 
 
 
450
 
451
- #: ../admin/config/index.php:162 ../admin/config/index.php:167
452
- msgid "Rows to Display"
453
- msgstr "نمایش ردیف ها"
454
 
455
- #: ../admin/config/index.php:162
456
- msgid "Specify the number of items in each report."
457
- msgstr "تعداد موردها در هر گزارش را مشخص کنید."
 
 
 
458
 
459
- #: ../admin/config/index.php:163 ../admin/view/wp-slimstat-db.php:101
460
  #, fuzzy
461
- msgid "Max Results"
462
- msgstr "نتایج محدود به"
463
-
464
- #: ../admin/config/index.php:163
465
- msgid ""
466
- "Decide how many records should be retrieved from the database in total. "
467
- "Depending on your server configuration, you may want to fine tune this value "
468
- "to avoid exceeding your PHP memory limit."
469
- msgstr ""
470
-
471
- #: ../admin/config/index.php:165
472
- msgid "Activity Log"
473
- msgstr "فهرست فعالیت ها"
474
-
475
- #: ../admin/config/index.php:166
476
- msgid "Live Stream"
477
- msgstr "پخش زنده"
478
 
479
- #: ../admin/config/index.php:166
480
- #, fuzzy
481
  msgid ""
482
- "Enable the Live view, which refreshes the Activity Log every X seconds. "
483
- "Enter <strong>0</strong> (number zero) to deactivate this feature."
 
 
 
 
 
484
  msgstr ""
485
- "فعال کردن «نمای زنده» صفحه «همین حالا» را هر چند ثانیه تازه سازی میکند. برای "
486
- "فیرفعال کردن صفر وارد کنید."
487
-
488
- #: ../admin/config/index.php:166 ../admin/config/index.php:225
489
- msgid "seconds"
490
- msgstr "ثانیه"
491
-
492
- #: ../admin/config/index.php:167
493
- #, fuzzy
494
- msgid "Specify the number of items in the Activity Log."
495
- msgstr " تعداد موردها در فهرست صفحه «همین حالا» را مشخص کنید"
496
 
497
- #: ../admin/config/index.php:169 ../admin/config/index.php:201
498
- #: ../admin/config/index.php:242
499
  msgid "Miscellaneous"
500
  msgstr "متفرقه"
501
 
502
- #: ../admin/config/index.php:170
503
- msgid "Custom CSS"
504
- msgstr "سی‌اس‌اس دلخواه"
505
-
506
- #: ../admin/config/index.php:170
507
- #, fuzzy
508
- msgid ""
509
- "Paste here your custom stylesheet to personalize the way your reports look. "
510
- "<a href='https://slimstat.freshdesk.com/support/solutions/"
511
- "articles/5000528528-how-can-i-change-the-colors-associated-to-color-coded-"
512
- "pageviews-known-user-known-visitors-search-e' target='_blank'>Check the FAQ</"
513
- "a> for more information on how to use this setting."
514
- msgstr ""
515
- "سی‌اس‌اس دلخواه خود را اینجا وارد کنید و گزارش ها را شخصی کنید. برای اطلاع "
516
- "بیشتر به<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
517
- "target='_blank'> سوالهای رایج</a> مراجعه کنید."
518
-
519
- #: ../admin/config/index.php:171
520
- #, fuzzy
521
- msgid "Chart Colors"
522
- msgstr "کنترل‌های نمودار"
523
-
524
- #: ../admin/config/index.php:171
525
- msgid ""
526
- "Customize the look and feel of your charts by assigning personalized colors "
527
- "to each metric. List 4 hex colors separated by commas, strictly in the "
528
- "following order: metric 1 previous, metric 2 previous, metric 1 current, "
529
- "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
530
- msgstr ""
531
-
532
- #: ../admin/config/index.php:172
533
- msgid "Show User Agent"
534
- msgstr "نمایش عامل کاربر "
535
-
536
- #: ../admin/config/index.php:172
537
- msgid ""
538
- "Choose if you want to see the browser name or a complete user agent string "
539
- "when hovering on browser icons."
540
- msgstr ""
541
- " این گزینه را انتخاب کنید اگر میخواهید اسم مرورگر یا نام کامل کاربر را با "
542
- "توقف اشاره گر بر روی نقشک ملاحظه کنید."
543
 
544
- #: ../admin/config/index.php:173
545
  #, fuzzy
546
- msgid "Enable SOV"
547
- msgstr "فعال‌سازی CDN"
548
-
549
- #: ../admin/config/index.php:173
550
- msgid ""
551
- "In linguistic typology, a subject-object-verb (SOV) language is one in which "
552
- "the subject, object, and verb of a sentence appear in that order, like in "
553
- "Japanese."
554
- msgstr ""
555
-
556
- #: ../admin/config/index.php:174
557
- msgid "Social Analytics"
558
- msgstr ""
559
-
560
- #: ../admin/config/index.php:174
561
  msgid ""
562
- "Thanks to a <a href='http://getsocial.io/enterprise' "
563
- "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
564
- "set of analytics for social media where you can identify top performing "
565
- "posts. Track social sharing to understand which of your posts are generating "
566
- "more engagement. When this option is enabled, Slimstat sends a list of all "
567
- "your posts's URLs to their service for analysis once daily."
568
  msgstr ""
 
 
 
569
 
570
- #: ../admin/config/index.php:179
571
  msgid "Filters"
572
  msgstr "فیلترها"
573
 
574
- #: ../admin/config/index.php:181
575
- msgid "Visitors and Known Users"
576
- msgstr "بیننده و کاربران آشنا"
 
577
 
578
- #: ../admin/config/index.php:182
579
  msgid "Track Registered Users"
580
  msgstr "ره‌گیری کاربران ثبت شده"
581
 
582
- #: ../admin/config/index.php:182
583
  msgid "Enable this option to track logged in users."
584
  msgstr "اگر می‌خواهید کاربران وارد شده را ره‌گیری کنید این گزینه را فعال کنید."
585
 
586
- #: ../admin/config/index.php:183
587
  msgid "Blacklist by Username"
588
  msgstr " فهرست سیاه با نشانی آی‌پی"
589
 
590
- #: ../admin/config/index.php:183
 
591
  msgid ""
592
  "List all the usernames you don't want to track, separated by commas. Please "
593
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
594
- "sensitive."
 
 
 
595
  msgstr ""
596
- "فهرست نام کاربرانی که نمیخواهید رهگیری کنید، تفکیک شده با ویرگول. لطفا در "
597
- "نظر داشته باشید که فاصله ها و حروف کوچک و بزرگ نیز حساب میشود."
 
 
 
 
 
598
 
599
- #: ../admin/config/index.php:184
600
  msgid "Blacklist by IP Address"
601
  msgstr " فهرست سیاه با نشانی آی‌پی"
602
 
603
- #: ../admin/config/index.php:184
604
  #, fuzzy
605
  msgid ""
606
  "List all the IP addresses you don't want to track, separated by commas. Each "
@@ -614,11 +495,11 @@ msgstr ""
614
  "Classless_Inter-Domain_Routing' target='_blank'>CIDR</a> تعریف شود (مثل "
615
  "<em>192.168.0.0/24</em>) و اگر نگارش صحیح نباشد رهگیری به درستی انجام نمیشود."
616
 
617
- #: ../admin/config/index.php:185
618
  msgid "Blacklist by Capability"
619
  msgstr "کاربران بر اساس توانایی"
620
 
621
- #: ../admin/config/index.php:185
622
  msgid ""
623
  "Users having at least one of the <a href='http://codex.wordpress.org/"
624
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
@@ -628,15 +509,15 @@ msgstr ""
628
  "Roles_and_Capabilities' target='_new'> خواص</a> زیر را داشته باشند ردگیری "
629
  "نمیشوند (به بزرگ و کوچک بودن را دقت داشته باشید)."
630
 
631
- #: ../admin/config/index.php:187
632
  msgid "Profiling"
633
  msgstr "نمایه"
634
 
635
- #: ../admin/config/index.php:188
636
  msgid "Ignore Spammers"
637
  msgstr "نادیده گرفتن هرزها"
638
 
639
- #: ../admin/config/index.php:188
640
  msgid ""
641
  "Enable this option if you don't want to track visits from users identified "
642
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -647,12 +528,12 @@ msgstr ""
647
  "Akismet) را رهگیری کنید این گزینه را فعال کنید. بازدید های کاربرانی که بعدا "
648
  "به صورت هرز شناخته شوند از پایگاه داده ها نیز حذف میشوند."
649
 
650
- #: ../admin/config/index.php:189
651
  #, fuzzy
652
  msgid "Ignore Bots"
653
  msgstr "کاربران را نادیده بگیر"
654
 
655
- #: ../admin/config/index.php:189
656
  msgid ""
657
  "Turn on this feature if you want to have the accuracy level of server-side "
658
  "tracking, but not the inconvenience of getting your database clogged with "
@@ -660,11 +541,11 @@ msgid ""
660
  "note that in Client mode, bots are ignored regardless of this setting."
661
  msgstr ""
662
 
663
- #: ../admin/config/index.php:190
664
  msgid "Permalinks"
665
  msgstr "پیوندهای یکتا"
666
 
667
- #: ../admin/config/index.php:190
668
  msgid ""
669
  "List all the URLs on your website that you don't want to track, separated by "
670
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -682,11 +563,11 @@ msgstr ""
682
  "and /about, <code>/abo!t</code> will match /about and /abort. Strings are "
683
  "case-insensitive."
684
 
685
- #: ../admin/config/index.php:191
686
  msgid "Countries"
687
  msgstr "کشورها"
688
 
689
- #: ../admin/config/index.php:191
690
  msgid ""
691
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
692
  "track, separated by commas."
@@ -694,11 +575,11 @@ msgstr ""
694
  "کد کشورهایی که مایل به رهگیری نیستید، تفکیک شده با ویرگول مثل <code>en-us, "
695
  "it, es</code>"
696
 
697
- #: ../admin/config/index.php:192
698
  msgid "User Agents"
699
  msgstr "مرورگرهای کاربران"
700
 
701
- #: ../admin/config/index.php:192
702
  msgid ""
703
  "Browsers (user agents) you don't want to track, separated by commas. You can "
704
  "specify the browser's version adding a slash after the name (i.e. "
@@ -713,11 +594,11 @@ msgstr ""
713
  "Strings are case-insensitive.مرورگرهایی که نمیخواهید رهگیری کنید، تفکیک شده "
714
  "با ویرگول. میتوانید نسخه مرورگر را نیز مشخص کنید. مثلا <em>Firefox/3.6</em>. "
715
 
716
- #: ../admin/config/index.php:193
717
  msgid "Referring Sites"
718
  msgstr "سایت ارجاع دهنده"
719
 
720
- #: ../admin/config/index.php:193
721
  msgid ""
722
  "Referring URLs that you don't want to track, separated by commas: "
723
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -733,90 +614,253 @@ msgstr ""
733
  "insensitive. Include either a wildcard or the protocol you want to filter "
734
  "(http://, https://)."
735
 
736
- #: ../admin/config/index.php:195
 
 
 
 
 
 
 
 
 
 
 
 
737
  #, fuzzy
738
- msgid "Internal and Outbound Links"
739
- msgstr "پیوندهای بیرونی اخیر"
 
 
 
 
 
 
740
 
741
- #: ../admin/config/index.php:196
742
- msgid "Track Outbound Clicks"
743
- msgstr "ره‌گیری کلیک های بیرونی"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
744
 
745
- #: ../admin/config/index.php:196
 
 
 
 
 
746
  msgid ""
747
- "Track when your visitors click on link to external websites. This option "
748
- "required Spy Mode to be enabled."
749
  msgstr ""
750
- "پیوندهایی که بازدیدکننده را به خارج از پایگاه ها میبرد رهگیری کنید. این "
751
- "گزینه نیاز به فعال کردن دید دزدکی دارد."
752
 
753
- #: ../admin/config/index.php:197
754
  #, fuzzy
755
- msgid "Track Coordinates"
756
- msgstr " حالت ردگیری"
757
 
758
- #: ../admin/config/index.php:197
759
  msgid ""
760
- "Collect mouse coordinates and other information for clicks on internal "
761
- "links. Strongly recommended if you're using the heatmap add-on. By default, "
762
- "this information is only collected for external links."
 
 
 
 
 
 
 
 
 
 
763
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
764
 
765
  #: ../admin/config/index.php:198
766
- msgid "No Callback"
767
  msgstr ""
768
 
769
  #: ../admin/config/index.php:198
770
  msgid ""
771
- "Track the event but do not invoke the callback function on links marked with "
772
- "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
773
- "attribute contains one of these strings (separated by comma). Useful to "
774
- "prevent conflicts with lightbox and similar libraries."
775
  msgstr ""
776
 
777
  #: ../admin/config/index.php:199
778
- msgid "Do Not Track"
779
- msgstr ""
780
 
781
  #: ../admin/config/index.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
782
  msgid ""
783
- "Do not track links marked with one of these class names, <em>rel</em> "
784
- "attributes or whose <em>href</em> attribute contains one of these strings "
785
- "(separated by comma)."
786
  msgstr ""
787
 
788
  #: ../admin/config/index.php:202
789
- msgid "Enable Privacy Mode"
790
- msgstr "فعال کردن حالت حریم"
791
 
792
  #: ../admin/config/index.php:202
793
- msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
794
- msgstr "این گزینه نشانی آی‌پی بیننده را طبق قوانین حریم خصوصی اروپا پنهان میکند"
795
 
796
- #: ../admin/config/index.php:203
797
- msgid "Ignore Prefetch Requests"
798
- msgstr "نادیده گرفتن درخواست صفحه‌بندی"
799
 
800
- #: ../admin/config/index.php:203
 
 
 
 
801
  #, fuzzy
802
  msgid ""
803
- "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
804
- "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
805
- "target='_blank'>Link Prefetching functionality</a>."
806
  msgstr ""
807
- "جلوگیری کردن از ردگیری بازدیدهایی که توسط <a href='https://developer.mozilla."
808
- "org/en/Link_prefetching_FAQ' target='_blank'>صفحه‌بندی</a> برنامه Firefox "
809
- "صورت میگیرد."
810
 
811
- #: ../admin/config/index.php:208
812
- msgid "Permissions"
813
- msgstr "مجوزها"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
814
 
815
  #: ../admin/config/index.php:211
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
816
  msgid "Restrict Authors"
817
  msgstr "محدود کردن نویسنده‌ها"
818
 
819
- #: ../admin/config/index.php:211
820
  #, fuzzy
821
  msgid ""
822
  "Enable this option if you want your authors to only see stats related to "
@@ -825,11 +869,11 @@ msgstr ""
825
  "اگر میخواهید نویسنده ها فقط آمار مربوط به محتوای خود را رویت کنند این گزینه "
826
  "را فعال کنید."
827
 
828
- #: ../admin/config/index.php:212 ../admin/config/index.php:216
829
  msgid "Capability"
830
  msgstr "کاربران بر اساس توانایی"
831
 
832
- #: ../admin/config/index.php:212
833
  #, fuzzy
834
  msgid ""
835
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -845,11 +889,11 @@ msgstr ""
845
  "داشت، مگر اینکه اجازه فهرست سفید اینجا مشخص شود. در این صورت فهرست اولویت "
846
  "میگیرد بر قابلیت."
847
 
848
- #: ../admin/config/index.php:213 ../admin/config/index.php:217
849
  msgid "Whitelist"
850
  msgstr "فهرست سفید"
851
 
852
- #: ../admin/config/index.php:213
853
  msgid ""
854
  "List all the users who should have access to the reports, separated by "
855
  "commas. Administrators are implicitly allowed, so you don't need to list "
@@ -859,13 +903,13 @@ msgstr ""
859
  "طور کامل دسترسی دارند و نیاز به وارد کردن اینجا نخواهند داشت. کوچک و بزرگ "
860
  "بودن حروف مهم است."
861
 
862
- #: ../admin/config/index.php:215 ../admin/config/index.php:268
863
- #: ../admin/wp-slimstat-admin.php:697 ../admin/wp-slimstat-admin.php:700
864
- #: ../wp-slimstat.php:1792
865
  msgid "Settings"
866
  msgstr "تنظیمات"
867
 
868
- #: ../admin/config/index.php:216
869
  #, fuzzy
870
  msgid ""
871
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -877,7 +921,7 @@ msgstr ""
877
  "target='_new'> توانایی</a> برای دسترسی برای تنظیمات را مشخص کنید. این فهرست "
878
  "سفید اختیارات کاربران خاص را لفو میکند."
879
 
880
- #: ../admin/config/index.php:217
881
  msgid ""
882
  "List all the users who can edit these options, separated by commas. Please "
883
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
@@ -886,126 +930,16 @@ msgstr ""
886
  "فهرست کاربرانی که توانایی ویرایش این گزینه ها را دارند، تفکیک شده با ویرگول. "
887
  "از وارد کردن نام خود در این فهرست مطمئن شوید."
888
 
889
- #: ../admin/config/index.php:222
890
- msgid "Advanced"
891
- msgstr "پیش‌رفته"
892
-
893
- #: ../admin/config/index.php:225
894
- msgid "Session Duration"
895
- msgstr "مدت جلسه"
896
-
897
- #: ../admin/config/index.php:225
898
- #, fuzzy
899
- msgid ""
900
- "How many seconds should a human session last? Google Analytics sets it to "
901
- "1800 seconds."
902
- msgstr ""
903
- "چند ثانیه جلسه (انسان) در پایگاه به طول انجامد؟ گوگل آنالیتیک این مقدار را "
904
- "۱۸۰۰ ثانیه در نظر می‌گیرد."
905
-
906
- #: ../admin/config/index.php:226
907
- msgid "Extend Session"
908
- msgstr "گسترش جلسه"
909
-
910
- #: ../admin/config/index.php:226
911
- msgid "Extend the duration of a session each time the user visits a new page."
912
- msgstr ""
913
- "هر بار که کاربر یک صفحه جدید را دیدن می‌کند مدت جلسه را به این مقدار گسترش "
914
- "می‌دهد."
915
-
916
- #: ../admin/config/index.php:227
917
- msgid "Enable CDN"
918
- msgstr "فعال‌سازی CDN"
919
-
920
- #: ../admin/config/index.php:227
921
- msgid ""
922
- "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
923
- "by serving our tracking code from their fast and reliable network (free "
924
- "service)."
925
- msgstr ""
926
- "از سی دی اِن <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a> "
927
- "استفاده کنید و از خدمات ردگیری ما در شبکه سریع و مطمئن بهره مند شوید "
928
- "(رایگان)."
929
-
930
- #: ../admin/config/index.php:228
931
- msgid "Extensions to Track"
932
- msgstr "پسوندهایی که رهیابی شوند"
933
-
934
- #: ../admin/config/index.php:228
935
- msgid ""
936
- "List all the file extensions that you want to be treated as Downloads. "
937
- "Please note that links pointing to external resources (i.e. PDFs on a "
938
- "different website) are considered Downloads and not Outbound Links (and "
939
- "tracked as such), if their extension matches one of the ones listed here "
940
- "below."
941
- msgstr ""
942
- "فهرست تمامی پسونده هایی که میخواهد مانند بارگیری حساب شود. لطفا در نظر داشته "
943
- "باشید که پیوندهای منابع خارجی (مثل پی دی اف در پایگاه دیگر) بارگیری محسوب "
944
- "میشود و نه پیوند بیرونی اگر پسوند آنها با این فهرست تطبیق داشته باشد."
945
-
946
- #: ../admin/config/index.php:230
947
- msgid "Pages not belonging to this site"
948
- msgstr ""
949
-
950
- #: ../admin/config/index.php:231
951
- msgid ""
952
- "Add the following code to all the non-WP pages you want to track, right "
953
- "before the closing BODY tag"
954
- msgstr ""
955
-
956
- #: ../admin/config/index.php:241
957
- #, fuzzy
958
- msgid "Allow External Domains"
959
- msgstr "پیوند خارجی خطرناک"
960
-
961
- #: ../admin/config/index.php:241
962
- msgid ""
963
- "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
964
- "header is present on the requested resource, when using the external "
965
- "tracking code here above, list the domains (complete with scheme, separated "
966
- "by commas) you would like to allow. For example: <code>http://my.domain.ext</"
967
- "code> (no trailing slash). Please see <a href='http://www.w3.org/TR/cors/"
968
- "#security' target='_blank'>this W3 resource</a> for more information on the "
969
- "security implications of allowing CORS requests."
970
- msgstr ""
971
-
972
- #: ../admin/config/index.php:243
973
- msgid "Debug Mode"
974
- msgstr ""
975
-
976
- #: ../admin/config/index.php:243
977
- msgid "Display the SQL queries used to retrieve the data."
978
- msgstr ""
979
-
980
- #: ../admin/config/index.php:244
981
- msgid "IP Lookup"
982
- msgstr "ره‌گیری بر اساس نشانی آی‌پی"
983
-
984
- #: ../admin/config/index.php:244
985
- msgid "Customize the Geolocation service to be used in the reports."
986
- msgstr "خدمات مکان-جفرافی برای گزارش ها را دلخواه کنید. "
987
-
988
- #: ../admin/config/index.php:245
989
- msgid "Enable UAN"
990
- msgstr "فعال‌سازی UAN"
991
-
992
- #: ../admin/config/index.php:245
993
- #, fuzzy
994
- msgid ""
995
- "Send anonymous data about user agents to our server for analysis. This "
996
- "allows us to contribute to the <a href='http://browscap.org/' "
997
- "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
998
- "Slimstat's browser detection functionality. It also enables our transparent "
999
- "ads network. No worries, your site will not be affected in any way."
1000
- msgstr ""
1001
- " میتوانید اطلاعات کابر مشکوک را برای تحلیل به صورت ناشناس برای ما ارسال "
1002
- "کنید. با کمک کردن به <a href='http://browscap.co/' target='_blank'>BrowsCap "
1003
- "opensource project</a> توانایی برنامه برای شناختن مرورگرها را بیشتر میشود."
1004
-
1005
- #: ../admin/config/index.php:250
1006
  msgid "Maintenance"
1007
  msgstr "نگهداری"
1008
 
 
 
 
 
 
 
1009
  #: ../admin/config/maintenance.php:16
1010
  #, fuzzy
1011
  msgid ""
@@ -1015,26 +949,26 @@ msgstr ""
1015
  "تبریک! برنامه اکنون برای<a href=\"http://www.youtube.com/watch?"
1016
  "v=ygE01sOhzz0\" target=\"_blank\"> سرعت</a> بهینه شده است."
1017
 
1018
- #: ../admin/config/maintenance.php:23
1019
  #, fuzzy
1020
  msgid "Indexing has been disabled. Enjoy the extra database space!"
1021
  msgstr ""
1022
  "اندیس گری با موفقیت غیر فعال شد. از فضای اضافه که پایگاه داده ها بدست آورید "
1023
  "لذت ببرید! "
1024
 
1025
- #: ../admin/config/maintenance.php:35
1026
  msgid "records deleted from your database."
1027
  msgstr "اطلاعات از پایگاه داده ها حذف شد."
1028
 
1029
- #: ../admin/config/maintenance.php:40
1030
  msgid "The geolocation database has been uninstalled from your server."
1031
  msgstr ""
1032
 
1033
- #: ../admin/config/maintenance.php:50
1034
  msgid "The geolocation database has been installed on your server."
1035
  msgstr ""
1036
 
1037
- #: ../admin/config/maintenance.php:158
1038
  msgid ""
1039
  "Your data was successfully imported. You may now drop the old tables: "
1040
  "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
@@ -1043,61 +977,85 @@ msgid ""
1043
  "delete the old tables."
1044
  msgstr ""
1045
 
1046
- #: ../admin/config/maintenance.php:169
1047
  msgid "Your reports were successfully restored to their default arrangement."
1048
  msgstr "گزارش ها با موفقیت به حالت پیش فرض بازنشانی شدند."
1049
 
1050
- #: ../admin/config/maintenance.php:179
1051
  #, fuzzy
1052
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1053
  msgstr "جداول WP SlimStat با موفقیت به InnoDB تبدیل شد."
1054
 
1055
- #: ../admin/config/maintenance.php:185
1056
  #, fuzzy
1057
  msgid "All the archived records were successfully deleted."
1058
  msgstr "همه اطلاعات با موفقیت حذف شد."
1059
 
1060
- #: ../admin/config/maintenance.php:193
1061
  msgid "All the records were successfully deleted."
1062
  msgstr "همه اطلاعات با موفقیت حذف شد."
1063
 
1064
- #: ../admin/config/maintenance.php:215
1065
  msgid "Debugging"
1066
  msgstr ""
1067
 
1068
- #: ../admin/config/maintenance.php:218
1069
- msgid "Tracker Error Code"
1070
- msgstr ""
 
1071
 
1072
- #: ../admin/config/maintenance.php:220
1073
  #, fuzzy
1074
  msgid "recorded on"
1075
  msgstr "اطلاعات"
1076
 
1077
- #: ../admin/config/maintenance.php:220
1078
  msgid "No Errors so far"
1079
  msgstr ""
1080
 
1081
- #: ../admin/config/maintenance.php:221
1082
  msgid ""
1083
  "The information here above is useful to troubleshoot issues with the "
1084
- "tracker. Please include this code when sending a support request."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1085
  msgstr ""
1086
 
1087
- #: ../admin/config/maintenance.php:225
1088
  msgid "Layout"
1089
  msgstr ""
1090
 
1091
- #: ../admin/config/maintenance.php:228
1092
  msgid ""
1093
  "Are you sure you want to restore the default arrangement of your reports?"
1094
  msgstr " آیا مطمئنید که می‌خواهید تنظیم پیش فرظ گزارش ها را بازنشانی کنید؟"
1095
 
1096
- #: ../admin/config/maintenance.php:228
1097
  msgid "No Panic Button"
1098
  msgstr "دکمه خطر نباشد"
1099
 
1100
- #: ../admin/config/maintenance.php:230
1101
  #, fuzzy
1102
  msgid ""
1103
  "Reset the default arrangement of your reports. Helpful when, for some "
@@ -1107,94 +1065,94 @@ msgstr ""
1107
  " آیا مطمئنید که می‌خواهید تنظیم پیش فرظ گزارش ها به حالت پیش فرض بازنشانی "
1108
  "کنید. این در برطرف کردن ناپدید شدن گزارش ها مفید است."
1109
 
1110
- #: ../admin/config/maintenance.php:234
1111
  msgid "Data Maintenance"
1112
  msgstr "تعمیر داده ها"
1113
 
1114
- #: ../admin/config/maintenance.php:237
1115
  msgid "Delete pageviews where"
1116
  msgstr "حذف بازدید‌ها وقتی"
1117
 
1118
- #: ../admin/config/maintenance.php:251 ../admin/view/index.php:16
1119
  msgid "equals"
1120
  msgstr "مساوی‌ست با"
1121
 
1122
- #: ../admin/config/maintenance.php:252 ../admin/view/index.php:17
1123
  msgid "is not equal to"
1124
  msgstr "مساوی نیست با"
1125
 
1126
- #: ../admin/config/maintenance.php:253 ../admin/view/index.php:18
1127
  msgid "contains"
1128
  msgstr "شامل"
1129
 
1130
- #: ../admin/config/maintenance.php:254 ../admin/view/index.php:19
1131
  msgid "is included in"
1132
  msgstr ""
1133
 
1134
- #: ../admin/config/maintenance.php:255 ../admin/view/index.php:20
1135
  msgid "does not contain"
1136
  msgstr "ناشامل"
1137
 
1138
- #: ../admin/config/maintenance.php:256 ../admin/view/index.php:21
1139
  msgid "starts with"
1140
  msgstr "شروع می‌شود با"
1141
 
1142
- #: ../admin/config/maintenance.php:257 ../admin/view/index.php:22
1143
  msgid "ends with"
1144
  msgstr "پایان می‌یابد با"
1145
 
1146
- #: ../admin/config/maintenance.php:258 ../admin/view/index.php:23
1147
  msgid "sounds like"
1148
  msgstr " شبیه به"
1149
 
1150
- #: ../admin/config/maintenance.php:259 ../admin/view/index.php:24
1151
  msgid "is greater than"
1152
  msgstr "بزرگ‌تر است از"
1153
 
1154
- #: ../admin/config/maintenance.php:260 ../admin/view/index.php:25
1155
  msgid "is less than"
1156
  msgstr "کوچک‌تر است از"
1157
 
1158
- #: ../admin/config/maintenance.php:261 ../admin/view/index.php:27
1159
  msgid "matches"
1160
  msgstr "مطابق است با"
1161
 
1162
- #: ../admin/config/maintenance.php:262 ../admin/view/index.php:28
1163
  msgid "does not match"
1164
  msgstr "مطابق نیست"
1165
 
1166
- #: ../admin/config/maintenance.php:263 ../admin/view/index.php:29
1167
  msgid "is empty"
1168
  msgstr "خالی‌ است"
1169
 
1170
- #: ../admin/config/maintenance.php:264 ../admin/view/index.php:30
1171
  msgid "is not empty"
1172
  msgstr "خالی نیست"
1173
 
1174
- #: ../admin/config/maintenance.php:267 ../admin/view/index.php:42
1175
  #: ../admin/view/index.php:105
1176
  msgid "Apply"
1177
  msgstr "انجام"
1178
 
1179
- #: ../admin/config/maintenance.php:268
1180
  msgid ""
1181
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1182
  msgstr ""
1183
  "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1184
 
1185
- #: ../admin/config/maintenance.php:275
1186
  msgid ""
1187
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1188
  "database?"
1189
  msgstr ""
1190
  "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1191
 
1192
- #: ../admin/config/maintenance.php:275
1193
  #, fuzzy
1194
  msgid "Delete All Records"
1195
  msgstr "حذف همه صفحات"
1196
 
1197
- #: ../admin/config/maintenance.php:278
1198
  #, fuzzy
1199
  msgid ""
1200
  "Erase all the information collected so far by Slimstat, including the "
@@ -1203,7 +1161,7 @@ msgstr ""
1203
  "حذف همه اطلاعاتی که تا حال توسط WP SlimStat جمع آوری شده است. این عملیات "
1204
  "تنظیمات را بازنشانی نمیکند."
1205
 
1206
- #: ../admin/config/maintenance.php:284
1207
  #, fuzzy
1208
  msgid ""
1209
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
@@ -1211,20 +1169,20 @@ msgid ""
1211
  msgstr ""
1212
  "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1213
 
1214
- #: ../admin/config/maintenance.php:284
1215
  #, fuzzy
1216
  msgid "Delete Archive"
1217
  msgstr "حذف بازدید‌ها وقتی"
1218
 
1219
- #: ../admin/config/maintenance.php:287
1220
  msgid "Erase all the archived records. This operation cannot be undone."
1221
  msgstr ""
1222
 
1223
- #: ../admin/config/maintenance.php:293
1224
  msgid "Improve Performance"
1225
  msgstr "بهبود عملکرد"
1226
 
1227
- #: ../admin/config/maintenance.php:297
1228
  msgid ""
1229
  "Please note that you will need about 30% more DB space to store the extra "
1230
  "information required."
@@ -1232,11 +1190,11 @@ msgstr ""
1232
  "در نظر داشته باشید که زخیره کردن این اطلاعات ٪۳۰ درصد حجم بیشتر در پایگاه "
1233
  "داده اشغال میکند."
1234
 
1235
- #: ../admin/config/maintenance.php:301
1236
  msgid "Save DB Space"
1237
  msgstr "زخیره کردن پایگاه داده"
1238
 
1239
- #: ../admin/config/maintenance.php:304
1240
  #, fuzzy
1241
  msgid ""
1242
  "Please note that by removing table indexes, Slimstat's performance will be "
@@ -1244,46 +1202,46 @@ msgid ""
1244
  msgstr ""
1245
  "در نظر داشته باشید که حذف کردن شاخص بر عملکرد WP SlimStat تاثیر میگذارد"
1246
 
1247
- #: ../admin/config/maintenance.php:311
1248
  msgid ""
1249
  "Hold on tight, we are about to import all your old data. Are you sure you "
1250
  "want to proceed?"
1251
  msgstr ""
1252
 
1253
- #: ../admin/config/maintenance.php:311
1254
  #, fuzzy
1255
  msgid "Import old data"
1256
  msgstr "وارد و صادر"
1257
 
1258
- #: ../admin/config/maintenance.php:314
1259
  msgid ""
1260
  "Import all the records from the old table structure. No data will be deleted "
1261
  "from your database."
1262
  msgstr ""
1263
 
1264
- #: ../admin/config/maintenance.php:318
1265
  msgid "MaxMind IP to Country"
1266
  msgstr ""
1267
 
1268
- #: ../admin/config/maintenance.php:324
1269
  msgid ""
1270
  "Do you want to download and install the geolocation database from MaxMind's "
1271
  "server?"
1272
  msgstr ""
1273
 
1274
- #: ../admin/config/maintenance.php:324
1275
  msgid "Install GeoLite DB"
1276
  msgstr ""
1277
 
1278
- #: ../admin/config/maintenance.php:327
1279
  msgid "Do you want to uninstall the geolocation database?"
1280
  msgstr ""
1281
 
1282
- #: ../admin/config/maintenance.php:327
1283
  msgid "Uninstall GeoLite DB"
1284
  msgstr ""
1285
 
1286
- #: ../admin/config/maintenance.php:331
1287
  msgid ""
1288
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1289
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
@@ -1293,41 +1251,105 @@ msgid ""
1293
  "enable this functionality."
1294
  msgstr ""
1295
 
1296
- #: ../admin/config/maintenance.php:336
1297
  msgid "Import and Export"
1298
  msgstr "وارد و صادر"
1299
 
1300
- #: ../admin/config/maintenance.php:340
1301
  msgid ""
1302
  "Here below you can find the current configuration string for Slimstat. You "
1303
  "can update your settings by pasting a new string inside the text area and "
1304
  "clicking the Import button."
1305
  msgstr ""
1306
 
1307
- #: ../admin/config/maintenance.php:345
1308
  msgid "Import"
1309
  msgstr "واردات"
1310
 
1311
- #: ../admin/config/maintenance.php:346
1312
  msgid "Are you sure you want to OVERWRITE your current settings?"
1313
  msgstr "مطمئنید می‌خواهید تنظیمات را بازنشانی کنید؟"
1314
 
1315
- #: ../admin/config/maintenance.php:351
1316
  msgid "Database Information"
1317
  msgstr "اطلاعات پایگاه داده"
1318
 
1319
- #: ../admin/config/maintenance.php:354
1320
  msgid "Engine"
1321
  msgstr "موتور"
1322
 
1323
- #: ../admin/config/maintenance.php:358
1324
  msgid "switch to InnoDB"
1325
  msgstr "تغییر حالت به InnoDB"
1326
 
1327
- #: ../admin/config/maintenance.php:369
1328
  msgid "records"
1329
  msgstr "اطلاعات"
1330
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1331
  #: ../admin/view/index.php:26
1332
  msgid "is between (x,y)"
1333
  msgstr ""
@@ -1336,11 +1358,11 @@ msgstr ""
1336
  msgid "Load"
1337
  msgstr ""
1338
 
1339
- #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1307
1340
  msgid "Today"
1341
  msgstr "امروز‍"
1342
 
1343
- #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1310
1344
  msgid "Yesterday"
1345
  msgstr "دیروز"
1346
 
@@ -1406,6 +1428,31 @@ msgid ""
1406
  "country of origin."
1407
  msgstr ""
1408
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1409
  #: ../admin/view/right-now.php:12
1410
  msgid "Human"
1411
  msgstr "انسان"
@@ -1422,8 +1469,8 @@ msgstr "همراه"
1422
  msgid "Syndication Reader"
1423
  msgstr "پیوند ریدر"
1424
 
1425
- #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:939
1426
- #: ../admin/view/wp-slimstat-reports.php:1616
1427
  msgid "No data to display"
1428
  msgstr "داده‌ای برای نمایش نیست"
1429
 
@@ -1432,68 +1479,80 @@ msgid "Date and Time"
1432
  msgstr "روز و ساعت"
1433
 
1434
  # Unknown
1435
- #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:990
1436
- #: ../admin/view/wp-slimstat-reports.php:1730
1437
  msgid "c-"
1438
  msgstr "Unknown"
1439
 
1440
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1441
- #: ../admin/wp-slimstat-admin.php:1009 ../admin/wp-slimstat-admin.php:1049
1442
  msgid "Originating IP"
1443
  msgstr "آی‌پی منشا"
1444
 
1445
- #: ../admin/view/right-now.php:142
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1446
  msgid "Server Latency and Page Speed in milliseconds"
1447
  msgstr ""
1448
 
1449
- #: ../admin/view/right-now.php:142
1450
  msgid "SL"
1451
  msgstr ""
1452
 
1453
- #: ../admin/view/right-now.php:142
1454
  msgid "PS"
1455
  msgstr ""
1456
 
1457
- #: ../admin/view/right-now.php:148
1458
  msgid "Time spent on this page in seconds"
1459
  msgstr ""
1460
 
1461
- #: ../admin/view/right-now.php:160 ../admin/view/wp-slimstat-reports.php:1087
1462
- #: ../admin/view/wp-slimstat-reports.php:1091
1463
- msgid "Open this URL in a new window"
1464
- msgstr "نشانی را در پنجره جدید باز کن"
1465
-
1466
- #: ../admin/view/right-now.php:163
1467
- msgid "Local search results page"
1468
- msgstr "صفحه نتایج جستجوی محلی"
1469
-
1470
- #: ../admin/view/right-now.php:171 ../admin/view/wp-slimstat-db.php:42
1471
- #: ../admin/wp-slimstat-admin.php:1012 ../admin/wp-slimstat-admin.php:1028
1472
- msgid "Search Terms"
1473
- msgstr "عبارت‌های جستجو"
1474
-
1475
- #: ../admin/view/right-now.php:177
1476
  msgid "Open this referrer in a new window"
1477
  msgstr "این ارجاعی دهنده را در پنجره جدید باز کن"
1478
 
1479
- #: ../admin/view/right-now.php:178
1480
  msgid "Open this outbound link in a new window"
1481
  msgstr " پیوندهای بیرونی را در پنجره جدید باز کن"
1482
 
1483
- #: ../admin/view/right-now.php:179
1484
  msgid "Content Type"
1485
  msgstr " نوع محتوا"
1486
 
1487
- #: ../admin/view/right-now.php:182
1488
  #, fuzzy
1489
  msgid "Delete this pageview"
1490
  msgstr "حذف بازدید‌ها وقتی"
1491
 
1492
- #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:1025
 
 
 
 
 
 
 
 
 
 
1493
  msgid "Browser"
1494
  msgstr "مرورگر"
1495
 
1496
- #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:1026
1497
  msgid "Country Code"
1498
  msgstr "علامت کشور"
1499
 
@@ -1501,29 +1560,29 @@ msgstr "علامت کشور"
1501
  msgid "IP Address"
1502
  msgstr "نشانی آی‌پی"
1503
 
1504
- #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:1029
1505
  msgid "Language Code"
1506
  msgstr "علامت زبان"
1507
 
1508
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1509
- #: ../admin/wp-slimstat-admin.php:1030
1510
  msgid "Operating System"
1511
  msgstr "سامانه عامل"
1512
 
1513
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1514
- #: ../admin/wp-slimstat-admin.php:1031
1515
  msgid "Permalink"
1516
  msgstr "پیوند یکتا"
1517
 
1518
- #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:1032
1519
  msgid "Referer"
1520
  msgstr "ارجاع‌دهنده"
1521
 
1522
- #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:1033
1523
  msgid "Visitor's Name"
1524
  msgstr "نام بیننده"
1525
 
1526
- #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:1015
1527
  msgid "Outbound Link"
1528
  msgstr "پیوند بیرونی"
1529
 
@@ -1536,19 +1595,19 @@ msgid "-- Advanced filters --"
1536
  msgstr "-- فیلترهای پیش‌رفته --"
1537
 
1538
  #: ../admin/view/wp-slimstat-db.php:52
1539
- #: ../admin/view/wp-slimstat-reports.php:336
1540
  msgid "Browser Capabilities"
1541
  msgstr "قابلیت‌های مرورگر"
1542
 
1543
- #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:1044
1544
  msgid "Browser Version"
1545
  msgstr "نسخه مرورگر"
1546
 
1547
- #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:1045
1548
  msgid "Browser Type"
1549
  msgstr "نوع مرورگر"
1550
 
1551
- #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:1014
1552
  msgid "User Agent"
1553
  msgstr "مرورگرهای کاربران"
1554
 
@@ -1561,15 +1620,15 @@ msgstr "حاشیه نمودار"
1561
  msgid "Server Latency"
1562
  msgstr ""
1563
 
1564
- #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:1047
1565
  msgid "Post Author"
1566
  msgstr "نویسنده مطلب"
1567
 
1568
- #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:1048
1569
  msgid "Post Category ID"
1570
  msgstr "شناسه دسته‌بندی مطلب"
1571
 
1572
- #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:1050
1573
  msgid "Resource Content Type"
1574
  msgstr "نوع محتوای منبع"
1575
 
@@ -1590,7 +1649,7 @@ msgstr "ابعاد صفحه نمایش"
1590
  msgid "Viewport Size"
1591
  msgstr ""
1592
 
1593
- #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:1052
1594
  msgid "Visit ID"
1595
  msgstr "شناسه دیدن"
1596
 
@@ -1637,7 +1696,7 @@ msgid "Event ID"
1637
  msgstr ""
1638
 
1639
  #: ../admin/view/wp-slimstat-db.php:96
1640
- #: ../admin/view/wp-slimstat-reports.php:1630
1641
  msgid "Type"
1642
  msgstr ""
1643
 
@@ -1660,141 +1719,151 @@ msgstr "توضیحات"
1660
  msgid "Offset"
1661
  msgstr ""
1662
 
1663
- #: ../admin/view/wp-slimstat-reports.php:20 ../admin/wp-slimstat-admin.php:649
1664
- #: ../wp-slimstat.php:1783
1665
  msgid "Access Log"
1666
  msgstr ""
1667
 
1668
- #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:650
1669
- #: ../admin/wp-slimstat-admin.php:665 ../wp-slimstat.php:1784
1670
  msgid "Overview"
1671
  msgstr "مرور"
1672
 
1673
- #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:651
1674
- #: ../admin/wp-slimstat-admin.php:666 ../wp-slimstat.php:1785
1675
  msgid "Audience"
1676
  msgstr ""
1677
 
1678
- #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:652
1679
- #: ../admin/wp-slimstat-admin.php:667 ../wp-slimstat.php:1786
1680
  msgid "Site Analysis"
1681
  msgstr ""
1682
 
1683
- #: ../admin/view/wp-slimstat-reports.php:24
1684
- #: ../admin/view/wp-slimstat-reports.php:461
1685
- #: ../admin/wp-slimstat-admin.php:653 ../admin/wp-slimstat-admin.php:668
1686
- #: ../wp-slimstat.php:1787
1687
  msgid "Traffic Sources"
1688
  msgstr "منابع ترافیک"
1689
 
1690
- #: ../admin/view/wp-slimstat-reports.php:25 ../admin/wp-slimstat-admin.php:654
1691
- #: ../admin/wp-slimstat-admin.php:669 ../wp-slimstat.php:1788
1692
- msgid "Map Overlay"
1693
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
1694
 
1695
- #: ../admin/view/wp-slimstat-reports.php:74
1696
  msgid "Chart controls"
1697
  msgstr "کنترل‌های نمودار"
1698
 
1699
- #: ../admin/view/wp-slimstat-reports.php:74
1700
  msgid "Use your mouse wheel to zoom in and out"
1701
  msgstr "از غلطانک موش‌واره برای بزرگ‌نمایی و کوچک‌نمایی استفاده کنید"
1702
 
1703
- #: ../admin/view/wp-slimstat-reports.php:74
1704
  msgid "While zooming in, drag the chart to move to a different area"
1705
  msgstr ""
1706
  "زمانی‌که بزرگ‌نمایی می‌کنید، نمودار را می‌توانید بکشید و به نقاط دیگر بروید"
1707
 
1708
- #: ../admin/view/wp-slimstat-reports.php:74
1709
- msgid "Double click on an empty region to reset the zoom level"
1710
- msgstr "بر یک ناحیه خالی دوبار کلیک کنید تا بزرگنمایی به حالت اولیه بازگردد"
1711
-
1712
- #: ../admin/view/wp-slimstat-reports.php:77
1713
- msgid ""
1714
- "Social Sharing Analytics <a href=\"http://getsocial.io/?utm_source=slimstat"
1715
- "\">powered by GetSocial</a>"
1716
  msgstr ""
1717
 
1718
- #: ../admin/view/wp-slimstat-reports.php:84
1719
  #, fuzzy
1720
  msgid "Visitors Activity"
1721
  msgstr "فهرست فعالیت ها"
1722
 
1723
- #: ../admin/view/wp-slimstat-reports.php:93
1724
  msgid "Color codes"
1725
  msgstr "علامت رنگی"
1726
 
1727
- #: ../admin/view/wp-slimstat-reports.php:93
1728
  #, fuzzy
1729
  msgid "From search result page"
1730
  msgstr "از صفحه نتایج جستجو"
1731
 
1732
- #: ../admin/view/wp-slimstat-reports.php:93
1733
- #: ../admin/wp-slimstat-admin.php:1007
1734
  msgid "Known Visitor"
1735
  msgstr "بیننده آشنا"
1736
 
1737
- #: ../admin/view/wp-slimstat-reports.php:93
1738
  msgid "Known Users"
1739
  msgstr "کاربران آشنا"
1740
 
1741
- #: ../admin/view/wp-slimstat-reports.php:93
1742
  msgid "Other Humans"
1743
  msgstr "دیگران"
1744
 
1745
- #: ../admin/view/wp-slimstat-reports.php:93
1746
  msgid "Bot or Crawler"
1747
  msgstr "روبات یا خزنده"
1748
 
1749
- #: ../admin/view/wp-slimstat-reports.php:107
1750
  #, fuzzy
1751
  msgid "About Slimstat"
1752
  msgstr "درباره WP SlimStat"
1753
 
1754
- #: ../admin/view/wp-slimstat-reports.php:117
1755
  #, fuzzy
1756
  msgid "Traffic at a Glance"
1757
  msgstr "در یک نگاه"
1758
 
1759
- #: ../admin/view/wp-slimstat-reports.php:127
1760
  msgid "Currently Online"
1761
  msgstr "حالا روی خط"
1762
 
1763
- #: ../admin/view/wp-slimstat-reports.php:140
1764
  msgid "Recent Search Terms"
1765
  msgstr "عبارت‌های جستجو شده اخیر"
1766
 
1767
- #: ../admin/view/wp-slimstat-reports.php:150
1768
  msgid "Keywords used by your visitors to find your website on a search engine."
1769
  msgstr "عبارات کلیدی در موتورهای جستجو که بیننده را به پایگاه شما را یافته‌اند."
1770
 
1771
- #: ../admin/view/wp-slimstat-reports.php:153
1772
- msgid "Top Pages"
 
1773
  msgstr "برترین صفحات"
1774
 
1775
- #: ../admin/view/wp-slimstat-reports.php:164
1776
  msgid ""
1777
- "Here a \"page\" is not just a WordPress page type, but any web page on your "
1778
- "website, including posts, products, categories, and so on."
 
 
 
1779
  msgstr ""
1780
 
1781
- #: ../admin/view/wp-slimstat-reports.php:167
1782
  msgid "Top Traffic Sources"
1783
  msgstr "برترین منابع ترافیک"
1784
 
1785
- #: ../admin/view/wp-slimstat-reports.php:179
1786
  msgid "Top Known Visitors"
1787
  msgstr "برترین بیننده های آشنا"
1788
 
1789
- #: ../admin/view/wp-slimstat-reports.php:190
1790
  msgid "Top Search Terms"
1791
  msgstr "برترین عبارت های جستجو"
1792
 
1793
- #: ../admin/view/wp-slimstat-reports.php:201
1794
  msgid "Top Countries"
1795
  msgstr "برترین کشورها"
1796
 
1797
- #: ../admin/view/wp-slimstat-reports.php:210
1798
  #, fuzzy
1799
  msgid ""
1800
  "You can configure Slimstat to ignore a specific Country by setting the "
@@ -1803,11 +1872,11 @@ msgstr ""
1803
  "میتوانید تنظیمات برنامه برای نادیده گرفتن بعضی کشورها را تغییر دهید:Settings "
1804
  "> SlimStat > Filters"
1805
 
1806
- #: ../admin/view/wp-slimstat-reports.php:213
1807
  msgid "Rankings"
1808
  msgstr "رتبه ها"
1809
 
1810
- #: ../admin/view/wp-slimstat-reports.php:217
1811
  #, fuzzy
1812
  msgid ""
1813
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
@@ -1817,16 +1886,16 @@ msgstr ""
1817
  "با کسب اطلاعات خود از Google، Facebook و یا Alexa، رتبه خود را محک بزنید. "
1818
  "مقادیر هر ۱۲ ساعت به روز میشوند. صافی ها بالا در این گزارش کاربرد نمیشوند. "
1819
 
1820
- #: ../admin/view/wp-slimstat-reports.php:220
1821
  msgid "Top Language Families"
1822
  msgstr "برترین زبان‌ها"
1823
 
1824
- #: ../admin/view/wp-slimstat-reports.php:233
1825
  #, fuzzy
1826
  msgid "Users Currently Online"
1827
  msgstr "حالا روی خط"
1828
 
1829
- #: ../admin/view/wp-slimstat-reports.php:244
1830
  #, fuzzy
1831
  msgid ""
1832
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
@@ -1837,35 +1906,45 @@ msgstr ""
1837
  "WP SlimStat از این اطلاعات برای شناسایی «بیننده دوباره» استفاده میکند. در "
1838
  "نظر داشته باشید که بیننده ها شامل کاربران ثبت شده نیز میباشد."
1839
 
1840
- #: ../admin/view/wp-slimstat-reports.php:248
 
 
 
 
 
1841
  msgid "Human Visits"
1842
  msgstr "بازدیدهای انسانی"
1843
 
1844
- #: ../admin/view/wp-slimstat-reports.php:258
 
 
 
 
 
1845
  #, fuzzy
1846
  msgid "Audience Overview"
1847
  msgstr "مرور"
1848
 
1849
- #: ../admin/view/wp-slimstat-reports.php:265
1850
  msgid ""
1851
  "Where not otherwise specified, the metrics in this report are referred to "
1852
  "human visitors."
1853
  msgstr ""
1854
 
1855
- #: ../admin/view/wp-slimstat-reports.php:268
1856
  msgid "Top Languages"
1857
  msgstr "بیش‌ترین زبان‌ها"
1858
 
1859
- #: ../admin/view/wp-slimstat-reports.php:279
1860
  msgid "Top Browsers"
1861
  msgstr "برترین مرورگرها"
1862
 
1863
- #: ../admin/view/wp-slimstat-reports.php:290
1864
  msgid "Top Service Providers"
1865
  msgstr "برترین خدمات دهنده‌ها"
1866
 
1867
- #: ../admin/view/wp-slimstat-reports.php:299
1868
- #: ../admin/view/wp-slimstat-reports.php:311
1869
  #, fuzzy
1870
  msgid ""
1871
  "Internet Service Provider: a company which provides other companies or "
@@ -1876,55 +1955,55 @@ msgstr ""
1876
  "اینترنت توسط یک شرکت خدماتی (ISP) برای شما فراهم میشود. میتوانید این نشانی "
1877
  "ای پی را با وارد کردن صافی نادیده بگیرید."
1878
 
1879
- #: ../admin/view/wp-slimstat-reports.php:302
1880
  msgid "Top Operating Systems"
1881
  msgstr "برترین محیط‌های عامل"
1882
 
1883
- #: ../admin/view/wp-slimstat-reports.php:314
1884
  msgid "Top Screen Resolutions"
1885
  msgstr "برترین ابعاد صفحه نماش‌ها"
1886
 
1887
- #: ../admin/view/wp-slimstat-reports.php:325
1888
  #, fuzzy
1889
  msgid "Top Viewport Sizes"
1890
  msgstr "برترین دسته‌ها"
1891
 
1892
- #: ../admin/view/wp-slimstat-reports.php:345
1893
  msgid "Visit Duration"
1894
  msgstr "طول دوره بازدید"
1895
 
1896
- #: ../admin/view/wp-slimstat-reports.php:352
1897
  msgid ""
1898
  "All values represent the percentages of pageviews within the corresponding "
1899
  "time range."
1900
  msgstr ""
1901
 
1902
- #: ../admin/view/wp-slimstat-reports.php:355
1903
  msgid "Recent Countries"
1904
  msgstr "کشورهای اخیر"
1905
 
1906
- #: ../admin/view/wp-slimstat-reports.php:366
1907
  #, fuzzy
1908
  msgid "Recent Viewport Sizes"
1909
  msgstr "دسته‌های اخیر"
1910
 
1911
- #: ../admin/view/wp-slimstat-reports.php:377
1912
  msgid "Recent Operating Systems"
1913
  msgstr "محیطهای عامل اخیر"
1914
 
1915
- #: ../admin/view/wp-slimstat-reports.php:388
1916
  msgid "Recent Browsers"
1917
  msgstr "مرورگرهای اخیر"
1918
 
1919
- #: ../admin/view/wp-slimstat-reports.php:399
1920
  msgid "Recent Languages"
1921
  msgstr "زبان‌های اخیر"
1922
 
1923
- #: ../admin/view/wp-slimstat-reports.php:410
1924
  msgid "Top Browser Families"
1925
  msgstr "برترین مرورگرها"
1926
 
1927
- #: ../admin/view/wp-slimstat-reports.php:419
1928
  msgid ""
1929
  "This report shows you what user agent families (no version considered) are "
1930
  "popular among your visitors."
@@ -1932,11 +2011,11 @@ msgstr ""
1932
  "این گزارش نشانگر عامل کابر (بدون در نظر گرفتن نسخه) که در میان بیننده ها "
1933
  "محبوب تر هستند میباشد."
1934
 
1935
- #: ../admin/view/wp-slimstat-reports.php:422
1936
  msgid "Top OS Families"
1937
  msgstr "برترین محیط عامل ها"
1938
 
1939
- #: ../admin/view/wp-slimstat-reports.php:433
1940
  msgid ""
1941
  "This report shows you what operating system families (no version considered) "
1942
  "are popular among your visitors."
@@ -1944,68 +2023,82 @@ msgstr ""
1944
  "این گزارش نشانگر محیط عامل هایی (بدون در نظر گرفتن نسخه) که در میان بیننده "
1945
  "ها محبوب تر هستند میباشد."
1946
 
1947
- #: ../admin/view/wp-slimstat-reports.php:436
1948
  msgid "Recent Users"
1949
  msgstr "کاربرهای اخیر"
1950
 
1951
- #: ../admin/view/wp-slimstat-reports.php:448
1952
  msgid "Top Users"
1953
  msgstr "برترین کاربرها"
1954
 
1955
- #: ../admin/view/wp-slimstat-reports.php:471
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1956
  #, fuzzy
1957
  msgid "Traffic Summary"
1958
  msgstr "منابع ترافیک"
1959
 
1960
- #: ../admin/view/wp-slimstat-reports.php:480
1961
  msgid "Top Referring Search Engines"
1962
  msgstr "برترین موتور جستجو های ارجاع‌دهنده"
1963
 
1964
- #: ../admin/view/wp-slimstat-reports.php:507
1965
  msgid "Recent Outbound Links"
1966
  msgstr "پیوندهای بیرونی اخیر"
1967
 
1968
- #: ../admin/view/wp-slimstat-reports.php:519
1969
  msgid "Recent Posts"
1970
  msgstr "ارسال های اخیر"
1971
 
1972
- #: ../admin/view/wp-slimstat-reports.php:547
1973
  msgid "Recent Feeds"
1974
  msgstr "خوراک‌های اخیر"
1975
 
1976
- #: ../admin/view/wp-slimstat-reports.php:559
1977
  msgid "Recent Pages Not Found"
1978
  msgstr "صفحه هایی پیدا نشده اخیر"
1979
 
1980
- #: ../admin/view/wp-slimstat-reports.php:571
1981
  msgid "Recent Internal Searches"
1982
  msgstr "جستجوهای داخلی اخیر"
1983
 
1984
- #: ../admin/view/wp-slimstat-reports.php:581
1985
  #, fuzzy
1986
  msgid "Searches performed using WordPress' built-in search functionality."
1987
  msgstr "جستجوهایی که توسط جستجوی داخلی Wordpress انجام میشوند."
1988
 
1989
- #: ../admin/view/wp-slimstat-reports.php:584
1990
  msgid "Top Categories"
1991
  msgstr "برترین دسته‌ها"
1992
 
1993
- #: ../admin/view/wp-slimstat-reports.php:597
1994
  #, fuzzy
1995
  msgid "Top Downloads"
1996
  msgstr "بارگیری های اخیر"
1997
 
1998
- #: ../admin/view/wp-slimstat-reports.php:608
1999
  msgid ""
2000
  "You can configure Slimstat to track specific file extensions as downloads."
2001
  msgstr ""
2002
 
2003
- #: ../admin/view/wp-slimstat-reports.php:611
2004
  msgid "Recent Events"
2005
  msgstr "اتفاقات اخیر"
2006
 
2007
- #: ../admin/view/wp-slimstat-reports.php:620
2008
- #: ../admin/view/wp-slimstat-reports.php:644
2009
  #, fuzzy
2010
  msgid ""
2011
  "This report lists any <em>event</em> occurred on your website. Please refer "
@@ -2014,49 +2107,49 @@ msgstr ""
2014
  "این گزارش تمامی رویداد های پایگاه شما را فهرست میکند. لطفا برای کسب اطلاع "
2015
  "بیشتر در این مورد به بخش پرسش و پاسخ مراجعه کنید."
2016
 
2017
- #: ../admin/view/wp-slimstat-reports.php:623
2018
  msgid "Top Posts"
2019
  msgstr "برترین ارسال ها"
2020
 
2021
- #: ../admin/view/wp-slimstat-reports.php:635
2022
  #, fuzzy
2023
  msgid "Top Events"
2024
  msgstr "برترین صفحات"
2025
 
2026
- #: ../admin/view/wp-slimstat-reports.php:647
2027
  msgid "Top Internal Searches"
2028
  msgstr "برترین جستجوهای داخلی"
2029
 
2030
- #: ../admin/view/wp-slimstat-reports.php:659
2031
  msgid "Recent Categories"
2032
  msgstr "دسته‌های اخیر"
2033
 
2034
- #: ../admin/view/wp-slimstat-reports.php:671
2035
  msgid "Top Pages Not Found"
2036
  msgstr "برترین صفحاتی که پیدا نشد"
2037
 
2038
- #: ../admin/view/wp-slimstat-reports.php:683
2039
  msgid "Top Authors"
2040
  msgstr "برترین نویسنده‌ها"
2041
 
2042
- #: ../admin/view/wp-slimstat-reports.php:694
2043
  msgid "Top Tags"
2044
  msgstr "برترین نشانه ها"
2045
 
2046
- #: ../admin/view/wp-slimstat-reports.php:706
2047
  msgid "Recent Downloads"
2048
  msgstr "بارگیری های اخیر"
2049
 
2050
- #: ../admin/view/wp-slimstat-reports.php:718
2051
  #, fuzzy
2052
  msgid "Top Outbound Links"
2053
  msgstr "پیوند بیرونی"
2054
 
2055
- #: ../admin/view/wp-slimstat-reports.php:729
2056
  msgid "Your Website"
2057
  msgstr "تارنمای شما"
2058
 
2059
- #: ../admin/view/wp-slimstat-reports.php:736
2060
  msgid ""
2061
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2062
  "this report is not affected by the filters set here above."
@@ -2064,133 +2157,129 @@ msgstr ""
2064
  "محتوای شما در یک نگاه: ارسال ها، نظرها و غیره. این گزارش با صافی های بالا "
2065
  "کاربرد نمیشود."
2066
 
2067
- #: ../admin/view/wp-slimstat-reports.php:739
2068
  #, fuzzy
2069
  msgid "Top Bounce Pages"
2070
  msgstr "صفحات وازده"
2071
 
2072
- #: ../admin/view/wp-slimstat-reports.php:752
2073
  #, fuzzy
2074
  msgid "Top Exit Pages"
2075
  msgstr "برترین صفحات"
2076
 
2077
- #: ../admin/view/wp-slimstat-reports.php:765
2078
  #, fuzzy
2079
  msgid "Top Entry Pages"
2080
  msgstr "برترین صفحات"
2081
 
2082
- #: ../admin/view/wp-slimstat-reports.php:779
 
 
 
 
 
 
 
 
 
 
2083
  msgid "World Map"
2084
  msgstr "نقشه جهان"
2085
 
2086
- #: ../admin/view/wp-slimstat-reports.php:852
2087
  msgid "Refresh"
2088
  msgstr "تازه سازی"
2089
 
2090
- #: ../admin/view/wp-slimstat-reports.php:889
2091
  #, php-format
2092
  msgid "Results %s - %s of %s"
2093
  msgstr " نتایج %s - %s از %s"
2094
 
2095
- #: ../admin/view/wp-slimstat-reports.php:891
2096
  msgid "Refresh in"
2097
  msgstr "تازه سازی در"
2098
 
2099
- #: ../admin/view/wp-slimstat-reports.php:984
2100
  msgid "Category ID"
2101
  msgstr "شناسه دسته"
2102
 
2103
- #: ../admin/view/wp-slimstat-reports.php:989
2104
- #: ../admin/view/wp-slimstat-reports.php:1004
2105
- #: ../admin/view/wp-slimstat-reports.php:1010
2106
  #, fuzzy
2107
  msgid "Code"
2108
  msgstr "کد محیط عامل"
2109
 
2110
- #: ../admin/view/wp-slimstat-reports.php:1005
2111
- #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1424
2112
  msgid "l-"
2113
  msgstr ""
2114
 
2115
- #: ../admin/view/wp-slimstat-reports.php:1022
2116
  msgid "URL"
2117
  msgstr ""
2118
 
2119
- #: ../admin/view/wp-slimstat-reports.php:1035
2120
  msgid "Referrer"
2121
  msgstr "ارجاع دهنده"
2122
 
2123
- #: ../admin/view/wp-slimstat-reports.php:1076
2124
- #: ../admin/view/wp-slimstat-reports.php:1325
2125
- #: ../admin/view/wp-slimstat-reports.php:1381
2126
- #: ../admin/view/wp-slimstat-reports.php:1387
2127
- #: ../admin/view/wp-slimstat-reports.php:1393
2128
- #: ../admin/view/wp-slimstat-reports.php:1399
2129
- #: ../admin/view/wp-slimstat-reports.php:1405
2130
- #: ../admin/view/wp-slimstat-reports.php:1411
2131
- #: ../admin/view/wp-slimstat-reports.php:1417
2132
- #: ../admin/view/wp-slimstat-reports.php:1637
2133
  msgid "Hits"
2134
  msgstr "بازدیدها"
2135
 
2136
- #: ../admin/view/wp-slimstat-reports.php:1129
2137
- #: ../admin/view/wp-slimstat-reports.php:1341
2138
- msgid "Visits"
2139
- msgstr "بازدیدها"
2140
-
2141
- #: ../admin/view/wp-slimstat-reports.php:1134
2142
- msgid "Domains"
2143
- msgstr "دامنه‌ها"
2144
-
2145
- #: ../admin/view/wp-slimstat-reports.php:1252
2146
  #, fuzzy
2147
  msgid "Dataset Size"
2148
  msgstr "اندازه پایگاه داده"
2149
 
2150
- #: ../admin/view/wp-slimstat-reports.php:1254
2151
  msgid "Total number of records stored in the database."
2152
  msgstr ""
2153
 
2154
- #: ../admin/view/wp-slimstat-reports.php:1256
2155
  msgid "DB Size"
2156
  msgstr "اندازه پایگاه داده"
2157
 
2158
- #: ../admin/view/wp-slimstat-reports.php:1259
2159
  #, fuzzy
2160
  msgid "Tracking Enabled"
2161
  msgstr " حالت ردگیری"
2162
 
2163
- #: ../admin/view/wp-slimstat-reports.php:1262
2164
  msgid "Javascript Mode"
2165
  msgstr "فعال سازی حالت جاوااسکریپت"
2166
 
2167
- #: ../admin/view/wp-slimstat-reports.php:1265
2168
  msgid "Tracking Browser Caps"
2169
  msgstr "ردگیری قابلیت‌های مرورگر"
2170
 
2171
- #: ../admin/view/wp-slimstat-reports.php:1268
2172
  msgid "Auto purge"
2173
  msgstr "پاک‌سازی خودکار"
2174
 
2175
- #: ../admin/view/wp-slimstat-reports.php:1271
2176
  msgid "Oldest pageview"
2177
  msgstr "قدیمی‌ترین بازدید"
2178
 
2179
- #: ../admin/view/wp-slimstat-reports.php:1272
2180
  msgid "No visits"
2181
  msgstr "بازدیدی نیست"
2182
 
2183
- #: ../admin/view/wp-slimstat-reports.php:1274
2184
- #, fuzzy
2185
- msgid "Geolocation"
2186
- msgstr "به‌روزآوری پایگاه داده مکان‌یابی"
2187
-
2188
- #: ../admin/view/wp-slimstat-reports.php:1276
2189
  msgid "Date when the MaxMind Geolocation database was last updated."
2190
  msgstr ""
2191
 
2192
- #: ../admin/view/wp-slimstat-reports.php:1287
2193
- #: ../admin/view/wp-slimstat-reports.php:1445
2194
  #, fuzzy
2195
  msgid ""
2196
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
@@ -2198,34 +2287,34 @@ msgid ""
2198
  msgstr ""
2199
  "درخواست بارگیری یک پرونده زنگام. هر اجرای ردگیری منجر به ثبت یک بازید میشود."
2200
 
2201
- #: ../admin/view/wp-slimstat-reports.php:1289
2202
  #, fuzzy
2203
  msgid "Days in Range"
2204
  msgstr "محدوده زمانی"
2205
 
2206
- #: ../admin/view/wp-slimstat-reports.php:1292
2207
  #, fuzzy
2208
  msgid "Average Daily Pageviews"
2209
  msgstr "میان‌گین مشاهده صفحات"
2210
 
2211
- #: ../admin/view/wp-slimstat-reports.php:1294
2212
  #, fuzzy
2213
  msgid ""
2214
  "How many pages have been visited on average every day during the current "
2215
  "period."
2216
  msgstr "چند صفحه به طور میانگین در "
2217
 
2218
- #: ../admin/view/wp-slimstat-reports.php:1296
2219
  msgid "From Search Results"
2220
  msgstr "از نتایج جستجو"
2221
 
2222
- #: ../admin/view/wp-slimstat-reports.php:1298
2223
  msgid ""
2224
  "Visitors who landed on your site after searching for a keyword on Google, "
2225
  "Yahoo, etc."
2226
  msgstr "کاربرانی که بعد از جستجو در موتورهای جستجو به سایت شما رسیده‌اند."
2227
 
2228
- #: ../admin/view/wp-slimstat-reports.php:1302
2229
  msgid ""
2230
  "Used to differentiate between multiple requests to download a file from one "
2231
  "internet address (IP) and requests originating from many distinct addresses"
@@ -2233,11 +2322,11 @@ msgstr ""
2233
  " این برای تشخیص دادن چندین درخواست بارگیری پرونده از یک آی پی ادرس و یا "
2234
  "درخواست از چند آی پی ادرس مختلف است."
2235
 
2236
- #: ../admin/view/wp-slimstat-reports.php:1304
2237
  msgid "Last 30 minutes"
2238
  msgstr "۳۰ دقیقه اخیر"
2239
 
2240
- #: ../admin/view/wp-slimstat-reports.php:1343
2241
  msgid ""
2242
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2243
  "multiple times if they perform multiple visits."
@@ -2245,101 +2334,102 @@ msgstr ""
2245
  "هر بازدید یک جلسه است که حداکثر ۳۰ دقیقه میباشد. «بیننده دوباره» چند بار "
2246
  "شمارش میشود اگر چند بار بازدید کنند."
2247
 
2248
- #: ../admin/view/wp-slimstat-reports.php:1347
2249
  msgid "It includes only traffic generated by human visitors."
2250
  msgstr "فقط شامل ترافیک انسانی میشود"
2251
 
2252
- #: ../admin/view/wp-slimstat-reports.php:1349
2253
  msgid "Bounce rate"
2254
  msgstr "میزان وازده گی"
2255
 
2256
- #: ../admin/view/wp-slimstat-reports.php:1351
2257
  msgid ""
2258
  "Percentage of single-page visits, i.e. visits in which the person left your "
2259
  "site from the entrance page."
2260
  msgstr "درصد بازدید «تک-صفحه» ها؛ یعنی بازدیدی که فقط «صفحه ورودی» بود."
2261
 
2262
- #: ../admin/view/wp-slimstat-reports.php:1353
2263
  msgid "Known visitors"
2264
  msgstr "بیننده های آشنا"
2265
 
2266
- #: ../admin/view/wp-slimstat-reports.php:1355
2267
  msgid "Visitors who had previously left a comment on your blog."
2268
  msgstr "بازدیدکنندگانی که قبلا در تارنامه نظر ثبت کرده‌اند"
2269
 
2270
- #: ../admin/view/wp-slimstat-reports.php:1357
2271
  msgid "New visitors"
2272
  msgstr "بازدیدکنندگان جدید"
2273
 
2274
- #: ../admin/view/wp-slimstat-reports.php:1359
2275
  msgid "Human users who visited your site only once."
2276
  msgstr "کاربرانی که فقط یک بار پایگاه شما را دیده‌اند."
2277
 
2278
- #: ../admin/view/wp-slimstat-reports.php:1361
2279
  msgid "Bots"
2280
  msgstr "ربات‌ها"
2281
 
2282
- #: ../admin/view/wp-slimstat-reports.php:1364
2283
- msgid "Pages per visit"
 
2284
  msgstr "صفحات در بازدید"
2285
 
2286
- #: ../admin/view/wp-slimstat-reports.php:1367
2287
  msgid "Longest visit"
2288
  msgstr "طولانی‌ترین مشاهده صفحات"
2289
 
2290
- #: ../admin/view/wp-slimstat-reports.php:1368
2291
  msgid "hits"
2292
  msgstr "مشاهدات"
2293
 
2294
- #: ../admin/view/wp-slimstat-reports.php:1379
2295
  msgid "0 - 30 seconds"
2296
  msgstr "۰ تا ۳۰ ثانیه"
2297
 
2298
- #: ../admin/view/wp-slimstat-reports.php:1385
2299
  msgid "31 - 60 seconds"
2300
  msgstr "۳۱ تا ۶۰ ثانیه"
2301
 
2302
- #: ../admin/view/wp-slimstat-reports.php:1391
2303
  msgid "1 - 3 minutes"
2304
  msgstr "۱ تا ۳ دقیقه"
2305
 
2306
- #: ../admin/view/wp-slimstat-reports.php:1397
2307
  msgid "3 - 5 minutes"
2308
  msgstr "۳ تا ۵ دقیقه"
2309
 
2310
- #: ../admin/view/wp-slimstat-reports.php:1403
2311
  msgid "5 - 7 minutes"
2312
  msgstr "۵ تا ۷ دقیقه"
2313
 
2314
- #: ../admin/view/wp-slimstat-reports.php:1409
2315
  msgid "7 - 10 minutes"
2316
  msgstr "۷ تا ۱۰ دقیقه"
2317
 
2318
- #: ../admin/view/wp-slimstat-reports.php:1415
2319
  msgid "More than 10 minutes"
2320
  msgstr "بیش از ۱۰ دقیقه"
2321
 
2322
- #: ../admin/view/wp-slimstat-reports.php:1427
2323
  #, fuzzy
2324
  msgid "Average visit duration"
2325
  msgstr "طول دوره بازدید"
2326
 
2327
- #: ../admin/view/wp-slimstat-reports.php:1447
2328
  msgid "Unique Referrers"
2329
  msgstr "ارجاع‌دهنده‌های یکتا"
2330
 
2331
- #: ../admin/view/wp-slimstat-reports.php:1449
2332
  msgid ""
2333
  "A referrer (or referring site) is the site that a visitor previously visited "
2334
  "before following a link to your site."
2335
  msgstr ""
2336
  "ارجاع دهنده (یا پایگاه ارجاع دهنده) که بیننده را به پایگاه شما پیوند زده است."
2337
 
2338
- #: ../admin/view/wp-slimstat-reports.php:1451
2339
  msgid "Direct Pageviews"
2340
  msgstr "مشاهده صفحات بی‌واسطه"
2341
 
2342
- #: ../admin/view/wp-slimstat-reports.php:1453
2343
  msgid ""
2344
  "Visitors who visited the site by typing the URL directly into their browser. "
2345
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -2350,21 +2440,21 @@ msgstr ""
2350
  "کاربرانی که با استفاده از bookmarks/favorites، و یا از پیوندهایی در نامک و "
2351
  "مدارک که متغییر ردگیری ندارند نیز بشود."
2352
 
2353
- #: ../admin/view/wp-slimstat-reports.php:1455
2354
  msgid "From a search result"
2355
  msgstr "از نتایج جستجو"
2356
 
2357
- #: ../admin/view/wp-slimstat-reports.php:1457
2358
  msgid ""
2359
  "Visitors who came to your site via searches on Google or some other search "
2360
  "engine."
2361
  msgstr "کاربرانی که از گوگل یا سایر موتورهای جستجو به پایگاه شما آمده‌اند."
2362
 
2363
- #: ../admin/view/wp-slimstat-reports.php:1459
2364
  msgid "Unique Landing Pages"
2365
  msgstr "صفحات فرودی خاص"
2366
 
2367
- #: ../admin/view/wp-slimstat-reports.php:1461
2368
  msgid ""
2369
  "The first page that a user views during a session. This is also known as the "
2370
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -2375,80 +2465,80 @@ msgstr ""
2375
  "به عنوان مثال اگر کاربری برای «بستنی» جستجو کند و در صفحه اصلی شما هدایت "
2376
  "شود، در آن جلسه به عنوان «صفحه ورودی» حساب میشود."
2377
 
2378
- #: ../admin/view/wp-slimstat-reports.php:1463
2379
  msgid "Bounce Pages"
2380
  msgstr "صفحات وازده"
2381
 
2382
- #: ../admin/view/wp-slimstat-reports.php:1465
2383
  #, fuzzy
2384
  msgid "Number of single page visits to your site over the selected period."
2385
  msgstr "تعداد بازدید «تک-صفحه» به پایگاه شما در بازه زمانی انتخاب شده."
2386
 
2387
- #: ../admin/view/wp-slimstat-reports.php:1467
2388
  msgid "New Visitors Rate"
2389
  msgstr "میزان بازدیدکنندگان جدید"
2390
 
2391
- #: ../admin/view/wp-slimstat-reports.php:1469
2392
  #, fuzzy
2393
  msgid ""
2394
  "Percentage of single page visits, i.e. visits in which the person left your "
2395
  "site from the entrance page."
2396
  msgstr "درصد بازدید «تک-صفحه» ها؛ یعنی بازدیدی که فقط «صفحه ورودی» بود."
2397
 
2398
- #: ../admin/view/wp-slimstat-reports.php:1471
2399
  msgid "Currently from search engines"
2400
  msgstr "هم‌اکنون از موتورهای جستجو"
2401
 
2402
- #: ../admin/view/wp-slimstat-reports.php:1473
2403
  msgid ""
2404
  "Visitors who visited the site in the last 5 minutes coming from a search "
2405
  "engine."
2406
  msgstr "کاربرانی که در ۵ دقیقه گذشته از یک موتور جستجو به پایگاه شما آمده‌اند."
2407
 
2408
- #: ../admin/view/wp-slimstat-reports.php:1543
2409
  msgid "Number of pages in your site included in Google's index."
2410
  msgstr "تعداد صفحاتی که در فهرست گوگل شمرده شده است."
2411
 
2412
- #: ../admin/view/wp-slimstat-reports.php:1544
2413
  msgid "Google Index"
2414
  msgstr "اندیس گوگل"
2415
 
2416
- #: ../admin/view/wp-slimstat-reports.php:1545
2417
  msgid "Number of pages, according to Google, that link back to your site."
2418
  msgstr "تعداد صفحات که به گفته گوگل به پایگاه پیوند میدهند. "
2419
 
2420
- #: ../admin/view/wp-slimstat-reports.php:1546
2421
  msgid "Google Backlinks"
2422
  msgstr ""
2423
 
2424
- #: ../admin/view/wp-slimstat-reports.php:1547
2425
  msgid ""
2426
  "How many times the Facebook Like button has been approximately clicked on "
2427
  "your site."
2428
  msgstr "چند بار Facebook Like در پایگاه شما کلیک شده است."
2429
 
2430
- #: ../admin/view/wp-slimstat-reports.php:1548
2431
  msgid "Facebook Likes"
2432
  msgstr "لایک های فیسبوک"
2433
 
2434
- #: ../admin/view/wp-slimstat-reports.php:1549
2435
  msgid ""
2436
  "How many times your site has been shared by someone on the social network."
2437
  msgstr "چند بار پایگاه شما در شبکه های اجتماعی بخش شده است"
2438
 
2439
- #: ../admin/view/wp-slimstat-reports.php:1550
2440
  msgid "Facebook Shares"
2441
  msgstr "بخش های فیسبوک"
2442
 
2443
- #: ../admin/view/wp-slimstat-reports.php:1551
2444
  msgid "How many times links to your website have been clicked on Facebook."
2445
  msgstr "چند بار پایگاه شما در Facebook فشار داده شده است."
2446
 
2447
- #: ../admin/view/wp-slimstat-reports.php:1552
2448
  msgid "Facebook Clicks"
2449
  msgstr "Facebook Clicks"
2450
 
2451
- #: ../admin/view/wp-slimstat-reports.php:1553
2452
  msgid ""
2453
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2454
  "traffic data."
@@ -2456,86 +2546,86 @@ msgstr ""
2456
  "شرکت Alexa بخشی از Amazon.com میباشد که گزارش پایگاه های تبلیغاتی را انجام "
2457
  "میدهد."
2458
 
2459
- #: ../admin/view/wp-slimstat-reports.php:1554
2460
  msgid "Alexa World Rank"
2461
  msgstr ""
2462
 
2463
- #: ../admin/view/wp-slimstat-reports.php:1555
2464
  msgid "Alexa Country Rank"
2465
  msgstr ""
2466
 
2467
- #: ../admin/view/wp-slimstat-reports.php:1556
2468
  msgid "Alexa Popularity"
2469
  msgstr ""
2470
 
2471
- #: ../admin/view/wp-slimstat-reports.php:1567
2472
  msgid "Content Items"
2473
  msgstr " محتوا موردها"
2474
 
2475
- #: ../admin/view/wp-slimstat-reports.php:1569
2476
  msgid ""
2477
  "This value includes not only posts, but also custom post types, regardless "
2478
  "of their status"
2479
  msgstr "این مقدار شامل همه ارسال ها میشود"
2480
 
2481
- #: ../admin/view/wp-slimstat-reports.php:1571
2482
  #, fuzzy
2483
  msgid "Posts"
2484
  msgstr "برترین ارسال ها"
2485
 
2486
- #: ../admin/view/wp-slimstat-reports.php:1574
2487
  #, fuzzy
2488
  msgid "Pages"
2489
  msgstr "برترین صفحات"
2490
 
2491
- #: ../admin/view/wp-slimstat-reports.php:1577
2492
  msgid "Attachments"
2493
  msgstr ""
2494
 
2495
- #: ../admin/view/wp-slimstat-reports.php:1580
2496
  #, fuzzy
2497
  msgid "Revisions"
2498
  msgstr "مجوزها"
2499
 
2500
- #: ../admin/view/wp-slimstat-reports.php:1583
2501
  #, fuzzy
2502
  msgid "Comments"
2503
  msgstr "همه نظرها"
2504
 
2505
- #: ../admin/view/wp-slimstat-reports.php:1586
2506
  #, fuzzy
2507
  msgid "Avg Comments per Post"
2508
  msgstr "میانگین نظر برای هر ارسال"
2509
 
2510
- #: ../admin/view/wp-slimstat-reports.php:1589
2511
  msgid "Avg Server Latency"
2512
  msgstr ""
2513
 
2514
- #: ../admin/view/wp-slimstat-reports.php:1591
2515
  msgid ""
2516
  "Latency is the amount of time it takes for the host server to receive and "
2517
  "process a request for a page object. The amount of latency depends largely "
2518
  "on how far away the user is from the server."
2519
  msgstr ""
2520
 
2521
- #: ../admin/view/wp-slimstat-reports.php:1634
2522
  #, fuzzy
2523
  msgid "Coordinates"
2524
  msgstr " حالت ردگیری"
2525
 
2526
- #: ../admin/view/wp-slimstat-reports.php:1634
2527
  msgid "Date"
2528
  msgstr ""
2529
 
2530
- #: ../admin/view/wp-slimstat-reports.php:1671
2531
  msgid "Error contacting the GetSocial endpoint."
2532
  msgstr ""
2533
 
2534
- #: ../admin/view/wp-slimstat-reports.php:1679
2535
  msgid "Error decoding the GetSocial payload."
2536
  msgstr ""
2537
 
2538
- #: ../admin/view/wp-slimstat-reports.php:1711
2539
  msgid ""
2540
  "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2541
  ">social media metrics and identify your top performing posts.<br/> <a "
@@ -2543,1177 +2633,1179 @@ msgid ""
2543
  msgstr ""
2544
 
2545
  # Unknown
2546
- #: ../admin/view/wp-slimstat-reports.php:1721
2547
  msgid "c-xx"
2548
  msgstr "Unknown"
2549
 
2550
  # Afghanistan
2551
- #: ../admin/view/wp-slimstat-reports.php:1721
2552
  msgid "c-af"
2553
  msgstr "Afghanistan"
2554
 
2555
  # Åland Islands
2556
- #: ../admin/view/wp-slimstat-reports.php:1721
2557
  msgid "c-ax"
2558
  msgstr "Aland Islands"
2559
 
2560
  # Albania
2561
- #: ../admin/view/wp-slimstat-reports.php:1721
2562
  msgid "c-al"
2563
  msgstr "Albania"
2564
 
2565
  # Algeria
2566
- #: ../admin/view/wp-slimstat-reports.php:1721
2567
  msgid "c-dz"
2568
  msgstr "Algeria"
2569
 
2570
  # Andorra
2571
- #: ../admin/view/wp-slimstat-reports.php:1721
2572
  msgid "c-ad"
2573
  msgstr "Andorra"
2574
 
2575
  # Angola
2576
- #: ../admin/view/wp-slimstat-reports.php:1721
2577
  msgid "c-ao"
2578
  msgstr "Angola"
2579
 
2580
  # Anguilla
2581
- #: ../admin/view/wp-slimstat-reports.php:1721
2582
  msgid "c-ai"
2583
  msgstr "Anguilla"
2584
 
2585
  # Antigua and Barbuda
2586
- #: ../admin/view/wp-slimstat-reports.php:1721
2587
  msgid "c-ag"
2588
  msgstr "Antigua and Barbuda"
2589
 
2590
  # Argentina
2591
- #: ../admin/view/wp-slimstat-reports.php:1721
2592
  msgid "c-ar"
2593
  msgstr "Argentina"
2594
 
2595
  # Armenia
2596
- #: ../admin/view/wp-slimstat-reports.php:1721
2597
  msgid "c-am"
2598
  msgstr "Armenia"
2599
 
2600
  # Aruba
2601
- #: ../admin/view/wp-slimstat-reports.php:1721
2602
  msgid "c-aw"
2603
  msgstr "Aruba"
2604
 
2605
  # Australia
2606
- #: ../admin/view/wp-slimstat-reports.php:1721
2607
  msgid "c-au"
2608
  msgstr "Australia"
2609
 
2610
  # Austria
2611
- #: ../admin/view/wp-slimstat-reports.php:1721
2612
  msgid "c-at"
2613
  msgstr "Austria"
2614
 
2615
  # Azerbaijan
2616
- #: ../admin/view/wp-slimstat-reports.php:1721
2617
  msgid "c-az"
2618
  msgstr "Azerbaijan"
2619
 
2620
  # Bahamas
2621
- #: ../admin/view/wp-slimstat-reports.php:1721
2622
  msgid "c-bs"
2623
  msgstr "Bahamas"
2624
 
2625
  # Bahrain
2626
- #: ../admin/view/wp-slimstat-reports.php:1721
2627
  msgid "c-bh"
2628
  msgstr "Bahrain"
2629
 
2630
  # Bangladesh
2631
- #: ../admin/view/wp-slimstat-reports.php:1721
2632
  msgid "c-bd"
2633
  msgstr "Bangladesh"
2634
 
2635
  # Barbados
2636
- #: ../admin/view/wp-slimstat-reports.php:1721
2637
  msgid "c-bb"
2638
  msgstr "Barbados"
2639
 
2640
  # Belarus
2641
- #: ../admin/view/wp-slimstat-reports.php:1721
2642
  msgid "c-by"
2643
  msgstr "Belarus"
2644
 
2645
  # Belgium
2646
- #: ../admin/view/wp-slimstat-reports.php:1721
2647
  msgid "c-be"
2648
  msgstr "Belgium"
2649
 
2650
  # Belize
2651
- #: ../admin/view/wp-slimstat-reports.php:1721
2652
  msgid "c-bz"
2653
  msgstr "Belize"
2654
 
2655
  # Benin
2656
- #: ../admin/view/wp-slimstat-reports.php:1721
2657
  msgid "c-bj"
2658
  msgstr "Benin"
2659
 
2660
  # Bermuda
2661
- #: ../admin/view/wp-slimstat-reports.php:1721
2662
  msgid "c-bm"
2663
  msgstr "Bermuda"
2664
 
2665
  # Bhutan
2666
- #: ../admin/view/wp-slimstat-reports.php:1721
2667
  msgid "c-bt"
2668
  msgstr "Bhutan"
2669
 
2670
  # Bolivia
2671
- #: ../admin/view/wp-slimstat-reports.php:1721
2672
  msgid "c-bo"
2673
  msgstr "Bolivia"
2674
 
2675
  # Bosnia and Herzegovina
2676
- #: ../admin/view/wp-slimstat-reports.php:1721
2677
  msgid "c-ba"
2678
  msgstr "Bosnia and Herzegovina"
2679
 
2680
  # Botswana
2681
- #: ../admin/view/wp-slimstat-reports.php:1721
2682
  msgid "c-bw"
2683
  msgstr "Botswana"
2684
 
2685
  # Brazil
2686
- #: ../admin/view/wp-slimstat-reports.php:1721
2687
  msgid "c-br"
2688
  msgstr "Brazil"
2689
 
2690
  # Brunei Darussalam
2691
- #: ../admin/view/wp-slimstat-reports.php:1721
2692
  msgid "c-bn"
2693
  msgstr "Brunei Darussalam"
2694
 
2695
  # Bulgaria
2696
- #: ../admin/view/wp-slimstat-reports.php:1721
2697
  msgid "c-bg"
2698
  msgstr "Bulgaria"
2699
 
2700
  # Burkina Faso
2701
- #: ../admin/view/wp-slimstat-reports.php:1721
2702
  msgid "c-bf"
2703
  msgstr "Burkina Faso"
2704
 
2705
  # Burundi
2706
- #: ../admin/view/wp-slimstat-reports.php:1721
2707
  msgid "c-bi"
2708
  msgstr "Burundi"
2709
 
2710
  # Cambodia
2711
- #: ../admin/view/wp-slimstat-reports.php:1721
2712
  msgid "c-kh"
2713
  msgstr "Cambodia"
2714
 
2715
  # Cameroon
2716
- #: ../admin/view/wp-slimstat-reports.php:1721
2717
  msgid "c-cm"
2718
  msgstr "Cameroon"
2719
 
2720
  # Canada
2721
- #: ../admin/view/wp-slimstat-reports.php:1721
2722
  msgid "c-ca"
2723
  msgstr "Canada"
2724
 
2725
  # Cape Verde
2726
- #: ../admin/view/wp-slimstat-reports.php:1721
2727
  msgid "c-cv"
2728
  msgstr "Cape Verde"
2729
 
2730
  # Cayman Islands
2731
- #: ../admin/view/wp-slimstat-reports.php:1721
2732
  msgid "c-ky"
2733
  msgstr "Cayman Islands"
2734
 
2735
  # Central African Republic
2736
- #: ../admin/view/wp-slimstat-reports.php:1721
2737
  msgid "c-cf"
2738
  msgstr "Central African Republic"
2739
 
2740
  # Chad
2741
- #: ../admin/view/wp-slimstat-reports.php:1721
2742
  msgid "c-td"
2743
  msgstr "Chad"
2744
 
2745
  # Chile
2746
- #: ../admin/view/wp-slimstat-reports.php:1721
2747
  msgid "c-cl"
2748
  msgstr "Chile"
2749
 
2750
  # China
2751
- #: ../admin/view/wp-slimstat-reports.php:1721
2752
  msgid "c-cn"
2753
  msgstr "China"
2754
 
2755
  # Colombia
2756
- #: ../admin/view/wp-slimstat-reports.php:1721
2757
  msgid "c-co"
2758
  msgstr "Colombia"
2759
 
2760
  # Comoros
2761
- #: ../admin/view/wp-slimstat-reports.php:1721
2762
  msgid "c-km"
2763
  msgstr "Comoros"
2764
 
2765
  # Congo
2766
- #: ../admin/view/wp-slimstat-reports.php:1721
2767
  msgid "c-cg"
2768
  msgstr "Congo"
2769
 
2770
  # The Democratic Republic of the Congo
2771
- #: ../admin/view/wp-slimstat-reports.php:1721
2772
  msgid "c-cd"
2773
  msgstr "The Democratic Republic of the Congo"
2774
 
2775
  # Costa Rica
2776
- #: ../admin/view/wp-slimstat-reports.php:1721
2777
  msgid "c-cr"
2778
  msgstr "Costa Rica"
2779
 
2780
  # Côte d'Ivoire
2781
- #: ../admin/view/wp-slimstat-reports.php:1721
2782
  msgid "c-ci"
2783
  msgstr "Côte d'Ivoire"
2784
 
2785
  # Croatia
2786
- #: ../admin/view/wp-slimstat-reports.php:1721
2787
  msgid "c-hr"
2788
  msgstr "Croatia"
2789
 
2790
  # Cuba
2791
- #: ../admin/view/wp-slimstat-reports.php:1721
2792
  msgid "c-cu"
2793
  msgstr "Cuba"
2794
 
2795
  # Cyprus
2796
- #: ../admin/view/wp-slimstat-reports.php:1721
2797
  msgid "c-cy"
2798
  msgstr "Cyprus"
2799
 
2800
  # Czech Republic
2801
- #: ../admin/view/wp-slimstat-reports.php:1721
2802
  msgid "c-cz"
2803
  msgstr "Czech Republic"
2804
 
2805
  # Denmark
2806
- #: ../admin/view/wp-slimstat-reports.php:1721
2807
  msgid "c-dk"
2808
  msgstr "Denmark"
2809
 
2810
  # Djibouti
2811
- #: ../admin/view/wp-slimstat-reports.php:1721
2812
  msgid "c-dj"
2813
  msgstr "Djibouti"
2814
 
2815
  # Dominica
2816
- #: ../admin/view/wp-slimstat-reports.php:1721
2817
  msgid "c-dm"
2818
  msgstr "Dominica"
2819
 
2820
  # Dominican Republic
2821
- #: ../admin/view/wp-slimstat-reports.php:1721
2822
  msgid "c-do"
2823
  msgstr "Dominican Republic"
2824
 
2825
  # Ecuador
2826
- #: ../admin/view/wp-slimstat-reports.php:1721
2827
  msgid "c-ec"
2828
  msgstr "Ecuador"
2829
 
2830
  # Egypt
2831
- #: ../admin/view/wp-slimstat-reports.php:1721
2832
  msgid "c-eg"
2833
  msgstr "Egypt"
2834
 
2835
  # El Salvador
2836
- #: ../admin/view/wp-slimstat-reports.php:1721
2837
  msgid "c-sv"
2838
  msgstr "El Salvador"
2839
 
2840
  # Equatorial Guinea
2841
- #: ../admin/view/wp-slimstat-reports.php:1721
2842
  msgid "c-gq"
2843
  msgstr "Equatorial Guinea"
2844
 
2845
  # Eritrea
2846
- #: ../admin/view/wp-slimstat-reports.php:1721
2847
  msgid "c-er"
2848
  msgstr "Eritrea"
2849
 
2850
  # Estonia
2851
- #: ../admin/view/wp-slimstat-reports.php:1721
2852
  msgid "c-ee"
2853
  msgstr "Estonia"
2854
 
2855
  # Ethiopia
2856
- #: ../admin/view/wp-slimstat-reports.php:1721
2857
  msgid "c-et"
2858
  msgstr "Ethiopia"
2859
 
2860
  # Faroe Islands
2861
- #: ../admin/view/wp-slimstat-reports.php:1721
2862
  msgid "c-fo"
2863
  msgstr "Faroe Islands"
2864
 
2865
  # Falkland Islands (Malvinas)
2866
- #: ../admin/view/wp-slimstat-reports.php:1721
2867
  msgid "c-fk"
2868
  msgstr "Falkland Islands (Malvinas)"
2869
 
2870
  # Fiji
2871
- #: ../admin/view/wp-slimstat-reports.php:1721
2872
  msgid "c-fj"
2873
  msgstr "Fiji"
2874
 
2875
  # Finland
2876
- #: ../admin/view/wp-slimstat-reports.php:1721
2877
  msgid "c-fi"
2878
  msgstr "Finland"
2879
 
2880
  # France
2881
- #: ../admin/view/wp-slimstat-reports.php:1721
2882
  msgid "c-fr"
2883
  msgstr "France"
2884
 
2885
  # French Guiana
2886
- #: ../admin/view/wp-slimstat-reports.php:1721
2887
  msgid "c-gf"
2888
  msgstr "French Guiana"
2889
 
2890
  # Gabon
2891
- #: ../admin/view/wp-slimstat-reports.php:1721
2892
  msgid "c-ga"
2893
  msgstr "Gabon"
2894
 
2895
  # Gambia
2896
- #: ../admin/view/wp-slimstat-reports.php:1721
2897
  msgid "c-gm"
2898
  msgstr "Gambia"
2899
 
2900
  # Georgia
2901
- #: ../admin/view/wp-slimstat-reports.php:1721
2902
  msgid "c-ge"
2903
  msgstr "Georgia"
2904
 
2905
  # Germany
2906
- #: ../admin/view/wp-slimstat-reports.php:1721
2907
  msgid "c-de"
2908
  msgstr "Germany"
2909
 
2910
  # Ghana
2911
- #: ../admin/view/wp-slimstat-reports.php:1721
2912
  msgid "c-gh"
2913
  msgstr "Ghana"
2914
 
2915
  # Greece
2916
- #: ../admin/view/wp-slimstat-reports.php:1721
2917
  msgid "c-gr"
2918
  msgstr "Greece"
2919
 
2920
  # Greenland
2921
- #: ../admin/view/wp-slimstat-reports.php:1721
2922
  msgid "c-gl"
2923
  msgstr "Greenland"
2924
 
2925
  # Grenada
2926
- #: ../admin/view/wp-slimstat-reports.php:1721
2927
  msgid "c-gd"
2928
  msgstr "Grenada"
2929
 
2930
  # Guadeloupe
2931
- #: ../admin/view/wp-slimstat-reports.php:1721
2932
  msgid "c-gp"
2933
  msgstr "Guadeloupe"
2934
 
2935
  # Guatemala
2936
- #: ../admin/view/wp-slimstat-reports.php:1721
2937
  msgid "c-gt"
2938
  msgstr "Guatemala"
2939
 
2940
  # Guinea
2941
- #: ../admin/view/wp-slimstat-reports.php:1721
2942
  msgid "c-gn"
2943
  msgstr "Guinea"
2944
 
2945
  # Guinea-Bissau
2946
- #: ../admin/view/wp-slimstat-reports.php:1721
2947
  msgid "c-gw"
2948
  msgstr "Guinea-Bissau"
2949
 
2950
  # Guyana
2951
- #: ../admin/view/wp-slimstat-reports.php:1721
2952
  msgid "c-gy"
2953
  msgstr "Guyana"
2954
 
2955
  # Haiti
2956
- #: ../admin/view/wp-slimstat-reports.php:1721
2957
  msgid "c-ht"
2958
  msgstr "Haiti"
2959
 
2960
  # Honduras
2961
- #: ../admin/view/wp-slimstat-reports.php:1721
2962
  msgid "c-hn"
2963
  msgstr "Honduras"
2964
 
2965
  # Hong Kong
2966
- #: ../admin/view/wp-slimstat-reports.php:1721
2967
  msgid "c-hk"
2968
  msgstr "Hong Kong"
2969
 
2970
  # Hungary
2971
- #: ../admin/view/wp-slimstat-reports.php:1721
2972
  msgid "c-hu"
2973
  msgstr "Hungary"
2974
 
2975
  # Iceland
2976
- #: ../admin/view/wp-slimstat-reports.php:1721
2977
  msgid "c-is"
2978
  msgstr "Iceland"
2979
 
2980
  # India
2981
- #: ../admin/view/wp-slimstat-reports.php:1721
2982
  msgid "c-in"
2983
  msgstr "India"
2984
 
2985
  # Indonesia
2986
- #: ../admin/view/wp-slimstat-reports.php:1721
2987
  msgid "c-id"
2988
  msgstr "Indonesia"
2989
 
2990
  # Islamic Republic of Iran
2991
- #: ../admin/view/wp-slimstat-reports.php:1721
2992
  msgid "c-ir"
2993
  msgstr "Islamic Republic of Iran"
2994
 
2995
  # Iraq
2996
- #: ../admin/view/wp-slimstat-reports.php:1721
2997
  msgid "c-iq"
2998
  msgstr "Iraq"
2999
 
3000
  # Ireland
3001
- #: ../admin/view/wp-slimstat-reports.php:1721
3002
  msgid "c-ie"
3003
  msgstr "Ireland"
3004
 
3005
  # Israel
3006
- #: ../admin/view/wp-slimstat-reports.php:1721
3007
  msgid "c-il"
3008
  msgstr "Israel"
3009
 
3010
  # Italy
3011
- #: ../admin/view/wp-slimstat-reports.php:1721
3012
  msgid "c-it"
3013
  msgstr "Italy"
3014
 
3015
  # Jamaica
3016
- #: ../admin/view/wp-slimstat-reports.php:1721
3017
  msgid "c-jm"
3018
  msgstr "Jamaica"
3019
 
3020
  # Japan
3021
- #: ../admin/view/wp-slimstat-reports.php:1721
3022
  msgid "c-jp"
3023
  msgstr "Japan"
3024
 
3025
  # Jordan
3026
- #: ../admin/view/wp-slimstat-reports.php:1721
3027
  msgid "c-jo"
3028
  msgstr "Jordan"
3029
 
3030
  # Kazakhstan
3031
- #: ../admin/view/wp-slimstat-reports.php:1721
3032
  msgid "c-kz"
3033
  msgstr "Kazakhstan"
3034
 
3035
  # Kenya
3036
- #: ../admin/view/wp-slimstat-reports.php:1721
3037
  msgid "c-ke"
3038
  msgstr "Kenya"
3039
 
3040
  # Nauru
3041
- #: ../admin/view/wp-slimstat-reports.php:1721
3042
  msgid "c-nr"
3043
  msgstr "Nauru"
3044
 
3045
  # Democratic People's Republic of Korea
3046
- #: ../admin/view/wp-slimstat-reports.php:1721
3047
  msgid "c-kp"
3048
  msgstr "Democratic People's Republic of Korea"
3049
 
3050
  # Republic of Korea
3051
- #: ../admin/view/wp-slimstat-reports.php:1721
3052
  msgid "c-kr"
3053
  msgstr "Republic of Korea"
3054
 
3055
- #: ../admin/view/wp-slimstat-reports.php:1721
3056
  msgid "c-kv"
3057
  msgstr ""
3058
 
3059
  # Kuwait
3060
- #: ../admin/view/wp-slimstat-reports.php:1721
3061
  msgid "c-kw"
3062
  msgstr "Kuwait"
3063
 
3064
  # Kyrgyzstan
3065
- #: ../admin/view/wp-slimstat-reports.php:1721
3066
  msgid "c-kg"
3067
  msgstr "Kyrgyzstan"
3068
 
3069
  # Lao People's Democratic Republic
3070
- #: ../admin/view/wp-slimstat-reports.php:1721
3071
  msgid "c-la"
3072
  msgstr "Lao People's Democratic Republic"
3073
 
3074
  # Latvia
3075
- #: ../admin/view/wp-slimstat-reports.php:1721
3076
  msgid "c-lv"
3077
  msgstr "Latvia"
3078
 
3079
  # Lebanon
3080
- #: ../admin/view/wp-slimstat-reports.php:1721
3081
  msgid "c-lb"
3082
  msgstr "Lebanon"
3083
 
3084
  # Lesotho
3085
- #: ../admin/view/wp-slimstat-reports.php:1721
3086
  msgid "c-ls"
3087
  msgstr "Lesotho"
3088
 
3089
  # Liberia
3090
- #: ../admin/view/wp-slimstat-reports.php:1721
3091
  msgid "c-lr"
3092
  msgstr "Liberia"
3093
 
3094
  # Libyan Arab Jamahiriya
3095
- #: ../admin/view/wp-slimstat-reports.php:1721
3096
  msgid "c-ly"
3097
  msgstr "Libyan Arab Jamahiriya"
3098
 
3099
  # Liechtenstein
3100
- #: ../admin/view/wp-slimstat-reports.php:1721
3101
  msgid "c-li"
3102
  msgstr "Liechtenstein"
3103
 
3104
  # Lithuania
3105
- #: ../admin/view/wp-slimstat-reports.php:1721
3106
  msgid "c-lt"
3107
  msgstr "Lithuania"
3108
 
3109
  # Luxembourg
3110
- #: ../admin/view/wp-slimstat-reports.php:1721
3111
  msgid "c-lu"
3112
  msgstr "Luxembourg"
3113
 
3114
  # The Former Yugoslav Republic of Macedonia
3115
- #: ../admin/view/wp-slimstat-reports.php:1721
3116
  msgid "c-mk"
3117
  msgstr "The Former Yugoslav Republic of Macedonia"
3118
 
3119
  # Madagascar
3120
- #: ../admin/view/wp-slimstat-reports.php:1721
3121
  msgid "c-mg"
3122
  msgstr "Madagascar"
3123
 
3124
  # Malawi
3125
- #: ../admin/view/wp-slimstat-reports.php:1721
3126
  msgid "c-mw"
3127
  msgstr "Malawi"
3128
 
3129
  # Malaysia
3130
- #: ../admin/view/wp-slimstat-reports.php:1721
3131
  msgid "c-my"
3132
  msgstr "Malaysia"
3133
 
3134
  # Mali
3135
- #: ../admin/view/wp-slimstat-reports.php:1721
3136
  msgid "c-ml"
3137
  msgstr "Mali"
3138
 
3139
  # Malta
3140
- #: ../admin/view/wp-slimstat-reports.php:1721
3141
  msgid "c-mt"
3142
  msgstr "Malta"
3143
 
3144
  # Martinique
3145
- #: ../admin/view/wp-slimstat-reports.php:1721
3146
  msgid "c-mq"
3147
  msgstr "Martinique"
3148
 
3149
  # Mauritania
3150
- #: ../admin/view/wp-slimstat-reports.php:1721
3151
  msgid "c-mr"
3152
  msgstr "Mauritania"
3153
 
3154
  # Mauritius
3155
- #: ../admin/view/wp-slimstat-reports.php:1721
3156
  msgid "c-mu"
3157
  msgstr "Mauritius"
3158
 
3159
  # Mexico
3160
- #: ../admin/view/wp-slimstat-reports.php:1721
3161
  msgid "c-mx"
3162
  msgstr "Mexico"
3163
 
3164
  # Moldova
3165
- #: ../admin/view/wp-slimstat-reports.php:1721
3166
  msgid "c-md"
3167
  msgstr "Moldova"
3168
 
3169
  # Mongolia
3170
- #: ../admin/view/wp-slimstat-reports.php:1721
3171
  msgid "c-mn"
3172
  msgstr "Mongolia"
3173
 
3174
  # Montenegro
3175
- #: ../admin/view/wp-slimstat-reports.php:1721
3176
  msgid "c-me"
3177
  msgstr "Montenegro"
3178
 
3179
  # Montserrat
3180
- #: ../admin/view/wp-slimstat-reports.php:1721
3181
  msgid "c-ms"
3182
  msgstr "Montserrat"
3183
 
3184
  # Morocco
3185
- #: ../admin/view/wp-slimstat-reports.php:1721
3186
  msgid "c-ma"
3187
  msgstr "Morocco"
3188
 
3189
  # Mozambique
3190
- #: ../admin/view/wp-slimstat-reports.php:1721
3191
  msgid "c-mz"
3192
  msgstr "Mozambique"
3193
 
3194
  # Myanmar
3195
- #: ../admin/view/wp-slimstat-reports.php:1721
3196
  msgid "c-mm"
3197
  msgstr "Myanmar"
3198
 
3199
  # Namibia
3200
- #: ../admin/view/wp-slimstat-reports.php:1721
3201
  msgid "c-na"
3202
  msgstr "Namibia"
3203
 
3204
  # Nepal
3205
- #: ../admin/view/wp-slimstat-reports.php:1721
3206
  msgid "c-np"
3207
  msgstr "Nepal"
3208
 
3209
  # Netherlands
3210
- #: ../admin/view/wp-slimstat-reports.php:1721
3211
  msgid "c-nl"
3212
  msgstr "Netherlands"
3213
 
3214
  # New Caledonia
3215
- #: ../admin/view/wp-slimstat-reports.php:1721
3216
  msgid "c-nc"
3217
  msgstr "New Caledonia"
3218
 
3219
  # New Zealand
3220
- #: ../admin/view/wp-slimstat-reports.php:1721
3221
  msgid "c-nz"
3222
  msgstr "New Zealand"
3223
 
3224
  # Nicaragua
3225
- #: ../admin/view/wp-slimstat-reports.php:1721
3226
  msgid "c-ni"
3227
  msgstr "Nicaragua"
3228
 
3229
  # Niger
3230
- #: ../admin/view/wp-slimstat-reports.php:1721
3231
  msgid "c-ne"
3232
  msgstr "Niger"
3233
 
3234
  # Nigeria
3235
- #: ../admin/view/wp-slimstat-reports.php:1721
3236
  msgid "c-ng"
3237
  msgstr "Nigeria"
3238
 
3239
  # Norway
3240
- #: ../admin/view/wp-slimstat-reports.php:1721
3241
  msgid "c-no"
3242
  msgstr "Norway"
3243
 
3244
  # Oman
3245
- #: ../admin/view/wp-slimstat-reports.php:1721
3246
  msgid "c-om"
3247
  msgstr "Oman"
3248
 
3249
  # Pakistan
3250
- #: ../admin/view/wp-slimstat-reports.php:1721
3251
  msgid "c-pk"
3252
  msgstr "Pakistan"
3253
 
3254
  # Palau
3255
- #: ../admin/view/wp-slimstat-reports.php:1721
3256
  msgid "c-pw"
3257
  msgstr "Palau"
3258
 
3259
  # Occupied Palestinian Territory
3260
- #: ../admin/view/wp-slimstat-reports.php:1721
3261
  msgid "c-ps"
3262
  msgstr "Occupied Palestinian Territory"
3263
 
3264
  # Panama
3265
- #: ../admin/view/wp-slimstat-reports.php:1721
3266
  msgid "c-pa"
3267
  msgstr "Panama"
3268
 
3269
  # Papua New Guinea
3270
- #: ../admin/view/wp-slimstat-reports.php:1721
3271
  msgid "c-pg"
3272
  msgstr "Papua New Guinea"
3273
 
3274
  # Paraguay
3275
- #: ../admin/view/wp-slimstat-reports.php:1721
3276
  msgid "c-py"
3277
  msgstr "Paraguay"
3278
 
3279
  # Peru
3280
- #: ../admin/view/wp-slimstat-reports.php:1721
3281
  msgid "c-pe"
3282
  msgstr "Peru"
3283
 
3284
  # Philippines
3285
- #: ../admin/view/wp-slimstat-reports.php:1721
3286
  msgid "c-ph"
3287
  msgstr "Philippines"
3288
 
3289
  # Poland
3290
- #: ../admin/view/wp-slimstat-reports.php:1721
3291
  msgid "c-pl"
3292
  msgstr "Poland"
3293
 
3294
  # Portugal
3295
- #: ../admin/view/wp-slimstat-reports.php:1721
3296
  msgid "c-pt"
3297
  msgstr "Portugal"
3298
 
3299
  # Puerto Rico
3300
- #: ../admin/view/wp-slimstat-reports.php:1721
3301
  msgid "c-pr"
3302
  msgstr "Puerto Rico"
3303
 
3304
  # Qatar
3305
- #: ../admin/view/wp-slimstat-reports.php:1721
3306
  msgid "c-qa"
3307
  msgstr "Qatar"
3308
 
3309
  # Réunion
3310
- #: ../admin/view/wp-slimstat-reports.php:1721
3311
  msgid "c-re"
3312
  msgstr "Réunion"
3313
 
3314
  # Romania
3315
- #: ../admin/view/wp-slimstat-reports.php:1721
3316
  msgid "c-ro"
3317
  msgstr "Romania"
3318
 
3319
  # Russian Federation
3320
- #: ../admin/view/wp-slimstat-reports.php:1721
3321
  msgid "c-ru"
3322
  msgstr "Russian Federation"
3323
 
3324
  # Rwanda
3325
- #: ../admin/view/wp-slimstat-reports.php:1721
3326
  msgid "c-rw"
3327
  msgstr "Rwanda"
3328
 
3329
  # Saint Kitts and Nevis
3330
- #: ../admin/view/wp-slimstat-reports.php:1721
3331
  msgid "c-kn"
3332
  msgstr "Saint Kitts and Nevis"
3333
 
3334
  # Saint Lucia
3335
- #: ../admin/view/wp-slimstat-reports.php:1721
3336
  msgid "c-lc"
3337
  msgstr "Saint Lucia"
3338
 
3339
  # Saint Martin
3340
- #: ../admin/view/wp-slimstat-reports.php:1721
3341
  msgid "c-mf"
3342
  msgstr "Saint Martin"
3343
 
3344
  # Saint Vincent and the Grenadines
3345
- #: ../admin/view/wp-slimstat-reports.php:1721
3346
  msgid "c-vc"
3347
  msgstr "Saint Vincent and the Grenadines"
3348
 
3349
  # Samoa
3350
- #: ../admin/view/wp-slimstat-reports.php:1721
3351
  msgid "c-ws"
3352
  msgstr "Samoa"
3353
 
3354
  # Sao Tome and Principe
3355
- #: ../admin/view/wp-slimstat-reports.php:1721
3356
  msgid "c-st"
3357
  msgstr "Sao Tome and Principe"
3358
 
3359
  # Saudi Arabia
3360
- #: ../admin/view/wp-slimstat-reports.php:1721
3361
  msgid "c-sa"
3362
  msgstr "Saudi Arabia"
3363
 
3364
  # Senegal
3365
- #: ../admin/view/wp-slimstat-reports.php:1721
3366
  msgid "c-sn"
3367
  msgstr "Senegal"
3368
 
3369
  # Serbia
3370
- #: ../admin/view/wp-slimstat-reports.php:1721
3371
  msgid "c-rs"
3372
  msgstr "Serbia"
3373
 
3374
  # Sierra Leone
3375
- #: ../admin/view/wp-slimstat-reports.php:1721
3376
  msgid "c-sl"
3377
  msgstr "Sierra Leone"
3378
 
3379
  # Singapore
3380
- #: ../admin/view/wp-slimstat-reports.php:1721
3381
  msgid "c-sg"
3382
  msgstr "Singapore"
3383
 
3384
  # Slovakia
3385
- #: ../admin/view/wp-slimstat-reports.php:1721
3386
  msgid "c-sk"
3387
  msgstr "Slovakia"
3388
 
3389
  # Slovenia
3390
- #: ../admin/view/wp-slimstat-reports.php:1721
3391
  msgid "c-si"
3392
  msgstr "Slovenia"
3393
 
3394
  # Solomon Islands
3395
- #: ../admin/view/wp-slimstat-reports.php:1721
3396
  msgid "c-sb"
3397
  msgstr "Solomon Islands"
3398
 
3399
  # Somalia
3400
- #: ../admin/view/wp-slimstat-reports.php:1721
3401
  msgid "c-so"
3402
  msgstr "Somalia"
3403
 
3404
  # South Africa
3405
- #: ../admin/view/wp-slimstat-reports.php:1721
3406
  msgid "c-za"
3407
  msgstr "South Africa"
3408
 
3409
  # South Georgia and the South Sandwich Islands
3410
- #: ../admin/view/wp-slimstat-reports.php:1721
3411
  msgid "c-gs"
3412
  msgstr "South Georgia and the South Sandwich Islands"
3413
 
3414
  # Spain
3415
- #: ../admin/view/wp-slimstat-reports.php:1721
3416
  msgid "c-es"
3417
  msgstr "Spain"
3418
 
3419
  # Sri Lanka
3420
- #: ../admin/view/wp-slimstat-reports.php:1721
3421
  msgid "c-lk"
3422
  msgstr "Sri Lanka"
3423
 
3424
- #: ../admin/view/wp-slimstat-reports.php:1721
3425
  msgid "c-sc"
3426
  msgstr "Seychelles"
3427
 
3428
  # Sudan
3429
- #: ../admin/view/wp-slimstat-reports.php:1721
3430
  msgid "c-sd"
3431
  msgstr "Sudan"
3432
 
3433
- #: ../admin/view/wp-slimstat-reports.php:1721
3434
  msgid "c-ss"
3435
  msgstr ""
3436
 
3437
  # Suriname
3438
- #: ../admin/view/wp-slimstat-reports.php:1721
3439
  msgid "c-sr"
3440
  msgstr "Suriname"
3441
 
3442
  # Svalbard and Jan Mayen
3443
- #: ../admin/view/wp-slimstat-reports.php:1721
3444
  msgid "c-sj"
3445
  msgstr "Svalbard and Jan Mayen"
3446
 
3447
  # Swaziland
3448
- #: ../admin/view/wp-slimstat-reports.php:1721
3449
  msgid "c-sz"
3450
  msgstr "Swaziland"
3451
 
3452
  # Sweden
3453
- #: ../admin/view/wp-slimstat-reports.php:1721
3454
  msgid "c-se"
3455
  msgstr "Sweden"
3456
 
3457
  # Switzerland
3458
- #: ../admin/view/wp-slimstat-reports.php:1721
3459
  msgid "c-ch"
3460
  msgstr "Switzerland"
3461
 
3462
  # Syrian Arab Republic
3463
- #: ../admin/view/wp-slimstat-reports.php:1721
3464
  msgid "c-sy"
3465
  msgstr "Syrian Arab Republic"
3466
 
3467
  # Taiwan, Province of China
3468
- #: ../admin/view/wp-slimstat-reports.php:1721
3469
  msgid "c-tw"
3470
  msgstr "Taiwan"
3471
 
3472
  # Tajikistan
3473
- #: ../admin/view/wp-slimstat-reports.php:1721
3474
  msgid "c-tj"
3475
  msgstr "Tajikistan"
3476
 
3477
  # United Republic of Tanzania
3478
- #: ../admin/view/wp-slimstat-reports.php:1721
3479
  msgid "c-tz"
3480
  msgstr "United Republic of Tanzania"
3481
 
3482
  # Thailand
3483
- #: ../admin/view/wp-slimstat-reports.php:1721
3484
  msgid "c-th"
3485
  msgstr "Thailand"
3486
 
3487
  # Timor-Leste
3488
- #: ../admin/view/wp-slimstat-reports.php:1721
3489
  msgid "c-tl"
3490
  msgstr "Timor-Leste"
3491
 
3492
  # Togo
3493
- #: ../admin/view/wp-slimstat-reports.php:1721
3494
  msgid "c-tg"
3495
  msgstr "Togo"
3496
 
3497
  # Tonga
3498
- #: ../admin/view/wp-slimstat-reports.php:1721
3499
  msgid "c-to"
3500
  msgstr "Tonga"
3501
 
3502
  # Trinidad and Tobago
3503
- #: ../admin/view/wp-slimstat-reports.php:1721
3504
  msgid "c-tt"
3505
  msgstr "Trinidad and Tobago"
3506
 
3507
  # Tunisia
3508
- #: ../admin/view/wp-slimstat-reports.php:1721
3509
  msgid "c-tn"
3510
  msgstr "Tunisia"
3511
 
3512
  # Turkey
3513
- #: ../admin/view/wp-slimstat-reports.php:1721
3514
  msgid "c-tr"
3515
  msgstr "Turkey"
3516
 
3517
  # Turkmenistan
3518
- #: ../admin/view/wp-slimstat-reports.php:1721
3519
  msgid "c-tm"
3520
  msgstr "Turkmenistan"
3521
 
3522
  # Turks and Caicos Islands
3523
- #: ../admin/view/wp-slimstat-reports.php:1721
3524
  msgid "c-tc"
3525
  msgstr "Turks and Caicos Islands"
3526
 
3527
  # Uganda
3528
- #: ../admin/view/wp-slimstat-reports.php:1721
3529
  msgid "c-ug"
3530
  msgstr "Uganda"
3531
 
3532
  # Ukraine
3533
- #: ../admin/view/wp-slimstat-reports.php:1721
3534
  msgid "c-ua"
3535
  msgstr "Ukraine"
3536
 
3537
  # United Arab Emirates
3538
- #: ../admin/view/wp-slimstat-reports.php:1721
3539
  msgid "c-ae"
3540
  msgstr "United Arab Emirates"
3541
 
3542
  # United Kingdom
3543
- #: ../admin/view/wp-slimstat-reports.php:1721
3544
  msgid "c-gb"
3545
  msgstr "United Kingdom"
3546
 
3547
  # United States
3548
- #: ../admin/view/wp-slimstat-reports.php:1721
3549
  msgid "c-us"
3550
  msgstr "United States"
3551
 
3552
  # Uruguay
3553
- #: ../admin/view/wp-slimstat-reports.php:1721
3554
  msgid "c-uy"
3555
  msgstr "Uruguay"
3556
 
3557
  # Uzbekistan
3558
- #: ../admin/view/wp-slimstat-reports.php:1721
3559
  msgid "c-uz"
3560
  msgstr "Uzbekistan"
3561
 
3562
  # Vanuatu
3563
- #: ../admin/view/wp-slimstat-reports.php:1721
3564
  msgid "c-vu"
3565
  msgstr "Vanuatu"
3566
 
3567
  # Venezuela
3568
- #: ../admin/view/wp-slimstat-reports.php:1721
3569
  msgid "c-ve"
3570
  msgstr "Venezuela"
3571
 
3572
  # Viet Nam
3573
- #: ../admin/view/wp-slimstat-reports.php:1721
3574
  msgid "c-vn"
3575
  msgstr "Viet Nam"
3576
 
3577
  # British Virgin Islands
3578
- #: ../admin/view/wp-slimstat-reports.php:1721
3579
  msgid "c-vg"
3580
  msgstr "British Virgin Islands"
3581
 
3582
  # U.S. Virgin Islands
3583
- #: ../admin/view/wp-slimstat-reports.php:1721
3584
  msgid "c-vi"
3585
  msgstr "U.S. Virgin Islands"
3586
 
3587
  # Western Sahara
3588
- #: ../admin/view/wp-slimstat-reports.php:1721
3589
  msgid "c-eh"
3590
  msgstr "Western Sahara"
3591
 
3592
  # Yemen
3593
- #: ../admin/view/wp-slimstat-reports.php:1721
3594
  msgid "c-ye"
3595
  msgstr "Yemen"
3596
 
3597
  # Zambia
3598
- #: ../admin/view/wp-slimstat-reports.php:1721
3599
  msgid "c-zm"
3600
  msgstr "Zambia"
3601
 
3602
  # Zimbabwe
3603
- #: ../admin/view/wp-slimstat-reports.php:1721
3604
  msgid "c-zw"
3605
  msgstr "Zimbabwe"
3606
 
3607
  # Guernsey
3608
- #: ../admin/view/wp-slimstat-reports.php:1721
3609
  msgid "c-gg"
3610
  msgstr "Guernsey"
3611
 
3612
  # Jersey
3613
- #: ../admin/view/wp-slimstat-reports.php:1721
3614
  msgid "c-je"
3615
  msgstr "Jersey"
3616
 
3617
  # Isle of Man
3618
- #: ../admin/view/wp-slimstat-reports.php:1721
3619
  msgid "c-im"
3620
  msgstr "Isle of Man"
3621
 
3622
  # Maldives
3623
- #: ../admin/view/wp-slimstat-reports.php:1721
3624
  msgid "c-mv"
3625
  msgstr "Maldives"
3626
 
3627
- #: ../admin/view/wp-slimstat-reports.php:1722
3628
  msgid "c-eu"
3629
  msgstr ""
3630
 
3631
- #: ../admin/view/wp-slimstat-reports.php:1804
3632
  msgid "src"
3633
  msgstr "منبع"
3634
 
3635
- #: ../admin/view/wp-slimstat-reports.php:1807
3636
  msgid "serp"
3637
  msgstr ""
3638
 
3639
- #: ../admin/view/wp-slimstat-reports.php:1814
3640
  msgid "Go to the referring page"
3641
  msgstr "برو به صفحه ارجاع‌دهنده"
3642
 
3643
- #: ../admin/view/wp-slimstat-reports.php:1836
3644
  msgid "Remove filter for"
3645
  msgstr "حذف فیلترها از"
3646
 
3647
- #: ../admin/view/wp-slimstat-reports.php:1840
3648
  msgid "Save"
3649
  msgstr ""
3650
 
3651
- #: ../admin/view/wp-slimstat-reports.php:1843
3652
  msgid "Reset All"
3653
  msgstr "بازنشانی همه"
3654
 
3655
- #: ../admin/view/wp-slimstat-reports.php:1847
3656
  msgid "Current filters:"
3657
  msgstr "فیلترهای جاری:"
3658
 
3659
- #: ../admin/wp-slimstat-admin.php:648 ../admin/wp-slimstat-admin.php:659
3660
- #: ../admin/wp-slimstat-admin.php:661
3661
  msgid "SlimStat"
3662
  msgstr "SlimStat"
3663
 
3664
- #: ../admin/wp-slimstat-admin.php:655
3665
- msgid "Custom Reports"
3666
- msgstr "گزارش دلخواه"
 
 
3667
 
3668
- #: ../admin/wp-slimstat-admin.php:744
3669
  #, fuzzy
3670
  msgid "Pageviews in the last "
3671
  msgstr "مشاهده صفحات (نمودار)"
3672
 
3673
- #: ../admin/wp-slimstat-admin.php:747
3674
  #, fuzzy
3675
  msgid "Unique IPs in the last "
3676
  msgstr "آی‌پی‌های یکتا"
3677
 
3678
- #: ../admin/wp-slimstat-admin.php:803
3679
  msgid "Show on screen"
3680
  msgstr "روی صفحه نشان بده"
3681
 
3682
- #: ../admin/wp-slimstat-admin.php:888
3683
  msgid "Already saved"
3684
  msgstr ""
3685
 
3686
- #: ../admin/wp-slimstat-admin.php:896
3687
  msgid "Saved"
3688
  msgstr ""
3689
 
3690
- #: ../admin/wp-slimstat-admin.php:916
3691
  #, fuzzy
3692
  msgid "Delete this filter"
3693
  msgstr "حذف بازدید‌ها وقتی"
3694
 
3695
- #: ../admin/wp-slimstat-admin.php:960
3696
  msgid "There was an error updating the following options:"
3697
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
3698
 
3699
- #: ../admin/wp-slimstat-admin.php:963
3700
  #, fuzzy
3701
  msgid "Your changes have been saved."
3702
  msgstr "تنظیمات شما با موفقیت به روز شد."
3703
 
3704
- #: ../admin/wp-slimstat-admin.php:986
3705
  msgid "Save Changes"
3706
  msgstr "ذخیره‌ی تغییرات"
3707
 
3708
- #: ../admin/wp-slimstat-admin.php:1002
3709
  msgid "Definitions"
3710
  msgstr "تعاریف"
3711
 
3712
- #: ../admin/wp-slimstat-admin.php:1005
3713
  msgid "Pageview"
3714
  msgstr "بازدید"
3715
 
3716
- #: ../admin/wp-slimstat-admin.php:1005
3717
  #, fuzzy
3718
  msgid ""
3719
  "A request to load a single HTML file (\"page\"). This should be contrasted "
@@ -3724,11 +3816,11 @@ msgstr ""
3724
  "\"hit\" تفاوت دارد. این برنامه هر بازدید را بعد از اجرای برنامه ردگیری ثبت "
3725
  "میکند. "
3726
 
3727
- #: ../admin/wp-slimstat-admin.php:1006
3728
  msgid "(Human) Visit"
3729
  msgstr "بیننده (انسانی)"
3730
 
3731
- #: ../admin/wp-slimstat-admin.php:1006
3732
  msgid ""
3733
  "A period of interaction between a visitor's browser and your website, ending "
3734
  "when the browser is closed or when the user has been inactive on that site "
@@ -3737,7 +3829,7 @@ msgstr ""
3737
  "تراکنش بین مرورگر ردگیری و پایگاه شما به پایان رسید وقتی که مرورگر بسته شده "
3738
  "و یا کاربر به مدت سی دقیقه غیر فعال شده است."
3739
 
3740
- #: ../admin/wp-slimstat-admin.php:1007
3741
  msgid ""
3742
  "Any user who has left a comment on your blog, and is thus identified by "
3743
  "Wordpress as a returning visitor"
@@ -3745,11 +3837,11 @@ msgstr ""
3745
  "هر کاربری که در تارنامه شما نظر گذاشته توسط وردپرس به عنوان «بیننده دوباره» "
3746
  "شناخته میشود"
3747
 
3748
- #: ../admin/wp-slimstat-admin.php:1008
3749
  msgid "Unique IP"
3750
  msgstr "آی‌پی یکتا"
3751
 
3752
- #: ../admin/wp-slimstat-admin.php:1008
3753
  msgid ""
3754
  "Used to differentiate between multiple requests to download a file from one "
3755
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -3760,18 +3852,18 @@ msgstr ""
3760
  "درخواست از چند آی پی ادرس مختلف میباشد؛ چون این اندازه گیری فقط نشانگر آدرس "
3761
  "هر بازدید است، مفید میباشد ولی دقیق نیست."
3762
 
3763
- #: ../admin/wp-slimstat-admin.php:1009
3764
  msgid ""
3765
  "the originating IP address of a client connecting to a web server through an "
3766
  "HTTP proxy or load balancer"
3767
  msgstr ""
3768
  "ای پی منشا که کاربر را از طریق HTTP proxy و یا load balancer مرتبط کرده"
3769
 
3770
- #: ../admin/wp-slimstat-admin.php:1010
3771
  msgid "Direct Traffic"
3772
  msgstr "ترافیک مستقیم"
3773
 
3774
- #: ../admin/wp-slimstat-admin.php:1010
3775
  msgid ""
3776
  "All those people showing up to your Web site by typing in the URL of your "
3777
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -3780,11 +3872,11 @@ msgstr ""
3780
  " تمامی کاربرانی که با وارد کردن نشانی مستقیم تارنما و یا استفاده از بوک مارک "
3781
  "از تارنما بازدید میکنند."
3782
 
3783
- #: ../admin/wp-slimstat-admin.php:1011
3784
  msgid "Search Engine"
3785
  msgstr "موتور جستجو"
3786
 
3787
- #: ../admin/wp-slimstat-admin.php:1011
3788
  msgid ""
3789
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3790
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -3792,24 +3884,24 @@ msgstr ""
3792
  "ترافیک مرتبط با نتایج موتور جستجو (organic) و همچنین ترافیک بدست آمده توسط "
3793
  "تبلیغات در موتورهای جستجو اینجا درهم است"
3794
 
3795
- #: ../admin/wp-slimstat-admin.php:1012 ../admin/wp-slimstat-admin.php:1028
3796
  msgid "Keywords used by your visitors to find your website on a search engine"
3797
  msgstr ""
3798
  "کلمات کلیدی که کاربران شما به وسیله‌ی آن‌ها از موتورهای جستجو، پایگاه شما را "
3799
  "یافته‌اند."
3800
 
3801
- #: ../admin/wp-slimstat-admin.php:1013
3802
  msgid "SERP"
3803
  msgstr ""
3804
 
3805
- #: ../admin/wp-slimstat-admin.php:1013
3806
  msgid ""
3807
  "Short for search engine results page, the Web page that a search engine "
3808
  "returns with the results of its search. The value shown represents your rank "
3809
  "(or position) within that list of results"
3810
  msgstr " این مقدار نشان دهنده رتبه شما در فهرست نتایج موتور جستجو میباشد."
3811
 
3812
- #: ../admin/wp-slimstat-admin.php:1014
3813
  msgid ""
3814
  "Any program used for accessing a website; this includes browsers, robots, "
3815
  "spiders and any other program that was used to retrieve information from the "
@@ -3817,7 +3909,7 @@ msgid ""
3817
  msgstr ""
3818
  "هر برنامه که به تارنما دسترسی پیدا کند مثل مرورگر، روبات، خزنده، وغیره."
3819
 
3820
- #: ../admin/wp-slimstat-admin.php:1015
3821
  msgid ""
3822
  "A link from one domain to another is said to be outbound from its source "
3823
  "anchor and inbound to its target. This report lists all the links to other "
@@ -3827,27 +3919,27 @@ msgstr ""
3827
  "پیوند درونی محسوب میشود. این گزارش فهرستی از تمام پیوند ها به پایگاه های "
3828
  "دیگر و کاربران است."
3829
 
3830
- #: ../admin/wp-slimstat-admin.php:1022
3831
  msgid "Basic Filters"
3832
  msgstr "پالایه های اولیه"
3833
 
3834
- #: ../admin/wp-slimstat-admin.php:1025
3835
  msgid "User agent (Firefox, Chrome, ...)"
3836
  msgstr "مرورگر کاربر (فایرفاکس، کروم و ...)"
3837
 
3838
- #: ../admin/wp-slimstat-admin.php:1026
3839
  msgid "2-letter code (us, ru, de, it, ...)"
3840
  msgstr "علامت دو حرفی (us، ir، ...)"
3841
 
3842
- #: ../admin/wp-slimstat-admin.php:1027
3843
  msgid "IP"
3844
  msgstr "آی‌پی"
3845
 
3846
- #: ../admin/wp-slimstat-admin.php:1027
3847
  msgid "Visitor's public IP address"
3848
  msgstr "نشانی‌های آی‌پی عمومی بازدیدکنندگان"
3849
 
3850
- #: ../admin/wp-slimstat-admin.php:1029
3851
  msgid ""
3852
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
3853
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -3856,7 +3948,7 @@ msgstr ""
3856
  "لطفا به <a target=\"_blank\" href=\"http://msdn.microsoft.com/en-us/library/"
3857
  "ee825488(v=cs.20).aspx\"> فرهنگ زبان </a> برای اطلاع بیشتر مراجعه کنید"
3858
 
3859
- #: ../admin/wp-slimstat-admin.php:1030
3860
  msgid ""
3861
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
3862
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -3866,15 +3958,15 @@ msgstr ""
3866
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\"> "
3867
  "راهنما</a> مراجعه کنید"
3868
 
3869
- #: ../admin/wp-slimstat-admin.php:1031
3870
  msgid "URL accessed on your site"
3871
  msgstr "نشانی هایی که مورد بازدید قرار گرفته"
3872
 
3873
- #: ../admin/wp-slimstat-admin.php:1032
3874
  msgid "Complete address of the referrer page"
3875
  msgstr "نشانی کامل صفحه‌ی ارجاع ‌دهنده"
3876
 
3877
- #: ../admin/wp-slimstat-admin.php:1033
3878
  msgid ""
3879
  "Visitors' names according to the cookie set by Wordpress after they leave a "
3880
  "comment"
@@ -3882,26 +3974,26 @@ msgstr ""
3882
  "اسامی بیننده بر مبنای خوراکی که بعد از گذاشتن نظر توسط وردپرس اختصاص داده "
3883
  "میشود."
3884
 
3885
- #: ../admin/wp-slimstat-admin.php:1041
3886
  msgid "Advanced Filters"
3887
  msgstr "فیلترهای پیش‌رفته"
3888
 
3889
- #: ../admin/wp-slimstat-admin.php:1044
3890
  msgid "user agent version (9.0, 11, ...)"
3891
  msgstr "نسخه مرورگر کاربر"
3892
 
3893
- #: ../admin/wp-slimstat-admin.php:1045
3894
  msgid ""
3895
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
3896
  "all others"
3897
  msgstr ""
3898
  "۱=خزنده‌های موتورهای جستجو، ۲=دستگاه موبایل، ۳=خوراک‌خوان، ۰=همه‌ی چیزهای دیگر"
3899
 
3900
- #: ../admin/wp-slimstat-admin.php:1046
3901
  msgid "Pageview Attributes"
3902
  msgstr "خصوصیات بازدید"
3903
 
3904
- #: ../admin/wp-slimstat-admin.php:1046
3905
  msgid ""
3906
  "this field is set to <em>[pre]</em> if the resource has been accessed "
3907
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -3910,19 +4002,19 @@ msgstr ""
3910
  "این ناحیه برای تنظیمات <a target=\"_blank\" href=\"https://developer.mozilla."
3911
  "org/en/Link_prefetching_FAQ\"> صفحه‌بندی </a> و یا شیوه های مشابه است."
3912
 
3913
- #: ../admin/wp-slimstat-admin.php:1047
3914
  msgid "author associated to that post/page when the resource was accessed"
3915
  msgstr "نویسنده مرتبط با این ارسال یا صفحه وقتی این ماخذ دسترسی شد"
3916
 
3917
- #: ../admin/wp-slimstat-admin.php:1048
3918
  msgid "ID of the category/term associated to the resource, when available"
3919
  msgstr "شناسه دسته یا عبارت که با منبع مرتبط است، اگر موجود باشد"
3920
 
3921
- #: ../admin/wp-slimstat-admin.php:1049
3922
  msgid "visitor's originating IP address, if available"
3923
  msgstr "آی پی منشا که بیننده از آن ‌عازم شده، در صورت موجود بودن"
3924
 
3925
- #: ../admin/wp-slimstat-admin.php:1050
3926
  msgid ""
3927
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
3928
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -3935,15 +4027,15 @@ msgstr ""
3935
  "target=\"_blank\" href=\"http://codex.wordpress.org/Conditional_Tags\"> "
3936
  "نشانه های شرطی</a> در صفحه راهنما مراجعه کنید."
3937
 
3938
- #: ../admin/wp-slimstat-admin.php:1051
3939
  msgid "Screen Resolution"
3940
  msgstr "ابعاد صفحه نمایش"
3941
 
3942
- #: ../admin/wp-slimstat-admin.php:1051
3943
  msgid "viewport width and height (1024x768, 800x600, ...)"
3944
  msgstr "ابعاد صفحه نمایش (۱۰۲۴x۷۶۸، ۸۰۰x۶۰۰، ...)"
3945
 
3946
- #: ../admin/wp-slimstat-admin.php:1052
3947
  msgid ""
3948
  "generally used in conjunction with <em>is not empty</em>, identifies human "
3949
  "visitors"
@@ -3951,11 +4043,11 @@ msgstr ""
3951
  "معولا با ترکیب <em>خالی نیست</em> استفاده میشود و بیننده ها (انسان) را تشخیص "
3952
  "میدهد"
3953
 
3954
- #: ../admin/wp-slimstat-admin.php:1053
3955
  msgid "Date Filters"
3956
  msgstr "فیلترهای تاریخ"
3957
 
3958
- #: ../admin/wp-slimstat-admin.php:1053
3959
  msgid ""
3960
  "you can specify the timeframe by entering a number in the <em>interval</em> "
3961
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -3964,11 +4056,11 @@ msgstr ""
3964
  "با وارد کردن اعداد در این ناحیه میتوانید یک مدت زمانی تعیین کنید؛ برای محدود "
3965
  "کردن سال به روز از -1 استفاده کنید."
3966
 
3967
- #: ../admin/wp-slimstat-admin.php:1054
3968
  msgid "SERP Position"
3969
  msgstr "مکان SERP"
3970
 
3971
- #: ../admin/wp-slimstat-admin.php:1054
3972
  msgid ""
3973
  "set the filter to Referer contains cd=N&, where N is the position you are "
3974
  "looking for"
@@ -3976,15 +4068,15 @@ msgstr ""
3976
  "تعیین صافی برای ارجاعی هایی که شامل اِن میشوند، آنجا که اِن مکانی هست که به "
3977
  "مشخص میکنید."
3978
 
3979
- #: ../admin/wp-slimstat-admin.php:1081
3980
  msgid "Yes"
3981
  msgstr "بلی"
3982
 
3983
- #: ../admin/wp-slimstat-admin.php:1082
3984
  msgid "No"
3985
  msgstr "خیر"
3986
 
3987
- #: ../admin/wp-slimstat-admin.php:1083
3988
  msgid "Site Specific"
3989
  msgstr ""
3990
 
@@ -5229,97 +5321,138 @@ msgstr ""
5229
  msgid "c-xy"
5230
  msgstr "آدرس محلی"
5231
 
5232
- #: ../wp-slimstat.php:219 ../wp-slimstat.php:497
5233
- msgid "Pageview filtered by third-party code"
5234
  msgstr ""
5235
 
5236
- #: ../wp-slimstat.php:236
5237
- #, fuzzy
5238
- msgid "Malformed URL"
5239
  msgstr "کاربران را نادیده بگیر"
5240
 
5241
- #: ../wp-slimstat.php:255
5242
- msgid "Referrer is blacklisted"
5243
- msgstr ""
5244
-
5245
- #: ../wp-slimstat.php:333
5246
- msgid "Permalink is blacklisted"
5247
  msgstr ""
5248
 
5249
- #: ../wp-slimstat.php:344
5250
- msgid "Empty or not supported IP address format (IPv6)"
 
5251
  msgstr ""
5252
 
5253
- #: ../wp-slimstat.php:353
5254
- msgid "Logged in user not tracked"
5255
  msgstr ""
5256
 
5257
- #: ../wp-slimstat.php:361
5258
- msgid "User with given capability not tracked"
 
5259
  msgstr ""
5260
 
5261
- #: ../wp-slimstat.php:368
5262
  #, php-format
5263
- msgid "User %s is blacklisted"
5264
  msgstr ""
5265
 
5266
- #: ../wp-slimstat.php:388
5267
  #, php-format
5268
- msgid "Spammer %s not tracked"
5269
  msgstr ""
5270
 
5271
- #: ../wp-slimstat.php:417
 
 
 
 
 
5272
  #, php-format
5273
- msgid "IP address %s is blacklisted"
5274
  msgstr ""
5275
 
5276
- #: ../wp-slimstat.php:446
5277
  #, php-format
5278
- msgid "Country %s is blacklisted"
5279
  msgstr ""
5280
 
5281
- #: ../wp-slimstat.php:455
5282
  #, fuzzy
5283
- msgid "Prefetch requests are ignored"
5284
  msgstr "نادیده گرفتن درخواست صفحه‌بندی"
5285
 
5286
- #: ../wp-slimstat.php:471
5287
  #, fuzzy
5288
- msgid "Bot not tracked"
5289
  msgstr "روبات یا خزنده"
5290
 
5291
- #: ../wp-slimstat.php:480
5292
  #, php-format
5293
- msgid "Browser %s is blacklisted"
 
 
 
 
5294
  msgstr ""
5295
 
5296
- #: ../wp-slimstat.php:1206
5297
  msgid "Invalid payload string. Try clearing your WordPress cache."
5298
  msgstr ""
5299
 
5300
- #: ../wp-slimstat.php:1216
5301
  msgid "Invalid data signature. Try clearing your WordPress cache."
5302
  msgstr ""
5303
 
5304
- #: ../wp-slimstat.php:1286
5305
  #, fuzzy
5306
  msgid "There was an error downloading the MaxMind Geolite DB:"
5307
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
5308
 
5309
- #: ../wp-slimstat.php:1294 ../wp-slimstat.php:1303
5310
  #, fuzzy
5311
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5312
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
5313
 
5314
- #: ../wp-slimstat.php:1298
5315
  msgid "Function gzopen not defined. Aborting."
5316
  msgstr ""
5317
 
5318
- #: ../wp-slimstat.php:1308
5319
  #, fuzzy
5320
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5321
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
5322
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5323
  #, fuzzy
5324
  #~ msgid "Tracking"
5325
  #~ msgstr " حالت ردگیری"
@@ -5349,9 +5482,6 @@ msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
5349
  #~ msgid "External Pages"
5350
  #~ msgstr "همه مشاهدات صفحات"
5351
 
5352
- #~ msgid "Reset Reports"
5353
- #~ msgstr "تنظیم مجدد گزارش ها"
5354
-
5355
  #~ msgid "Recent Screen Resolutions"
5356
  #~ msgstr "ابعاد نمایش‌گرهای اخیر"
5357
 
@@ -5388,12 +5518,6 @@ msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
5388
  #~ msgid "Views"
5389
  #~ msgstr "مشاهده ها"
5390
 
5391
- #~ msgid "Enable Tracking"
5392
- #~ msgstr "فعال‌سازی رد‌گیری"
5393
-
5394
- #~ msgid "Enable Spy Mode"
5395
- #~ msgstr "فعال کردن دید دزدکی"
5396
-
5397
  #~ msgid "Javascript"
5398
  #~ msgstr "جاوااسکریپت"
5399
 
@@ -5805,9 +5929,6 @@ msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
5805
  #~ msgid "IP Addresses"
5806
  #~ msgstr "نشانی‌های آی‌پی"
5807
 
5808
- #~ msgid "Users"
5809
- #~ msgstr "کاربران"
5810
-
5811
  #~ msgid "Read access"
5812
  #~ msgstr "دست‌رسی خواندن"
5813
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
+ "POT-Creation-Date: 2015-12-24 09:21-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
7
  "Language-Team: Salman <salmanmp@gmail.com>\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../admin/config/index.php:50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  msgid ""
21
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
22
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
25
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> نقش و توانایی</a> "
26
  "مراجعه کنید."
27
 
28
+ #: ../admin/config/index.php:65
29
  msgid "Read access: username not found"
30
  msgstr "دست‌رسی خواندن: شناسه کاربری یافت نشد"
31
 
32
+ #: ../admin/config/index.php:75 ../admin/config/index.php:100
33
  msgid ""
34
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
35
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
39
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> نقش و توانایی</a> "
40
  "مراجعه کنید."
41
 
42
+ #: ../admin/config/index.php:90
43
  msgid "Config access: username not found"
44
  msgstr "دست‌رسی پیکربندی: شناسه کاربری یافت نشد"
45
 
46
+ #: ../admin/config/index.php:109
47
+ msgid "Basic"
48
+ msgstr ""
49
 
50
+ #: ../admin/config/index.php:111 ../admin/config/index.php:132
51
  msgid "Tracker"
52
  msgstr "ره‌گیری"
53
 
54
+ #: ../admin/config/index.php:112
55
+ msgid "Enable Tracking"
56
+ msgstr "فعال‌سازی رد‌گیری"
 
57
 
58
+ #: ../admin/config/index.php:112
59
  #, fuzzy
60
  msgid "Turn the tracker on or off, while keeping the reports accessible."
61
  msgstr ""
62
  "رهگیری را روشن و یا خاموش میکند ولی گزارش ها در دسترس خواهد بود که در صورت "
63
  "غیر فعال کردن افزونه بدین گونه نخواهد بود."
64
 
65
+ #: ../admin/config/index.php:113
 
 
 
 
 
 
 
 
 
66
  msgid "Tracking Mode"
67
  msgstr " حالت ردگیری"
68
 
69
+ #: ../admin/config/index.php:113
70
  #, fuzzy
71
  msgid ""
72
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
81
  "پذیرفته نمیشود. اثر جانبی این حالت این است که بیشتر هرز ها، موتورهای جستجو و "
82
  "دیگر خزنده ها نیز دیگر رهگیری نمیشوند."
83
 
84
+ #: ../admin/config/index.php:113
85
+ msgid "Client Side"
86
  msgstr ""
87
 
88
+ #: ../admin/config/index.php:113
89
  #, fuzzy
90
+ msgid "Server Side"
91
  msgstr "طرف دامنه"
92
 
93
+ #: ../admin/config/index.php:114
94
  msgid "Stealth Mode"
95
  msgstr ""
96
 
97
+ #: ../admin/config/index.php:114
98
  msgid ""
99
  "Do not add the javascript tracking code to your pages, if tracking mode is "
100
  "set to Server. Please note: if enabled, this will prevent the tracker from "
102
  "etc. This option is ignored is Tracking Mode is set to Client."
103
  msgstr ""
104
 
105
+ #: ../admin/config/index.php:114 ../admin/view/wp-slimstat-reports.php:1359
106
+ msgid "Off"
107
+ msgstr ""
108
+
109
+ #: ../admin/config/index.php:114
110
+ msgid "On"
111
+ msgstr ""
112
+
113
+ #: ../admin/config/index.php:115
114
  #, fuzzy
115
  msgid "Admin Pages"
116
  msgstr "نظارت صفحه مدیریت"
117
 
118
+ #: ../admin/config/index.php:115
119
  msgid "Enable this option to track your users' activity within the admin."
120
  msgstr "برای رهگیری کاربران در ناحیه مدیریتی ین گزینه را فعال کنید."
121
 
122
+ #: ../admin/config/index.php:115
123
  #, fuzzy
124
  msgid "Track"
125
  msgstr "ره‌گیری"
126
 
127
+ #: ../admin/config/index.php:115
128
  #, fuzzy
129
  msgid "Do not track"
130
  msgstr "ناشامل"
131
 
132
+ #: ../admin/config/index.php:117
133
  msgid "WordPress Integration"
134
  msgstr "تلفیق کردن وردپرس"
135
 
136
+ #: ../admin/config/index.php:118
137
  msgid "Menu Position"
138
  msgstr "محل گزینگان"
139
 
140
+ #: ../admin/config/index.php:118
141
  #, fuzzy
142
  msgid ""
143
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
144
  "admin bar (if visible)."
145
  msgstr "بین گزینگان مدیریتی ثابت و یا گزینگان مدیریتی ابشاری انتخاب کنید."
146
 
147
+ #: ../admin/config/index.php:118
148
  msgid "Side Menu"
149
  msgstr "گزینگان کناره"
150
 
151
+ #: ../admin/config/index.php:118
152
  msgid "Admin Bar"
153
  msgstr " منوی مدیریت"
154
 
155
+ #: ../admin/config/index.php:119
156
  #, fuzzy
157
  msgid "Posts and Pages"
158
  msgstr "یک ستون به نوشته‌ها اضافه کن"
159
 
160
+ #: ../admin/config/index.php:119
161
  #, fuzzy
162
  msgid ""
163
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
164
+ "per post within the timeframe specified here below."
165
  msgstr ""
166
  "یک ستون جدید به صفحه «ویرایش ارسال» اضافه می‌کند، که شامل تعداد بازدید برای "
167
  "هر ارسال میباشد (ممکن است مدت تحویل را زیاد کند)"
168
 
169
+ #: ../admin/config/index.php:120
 
 
 
 
 
 
 
 
 
 
170
  msgid "Report Interval"
171
  msgstr ""
172
 
173
+ #: ../admin/config/index.php:120
174
  msgid ""
175
  "Enter the time range, in days, that should be used to calculate the value "
176
  "here above."
177
  msgstr ""
178
 
179
+ #: ../admin/config/index.php:121
180
  #, fuzzy
181
  msgid "Report Type"
182
  msgstr "گزارش ها"
183
 
184
+ #: ../admin/config/index.php:121
185
  msgid ""
186
  "Select what kind of information you would like to see displayed on the Posts "
187
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
188
  "IPs consider only one hit per user in the given time range."
189
  msgstr ""
190
 
191
+ #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:100
192
+ #: ../admin/view/wp-slimstat-reports.php:109
193
+ #: ../admin/view/wp-slimstat-reports.php:1375
194
+ #: ../admin/view/wp-slimstat-reports.php:1533
195
  msgid "Pageviews"
196
  msgstr "مشاهدات صفحات"
197
 
198
+ #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:110
199
+ #: ../admin/view/wp-slimstat-reports.php:286
200
+ #: ../admin/view/wp-slimstat-reports.php:526
201
+ #: ../admin/view/wp-slimstat-reports.php:1390
202
+ #: ../admin/view/wp-slimstat-reports.php:1435
203
  msgid "Unique IPs"
204
  msgstr "آی‌پی‌های یکتا"
205
 
206
+ #: ../admin/config/index.php:122
207
+ msgid "Dashboard Widgets"
208
+ msgstr ""
209
+
210
+ #: ../admin/config/index.php:122
211
+ msgid ""
212
+ "Choose if you want to have the most important reports on your WordPress "
213
+ "Dashboard. Use the Screen Options dropdown to select which ones to display."
214
+ msgstr ""
215
+
216
+ #: ../admin/config/index.php:123
217
  #, fuzzy
218
  msgid "Hide Add-ons"
219
  msgstr "افزونه ها"
220
 
221
+ #: ../admin/config/index.php:123
222
  msgid ""
223
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
224
  "from the list of plugins in WordPress. Please note that you will still "
225
  "receive updates for hidden add-ons."
226
  msgstr ""
227
 
228
+ #: ../admin/config/index.php:125
229
  msgid "Database"
230
  msgstr "پایگاه داده"
231
 
232
+ #: ../admin/config/index.php:126
233
  msgid "Retain data for"
234
  msgstr "نگاه داشتن داده برای"
235
 
236
+ #: ../admin/config/index.php:126
237
  #, fuzzy
238
  msgid ""
239
  "Clean-up log entries older than the number of days specified here above. "
243
  "ورودی هایی که از تعداد روزها زیر بیشتر باشد حذف میشوند. صفر وارد کنید اگر "
244
  "مایل به حفظ داده ها صرفنظر از تاریخ آن هستید."
245
 
246
+ #: ../admin/config/index.php:126
247
  msgid "Next clean-up on"
248
  msgstr "تمیزکاری بعدی در"
249
 
250
+ #: ../admin/config/index.php:126
251
  #, fuzzy, php-format
252
  msgid ""
253
  "Entries logged on or before %s will be archived or deleted according to the "
254
  "option here below."
255
  msgstr "ردیف‌های مربوط به روز %s و قبل از آن حذف خواهند شد."
256
 
257
+ #: ../admin/config/index.php:126 ../admin/view/index.php:102
258
  #: ../admin/view/wp-slimstat-db.php:79
259
+ #: ../admin/view/wp-slimstat-reports.php:1359
260
  msgid "days"
261
  msgstr "روز"
262
 
263
+ #: ../admin/config/index.php:127
264
  #, fuzzy
265
  msgid "Delete records"
266
  msgstr "اطلاعات"
267
 
268
+ #: ../admin/config/index.php:127
269
  msgid ""
270
  "If DB space is not an issue, you can decide to archive older records in "
271
  "another table, instead of deleting them. This way performance is preserved, "
275
  "is uninstalled. Make sure to backup your data before you proceed."
276
  msgstr ""
277
 
278
+ #: ../admin/config/index.php:134
279
+ #, fuzzy
280
+ msgid "Advanced Options"
281
+ msgstr "فیلترهای پیش‌رفته"
282
 
283
+ #: ../admin/config/index.php:135
284
+ msgid "Session Duration"
285
+ msgstr "مدت جلسه"
286
+
287
+ #: ../admin/config/index.php:135
288
+ #, fuzzy
289
+ msgid ""
290
+ "How many seconds should a human session last? Google Analytics sets it to "
291
+ "1800 seconds."
292
  msgstr ""
293
+ "چند ثانیه جلسه (انسان) در پایگاه به طول انجامد؟ گوگل آنالیتیک این مقدار را "
294
+ "۱۸۰۰ ثانیه در نظر می‌گیرد."
295
 
296
+ #: ../admin/config/index.php:135 ../admin/config/index.php:205
297
+ msgid "seconds"
298
+ msgstr "ثانیه"
299
 
300
+ #: ../admin/config/index.php:136
301
+ msgid "Extend Session"
302
+ msgstr "گسترش جلسه"
303
+
304
+ #: ../admin/config/index.php:136
305
+ msgid "Extend the duration of a session each time the user visits a new page."
306
  msgstr ""
307
+ "هر بار که کاربر یک صفحه جدید را دیدن می‌کند مدت جلسه را به این مقدار گسترش "
308
+ "می‌دهد."
309
 
310
+ #: ../admin/config/index.php:137
311
+ msgid "Enable CDN"
312
+ msgstr "فعال‌سازی CDN"
 
313
 
314
+ #: ../admin/config/index.php:137
315
  msgid ""
316
+ "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
317
+ "by serving our tracking code from their fast and reliable network (free "
318
+ "service)."
319
  msgstr ""
320
+ "از سی دی اِن <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a> "
321
+ "استفاده کنید و از خدمات ردگیری ما در شبکه سریع و مطمئن بهره مند شوید "
322
+ "(رایگان)."
323
 
324
+ #: ../admin/config/index.php:138
325
+ msgid "Extensions to Track"
326
+ msgstr "پسوندهایی که رهیابی شوند"
 
327
 
328
+ #: ../admin/config/index.php:138
329
  msgid ""
330
+ "List all the file extensions that you want to be treated as Downloads. "
331
+ "Please note that links pointing to external resources (i.e. PDFs on a "
332
+ "different website) are considered Downloads and not Outbound Links (and "
333
+ "tracked as such), if their extension matches one of the ones listed here "
334
+ "below."
335
  msgstr ""
336
+ "فهرست تمامی پسونده هایی که میخواهد مانند بارگیری حساب شود. لطفا در نظر داشته "
337
+ "باشید که پیوندهای منابع خارجی (مثل پی دی اف در پایگاه دیگر) بارگیری محسوب "
338
+ "میشود و نه پیوند بیرونی اگر پسوند آنها با این فهرست تطبیق داشته باشد."
339
 
340
+ #: ../admin/config/index.php:140
341
  #, fuzzy
342
+ msgid "Internal and Outbound Links"
343
+ msgstr "پیوندهای بیرونی اخیر"
344
 
345
+ #: ../admin/config/index.php:141
346
+ msgid "Track Outbound Clicks"
347
+ msgstr "ره‌گیری کلیک های بیرونی"
348
+
349
+ #: ../admin/config/index.php:141
350
  msgid ""
351
+ "Track when your visitors click on link to external websites. This option "
352
+ "required Spy Mode to be enabled."
353
  msgstr ""
354
+ "پیوندهایی که بازدیدکننده را به خارج از پایگاه ها میبرد رهگیری کنید. این "
355
+ "گزینه نیاز به فعال کردن دید دزدکی دارد."
356
 
357
+ #: ../admin/config/index.php:142
358
  #, fuzzy
359
+ msgid "Track Coordinates"
360
+ msgstr " حالت ردگیری"
361
 
362
+ #: ../admin/config/index.php:142
 
363
  msgid ""
364
+ "Collect mouse coordinates and other information for clicks on internal "
365
+ "links. Strongly recommended if you're using the heatmap add-on. By default, "
366
+ "this information is only collected for external links."
367
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
368
 
369
+ #: ../admin/config/index.php:143
370
+ msgid "No Callback"
371
  msgstr ""
372
 
373
+ #: ../admin/config/index.php:143
374
  msgid ""
375
+ "Track the event but do not invoke the callback function on links marked with "
376
+ "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
377
+ "attribute contains one of these strings (separated by comma). Useful to "
378
+ "prevent conflicts with lightbox and similar libraries."
379
  msgstr ""
380
 
381
+ #: ../admin/config/index.php:144
382
+ msgid "Do Not Track"
383
+ msgstr ""
384
 
385
+ #: ../admin/config/index.php:144
386
+ msgid ""
387
+ "Do not track links marked with one of these class names, <em>rel</em> "
388
+ "attributes or whose <em>href</em> attribute contains one of these strings "
389
+ "(separated by comma)."
390
+ msgstr ""
391
 
392
+ #: ../admin/config/index.php:146
393
+ msgid "Pages not belonging to this site"
394
+ msgstr ""
395
 
396
+ #: ../admin/config/index.php:147
397
+ msgid ""
398
+ "Add the following code to all the non-WP pages you want to track, right "
399
+ "before the closing BODY tag. Please make sure to change the protocol of all "
400
+ "the URLs to HTTPS, if you external site is served over a secure channel."
401
+ msgstr ""
402
 
403
+ #: ../admin/config/index.php:157
404
  #, fuzzy
405
+ msgid "Allow External Domains"
406
+ msgstr "پیوند خارجی خطرناک"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
407
 
408
+ #: ../admin/config/index.php:157
 
409
  msgid ""
410
+ "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
411
+ "header is present on the requested resource, when using the external "
412
+ "tracking code here above, list the domains (complete with scheme, separated "
413
+ "by commas) you would like to allow. For example: <code>http://my.domain.ext</"
414
+ "code> (no trailing slash). Please see <a href='http://www.w3.org/TR/cors/"
415
+ "#security' target='_blank'>this W3 resource</a> for more information on the "
416
+ "security implications of allowing CORS requests."
417
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
418
 
419
+ #: ../admin/config/index.php:158 ../admin/config/index.php:180
420
+ #: ../admin/config/index.php:208
421
  msgid "Miscellaneous"
422
  msgstr "متفرقه"
423
 
424
+ #: ../admin/config/index.php:159
425
+ msgid "Enable UAN"
426
+ msgstr "فعال‌سازی UAN"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
427
 
428
+ #: ../admin/config/index.php:159
429
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
430
  msgid ""
431
+ "Send anonymous data about user agents to our server for analysis. This "
432
+ "allows us to contribute to the <a href='http://browscap.org/' "
433
+ "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
434
+ "Slimstat's browser detection functionality. It also enables our transparent "
435
+ "ads network. No worries, your site will not be affected in any way."
 
436
  msgstr ""
437
+ " میتوانید اطلاعات کابر مشکوک را برای تحلیل به صورت ناشناس برای ما ارسال "
438
+ "کنید. با کمک کردن به <a href='http://browscap.co/' target='_blank'>BrowsCap "
439
+ "opensource project</a> توانایی برنامه برای شناختن مرورگرها را بیشتر میشود."
440
 
441
+ #: ../admin/config/index.php:164
442
  msgid "Filters"
443
  msgstr "فیلترها"
444
 
445
+ #: ../admin/config/index.php:166
446
+ #, fuzzy
447
+ msgid "Do not track settings"
448
+ msgstr "ناشامل"
449
 
450
+ #: ../admin/config/index.php:167
451
  msgid "Track Registered Users"
452
  msgstr "ره‌گیری کاربران ثبت شده"
453
 
454
+ #: ../admin/config/index.php:167
455
  msgid "Enable this option to track logged in users."
456
  msgstr "اگر می‌خواهید کاربران وارد شده را ره‌گیری کنید این گزینه را فعال کنید."
457
 
458
+ #: ../admin/config/index.php:168
459
  msgid "Blacklist by Username"
460
  msgstr " فهرست سیاه با نشانی آی‌پی"
461
 
462
+ #: ../admin/config/index.php:168
463
+ #, fuzzy
464
  msgid ""
465
  "List all the usernames you don't want to track, separated by commas. Please "
466
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
467
+ "sensitive. Wildcards: <code>*</code> matches 'any string, including the "
468
+ "empty string', <code>!</code> matches 'any character'. For example, "
469
+ "<code>user*</code> will match user12 and userfoo, <code>u*100</code> will "
470
+ "match user100 and uber100, <code>user!0</code> will match user10 and user90."
471
  msgstr ""
472
+ "فهرست تمامی نشانی هایی در تارنمای شما که نمیخواهید رهگیری کنید، تفکیک شده با "
473
+ "ویرگول. نام دامنه را وارد نکنید. مثلا: <em>/about, ?p=1</em>, etc. "
474
+ "Wildcards: <code>*</code> matches 'any string, including the empty string', "
475
+ "<code>!</code> matches 'any character'. For example, <code>/abou*</code> "
476
+ "will match /about and /abound, <code>/abo*t</code> will match /aboundant "
477
+ "and /about, <code>/abo!t</code> will match /about and /abort. Strings are "
478
+ "case-insensitive."
479
 
480
+ #: ../admin/config/index.php:169
481
  msgid "Blacklist by IP Address"
482
  msgstr " فهرست سیاه با نشانی آی‌پی"
483
 
484
+ #: ../admin/config/index.php:169
485
  #, fuzzy
486
  msgid ""
487
  "List all the IP addresses you don't want to track, separated by commas. Each "
495
  "Classless_Inter-Domain_Routing' target='_blank'>CIDR</a> تعریف شود (مثل "
496
  "<em>192.168.0.0/24</em>) و اگر نگارش صحیح نباشد رهگیری به درستی انجام نمیشود."
497
 
498
+ #: ../admin/config/index.php:170
499
  msgid "Blacklist by Capability"
500
  msgstr "کاربران بر اساس توانایی"
501
 
502
+ #: ../admin/config/index.php:170
503
  msgid ""
504
  "Users having at least one of the <a href='http://codex.wordpress.org/"
505
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
509
  "Roles_and_Capabilities' target='_new'> خواص</a> زیر را داشته باشند ردگیری "
510
  "نمیشوند (به بزرگ و کوچک بودن را دقت داشته باشید)."
511
 
512
+ #: ../admin/config/index.php:172
513
  msgid "Profiling"
514
  msgstr "نمایه"
515
 
516
+ #: ../admin/config/index.php:173
517
  msgid "Ignore Spammers"
518
  msgstr "نادیده گرفتن هرزها"
519
 
520
+ #: ../admin/config/index.php:173
521
  msgid ""
522
  "Enable this option if you don't want to track visits from users identified "
523
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
528
  "Akismet) را رهگیری کنید این گزینه را فعال کنید. بازدید های کاربرانی که بعدا "
529
  "به صورت هرز شناخته شوند از پایگاه داده ها نیز حذف میشوند."
530
 
531
+ #: ../admin/config/index.php:174
532
  #, fuzzy
533
  msgid "Ignore Bots"
534
  msgstr "کاربران را نادیده بگیر"
535
 
536
+ #: ../admin/config/index.php:174
537
  msgid ""
538
  "Turn on this feature if you want to have the accuracy level of server-side "
539
  "tracking, but not the inconvenience of getting your database clogged with "
541
  "note that in Client mode, bots are ignored regardless of this setting."
542
  msgstr ""
543
 
544
+ #: ../admin/config/index.php:175
545
  msgid "Permalinks"
546
  msgstr "پیوندهای یکتا"
547
 
548
+ #: ../admin/config/index.php:175
549
  msgid ""
550
  "List all the URLs on your website that you don't want to track, separated by "
551
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
563
  "and /about, <code>/abo!t</code> will match /about and /abort. Strings are "
564
  "case-insensitive."
565
 
566
+ #: ../admin/config/index.php:176
567
  msgid "Countries"
568
  msgstr "کشورها"
569
 
570
+ #: ../admin/config/index.php:176
571
  msgid ""
572
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
573
  "track, separated by commas."
575
  "کد کشورهایی که مایل به رهگیری نیستید، تفکیک شده با ویرگول مثل <code>en-us, "
576
  "it, es</code>"
577
 
578
+ #: ../admin/config/index.php:177
579
  msgid "User Agents"
580
  msgstr "مرورگرهای کاربران"
581
 
582
+ #: ../admin/config/index.php:177
583
  msgid ""
584
  "Browsers (user agents) you don't want to track, separated by commas. You can "
585
  "specify the browser's version adding a slash after the name (i.e. "
594
  "Strings are case-insensitive.مرورگرهایی که نمیخواهید رهگیری کنید، تفکیک شده "
595
  "با ویرگول. میتوانید نسخه مرورگر را نیز مشخص کنید. مثلا <em>Firefox/3.6</em>. "
596
 
597
+ #: ../admin/config/index.php:178
598
  msgid "Referring Sites"
599
  msgstr "سایت ارجاع دهنده"
600
 
601
+ #: ../admin/config/index.php:178
602
  msgid ""
603
  "Referring URLs that you don't want to track, separated by commas: "
604
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
614
  "insensitive. Include either a wildcard or the protocol you want to filter "
615
  "(http://, https://)."
616
 
617
+ #: ../admin/config/index.php:181
618
+ msgid "Enable Privacy Mode"
619
+ msgstr "فعال کردن حالت حریم"
620
+
621
+ #: ../admin/config/index.php:181
622
+ msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
623
+ msgstr "این گزینه نشانی آی‌پی بیننده را طبق قوانین حریم خصوصی اروپا پنهان میکند"
624
+
625
+ #: ../admin/config/index.php:182
626
+ msgid "Ignore Prefetch Requests"
627
+ msgstr "نادیده گرفتن درخواست صفحه‌بندی"
628
+
629
+ #: ../admin/config/index.php:182
630
  #, fuzzy
631
+ msgid ""
632
+ "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
633
+ "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
634
+ "target='_blank'>Link Prefetching functionality</a>."
635
+ msgstr ""
636
+ "جلوگیری کردن از ردگیری بازدیدهایی که توسط <a href='https://developer.mozilla."
637
+ "org/en/Link_prefetching_FAQ' target='_blank'>صفحه‌بندی</a> برنامه Firefox "
638
+ "صورت میگیرد."
639
 
640
+ #: ../admin/config/index.php:187 ../admin/config/index.php:220
641
+ msgid "Reports"
642
+ msgstr "گزارش ها"
643
+
644
+ #: ../admin/config/index.php:189
645
+ msgid "Formats and Conversions"
646
+ msgstr ""
647
+
648
+ #: ../admin/config/index.php:190
649
+ msgid "Number Format"
650
+ msgstr "نگارش اعداد"
651
+
652
+ #: ../admin/config/index.php:190
653
+ #, fuzzy
654
+ msgid "Choose the number format you want to use for your reports."
655
+ msgstr ""
656
+ "نگارش مناسب برای ملاحظه گزارش اعداد را نتخاب کنید، امریکایی یا اروپایی."
657
 
658
+ #: ../admin/config/index.php:191
659
+ #, fuzzy
660
+ msgid "Date Format"
661
+ msgstr "داده و نگارش ها"
662
+
663
+ #: ../admin/config/index.php:191
664
  msgid ""
665
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
666
+ "Format</a> to use when displaying a pageview's date."
667
  msgstr ""
 
 
668
 
669
+ #: ../admin/config/index.php:192
670
  #, fuzzy
671
+ msgid "Time Format"
672
+ msgstr "نگارش اعداد"
673
 
674
+ #: ../admin/config/index.php:192
675
  msgid ""
676
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
677
+ "Format</a> to use when displaying a pageview's time."
678
+ msgstr ""
679
+
680
+ #: ../admin/config/index.php:193
681
+ #, fuzzy
682
+ msgid "Use Display Name"
683
+ msgstr "نمایش نام صفحه نمایش"
684
+
685
+ #: ../admin/config/index.php:193
686
+ msgid ""
687
+ "By default, users are listed by their usernames. Use this option to "
688
+ "visualize their display names instead."
689
  msgstr ""
690
+ "به طور پیش فرظ، کاربران با نام کاربری فهرست بندی میشوند. این گزینه کاربران "
691
+ "را با نام فهرست بندی میکند."
692
+
693
+ #: ../admin/config/index.php:194
694
+ #, fuzzy
695
+ msgid "Use Titles"
696
+ msgstr "نمایش عناوین"
697
+
698
+ #: ../admin/config/index.php:194
699
+ #, fuzzy
700
+ msgid ""
701
+ "Slimstat converts your permalinks into post, page and category titles. "
702
+ "Disable this feature if you need to see the URL in your reports."
703
+ msgstr ""
704
+ " تمامی پیوندهای یکتا را به ارسال و صفحه تبدیل میکند. این ویژگی را غیرفعال "
705
+ "کنید اگر در گزارش به نشانی نیاز دارید"
706
+
707
+ #: ../admin/config/index.php:195
708
+ msgid "Convert IP Addresses"
709
+ msgstr "تبدیل نشانی آی‌پی"
710
+
711
+ #: ../admin/config/index.php:195
712
+ msgid "Display provider names instead of IP addresses."
713
+ msgstr "نمایش خدمات دهنده ها به جای ای پی"
714
+
715
+ #: ../admin/config/index.php:197
716
+ msgid "Functionality"
717
+ msgstr "کاربردی"
718
 
719
  #: ../admin/config/index.php:198
720
+ msgid "SlimScroll"
721
  msgstr ""
722
 
723
  #: ../admin/config/index.php:198
724
  msgid ""
725
+ "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
726
+ "scrollbar."
 
 
727
  msgstr ""
728
 
729
  #: ../admin/config/index.php:199
730
+ msgid "Expand Details"
731
+ msgstr "گسترش جزئیات"
732
 
733
  #: ../admin/config/index.php:199
734
+ msgid "Expand each row's details by default, insted of on mousehover."
735
+ msgstr "گشترش جزئیات‌ هر سطر به طور پیش فرظ، به جای رویت با توقف اشاره گر"
736
+
737
+ #: ../admin/config/index.php:200 ../admin/config/index.php:206
738
+ msgid "Rows to Display"
739
+ msgstr "نمایش ردیف ها"
740
+
741
+ #: ../admin/config/index.php:200
742
+ msgid "Specify the number of items in each report."
743
+ msgstr "تعداد موردها در هر گزارش را مشخص کنید."
744
+
745
+ #: ../admin/config/index.php:201 ../admin/view/wp-slimstat-db.php:101
746
+ #, fuzzy
747
+ msgid "Max Results"
748
+ msgstr "نتایج محدود به"
749
+
750
+ #: ../admin/config/index.php:201
751
  msgid ""
752
+ "Decide how many records should be retrieved from the database in total. "
753
+ "Depending on your server configuration, you may want to fine tune this value "
754
+ "to avoid exceeding your PHP memory limit."
755
  msgstr ""
756
 
757
  #: ../admin/config/index.php:202
758
+ msgid "IP Lookup"
759
+ msgstr "ره‌گیری بر اساس نشانی آی‌پی"
760
 
761
  #: ../admin/config/index.php:202
762
+ msgid "Customize the Geolocation service to be used in the reports."
763
+ msgstr "خدمات مکان-جفرافی برای گزارش ها را دلخواه کنید. "
764
 
765
+ #: ../admin/config/index.php:204
766
+ msgid "Activity Log"
767
+ msgstr "فهرست فعالیت ها"
768
 
769
+ #: ../admin/config/index.php:205
770
+ msgid "Live Stream"
771
+ msgstr "پخش زنده"
772
+
773
+ #: ../admin/config/index.php:205
774
  #, fuzzy
775
  msgid ""
776
+ "Enable the Live view, which refreshes the Activity Log every X seconds. "
777
+ "Enter <strong>0</strong> (number zero) to deactivate this feature."
 
778
  msgstr ""
779
+ "فعال کردن «نمای زنده» صفحه «همین حالا» را هر چند ثانیه تازه سازی میکند. برای "
780
+ "فیرفعال کردن صفر وارد کنید."
 
781
 
782
+ #: ../admin/config/index.php:206
783
+ #, fuzzy
784
+ msgid "Specify the number of items in the Activity Log."
785
+ msgstr " تعداد موردها در فهرست صفحه «همین حالا» را مشخص کنید"
786
+
787
+ #: ../admin/config/index.php:209
788
+ msgid "Custom CSS"
789
+ msgstr "سی‌اس‌اس دلخواه"
790
+
791
+ #: ../admin/config/index.php:209
792
+ #, fuzzy
793
+ msgid ""
794
+ "Paste here your custom stylesheet to personalize the way your reports look. "
795
+ "<a href='https://slimstat.freshdesk.com/support/solutions/"
796
+ "articles/5000528528-how-can-i-change-the-colors-associated-to-color-coded-"
797
+ "pageviews-known-user-known-visitors-search-e' target='_blank'>Check the FAQ</"
798
+ "a> for more information on how to use this setting."
799
+ msgstr ""
800
+ "سی‌اس‌اس دلخواه خود را اینجا وارد کنید و گزارش ها را شخصی کنید. برای اطلاع "
801
+ "بیشتر به<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
802
+ "target='_blank'> سوالهای رایج</a> مراجعه کنید."
803
+
804
+ #: ../admin/config/index.php:210
805
+ #, fuzzy
806
+ msgid "Chart Colors"
807
+ msgstr "کنترل‌های نمودار"
808
+
809
+ #: ../admin/config/index.php:210
810
+ msgid ""
811
+ "Customize the look and feel of your charts by assigning personalized colors "
812
+ "to each metric. List 4 hex colors separated by commas, strictly in the "
813
+ "following order: metric 1 previous, metric 2 previous, metric 1 current, "
814
+ "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
815
+ msgstr ""
816
 
817
  #: ../admin/config/index.php:211
818
+ msgid "Show User Agent"
819
+ msgstr "نمایش عامل کاربر "
820
+
821
+ #: ../admin/config/index.php:211
822
+ msgid ""
823
+ "Choose if you want to see the browser name or a complete user agent string "
824
+ "when hovering on browser icons."
825
+ msgstr ""
826
+ " این گزینه را انتخاب کنید اگر میخواهید اسم مرورگر یا نام کامل کاربر را با "
827
+ "توقف اشاره گر بر روی نقشک ملاحظه کنید."
828
+
829
+ #: ../admin/config/index.php:212
830
+ #, fuzzy
831
+ msgid "Enable SOV"
832
+ msgstr "فعال‌سازی CDN"
833
+
834
+ #: ../admin/config/index.php:212
835
+ msgid ""
836
+ "In linguistic typology, a subject-object-verb (SOV) language is one in which "
837
+ "the subject, object, and verb of a sentence appear in that order, like in "
838
+ "Japanese."
839
+ msgstr ""
840
+
841
+ #: ../admin/config/index.php:213
842
+ msgid "Social Analytics"
843
+ msgstr ""
844
+
845
+ #: ../admin/config/index.php:213
846
+ msgid ""
847
+ "Thanks to a <a href='http://getsocial.io/enterprise' "
848
+ "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
849
+ "set of analytics for social media where you can identify top performing "
850
+ "posts. Track social sharing to understand which of your posts are generating "
851
+ "more engagement. When this option is enabled, Slimstat sends a list of all "
852
+ "your posts's URLs to their service for analysis once daily."
853
+ msgstr ""
854
+
855
+ #: ../admin/config/index.php:218
856
+ msgid "Access Control"
857
+ msgstr ""
858
+
859
+ #: ../admin/config/index.php:221
860
  msgid "Restrict Authors"
861
  msgstr "محدود کردن نویسنده‌ها"
862
 
863
+ #: ../admin/config/index.php:221
864
  #, fuzzy
865
  msgid ""
866
  "Enable this option if you want your authors to only see stats related to "
869
  "اگر میخواهید نویسنده ها فقط آمار مربوط به محتوای خود را رویت کنند این گزینه "
870
  "را فعال کنید."
871
 
872
+ #: ../admin/config/index.php:222 ../admin/config/index.php:226
873
  msgid "Capability"
874
  msgstr "کاربران بر اساس توانایی"
875
 
876
+ #: ../admin/config/index.php:222
877
  #, fuzzy
878
  msgid ""
879
  "Specify the minimum <a href='http://codex.wordpress.org/"
889
  "داشت، مگر اینکه اجازه فهرست سفید اینجا مشخص شود. در این صورت فهرست اولویت "
890
  "میگیرد بر قابلیت."
891
 
892
+ #: ../admin/config/index.php:223 ../admin/config/index.php:227
893
  msgid "Whitelist"
894
  msgstr "فهرست سفید"
895
 
896
+ #: ../admin/config/index.php:223
897
  msgid ""
898
  "List all the users who should have access to the reports, separated by "
899
  "commas. Administrators are implicitly allowed, so you don't need to list "
903
  "طور کامل دسترسی دارند و نیاز به وارد کردن اینجا نخواهند داشت. کوچک و بزرگ "
904
  "بودن حروف مهم است."
905
 
906
+ #: ../admin/config/index.php:225 ../admin/config/index.php:250
907
+ #: ../admin/wp-slimstat-admin.php:532 ../admin/wp-slimstat-admin.php:535
908
+ #: ../wp-slimstat.php:1803
909
  msgid "Settings"
910
  msgstr "تنظیمات"
911
 
912
+ #: ../admin/config/index.php:226
913
  #, fuzzy
914
  msgid ""
915
  "Specify the minimum <a href='http://codex.wordpress.org/"
921
  "target='_new'> توانایی</a> برای دسترسی برای تنظیمات را مشخص کنید. این فهرست "
922
  "سفید اختیارات کاربران خاص را لفو میکند."
923
 
924
+ #: ../admin/config/index.php:227
925
  msgid ""
926
  "List all the users who can edit these options, separated by commas. Please "
927
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
930
  "فهرست کاربرانی که توانایی ویرایش این گزینه ها را دارند، تفکیک شده با ویرگول. "
931
  "از وارد کردن نام خود در این فهرست مطمئن شوید."
932
 
933
+ #: ../admin/config/index.php:232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
934
  msgid "Maintenance"
935
  msgstr "نگهداری"
936
 
937
+ #: ../admin/config/index.php:237 ../admin/view/addons.php:32
938
+ #: ../admin/wp-slimstat-admin.php:490 ../admin/wp-slimstat-admin.php:505
939
+ #: ../wp-slimstat.php:1800
940
+ msgid "Add-ons"
941
+ msgstr "افزونه ها"
942
+
943
  #: ../admin/config/maintenance.php:16
944
  #, fuzzy
945
  msgid ""
949
  "تبریک! برنامه اکنون برای<a href=\"http://www.youtube.com/watch?"
950
  "v=ygE01sOhzz0\" target=\"_blank\"> سرعت</a> بهینه شده است."
951
 
952
+ #: ../admin/config/maintenance.php:27
953
  #, fuzzy
954
  msgid "Indexing has been disabled. Enjoy the extra database space!"
955
  msgstr ""
956
  "اندیس گری با موفقیت غیر فعال شد. از فضای اضافه که پایگاه داده ها بدست آورید "
957
  "لذت ببرید! "
958
 
959
+ #: ../admin/config/maintenance.php:43
960
  msgid "records deleted from your database."
961
  msgstr "اطلاعات از پایگاه داده ها حذف شد."
962
 
963
+ #: ../admin/config/maintenance.php:48
964
  msgid "The geolocation database has been uninstalled from your server."
965
  msgstr ""
966
 
967
+ #: ../admin/config/maintenance.php:58
968
  msgid "The geolocation database has been installed on your server."
969
  msgstr ""
970
 
971
+ #: ../admin/config/maintenance.php:166
972
  msgid ""
973
  "Your data was successfully imported. You may now drop the old tables: "
974
  "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
977
  "delete the old tables."
978
  msgstr ""
979
 
980
+ #: ../admin/config/maintenance.php:175
981
  msgid "Your reports were successfully restored to their default arrangement."
982
  msgstr "گزارش ها با موفقیت به حالت پیش فرض بازنشانی شدند."
983
 
984
+ #: ../admin/config/maintenance.php:185
985
  #, fuzzy
986
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
987
  msgstr "جداول WP SlimStat با موفقیت به InnoDB تبدیل شد."
988
 
989
+ #: ../admin/config/maintenance.php:191
990
  #, fuzzy
991
  msgid "All the archived records were successfully deleted."
992
  msgstr "همه اطلاعات با موفقیت حذف شد."
993
 
994
+ #: ../admin/config/maintenance.php:199
995
  msgid "All the records were successfully deleted."
996
  msgstr "همه اطلاعات با موفقیت حذف شد."
997
 
998
+ #: ../admin/config/maintenance.php:221
999
  msgid "Debugging"
1000
  msgstr ""
1001
 
1002
+ #: ../admin/config/maintenance.php:224
1003
+ #, fuzzy
1004
+ msgid "Tracker Status"
1005
+ msgstr "ره‌گیری"
1006
 
1007
+ #: ../admin/config/maintenance.php:226
1008
  #, fuzzy
1009
  msgid "recorded on"
1010
  msgstr "اطلاعات"
1011
 
1012
+ #: ../admin/config/maintenance.php:226
1013
  msgid "No Errors so far"
1014
  msgstr ""
1015
 
1016
+ #: ../admin/config/maintenance.php:227
1017
  msgid ""
1018
  "The information here above is useful to troubleshoot issues with the "
1019
+ "tracker. It includes both <strong>errors</strong>, which are returned when "
1020
+ "the tracker could not record a pageview and are indicative of some kind of "
1021
+ "malfunction, and <strong>notices</strong>, which explain the reason why the "
1022
+ "most recent pageview was not recorded, based on your settings (filters, "
1023
+ "blackslists, etc). Please include this code when sending a support request."
1024
+ msgstr ""
1025
+
1026
+ #: ../admin/config/maintenance.php:233
1027
+ #, fuzzy
1028
+ msgid "Enable SQL Debug"
1029
+ msgstr "فعال کردن دید دزدکی"
1030
+
1031
+ #: ../admin/config/maintenance.php:236
1032
+ msgid ""
1033
+ "Display the SQL code used to retrieve the data from the database. Useful to "
1034
+ "troubleshoot issues with data consistency or missing pageviews."
1035
+ msgstr ""
1036
+
1037
+ #: ../admin/config/maintenance.php:240
1038
+ msgid "Disable SQL Debug"
1039
+ msgstr ""
1040
+
1041
+ #: ../admin/config/maintenance.php:243
1042
+ msgid "Deactivate the SQL output on top of each report."
1043
  msgstr ""
1044
 
1045
+ #: ../admin/config/maintenance.php:248
1046
  msgid "Layout"
1047
  msgstr ""
1048
 
1049
+ #: ../admin/config/maintenance.php:251
1050
  msgid ""
1051
  "Are you sure you want to restore the default arrangement of your reports?"
1052
  msgstr " آیا مطمئنید که می‌خواهید تنظیم پیش فرظ گزارش ها را بازنشانی کنید؟"
1053
 
1054
+ #: ../admin/config/maintenance.php:251
1055
  msgid "No Panic Button"
1056
  msgstr "دکمه خطر نباشد"
1057
 
1058
+ #: ../admin/config/maintenance.php:253
1059
  #, fuzzy
1060
  msgid ""
1061
  "Reset the default arrangement of your reports. Helpful when, for some "
1065
  " آیا مطمئنید که می‌خواهید تنظیم پیش فرظ گزارش ها به حالت پیش فرض بازنشانی "
1066
  "کنید. این در برطرف کردن ناپدید شدن گزارش ها مفید است."
1067
 
1068
+ #: ../admin/config/maintenance.php:257
1069
  msgid "Data Maintenance"
1070
  msgstr "تعمیر داده ها"
1071
 
1072
+ #: ../admin/config/maintenance.php:260
1073
  msgid "Delete pageviews where"
1074
  msgstr "حذف بازدید‌ها وقتی"
1075
 
1076
+ #: ../admin/config/maintenance.php:274 ../admin/view/index.php:16
1077
  msgid "equals"
1078
  msgstr "مساوی‌ست با"
1079
 
1080
+ #: ../admin/config/maintenance.php:275 ../admin/view/index.php:17
1081
  msgid "is not equal to"
1082
  msgstr "مساوی نیست با"
1083
 
1084
+ #: ../admin/config/maintenance.php:276 ../admin/view/index.php:18
1085
  msgid "contains"
1086
  msgstr "شامل"
1087
 
1088
+ #: ../admin/config/maintenance.php:277 ../admin/view/index.php:19
1089
  msgid "is included in"
1090
  msgstr ""
1091
 
1092
+ #: ../admin/config/maintenance.php:278 ../admin/view/index.php:20
1093
  msgid "does not contain"
1094
  msgstr "ناشامل"
1095
 
1096
+ #: ../admin/config/maintenance.php:279 ../admin/view/index.php:21
1097
  msgid "starts with"
1098
  msgstr "شروع می‌شود با"
1099
 
1100
+ #: ../admin/config/maintenance.php:280 ../admin/view/index.php:22
1101
  msgid "ends with"
1102
  msgstr "پایان می‌یابد با"
1103
 
1104
+ #: ../admin/config/maintenance.php:281 ../admin/view/index.php:23
1105
  msgid "sounds like"
1106
  msgstr " شبیه به"
1107
 
1108
+ #: ../admin/config/maintenance.php:282 ../admin/view/index.php:24
1109
  msgid "is greater than"
1110
  msgstr "بزرگ‌تر است از"
1111
 
1112
+ #: ../admin/config/maintenance.php:283 ../admin/view/index.php:25
1113
  msgid "is less than"
1114
  msgstr "کوچک‌تر است از"
1115
 
1116
+ #: ../admin/config/maintenance.php:284 ../admin/view/index.php:27
1117
  msgid "matches"
1118
  msgstr "مطابق است با"
1119
 
1120
+ #: ../admin/config/maintenance.php:285 ../admin/view/index.php:28
1121
  msgid "does not match"
1122
  msgstr "مطابق نیست"
1123
 
1124
+ #: ../admin/config/maintenance.php:286 ../admin/view/index.php:29
1125
  msgid "is empty"
1126
  msgstr "خالی‌ است"
1127
 
1128
+ #: ../admin/config/maintenance.php:287 ../admin/view/index.php:30
1129
  msgid "is not empty"
1130
  msgstr "خالی نیست"
1131
 
1132
+ #: ../admin/config/maintenance.php:290 ../admin/view/index.php:42
1133
  #: ../admin/view/index.php:105
1134
  msgid "Apply"
1135
  msgstr "انجام"
1136
 
1137
+ #: ../admin/config/maintenance.php:291
1138
  msgid ""
1139
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1140
  msgstr ""
1141
  "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1142
 
1143
+ #: ../admin/config/maintenance.php:298
1144
  msgid ""
1145
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1146
  "database?"
1147
  msgstr ""
1148
  "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1149
 
1150
+ #: ../admin/config/maintenance.php:298
1151
  #, fuzzy
1152
  msgid "Delete All Records"
1153
  msgstr "حذف همه صفحات"
1154
 
1155
+ #: ../admin/config/maintenance.php:301
1156
  #, fuzzy
1157
  msgid ""
1158
  "Erase all the information collected so far by Slimstat, including the "
1161
  "حذف همه اطلاعاتی که تا حال توسط WP SlimStat جمع آوری شده است. این عملیات "
1162
  "تنظیمات را بازنشانی نمیکند."
1163
 
1164
+ #: ../admin/config/maintenance.php:307
1165
  #, fuzzy
1166
  msgid ""
1167
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1169
  msgstr ""
1170
  "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1171
 
1172
+ #: ../admin/config/maintenance.php:307
1173
  #, fuzzy
1174
  msgid "Delete Archive"
1175
  msgstr "حذف بازدید‌ها وقتی"
1176
 
1177
+ #: ../admin/config/maintenance.php:310
1178
  msgid "Erase all the archived records. This operation cannot be undone."
1179
  msgstr ""
1180
 
1181
+ #: ../admin/config/maintenance.php:316
1182
  msgid "Improve Performance"
1183
  msgstr "بهبود عملکرد"
1184
 
1185
+ #: ../admin/config/maintenance.php:320
1186
  msgid ""
1187
  "Please note that you will need about 30% more DB space to store the extra "
1188
  "information required."
1190
  "در نظر داشته باشید که زخیره کردن این اطلاعات ٪۳۰ درصد حجم بیشتر در پایگاه "
1191
  "داده اشغال میکند."
1192
 
1193
+ #: ../admin/config/maintenance.php:324
1194
  msgid "Save DB Space"
1195
  msgstr "زخیره کردن پایگاه داده"
1196
 
1197
+ #: ../admin/config/maintenance.php:327
1198
  #, fuzzy
1199
  msgid ""
1200
  "Please note that by removing table indexes, Slimstat's performance will be "
1202
  msgstr ""
1203
  "در نظر داشته باشید که حذف کردن شاخص بر عملکرد WP SlimStat تاثیر میگذارد"
1204
 
1205
+ #: ../admin/config/maintenance.php:334
1206
  msgid ""
1207
  "Hold on tight, we are about to import all your old data. Are you sure you "
1208
  "want to proceed?"
1209
  msgstr ""
1210
 
1211
+ #: ../admin/config/maintenance.php:334
1212
  #, fuzzy
1213
  msgid "Import old data"
1214
  msgstr "وارد و صادر"
1215
 
1216
+ #: ../admin/config/maintenance.php:337
1217
  msgid ""
1218
  "Import all the records from the old table structure. No data will be deleted "
1219
  "from your database."
1220
  msgstr ""
1221
 
1222
+ #: ../admin/config/maintenance.php:341
1223
  msgid "MaxMind IP to Country"
1224
  msgstr ""
1225
 
1226
+ #: ../admin/config/maintenance.php:347
1227
  msgid ""
1228
  "Do you want to download and install the geolocation database from MaxMind's "
1229
  "server?"
1230
  msgstr ""
1231
 
1232
+ #: ../admin/config/maintenance.php:347
1233
  msgid "Install GeoLite DB"
1234
  msgstr ""
1235
 
1236
+ #: ../admin/config/maintenance.php:350
1237
  msgid "Do you want to uninstall the geolocation database?"
1238
  msgstr ""
1239
 
1240
+ #: ../admin/config/maintenance.php:350
1241
  msgid "Uninstall GeoLite DB"
1242
  msgstr ""
1243
 
1244
+ #: ../admin/config/maintenance.php:354
1245
  msgid ""
1246
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1247
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
1251
  "enable this functionality."
1252
  msgstr ""
1253
 
1254
+ #: ../admin/config/maintenance.php:359
1255
  msgid "Import and Export"
1256
  msgstr "وارد و صادر"
1257
 
1258
+ #: ../admin/config/maintenance.php:363
1259
  msgid ""
1260
  "Here below you can find the current configuration string for Slimstat. You "
1261
  "can update your settings by pasting a new string inside the text area and "
1262
  "clicking the Import button."
1263
  msgstr ""
1264
 
1265
+ #: ../admin/config/maintenance.php:368
1266
  msgid "Import"
1267
  msgstr "واردات"
1268
 
1269
+ #: ../admin/config/maintenance.php:369
1270
  msgid "Are you sure you want to OVERWRITE your current settings?"
1271
  msgstr "مطمئنید می‌خواهید تنظیمات را بازنشانی کنید؟"
1272
 
1273
+ #: ../admin/config/maintenance.php:374
1274
  msgid "Database Information"
1275
  msgstr "اطلاعات پایگاه داده"
1276
 
1277
+ #: ../admin/config/maintenance.php:377
1278
  msgid "Engine"
1279
  msgstr "موتور"
1280
 
1281
+ #: ../admin/config/maintenance.php:381
1282
  msgid "switch to InnoDB"
1283
  msgstr "تغییر حالت به InnoDB"
1284
 
1285
+ #: ../admin/config/maintenance.php:392
1286
  msgid "records"
1287
  msgstr "اطلاعات"
1288
 
1289
+ #: ../admin/view/addons.php:15
1290
+ msgid ""
1291
+ "There was an error retrieving the add-ons list from the server. Please try "
1292
+ "again later. Error Message:"
1293
+ msgstr ""
1294
+ " بازیابی فهرست افزونه ها از دامنه با اشکال مواجه شد. لطفا دوباره آزمایش "
1295
+ "کنید. شمار خطا: "
1296
+
1297
+ #: ../admin/view/addons.php:25
1298
+ msgid ""
1299
+ "There was an error decoding the add-ons list from the server. Please try "
1300
+ "again later."
1301
+ msgstr ""
1302
+ "رمزگشایی فهرست افزونه ها از دامنه با اشکال مواجه شد. لطفا دوباره آزمایش کنید."
1303
+
1304
+ #: ../admin/view/addons.php:33
1305
+ #, fuzzy
1306
+ msgid ""
1307
+ "Add-ons extend the functionality of Slimstat in many interesting ways. We "
1308
+ "offer both free and premium (paid) extensions. Each add-on can be installed "
1309
+ "as a separate plugin, which will receive regular updates via the WordPress "
1310
+ "Plugins panel. In order to be notified when a new version of a premium add-"
1311
+ "on is available, please enter the <strong>license key</strong> you received "
1312
+ "when you purchased it."
1313
+ msgstr ""
1314
+ "میتوانید با استفاده از افزونه ها کارکرد برنامه را گسترش دهید. افزونه های "
1315
+ "جذابی به صورت رایگان و پولی موجود است که هر یک به طور جداگانه قابل نصب و به "
1316
+ "روز رسانی میباشد. اگر دوست دارید است از نسخه جدید افزونه با خبر شوید لطفا "
1317
+ "شماره مجوز که در هنگام خرید دریافت کردید وارد کنید."
1318
+
1319
+ #: ../admin/view/addons.php:37
1320
+ #, php-format
1321
+ msgid ""
1322
+ "This list is refreshed once daily: <a href=\"%s&amp;force_refresh=true"
1323
+ "\">click here</a> to clear the cache."
1324
+ msgstr ""
1325
+
1326
+ #: ../admin/view/addons.php:46
1327
+ msgid "Add-on"
1328
+ msgstr "افزونه"
1329
+
1330
+ #: ../admin/view/addons.php:46
1331
+ msgid "Description"
1332
+ msgstr "توضیحات"
1333
+
1334
+ #: ../admin/view/addons.php:57
1335
+ #, fuzzy
1336
+ msgid "Repo Version"
1337
+ msgstr "نسخه سی‌اس‌اس "
1338
+
1339
+ #: ../admin/view/addons.php:57
1340
+ #, fuzzy
1341
+ msgid "Version"
1342
+ msgstr "نسخه سی‌اس‌اس "
1343
+
1344
+ #: ../admin/view/addons.php:69
1345
+ #, fuzzy
1346
+ msgid "Your Version:"
1347
+ msgstr "نسخه مرورگر"
1348
+
1349
+ #: ../admin/view/addons.php:72
1350
+ msgid "Installed and Active"
1351
+ msgstr ""
1352
+
1353
  #: ../admin/view/index.php:26
1354
  msgid "is between (x,y)"
1355
  msgstr ""
1358
  msgid "Load"
1359
  msgstr ""
1360
 
1361
+ #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1397
1362
  msgid "Today"
1363
  msgstr "امروز‍"
1364
 
1365
+ #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1400
1366
  msgid "Yesterday"
1367
  msgstr "دیروز"
1368
 
1428
  "country of origin."
1429
  msgstr ""
1430
 
1431
+ #: ../admin/view/layout.php:40
1432
+ msgid "Customize and organize your reports"
1433
+ msgstr ""
1434
+
1435
+ #: ../admin/view/layout.php:41
1436
+ msgid ""
1437
+ "Drag and drop report placeholders from one container to another, to "
1438
+ "customize the information you want to see right away when you open Slimstat. "
1439
+ "Place two or more charts on the same view, clone reports or move them to the "
1440
+ "Inactive Reports container for improved performance. It is your website, and "
1441
+ "you know how metrics should be combined to get a clear picture of the "
1442
+ "traffic it generates.<br/><br/><strong>Note</strong>: if a placeholder is "
1443
+ "greyed out, it means that the corresponding report is currently hidden "
1444
+ "(Screen Options tab)."
1445
+ msgstr ""
1446
+
1447
+ #: ../admin/view/layout.php:53
1448
+ msgid "Clone"
1449
+ msgstr ""
1450
+
1451
+ #: ../admin/view/layout.php:57
1452
+ #, fuzzy
1453
+ msgid "Delete"
1454
+ msgstr "اطلاعات"
1455
+
1456
  #: ../admin/view/right-now.php:12
1457
  msgid "Human"
1458
  msgstr "انسان"
1469
  msgid "Syndication Reader"
1470
  msgstr "پیوند ریدر"
1471
 
1472
+ #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1031
1473
+ #: ../admin/view/wp-slimstat-reports.php:1706
1474
  msgid "No data to display"
1475
  msgstr "داده‌ای برای نمایش نیست"
1476
 
1479
  msgstr "روز و ساعت"
1480
 
1481
  # Unknown
1482
+ #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1082
1483
+ #: ../admin/view/wp-slimstat-reports.php:1820 ../wp-slimstat.php:1409
1484
  msgid "c-"
1485
  msgstr "Unknown"
1486
 
1487
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1488
+ #: ../admin/wp-slimstat-admin.php:846 ../admin/wp-slimstat-admin.php:886
1489
  msgid "Originating IP"
1490
  msgstr "آی‌پی منشا"
1491
 
1492
+ #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1179
1493
+ #: ../admin/view/wp-slimstat-reports.php:1183
1494
+ msgid "Open this URL in a new window"
1495
+ msgstr "نشانی را در پنجره جدید باز کن"
1496
+
1497
+ #: ../admin/view/right-now.php:151
1498
+ msgid "Local search results page"
1499
+ msgstr "صفحه نتایج جستجوی محلی"
1500
+
1501
+ #: ../admin/view/right-now.php:156 ../admin/view/wp-slimstat-db.php:42
1502
+ #: ../admin/view/wp-slimstat-reports.php:257
1503
+ #: ../admin/view/wp-slimstat-reports.php:266
1504
+ #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
1505
+ msgid "Search Terms"
1506
+ msgstr "عبارت‌های جستجو"
1507
+
1508
+ #: ../admin/view/right-now.php:162
1509
  msgid "Server Latency and Page Speed in milliseconds"
1510
  msgstr ""
1511
 
1512
+ #: ../admin/view/right-now.php:162
1513
  msgid "SL"
1514
  msgstr ""
1515
 
1516
+ #: ../admin/view/right-now.php:162
1517
  msgid "PS"
1518
  msgstr ""
1519
 
1520
+ #: ../admin/view/right-now.php:169
1521
  msgid "Time spent on this page in seconds"
1522
  msgstr ""
1523
 
1524
+ #: ../admin/view/right-now.php:179
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1525
  msgid "Open this referrer in a new window"
1526
  msgstr "این ارجاعی دهنده را در پنجره جدید باز کن"
1527
 
1528
+ #: ../admin/view/right-now.php:180
1529
  msgid "Open this outbound link in a new window"
1530
  msgstr " پیوندهای بیرونی را در پنجره جدید باز کن"
1531
 
1532
+ #: ../admin/view/right-now.php:181
1533
  msgid "Content Type"
1534
  msgstr " نوع محتوا"
1535
 
1536
+ #: ../admin/view/right-now.php:184
1537
  #, fuzzy
1538
  msgid "Delete this pageview"
1539
  msgstr "حذف بازدید‌ها وقتی"
1540
 
1541
+ #: ../admin/view/right-now.php:195
1542
+ #, fuzzy
1543
+ msgid "User Logged In"
1544
+ msgstr "مرورگرهای کاربران"
1545
+
1546
+ #: ../admin/view/right-now.php:205
1547
+ #, fuzzy
1548
+ msgid "User Logged Out"
1549
+ msgstr "مرورگرهای کاربران"
1550
+
1551
+ #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:862
1552
  msgid "Browser"
1553
  msgstr "مرورگر"
1554
 
1555
+ #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:863
1556
  msgid "Country Code"
1557
  msgstr "علامت کشور"
1558
 
1560
  msgid "IP Address"
1561
  msgstr "نشانی آی‌پی"
1562
 
1563
+ #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:866
1564
  msgid "Language Code"
1565
  msgstr "علامت زبان"
1566
 
1567
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1568
+ #: ../admin/wp-slimstat-admin.php:867
1569
  msgid "Operating System"
1570
  msgstr "سامانه عامل"
1571
 
1572
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1573
+ #: ../admin/wp-slimstat-admin.php:868
1574
  msgid "Permalink"
1575
  msgstr "پیوند یکتا"
1576
 
1577
+ #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:869
1578
  msgid "Referer"
1579
  msgstr "ارجاع‌دهنده"
1580
 
1581
+ #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:870
1582
  msgid "Visitor's Name"
1583
  msgstr "نام بیننده"
1584
 
1585
+ #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:852
1586
  msgid "Outbound Link"
1587
  msgstr "پیوند بیرونی"
1588
 
1595
  msgstr "-- فیلترهای پیش‌رفته --"
1596
 
1597
  #: ../admin/view/wp-slimstat-db.php:52
1598
+ #: ../admin/view/wp-slimstat-reports.php:373
1599
  msgid "Browser Capabilities"
1600
  msgstr "قابلیت‌های مرورگر"
1601
 
1602
+ #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:881
1603
  msgid "Browser Version"
1604
  msgstr "نسخه مرورگر"
1605
 
1606
+ #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:882
1607
  msgid "Browser Type"
1608
  msgstr "نوع مرورگر"
1609
 
1610
+ #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:851
1611
  msgid "User Agent"
1612
  msgstr "مرورگرهای کاربران"
1613
 
1620
  msgid "Server Latency"
1621
  msgstr ""
1622
 
1623
+ #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:884
1624
  msgid "Post Author"
1625
  msgstr "نویسنده مطلب"
1626
 
1627
+ #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:885
1628
  msgid "Post Category ID"
1629
  msgstr "شناسه دسته‌بندی مطلب"
1630
 
1631
+ #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:887
1632
  msgid "Resource Content Type"
1633
  msgstr "نوع محتوای منبع"
1634
 
1649
  msgid "Viewport Size"
1650
  msgstr ""
1651
 
1652
+ #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:889
1653
  msgid "Visit ID"
1654
  msgstr "شناسه دیدن"
1655
 
1696
  msgstr ""
1697
 
1698
  #: ../admin/view/wp-slimstat-db.php:96
1699
+ #: ../admin/view/wp-slimstat-reports.php:1720
1700
  msgid "Type"
1701
  msgstr ""
1702
 
1719
  msgid "Offset"
1720
  msgstr ""
1721
 
1722
+ #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:483
1723
+ #: ../wp-slimstat.php:1793
1724
  msgid "Access Log"
1725
  msgstr ""
1726
 
1727
+ #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:484
1728
+ #: ../admin/wp-slimstat-admin.php:499 ../wp-slimstat.php:1794
1729
  msgid "Overview"
1730
  msgstr "مرور"
1731
 
1732
+ #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:485
1733
+ #: ../admin/wp-slimstat-admin.php:500 ../wp-slimstat.php:1795
1734
  msgid "Audience"
1735
  msgstr ""
1736
 
1737
+ #: ../admin/view/wp-slimstat-reports.php:24 ../admin/wp-slimstat-admin.php:486
1738
+ #: ../admin/wp-slimstat-admin.php:501 ../wp-slimstat.php:1796
1739
  msgid "Site Analysis"
1740
  msgstr ""
1741
 
1742
+ #: ../admin/view/wp-slimstat-reports.php:25
1743
+ #: ../admin/view/wp-slimstat-reports.php:516
1744
+ #: ../admin/wp-slimstat-admin.php:487 ../admin/wp-slimstat-admin.php:502
1745
+ #: ../wp-slimstat.php:1797
1746
  msgid "Traffic Sources"
1747
  msgstr "منابع ترافیک"
1748
 
1749
+ #: ../admin/view/wp-slimstat-reports.php:26
1750
+ #: ../admin/view/wp-slimstat-reports.php:1364
1751
+ #: ../admin/wp-slimstat-admin.php:488 ../admin/wp-slimstat-admin.php:503
1752
+ #: ../wp-slimstat.php:1798
1753
+ #, fuzzy
1754
+ msgid "Geolocation"
1755
+ msgstr "به‌روزآوری پایگاه داده مکان‌یابی"
1756
+
1757
+ #: ../admin/view/wp-slimstat-reports.php:27
1758
+ #, fuzzy
1759
+ msgid "WordPress Dashboard"
1760
+ msgstr "تلفیق کردن وردپرس"
1761
+
1762
+ #: ../admin/view/wp-slimstat-reports.php:28
1763
+ #, fuzzy
1764
+ msgid "Inactive Reports"
1765
+ msgstr "تنظیم مجدد گزارش ها"
1766
 
1767
+ #: ../admin/view/wp-slimstat-reports.php:77
1768
  msgid "Chart controls"
1769
  msgstr "کنترل‌های نمودار"
1770
 
1771
+ #: ../admin/view/wp-slimstat-reports.php:77
1772
  msgid "Use your mouse wheel to zoom in and out"
1773
  msgstr "از غلطانک موش‌واره برای بزرگ‌نمایی و کوچک‌نمایی استفاده کنید"
1774
 
1775
+ #: ../admin/view/wp-slimstat-reports.php:77
1776
  msgid "While zooming in, drag the chart to move to a different area"
1777
  msgstr ""
1778
  "زمانی‌که بزرگ‌نمایی می‌کنید، نمودار را می‌توانید بکشید و به نقاط دیگر بروید"
1779
 
1780
+ #: ../admin/view/wp-slimstat-reports.php:80
1781
+ msgid "Social Sharing Analytics"
 
 
 
 
 
 
1782
  msgstr ""
1783
 
1784
+ #: ../admin/view/wp-slimstat-reports.php:87
1785
  #, fuzzy
1786
  msgid "Visitors Activity"
1787
  msgstr "فهرست فعالیت ها"
1788
 
1789
+ #: ../admin/view/wp-slimstat-reports.php:96
1790
  msgid "Color codes"
1791
  msgstr "علامت رنگی"
1792
 
1793
+ #: ../admin/view/wp-slimstat-reports.php:96
1794
  #, fuzzy
1795
  msgid "From search result page"
1796
  msgstr "از صفحه نتایج جستجو"
1797
 
1798
+ #: ../admin/view/wp-slimstat-reports.php:96 ../admin/wp-slimstat-admin.php:844
 
1799
  msgid "Known Visitor"
1800
  msgstr "بیننده آشنا"
1801
 
1802
+ #: ../admin/view/wp-slimstat-reports.php:96
1803
  msgid "Known Users"
1804
  msgstr "کاربران آشنا"
1805
 
1806
+ #: ../admin/view/wp-slimstat-reports.php:96
1807
  msgid "Other Humans"
1808
  msgstr "دیگران"
1809
 
1810
+ #: ../admin/view/wp-slimstat-reports.php:96
1811
  msgid "Bot or Crawler"
1812
  msgstr "روبات یا خزنده"
1813
 
1814
+ #: ../admin/view/wp-slimstat-reports.php:118
1815
  #, fuzzy
1816
  msgid "About Slimstat"
1817
  msgstr "درباره WP SlimStat"
1818
 
1819
+ #: ../admin/view/wp-slimstat-reports.php:127
1820
  #, fuzzy
1821
  msgid "Traffic at a Glance"
1822
  msgstr "در یک نگاه"
1823
 
1824
+ #: ../admin/view/wp-slimstat-reports.php:137
1825
  msgid "Currently Online"
1826
  msgstr "حالا روی خط"
1827
 
1828
+ #: ../admin/view/wp-slimstat-reports.php:150
1829
  msgid "Recent Search Terms"
1830
  msgstr "عبارت‌های جستجو شده اخیر"
1831
 
1832
+ #: ../admin/view/wp-slimstat-reports.php:160
1833
  msgid "Keywords used by your visitors to find your website on a search engine."
1834
  msgstr "عبارات کلیدی در موتورهای جستجو که بیننده را به پایگاه شما را یافته‌اند."
1835
 
1836
+ #: ../admin/view/wp-slimstat-reports.php:163
1837
+ #, fuzzy
1838
+ msgid "Top Web Pages"
1839
  msgstr "برترین صفحات"
1840
 
1841
+ #: ../admin/view/wp-slimstat-reports.php:174
1842
  msgid ""
1843
+ "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1844
+ "site, including posts, products, categories, and so on. You can set the "
1845
+ "corresponding filter where Resource Content Type equals cpt:"
1846
+ "you_cpt_slug_here to get top web pages for a specific custom post type you "
1847
+ "have."
1848
  msgstr ""
1849
 
1850
+ #: ../admin/view/wp-slimstat-reports.php:177
1851
  msgid "Top Traffic Sources"
1852
  msgstr "برترین منابع ترافیک"
1853
 
1854
+ #: ../admin/view/wp-slimstat-reports.php:189
1855
  msgid "Top Known Visitors"
1856
  msgstr "برترین بیننده های آشنا"
1857
 
1858
+ #: ../admin/view/wp-slimstat-reports.php:200
1859
  msgid "Top Search Terms"
1860
  msgstr "برترین عبارت های جستجو"
1861
 
1862
+ #: ../admin/view/wp-slimstat-reports.php:211
1863
  msgid "Top Countries"
1864
  msgstr "برترین کشورها"
1865
 
1866
+ #: ../admin/view/wp-slimstat-reports.php:220
1867
  #, fuzzy
1868
  msgid ""
1869
  "You can configure Slimstat to ignore a specific Country by setting the "
1872
  "میتوانید تنظیمات برنامه برای نادیده گرفتن بعضی کشورها را تغییر دهید:Settings "
1873
  "> SlimStat > Filters"
1874
 
1875
+ #: ../admin/view/wp-slimstat-reports.php:223
1876
  msgid "Rankings"
1877
  msgstr "رتبه ها"
1878
 
1879
+ #: ../admin/view/wp-slimstat-reports.php:227
1880
  #, fuzzy
1881
  msgid ""
1882
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1886
  "با کسب اطلاعات خود از Google، Facebook و یا Alexa، رتبه خود را محک بزنید. "
1887
  "مقادیر هر ۱۲ ساعت به روز میشوند. صافی ها بالا در این گزارش کاربرد نمیشوند. "
1888
 
1889
+ #: ../admin/view/wp-slimstat-reports.php:230
1890
  msgid "Top Language Families"
1891
  msgstr "برترین زبان‌ها"
1892
 
1893
+ #: ../admin/view/wp-slimstat-reports.php:243
1894
  #, fuzzy
1895
  msgid "Users Currently Online"
1896
  msgstr "حالا روی خط"
1897
 
1898
+ #: ../admin/view/wp-slimstat-reports.php:254
1899
  #, fuzzy
1900
  msgid ""
1901
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1906
  "WP SlimStat از این اطلاعات برای شناسایی «بیننده دوباره» استفاده میکند. در "
1907
  "نظر داشته باشید که بیننده ها شامل کاربران ثبت شده نیز میباشد."
1908
 
1909
+ #: ../admin/view/wp-slimstat-reports.php:267
1910
+ #, fuzzy
1911
+ msgid "Unique Terms"
1912
+ msgstr "آی‌پی‌های یکتا"
1913
+
1914
+ #: ../admin/view/wp-slimstat-reports.php:276
1915
  msgid "Human Visits"
1916
  msgstr "بازدیدهای انسانی"
1917
 
1918
+ #: ../admin/view/wp-slimstat-reports.php:285
1919
+ #: ../admin/view/wp-slimstat-reports.php:1431
1920
+ msgid "Visits"
1921
+ msgstr "بازدیدها"
1922
+
1923
+ #: ../admin/view/wp-slimstat-reports.php:295
1924
  #, fuzzy
1925
  msgid "Audience Overview"
1926
  msgstr "مرور"
1927
 
1928
+ #: ../admin/view/wp-slimstat-reports.php:302
1929
  msgid ""
1930
  "Where not otherwise specified, the metrics in this report are referred to "
1931
  "human visitors."
1932
  msgstr ""
1933
 
1934
+ #: ../admin/view/wp-slimstat-reports.php:305
1935
  msgid "Top Languages"
1936
  msgstr "بیش‌ترین زبان‌ها"
1937
 
1938
+ #: ../admin/view/wp-slimstat-reports.php:316
1939
  msgid "Top Browsers"
1940
  msgstr "برترین مرورگرها"
1941
 
1942
+ #: ../admin/view/wp-slimstat-reports.php:327
1943
  msgid "Top Service Providers"
1944
  msgstr "برترین خدمات دهنده‌ها"
1945
 
1946
+ #: ../admin/view/wp-slimstat-reports.php:336
1947
+ #: ../admin/view/wp-slimstat-reports.php:348
1948
  #, fuzzy
1949
  msgid ""
1950
  "Internet Service Provider: a company which provides other companies or "
1955
  "اینترنت توسط یک شرکت خدماتی (ISP) برای شما فراهم میشود. میتوانید این نشانی "
1956
  "ای پی را با وارد کردن صافی نادیده بگیرید."
1957
 
1958
+ #: ../admin/view/wp-slimstat-reports.php:339
1959
  msgid "Top Operating Systems"
1960
  msgstr "برترین محیط‌های عامل"
1961
 
1962
+ #: ../admin/view/wp-slimstat-reports.php:351
1963
  msgid "Top Screen Resolutions"
1964
  msgstr "برترین ابعاد صفحه نماش‌ها"
1965
 
1966
+ #: ../admin/view/wp-slimstat-reports.php:362
1967
  #, fuzzy
1968
  msgid "Top Viewport Sizes"
1969
  msgstr "برترین دسته‌ها"
1970
 
1971
+ #: ../admin/view/wp-slimstat-reports.php:382
1972
  msgid "Visit Duration"
1973
  msgstr "طول دوره بازدید"
1974
 
1975
+ #: ../admin/view/wp-slimstat-reports.php:389
1976
  msgid ""
1977
  "All values represent the percentages of pageviews within the corresponding "
1978
  "time range."
1979
  msgstr ""
1980
 
1981
+ #: ../admin/view/wp-slimstat-reports.php:392
1982
  msgid "Recent Countries"
1983
  msgstr "کشورهای اخیر"
1984
 
1985
+ #: ../admin/view/wp-slimstat-reports.php:403
1986
  #, fuzzy
1987
  msgid "Recent Viewport Sizes"
1988
  msgstr "دسته‌های اخیر"
1989
 
1990
+ #: ../admin/view/wp-slimstat-reports.php:414
1991
  msgid "Recent Operating Systems"
1992
  msgstr "محیطهای عامل اخیر"
1993
 
1994
+ #: ../admin/view/wp-slimstat-reports.php:425
1995
  msgid "Recent Browsers"
1996
  msgstr "مرورگرهای اخیر"
1997
 
1998
+ #: ../admin/view/wp-slimstat-reports.php:436
1999
  msgid "Recent Languages"
2000
  msgstr "زبان‌های اخیر"
2001
 
2002
+ #: ../admin/view/wp-slimstat-reports.php:447
2003
  msgid "Top Browser Families"
2004
  msgstr "برترین مرورگرها"
2005
 
2006
+ #: ../admin/view/wp-slimstat-reports.php:456
2007
  msgid ""
2008
  "This report shows you what user agent families (no version considered) are "
2009
  "popular among your visitors."
2011
  "این گزارش نشانگر عامل کابر (بدون در نظر گرفتن نسخه) که در میان بیننده ها "
2012
  "محبوب تر هستند میباشد."
2013
 
2014
+ #: ../admin/view/wp-slimstat-reports.php:459
2015
  msgid "Top OS Families"
2016
  msgstr "برترین محیط عامل ها"
2017
 
2018
+ #: ../admin/view/wp-slimstat-reports.php:470
2019
  msgid ""
2020
  "This report shows you what operating system families (no version considered) "
2021
  "are popular among your visitors."
2023
  "این گزارش نشانگر محیط عامل هایی (بدون در نظر گرفتن نسخه) که در میان بیننده "
2024
  "ها محبوب تر هستند میباشد."
2025
 
2026
+ #: ../admin/view/wp-slimstat-reports.php:473
2027
  msgid "Recent Users"
2028
  msgstr "کاربرهای اخیر"
2029
 
2030
+ #: ../admin/view/wp-slimstat-reports.php:485
2031
  msgid "Top Users"
2032
  msgstr "برترین کاربرها"
2033
 
2034
+ #: ../admin/view/wp-slimstat-reports.php:497
2035
+ #: ../admin/view/wp-slimstat-reports.php:506
2036
+ msgid "Users"
2037
+ msgstr "کاربران"
2038
+
2039
+ #: ../admin/view/wp-slimstat-reports.php:507
2040
+ #, fuzzy
2041
+ msgid "Unique Users"
2042
+ msgstr "آی‌پی‌های یکتا"
2043
+
2044
+ #: ../admin/view/wp-slimstat-reports.php:525
2045
+ msgid "Domains"
2046
+ msgstr "دامنه‌ها"
2047
+
2048
+ #: ../admin/view/wp-slimstat-reports.php:535
2049
  #, fuzzy
2050
  msgid "Traffic Summary"
2051
  msgstr "منابع ترافیک"
2052
 
2053
+ #: ../admin/view/wp-slimstat-reports.php:544
2054
  msgid "Top Referring Search Engines"
2055
  msgstr "برترین موتور جستجو های ارجاع‌دهنده"
2056
 
2057
+ #: ../admin/view/wp-slimstat-reports.php:571
2058
  msgid "Recent Outbound Links"
2059
  msgstr "پیوندهای بیرونی اخیر"
2060
 
2061
+ #: ../admin/view/wp-slimstat-reports.php:583
2062
  msgid "Recent Posts"
2063
  msgstr "ارسال های اخیر"
2064
 
2065
+ #: ../admin/view/wp-slimstat-reports.php:611
2066
  msgid "Recent Feeds"
2067
  msgstr "خوراک‌های اخیر"
2068
 
2069
+ #: ../admin/view/wp-slimstat-reports.php:623
2070
  msgid "Recent Pages Not Found"
2071
  msgstr "صفحه هایی پیدا نشده اخیر"
2072
 
2073
+ #: ../admin/view/wp-slimstat-reports.php:635
2074
  msgid "Recent Internal Searches"
2075
  msgstr "جستجوهای داخلی اخیر"
2076
 
2077
+ #: ../admin/view/wp-slimstat-reports.php:645
2078
  #, fuzzy
2079
  msgid "Searches performed using WordPress' built-in search functionality."
2080
  msgstr "جستجوهایی که توسط جستجوی داخلی Wordpress انجام میشوند."
2081
 
2082
+ #: ../admin/view/wp-slimstat-reports.php:648
2083
  msgid "Top Categories"
2084
  msgstr "برترین دسته‌ها"
2085
 
2086
+ #: ../admin/view/wp-slimstat-reports.php:661
2087
  #, fuzzy
2088
  msgid "Top Downloads"
2089
  msgstr "بارگیری های اخیر"
2090
 
2091
+ #: ../admin/view/wp-slimstat-reports.php:672
2092
  msgid ""
2093
  "You can configure Slimstat to track specific file extensions as downloads."
2094
  msgstr ""
2095
 
2096
+ #: ../admin/view/wp-slimstat-reports.php:675
2097
  msgid "Recent Events"
2098
  msgstr "اتفاقات اخیر"
2099
 
2100
+ #: ../admin/view/wp-slimstat-reports.php:684
2101
+ #: ../admin/view/wp-slimstat-reports.php:708
2102
  #, fuzzy
2103
  msgid ""
2104
  "This report lists any <em>event</em> occurred on your website. Please refer "
2107
  "این گزارش تمامی رویداد های پایگاه شما را فهرست میکند. لطفا برای کسب اطلاع "
2108
  "بیشتر در این مورد به بخش پرسش و پاسخ مراجعه کنید."
2109
 
2110
+ #: ../admin/view/wp-slimstat-reports.php:687
2111
  msgid "Top Posts"
2112
  msgstr "برترین ارسال ها"
2113
 
2114
+ #: ../admin/view/wp-slimstat-reports.php:699
2115
  #, fuzzy
2116
  msgid "Top Events"
2117
  msgstr "برترین صفحات"
2118
 
2119
+ #: ../admin/view/wp-slimstat-reports.php:711
2120
  msgid "Top Internal Searches"
2121
  msgstr "برترین جستجوهای داخلی"
2122
 
2123
+ #: ../admin/view/wp-slimstat-reports.php:723
2124
  msgid "Recent Categories"
2125
  msgstr "دسته‌های اخیر"
2126
 
2127
+ #: ../admin/view/wp-slimstat-reports.php:735
2128
  msgid "Top Pages Not Found"
2129
  msgstr "برترین صفحاتی که پیدا نشد"
2130
 
2131
+ #: ../admin/view/wp-slimstat-reports.php:747
2132
  msgid "Top Authors"
2133
  msgstr "برترین نویسنده‌ها"
2134
 
2135
+ #: ../admin/view/wp-slimstat-reports.php:758
2136
  msgid "Top Tags"
2137
  msgstr "برترین نشانه ها"
2138
 
2139
+ #: ../admin/view/wp-slimstat-reports.php:770
2140
  msgid "Recent Downloads"
2141
  msgstr "بارگیری های اخیر"
2142
 
2143
+ #: ../admin/view/wp-slimstat-reports.php:782
2144
  #, fuzzy
2145
  msgid "Top Outbound Links"
2146
  msgstr "پیوند بیرونی"
2147
 
2148
+ #: ../admin/view/wp-slimstat-reports.php:794
2149
  msgid "Your Website"
2150
  msgstr "تارنمای شما"
2151
 
2152
+ #: ../admin/view/wp-slimstat-reports.php:801
2153
  msgid ""
2154
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2155
  "this report is not affected by the filters set here above."
2157
  "محتوای شما در یک نگاه: ارسال ها، نظرها و غیره. این گزارش با صافی های بالا "
2158
  "کاربرد نمیشود."
2159
 
2160
+ #: ../admin/view/wp-slimstat-reports.php:804
2161
  #, fuzzy
2162
  msgid "Top Bounce Pages"
2163
  msgstr "صفحات وازده"
2164
 
2165
+ #: ../admin/view/wp-slimstat-reports.php:817
2166
  #, fuzzy
2167
  msgid "Top Exit Pages"
2168
  msgstr "برترین صفحات"
2169
 
2170
+ #: ../admin/view/wp-slimstat-reports.php:830
2171
  #, fuzzy
2172
  msgid "Top Entry Pages"
2173
  msgstr "برترین صفحات"
2174
 
2175
+ #: ../admin/view/wp-slimstat-reports.php:843
2176
+ #: ../admin/view/wp-slimstat-reports.php:852
2177
+ #, fuzzy
2178
+ msgid "Outbound Links"
2179
+ msgstr "پیوند بیرونی"
2180
+
2181
+ #: ../admin/view/wp-slimstat-reports.php:853
2182
+ msgid "Unique Outbound"
2183
+ msgstr ""
2184
+
2185
+ #: ../admin/view/wp-slimstat-reports.php:862
2186
  msgid "World Map"
2187
  msgstr "نقشه جهان"
2188
 
2189
+ #: ../admin/view/wp-slimstat-reports.php:944
2190
  msgid "Refresh"
2191
  msgstr "تازه سازی"
2192
 
2193
+ #: ../admin/view/wp-slimstat-reports.php:981
2194
  #, php-format
2195
  msgid "Results %s - %s of %s"
2196
  msgstr " نتایج %s - %s از %s"
2197
 
2198
+ #: ../admin/view/wp-slimstat-reports.php:983
2199
  msgid "Refresh in"
2200
  msgstr "تازه سازی در"
2201
 
2202
+ #: ../admin/view/wp-slimstat-reports.php:1076
2203
  msgid "Category ID"
2204
  msgstr "شناسه دسته"
2205
 
2206
+ #: ../admin/view/wp-slimstat-reports.php:1081
2207
+ #: ../admin/view/wp-slimstat-reports.php:1096
2208
+ #: ../admin/view/wp-slimstat-reports.php:1102
2209
  #, fuzzy
2210
  msgid "Code"
2211
  msgstr "کد محیط عامل"
2212
 
2213
+ #: ../admin/view/wp-slimstat-reports.php:1097
2214
+ #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1421
2215
  msgid "l-"
2216
  msgstr ""
2217
 
2218
+ #: ../admin/view/wp-slimstat-reports.php:1114
2219
  msgid "URL"
2220
  msgstr ""
2221
 
2222
+ #: ../admin/view/wp-slimstat-reports.php:1127
2223
  msgid "Referrer"
2224
  msgstr "ارجاع دهنده"
2225
 
2226
+ #: ../admin/view/wp-slimstat-reports.php:1168
2227
+ #: ../admin/view/wp-slimstat-reports.php:1415
2228
+ #: ../admin/view/wp-slimstat-reports.php:1471
2229
+ #: ../admin/view/wp-slimstat-reports.php:1477
2230
+ #: ../admin/view/wp-slimstat-reports.php:1483
2231
+ #: ../admin/view/wp-slimstat-reports.php:1489
2232
+ #: ../admin/view/wp-slimstat-reports.php:1495
2233
+ #: ../admin/view/wp-slimstat-reports.php:1501
2234
+ #: ../admin/view/wp-slimstat-reports.php:1507
2235
+ #: ../admin/view/wp-slimstat-reports.php:1727
2236
  msgid "Hits"
2237
  msgstr "بازدیدها"
2238
 
2239
+ #: ../admin/view/wp-slimstat-reports.php:1342
 
 
 
 
 
 
 
 
 
2240
  #, fuzzy
2241
  msgid "Dataset Size"
2242
  msgstr "اندازه پایگاه داده"
2243
 
2244
+ #: ../admin/view/wp-slimstat-reports.php:1344
2245
  msgid "Total number of records stored in the database."
2246
  msgstr ""
2247
 
2248
+ #: ../admin/view/wp-slimstat-reports.php:1346
2249
  msgid "DB Size"
2250
  msgstr "اندازه پایگاه داده"
2251
 
2252
+ #: ../admin/view/wp-slimstat-reports.php:1349
2253
  #, fuzzy
2254
  msgid "Tracking Enabled"
2255
  msgstr " حالت ردگیری"
2256
 
2257
+ #: ../admin/view/wp-slimstat-reports.php:1352
2258
  msgid "Javascript Mode"
2259
  msgstr "فعال سازی حالت جاوااسکریپت"
2260
 
2261
+ #: ../admin/view/wp-slimstat-reports.php:1355
2262
  msgid "Tracking Browser Caps"
2263
  msgstr "ردگیری قابلیت‌های مرورگر"
2264
 
2265
+ #: ../admin/view/wp-slimstat-reports.php:1358
2266
  msgid "Auto purge"
2267
  msgstr "پاک‌سازی خودکار"
2268
 
2269
+ #: ../admin/view/wp-slimstat-reports.php:1361
2270
  msgid "Oldest pageview"
2271
  msgstr "قدیمی‌ترین بازدید"
2272
 
2273
+ #: ../admin/view/wp-slimstat-reports.php:1362
2274
  msgid "No visits"
2275
  msgstr "بازدیدی نیست"
2276
 
2277
+ #: ../admin/view/wp-slimstat-reports.php:1366
 
 
 
 
 
2278
  msgid "Date when the MaxMind Geolocation database was last updated."
2279
  msgstr ""
2280
 
2281
+ #: ../admin/view/wp-slimstat-reports.php:1377
2282
+ #: ../admin/view/wp-slimstat-reports.php:1535
2283
  #, fuzzy
2284
  msgid ""
2285
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2287
  msgstr ""
2288
  "درخواست بارگیری یک پرونده زنگام. هر اجرای ردگیری منجر به ثبت یک بازید میشود."
2289
 
2290
+ #: ../admin/view/wp-slimstat-reports.php:1379
2291
  #, fuzzy
2292
  msgid "Days in Range"
2293
  msgstr "محدوده زمانی"
2294
 
2295
+ #: ../admin/view/wp-slimstat-reports.php:1382
2296
  #, fuzzy
2297
  msgid "Average Daily Pageviews"
2298
  msgstr "میان‌گین مشاهده صفحات"
2299
 
2300
+ #: ../admin/view/wp-slimstat-reports.php:1384
2301
  #, fuzzy
2302
  msgid ""
2303
  "How many pages have been visited on average every day during the current "
2304
  "period."
2305
  msgstr "چند صفحه به طور میانگین در "
2306
 
2307
+ #: ../admin/view/wp-slimstat-reports.php:1386
2308
  msgid "From Search Results"
2309
  msgstr "از نتایج جستجو"
2310
 
2311
+ #: ../admin/view/wp-slimstat-reports.php:1388
2312
  msgid ""
2313
  "Visitors who landed on your site after searching for a keyword on Google, "
2314
  "Yahoo, etc."
2315
  msgstr "کاربرانی که بعد از جستجو در موتورهای جستجو به سایت شما رسیده‌اند."
2316
 
2317
+ #: ../admin/view/wp-slimstat-reports.php:1392
2318
  msgid ""
2319
  "Used to differentiate between multiple requests to download a file from one "
2320
  "internet address (IP) and requests originating from many distinct addresses"
2322
  " این برای تشخیص دادن چندین درخواست بارگیری پرونده از یک آی پی ادرس و یا "
2323
  "درخواست از چند آی پی ادرس مختلف است."
2324
 
2325
+ #: ../admin/view/wp-slimstat-reports.php:1394
2326
  msgid "Last 30 minutes"
2327
  msgstr "۳۰ دقیقه اخیر"
2328
 
2329
+ #: ../admin/view/wp-slimstat-reports.php:1433
2330
  msgid ""
2331
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2332
  "multiple times if they perform multiple visits."
2334
  "هر بازدید یک جلسه است که حداکثر ۳۰ دقیقه میباشد. «بیننده دوباره» چند بار "
2335
  "شمارش میشود اگر چند بار بازدید کنند."
2336
 
2337
+ #: ../admin/view/wp-slimstat-reports.php:1437
2338
  msgid "It includes only traffic generated by human visitors."
2339
  msgstr "فقط شامل ترافیک انسانی میشود"
2340
 
2341
+ #: ../admin/view/wp-slimstat-reports.php:1439
2342
  msgid "Bounce rate"
2343
  msgstr "میزان وازده گی"
2344
 
2345
+ #: ../admin/view/wp-slimstat-reports.php:1441
2346
  msgid ""
2347
  "Percentage of single-page visits, i.e. visits in which the person left your "
2348
  "site from the entrance page."
2349
  msgstr "درصد بازدید «تک-صفحه» ها؛ یعنی بازدیدی که فقط «صفحه ورودی» بود."
2350
 
2351
+ #: ../admin/view/wp-slimstat-reports.php:1443
2352
  msgid "Known visitors"
2353
  msgstr "بیننده های آشنا"
2354
 
2355
+ #: ../admin/view/wp-slimstat-reports.php:1445
2356
  msgid "Visitors who had previously left a comment on your blog."
2357
  msgstr "بازدیدکنندگانی که قبلا در تارنامه نظر ثبت کرده‌اند"
2358
 
2359
+ #: ../admin/view/wp-slimstat-reports.php:1447
2360
  msgid "New visitors"
2361
  msgstr "بازدیدکنندگان جدید"
2362
 
2363
+ #: ../admin/view/wp-slimstat-reports.php:1449
2364
  msgid "Human users who visited your site only once."
2365
  msgstr "کاربرانی که فقط یک بار پایگاه شما را دیده‌اند."
2366
 
2367
+ #: ../admin/view/wp-slimstat-reports.php:1451
2368
  msgid "Bots"
2369
  msgstr "ربات‌ها"
2370
 
2371
+ #: ../admin/view/wp-slimstat-reports.php:1454
2372
+ #, fuzzy
2373
+ msgid "Pageviews per visit"
2374
  msgstr "صفحات در بازدید"
2375
 
2376
+ #: ../admin/view/wp-slimstat-reports.php:1457
2377
  msgid "Longest visit"
2378
  msgstr "طولانی‌ترین مشاهده صفحات"
2379
 
2380
+ #: ../admin/view/wp-slimstat-reports.php:1458
2381
  msgid "hits"
2382
  msgstr "مشاهدات"
2383
 
2384
+ #: ../admin/view/wp-slimstat-reports.php:1469
2385
  msgid "0 - 30 seconds"
2386
  msgstr "۰ تا ۳۰ ثانیه"
2387
 
2388
+ #: ../admin/view/wp-slimstat-reports.php:1475
2389
  msgid "31 - 60 seconds"
2390
  msgstr "۳۱ تا ۶۰ ثانیه"
2391
 
2392
+ #: ../admin/view/wp-slimstat-reports.php:1481
2393
  msgid "1 - 3 minutes"
2394
  msgstr "۱ تا ۳ دقیقه"
2395
 
2396
+ #: ../admin/view/wp-slimstat-reports.php:1487
2397
  msgid "3 - 5 minutes"
2398
  msgstr "۳ تا ۵ دقیقه"
2399
 
2400
+ #: ../admin/view/wp-slimstat-reports.php:1493
2401
  msgid "5 - 7 minutes"
2402
  msgstr "۵ تا ۷ دقیقه"
2403
 
2404
+ #: ../admin/view/wp-slimstat-reports.php:1499
2405
  msgid "7 - 10 minutes"
2406
  msgstr "۷ تا ۱۰ دقیقه"
2407
 
2408
+ #: ../admin/view/wp-slimstat-reports.php:1505
2409
  msgid "More than 10 minutes"
2410
  msgstr "بیش از ۱۰ دقیقه"
2411
 
2412
+ #: ../admin/view/wp-slimstat-reports.php:1517
2413
  #, fuzzy
2414
  msgid "Average visit duration"
2415
  msgstr "طول دوره بازدید"
2416
 
2417
+ #: ../admin/view/wp-slimstat-reports.php:1537
2418
  msgid "Unique Referrers"
2419
  msgstr "ارجاع‌دهنده‌های یکتا"
2420
 
2421
+ #: ../admin/view/wp-slimstat-reports.php:1539
2422
  msgid ""
2423
  "A referrer (or referring site) is the site that a visitor previously visited "
2424
  "before following a link to your site."
2425
  msgstr ""
2426
  "ارجاع دهنده (یا پایگاه ارجاع دهنده) که بیننده را به پایگاه شما پیوند زده است."
2427
 
2428
+ #: ../admin/view/wp-slimstat-reports.php:1541
2429
  msgid "Direct Pageviews"
2430
  msgstr "مشاهده صفحات بی‌واسطه"
2431
 
2432
+ #: ../admin/view/wp-slimstat-reports.php:1543
2433
  msgid ""
2434
  "Visitors who visited the site by typing the URL directly into their browser. "
2435
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
2440
  "کاربرانی که با استفاده از bookmarks/favorites، و یا از پیوندهایی در نامک و "
2441
  "مدارک که متغییر ردگیری ندارند نیز بشود."
2442
 
2443
+ #: ../admin/view/wp-slimstat-reports.php:1545
2444
  msgid "From a search result"
2445
  msgstr "از نتایج جستجو"
2446
 
2447
+ #: ../admin/view/wp-slimstat-reports.php:1547
2448
  msgid ""
2449
  "Visitors who came to your site via searches on Google or some other search "
2450
  "engine."
2451
  msgstr "کاربرانی که از گوگل یا سایر موتورهای جستجو به پایگاه شما آمده‌اند."
2452
 
2453
+ #: ../admin/view/wp-slimstat-reports.php:1549
2454
  msgid "Unique Landing Pages"
2455
  msgstr "صفحات فرودی خاص"
2456
 
2457
+ #: ../admin/view/wp-slimstat-reports.php:1551
2458
  msgid ""
2459
  "The first page that a user views during a session. This is also known as the "
2460
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
2465
  "به عنوان مثال اگر کاربری برای «بستنی» جستجو کند و در صفحه اصلی شما هدایت "
2466
  "شود، در آن جلسه به عنوان «صفحه ورودی» حساب میشود."
2467
 
2468
+ #: ../admin/view/wp-slimstat-reports.php:1553
2469
  msgid "Bounce Pages"
2470
  msgstr "صفحات وازده"
2471
 
2472
+ #: ../admin/view/wp-slimstat-reports.php:1555
2473
  #, fuzzy
2474
  msgid "Number of single page visits to your site over the selected period."
2475
  msgstr "تعداد بازدید «تک-صفحه» به پایگاه شما در بازه زمانی انتخاب شده."
2476
 
2477
+ #: ../admin/view/wp-slimstat-reports.php:1557
2478
  msgid "New Visitors Rate"
2479
  msgstr "میزان بازدیدکنندگان جدید"
2480
 
2481
+ #: ../admin/view/wp-slimstat-reports.php:1559
2482
  #, fuzzy
2483
  msgid ""
2484
  "Percentage of single page visits, i.e. visits in which the person left your "
2485
  "site from the entrance page."
2486
  msgstr "درصد بازدید «تک-صفحه» ها؛ یعنی بازدیدی که فقط «صفحه ورودی» بود."
2487
 
2488
+ #: ../admin/view/wp-slimstat-reports.php:1561
2489
  msgid "Currently from search engines"
2490
  msgstr "هم‌اکنون از موتورهای جستجو"
2491
 
2492
+ #: ../admin/view/wp-slimstat-reports.php:1563
2493
  msgid ""
2494
  "Visitors who visited the site in the last 5 minutes coming from a search "
2495
  "engine."
2496
  msgstr "کاربرانی که در ۵ دقیقه گذشته از یک موتور جستجو به پایگاه شما آمده‌اند."
2497
 
2498
+ #: ../admin/view/wp-slimstat-reports.php:1633
2499
  msgid "Number of pages in your site included in Google's index."
2500
  msgstr "تعداد صفحاتی که در فهرست گوگل شمرده شده است."
2501
 
2502
+ #: ../admin/view/wp-slimstat-reports.php:1634
2503
  msgid "Google Index"
2504
  msgstr "اندیس گوگل"
2505
 
2506
+ #: ../admin/view/wp-slimstat-reports.php:1635
2507
  msgid "Number of pages, according to Google, that link back to your site."
2508
  msgstr "تعداد صفحات که به گفته گوگل به پایگاه پیوند میدهند. "
2509
 
2510
+ #: ../admin/view/wp-slimstat-reports.php:1636
2511
  msgid "Google Backlinks"
2512
  msgstr ""
2513
 
2514
+ #: ../admin/view/wp-slimstat-reports.php:1637
2515
  msgid ""
2516
  "How many times the Facebook Like button has been approximately clicked on "
2517
  "your site."
2518
  msgstr "چند بار Facebook Like در پایگاه شما کلیک شده است."
2519
 
2520
+ #: ../admin/view/wp-slimstat-reports.php:1638
2521
  msgid "Facebook Likes"
2522
  msgstr "لایک های فیسبوک"
2523
 
2524
+ #: ../admin/view/wp-slimstat-reports.php:1639
2525
  msgid ""
2526
  "How many times your site has been shared by someone on the social network."
2527
  msgstr "چند بار پایگاه شما در شبکه های اجتماعی بخش شده است"
2528
 
2529
+ #: ../admin/view/wp-slimstat-reports.php:1640
2530
  msgid "Facebook Shares"
2531
  msgstr "بخش های فیسبوک"
2532
 
2533
+ #: ../admin/view/wp-slimstat-reports.php:1641
2534
  msgid "How many times links to your website have been clicked on Facebook."
2535
  msgstr "چند بار پایگاه شما در Facebook فشار داده شده است."
2536
 
2537
+ #: ../admin/view/wp-slimstat-reports.php:1642
2538
  msgid "Facebook Clicks"
2539
  msgstr "Facebook Clicks"
2540
 
2541
+ #: ../admin/view/wp-slimstat-reports.php:1643
2542
  msgid ""
2543
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2544
  "traffic data."
2546
  "شرکت Alexa بخشی از Amazon.com میباشد که گزارش پایگاه های تبلیغاتی را انجام "
2547
  "میدهد."
2548
 
2549
+ #: ../admin/view/wp-slimstat-reports.php:1644
2550
  msgid "Alexa World Rank"
2551
  msgstr ""
2552
 
2553
+ #: ../admin/view/wp-slimstat-reports.php:1645
2554
  msgid "Alexa Country Rank"
2555
  msgstr ""
2556
 
2557
+ #: ../admin/view/wp-slimstat-reports.php:1646
2558
  msgid "Alexa Popularity"
2559
  msgstr ""
2560
 
2561
+ #: ../admin/view/wp-slimstat-reports.php:1657
2562
  msgid "Content Items"
2563
  msgstr " محتوا موردها"
2564
 
2565
+ #: ../admin/view/wp-slimstat-reports.php:1659
2566
  msgid ""
2567
  "This value includes not only posts, but also custom post types, regardless "
2568
  "of their status"
2569
  msgstr "این مقدار شامل همه ارسال ها میشود"
2570
 
2571
+ #: ../admin/view/wp-slimstat-reports.php:1661
2572
  #, fuzzy
2573
  msgid "Posts"
2574
  msgstr "برترین ارسال ها"
2575
 
2576
+ #: ../admin/view/wp-slimstat-reports.php:1664
2577
  #, fuzzy
2578
  msgid "Pages"
2579
  msgstr "برترین صفحات"
2580
 
2581
+ #: ../admin/view/wp-slimstat-reports.php:1667
2582
  msgid "Attachments"
2583
  msgstr ""
2584
 
2585
+ #: ../admin/view/wp-slimstat-reports.php:1670
2586
  #, fuzzy
2587
  msgid "Revisions"
2588
  msgstr "مجوزها"
2589
 
2590
+ #: ../admin/view/wp-slimstat-reports.php:1673
2591
  #, fuzzy
2592
  msgid "Comments"
2593
  msgstr "همه نظرها"
2594
 
2595
+ #: ../admin/view/wp-slimstat-reports.php:1676
2596
  #, fuzzy
2597
  msgid "Avg Comments per Post"
2598
  msgstr "میانگین نظر برای هر ارسال"
2599
 
2600
+ #: ../admin/view/wp-slimstat-reports.php:1679
2601
  msgid "Avg Server Latency"
2602
  msgstr ""
2603
 
2604
+ #: ../admin/view/wp-slimstat-reports.php:1681
2605
  msgid ""
2606
  "Latency is the amount of time it takes for the host server to receive and "
2607
  "process a request for a page object. The amount of latency depends largely "
2608
  "on how far away the user is from the server."
2609
  msgstr ""
2610
 
2611
+ #: ../admin/view/wp-slimstat-reports.php:1724
2612
  #, fuzzy
2613
  msgid "Coordinates"
2614
  msgstr " حالت ردگیری"
2615
 
2616
+ #: ../admin/view/wp-slimstat-reports.php:1724
2617
  msgid "Date"
2618
  msgstr ""
2619
 
2620
+ #: ../admin/view/wp-slimstat-reports.php:1761
2621
  msgid "Error contacting the GetSocial endpoint."
2622
  msgstr ""
2623
 
2624
+ #: ../admin/view/wp-slimstat-reports.php:1769
2625
  msgid "Error decoding the GetSocial payload."
2626
  msgstr ""
2627
 
2628
+ #: ../admin/view/wp-slimstat-reports.php:1801
2629
  msgid ""
2630
  "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2631
  ">social media metrics and identify your top performing posts.<br/> <a "
2633
  msgstr ""
2634
 
2635
  # Unknown
2636
+ #: ../admin/view/wp-slimstat-reports.php:1811
2637
  msgid "c-xx"
2638
  msgstr "Unknown"
2639
 
2640
  # Afghanistan
2641
+ #: ../admin/view/wp-slimstat-reports.php:1811
2642
  msgid "c-af"
2643
  msgstr "Afghanistan"
2644
 
2645
  # Åland Islands
2646
+ #: ../admin/view/wp-slimstat-reports.php:1811
2647
  msgid "c-ax"
2648
  msgstr "Aland Islands"
2649
 
2650
  # Albania
2651
+ #: ../admin/view/wp-slimstat-reports.php:1811
2652
  msgid "c-al"
2653
  msgstr "Albania"
2654
 
2655
  # Algeria
2656
+ #: ../admin/view/wp-slimstat-reports.php:1811
2657
  msgid "c-dz"
2658
  msgstr "Algeria"
2659
 
2660
  # Andorra
2661
+ #: ../admin/view/wp-slimstat-reports.php:1811
2662
  msgid "c-ad"
2663
  msgstr "Andorra"
2664
 
2665
  # Angola
2666
+ #: ../admin/view/wp-slimstat-reports.php:1811
2667
  msgid "c-ao"
2668
  msgstr "Angola"
2669
 
2670
  # Anguilla
2671
+ #: ../admin/view/wp-slimstat-reports.php:1811
2672
  msgid "c-ai"
2673
  msgstr "Anguilla"
2674
 
2675
  # Antigua and Barbuda
2676
+ #: ../admin/view/wp-slimstat-reports.php:1811
2677
  msgid "c-ag"
2678
  msgstr "Antigua and Barbuda"
2679
 
2680
  # Argentina
2681
+ #: ../admin/view/wp-slimstat-reports.php:1811
2682
  msgid "c-ar"
2683
  msgstr "Argentina"
2684
 
2685
  # Armenia
2686
+ #: ../admin/view/wp-slimstat-reports.php:1811
2687
  msgid "c-am"
2688
  msgstr "Armenia"
2689
 
2690
  # Aruba
2691
+ #: ../admin/view/wp-slimstat-reports.php:1811
2692
  msgid "c-aw"
2693
  msgstr "Aruba"
2694
 
2695
  # Australia
2696
+ #: ../admin/view/wp-slimstat-reports.php:1811
2697
  msgid "c-au"
2698
  msgstr "Australia"
2699
 
2700
  # Austria
2701
+ #: ../admin/view/wp-slimstat-reports.php:1811
2702
  msgid "c-at"
2703
  msgstr "Austria"
2704
 
2705
  # Azerbaijan
2706
+ #: ../admin/view/wp-slimstat-reports.php:1811
2707
  msgid "c-az"
2708
  msgstr "Azerbaijan"
2709
 
2710
  # Bahamas
2711
+ #: ../admin/view/wp-slimstat-reports.php:1811
2712
  msgid "c-bs"
2713
  msgstr "Bahamas"
2714
 
2715
  # Bahrain
2716
+ #: ../admin/view/wp-slimstat-reports.php:1811
2717
  msgid "c-bh"
2718
  msgstr "Bahrain"
2719
 
2720
  # Bangladesh
2721
+ #: ../admin/view/wp-slimstat-reports.php:1811
2722
  msgid "c-bd"
2723
  msgstr "Bangladesh"
2724
 
2725
  # Barbados
2726
+ #: ../admin/view/wp-slimstat-reports.php:1811
2727
  msgid "c-bb"
2728
  msgstr "Barbados"
2729
 
2730
  # Belarus
2731
+ #: ../admin/view/wp-slimstat-reports.php:1811
2732
  msgid "c-by"
2733
  msgstr "Belarus"
2734
 
2735
  # Belgium
2736
+ #: ../admin/view/wp-slimstat-reports.php:1811
2737
  msgid "c-be"
2738
  msgstr "Belgium"
2739
 
2740
  # Belize
2741
+ #: ../admin/view/wp-slimstat-reports.php:1811
2742
  msgid "c-bz"
2743
  msgstr "Belize"
2744
 
2745
  # Benin
2746
+ #: ../admin/view/wp-slimstat-reports.php:1811
2747
  msgid "c-bj"
2748
  msgstr "Benin"
2749
 
2750
  # Bermuda
2751
+ #: ../admin/view/wp-slimstat-reports.php:1811
2752
  msgid "c-bm"
2753
  msgstr "Bermuda"
2754
 
2755
  # Bhutan
2756
+ #: ../admin/view/wp-slimstat-reports.php:1811
2757
  msgid "c-bt"
2758
  msgstr "Bhutan"
2759
 
2760
  # Bolivia
2761
+ #: ../admin/view/wp-slimstat-reports.php:1811
2762
  msgid "c-bo"
2763
  msgstr "Bolivia"
2764
 
2765
  # Bosnia and Herzegovina
2766
+ #: ../admin/view/wp-slimstat-reports.php:1811
2767
  msgid "c-ba"
2768
  msgstr "Bosnia and Herzegovina"
2769
 
2770
  # Botswana
2771
+ #: ../admin/view/wp-slimstat-reports.php:1811
2772
  msgid "c-bw"
2773
  msgstr "Botswana"
2774
 
2775
  # Brazil
2776
+ #: ../admin/view/wp-slimstat-reports.php:1811
2777
  msgid "c-br"
2778
  msgstr "Brazil"
2779
 
2780
  # Brunei Darussalam
2781
+ #: ../admin/view/wp-slimstat-reports.php:1811
2782
  msgid "c-bn"
2783
  msgstr "Brunei Darussalam"
2784
 
2785
  # Bulgaria
2786
+ #: ../admin/view/wp-slimstat-reports.php:1811
2787
  msgid "c-bg"
2788
  msgstr "Bulgaria"
2789
 
2790
  # Burkina Faso
2791
+ #: ../admin/view/wp-slimstat-reports.php:1811
2792
  msgid "c-bf"
2793
  msgstr "Burkina Faso"
2794
 
2795
  # Burundi
2796
+ #: ../admin/view/wp-slimstat-reports.php:1811
2797
  msgid "c-bi"
2798
  msgstr "Burundi"
2799
 
2800
  # Cambodia
2801
+ #: ../admin/view/wp-slimstat-reports.php:1811
2802
  msgid "c-kh"
2803
  msgstr "Cambodia"
2804
 
2805
  # Cameroon
2806
+ #: ../admin/view/wp-slimstat-reports.php:1811
2807
  msgid "c-cm"
2808
  msgstr "Cameroon"
2809
 
2810
  # Canada
2811
+ #: ../admin/view/wp-slimstat-reports.php:1811
2812
  msgid "c-ca"
2813
  msgstr "Canada"
2814
 
2815
  # Cape Verde
2816
+ #: ../admin/view/wp-slimstat-reports.php:1811
2817
  msgid "c-cv"
2818
  msgstr "Cape Verde"
2819
 
2820
  # Cayman Islands
2821
+ #: ../admin/view/wp-slimstat-reports.php:1811
2822
  msgid "c-ky"
2823
  msgstr "Cayman Islands"
2824
 
2825
  # Central African Republic
2826
+ #: ../admin/view/wp-slimstat-reports.php:1811
2827
  msgid "c-cf"
2828
  msgstr "Central African Republic"
2829
 
2830
  # Chad
2831
+ #: ../admin/view/wp-slimstat-reports.php:1811
2832
  msgid "c-td"
2833
  msgstr "Chad"
2834
 
2835
  # Chile
2836
+ #: ../admin/view/wp-slimstat-reports.php:1811
2837
  msgid "c-cl"
2838
  msgstr "Chile"
2839
 
2840
  # China
2841
+ #: ../admin/view/wp-slimstat-reports.php:1811
2842
  msgid "c-cn"
2843
  msgstr "China"
2844
 
2845
  # Colombia
2846
+ #: ../admin/view/wp-slimstat-reports.php:1811
2847
  msgid "c-co"
2848
  msgstr "Colombia"
2849
 
2850
  # Comoros
2851
+ #: ../admin/view/wp-slimstat-reports.php:1811
2852
  msgid "c-km"
2853
  msgstr "Comoros"
2854
 
2855
  # Congo
2856
+ #: ../admin/view/wp-slimstat-reports.php:1811
2857
  msgid "c-cg"
2858
  msgstr "Congo"
2859
 
2860
  # The Democratic Republic of the Congo
2861
+ #: ../admin/view/wp-slimstat-reports.php:1811
2862
  msgid "c-cd"
2863
  msgstr "The Democratic Republic of the Congo"
2864
 
2865
  # Costa Rica
2866
+ #: ../admin/view/wp-slimstat-reports.php:1811
2867
  msgid "c-cr"
2868
  msgstr "Costa Rica"
2869
 
2870
  # Côte d'Ivoire
2871
+ #: ../admin/view/wp-slimstat-reports.php:1811
2872
  msgid "c-ci"
2873
  msgstr "Côte d'Ivoire"
2874
 
2875
  # Croatia
2876
+ #: ../admin/view/wp-slimstat-reports.php:1811
2877
  msgid "c-hr"
2878
  msgstr "Croatia"
2879
 
2880
  # Cuba
2881
+ #: ../admin/view/wp-slimstat-reports.php:1811
2882
  msgid "c-cu"
2883
  msgstr "Cuba"
2884
 
2885
  # Cyprus
2886
+ #: ../admin/view/wp-slimstat-reports.php:1811
2887
  msgid "c-cy"
2888
  msgstr "Cyprus"
2889
 
2890
  # Czech Republic
2891
+ #: ../admin/view/wp-slimstat-reports.php:1811
2892
  msgid "c-cz"
2893
  msgstr "Czech Republic"
2894
 
2895
  # Denmark
2896
+ #: ../admin/view/wp-slimstat-reports.php:1811
2897
  msgid "c-dk"
2898
  msgstr "Denmark"
2899
 
2900
  # Djibouti
2901
+ #: ../admin/view/wp-slimstat-reports.php:1811
2902
  msgid "c-dj"
2903
  msgstr "Djibouti"
2904
 
2905
  # Dominica
2906
+ #: ../admin/view/wp-slimstat-reports.php:1811
2907
  msgid "c-dm"
2908
  msgstr "Dominica"
2909
 
2910
  # Dominican Republic
2911
+ #: ../admin/view/wp-slimstat-reports.php:1811
2912
  msgid "c-do"
2913
  msgstr "Dominican Republic"
2914
 
2915
  # Ecuador
2916
+ #: ../admin/view/wp-slimstat-reports.php:1811
2917
  msgid "c-ec"
2918
  msgstr "Ecuador"
2919
 
2920
  # Egypt
2921
+ #: ../admin/view/wp-slimstat-reports.php:1811
2922
  msgid "c-eg"
2923
  msgstr "Egypt"
2924
 
2925
  # El Salvador
2926
+ #: ../admin/view/wp-slimstat-reports.php:1811
2927
  msgid "c-sv"
2928
  msgstr "El Salvador"
2929
 
2930
  # Equatorial Guinea
2931
+ #: ../admin/view/wp-slimstat-reports.php:1811
2932
  msgid "c-gq"
2933
  msgstr "Equatorial Guinea"
2934
 
2935
  # Eritrea
2936
+ #: ../admin/view/wp-slimstat-reports.php:1811
2937
  msgid "c-er"
2938
  msgstr "Eritrea"
2939
 
2940
  # Estonia
2941
+ #: ../admin/view/wp-slimstat-reports.php:1811
2942
  msgid "c-ee"
2943
  msgstr "Estonia"
2944
 
2945
  # Ethiopia
2946
+ #: ../admin/view/wp-slimstat-reports.php:1811
2947
  msgid "c-et"
2948
  msgstr "Ethiopia"
2949
 
2950
  # Faroe Islands
2951
+ #: ../admin/view/wp-slimstat-reports.php:1811
2952
  msgid "c-fo"
2953
  msgstr "Faroe Islands"
2954
 
2955
  # Falkland Islands (Malvinas)
2956
+ #: ../admin/view/wp-slimstat-reports.php:1811
2957
  msgid "c-fk"
2958
  msgstr "Falkland Islands (Malvinas)"
2959
 
2960
  # Fiji
2961
+ #: ../admin/view/wp-slimstat-reports.php:1811
2962
  msgid "c-fj"
2963
  msgstr "Fiji"
2964
 
2965
  # Finland
2966
+ #: ../admin/view/wp-slimstat-reports.php:1811
2967
  msgid "c-fi"
2968
  msgstr "Finland"
2969
 
2970
  # France
2971
+ #: ../admin/view/wp-slimstat-reports.php:1811
2972
  msgid "c-fr"
2973
  msgstr "France"
2974
 
2975
  # French Guiana
2976
+ #: ../admin/view/wp-slimstat-reports.php:1811
2977
  msgid "c-gf"
2978
  msgstr "French Guiana"
2979
 
2980
  # Gabon
2981
+ #: ../admin/view/wp-slimstat-reports.php:1811
2982
  msgid "c-ga"
2983
  msgstr "Gabon"
2984
 
2985
  # Gambia
2986
+ #: ../admin/view/wp-slimstat-reports.php:1811
2987
  msgid "c-gm"
2988
  msgstr "Gambia"
2989
 
2990
  # Georgia
2991
+ #: ../admin/view/wp-slimstat-reports.php:1811
2992
  msgid "c-ge"
2993
  msgstr "Georgia"
2994
 
2995
  # Germany
2996
+ #: ../admin/view/wp-slimstat-reports.php:1811
2997
  msgid "c-de"
2998
  msgstr "Germany"
2999
 
3000
  # Ghana
3001
+ #: ../admin/view/wp-slimstat-reports.php:1811
3002
  msgid "c-gh"
3003
  msgstr "Ghana"
3004
 
3005
  # Greece
3006
+ #: ../admin/view/wp-slimstat-reports.php:1811
3007
  msgid "c-gr"
3008
  msgstr "Greece"
3009
 
3010
  # Greenland
3011
+ #: ../admin/view/wp-slimstat-reports.php:1811
3012
  msgid "c-gl"
3013
  msgstr "Greenland"
3014
 
3015
  # Grenada
3016
+ #: ../admin/view/wp-slimstat-reports.php:1811
3017
  msgid "c-gd"
3018
  msgstr "Grenada"
3019
 
3020
  # Guadeloupe
3021
+ #: ../admin/view/wp-slimstat-reports.php:1811
3022
  msgid "c-gp"
3023
  msgstr "Guadeloupe"
3024
 
3025
  # Guatemala
3026
+ #: ../admin/view/wp-slimstat-reports.php:1811
3027
  msgid "c-gt"
3028
  msgstr "Guatemala"
3029
 
3030
  # Guinea
3031
+ #: ../admin/view/wp-slimstat-reports.php:1811
3032
  msgid "c-gn"
3033
  msgstr "Guinea"
3034
 
3035
  # Guinea-Bissau
3036
+ #: ../admin/view/wp-slimstat-reports.php:1811
3037
  msgid "c-gw"
3038
  msgstr "Guinea-Bissau"
3039
 
3040
  # Guyana
3041
+ #: ../admin/view/wp-slimstat-reports.php:1811
3042
  msgid "c-gy"
3043
  msgstr "Guyana"
3044
 
3045
  # Haiti
3046
+ #: ../admin/view/wp-slimstat-reports.php:1811
3047
  msgid "c-ht"
3048
  msgstr "Haiti"
3049
 
3050
  # Honduras
3051
+ #: ../admin/view/wp-slimstat-reports.php:1811
3052
  msgid "c-hn"
3053
  msgstr "Honduras"
3054
 
3055
  # Hong Kong
3056
+ #: ../admin/view/wp-slimstat-reports.php:1811
3057
  msgid "c-hk"
3058
  msgstr "Hong Kong"
3059
 
3060
  # Hungary
3061
+ #: ../admin/view/wp-slimstat-reports.php:1811
3062
  msgid "c-hu"
3063
  msgstr "Hungary"
3064
 
3065
  # Iceland
3066
+ #: ../admin/view/wp-slimstat-reports.php:1811
3067
  msgid "c-is"
3068
  msgstr "Iceland"
3069
 
3070
  # India
3071
+ #: ../admin/view/wp-slimstat-reports.php:1811
3072
  msgid "c-in"
3073
  msgstr "India"
3074
 
3075
  # Indonesia
3076
+ #: ../admin/view/wp-slimstat-reports.php:1811
3077
  msgid "c-id"
3078
  msgstr "Indonesia"
3079
 
3080
  # Islamic Republic of Iran
3081
+ #: ../admin/view/wp-slimstat-reports.php:1811
3082
  msgid "c-ir"
3083
  msgstr "Islamic Republic of Iran"
3084
 
3085
  # Iraq
3086
+ #: ../admin/view/wp-slimstat-reports.php:1811
3087
  msgid "c-iq"
3088
  msgstr "Iraq"
3089
 
3090
  # Ireland
3091
+ #: ../admin/view/wp-slimstat-reports.php:1811
3092
  msgid "c-ie"
3093
  msgstr "Ireland"
3094
 
3095
  # Israel
3096
+ #: ../admin/view/wp-slimstat-reports.php:1811
3097
  msgid "c-il"
3098
  msgstr "Israel"
3099
 
3100
  # Italy
3101
+ #: ../admin/view/wp-slimstat-reports.php:1811
3102
  msgid "c-it"
3103
  msgstr "Italy"
3104
 
3105
  # Jamaica
3106
+ #: ../admin/view/wp-slimstat-reports.php:1811
3107
  msgid "c-jm"
3108
  msgstr "Jamaica"
3109
 
3110
  # Japan
3111
+ #: ../admin/view/wp-slimstat-reports.php:1811
3112
  msgid "c-jp"
3113
  msgstr "Japan"
3114
 
3115
  # Jordan
3116
+ #: ../admin/view/wp-slimstat-reports.php:1811
3117
  msgid "c-jo"
3118
  msgstr "Jordan"
3119
 
3120
  # Kazakhstan
3121
+ #: ../admin/view/wp-slimstat-reports.php:1811
3122
  msgid "c-kz"
3123
  msgstr "Kazakhstan"
3124
 
3125
  # Kenya
3126
+ #: ../admin/view/wp-slimstat-reports.php:1811
3127
  msgid "c-ke"
3128
  msgstr "Kenya"
3129
 
3130
  # Nauru
3131
+ #: ../admin/view/wp-slimstat-reports.php:1811
3132
  msgid "c-nr"
3133
  msgstr "Nauru"
3134
 
3135
  # Democratic People's Republic of Korea
3136
+ #: ../admin/view/wp-slimstat-reports.php:1811
3137
  msgid "c-kp"
3138
  msgstr "Democratic People's Republic of Korea"
3139
 
3140
  # Republic of Korea
3141
+ #: ../admin/view/wp-slimstat-reports.php:1811
3142
  msgid "c-kr"
3143
  msgstr "Republic of Korea"
3144
 
3145
+ #: ../admin/view/wp-slimstat-reports.php:1811
3146
  msgid "c-kv"
3147
  msgstr ""
3148
 
3149
  # Kuwait
3150
+ #: ../admin/view/wp-slimstat-reports.php:1811
3151
  msgid "c-kw"
3152
  msgstr "Kuwait"
3153
 
3154
  # Kyrgyzstan
3155
+ #: ../admin/view/wp-slimstat-reports.php:1811
3156
  msgid "c-kg"
3157
  msgstr "Kyrgyzstan"
3158
 
3159
  # Lao People's Democratic Republic
3160
+ #: ../admin/view/wp-slimstat-reports.php:1811
3161
  msgid "c-la"
3162
  msgstr "Lao People's Democratic Republic"
3163
 
3164
  # Latvia
3165
+ #: ../admin/view/wp-slimstat-reports.php:1811
3166
  msgid "c-lv"
3167
  msgstr "Latvia"
3168
 
3169
  # Lebanon
3170
+ #: ../admin/view/wp-slimstat-reports.php:1811
3171
  msgid "c-lb"
3172
  msgstr "Lebanon"
3173
 
3174
  # Lesotho
3175
+ #: ../admin/view/wp-slimstat-reports.php:1811
3176
  msgid "c-ls"
3177
  msgstr "Lesotho"
3178
 
3179
  # Liberia
3180
+ #: ../admin/view/wp-slimstat-reports.php:1811
3181
  msgid "c-lr"
3182
  msgstr "Liberia"
3183
 
3184
  # Libyan Arab Jamahiriya
3185
+ #: ../admin/view/wp-slimstat-reports.php:1811
3186
  msgid "c-ly"
3187
  msgstr "Libyan Arab Jamahiriya"
3188
 
3189
  # Liechtenstein
3190
+ #: ../admin/view/wp-slimstat-reports.php:1811
3191
  msgid "c-li"
3192
  msgstr "Liechtenstein"
3193
 
3194
  # Lithuania
3195
+ #: ../admin/view/wp-slimstat-reports.php:1811
3196
  msgid "c-lt"
3197
  msgstr "Lithuania"
3198
 
3199
  # Luxembourg
3200
+ #: ../admin/view/wp-slimstat-reports.php:1811
3201
  msgid "c-lu"
3202
  msgstr "Luxembourg"
3203
 
3204
  # The Former Yugoslav Republic of Macedonia
3205
+ #: ../admin/view/wp-slimstat-reports.php:1811
3206
  msgid "c-mk"
3207
  msgstr "The Former Yugoslav Republic of Macedonia"
3208
 
3209
  # Madagascar
3210
+ #: ../admin/view/wp-slimstat-reports.php:1811
3211
  msgid "c-mg"
3212
  msgstr "Madagascar"
3213
 
3214
  # Malawi
3215
+ #: ../admin/view/wp-slimstat-reports.php:1811
3216
  msgid "c-mw"
3217
  msgstr "Malawi"
3218
 
3219
  # Malaysia
3220
+ #: ../admin/view/wp-slimstat-reports.php:1811
3221
  msgid "c-my"
3222
  msgstr "Malaysia"
3223
 
3224
  # Mali
3225
+ #: ../admin/view/wp-slimstat-reports.php:1811
3226
  msgid "c-ml"
3227
  msgstr "Mali"
3228
 
3229
  # Malta
3230
+ #: ../admin/view/wp-slimstat-reports.php:1811
3231
  msgid "c-mt"
3232
  msgstr "Malta"
3233
 
3234
  # Martinique
3235
+ #: ../admin/view/wp-slimstat-reports.php:1811
3236
  msgid "c-mq"
3237
  msgstr "Martinique"
3238
 
3239
  # Mauritania
3240
+ #: ../admin/view/wp-slimstat-reports.php:1811
3241
  msgid "c-mr"
3242
  msgstr "Mauritania"
3243
 
3244
  # Mauritius
3245
+ #: ../admin/view/wp-slimstat-reports.php:1811
3246
  msgid "c-mu"
3247
  msgstr "Mauritius"
3248
 
3249
  # Mexico
3250
+ #: ../admin/view/wp-slimstat-reports.php:1811
3251
  msgid "c-mx"
3252
  msgstr "Mexico"
3253
 
3254
  # Moldova
3255
+ #: ../admin/view/wp-slimstat-reports.php:1811
3256
  msgid "c-md"
3257
  msgstr "Moldova"
3258
 
3259
  # Mongolia
3260
+ #: ../admin/view/wp-slimstat-reports.php:1811
3261
  msgid "c-mn"
3262
  msgstr "Mongolia"
3263
 
3264
  # Montenegro
3265
+ #: ../admin/view/wp-slimstat-reports.php:1811
3266
  msgid "c-me"
3267
  msgstr "Montenegro"
3268
 
3269
  # Montserrat
3270
+ #: ../admin/view/wp-slimstat-reports.php:1811
3271
  msgid "c-ms"
3272
  msgstr "Montserrat"
3273
 
3274
  # Morocco
3275
+ #: ../admin/view/wp-slimstat-reports.php:1811
3276
  msgid "c-ma"
3277
  msgstr "Morocco"
3278
 
3279
  # Mozambique
3280
+ #: ../admin/view/wp-slimstat-reports.php:1811
3281
  msgid "c-mz"
3282
  msgstr "Mozambique"
3283
 
3284
  # Myanmar
3285
+ #: ../admin/view/wp-slimstat-reports.php:1811
3286
  msgid "c-mm"
3287
  msgstr "Myanmar"
3288
 
3289
  # Namibia
3290
+ #: ../admin/view/wp-slimstat-reports.php:1811
3291
  msgid "c-na"
3292
  msgstr "Namibia"
3293
 
3294
  # Nepal
3295
+ #: ../admin/view/wp-slimstat-reports.php:1811
3296
  msgid "c-np"
3297
  msgstr "Nepal"
3298
 
3299
  # Netherlands
3300
+ #: ../admin/view/wp-slimstat-reports.php:1811
3301
  msgid "c-nl"
3302
  msgstr "Netherlands"
3303
 
3304
  # New Caledonia
3305
+ #: ../admin/view/wp-slimstat-reports.php:1811
3306
  msgid "c-nc"
3307
  msgstr "New Caledonia"
3308
 
3309
  # New Zealand
3310
+ #: ../admin/view/wp-slimstat-reports.php:1811
3311
  msgid "c-nz"
3312
  msgstr "New Zealand"
3313
 
3314
  # Nicaragua
3315
+ #: ../admin/view/wp-slimstat-reports.php:1811
3316
  msgid "c-ni"
3317
  msgstr "Nicaragua"
3318
 
3319
  # Niger
3320
+ #: ../admin/view/wp-slimstat-reports.php:1811
3321
  msgid "c-ne"
3322
  msgstr "Niger"
3323
 
3324
  # Nigeria
3325
+ #: ../admin/view/wp-slimstat-reports.php:1811
3326
  msgid "c-ng"
3327
  msgstr "Nigeria"
3328
 
3329
  # Norway
3330
+ #: ../admin/view/wp-slimstat-reports.php:1811
3331
  msgid "c-no"
3332
  msgstr "Norway"
3333
 
3334
  # Oman
3335
+ #: ../admin/view/wp-slimstat-reports.php:1811
3336
  msgid "c-om"
3337
  msgstr "Oman"
3338
 
3339
  # Pakistan
3340
+ #: ../admin/view/wp-slimstat-reports.php:1811
3341
  msgid "c-pk"
3342
  msgstr "Pakistan"
3343
 
3344
  # Palau
3345
+ #: ../admin/view/wp-slimstat-reports.php:1811
3346
  msgid "c-pw"
3347
  msgstr "Palau"
3348
 
3349
  # Occupied Palestinian Territory
3350
+ #: ../admin/view/wp-slimstat-reports.php:1811
3351
  msgid "c-ps"
3352
  msgstr "Occupied Palestinian Territory"
3353
 
3354
  # Panama
3355
+ #: ../admin/view/wp-slimstat-reports.php:1811
3356
  msgid "c-pa"
3357
  msgstr "Panama"
3358
 
3359
  # Papua New Guinea
3360
+ #: ../admin/view/wp-slimstat-reports.php:1811
3361
  msgid "c-pg"
3362
  msgstr "Papua New Guinea"
3363
 
3364
  # Paraguay
3365
+ #: ../admin/view/wp-slimstat-reports.php:1811
3366
  msgid "c-py"
3367
  msgstr "Paraguay"
3368
 
3369
  # Peru
3370
+ #: ../admin/view/wp-slimstat-reports.php:1811
3371
  msgid "c-pe"
3372
  msgstr "Peru"
3373
 
3374
  # Philippines
3375
+ #: ../admin/view/wp-slimstat-reports.php:1811
3376
  msgid "c-ph"
3377
  msgstr "Philippines"
3378
 
3379
  # Poland
3380
+ #: ../admin/view/wp-slimstat-reports.php:1811
3381
  msgid "c-pl"
3382
  msgstr "Poland"
3383
 
3384
  # Portugal
3385
+ #: ../admin/view/wp-slimstat-reports.php:1811
3386
  msgid "c-pt"
3387
  msgstr "Portugal"
3388
 
3389
  # Puerto Rico
3390
+ #: ../admin/view/wp-slimstat-reports.php:1811
3391
  msgid "c-pr"
3392
  msgstr "Puerto Rico"
3393
 
3394
  # Qatar
3395
+ #: ../admin/view/wp-slimstat-reports.php:1811
3396
  msgid "c-qa"
3397
  msgstr "Qatar"
3398
 
3399
  # Réunion
3400
+ #: ../admin/view/wp-slimstat-reports.php:1811
3401
  msgid "c-re"
3402
  msgstr "Réunion"
3403
 
3404
  # Romania
3405
+ #: ../admin/view/wp-slimstat-reports.php:1811
3406
  msgid "c-ro"
3407
  msgstr "Romania"
3408
 
3409
  # Russian Federation
3410
+ #: ../admin/view/wp-slimstat-reports.php:1811
3411
  msgid "c-ru"
3412
  msgstr "Russian Federation"
3413
 
3414
  # Rwanda
3415
+ #: ../admin/view/wp-slimstat-reports.php:1811
3416
  msgid "c-rw"
3417
  msgstr "Rwanda"
3418
 
3419
  # Saint Kitts and Nevis
3420
+ #: ../admin/view/wp-slimstat-reports.php:1811
3421
  msgid "c-kn"
3422
  msgstr "Saint Kitts and Nevis"
3423
 
3424
  # Saint Lucia
3425
+ #: ../admin/view/wp-slimstat-reports.php:1811
3426
  msgid "c-lc"
3427
  msgstr "Saint Lucia"
3428
 
3429
  # Saint Martin
3430
+ #: ../admin/view/wp-slimstat-reports.php:1811
3431
  msgid "c-mf"
3432
  msgstr "Saint Martin"
3433
 
3434
  # Saint Vincent and the Grenadines
3435
+ #: ../admin/view/wp-slimstat-reports.php:1811
3436
  msgid "c-vc"
3437
  msgstr "Saint Vincent and the Grenadines"
3438
 
3439
  # Samoa
3440
+ #: ../admin/view/wp-slimstat-reports.php:1811
3441
  msgid "c-ws"
3442
  msgstr "Samoa"
3443
 
3444
  # Sao Tome and Principe
3445
+ #: ../admin/view/wp-slimstat-reports.php:1811
3446
  msgid "c-st"
3447
  msgstr "Sao Tome and Principe"
3448
 
3449
  # Saudi Arabia
3450
+ #: ../admin/view/wp-slimstat-reports.php:1811
3451
  msgid "c-sa"
3452
  msgstr "Saudi Arabia"
3453
 
3454
  # Senegal
3455
+ #: ../admin/view/wp-slimstat-reports.php:1811
3456
  msgid "c-sn"
3457
  msgstr "Senegal"
3458
 
3459
  # Serbia
3460
+ #: ../admin/view/wp-slimstat-reports.php:1811
3461
  msgid "c-rs"
3462
  msgstr "Serbia"
3463
 
3464
  # Sierra Leone
3465
+ #: ../admin/view/wp-slimstat-reports.php:1811
3466
  msgid "c-sl"
3467
  msgstr "Sierra Leone"
3468
 
3469
  # Singapore
3470
+ #: ../admin/view/wp-slimstat-reports.php:1811
3471
  msgid "c-sg"
3472
  msgstr "Singapore"
3473
 
3474
  # Slovakia
3475
+ #: ../admin/view/wp-slimstat-reports.php:1811
3476
  msgid "c-sk"
3477
  msgstr "Slovakia"
3478
 
3479
  # Slovenia
3480
+ #: ../admin/view/wp-slimstat-reports.php:1811
3481
  msgid "c-si"
3482
  msgstr "Slovenia"
3483
 
3484
  # Solomon Islands
3485
+ #: ../admin/view/wp-slimstat-reports.php:1811
3486
  msgid "c-sb"
3487
  msgstr "Solomon Islands"
3488
 
3489
  # Somalia
3490
+ #: ../admin/view/wp-slimstat-reports.php:1811
3491
  msgid "c-so"
3492
  msgstr "Somalia"
3493
 
3494
  # South Africa
3495
+ #: ../admin/view/wp-slimstat-reports.php:1811
3496
  msgid "c-za"
3497
  msgstr "South Africa"
3498
 
3499
  # South Georgia and the South Sandwich Islands
3500
+ #: ../admin/view/wp-slimstat-reports.php:1811
3501
  msgid "c-gs"
3502
  msgstr "South Georgia and the South Sandwich Islands"
3503
 
3504
  # Spain
3505
+ #: ../admin/view/wp-slimstat-reports.php:1811
3506
  msgid "c-es"
3507
  msgstr "Spain"
3508
 
3509
  # Sri Lanka
3510
+ #: ../admin/view/wp-slimstat-reports.php:1811
3511
  msgid "c-lk"
3512
  msgstr "Sri Lanka"
3513
 
3514
+ #: ../admin/view/wp-slimstat-reports.php:1811
3515
  msgid "c-sc"
3516
  msgstr "Seychelles"
3517
 
3518
  # Sudan
3519
+ #: ../admin/view/wp-slimstat-reports.php:1811
3520
  msgid "c-sd"
3521
  msgstr "Sudan"
3522
 
3523
+ #: ../admin/view/wp-slimstat-reports.php:1811
3524
  msgid "c-ss"
3525
  msgstr ""
3526
 
3527
  # Suriname
3528
+ #: ../admin/view/wp-slimstat-reports.php:1811
3529
  msgid "c-sr"
3530
  msgstr "Suriname"
3531
 
3532
  # Svalbard and Jan Mayen
3533
+ #: ../admin/view/wp-slimstat-reports.php:1811
3534
  msgid "c-sj"
3535
  msgstr "Svalbard and Jan Mayen"
3536
 
3537
  # Swaziland
3538
+ #: ../admin/view/wp-slimstat-reports.php:1811
3539
  msgid "c-sz"
3540
  msgstr "Swaziland"
3541
 
3542
  # Sweden
3543
+ #: ../admin/view/wp-slimstat-reports.php:1811
3544
  msgid "c-se"
3545
  msgstr "Sweden"
3546
 
3547
  # Switzerland
3548
+ #: ../admin/view/wp-slimstat-reports.php:1811
3549
  msgid "c-ch"
3550
  msgstr "Switzerland"
3551
 
3552
  # Syrian Arab Republic
3553
+ #: ../admin/view/wp-slimstat-reports.php:1811
3554
  msgid "c-sy"
3555
  msgstr "Syrian Arab Republic"
3556
 
3557
  # Taiwan, Province of China
3558
+ #: ../admin/view/wp-slimstat-reports.php:1811
3559
  msgid "c-tw"
3560
  msgstr "Taiwan"
3561
 
3562
  # Tajikistan
3563
+ #: ../admin/view/wp-slimstat-reports.php:1811
3564
  msgid "c-tj"
3565
  msgstr "Tajikistan"
3566
 
3567
  # United Republic of Tanzania
3568
+ #: ../admin/view/wp-slimstat-reports.php:1811
3569
  msgid "c-tz"
3570
  msgstr "United Republic of Tanzania"
3571
 
3572
  # Thailand
3573
+ #: ../admin/view/wp-slimstat-reports.php:1811
3574
  msgid "c-th"
3575
  msgstr "Thailand"
3576
 
3577
  # Timor-Leste
3578
+ #: ../admin/view/wp-slimstat-reports.php:1811
3579
  msgid "c-tl"
3580
  msgstr "Timor-Leste"
3581
 
3582
  # Togo
3583
+ #: ../admin/view/wp-slimstat-reports.php:1811
3584
  msgid "c-tg"
3585
  msgstr "Togo"
3586
 
3587
  # Tonga
3588
+ #: ../admin/view/wp-slimstat-reports.php:1811
3589
  msgid "c-to"
3590
  msgstr "Tonga"
3591
 
3592
  # Trinidad and Tobago
3593
+ #: ../admin/view/wp-slimstat-reports.php:1811
3594
  msgid "c-tt"
3595
  msgstr "Trinidad and Tobago"
3596
 
3597
  # Tunisia
3598
+ #: ../admin/view/wp-slimstat-reports.php:1811
3599
  msgid "c-tn"
3600
  msgstr "Tunisia"
3601
 
3602
  # Turkey
3603
+ #: ../admin/view/wp-slimstat-reports.php:1811
3604
  msgid "c-tr"
3605
  msgstr "Turkey"
3606
 
3607
  # Turkmenistan
3608
+ #: ../admin/view/wp-slimstat-reports.php:1811
3609
  msgid "c-tm"
3610
  msgstr "Turkmenistan"
3611
 
3612
  # Turks and Caicos Islands
3613
+ #: ../admin/view/wp-slimstat-reports.php:1811
3614
  msgid "c-tc"
3615
  msgstr "Turks and Caicos Islands"
3616
 
3617
  # Uganda
3618
+ #: ../admin/view/wp-slimstat-reports.php:1811
3619
  msgid "c-ug"
3620
  msgstr "Uganda"
3621
 
3622
  # Ukraine
3623
+ #: ../admin/view/wp-slimstat-reports.php:1811
3624
  msgid "c-ua"
3625
  msgstr "Ukraine"
3626
 
3627
  # United Arab Emirates
3628
+ #: ../admin/view/wp-slimstat-reports.php:1811
3629
  msgid "c-ae"
3630
  msgstr "United Arab Emirates"
3631
 
3632
  # United Kingdom
3633
+ #: ../admin/view/wp-slimstat-reports.php:1811
3634
  msgid "c-gb"
3635
  msgstr "United Kingdom"
3636
 
3637
  # United States
3638
+ #: ../admin/view/wp-slimstat-reports.php:1811
3639
  msgid "c-us"
3640
  msgstr "United States"
3641
 
3642
  # Uruguay
3643
+ #: ../admin/view/wp-slimstat-reports.php:1811
3644
  msgid "c-uy"
3645
  msgstr "Uruguay"
3646
 
3647
  # Uzbekistan
3648
+ #: ../admin/view/wp-slimstat-reports.php:1811
3649
  msgid "c-uz"
3650
  msgstr "Uzbekistan"
3651
 
3652
  # Vanuatu
3653
+ #: ../admin/view/wp-slimstat-reports.php:1811
3654
  msgid "c-vu"
3655
  msgstr "Vanuatu"
3656
 
3657
  # Venezuela
3658
+ #: ../admin/view/wp-slimstat-reports.php:1811
3659
  msgid "c-ve"
3660
  msgstr "Venezuela"
3661
 
3662
  # Viet Nam
3663
+ #: ../admin/view/wp-slimstat-reports.php:1811
3664
  msgid "c-vn"
3665
  msgstr "Viet Nam"
3666
 
3667
  # British Virgin Islands
3668
+ #: ../admin/view/wp-slimstat-reports.php:1811
3669
  msgid "c-vg"
3670
  msgstr "British Virgin Islands"
3671
 
3672
  # U.S. Virgin Islands
3673
+ #: ../admin/view/wp-slimstat-reports.php:1811
3674
  msgid "c-vi"
3675
  msgstr "U.S. Virgin Islands"
3676
 
3677
  # Western Sahara
3678
+ #: ../admin/view/wp-slimstat-reports.php:1811
3679
  msgid "c-eh"
3680
  msgstr "Western Sahara"
3681
 
3682
  # Yemen
3683
+ #: ../admin/view/wp-slimstat-reports.php:1811
3684
  msgid "c-ye"
3685
  msgstr "Yemen"
3686
 
3687
  # Zambia
3688
+ #: ../admin/view/wp-slimstat-reports.php:1811
3689
  msgid "c-zm"
3690
  msgstr "Zambia"
3691
 
3692
  # Zimbabwe
3693
+ #: ../admin/view/wp-slimstat-reports.php:1811
3694
  msgid "c-zw"
3695
  msgstr "Zimbabwe"
3696
 
3697
  # Guernsey
3698
+ #: ../admin/view/wp-slimstat-reports.php:1811
3699
  msgid "c-gg"
3700
  msgstr "Guernsey"
3701
 
3702
  # Jersey
3703
+ #: ../admin/view/wp-slimstat-reports.php:1811
3704
  msgid "c-je"
3705
  msgstr "Jersey"
3706
 
3707
  # Isle of Man
3708
+ #: ../admin/view/wp-slimstat-reports.php:1811
3709
  msgid "c-im"
3710
  msgstr "Isle of Man"
3711
 
3712
  # Maldives
3713
+ #: ../admin/view/wp-slimstat-reports.php:1811
3714
  msgid "c-mv"
3715
  msgstr "Maldives"
3716
 
3717
+ #: ../admin/view/wp-slimstat-reports.php:1812
3718
  msgid "c-eu"
3719
  msgstr ""
3720
 
3721
+ #: ../admin/view/wp-slimstat-reports.php:1894
3722
  msgid "src"
3723
  msgstr "منبع"
3724
 
3725
+ #: ../admin/view/wp-slimstat-reports.php:1897
3726
  msgid "serp"
3727
  msgstr ""
3728
 
3729
+ #: ../admin/view/wp-slimstat-reports.php:1904
3730
  msgid "Go to the referring page"
3731
  msgstr "برو به صفحه ارجاع‌دهنده"
3732
 
3733
+ #: ../admin/view/wp-slimstat-reports.php:1926
3734
  msgid "Remove filter for"
3735
  msgstr "حذف فیلترها از"
3736
 
3737
+ #: ../admin/view/wp-slimstat-reports.php:1930
3738
  msgid "Save"
3739
  msgstr ""
3740
 
3741
+ #: ../admin/view/wp-slimstat-reports.php:1933
3742
  msgid "Reset All"
3743
  msgstr "بازنشانی همه"
3744
 
3745
+ #: ../admin/view/wp-slimstat-reports.php:1937
3746
  msgid "Current filters:"
3747
  msgstr "فیلترهای جاری:"
3748
 
3749
+ #: ../admin/wp-slimstat-admin.php:482 ../admin/wp-slimstat-admin.php:493
3750
+ #: ../admin/wp-slimstat-admin.php:495
3751
  msgid "SlimStat"
3752
  msgstr "SlimStat"
3753
 
3754
+ #: ../admin/wp-slimstat-admin.php:489 ../admin/wp-slimstat-admin.php:504
3755
+ #: ../wp-slimstat.php:1799
3756
+ #, fuzzy
3757
+ msgid "Customize"
3758
+ msgstr "سی‌اس‌اس دلخواه"
3759
 
3760
+ #: ../admin/wp-slimstat-admin.php:587
3761
  #, fuzzy
3762
  msgid "Pageviews in the last "
3763
  msgstr "مشاهده صفحات (نمودار)"
3764
 
3765
+ #: ../admin/wp-slimstat-admin.php:590
3766
  #, fuzzy
3767
  msgid "Unique IPs in the last "
3768
  msgstr "آی‌پی‌های یکتا"
3769
 
3770
+ #: ../admin/wp-slimstat-admin.php:644
3771
  msgid "Show on screen"
3772
  msgstr "روی صفحه نشان بده"
3773
 
3774
+ #: ../admin/wp-slimstat-admin.php:725
3775
  msgid "Already saved"
3776
  msgstr ""
3777
 
3778
+ #: ../admin/wp-slimstat-admin.php:733
3779
  msgid "Saved"
3780
  msgstr ""
3781
 
3782
+ #: ../admin/wp-slimstat-admin.php:753
3783
  #, fuzzy
3784
  msgid "Delete this filter"
3785
  msgstr "حذف بازدید‌ها وقتی"
3786
 
3787
+ #: ../admin/wp-slimstat-admin.php:797
3788
  msgid "There was an error updating the following options:"
3789
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
3790
 
3791
+ #: ../admin/wp-slimstat-admin.php:800
3792
  #, fuzzy
3793
  msgid "Your changes have been saved."
3794
  msgstr "تنظیمات شما با موفقیت به روز شد."
3795
 
3796
+ #: ../admin/wp-slimstat-admin.php:823
3797
  msgid "Save Changes"
3798
  msgstr "ذخیره‌ی تغییرات"
3799
 
3800
+ #: ../admin/wp-slimstat-admin.php:839
3801
  msgid "Definitions"
3802
  msgstr "تعاریف"
3803
 
3804
+ #: ../admin/wp-slimstat-admin.php:842
3805
  msgid "Pageview"
3806
  msgstr "بازدید"
3807
 
3808
+ #: ../admin/wp-slimstat-admin.php:842
3809
  #, fuzzy
3810
  msgid ""
3811
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3816
  "\"hit\" تفاوت دارد. این برنامه هر بازدید را بعد از اجرای برنامه ردگیری ثبت "
3817
  "میکند. "
3818
 
3819
+ #: ../admin/wp-slimstat-admin.php:843
3820
  msgid "(Human) Visit"
3821
  msgstr "بیننده (انسانی)"
3822
 
3823
+ #: ../admin/wp-slimstat-admin.php:843
3824
  msgid ""
3825
  "A period of interaction between a visitor's browser and your website, ending "
3826
  "when the browser is closed or when the user has been inactive on that site "
3829
  "تراکنش بین مرورگر ردگیری و پایگاه شما به پایان رسید وقتی که مرورگر بسته شده "
3830
  "و یا کاربر به مدت سی دقیقه غیر فعال شده است."
3831
 
3832
+ #: ../admin/wp-slimstat-admin.php:844
3833
  msgid ""
3834
  "Any user who has left a comment on your blog, and is thus identified by "
3835
  "Wordpress as a returning visitor"
3837
  "هر کاربری که در تارنامه شما نظر گذاشته توسط وردپرس به عنوان «بیننده دوباره» "
3838
  "شناخته میشود"
3839
 
3840
+ #: ../admin/wp-slimstat-admin.php:845
3841
  msgid "Unique IP"
3842
  msgstr "آی‌پی یکتا"
3843
 
3844
+ #: ../admin/wp-slimstat-admin.php:845
3845
  msgid ""
3846
  "Used to differentiate between multiple requests to download a file from one "
3847
  "internet address (IP) and requests originating from many distinct addresses; "
3852
  "درخواست از چند آی پی ادرس مختلف میباشد؛ چون این اندازه گیری فقط نشانگر آدرس "
3853
  "هر بازدید است، مفید میباشد ولی دقیق نیست."
3854
 
3855
+ #: ../admin/wp-slimstat-admin.php:846
3856
  msgid ""
3857
  "the originating IP address of a client connecting to a web server through an "
3858
  "HTTP proxy or load balancer"
3859
  msgstr ""
3860
  "ای پی منشا که کاربر را از طریق HTTP proxy و یا load balancer مرتبط کرده"
3861
 
3862
+ #: ../admin/wp-slimstat-admin.php:847
3863
  msgid "Direct Traffic"
3864
  msgstr "ترافیک مستقیم"
3865
 
3866
+ #: ../admin/wp-slimstat-admin.php:847
3867
  msgid ""
3868
  "All those people showing up to your Web site by typing in the URL of your "
3869
  "Web site coming or from a bookmark; some people also call this \"default "
3872
  " تمامی کاربرانی که با وارد کردن نشانی مستقیم تارنما و یا استفاده از بوک مارک "
3873
  "از تارنما بازدید میکنند."
3874
 
3875
+ #: ../admin/wp-slimstat-admin.php:848
3876
  msgid "Search Engine"
3877
  msgstr "موتور جستجو"
3878
 
3879
+ #: ../admin/wp-slimstat-admin.php:848
3880
  msgid ""
3881
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3882
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
3884
  "ترافیک مرتبط با نتایج موتور جستجو (organic) و همچنین ترافیک بدست آمده توسط "
3885
  "تبلیغات در موتورهای جستجو اینجا درهم است"
3886
 
3887
+ #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
3888
  msgid "Keywords used by your visitors to find your website on a search engine"
3889
  msgstr ""
3890
  "کلمات کلیدی که کاربران شما به وسیله‌ی آن‌ها از موتورهای جستجو، پایگاه شما را "
3891
  "یافته‌اند."
3892
 
3893
+ #: ../admin/wp-slimstat-admin.php:850
3894
  msgid "SERP"
3895
  msgstr ""
3896
 
3897
+ #: ../admin/wp-slimstat-admin.php:850
3898
  msgid ""
3899
  "Short for search engine results page, the Web page that a search engine "
3900
  "returns with the results of its search. The value shown represents your rank "
3901
  "(or position) within that list of results"
3902
  msgstr " این مقدار نشان دهنده رتبه شما در فهرست نتایج موتور جستجو میباشد."
3903
 
3904
+ #: ../admin/wp-slimstat-admin.php:851
3905
  msgid ""
3906
  "Any program used for accessing a website; this includes browsers, robots, "
3907
  "spiders and any other program that was used to retrieve information from the "
3909
  msgstr ""
3910
  "هر برنامه که به تارنما دسترسی پیدا کند مثل مرورگر، روبات، خزنده، وغیره."
3911
 
3912
+ #: ../admin/wp-slimstat-admin.php:852
3913
  msgid ""
3914
  "A link from one domain to another is said to be outbound from its source "
3915
  "anchor and inbound to its target. This report lists all the links to other "
3919
  "پیوند درونی محسوب میشود. این گزارش فهرستی از تمام پیوند ها به پایگاه های "
3920
  "دیگر و کاربران است."
3921
 
3922
+ #: ../admin/wp-slimstat-admin.php:859
3923
  msgid "Basic Filters"
3924
  msgstr "پالایه های اولیه"
3925
 
3926
+ #: ../admin/wp-slimstat-admin.php:862
3927
  msgid "User agent (Firefox, Chrome, ...)"
3928
  msgstr "مرورگر کاربر (فایرفاکس، کروم و ...)"
3929
 
3930
+ #: ../admin/wp-slimstat-admin.php:863
3931
  msgid "2-letter code (us, ru, de, it, ...)"
3932
  msgstr "علامت دو حرفی (us، ir، ...)"
3933
 
3934
+ #: ../admin/wp-slimstat-admin.php:864
3935
  msgid "IP"
3936
  msgstr "آی‌پی"
3937
 
3938
+ #: ../admin/wp-slimstat-admin.php:864
3939
  msgid "Visitor's public IP address"
3940
  msgstr "نشانی‌های آی‌پی عمومی بازدیدکنندگان"
3941
 
3942
+ #: ../admin/wp-slimstat-admin.php:866
3943
  msgid ""
3944
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
3945
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
3948
  "لطفا به <a target=\"_blank\" href=\"http://msdn.microsoft.com/en-us/library/"
3949
  "ee825488(v=cs.20).aspx\"> فرهنگ زبان </a> برای اطلاع بیشتر مراجعه کنید"
3950
 
3951
+ #: ../admin/wp-slimstat-admin.php:867
3952
  msgid ""
3953
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
3954
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
3958
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\"> "
3959
  "راهنما</a> مراجعه کنید"
3960
 
3961
+ #: ../admin/wp-slimstat-admin.php:868
3962
  msgid "URL accessed on your site"
3963
  msgstr "نشانی هایی که مورد بازدید قرار گرفته"
3964
 
3965
+ #: ../admin/wp-slimstat-admin.php:869
3966
  msgid "Complete address of the referrer page"
3967
  msgstr "نشانی کامل صفحه‌ی ارجاع ‌دهنده"
3968
 
3969
+ #: ../admin/wp-slimstat-admin.php:870
3970
  msgid ""
3971
  "Visitors' names according to the cookie set by Wordpress after they leave a "
3972
  "comment"
3974
  "اسامی بیننده بر مبنای خوراکی که بعد از گذاشتن نظر توسط وردپرس اختصاص داده "
3975
  "میشود."
3976
 
3977
+ #: ../admin/wp-slimstat-admin.php:878
3978
  msgid "Advanced Filters"
3979
  msgstr "فیلترهای پیش‌رفته"
3980
 
3981
+ #: ../admin/wp-slimstat-admin.php:881
3982
  msgid "user agent version (9.0, 11, ...)"
3983
  msgstr "نسخه مرورگر کاربر"
3984
 
3985
+ #: ../admin/wp-slimstat-admin.php:882
3986
  msgid ""
3987
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
3988
  "all others"
3989
  msgstr ""
3990
  "۱=خزنده‌های موتورهای جستجو، ۲=دستگاه موبایل، ۳=خوراک‌خوان، ۰=همه‌ی چیزهای دیگر"
3991
 
3992
+ #: ../admin/wp-slimstat-admin.php:883
3993
  msgid "Pageview Attributes"
3994
  msgstr "خصوصیات بازدید"
3995
 
3996
+ #: ../admin/wp-slimstat-admin.php:883
3997
  msgid ""
3998
  "this field is set to <em>[pre]</em> if the resource has been accessed "
3999
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4002
  "این ناحیه برای تنظیمات <a target=\"_blank\" href=\"https://developer.mozilla."
4003
  "org/en/Link_prefetching_FAQ\"> صفحه‌بندی </a> و یا شیوه های مشابه است."
4004
 
4005
+ #: ../admin/wp-slimstat-admin.php:884
4006
  msgid "author associated to that post/page when the resource was accessed"
4007
  msgstr "نویسنده مرتبط با این ارسال یا صفحه وقتی این ماخذ دسترسی شد"
4008
 
4009
+ #: ../admin/wp-slimstat-admin.php:885
4010
  msgid "ID of the category/term associated to the resource, when available"
4011
  msgstr "شناسه دسته یا عبارت که با منبع مرتبط است، اگر موجود باشد"
4012
 
4013
+ #: ../admin/wp-slimstat-admin.php:886
4014
  msgid "visitor's originating IP address, if available"
4015
  msgstr "آی پی منشا که بیننده از آن ‌عازم شده، در صورت موجود بودن"
4016
 
4017
+ #: ../admin/wp-slimstat-admin.php:887
4018
  msgid ""
4019
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4020
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
4027
  "target=\"_blank\" href=\"http://codex.wordpress.org/Conditional_Tags\"> "
4028
  "نشانه های شرطی</a> در صفحه راهنما مراجعه کنید."
4029
 
4030
+ #: ../admin/wp-slimstat-admin.php:888
4031
  msgid "Screen Resolution"
4032
  msgstr "ابعاد صفحه نمایش"
4033
 
4034
+ #: ../admin/wp-slimstat-admin.php:888
4035
  msgid "viewport width and height (1024x768, 800x600, ...)"
4036
  msgstr "ابعاد صفحه نمایش (۱۰۲۴x۷۶۸، ۸۰۰x۶۰۰، ...)"
4037
 
4038
+ #: ../admin/wp-slimstat-admin.php:889
4039
  msgid ""
4040
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4041
  "visitors"
4043
  "معولا با ترکیب <em>خالی نیست</em> استفاده میشود و بیننده ها (انسان) را تشخیص "
4044
  "میدهد"
4045
 
4046
+ #: ../admin/wp-slimstat-admin.php:890
4047
  msgid "Date Filters"
4048
  msgstr "فیلترهای تاریخ"
4049
 
4050
+ #: ../admin/wp-slimstat-admin.php:890
4051
  msgid ""
4052
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4053
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
4056
  "با وارد کردن اعداد در این ناحیه میتوانید یک مدت زمانی تعیین کنید؛ برای محدود "
4057
  "کردن سال به روز از -1 استفاده کنید."
4058
 
4059
+ #: ../admin/wp-slimstat-admin.php:891
4060
  msgid "SERP Position"
4061
  msgstr "مکان SERP"
4062
 
4063
+ #: ../admin/wp-slimstat-admin.php:891
4064
  msgid ""
4065
  "set the filter to Referer contains cd=N&, where N is the position you are "
4066
  "looking for"
4068
  "تعیین صافی برای ارجاعی هایی که شامل اِن میشوند، آنجا که اِن مکانی هست که به "
4069
  "مشخص میکنید."
4070
 
4071
+ #: ../admin/wp-slimstat-admin.php:918
4072
  msgid "Yes"
4073
  msgstr "بلی"
4074
 
4075
+ #: ../admin/wp-slimstat-admin.php:919
4076
  msgid "No"
4077
  msgstr "خیر"
4078
 
4079
+ #: ../admin/wp-slimstat-admin.php:920
4080
  msgid "Site Specific"
4081
  msgstr ""
4082
 
5321
  msgid "c-xy"
5322
  msgstr "آدرس محلی"
5323
 
5324
+ #: ../wp-slimstat.php:223 ../wp-slimstat.php:515
5325
+ msgid "Notice: Pageview filtered by third-party code"
5326
  msgstr ""
5327
 
5328
+ #: ../wp-slimstat.php:240
5329
+ #, fuzzy, php-format
5330
+ msgid "Error: Malformed URL %s"
5331
  msgstr "کاربران را نادیده بگیر"
5332
 
5333
+ #: ../wp-slimstat.php:259
5334
+ #, php-format
5335
+ msgid "Notice: Referrer %s is blacklisted"
 
 
 
5336
  msgstr ""
5337
 
5338
+ #: ../wp-slimstat.php:347
5339
+ #, php-format
5340
+ msgid "Notice: Permalink %s is blacklisted"
5341
  msgstr ""
5342
 
5343
+ #: ../wp-slimstat.php:358
5344
+ msgid "Error: Empty or not supported IP address format (IPv6)"
5345
  msgstr ""
5346
 
5347
+ #: ../wp-slimstat.php:367
5348
+ #, php-format
5349
+ msgid "Notice: Logged in user %s not tracked"
5350
  msgstr ""
5351
 
5352
+ #: ../wp-slimstat.php:375
5353
  #, php-format
5354
+ msgid "Notice: User with capability %s not tracked"
5355
  msgstr ""
5356
 
5357
+ #: ../wp-slimstat.php:385
5358
  #, php-format
5359
+ msgid "Notice: User %s is blacklisted"
5360
  msgstr ""
5361
 
5362
+ #: ../wp-slimstat.php:406
5363
+ #, fuzzy, php-format
5364
+ msgid "Notice: Spammer %s not tracked"
5365
+ msgstr "روبات یا خزنده"
5366
+
5367
+ #: ../wp-slimstat.php:435
5368
  #, php-format
5369
+ msgid "Notice: IP address %s is blacklisted"
5370
  msgstr ""
5371
 
5372
+ #: ../wp-slimstat.php:464
5373
  #, php-format
5374
+ msgid "Notice: Country %s is blacklisted"
5375
  msgstr ""
5376
 
5377
+ #: ../wp-slimstat.php:473
5378
  #, fuzzy
5379
+ msgid "Notice: Prefetch requests are ignored"
5380
  msgstr "نادیده گرفتن درخواست صفحه‌بندی"
5381
 
5382
+ #: ../wp-slimstat.php:489
5383
  #, fuzzy
5384
+ msgid "Notice: Bot not tracked"
5385
  msgstr "روبات یا خزنده"
5386
 
5387
+ #: ../wp-slimstat.php:498
5388
  #, php-format
5389
+ msgid "Notice: Browser %s is blacklisted"
5390
+ msgstr ""
5391
+
5392
+ #: ../wp-slimstat.php:528
5393
+ msgid "Error:"
5394
  msgstr ""
5395
 
5396
+ #: ../wp-slimstat.php:1209
5397
  msgid "Invalid payload string. Try clearing your WordPress cache."
5398
  msgstr ""
5399
 
5400
+ #: ../wp-slimstat.php:1219
5401
  msgid "Invalid data signature. Try clearing your WordPress cache."
5402
  msgstr ""
5403
 
5404
+ #: ../wp-slimstat.php:1289
5405
  #, fuzzy
5406
  msgid "There was an error downloading the MaxMind Geolite DB:"
5407
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
5408
 
5409
+ #: ../wp-slimstat.php:1297 ../wp-slimstat.php:1306
5410
  #, fuzzy
5411
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5412
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
5413
 
5414
+ #: ../wp-slimstat.php:1301
5415
  msgid "Function gzopen not defined. Aborting."
5416
  msgstr ""
5417
 
5418
+ #: ../wp-slimstat.php:1311
5419
  #, fuzzy
5420
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5421
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
5422
 
5423
+ #~ msgid "Ignore users (username not found)"
5424
+ #~ msgstr "نادیده گرفتن کاربر(شناسه کاربر یافت نشد)"
5425
+
5426
+ #~ msgid "General"
5427
+ #~ msgstr "عمومی"
5428
+
5429
+ #, fuzzy
5430
+ #~ msgid "Track Pageviews"
5431
+ #~ msgstr "همه مشاهدات صفحات"
5432
+
5433
+ #~ msgid "Visitors and Known Users"
5434
+ #~ msgstr "بیننده و کاربران آشنا"
5435
+
5436
+ #~ msgid ""
5437
+ #~ "List all the usernames you don't want to track, separated by commas. "
5438
+ #~ "Please be aware that spaces are <em>not</em> ignored and that usernames "
5439
+ #~ "are case sensitive."
5440
+ #~ msgstr ""
5441
+ #~ "فهرست نام کاربرانی که نمیخواهید رهگیری کنید، تفکیک شده با ویرگول. لطفا در "
5442
+ #~ "نظر داشته باشید که فاصله ها و حروف کوچک و بزرگ نیز حساب میشود."
5443
+
5444
+ #~ msgid "Permissions"
5445
+ #~ msgstr "مجوزها"
5446
+
5447
+ #~ msgid "Advanced"
5448
+ #~ msgstr "پیش‌رفته"
5449
+
5450
+ #~ msgid "Double click on an empty region to reset the zoom level"
5451
+ #~ msgstr "بر یک ناحیه خالی دوبار کلیک کنید تا بزرگنمایی به حالت اولیه بازگردد"
5452
+
5453
+ #~ msgid "Custom Reports"
5454
+ #~ msgstr "گزارش دلخواه"
5455
+
5456
  #, fuzzy
5457
  #~ msgid "Tracking"
5458
  #~ msgstr " حالت ردگیری"
5482
  #~ msgid "External Pages"
5483
  #~ msgstr "همه مشاهدات صفحات"
5484
 
 
 
 
5485
  #~ msgid "Recent Screen Resolutions"
5486
  #~ msgstr "ابعاد نمایش‌گرهای اخیر"
5487
 
5518
  #~ msgid "Views"
5519
  #~ msgstr "مشاهده ها"
5520
 
 
 
 
 
 
 
5521
  #~ msgid "Javascript"
5522
  #~ msgstr "جاوااسکریپت"
5523
 
5929
  #~ msgid "IP Addresses"
5930
  #~ msgstr "نشانی‌های آی‌پی"
5931
 
 
 
 
5932
  #~ msgid "Read access"
5933
  #~ msgstr "دست‌رسی خواندن"
5934
 
languages/wp-slimstat-fr_CA.mo CHANGED
Binary file
languages/wp-slimstat-fr_CA.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-01 21:02-0500\n"
6
- "PO-Revision-Date: 2015-10-01 21:02-0500\n"
7
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
8
  "Language-Team: Michael Bastin\n"
9
  "Language: fr_FR\n"
@@ -17,83 +17,7 @@ msgstr ""
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
- #: ../admin/config/addons.php:15
21
- msgid ""
22
- "There was an error retrieving the add-ons list from the server. Please try "
23
- "again later. Error Message:"
24
- msgstr ""
25
- "La liste des add-ons n'a pas pu être récupérée du serveur. Veuillez "
26
- "réessayer plus tard. Message d'erreur :"
27
-
28
- #: ../admin/config/addons.php:25
29
- msgid ""
30
- "There was an error decoding the add-ons list from the server. Please try "
31
- "again later."
32
- msgstr ""
33
- "La liste des add-ons n'a pas pu être récupérée du serveur. Veuillez "
34
- "réessayer plus tard."
35
-
36
- #: ../admin/config/addons.php:32 ../admin/config/index.php:255
37
- #: ../admin/wp-slimstat-admin.php:656 ../admin/wp-slimstat-admin.php:670
38
- #: ../wp-slimstat.php:1789
39
- msgid "Add-ons"
40
- msgstr "Add-ons"
41
-
42
- #: ../admin/config/addons.php:33
43
- msgid ""
44
- "Add-ons extend the functionality of Slimstat in many interesting ways. We "
45
- "offer both free and premium (paid) extensions. Each add-on can be installed "
46
- "as a separate plugin, which will receive regular updates via the WordPress "
47
- "Plugins panel. In order to be notified when a new version of a premium add-"
48
- "on is available, please enter the <strong>license key</strong> you received "
49
- "when you purchased it."
50
- msgstr ""
51
- "Les Add-ons rajoutent de nombreuses fonctionnalités intéressantes à WP "
52
- "Slimstat. Nous proposons une version gratuite et une version premium "
53
- "(payante). Chaque Add-on peut être installé séparément comme plugin et être "
54
- "mis à jour régulièrement via le panneau de gestion des plugins Wordpress. "
55
- "Afin d'être averti d'une nouvelle version premium, veuillez entrer le "
56
- "<strong>code de licence<strong> que vous avez reçu à l'achat."
57
-
58
- #: ../admin/config/addons.php:37
59
- #, php-format
60
- msgid ""
61
- "This list is refreshed once daily: <a href=\"%s&amp;force_refresh=true"
62
- "\">click here</a> to clear the cache."
63
- msgstr ""
64
-
65
- #: ../admin/config/addons.php:46
66
- msgid "Add-on"
67
- msgstr "Add-on"
68
-
69
- #: ../admin/config/addons.php:46
70
- msgid "Description"
71
- msgstr "Description"
72
-
73
- #: ../admin/config/addons.php:57
74
- #, fuzzy
75
- msgid "Repo Version"
76
- msgstr "la version CSS"
77
-
78
- #: ../admin/config/addons.php:57
79
- #, fuzzy
80
- msgid "Version"
81
- msgstr "la version CSS"
82
-
83
- #: ../admin/config/addons.php:69
84
- #, fuzzy
85
- msgid "Your Version:"
86
- msgstr "la version CSS"
87
-
88
- #: ../admin/config/addons.php:72
89
- msgid "Installed and Active"
90
- msgstr ""
91
-
92
- #: ../admin/config/index.php:47
93
- msgid "Ignore users (username not found)"
94
- msgstr "Utilisateur inconnu (nom d'utilisateur non trouvé)"
95
-
96
- #: ../admin/config/index.php:67
97
  msgid ""
98
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
99
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
@@ -102,11 +26,11 @@ msgstr ""
102
  "Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
103
  "d'informations"
104
 
105
- #: ../admin/config/index.php:82
106
  msgid "Read access: username not found"
107
  msgstr "Accès lecture : username inexistant"
108
 
109
- #: ../admin/config/index.php:92 ../admin/config/index.php:117
110
  msgid ""
111
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
112
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
@@ -116,44 +40,34 @@ msgstr ""
116
  "org/Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
117
  "d'informations"
118
 
119
- #: ../admin/config/index.php:107
120
  msgid "Config access: username not found"
121
  msgstr "Accès configuration : username inexistant"
122
 
123
- #: ../admin/config/index.php:126
124
- msgid "General"
125
- msgstr "Général"
126
 
127
- #: ../admin/config/index.php:128 ../admin/config/index.php:224
128
  msgid "Tracker"
129
  msgstr "Traçage"
130
 
131
- #: ../admin/config/index.php:129
132
- #, fuzzy
133
- msgid "Track Pageviews"
134
- msgstr "Total Pages Vues"
135
 
136
- #: ../admin/config/index.php:129
137
  #, fuzzy
138
  msgid "Turn the tracker on or off, while keeping the reports accessible."
139
  msgstr ""
140
  "Activez ou désactivez le Traceur, mais conservez le rapport accessible (Ce "
141
  "que vous n'auriez pas si vous désactiviez le plugin.)"
142
 
143
- #: ../admin/config/index.php:129 ../admin/config/index.php:131
144
- msgid "On"
145
- msgstr "Actif"
146
-
147
- #: ../admin/config/index.php:129 ../admin/config/index.php:131
148
- #: ../admin/view/wp-slimstat-reports.php:1269
149
- msgid "Off"
150
- msgstr ""
151
-
152
- #: ../admin/config/index.php:130
153
  msgid "Tracking Mode"
154
  msgstr "Mode traçage"
155
 
156
- #: ../admin/config/index.php:130
157
  #, fuzzy
158
  msgid ""
159
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
@@ -168,20 +82,20 @@ msgstr ""
168
  "ignorés. En outre, <strong>la plupart</strong> des spammeurs, moteurs de "
169
  "recherche et autres robots ne seront pas suivis."
170
 
171
- #: ../admin/config/index.php:130
172
- msgid "Client"
173
  msgstr ""
174
 
175
- #: ../admin/config/index.php:130
176
  #, fuzzy
177
- msgid "Server"
178
  msgstr "Côté serveur"
179
 
180
- #: ../admin/config/index.php:131
181
  msgid "Stealth Mode"
182
  msgstr ""
183
 
184
- #: ../admin/config/index.php:131
185
  msgid ""
186
  "Do not add the javascript tracking code to your pages, if tracking mode is "
187
  "set to Server. Please note: if enabled, this will prevent the tracker from "
@@ -189,35 +103,43 @@ msgid ""
189
  "etc. This option is ignored is Tracking Mode is set to Client."
190
  msgstr ""
191
 
192
- #: ../admin/config/index.php:132
 
 
 
 
 
 
 
 
193
  #, fuzzy
194
  msgid "Admin Pages"
195
  msgstr "Tracer les pages Administrateur"
196
 
197
- #: ../admin/config/index.php:132
198
  msgid "Enable this option to track your users' activity within the admin."
199
  msgstr ""
200
  "Activez cette option pour suivre l'activité de vos utilisateurs dans l'admin."
201
 
202
- #: ../admin/config/index.php:132
203
  #, fuzzy
204
  msgid "Track"
205
  msgstr "Traçage"
206
 
207
- #: ../admin/config/index.php:132
208
  #, fuzzy
209
  msgid "Do not track"
210
  msgstr "ne contient pas"
211
 
212
- #: ../admin/config/index.php:134
213
  msgid "WordPress Integration"
214
  msgstr "Intégration WordPress"
215
 
216
- #: ../admin/config/index.php:135
217
  msgid "Menu Position"
218
  msgstr "Position du Menu"
219
 
220
- #: ../admin/config/index.php:135
221
  msgid ""
222
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
223
  "admin bar (if visible)."
@@ -225,97 +147,97 @@ msgstr ""
225
  "Choisir entre un menu d'administration dans la barre latérale de WordPress "
226
  "ou un menu déroulant dans la barre supérieure (si elle est affichée)."
227
 
228
- #: ../admin/config/index.php:135
229
  msgid "Side Menu"
230
  msgstr "Menu latéral"
231
 
232
- #: ../admin/config/index.php:135
233
  msgid "Admin Bar"
234
  msgstr "Barre d'Administration"
235
 
236
- #: ../admin/config/index.php:136
237
  #, fuzzy
238
  msgid "Posts and Pages"
239
  msgstr "Etendre les Stats aux articles"
240
 
241
- #: ../admin/config/index.php:136
242
  #, fuzzy
243
  msgid ""
244
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
245
- "per post in the last 365 days."
246
  msgstr ""
247
  "Ajoute une colonne à l'écran d'édition des articles, en indiquant le nombre "
248
  "de visites par article (peut ralentir le rendu des pages)."
249
 
250
- #: ../admin/config/index.php:137
251
- msgid "Dashboard Widgets"
252
- msgstr ""
253
-
254
- #: ../admin/config/index.php:137
255
- msgid ""
256
- "Choose if you want to have the most important reports on your WordPress "
257
- "Dashboard. Use the Screen Options dropdown to select which ones to display."
258
- msgstr ""
259
-
260
- #: ../admin/config/index.php:138
261
  #, fuzzy
262
  msgid "Report Interval"
263
  msgstr "Intervalle unique"
264
 
265
- #: ../admin/config/index.php:138
266
  msgid ""
267
  "Enter the time range, in days, that should be used to calculate the value "
268
  "here above."
269
  msgstr ""
270
 
271
- #: ../admin/config/index.php:139
272
  #, fuzzy
273
  msgid "Report Type"
274
  msgstr "Rapports"
275
 
276
- #: ../admin/config/index.php:139
277
  msgid ""
278
  "Select what kind of information you would like to see displayed on the Posts "
279
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
280
  "IPs consider only one hit per user in the given time range."
281
  msgstr ""
282
 
283
- #: ../admin/config/index.php:139 ../admin/view/wp-slimstat-reports.php:97
284
- #: ../admin/view/wp-slimstat-reports.php:1124
285
- #: ../admin/view/wp-slimstat-reports.php:1285
286
- #: ../admin/view/wp-slimstat-reports.php:1443
287
  msgid "Pageviews"
288
  msgstr "Pages vues"
289
 
290
- #: ../admin/config/index.php:139 ../admin/view/wp-slimstat-reports.php:1124
291
- #: ../admin/view/wp-slimstat-reports.php:1129
292
- #: ../admin/view/wp-slimstat-reports.php:1134
293
- #: ../admin/view/wp-slimstat-reports.php:1300
294
- #: ../admin/view/wp-slimstat-reports.php:1345
295
  msgid "Unique IPs"
296
  msgstr "IPs uniques"
297
 
298
- #: ../admin/config/index.php:140
 
 
 
 
 
 
 
 
 
 
299
  #, fuzzy
300
  msgid "Hide Add-ons"
301
  msgstr "Add-ons"
302
 
303
- #: ../admin/config/index.php:140
304
  msgid ""
305
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
306
  "from the list of plugins in WordPress. Please note that you will still "
307
  "receive updates for hidden add-ons."
308
  msgstr ""
309
 
310
- #: ../admin/config/index.php:142
311
  msgid "Database"
312
  msgstr "Base de données"
313
 
314
- #: ../admin/config/index.php:143
315
  msgid "Retain data for"
316
  msgstr "Conserver les données pour"
317
 
318
- #: ../admin/config/index.php:143
319
  #, fuzzy
320
  msgid ""
321
  "Clean-up log entries older than the number of days specified here above. "
@@ -326,11 +248,11 @@ msgstr ""
326
  "ci-dessus. Entrer <strong>0</strong> (number zero) si vous souhaitez "
327
  "conserver toutes vos données sans limites de durée."
328
 
329
- #: ../admin/config/index.php:143
330
  msgid "Next clean-up on"
331
  msgstr "Prochain nettoyage le"
332
 
333
- #: ../admin/config/index.php:143
334
  #, fuzzy, php-format
335
  msgid ""
336
  "Entries logged on or before %s will be archived or deleted according to the "
@@ -338,18 +260,18 @@ msgid ""
338
  msgstr ""
339
  "Les données enregistrées le ou avant le %s seront définitivement supprimées. "
340
 
341
- #: ../admin/config/index.php:143 ../admin/view/index.php:102
342
  #: ../admin/view/wp-slimstat-db.php:79
343
- #: ../admin/view/wp-slimstat-reports.php:1269
344
  msgid "days"
345
  msgstr "jours"
346
 
347
- #: ../admin/config/index.php:144
348
  #, fuzzy
349
  msgid "Delete records"
350
  msgstr "Filtrer les pages vues pour que"
351
 
352
- #: ../admin/config/index.php:144
353
  msgid ""
354
  "If DB space is not an issue, you can decide to archive older records in "
355
  "another table, instead of deleting them. This way performance is preserved, "
@@ -359,272 +281,218 @@ msgid ""
359
  "is uninstalled. Make sure to backup your data before you proceed."
360
  msgstr ""
361
 
362
- #: ../admin/config/index.php:149 ../admin/config/index.php:210
363
- msgid "Reports"
364
- msgstr "Rapports"
 
365
 
366
- #: ../admin/config/index.php:151
367
- msgid "Formats and Conversions"
 
 
 
 
 
 
368
  msgstr ""
 
 
369
 
370
- #: ../admin/config/index.php:152
371
- msgid "Number Format"
372
- msgstr "Format des nombres"
373
 
374
- #: ../admin/config/index.php:152
375
- msgid "Choose the number format you want to use for your reports."
 
 
 
 
376
  msgstr ""
377
- "Choisissez le format numérique que vous souhaitez utiliser, européen ou "
378
- "américain."
379
 
380
- #: ../admin/config/index.php:153
381
- #, fuzzy
382
- msgid "Date Format"
383
- msgstr "Données et Formats"
384
 
385
- #: ../admin/config/index.php:153
386
- #, fuzzy
387
  msgid ""
388
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
389
- "Format</a> to use when displaying a pageview's date."
 
390
  msgstr ""
391
- "<a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank"
392
- "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
393
- "vue."
394
 
395
- #: ../admin/config/index.php:154
396
- #, fuzzy
397
- msgid "Time Format"
398
- msgstr "Format des nombres"
399
 
400
- #: ../admin/config/index.php:154
401
- #, fuzzy
402
  msgid ""
403
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
404
- "Format</a> to use when displaying a pageview's time."
 
 
 
405
  msgstr ""
406
- "<a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank"
407
- "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
408
- "vue."
 
 
 
409
 
410
- #: ../admin/config/index.php:155
411
  #, fuzzy
412
- msgid "Use Display Name"
413
- msgstr "Voir Nom d'affichage"
414
 
415
- #: ../admin/config/index.php:155
 
 
 
 
416
  msgid ""
417
- "By default, users are listed by their usernames. Use this option to "
418
- "visualize their display names instead."
419
  msgstr ""
420
- "Par défaut, les utilisateurs sont affichés par Nom d'utilisateur. Utilisez "
421
- "cette option pour basculer au Nom d'affichage."
422
 
423
- #: ../admin/config/index.php:156
424
  #, fuzzy
425
- msgid "Use Titles"
426
- msgstr "Afficher les titres"
427
 
428
- #: ../admin/config/index.php:156
429
- #, fuzzy
430
  msgid ""
431
- "Slimstat converts your permalinks into post, page and category titles. "
432
- "Disable this feature if you need to see the URL in your reports."
 
433
  msgstr ""
434
- "WP SlimStat convertit vos permalinks en post et en titres de pages. "
435
- "Désactivez cette fonction si vous souhaitez conserver l'URL dans de vos "
436
- "rapports."
437
-
438
- #: ../admin/config/index.php:157
439
- msgid "Convert IP Addresses"
440
- msgstr "Convertir les adresses IP"
441
-
442
- #: ../admin/config/index.php:157
443
- msgid "Display provider names instead of IP addresses."
444
- msgstr "Afficher le nom du fournisseur d'accès au lieu de l'adresse IP."
445
-
446
- #: ../admin/config/index.php:159
447
- msgid "Functionality"
448
- msgstr "Fonctionnalité"
449
 
450
- #: ../admin/config/index.php:160
451
- msgid "SlimScroll"
452
- msgstr "SlimScroll"
453
 
454
- #: ../admin/config/index.php:160
455
  msgid ""
456
- "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
457
- "scrollbar."
 
 
458
  msgstr ""
459
- "Activer SlimScroll, une librairie jQuery élégante qui remplace la barre de "
460
- "défilement par défaut des navigateurs."
461
 
462
- #: ../admin/config/index.php:161
463
- msgid "Expand Details"
464
- msgstr "Développez les détails"
465
-
466
- #: ../admin/config/index.php:161
467
- msgid "Expand each row's details by default, insted of on mousehover."
468
  msgstr ""
469
- "Développe les détails de chaque ligne par défaut, plutôt que sur survol de "
470
- "souris."
471
 
472
- #: ../admin/config/index.php:162 ../admin/config/index.php:167
473
- msgid "Rows to Display"
474
- msgstr "Colonnes à afficher"
475
-
476
- #: ../admin/config/index.php:162
477
- msgid "Specify the number of items in each report."
478
- msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
479
-
480
- #: ../admin/config/index.php:163 ../admin/view/wp-slimstat-db.php:101
481
- #, fuzzy
482
- msgid "Max Results"
483
- msgstr "Limiter les résultats"
484
-
485
- #: ../admin/config/index.php:163
486
  msgid ""
487
- "Decide how many records should be retrieved from the database in total. "
488
- "Depending on your server configuration, you may want to fine tune this value "
489
- "to avoid exceeding your PHP memory limit."
490
  msgstr ""
491
 
492
- #: ../admin/config/index.php:165
493
- msgid "Activity Log"
494
- msgstr "Statistiques de fréquentation"
495
-
496
- #: ../admin/config/index.php:166
497
- msgid "Live Stream"
498
- msgstr "Flux en temps réel (Flux live)"
499
-
500
- #: ../admin/config/index.php:166
501
- msgid ""
502
- "Enable the Live view, which refreshes the Activity Log every X seconds. "
503
- "Enter <strong>0</strong> (number zero) to deactivate this feature."
504
  msgstr ""
505
- "Actualisez la vue 'Maintenant' toutes les X secondes. Entrer <strong>0</"
506
- "strong> pour désactiver cette fonctionnalité."
507
-
508
- #: ../admin/config/index.php:166 ../admin/config/index.php:225
509
- msgid "seconds"
510
- msgstr "secondes"
511
-
512
- #: ../admin/config/index.php:167
513
- msgid "Specify the number of items in the Activity Log."
514
- msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
515
 
516
- #: ../admin/config/index.php:169 ../admin/config/index.php:201
517
- #: ../admin/config/index.php:242
518
- msgid "Miscellaneous"
519
- msgstr "Divers"
520
-
521
- #: ../admin/config/index.php:170
522
- msgid "Custom CSS"
523
- msgstr "Personnaliser le style CSS"
524
-
525
- #: ../admin/config/index.php:170
526
  #, fuzzy
527
  msgid ""
528
- "Paste here your custom stylesheet to personalize the way your reports look. "
529
- "<a href='https://slimstat.freshdesk.com/support/solutions/"
530
- "articles/5000528528-how-can-i-change-the-colors-associated-to-color-coded-"
531
- "pageviews-known-user-known-visitors-search-e' target='_blank'>Check the FAQ</"
532
- "a> for more information on how to use this setting."
533
  msgstr ""
534
- "Collez ici votre feuille de style, afin de personnaliser la présentation de "
535
- "vos rapports. <a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
536
- "target='_blank'>Consultez les FAQs</a> pour plus d'informations sur la façon "
537
- "d'utiliser cette fonctionnalité."
538
 
539
- #: ../admin/config/index.php:171
540
  #, fuzzy
541
- msgid "Chart Colors"
542
- msgstr "Contrôle du graphique"
543
-
544
- #: ../admin/config/index.php:171
545
- msgid ""
546
- "Customize the look and feel of your charts by assigning personalized colors "
547
- "to each metric. List 4 hex colors separated by commas, strictly in the "
548
- "following order: metric 1 previous, metric 2 previous, metric 1 current, "
549
- "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
550
- msgstr ""
551
-
552
- #: ../admin/config/index.php:172
553
- msgid "Show User Agent"
554
- msgstr "Voir User Agent"
555
 
556
- #: ../admin/config/index.php:172
557
  msgid ""
558
- "Choose if you want to see the browser name or a complete user agent string "
559
- "when hovering on browser icons."
 
 
 
 
 
560
  msgstr ""
561
- "Choisissez si vous voulez voir le nom du navigateur ou une chaîne complete "
562
- "de user agent lorsque vous survolez les icônes du navigateur."
563
 
564
- #: ../admin/config/index.php:173
565
- msgid "Enable SOV"
566
- msgstr "Activer SOV"
567
-
568
- #: ../admin/config/index.php:173
569
- msgid ""
570
- "In linguistic typology, a subject-object-verb (SOV) language is one in which "
571
- "the subject, object, and verb of a sentence appear in that order, like in "
572
- "Japanese."
573
- msgstr ""
574
- "En typologie linguistique, une langue en sujet-objet-verbe (SOV) est une "
575
- "langue dans laquelle les sujet, objet et verbe d'une phrase apparaissent "
576
- "dans cet ordre, comme en japonais."
577
 
578
- #: ../admin/config/index.php:174
579
- #, fuzzy
580
- msgid "Social Analytics"
581
- msgstr "Analyse du site"
582
 
583
- #: ../admin/config/index.php:174
584
  msgid ""
585
- "Thanks to a <a href='http://getsocial.io/enterprise' "
586
- "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
587
- "set of analytics for social media where you can identify top performing "
588
- "posts. Track social sharing to understand which of your posts are generating "
589
- "more engagement. When this option is enabled, Slimstat sends a list of all "
590
- "your posts's URLs to their service for analysis once daily."
591
  msgstr ""
 
 
 
 
592
 
593
- #: ../admin/config/index.php:179
594
  msgid "Filters"
595
  msgstr "Filtres"
596
 
597
- #: ../admin/config/index.php:181
598
- msgid "Visitors and Known Users"
599
- msgstr "Visiteurs et utilisateurs connus"
 
600
 
601
- #: ../admin/config/index.php:182
602
  msgid "Track Registered Users"
603
  msgstr "Tracer les utilisateurs enregistrés"
604
 
605
- #: ../admin/config/index.php:182
606
  msgid "Enable this option to track logged in users."
607
  msgstr "Activez cette option pour tracer les utilisateurs connectés"
608
 
609
- #: ../admin/config/index.php:183
610
  msgid "Blacklist by Username"
611
  msgstr "Liste noire basée sur le nom d'utilisateur"
612
 
613
- #: ../admin/config/index.php:183
 
614
  msgid ""
615
  "List all the usernames you don't want to track, separated by commas. Please "
616
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
617
- "sensitive."
 
 
 
618
  msgstr ""
619
- "Entrez une liste d'utilisateurs WordPress que vous ne voulez pas suivre, "
620
- "séparés par des virgules. Veuillez noter que les espaces <em>sont </em> pris "
621
- "en compte et que les noms d'utilisateurs sont sensibles à la casse. (min-maj)"
 
 
 
 
622
 
623
- #: ../admin/config/index.php:184
624
  msgid "Blacklist by IP Address"
625
  msgstr "Liste noire par adresse IP"
626
 
627
- #: ../admin/config/index.php:184
628
  msgid ""
629
  "List all the IP addresses you don't want to track, separated by commas. Each "
630
  "network <strong>must</strong> be defined using the <a href='http://en."
@@ -639,11 +507,11 @@ msgstr ""
639
  "<em>192.168.0.0/24</em>). Si le format est incorrect, WP SlimStat ne peut "
640
  "pas suivre correctement les pages vues."
641
 
642
- #: ../admin/config/index.php:185
643
  msgid "Blacklist by Capability"
644
  msgstr "Blacklister par Capabilité WordPress"
645
 
646
- #: ../admin/config/index.php:185
647
  msgid ""
648
  "Users having at least one of the <a href='http://codex.wordpress.org/"
649
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
@@ -653,15 +521,15 @@ msgstr ""
653
  "Roles_and_Capabilities' target='_new'>capacités</a> listées ci-dessous ne "
654
  "seront pas suivis. Les capacités sont insensibles à la casse."
655
 
656
- #: ../admin/config/index.php:187
657
  msgid "Profiling"
658
  msgstr "Profiling"
659
 
660
- #: ../admin/config/index.php:188
661
  msgid "Ignore Spammers"
662
  msgstr "Ignorer les spammeurs"
663
 
664
- #: ../admin/config/index.php:188
665
  msgid ""
666
  "Enable this option if you don't want to track visits from users identified "
667
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -673,12 +541,12 @@ msgstr ""
673
  "Akismet). Les visites de personnes dont les commentaires sont ensuite marqué "
674
  "comme spam par vous, seront également supprimées de la base."
675
 
676
- #: ../admin/config/index.php:189
677
  #, fuzzy
678
  msgid "Ignore Bots"
679
  msgstr "Ignorer les utilisateurs"
680
 
681
- #: ../admin/config/index.php:189
682
  msgid ""
683
  "Turn on this feature if you want to have the accuracy level of server-side "
684
  "tracking, but not the inconvenience of getting your database clogged with "
@@ -686,11 +554,11 @@ msgid ""
686
  "note that in Client mode, bots are ignored regardless of this setting."
687
  msgstr ""
688
 
689
- #: ../admin/config/index.php:190
690
  msgid "Permalinks"
691
  msgstr "Rermaliens"
692
 
693
- #: ../admin/config/index.php:190
694
  msgid ""
695
  "List all the URLs on your website that you don't want to track, separated by "
696
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -708,11 +576,11 @@ msgstr ""
708
  "<code>/abo*t</code> correspondra /aboundant et /about, <code>/abo!t </code > "
709
  "correspondra /about et /abort. Les chaînes sont insensibles à la casse."
710
 
711
- #: ../admin/config/index.php:191
712
  msgid "Countries"
713
  msgstr "Pays"
714
 
715
- #: ../admin/config/index.php:191
716
  msgid ""
717
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
718
  "track, separated by commas."
@@ -720,11 +588,11 @@ msgstr ""
720
  "Listez tous les codes de pays (p. ex.: <code>en-us, it, es </code>) que vous "
721
  "ne voulez pas suivre, séparées par des virgules."
722
 
723
- #: ../admin/config/index.php:192
724
  msgid "User Agents"
725
  msgstr "User Agents"
726
 
727
- #: ../admin/config/index.php:192
728
  msgid ""
729
  "Browsers (user agents) you don't want to track, separated by commas. You can "
730
  "specify the browser's version adding a slash after the name (i.e. "
@@ -742,11 +610,11 @@ msgstr ""
742
  "correspondra à Chrome et Chromium, <code>IE/!.0</Code> correspondra IE/7.0 "
743
  "et IE/8.0. Les chaînes sont insensibles à la casse."
744
 
745
- #: ../admin/config/index.php:193
746
  msgid "Referring Sites"
747
  msgstr "Sites référents"
748
 
749
- #: ../admin/config/index.php:193
750
  msgid ""
751
  "Referring URLs that you don't want to track, separated by commas: "
752
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -763,91 +631,270 @@ msgstr ""
763
  "soit un caractère générique ou le protocole que vous voulez filtrer "
764
  "(http://, https://)."
765
 
766
- #: ../admin/config/index.php:195
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
767
  #, fuzzy
768
- msgid "Internal and Outbound Links"
769
- msgstr "Liens sortants récents"
770
 
771
- #: ../admin/config/index.php:196
772
- msgid "Track Outbound Clicks"
773
- msgstr "Tracer les liens sortants"
 
 
 
 
 
 
774
 
775
- #: ../admin/config/index.php:196
 
 
 
 
 
 
776
  msgid ""
777
- "Track when your visitors click on link to external websites. This option "
778
- "required Spy Mode to be enabled."
779
  msgstr ""
780
- "Détectez vos visiteurs cliquant sur des liens pointant sur des sites "
781
- "externes. Cette fonctionnalité nécéssite que le Mode Espion soit activé."
 
782
 
783
- #: ../admin/config/index.php:197
784
  #, fuzzy
785
- msgid "Track Coordinates"
786
- msgstr "Mode traçage"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
787
 
788
  #: ../admin/config/index.php:197
 
 
 
 
 
 
 
 
789
  msgid ""
790
- "Collect mouse coordinates and other information for clicks on internal "
791
- "links. Strongly recommended if you're using the heatmap add-on. By default, "
792
- "this information is only collected for external links."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
793
  msgstr ""
 
 
 
 
794
 
795
- #: ../admin/config/index.php:198
796
- msgid "No Callback"
797
- msgstr ""
 
798
 
799
- #: ../admin/config/index.php:198
800
  msgid ""
801
- "Track the event but do not invoke the callback function on links marked with "
802
- "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
803
- "attribute contains one of these strings (separated by comma). Useful to "
804
- "prevent conflicts with lightbox and similar libraries."
805
  msgstr ""
806
 
807
- #: ../admin/config/index.php:199
808
- msgid "Do Not Track"
809
- msgstr ""
810
 
811
- #: ../admin/config/index.php:199
812
  msgid ""
813
- "Do not track links marked with one of these class names, <em>rel</em> "
814
- "attributes or whose <em>href</em> attribute contains one of these strings "
815
- "(separated by comma)."
816
  msgstr ""
 
 
817
 
818
- #: ../admin/config/index.php:202
819
- msgid "Enable Privacy Mode"
820
- msgstr "Activer le mode privé"
821
 
822
- #: ../admin/config/index.php:202
823
- msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
 
 
 
824
  msgstr ""
825
- "Cette option masque l'adresse IP de vos visiteurs afin de se conformer aux "
826
- "lois de confidentialité européennes."
 
827
 
828
- #: ../admin/config/index.php:203
829
- msgid "Ignore Prefetch Requests"
830
- msgstr "Ignorer les requêtes anticipées"
 
831
 
832
- #: ../admin/config/index.php:203
833
  msgid ""
834
- "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
835
- "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
836
- "target='_blank'>Link Prefetching functionality</a>."
 
 
 
837
  msgstr ""
838
- "Activer ce filtre si vous voulez éviter à WP SlimStat le suivi des pages "
839
- "vues générées par Firefox <a href='https://developer.mozilla.org/en/"
840
- "Link_prefetching_FAQ' target='_blank'>Link Prefetching functionality</a>."
841
 
842
- #: ../admin/config/index.php:208
843
- msgid "Permissions"
844
- msgstr "Permissions"
845
 
846
- #: ../admin/config/index.php:211
847
  msgid "Restrict Authors"
848
  msgstr "Restriction Auteurs"
849
 
850
- #: ../admin/config/index.php:211
851
  msgid ""
852
  "Enable this option if you want your authors to only see stats related to "
853
  "their own content."
@@ -855,11 +902,11 @@ msgstr ""
855
  "Activez cette option si vous voulez que vos auteurs ne voient que les "
856
  "statistiques relatives à leur propre contenu."
857
 
858
- #: ../admin/config/index.php:212 ../admin/config/index.php:216
859
  msgid "Capability"
860
  msgstr "Aptitude"
861
 
862
- #: ../admin/config/index.php:212
863
  msgid ""
864
  "Specify the minimum <a href='http://codex.wordpress.org/"
865
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
@@ -875,11 +922,11 @@ msgstr ""
875
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
876
  "Dans ce cas, la liste a la priorité sur la capacité."
877
 
878
- #: ../admin/config/index.php:213 ../admin/config/index.php:217
879
  msgid "Whitelist"
880
  msgstr "Liste blanche"
881
 
882
- #: ../admin/config/index.php:213
883
  msgid ""
884
  "List all the users who should have access to the reports, separated by "
885
  "commas. Administrators are implicitly allowed, so you don't need to list "
@@ -891,13 +938,13 @@ msgstr ""
891
  "vide, <strong>tous vos utilisateurs</strong> sont autorisés à accéder. Les "
892
  "noms d'utilisateurs sont sensibles à la casse."
893
 
894
- #: ../admin/config/index.php:215 ../admin/config/index.php:268
895
- #: ../admin/wp-slimstat-admin.php:697 ../admin/wp-slimstat-admin.php:700
896
- #: ../wp-slimstat.php:1792
897
  msgid "Settings"
898
  msgstr "Réglages"
899
 
900
- #: ../admin/config/index.php:216
901
  msgid ""
902
  "Specify the minimum <a href='http://codex.wordpress.org/"
903
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
@@ -911,7 +958,7 @@ msgstr ""
911
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
912
  "Dans ce cas, la liste a la priorité sur la capacité."
913
 
914
- #: ../admin/config/index.php:217
915
  msgid ""
916
  "List all the users who can edit these options, separated by commas. Please "
917
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
@@ -923,132 +970,16 @@ msgstr ""
923
  "inscrire! Les noms d'utilisateurs sont sensibles à la casse. (Majuscules-"
924
  "minuscules)"
925
 
926
- #: ../admin/config/index.php:222
927
- msgid "Advanced"
928
- msgstr "Avancé"
929
-
930
- #: ../admin/config/index.php:225
931
- msgid "Session Duration"
932
- msgstr "Durée session"
933
-
934
- #: ../admin/config/index.php:225
935
- msgid ""
936
- "How many seconds should a human session last? Google Analytics sets it to "
937
- "1800 seconds."
938
- msgstr ""
939
- "Définit le nombre de secondes qu'une visite devrait durer. Google Analytics "
940
- "fixe cette durée à 1800 secondes."
941
-
942
- #: ../admin/config/index.php:226
943
- msgid "Extend Session"
944
- msgstr "Etendre la session"
945
-
946
- #: ../admin/config/index.php:226
947
- msgid "Extend the duration of a session each time the user visits a new page."
948
- msgstr ""
949
- "Prolonger la durée d'une session à chaque fois que l'utilisateur visite une "
950
- "page."
951
-
952
- #: ../admin/config/index.php:227
953
- msgid "Enable CDN"
954
- msgstr "Activer CDN"
955
-
956
- #: ../admin/config/index.php:227
957
- msgid ""
958
- "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
959
- "by serving our tracking code from their fast and reliable network (free "
960
- "service)."
961
- msgstr ""
962
- "Permet <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a> 's "
963
- "CDN, en servant le traqueur Javascript WP SlimStat à partir de leur réseau "
964
- "rapide et fiable."
965
-
966
- #: ../admin/config/index.php:228
967
- msgid "Extensions to Track"
968
- msgstr "Extensions du traçage"
969
-
970
- #: ../admin/config/index.php:228
971
- msgid ""
972
- "List all the file extensions that you want to be treated as Downloads. "
973
- "Please note that links pointing to external resources (i.e. PDFs on a "
974
- "different website) are considered Downloads and not Outbound Links (and "
975
- "tracked as such), if their extension matches one of the ones listed here "
976
- "below."
977
- msgstr ""
978
- "Les extensions de fichiers suivants (valeurs séparées par des virgules pour "
979
- "être répertoriées) seront suivis comme Téléchargements par WP SlimStat. "
980
- "Veuillez noter que les liens pointant vers des ressources externes (par ex. "
981
- "fichiers PDF sur un autre site) sont considérés comme Téléchargements et non "
982
- "comme liens sortants (et suivis en tant que tel), si leur extension "
983
- "correspond à l'une de celles qui sont énumérées ci-dessous."
984
-
985
- #: ../admin/config/index.php:230
986
- msgid "Pages not belonging to this site"
987
- msgstr ""
988
-
989
- #: ../admin/config/index.php:231
990
- #, fuzzy
991
- msgid ""
992
- "Add the following code to all the non-WP pages you want to track, right "
993
- "before the closing BODY tag"
994
- msgstr ""
995
- "Ajouter le code suivant à toutes les pages non-WordPress que vous souhaitez "
996
- "suivre."
997
-
998
- #: ../admin/config/index.php:241
999
- #, fuzzy
1000
- msgid "Allow External Domains"
1001
- msgstr "Liens externes hostiles"
1002
-
1003
- #: ../admin/config/index.php:241
1004
- msgid ""
1005
- "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
1006
- "header is present on the requested resource, when using the external "
1007
- "tracking code here above, list the domains (complete with scheme, separated "
1008
- "by commas) you would like to allow. For example: <code>http://my.domain.ext</"
1009
- "code> (no trailing slash). Please see <a href='http://www.w3.org/TR/cors/"
1010
- "#security' target='_blank'>this W3 resource</a> for more information on the "
1011
- "security implications of allowing CORS requests."
1012
- msgstr ""
1013
-
1014
- #: ../admin/config/index.php:243
1015
- msgid "Debug Mode"
1016
- msgstr "Mode Debug"
1017
-
1018
- #: ../admin/config/index.php:243
1019
- msgid "Display the SQL queries used to retrieve the data."
1020
- msgstr "Afficher les requêtes SQL utilisées pour extraire les données."
1021
-
1022
- #: ../admin/config/index.php:244
1023
- msgid "IP Lookup"
1024
- msgstr "Recherche d'IP"
1025
-
1026
- #: ../admin/config/index.php:244
1027
- msgid "Customize the Geolocation service to be used in the reports."
1028
- msgstr ""
1029
- "Personnaliser le service de Géolocalisation à utiliser dans les rapports."
1030
-
1031
- #: ../admin/config/index.php:245
1032
- msgid "Enable UAN"
1033
- msgstr "Activer UAN"
1034
-
1035
- #: ../admin/config/index.php:245
1036
- msgid ""
1037
- "Send anonymous data about user agents to our server for analysis. This "
1038
- "allows us to contribute to the <a href='http://browscap.org/' "
1039
- "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
1040
- "Slimstat's browser detection functionality. It also enables our transparent "
1041
- "ads network. No worries, your site will not be affected in any way."
1042
- msgstr ""
1043
- "Envoyer des données anonymes concernant les navigateurs inconnus à nos "
1044
- "serveurs pour analyse. Cela nous permet de contribuer au <a href='http://"
1045
- "browscap.org/' target='_blank'> projet opensource BrowsCap, et d'améliorer "
1046
- "la pertinence de la fonctionnalité de WPStats concernant les navigateurs web."
1047
-
1048
- #: ../admin/config/index.php:250
1049
  msgid "Maintenance"
1050
  msgstr "Maintenance"
1051
 
 
 
 
 
 
 
1052
  #: ../admin/config/maintenance.php:16
1053
  msgid ""
1054
  "Congrats! Slimstat is now optimized for <a href=\"http://www.youtube.com/"
@@ -1057,26 +988,26 @@ msgstr ""
1057
  "Félicitations ! WP SlimStat est à présent optimisé pour <a href=\"http://www."
1058
  "youtube.com/watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
1059
 
1060
- #: ../admin/config/maintenance.php:23
1061
  #, fuzzy
1062
  msgid "Indexing has been disabled. Enjoy the extra database space!"
1063
  msgstr ""
1064
  "L'indexation a bien été désactivée. Profitez bien de l'espace supplémentaire "
1065
  "que vous venez de gagner !"
1066
 
1067
- #: ../admin/config/maintenance.php:35
1068
  msgid "records deleted from your database."
1069
  msgstr "enregistrements supprimés de votre base de données."
1070
 
1071
- #: ../admin/config/maintenance.php:40
1072
  msgid "The geolocation database has been uninstalled from your server."
1073
  msgstr ""
1074
 
1075
- #: ../admin/config/maintenance.php:50
1076
  msgid "The geolocation database has been installed on your server."
1077
  msgstr ""
1078
 
1079
- #: ../admin/config/maintenance.php:158
1080
  msgid ""
1081
  "Your data was successfully imported. You may now drop the old tables: "
1082
  "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
@@ -1085,62 +1016,86 @@ msgid ""
1085
  "delete the old tables."
1086
  msgstr ""
1087
 
1088
- #: ../admin/config/maintenance.php:169
1089
  msgid "Your reports were successfully restored to their default arrangement."
1090
  msgstr ""
1091
  "Vos rapports ont été réinitialisés avec succès dans leur configuration par "
1092
  "défaut."
1093
 
1094
- #: ../admin/config/maintenance.php:179
1095
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1096
  msgstr "Vos tables WP SlimStat ont été converties en InnoDB avec succès."
1097
 
1098
- #: ../admin/config/maintenance.php:185
1099
  #, fuzzy
1100
  msgid "All the archived records were successfully deleted."
1101
  msgstr "Tous les enregistrements ont bien été supprimés"
1102
 
1103
- #: ../admin/config/maintenance.php:193
1104
  msgid "All the records were successfully deleted."
1105
  msgstr "Tous les enregistrements ont bien été supprimés"
1106
 
1107
- #: ../admin/config/maintenance.php:215
1108
  msgid "Debugging"
1109
  msgstr ""
1110
 
1111
- #: ../admin/config/maintenance.php:218
1112
- msgid "Tracker Error Code"
1113
- msgstr ""
 
1114
 
1115
- #: ../admin/config/maintenance.php:220
1116
  #, fuzzy
1117
  msgid "recorded on"
1118
  msgstr "Enregistrements"
1119
 
1120
- #: ../admin/config/maintenance.php:220
1121
  msgid "No Errors so far"
1122
  msgstr ""
1123
 
1124
- #: ../admin/config/maintenance.php:221
1125
  msgid ""
1126
  "The information here above is useful to troubleshoot issues with the "
1127
- "tracker. Please include this code when sending a support request."
 
 
 
 
1128
  msgstr ""
1129
 
1130
- #: ../admin/config/maintenance.php:225
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1131
  msgid "Layout"
1132
  msgstr ""
1133
 
1134
- #: ../admin/config/maintenance.php:228
1135
  msgid ""
1136
  "Are you sure you want to restore the default arrangement of your reports?"
1137
  msgstr "Etes-vous sûr de vouloir réinitialiser vos rapports ?"
1138
 
1139
- #: ../admin/config/maintenance.php:228
1140
  msgid "No Panic Button"
1141
  msgstr "Pas de panique !"
1142
 
1143
- #: ../admin/config/maintenance.php:230
1144
  #, fuzzy
1145
  msgid ""
1146
  "Reset the default arrangement of your reports. Helpful when, for some "
@@ -1148,83 +1103,83 @@ msgid ""
1148
  "in your views."
1149
  msgstr "Réinitialiser la mise en page par défaut de vos rapports."
1150
 
1151
- #: ../admin/config/maintenance.php:234
1152
  msgid "Data Maintenance"
1153
  msgstr "Maintenance des données"
1154
 
1155
- #: ../admin/config/maintenance.php:237
1156
  msgid "Delete pageviews where"
1157
  msgstr "Supprimer les pages où"
1158
 
1159
- #: ../admin/config/maintenance.php:251 ../admin/view/index.php:16
1160
  msgid "equals"
1161
  msgstr "est égal à"
1162
 
1163
- #: ../admin/config/maintenance.php:252 ../admin/view/index.php:17
1164
  msgid "is not equal to"
1165
  msgstr "n'est pas égal à"
1166
 
1167
- #: ../admin/config/maintenance.php:253 ../admin/view/index.php:18
1168
  msgid "contains"
1169
  msgstr "contient"
1170
 
1171
- #: ../admin/config/maintenance.php:254 ../admin/view/index.php:19
1172
  msgid "is included in"
1173
  msgstr ""
1174
 
1175
- #: ../admin/config/maintenance.php:255 ../admin/view/index.php:20
1176
  msgid "does not contain"
1177
  msgstr "ne contient pas"
1178
 
1179
- #: ../admin/config/maintenance.php:256 ../admin/view/index.php:21
1180
  msgid "starts with"
1181
  msgstr "commence par"
1182
 
1183
- #: ../admin/config/maintenance.php:257 ../admin/view/index.php:22
1184
  msgid "ends with"
1185
  msgstr "finit par"
1186
 
1187
- #: ../admin/config/maintenance.php:258 ../admin/view/index.php:23
1188
  msgid "sounds like"
1189
  msgstr "ressemble à"
1190
 
1191
- #: ../admin/config/maintenance.php:259 ../admin/view/index.php:24
1192
  msgid "is greater than"
1193
  msgstr "est plus grand que"
1194
 
1195
- #: ../admin/config/maintenance.php:260 ../admin/view/index.php:25
1196
  msgid "is less than"
1197
  msgstr "est plus petit que"
1198
 
1199
- #: ../admin/config/maintenance.php:261 ../admin/view/index.php:27
1200
  msgid "matches"
1201
  msgstr "correspond à"
1202
 
1203
- #: ../admin/config/maintenance.php:262 ../admin/view/index.php:28
1204
  msgid "does not match"
1205
  msgstr "ne correspond pas à"
1206
 
1207
- #: ../admin/config/maintenance.php:263 ../admin/view/index.php:29
1208
  msgid "is empty"
1209
  msgstr "est vide"
1210
 
1211
- #: ../admin/config/maintenance.php:264 ../admin/view/index.php:30
1212
  msgid "is not empty"
1213
  msgstr "n'est pas vide"
1214
 
1215
- #: ../admin/config/maintenance.php:267 ../admin/view/index.php:42
1216
  #: ../admin/view/index.php:105
1217
  msgid "Apply"
1218
  msgstr "Appliquer"
1219
 
1220
- #: ../admin/config/maintenance.php:268
1221
  msgid ""
1222
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1223
  msgstr ""
1224
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT ces enregistrement de "
1225
  "votre base de données ?"
1226
 
1227
- #: ../admin/config/maintenance.php:275
1228
  msgid ""
1229
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1230
  "database?"
@@ -1232,12 +1187,12 @@ msgstr ""
1232
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1233
  "votre base de données ?"
1234
 
1235
- #: ../admin/config/maintenance.php:275
1236
  #, fuzzy
1237
  msgid "Delete All Records"
1238
  msgstr "Supprimer toutes les pages vues"
1239
 
1240
- #: ../admin/config/maintenance.php:278
1241
  #, fuzzy
1242
  msgid ""
1243
  "Erase all the information collected so far by Slimstat, including the "
@@ -1246,7 +1201,7 @@ msgstr ""
1246
  "Effacer les informations collecter par WP Slimstat jusqu'à present. Cette "
1247
  "opération <strong>ne réinitialise pas </strong>vos paramétrages."
1248
 
1249
- #: ../admin/config/maintenance.php:284
1250
  #, fuzzy
1251
  msgid ""
1252
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
@@ -1255,20 +1210,20 @@ msgstr ""
1255
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1256
  "votre base de données ?"
1257
 
1258
- #: ../admin/config/maintenance.php:284
1259
  #, fuzzy
1260
  msgid "Delete Archive"
1261
  msgstr "Filtrer les pages vues pour que"
1262
 
1263
- #: ../admin/config/maintenance.php:287
1264
  msgid "Erase all the archived records. This operation cannot be undone."
1265
  msgstr ""
1266
 
1267
- #: ../admin/config/maintenance.php:293
1268
  msgid "Improve Performance"
1269
  msgstr "Improve la performance"
1270
 
1271
- #: ../admin/config/maintenance.php:297
1272
  msgid ""
1273
  "Please note that you will need about 30% more DB space to store the extra "
1274
  "information required."
@@ -1276,11 +1231,11 @@ msgstr ""
1276
  "Vous aurez besoin d'environ 30% de plus d'espace de base de données pour "
1277
  "stocker les informations supplémentaires nécessaires."
1278
 
1279
- #: ../admin/config/maintenance.php:301
1280
  msgid "Save DB Space"
1281
  msgstr "Gagner de l'espace sur la taille de votre base de données"
1282
 
1283
- #: ../admin/config/maintenance.php:304
1284
  msgid ""
1285
  "Please note that by removing table indexes, Slimstat's performance will be "
1286
  "affected."
@@ -1288,46 +1243,46 @@ msgstr ""
1288
  "Merci de noter qu'en supprimant les indexes, les performances de WP "
1289
  "SlimStats seront impactées."
1290
 
1291
- #: ../admin/config/maintenance.php:311
1292
  msgid ""
1293
  "Hold on tight, we are about to import all your old data. Are you sure you "
1294
  "want to proceed?"
1295
  msgstr ""
1296
 
1297
- #: ../admin/config/maintenance.php:311
1298
  #, fuzzy
1299
  msgid "Import old data"
1300
  msgstr "Import-Export"
1301
 
1302
- #: ../admin/config/maintenance.php:314
1303
  msgid ""
1304
  "Import all the records from the old table structure. No data will be deleted "
1305
  "from your database."
1306
  msgstr ""
1307
 
1308
- #: ../admin/config/maintenance.php:318
1309
  msgid "MaxMind IP to Country"
1310
  msgstr ""
1311
 
1312
- #: ../admin/config/maintenance.php:324
1313
  msgid ""
1314
  "Do you want to download and install the geolocation database from MaxMind's "
1315
  "server?"
1316
  msgstr ""
1317
 
1318
- #: ../admin/config/maintenance.php:324
1319
  msgid "Install GeoLite DB"
1320
  msgstr ""
1321
 
1322
- #: ../admin/config/maintenance.php:327
1323
  msgid "Do you want to uninstall the geolocation database?"
1324
  msgstr ""
1325
 
1326
- #: ../admin/config/maintenance.php:327
1327
  msgid "Uninstall GeoLite DB"
1328
  msgstr ""
1329
 
1330
- #: ../admin/config/maintenance.php:331
1331
  msgid ""
1332
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1333
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
@@ -1337,44 +1292,110 @@ msgid ""
1337
  "enable this functionality."
1338
  msgstr ""
1339
 
1340
- #: ../admin/config/maintenance.php:336
1341
- msgid "Import and Export"
1342
- msgstr "Import-Export"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1343
 
1344
- #: ../admin/config/maintenance.php:340
1345
- #, fuzzy
1346
  msgid ""
1347
- "Here below you can find the current configuration string for Slimstat. You "
1348
- "can update your settings by pasting a new string inside the text area and "
1349
- "clicking the Import button."
1350
  msgstr ""
1351
- "Ci-après vous trouverez la configuration actuelle de la ligne de "
1352
- "configuration. Vous pouvez mettre à jour vos réglages en collant une "
1353
- "nouvelle ligne ci-après et en cliquant sur Import."
1354
 
1355
- #: ../admin/config/maintenance.php:345
1356
- msgid "Import"
1357
- msgstr "Importer"
1358
 
1359
- #: ../admin/config/maintenance.php:346
1360
- msgid "Are you sure you want to OVERWRITE your current settings?"
1361
- msgstr "Etes-vous sûr que vous voulez réinitialiser vos onglets?"
1362
 
1363
- #: ../admin/config/maintenance.php:351
1364
- msgid "Database Information"
1365
- msgstr "Informations de base de données"
 
1366
 
1367
- #: ../admin/config/maintenance.php:354
1368
- msgid "Engine"
1369
- msgstr "Moteur"
 
1370
 
1371
- #: ../admin/config/maintenance.php:358
1372
- msgid "switch to InnoDB"
1373
- msgstr "changer pour InnoDB"
 
1374
 
1375
- #: ../admin/config/maintenance.php:369
1376
- msgid "records"
1377
- msgstr "Enregistrements"
1378
 
1379
  #: ../admin/view/index.php:26
1380
  msgid "is between (x,y)"
@@ -1384,11 +1405,11 @@ msgstr "est entre (x,y)"
1384
  msgid "Load"
1385
  msgstr ""
1386
 
1387
- #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1307
1388
  msgid "Today"
1389
  msgstr "Aujourd'hui"
1390
 
1391
- #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1310
1392
  msgid "Yesterday"
1393
  msgstr "Hier"
1394
 
@@ -1453,6 +1474,31 @@ msgid ""
1453
  "country of origin."
1454
  msgstr ""
1455
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1456
  #: ../admin/view/right-now.php:12
1457
  msgid "Human"
1458
  msgstr "Humain"
@@ -1469,8 +1515,8 @@ msgstr "Appareil mobile"
1469
  msgid "Syndication Reader"
1470
  msgstr "Lecteur de Flux (Syndication)"
1471
 
1472
- #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:939
1473
- #: ../admin/view/wp-slimstat-reports.php:1616
1474
  msgid "No data to display"
1475
  msgstr "Aucune donnée à afficher"
1476
 
@@ -1479,69 +1525,81 @@ msgid "Date and Time"
1479
  msgstr "Date/Heure"
1480
 
1481
  # Unknown
1482
- #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:990
1483
- #: ../admin/view/wp-slimstat-reports.php:1730
1484
  msgid "c-"
1485
  msgstr "Inconnu"
1486
 
1487
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1488
- #: ../admin/wp-slimstat-admin.php:1009 ../admin/wp-slimstat-admin.php:1049
1489
  msgid "Originating IP"
1490
  msgstr "IP d'origine"
1491
 
1492
- #: ../admin/view/right-now.php:142
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1493
  msgid "Server Latency and Page Speed in milliseconds"
1494
  msgstr "Latence du serveur et Rapidité de la page en millisecondes"
1495
 
1496
- #: ../admin/view/right-now.php:142
1497
  msgid "SL"
1498
  msgstr "SL"
1499
 
1500
- #: ../admin/view/right-now.php:142
1501
  msgid "PS"
1502
  msgstr "PS"
1503
 
1504
- #: ../admin/view/right-now.php:148
1505
  #, fuzzy
1506
  msgid "Time spent on this page in seconds"
1507
  msgstr "Ouvrir cette page dans une nouvelle fenêtre"
1508
 
1509
- #: ../admin/view/right-now.php:160 ../admin/view/wp-slimstat-reports.php:1087
1510
- #: ../admin/view/wp-slimstat-reports.php:1091
1511
- msgid "Open this URL in a new window"
1512
- msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1513
-
1514
- #: ../admin/view/right-now.php:163
1515
- msgid "Local search results page"
1516
- msgstr "Page de résultat d'une recherche locale"
1517
-
1518
- #: ../admin/view/right-now.php:171 ../admin/view/wp-slimstat-db.php:42
1519
- #: ../admin/wp-slimstat-admin.php:1012 ../admin/wp-slimstat-admin.php:1028
1520
- msgid "Search Terms"
1521
- msgstr "Termes de recherche"
1522
-
1523
- #: ../admin/view/right-now.php:177
1524
  msgid "Open this referrer in a new window"
1525
  msgstr "Ouvrir ce référent dans une nouvelle fenêtre"
1526
 
1527
- #: ../admin/view/right-now.php:178
1528
  msgid "Open this outbound link in a new window"
1529
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1530
 
1531
- #: ../admin/view/right-now.php:179
1532
  msgid "Content Type"
1533
  msgstr "Type de contenu"
1534
 
1535
- #: ../admin/view/right-now.php:182
1536
  #, fuzzy
1537
  msgid "Delete this pageview"
1538
  msgstr "Filtrer les pages vues pour que"
1539
 
1540
- #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:1025
 
 
 
 
 
 
 
 
 
 
1541
  msgid "Browser"
1542
  msgstr "Navigateur Web"
1543
 
1544
- #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:1026
1545
  msgid "Country Code"
1546
  msgstr "Code du pays"
1547
 
@@ -1549,29 +1607,29 @@ msgstr "Code du pays"
1549
  msgid "IP Address"
1550
  msgstr "Adresse IP"
1551
 
1552
- #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:1029
1553
  msgid "Language Code"
1554
  msgstr "Code langue"
1555
 
1556
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1557
- #: ../admin/wp-slimstat-admin.php:1030
1558
  msgid "Operating System"
1559
  msgstr "Système d'exploitation (OS)"
1560
 
1561
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1562
- #: ../admin/wp-slimstat-admin.php:1031
1563
  msgid "Permalink"
1564
  msgstr "Permalien"
1565
 
1566
- #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:1032
1567
  msgid "Referer"
1568
  msgstr "Référent"
1569
 
1570
- #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:1033
1571
  msgid "Visitor's Name"
1572
  msgstr "le nom des visiteurs"
1573
 
1574
- #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:1015
1575
  msgid "Outbound Link"
1576
  msgstr "Lien sortant"
1577
 
@@ -1584,19 +1642,19 @@ msgid "-- Advanced filters --"
1584
  msgstr "-- Filtres Avancés --"
1585
 
1586
  #: ../admin/view/wp-slimstat-db.php:52
1587
- #: ../admin/view/wp-slimstat-reports.php:336
1588
  msgid "Browser Capabilities"
1589
  msgstr "Capacités des Navigateurs"
1590
 
1591
- #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:1044
1592
  msgid "Browser Version"
1593
  msgstr "Version de navigateur"
1594
 
1595
- #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:1045
1596
  msgid "Browser Type"
1597
  msgstr "le type de navigateur Web"
1598
 
1599
- #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:1014
1600
  msgid "User Agent"
1601
  msgstr "User Agent"
1602
 
@@ -1609,15 +1667,15 @@ msgstr "Annotations graphique"
1609
  msgid "Server Latency"
1610
  msgstr "Latence du serveur"
1611
 
1612
- #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:1047
1613
  msgid "Post Author"
1614
  msgstr "l'auteur de l'article"
1615
 
1616
- #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:1048
1617
  msgid "Post Category ID"
1618
  msgstr "ID de la catégorie de l'article"
1619
 
1620
- #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:1050
1621
  msgid "Resource Content Type"
1622
  msgstr "le type de source de contenu"
1623
 
@@ -1638,7 +1696,7 @@ msgstr "la résolution de l'écran"
1638
  msgid "Viewport Size"
1639
  msgstr ""
1640
 
1641
- #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:1052
1642
  msgid "Visit ID"
1643
  msgstr "Visites ID"
1644
 
@@ -1684,7 +1742,7 @@ msgid "Event ID"
1684
  msgstr "Contenus récents"
1685
 
1686
  #: ../admin/view/wp-slimstat-db.php:96
1687
- #: ../admin/view/wp-slimstat-reports.php:1630
1688
  msgid "Type"
1689
  msgstr ""
1690
 
@@ -1707,142 +1765,153 @@ msgstr "Ordre de tri"
1707
  msgid "Offset"
1708
  msgstr ""
1709
 
1710
- #: ../admin/view/wp-slimstat-reports.php:20 ../admin/wp-slimstat-admin.php:649
1711
- #: ../wp-slimstat.php:1783
1712
  msgid "Access Log"
1713
  msgstr ""
1714
 
1715
- #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:650
1716
- #: ../admin/wp-slimstat-admin.php:665 ../wp-slimstat.php:1784
1717
  msgid "Overview"
1718
  msgstr "Vue générale"
1719
 
1720
- #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:651
1721
- #: ../admin/wp-slimstat-admin.php:666 ../wp-slimstat.php:1785
1722
  msgid "Audience"
1723
  msgstr "Audience"
1724
 
1725
- #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:652
1726
- #: ../admin/wp-slimstat-admin.php:667 ../wp-slimstat.php:1786
1727
  msgid "Site Analysis"
1728
  msgstr "Analyse du site"
1729
 
1730
- #: ../admin/view/wp-slimstat-reports.php:24
1731
- #: ../admin/view/wp-slimstat-reports.php:461
1732
- #: ../admin/wp-slimstat-admin.php:653 ../admin/wp-slimstat-admin.php:668
1733
- #: ../wp-slimstat.php:1787
1734
  msgid "Traffic Sources"
1735
  msgstr "Sources de trafic"
1736
 
1737
- #: ../admin/view/wp-slimstat-reports.php:25 ../admin/wp-slimstat-admin.php:654
1738
- #: ../admin/wp-slimstat-admin.php:669 ../wp-slimstat.php:1788
1739
- msgid "Map Overlay"
1740
- msgstr "Carte géographique"
 
 
 
 
 
 
 
 
 
 
 
 
 
1741
 
1742
- #: ../admin/view/wp-slimstat-reports.php:74
1743
  msgid "Chart controls"
1744
  msgstr "Contrôle du graphique"
1745
 
1746
- #: ../admin/view/wp-slimstat-reports.php:74
1747
  msgid "Use your mouse wheel to zoom in and out"
1748
  msgstr "Utilisez la molette de votre souris pour zoomer et dézoomer"
1749
 
1750
- #: ../admin/view/wp-slimstat-reports.php:74
1751
  msgid "While zooming in, drag the chart to move to a different area"
1752
  msgstr ""
1753
  "Alors que le zoom avant est activé, faites glisser la carte pour passer à "
1754
  "une autre zone"
1755
 
1756
- #: ../admin/view/wp-slimstat-reports.php:74
1757
- msgid "Double click on an empty region to reset the zoom level"
1758
- msgstr "Double-cliquez sur une zone vide pour réinitialiser le niveau de zoom"
1759
-
1760
- #: ../admin/view/wp-slimstat-reports.php:77
1761
- msgid ""
1762
- "Social Sharing Analytics <a href=\"http://getsocial.io/?utm_source=slimstat"
1763
- "\">powered by GetSocial</a>"
1764
- msgstr ""
1765
 
1766
- #: ../admin/view/wp-slimstat-reports.php:84
1767
  #, fuzzy
1768
  msgid "Visitors Activity"
1769
  msgstr "Statistiques de fréquentation"
1770
 
1771
- #: ../admin/view/wp-slimstat-reports.php:93
1772
  msgid "Color codes"
1773
  msgstr "Codes couleur"
1774
 
1775
- #: ../admin/view/wp-slimstat-reports.php:93
1776
  msgid "From search result page"
1777
  msgstr "Depuis un moteur de recherche"
1778
 
1779
- #: ../admin/view/wp-slimstat-reports.php:93
1780
- #: ../admin/wp-slimstat-admin.php:1007
1781
  msgid "Known Visitor"
1782
  msgstr "Visiteurs connus"
1783
 
1784
- #: ../admin/view/wp-slimstat-reports.php:93
1785
  msgid "Known Users"
1786
  msgstr "Utilisateurs connus"
1787
 
1788
- #: ../admin/view/wp-slimstat-reports.php:93
1789
  msgid "Other Humans"
1790
  msgstr "Autres humains"
1791
 
1792
- #: ../admin/view/wp-slimstat-reports.php:93
1793
  msgid "Bot or Crawler"
1794
  msgstr "Robot ou Crawler"
1795
 
1796
- #: ../admin/view/wp-slimstat-reports.php:107
1797
  msgid "About Slimstat"
1798
  msgstr "À propos de WP-SlimStat"
1799
 
1800
- #: ../admin/view/wp-slimstat-reports.php:117
1801
  #, fuzzy
1802
  msgid "Traffic at a Glance"
1803
  msgstr "Brièvement"
1804
 
1805
- #: ../admin/view/wp-slimstat-reports.php:127
1806
  msgid "Currently Online"
1807
  msgstr "Actuellement en ligne"
1808
 
1809
- #: ../admin/view/wp-slimstat-reports.php:140
1810
  msgid "Recent Search Terms"
1811
  msgstr "Derniers Termes de Recherches"
1812
 
1813
- #: ../admin/view/wp-slimstat-reports.php:150
1814
  msgid "Keywords used by your visitors to find your website on a search engine."
1815
  msgstr ""
1816
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
1817
  "de recherche."
1818
 
1819
- #: ../admin/view/wp-slimstat-reports.php:153
1820
- msgid "Top Pages"
 
1821
  msgstr "Top Pages Vues"
1822
 
1823
- #: ../admin/view/wp-slimstat-reports.php:164
1824
  msgid ""
1825
- "Here a \"page\" is not just a WordPress page type, but any web page on your "
1826
- "website, including posts, products, categories, and so on."
 
 
 
1827
  msgstr ""
1828
 
1829
- #: ../admin/view/wp-slimstat-reports.php:167
1830
  msgid "Top Traffic Sources"
1831
  msgstr "Top Sources de Trafic"
1832
 
1833
- #: ../admin/view/wp-slimstat-reports.php:179
1834
  msgid "Top Known Visitors"
1835
  msgstr "Top Visiteurs Connus"
1836
 
1837
- #: ../admin/view/wp-slimstat-reports.php:190
1838
  msgid "Top Search Terms"
1839
  msgstr "Top Termes de Recherche"
1840
 
1841
- #: ../admin/view/wp-slimstat-reports.php:201
1842
  msgid "Top Countries"
1843
  msgstr "Pays les plus récurrents"
1844
 
1845
- #: ../admin/view/wp-slimstat-reports.php:210
1846
  msgid ""
1847
  "You can configure Slimstat to ignore a specific Country by setting the "
1848
  "corresponding filter under Settings > Slimstat > Filters."
@@ -1850,11 +1919,11 @@ msgstr ""
1850
  "Vous pouvez configurer WP SlimStat afin d'ignorer un pays spécifique en "
1851
  "définissant le filtre correspondant sous SlimStat> Paramètres> Filtres."
1852
 
1853
- #: ../admin/view/wp-slimstat-reports.php:213
1854
  msgid "Rankings"
1855
  msgstr "Classements"
1856
 
1857
- #: ../admin/view/wp-slimstat-reports.php:217
1858
  msgid ""
1859
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1860
  "measures your site's rankings. Values are updated every 12 hours. Filters "
@@ -1865,16 +1934,16 @@ msgstr ""
1865
  "12 heures. Les filtres indiqués ci-dessus ne sont pas pris en compte dans ce "
1866
  "rapport."
1867
 
1868
- #: ../admin/view/wp-slimstat-reports.php:220
1869
  msgid "Top Language Families"
1870
  msgstr "Top Langues"
1871
 
1872
- #: ../admin/view/wp-slimstat-reports.php:233
1873
  #, fuzzy
1874
  msgid "Users Currently Online"
1875
  msgstr "Actuellement en ligne"
1876
 
1877
- #: ../admin/view/wp-slimstat-reports.php:244
1878
  msgid ""
1879
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1880
  "Slimstat leverages this information to identify returning visitors. Please "
@@ -1884,34 +1953,44 @@ msgstr ""
1884
  "attribue un cookie. WP SlimStat exploite ces informations pour identifier "
1885
  "les visiteurs qui reviennent, y compris les utilisateurs enregistrés."
1886
 
1887
- #: ../admin/view/wp-slimstat-reports.php:248
 
 
 
 
 
1888
  msgid "Human Visits"
1889
  msgstr "Visiteurs humains"
1890
 
1891
- #: ../admin/view/wp-slimstat-reports.php:258
 
 
 
 
 
1892
  msgid "Audience Overview"
1893
  msgstr "Vue générale"
1894
 
1895
- #: ../admin/view/wp-slimstat-reports.php:265
1896
  msgid ""
1897
  "Where not otherwise specified, the metrics in this report are referred to "
1898
  "human visitors."
1899
  msgstr ""
1900
 
1901
- #: ../admin/view/wp-slimstat-reports.php:268
1902
  msgid "Top Languages"
1903
  msgstr "Top Langues"
1904
 
1905
- #: ../admin/view/wp-slimstat-reports.php:279
1906
  msgid "Top Browsers"
1907
  msgstr "Principaux navigateurs"
1908
 
1909
- #: ../admin/view/wp-slimstat-reports.php:290
1910
  msgid "Top Service Providers"
1911
  msgstr "Top Fournisseur d'Accès"
1912
 
1913
- #: ../admin/view/wp-slimstat-reports.php:299
1914
- #: ../admin/view/wp-slimstat-reports.php:311
1915
  msgid ""
1916
  "Internet Service Provider: a company which provides other companies or "
1917
  "individuals with access to the Internet. Your DSL or cable internet service "
@@ -1924,24 +2003,24 @@ msgstr ""
1924
  "spécifiques en définissant le filtre correspondant sous SlimStat> Réglages> "
1925
  "Filtres."
1926
 
1927
- #: ../admin/view/wp-slimstat-reports.php:302
1928
  msgid "Top Operating Systems"
1929
  msgstr "Top Systèmes d'Exploitation"
1930
 
1931
- #: ../admin/view/wp-slimstat-reports.php:314
1932
  msgid "Top Screen Resolutions"
1933
  msgstr "Top Résolutions d'écran"
1934
 
1935
- #: ../admin/view/wp-slimstat-reports.php:325
1936
  #, fuzzy
1937
  msgid "Top Viewport Sizes"
1938
  msgstr "Top Catégories"
1939
 
1940
- #: ../admin/view/wp-slimstat-reports.php:345
1941
  msgid "Visit Duration"
1942
  msgstr "Durée des Visites"
1943
 
1944
- #: ../admin/view/wp-slimstat-reports.php:352
1945
  #, fuzzy
1946
  msgid ""
1947
  "All values represent the percentages of pageviews within the corresponding "
@@ -1950,32 +2029,32 @@ msgstr ""
1950
  "Carte du monde - Les valeurs représentent le pourcentage des accès provenant "
1951
  "de ce pays"
1952
 
1953
- #: ../admin/view/wp-slimstat-reports.php:355
1954
  msgid "Recent Countries"
1955
  msgstr "Derniers Pays"
1956
 
1957
- #: ../admin/view/wp-slimstat-reports.php:366
1958
  #, fuzzy
1959
  msgid "Recent Viewport Sizes"
1960
  msgstr "Dernières Catégories"
1961
 
1962
- #: ../admin/view/wp-slimstat-reports.php:377
1963
  msgid "Recent Operating Systems"
1964
  msgstr "Derniers Systèmes d'Exploitation"
1965
 
1966
- #: ../admin/view/wp-slimstat-reports.php:388
1967
  msgid "Recent Browsers"
1968
  msgstr "Navigateurs récents"
1969
 
1970
- #: ../admin/view/wp-slimstat-reports.php:399
1971
  msgid "Recent Languages"
1972
  msgstr "Dernier Language"
1973
 
1974
- #: ../admin/view/wp-slimstat-reports.php:410
1975
  msgid "Top Browser Families"
1976
  msgstr "Principales familles de navigateurs"
1977
 
1978
- #: ../admin/view/wp-slimstat-reports.php:419
1979
  msgid ""
1980
  "This report shows you what user agent families (no version considered) are "
1981
  "popular among your visitors."
@@ -1983,11 +2062,11 @@ msgstr ""
1983
  "Ce rapport affiche quelles familles d'user agent (sans prise en compte de "
1984
  "version) sont populaires chez vos visiteurs."
1985
 
1986
- #: ../admin/view/wp-slimstat-reports.php:422
1987
  msgid "Top OS Families"
1988
  msgstr "Principales familles de SO"
1989
 
1990
- #: ../admin/view/wp-slimstat-reports.php:433
1991
  msgid ""
1992
  "This report shows you what operating system families (no version considered) "
1993
  "are popular among your visitors."
@@ -1995,69 +2074,83 @@ msgstr ""
1995
  "Ce rapport affiche quelles familles de système d'exploitation (sans prise en "
1996
  "compte de version) sont populaires chez vos visiteurs."
1997
 
1998
- #: ../admin/view/wp-slimstat-reports.php:436
1999
  msgid "Recent Users"
2000
  msgstr "Utilisateurs récents"
2001
 
2002
- #: ../admin/view/wp-slimstat-reports.php:448
2003
  msgid "Top Users"
2004
  msgstr "Principaux utilisateurs"
2005
 
2006
- #: ../admin/view/wp-slimstat-reports.php:471
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2007
  #, fuzzy
2008
  msgid "Traffic Summary"
2009
  msgstr "Sources de trafic"
2010
 
2011
- #: ../admin/view/wp-slimstat-reports.php:480
2012
  msgid "Top Referring Search Engines"
2013
  msgstr "Top Moteurs de Recherche"
2014
 
2015
- #: ../admin/view/wp-slimstat-reports.php:507
2016
  msgid "Recent Outbound Links"
2017
  msgstr "Liens sortants récents"
2018
 
2019
- #: ../admin/view/wp-slimstat-reports.php:519
2020
  msgid "Recent Posts"
2021
  msgstr "Contenus récents"
2022
 
2023
- #: ../admin/view/wp-slimstat-reports.php:547
2024
  msgid "Recent Feeds"
2025
  msgstr "Flux récents"
2026
 
2027
- #: ../admin/view/wp-slimstat-reports.php:559
2028
  msgid "Recent Pages Not Found"
2029
  msgstr "Dernières pages non trouvées"
2030
 
2031
- #: ../admin/view/wp-slimstat-reports.php:571
2032
  msgid "Recent Internal Searches"
2033
  msgstr "Recherches internes récentes"
2034
 
2035
- #: ../admin/view/wp-slimstat-reports.php:581
2036
  #, fuzzy
2037
  msgid "Searches performed using WordPress' built-in search functionality."
2038
  msgstr ""
2039
  "Recherches effectuées en utilisant la fonctionnalité de recherche intégrée "
2040
  "dans Wordpress."
2041
 
2042
- #: ../admin/view/wp-slimstat-reports.php:584
2043
  msgid "Top Categories"
2044
  msgstr "Top Catégories"
2045
 
2046
- #: ../admin/view/wp-slimstat-reports.php:597
2047
  msgid "Top Downloads"
2048
  msgstr "Top Téléchargements"
2049
 
2050
- #: ../admin/view/wp-slimstat-reports.php:608
2051
  msgid ""
2052
  "You can configure Slimstat to track specific file extensions as downloads."
2053
  msgstr ""
2054
 
2055
- #: ../admin/view/wp-slimstat-reports.php:611
2056
  msgid "Recent Events"
2057
  msgstr "Evènements Récents"
2058
 
2059
- #: ../admin/view/wp-slimstat-reports.php:620
2060
- #: ../admin/view/wp-slimstat-reports.php:644
2061
  #, fuzzy
2062
  msgid ""
2063
  "This report lists any <em>event</em> occurred on your website. Please refer "
@@ -2067,49 +2160,49 @@ msgstr ""
2067
  "web. S'il vous plaît se référer à la FAQ pour plus d'informations sur la "
2068
  "façon de tirer parti de cette fonctionnalité."
2069
 
2070
- #: ../admin/view/wp-slimstat-reports.php:623
2071
  msgid "Top Posts"
2072
  msgstr "Top Posts"
2073
 
2074
- #: ../admin/view/wp-slimstat-reports.php:635
2075
  #, fuzzy
2076
  msgid "Top Events"
2077
  msgstr "Contenus récents"
2078
 
2079
- #: ../admin/view/wp-slimstat-reports.php:647
2080
  msgid "Top Internal Searches"
2081
  msgstr "Top Recherches Internes"
2082
 
2083
- #: ../admin/view/wp-slimstat-reports.php:659
2084
  msgid "Recent Categories"
2085
  msgstr "Dernières Catégories"
2086
 
2087
- #: ../admin/view/wp-slimstat-reports.php:671
2088
  msgid "Top Pages Not Found"
2089
  msgstr "Top Pages non trouvées"
2090
 
2091
- #: ../admin/view/wp-slimstat-reports.php:683
2092
  msgid "Top Authors"
2093
  msgstr "Top Auteurs"
2094
 
2095
- #: ../admin/view/wp-slimstat-reports.php:694
2096
  msgid "Top Tags"
2097
  msgstr "Top Mots Clés"
2098
 
2099
- #: ../admin/view/wp-slimstat-reports.php:706
2100
  msgid "Recent Downloads"
2101
  msgstr "Téléchargements récents"
2102
 
2103
- #: ../admin/view/wp-slimstat-reports.php:718
2104
  #, fuzzy
2105
  msgid "Top Outbound Links"
2106
  msgstr "Lien sortant"
2107
 
2108
- #: ../admin/view/wp-slimstat-reports.php:729
2109
  msgid "Your Website"
2110
  msgstr "Votre site web"
2111
 
2112
- #: ../admin/view/wp-slimstat-reports.php:736
2113
  msgid ""
2114
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2115
  "this report is not affected by the filters set here above."
@@ -2117,134 +2210,130 @@ msgstr ""
2117
  "Votre contenu en bref : Posts, commentaires, pingbacks, etc. Merci de noter "
2118
  "que ce rpport ne prend pas en compte les filtres ci-dessus."
2119
 
2120
- #: ../admin/view/wp-slimstat-reports.php:739
2121
  #, fuzzy
2122
  msgid "Top Bounce Pages"
2123
  msgstr "Pages de Rebonds"
2124
 
2125
- #: ../admin/view/wp-slimstat-reports.php:752
2126
  #, fuzzy
2127
  msgid "Top Exit Pages"
2128
  msgstr "Top Pages Vues"
2129
 
2130
- #: ../admin/view/wp-slimstat-reports.php:765
2131
  #, fuzzy
2132
  msgid "Top Entry Pages"
2133
  msgstr "Top Pages Vues"
2134
 
2135
- #: ../admin/view/wp-slimstat-reports.php:779
 
 
 
 
 
 
 
 
 
 
2136
  msgid "World Map"
2137
  msgstr "Carte du monde"
2138
 
2139
- #: ../admin/view/wp-slimstat-reports.php:852
2140
  msgid "Refresh"
2141
  msgstr "Rafraichir"
2142
 
2143
- #: ../admin/view/wp-slimstat-reports.php:889
2144
  #, php-format
2145
  msgid "Results %s - %s of %s"
2146
  msgstr "Résultats %s - %s de %s"
2147
 
2148
- #: ../admin/view/wp-slimstat-reports.php:891
2149
  msgid "Refresh in"
2150
  msgstr "Rafraichir dans "
2151
 
2152
- #: ../admin/view/wp-slimstat-reports.php:984
2153
  msgid "Category ID"
2154
  msgstr "l'ID de la catégorie de l'article"
2155
 
2156
- #: ../admin/view/wp-slimstat-reports.php:989
2157
- #: ../admin/view/wp-slimstat-reports.php:1004
2158
- #: ../admin/view/wp-slimstat-reports.php:1010
2159
  #, fuzzy
2160
  msgid "Code"
2161
  msgstr "Code OS "
2162
 
2163
  # Unknown
2164
- #: ../admin/view/wp-slimstat-reports.php:1005
2165
- #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1424
2166
  msgid "l-"
2167
  msgstr "Inconnue"
2168
 
2169
- #: ../admin/view/wp-slimstat-reports.php:1022
2170
  msgid "URL"
2171
  msgstr ""
2172
 
2173
- #: ../admin/view/wp-slimstat-reports.php:1035
2174
  msgid "Referrer"
2175
  msgstr "Référent"
2176
 
2177
- #: ../admin/view/wp-slimstat-reports.php:1076
2178
- #: ../admin/view/wp-slimstat-reports.php:1325
2179
- #: ../admin/view/wp-slimstat-reports.php:1381
2180
- #: ../admin/view/wp-slimstat-reports.php:1387
2181
- #: ../admin/view/wp-slimstat-reports.php:1393
2182
- #: ../admin/view/wp-slimstat-reports.php:1399
2183
- #: ../admin/view/wp-slimstat-reports.php:1405
2184
- #: ../admin/view/wp-slimstat-reports.php:1411
2185
- #: ../admin/view/wp-slimstat-reports.php:1417
2186
- #: ../admin/view/wp-slimstat-reports.php:1637
2187
  msgid "Hits"
2188
  msgstr "Hits"
2189
 
2190
- #: ../admin/view/wp-slimstat-reports.php:1129
2191
- #: ../admin/view/wp-slimstat-reports.php:1341
2192
- msgid "Visits"
2193
- msgstr "Visites"
2194
-
2195
- #: ../admin/view/wp-slimstat-reports.php:1134
2196
- msgid "Domains"
2197
- msgstr "Domaines"
2198
-
2199
- #: ../admin/view/wp-slimstat-reports.php:1252
2200
  #, fuzzy
2201
  msgid "Dataset Size"
2202
  msgstr "Taille de la base de données"
2203
 
2204
- #: ../admin/view/wp-slimstat-reports.php:1254
2205
  msgid "Total number of records stored in the database."
2206
  msgstr ""
2207
 
2208
- #: ../admin/view/wp-slimstat-reports.php:1256
2209
  msgid "DB Size"
2210
  msgstr "Taille de la base de données"
2211
 
2212
- #: ../admin/view/wp-slimstat-reports.php:1259
2213
  #, fuzzy
2214
  msgid "Tracking Enabled"
2215
  msgstr "Mode traçage"
2216
 
2217
- #: ../admin/view/wp-slimstat-reports.php:1262
2218
  msgid "Javascript Mode"
2219
  msgstr "Mode Javascript"
2220
 
2221
- #: ../admin/view/wp-slimstat-reports.php:1265
2222
  msgid "Tracking Browser Caps"
2223
  msgstr "Traçage Capacités Navigateurs"
2224
 
2225
- #: ../admin/view/wp-slimstat-reports.php:1268
2226
  msgid "Auto purge"
2227
  msgstr "Purge automatique"
2228
 
2229
- #: ../admin/view/wp-slimstat-reports.php:1271
2230
  msgid "Oldest pageview"
2231
  msgstr "Plus ancienne page vue"
2232
 
2233
- #: ../admin/view/wp-slimstat-reports.php:1272
2234
  msgid "No visits"
2235
  msgstr "Aucune visite"
2236
 
2237
- #: ../admin/view/wp-slimstat-reports.php:1274
2238
- #, fuzzy
2239
- msgid "Geolocation"
2240
- msgstr "Ordre de tri"
2241
-
2242
- #: ../admin/view/wp-slimstat-reports.php:1276
2243
  msgid "Date when the MaxMind Geolocation database was last updated."
2244
  msgstr ""
2245
 
2246
- #: ../admin/view/wp-slimstat-reports.php:1287
2247
- #: ../admin/view/wp-slimstat-reports.php:1445
2248
  msgid ""
2249
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2250
  "the tracking code is executed."
@@ -2252,17 +2341,17 @@ msgstr ""
2252
  "Une demande pour charger un fichier HTML. WP SlimStat enregistre un \"pages "
2253
  "vues \" chaque fois que le code de traçage est exécuté."
2254
 
2255
- #: ../admin/view/wp-slimstat-reports.php:1289
2256
  #, fuzzy
2257
  msgid "Days in Range"
2258
  msgstr "Intervalle de date"
2259
 
2260
- #: ../admin/view/wp-slimstat-reports.php:1292
2261
  #, fuzzy
2262
  msgid "Average Daily Pageviews"
2263
  msgstr "Nombre de pages vues en moyenne"
2264
 
2265
- #: ../admin/view/wp-slimstat-reports.php:1294
2266
  #, fuzzy
2267
  msgid ""
2268
  "How many pages have been visited on average every day during the current "
@@ -2270,11 +2359,11 @@ msgid ""
2270
  msgstr ""
2271
  "Combien de pages ont été visitées en moyenne au cours de la période en cours."
2272
 
2273
- #: ../admin/view/wp-slimstat-reports.php:1296
2274
  msgid "From Search Results"
2275
  msgstr "Résultat de recherches"
2276
 
2277
- #: ../admin/view/wp-slimstat-reports.php:1298
2278
  msgid ""
2279
  "Visitors who landed on your site after searching for a keyword on Google, "
2280
  "Yahoo, etc."
@@ -2282,7 +2371,7 @@ msgstr ""
2282
  "Visiteurs qui sont arrivés sur votre site après une recherche par mots clés "
2283
  "sur Google, Yahoo, etc"
2284
 
2285
- #: ../admin/view/wp-slimstat-reports.php:1302
2286
  msgid ""
2287
  "Used to differentiate between multiple requests to download a file from one "
2288
  "internet address (IP) and requests originating from many distinct addresses"
@@ -2291,11 +2380,11 @@ msgstr ""
2291
  "fichier à partir d'une adresse Internet (IP) unique et les demandes "
2292
  "provenant de plusieurs adresses distinctes"
2293
 
2294
- #: ../admin/view/wp-slimstat-reports.php:1304
2295
  msgid "Last 30 minutes"
2296
  msgstr "30 dernières minutes"
2297
 
2298
- #: ../admin/view/wp-slimstat-reports.php:1343
2299
  msgid ""
2300
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2301
  "multiple times if they perform multiple visits."
@@ -2304,15 +2393,15 @@ msgstr ""
2304
  "reviennent sont comptés plusieurs fois s'ils effectuent des visites "
2305
  "multiples."
2306
 
2307
- #: ../admin/view/wp-slimstat-reports.php:1347
2308
  msgid "It includes only traffic generated by human visitors."
2309
  msgstr "Cela ne comprend que les visites dites humaines."
2310
 
2311
- #: ../admin/view/wp-slimstat-reports.php:1349
2312
  msgid "Bounce rate"
2313
  msgstr "Taux de rebond"
2314
 
2315
- #: ../admin/view/wp-slimstat-reports.php:1351
2316
  msgid ""
2317
  "Percentage of single-page visits, i.e. visits in which the person left your "
2318
  "site from the entrance page."
@@ -2320,76 +2409,77 @@ msgstr ""
2320
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
2321
  "desquelles la personne a quitté votre site dès la page d'entrée."
2322
 
2323
- #: ../admin/view/wp-slimstat-reports.php:1353
2324
  msgid "Known visitors"
2325
  msgstr "Visiteurs connus"
2326
 
2327
- #: ../admin/view/wp-slimstat-reports.php:1355
2328
  msgid "Visitors who had previously left a comment on your blog."
2329
  msgstr "Visiteurs qui ont déjà laissé un commentaire sur votre blog."
2330
 
2331
- #: ../admin/view/wp-slimstat-reports.php:1357
2332
  msgid "New visitors"
2333
  msgstr "Nouveaux visiteurs"
2334
 
2335
- #: ../admin/view/wp-slimstat-reports.php:1359
2336
  msgid "Human users who visited your site only once."
2337
  msgstr "Visiteurs humains qui ont visité votre site une seule fois."
2338
 
2339
- #: ../admin/view/wp-slimstat-reports.php:1361
2340
  msgid "Bots"
2341
  msgstr "Robots"
2342
 
2343
- #: ../admin/view/wp-slimstat-reports.php:1364
2344
- msgid "Pages per visit"
 
2345
  msgstr "Pages vues par visite"
2346
 
2347
- #: ../admin/view/wp-slimstat-reports.php:1367
2348
  msgid "Longest visit"
2349
  msgstr "Visite la plus longue"
2350
 
2351
- #: ../admin/view/wp-slimstat-reports.php:1368
2352
  msgid "hits"
2353
  msgstr "hits"
2354
 
2355
- #: ../admin/view/wp-slimstat-reports.php:1379
2356
  msgid "0 - 30 seconds"
2357
  msgstr "0 - 30 secondes"
2358
 
2359
- #: ../admin/view/wp-slimstat-reports.php:1385
2360
  msgid "31 - 60 seconds"
2361
  msgstr "31 - 60 secondes"
2362
 
2363
- #: ../admin/view/wp-slimstat-reports.php:1391
2364
  msgid "1 - 3 minutes"
2365
  msgstr "1 - 3 minutes"
2366
 
2367
- #: ../admin/view/wp-slimstat-reports.php:1397
2368
  msgid "3 - 5 minutes"
2369
  msgstr "3 - 5 minutes"
2370
 
2371
- #: ../admin/view/wp-slimstat-reports.php:1403
2372
  msgid "5 - 7 minutes"
2373
  msgstr "5 - 7 minutes"
2374
 
2375
- #: ../admin/view/wp-slimstat-reports.php:1409
2376
  msgid "7 - 10 minutes"
2377
  msgstr "7 - 10 minutes"
2378
 
2379
- #: ../admin/view/wp-slimstat-reports.php:1415
2380
  msgid "More than 10 minutes"
2381
  msgstr "Plus de 10 minutes"
2382
 
2383
- #: ../admin/view/wp-slimstat-reports.php:1427
2384
  #, fuzzy
2385
  msgid "Average visit duration"
2386
  msgstr "Durée des Visites"
2387
 
2388
- #: ../admin/view/wp-slimstat-reports.php:1447
2389
  msgid "Unique Referrers"
2390
  msgstr "Référents uniques"
2391
 
2392
- #: ../admin/view/wp-slimstat-reports.php:1449
2393
  msgid ""
2394
  "A referrer (or referring site) is the site that a visitor previously visited "
2395
  "before following a link to your site."
@@ -2397,11 +2487,11 @@ msgstr ""
2397
  "Un référent (ou site référent) est le site que le visiteur a visité avant de "
2398
  "suivre un lien vers votre site."
2399
 
2400
- #: ../admin/view/wp-slimstat-reports.php:1451
2401
  msgid "Direct Pageviews"
2402
  msgstr "Pages Vues Directes"
2403
 
2404
- #: ../admin/view/wp-slimstat-reports.php:1453
2405
  msgid ""
2406
  "Visitors who visited the site by typing the URL directly into their browser. "
2407
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -2414,11 +2504,11 @@ msgstr ""
2414
  "courriels non marquées, ou des liens à partir de documents qui ne "
2415
  "contiennent pas de variables de suivi."
2416
 
2417
- #: ../admin/view/wp-slimstat-reports.php:1455
2418
  msgid "From a search result"
2419
  msgstr "Depuis un moteur de recherche"
2420
 
2421
- #: ../admin/view/wp-slimstat-reports.php:1457
2422
  msgid ""
2423
  "Visitors who came to your site via searches on Google or some other search "
2424
  "engine."
@@ -2426,11 +2516,11 @@ msgstr ""
2426
  "Visiteurs qui sont venus sur le site via un moteur de recherche comme Google "
2427
  "ou autre."
2428
 
2429
- #: ../admin/view/wp-slimstat-reports.php:1459
2430
  msgid "Unique Landing Pages"
2431
  msgstr "Pages d'Entrées Uniques"
2432
 
2433
- #: ../admin/view/wp-slimstat-reports.php:1461
2434
  msgid ""
2435
  "The first page that a user views during a session. This is also known as the "
2436
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -2442,22 +2532,22 @@ msgstr ""
2442
  "mots clés 'Brooklyn Office Space' et arrive sur votre page d'accueil, elle "
2443
  "sera comptée (pour cette visite) comme la page d'entrée."
2444
 
2445
- #: ../admin/view/wp-slimstat-reports.php:1463
2446
  msgid "Bounce Pages"
2447
  msgstr "Pages de Rebonds"
2448
 
2449
- #: ../admin/view/wp-slimstat-reports.php:1465
2450
  #, fuzzy
2451
  msgid "Number of single page visits to your site over the selected period."
2452
  msgstr ""
2453
  "Nombre de visites d'une seule page de votre site au cours de la période "
2454
  "sélectionnée."
2455
 
2456
- #: ../admin/view/wp-slimstat-reports.php:1467
2457
  msgid "New Visitors Rate"
2458
  msgstr "Taux de Nouveaux Visiteurs"
2459
 
2460
- #: ../admin/view/wp-slimstat-reports.php:1469
2461
  #, fuzzy
2462
  msgid ""
2463
  "Percentage of single page visits, i.e. visits in which the person left your "
@@ -2466,11 +2556,11 @@ msgstr ""
2466
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
2467
  "desquelles la personne a quitté votre site dès la page d'entrée."
2468
 
2469
- #: ../admin/view/wp-slimstat-reports.php:1471
2470
  msgid "Currently from search engines"
2471
  msgstr "Moteurs de recherche récents"
2472
 
2473
- #: ../admin/view/wp-slimstat-reports.php:1473
2474
  msgid ""
2475
  "Visitors who visited the site in the last 5 minutes coming from a search "
2476
  "engine."
@@ -2478,55 +2568,55 @@ msgstr ""
2478
  "Visiteurs qui ont visité le site dans les 5 dernières visites, provenant "
2479
  "d'un moteur de recherche."
2480
 
2481
- #: ../admin/view/wp-slimstat-reports.php:1543
2482
  msgid "Number of pages in your site included in Google's index."
2483
  msgstr "Nombre de pages de votre site indexées par Google."
2484
 
2485
- #: ../admin/view/wp-slimstat-reports.php:1544
2486
  msgid "Google Index"
2487
  msgstr "Index Google"
2488
 
2489
- #: ../admin/view/wp-slimstat-reports.php:1545
2490
  msgid "Number of pages, according to Google, that link back to your site."
2491
  msgstr ""
2492
  "Nombre de pages qui pointent sur votre site, d'après les informations "
2493
  "fournies par Google."
2494
 
2495
- #: ../admin/view/wp-slimstat-reports.php:1546
2496
  msgid "Google Backlinks"
2497
  msgstr "Backlinks Google"
2498
 
2499
- #: ../admin/view/wp-slimstat-reports.php:1547
2500
  msgid ""
2501
  "How many times the Facebook Like button has been approximately clicked on "
2502
  "your site."
2503
  msgstr ""
2504
  "Nombre de fois que votre site a été Liké par quelqu'un sur le réseau social."
2505
 
2506
- #: ../admin/view/wp-slimstat-reports.php:1548
2507
  msgid "Facebook Likes"
2508
  msgstr "\"J'aime\" Facebook"
2509
 
2510
- #: ../admin/view/wp-slimstat-reports.php:1549
2511
  msgid ""
2512
  "How many times your site has been shared by someone on the social network."
2513
  msgstr ""
2514
  "Nombre de fois que votre site a été partagé par quelqu'un sur le réseau "
2515
  "social."
2516
 
2517
- #: ../admin/view/wp-slimstat-reports.php:1550
2518
  msgid "Facebook Shares"
2519
  msgstr "Partages Facebook"
2520
 
2521
- #: ../admin/view/wp-slimstat-reports.php:1551
2522
  msgid "How many times links to your website have been clicked on Facebook."
2523
  msgstr "Nombre de fois que vos liens ont été activés sur Facebook"
2524
 
2525
- #: ../admin/view/wp-slimstat-reports.php:1552
2526
  msgid "Facebook Clicks"
2527
  msgstr "Clicks Facebook"
2528
 
2529
- #: ../admin/view/wp-slimstat-reports.php:1553
2530
  msgid ""
2531
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2532
  "traffic data."
@@ -2534,23 +2624,23 @@ msgstr ""
2534
  "Alexa est une filiale d'Amazon.com qui fournit des données commerciales "
2535
  "concernant le trafic web."
2536
 
2537
- #: ../admin/view/wp-slimstat-reports.php:1554
2538
  msgid "Alexa World Rank"
2539
  msgstr "Alexa, Classement mondial"
2540
 
2541
- #: ../admin/view/wp-slimstat-reports.php:1555
2542
  msgid "Alexa Country Rank"
2543
  msgstr "Alexa, Classement par pays"
2544
 
2545
- #: ../admin/view/wp-slimstat-reports.php:1556
2546
  msgid "Alexa Popularity"
2547
  msgstr "Alexa, Popularité"
2548
 
2549
- #: ../admin/view/wp-slimstat-reports.php:1567
2550
  msgid "Content Items"
2551
  msgstr "Contenus"
2552
 
2553
- #: ../admin/view/wp-slimstat-reports.php:1569
2554
  msgid ""
2555
  "This value includes not only posts, but also custom post types, regardless "
2556
  "of their status"
@@ -2558,64 +2648,64 @@ msgstr ""
2558
  "Cette valeur n'inclut pas seulement les articles de blog, mais aussi des "
2559
  "types personnalisés d'articles, quel que soit leur statut."
2560
 
2561
- #: ../admin/view/wp-slimstat-reports.php:1571
2562
  #, fuzzy
2563
  msgid "Posts"
2564
  msgstr "Top Posts"
2565
 
2566
- #: ../admin/view/wp-slimstat-reports.php:1574
2567
  #, fuzzy
2568
  msgid "Pages"
2569
  msgstr "Pages de sorties les plus utilisées"
2570
 
2571
- #: ../admin/view/wp-slimstat-reports.php:1577
2572
  msgid "Attachments"
2573
  msgstr ""
2574
 
2575
- #: ../admin/view/wp-slimstat-reports.php:1580
2576
  #, fuzzy
2577
  msgid "Revisions"
2578
  msgstr "Permissions"
2579
 
2580
- #: ../admin/view/wp-slimstat-reports.php:1583
2581
  #, fuzzy
2582
  msgid "Comments"
2583
  msgstr "Nombre de commentaires"
2584
 
2585
- #: ../admin/view/wp-slimstat-reports.php:1586
2586
  #, fuzzy
2587
  msgid "Avg Comments per Post"
2588
  msgstr "Moyenne de commentaires par Article"
2589
 
2590
- #: ../admin/view/wp-slimstat-reports.php:1589
2591
  msgid "Avg Server Latency"
2592
  msgstr "Latence moyenne du serveur"
2593
 
2594
- #: ../admin/view/wp-slimstat-reports.php:1591
2595
  msgid ""
2596
  "Latency is the amount of time it takes for the host server to receive and "
2597
  "process a request for a page object. The amount of latency depends largely "
2598
  "on how far away the user is from the server."
2599
  msgstr ""
2600
 
2601
- #: ../admin/view/wp-slimstat-reports.php:1634
2602
  #, fuzzy
2603
  msgid "Coordinates"
2604
  msgstr "Mode traçage"
2605
 
2606
- #: ../admin/view/wp-slimstat-reports.php:1634
2607
  msgid "Date"
2608
  msgstr ""
2609
 
2610
- #: ../admin/view/wp-slimstat-reports.php:1671
2611
  msgid "Error contacting the GetSocial endpoint."
2612
  msgstr ""
2613
 
2614
- #: ../admin/view/wp-slimstat-reports.php:1679
2615
  msgid "Error decoding the GetSocial payload."
2616
  msgstr ""
2617
 
2618
- #: ../admin/view/wp-slimstat-reports.php:1711
2619
  msgid ""
2620
  "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2621
  ">social media metrics and identify your top performing posts.<br/> <a "
@@ -2623,1178 +2713,1180 @@ msgid ""
2623
  msgstr ""
2624
 
2625
  # Unknown
2626
- #: ../admin/view/wp-slimstat-reports.php:1721
2627
  msgid "c-xx"
2628
  msgstr "Inconnu"
2629
 
2630
  # Afghanistan
2631
- #: ../admin/view/wp-slimstat-reports.php:1721
2632
  msgid "c-af"
2633
  msgstr "Afghanistan"
2634
 
2635
  # Åland Islands
2636
- #: ../admin/view/wp-slimstat-reports.php:1721
2637
  msgid "c-ax"
2638
  msgstr "Îles Åland"
2639
 
2640
  # Albania
2641
- #: ../admin/view/wp-slimstat-reports.php:1721
2642
  msgid "c-al"
2643
  msgstr "Albanie"
2644
 
2645
  # Algeria
2646
- #: ../admin/view/wp-slimstat-reports.php:1721
2647
  msgid "c-dz"
2648
  msgstr "Algérie"
2649
 
2650
  # Andorra
2651
- #: ../admin/view/wp-slimstat-reports.php:1721
2652
  msgid "c-ad"
2653
  msgstr "Andorre"
2654
 
2655
  # Angola
2656
- #: ../admin/view/wp-slimstat-reports.php:1721
2657
  msgid "c-ao"
2658
  msgstr "Angola"
2659
 
2660
  # Anguilla
2661
- #: ../admin/view/wp-slimstat-reports.php:1721
2662
  msgid "c-ai"
2663
  msgstr "Anguilla"
2664
 
2665
  # Antigua and Barbuda
2666
- #: ../admin/view/wp-slimstat-reports.php:1721
2667
  msgid "c-ag"
2668
  msgstr "Antigua et Barbuda"
2669
 
2670
  # Argentina
2671
- #: ../admin/view/wp-slimstat-reports.php:1721
2672
  msgid "c-ar"
2673
  msgstr "Argentine"
2674
 
2675
  # Armenia
2676
- #: ../admin/view/wp-slimstat-reports.php:1721
2677
  msgid "c-am"
2678
  msgstr "Arménie"
2679
 
2680
  # Aruba
2681
- #: ../admin/view/wp-slimstat-reports.php:1721
2682
  msgid "c-aw"
2683
  msgstr "Aruba"
2684
 
2685
  # Australia
2686
- #: ../admin/view/wp-slimstat-reports.php:1721
2687
  msgid "c-au"
2688
  msgstr "Australie"
2689
 
2690
  # Austria
2691
- #: ../admin/view/wp-slimstat-reports.php:1721
2692
  msgid "c-at"
2693
  msgstr "Autriche"
2694
 
2695
  # Azerbaijan
2696
- #: ../admin/view/wp-slimstat-reports.php:1721
2697
  msgid "c-az"
2698
  msgstr "Azerbaïdjan"
2699
 
2700
  # Bahamas
2701
- #: ../admin/view/wp-slimstat-reports.php:1721
2702
  msgid "c-bs"
2703
  msgstr "Bahamas"
2704
 
2705
  # Bahrain
2706
- #: ../admin/view/wp-slimstat-reports.php:1721
2707
  msgid "c-bh"
2708
  msgstr "Bahreïn"
2709
 
2710
  # Bangladesh
2711
- #: ../admin/view/wp-slimstat-reports.php:1721
2712
  msgid "c-bd"
2713
  msgstr "Bangladesh"
2714
 
2715
  # Barbados
2716
- #: ../admin/view/wp-slimstat-reports.php:1721
2717
  msgid "c-bb"
2718
  msgstr "Barbade"
2719
 
2720
  # Belarus
2721
- #: ../admin/view/wp-slimstat-reports.php:1721
2722
  msgid "c-by"
2723
  msgstr "Bélarus"
2724
 
2725
  # Belgium
2726
- #: ../admin/view/wp-slimstat-reports.php:1721
2727
  msgid "c-be"
2728
  msgstr "Belgique"
2729
 
2730
  # Belize
2731
- #: ../admin/view/wp-slimstat-reports.php:1721
2732
  msgid "c-bz"
2733
  msgstr "Belize"
2734
 
2735
  # Benin
2736
- #: ../admin/view/wp-slimstat-reports.php:1721
2737
  msgid "c-bj"
2738
  msgstr "Bénin"
2739
 
2740
  # Bermuda
2741
- #: ../admin/view/wp-slimstat-reports.php:1721
2742
  msgid "c-bm"
2743
  msgstr "Bermudes"
2744
 
2745
  # Bhutan
2746
- #: ../admin/view/wp-slimstat-reports.php:1721
2747
  msgid "c-bt"
2748
  msgstr "Bhoutan"
2749
 
2750
  # Bolivia
2751
- #: ../admin/view/wp-slimstat-reports.php:1721
2752
  msgid "c-bo"
2753
  msgstr "État plurinational de Bolivie"
2754
 
2755
  # Bosnia and Herzegovina
2756
- #: ../admin/view/wp-slimstat-reports.php:1721
2757
  msgid "c-ba"
2758
  msgstr "Bosnie-Herzégovine"
2759
 
2760
  # Botswana
2761
- #: ../admin/view/wp-slimstat-reports.php:1721
2762
  msgid "c-bw"
2763
  msgstr "Botswana"
2764
 
2765
  # Brazil
2766
- #: ../admin/view/wp-slimstat-reports.php:1721
2767
  msgid "c-br"
2768
  msgstr "Brésil"
2769
 
2770
  # Brunei Darussalam
2771
- #: ../admin/view/wp-slimstat-reports.php:1721
2772
  msgid "c-bn"
2773
  msgstr "Brunéi Darussalam"
2774
 
2775
  # Bulgaria
2776
- #: ../admin/view/wp-slimstat-reports.php:1721
2777
  msgid "c-bg"
2778
  msgstr "Bulgarie"
2779
 
2780
  # Burkina Faso
2781
- #: ../admin/view/wp-slimstat-reports.php:1721
2782
  msgid "c-bf"
2783
  msgstr "Burkina Faso"
2784
 
2785
  # Burundi
2786
- #: ../admin/view/wp-slimstat-reports.php:1721
2787
  msgid "c-bi"
2788
  msgstr "Burundi"
2789
 
2790
  # Cambodia
2791
- #: ../admin/view/wp-slimstat-reports.php:1721
2792
  msgid "c-kh"
2793
  msgstr "Cambodge"
2794
 
2795
  # Cameroon
2796
- #: ../admin/view/wp-slimstat-reports.php:1721
2797
  msgid "c-cm"
2798
  msgstr "Cameroun"
2799
 
2800
  # Canada
2801
- #: ../admin/view/wp-slimstat-reports.php:1721
2802
  msgid "c-ca"
2803
  msgstr "Canada"
2804
 
2805
  # Cape Verde
2806
- #: ../admin/view/wp-slimstat-reports.php:1721
2807
  msgid "c-cv"
2808
  msgstr "Cap-Vert"
2809
 
2810
  # Cayman Islands
2811
- #: ../admin/view/wp-slimstat-reports.php:1721
2812
  msgid "c-ky"
2813
  msgstr "Îles Caïmans"
2814
 
2815
  # Central African Republic
2816
- #: ../admin/view/wp-slimstat-reports.php:1721
2817
  msgid "c-cf"
2818
  msgstr "République Centrafricaine"
2819
 
2820
  # Chad
2821
- #: ../admin/view/wp-slimstat-reports.php:1721
2822
  msgid "c-td"
2823
  msgstr "Tchad"
2824
 
2825
  # Chile
2826
- #: ../admin/view/wp-slimstat-reports.php:1721
2827
  msgid "c-cl"
2828
  msgstr "Chili"
2829
 
2830
  # China
2831
- #: ../admin/view/wp-slimstat-reports.php:1721
2832
  msgid "c-cn"
2833
  msgstr "Chine"
2834
 
2835
  # Colombia
2836
- #: ../admin/view/wp-slimstat-reports.php:1721
2837
  msgid "c-co"
2838
  msgstr "Colombie"
2839
 
2840
  # Comoros
2841
- #: ../admin/view/wp-slimstat-reports.php:1721
2842
  msgid "c-km"
2843
  msgstr "Comores"
2844
 
2845
  # Congo
2846
- #: ../admin/view/wp-slimstat-reports.php:1721
2847
  msgid "c-cg"
2848
  msgstr "Congo"
2849
 
2850
  # The Democratic Republic of the Congo
2851
- #: ../admin/view/wp-slimstat-reports.php:1721
2852
  msgid "c-cd"
2853
  msgstr "République Démocratique du Congo"
2854
 
2855
  # Costa Rica
2856
- #: ../admin/view/wp-slimstat-reports.php:1721
2857
  msgid "c-cr"
2858
  msgstr "Costa Rica"
2859
 
2860
  # Côte d'Ivoire
2861
- #: ../admin/view/wp-slimstat-reports.php:1721
2862
  msgid "c-ci"
2863
  msgstr "Côte d'Ivoire"
2864
 
2865
  # Croatia
2866
- #: ../admin/view/wp-slimstat-reports.php:1721
2867
  msgid "c-hr"
2868
  msgstr "Croatie"
2869
 
2870
  # Cuba
2871
- #: ../admin/view/wp-slimstat-reports.php:1721
2872
  msgid "c-cu"
2873
  msgstr "Cuba"
2874
 
2875
  # Cyprus
2876
- #: ../admin/view/wp-slimstat-reports.php:1721
2877
  msgid "c-cy"
2878
  msgstr "Chypre"
2879
 
2880
  # Czech Republic
2881
- #: ../admin/view/wp-slimstat-reports.php:1721
2882
  msgid "c-cz"
2883
  msgstr "République tchèque"
2884
 
2885
  # Denmark
2886
- #: ../admin/view/wp-slimstat-reports.php:1721
2887
  msgid "c-dk"
2888
  msgstr "Danemark"
2889
 
2890
  # Djibouti
2891
- #: ../admin/view/wp-slimstat-reports.php:1721
2892
  msgid "c-dj"
2893
  msgstr "Djibouti"
2894
 
2895
  # Dominica
2896
- #: ../admin/view/wp-slimstat-reports.php:1721
2897
  msgid "c-dm"
2898
  msgstr "Dominique"
2899
 
2900
  # Dominican Republic
2901
- #: ../admin/view/wp-slimstat-reports.php:1721
2902
  msgid "c-do"
2903
  msgstr "République dominicaine"
2904
 
2905
  # Ecuador
2906
- #: ../admin/view/wp-slimstat-reports.php:1721
2907
  msgid "c-ec"
2908
  msgstr "Équateur"
2909
 
2910
  # Egypt
2911
- #: ../admin/view/wp-slimstat-reports.php:1721
2912
  msgid "c-eg"
2913
  msgstr "Égypte"
2914
 
2915
  # El Salvador
2916
- #: ../admin/view/wp-slimstat-reports.php:1721
2917
  msgid "c-sv"
2918
  msgstr "El Salvador"
2919
 
2920
  # Equatorial Guinea
2921
- #: ../admin/view/wp-slimstat-reports.php:1721
2922
  msgid "c-gq"
2923
  msgstr "Guinée équatoriale"
2924
 
2925
  # Eritrea
2926
- #: ../admin/view/wp-slimstat-reports.php:1721
2927
  msgid "c-er"
2928
  msgstr "Érythrée"
2929
 
2930
  # Estonia
2931
- #: ../admin/view/wp-slimstat-reports.php:1721
2932
  msgid "c-ee"
2933
  msgstr "Estonie"
2934
 
2935
  # Ethiopia
2936
- #: ../admin/view/wp-slimstat-reports.php:1721
2937
  msgid "c-et"
2938
  msgstr "Éthiopie"
2939
 
2940
  # Faroe Islands
2941
- #: ../admin/view/wp-slimstat-reports.php:1721
2942
  msgid "c-fo"
2943
  msgstr "Îles Féroé"
2944
 
2945
  # Falkland Islands (Malvinas)
2946
- #: ../admin/view/wp-slimstat-reports.php:1721
2947
  msgid "c-fk"
2948
  msgstr "Îles Falkland (Malvinas)"
2949
 
2950
  # Fiji
2951
- #: ../admin/view/wp-slimstat-reports.php:1721
2952
  msgid "c-fj"
2953
  msgstr "Fidji"
2954
 
2955
  # Finland
2956
- #: ../admin/view/wp-slimstat-reports.php:1721
2957
  msgid "c-fi"
2958
  msgstr "Finlande"
2959
 
2960
  # France
2961
- #: ../admin/view/wp-slimstat-reports.php:1721
2962
  msgid "c-fr"
2963
  msgstr "France"
2964
 
2965
  # French Guiana
2966
- #: ../admin/view/wp-slimstat-reports.php:1721
2967
  msgid "c-gf"
2968
  msgstr "Guyane française"
2969
 
2970
  # Gabon
2971
- #: ../admin/view/wp-slimstat-reports.php:1721
2972
  msgid "c-ga"
2973
  msgstr "Gabon"
2974
 
2975
  # Gambia
2976
- #: ../admin/view/wp-slimstat-reports.php:1721
2977
  msgid "c-gm"
2978
  msgstr "Gambie"
2979
 
2980
  # Georgia
2981
- #: ../admin/view/wp-slimstat-reports.php:1721
2982
  msgid "c-ge"
2983
  msgstr "Géorgie"
2984
 
2985
  # Germany
2986
- #: ../admin/view/wp-slimstat-reports.php:1721
2987
  msgid "c-de"
2988
  msgstr "Allemagne"
2989
 
2990
  # Ghana
2991
- #: ../admin/view/wp-slimstat-reports.php:1721
2992
  msgid "c-gh"
2993
  msgstr "Ghana"
2994
 
2995
  # Greece
2996
- #: ../admin/view/wp-slimstat-reports.php:1721
2997
  msgid "c-gr"
2998
  msgstr "Grèce"
2999
 
3000
  # Greenland
3001
- #: ../admin/view/wp-slimstat-reports.php:1721
3002
  msgid "c-gl"
3003
  msgstr "Groenland"
3004
 
3005
  # Grenada
3006
- #: ../admin/view/wp-slimstat-reports.php:1721
3007
  msgid "c-gd"
3008
  msgstr "Grenade"
3009
 
3010
  # Guadeloupe
3011
- #: ../admin/view/wp-slimstat-reports.php:1721
3012
  msgid "c-gp"
3013
  msgstr "Guadeloupe"
3014
 
3015
  # Guatemala
3016
- #: ../admin/view/wp-slimstat-reports.php:1721
3017
  msgid "c-gt"
3018
  msgstr "Guatemala"
3019
 
3020
  # Guinea
3021
- #: ../admin/view/wp-slimstat-reports.php:1721
3022
  msgid "c-gn"
3023
  msgstr "Guinée"
3024
 
3025
  # Guinea-Bissau
3026
- #: ../admin/view/wp-slimstat-reports.php:1721
3027
  msgid "c-gw"
3028
  msgstr "Guinée-Bissau"
3029
 
3030
  # Guyana
3031
- #: ../admin/view/wp-slimstat-reports.php:1721
3032
  msgid "c-gy"
3033
  msgstr "Guyana"
3034
 
3035
  # Haiti
3036
- #: ../admin/view/wp-slimstat-reports.php:1721
3037
  msgid "c-ht"
3038
  msgstr "Haïti"
3039
 
3040
  # Honduras
3041
- #: ../admin/view/wp-slimstat-reports.php:1721
3042
  msgid "c-hn"
3043
  msgstr "Honduras"
3044
 
3045
  # Hong Kong
3046
- #: ../admin/view/wp-slimstat-reports.php:1721
3047
  msgid "c-hk"
3048
  msgstr "Hong Kong"
3049
 
3050
  # Hungary
3051
- #: ../admin/view/wp-slimstat-reports.php:1721
3052
  msgid "c-hu"
3053
  msgstr "Hongrie"
3054
 
3055
  # Iceland
3056
- #: ../admin/view/wp-slimstat-reports.php:1721
3057
  msgid "c-is"
3058
  msgstr "Islande"
3059
 
3060
  # India
3061
- #: ../admin/view/wp-slimstat-reports.php:1721
3062
  msgid "c-in"
3063
  msgstr "Inde"
3064
 
3065
  # Indonesia
3066
- #: ../admin/view/wp-slimstat-reports.php:1721
3067
  msgid "c-id"
3068
  msgstr "Indonésie"
3069
 
3070
  # Islamic Republic of Iran
3071
- #: ../admin/view/wp-slimstat-reports.php:1721
3072
  msgid "c-ir"
3073
  msgstr "République islamique d'Iran"
3074
 
3075
  # Iraq
3076
- #: ../admin/view/wp-slimstat-reports.php:1721
3077
  msgid "c-iq"
3078
  msgstr "Irak"
3079
 
3080
  # Ireland
3081
- #: ../admin/view/wp-slimstat-reports.php:1721
3082
  msgid "c-ie"
3083
  msgstr "Irlande"
3084
 
3085
  # Israel
3086
- #: ../admin/view/wp-slimstat-reports.php:1721
3087
  msgid "c-il"
3088
  msgstr "Israël"
3089
 
3090
  # Italy
3091
- #: ../admin/view/wp-slimstat-reports.php:1721
3092
  msgid "c-it"
3093
  msgstr "Italie"
3094
 
3095
  # Jamaica
3096
- #: ../admin/view/wp-slimstat-reports.php:1721
3097
  msgid "c-jm"
3098
  msgstr "Jamaïque"
3099
 
3100
  # Japan
3101
- #: ../admin/view/wp-slimstat-reports.php:1721
3102
  msgid "c-jp"
3103
  msgstr "Japon"
3104
 
3105
  # Jordan
3106
- #: ../admin/view/wp-slimstat-reports.php:1721
3107
  msgid "c-jo"
3108
  msgstr "Jordanie"
3109
 
3110
  # Kazakhstan
3111
- #: ../admin/view/wp-slimstat-reports.php:1721
3112
  msgid "c-kz"
3113
  msgstr "Kazakhstan"
3114
 
3115
  # Kenya
3116
- #: ../admin/view/wp-slimstat-reports.php:1721
3117
  msgid "c-ke"
3118
  msgstr "Kenya"
3119
 
3120
  # Nauru
3121
- #: ../admin/view/wp-slimstat-reports.php:1721
3122
  msgid "c-nr"
3123
  msgstr "Nauru"
3124
 
3125
  # Democratic People's Republic of Korea
3126
- #: ../admin/view/wp-slimstat-reports.php:1721
3127
  msgid "c-kp"
3128
  msgstr "République populaire démocratique de Corée"
3129
 
3130
  # Republic of Korea
3131
- #: ../admin/view/wp-slimstat-reports.php:1721
3132
  msgid "c-kr"
3133
  msgstr "République de Corée"
3134
 
3135
- #: ../admin/view/wp-slimstat-reports.php:1721
3136
  msgid "c-kv"
3137
  msgstr "Kossovo"
3138
 
3139
  # Kuwait
3140
- #: ../admin/view/wp-slimstat-reports.php:1721
3141
  msgid "c-kw"
3142
  msgstr "Koweït"
3143
 
3144
  # Kyrgyzstan
3145
- #: ../admin/view/wp-slimstat-reports.php:1721
3146
  msgid "c-kg"
3147
  msgstr "Kirghizistan"
3148
 
3149
  # Lao People's Democratic Republic
3150
- #: ../admin/view/wp-slimstat-reports.php:1721
3151
  msgid "c-la"
3152
  msgstr "République démocratique populaire lao"
3153
 
3154
  # Latvia
3155
- #: ../admin/view/wp-slimstat-reports.php:1721
3156
  msgid "c-lv"
3157
  msgstr "Lettonie"
3158
 
3159
  # Lebanon
3160
- #: ../admin/view/wp-slimstat-reports.php:1721
3161
  msgid "c-lb"
3162
  msgstr "Liban"
3163
 
3164
  # Lesotho
3165
- #: ../admin/view/wp-slimstat-reports.php:1721
3166
  msgid "c-ls"
3167
  msgstr "Lesotho"
3168
 
3169
  # Liberia
3170
- #: ../admin/view/wp-slimstat-reports.php:1721
3171
  msgid "c-lr"
3172
  msgstr "Libéria"
3173
 
3174
  # Libyan Arab Jamahiriya
3175
- #: ../admin/view/wp-slimstat-reports.php:1721
3176
  msgid "c-ly"
3177
  msgstr "Jamahiriya arabe libyenne"
3178
 
3179
  # Liechtenstein
3180
- #: ../admin/view/wp-slimstat-reports.php:1721
3181
  msgid "c-li"
3182
  msgstr "Liechtenstein"
3183
 
3184
  # Lithuania
3185
- #: ../admin/view/wp-slimstat-reports.php:1721
3186
  msgid "c-lt"
3187
  msgstr "Lituanie"
3188
 
3189
  # Luxembourg
3190
- #: ../admin/view/wp-slimstat-reports.php:1721
3191
  msgid "c-lu"
3192
  msgstr "Luxembourg"
3193
 
3194
  # The Former Yugoslav Republic of Macedonia
3195
- #: ../admin/view/wp-slimstat-reports.php:1721
3196
  msgid "c-mk"
3197
  msgstr "Ex-république yougoslave de Macédoine"
3198
 
3199
  # Madagascar
3200
- #: ../admin/view/wp-slimstat-reports.php:1721
3201
  msgid "c-mg"
3202
  msgstr "Madagascar"
3203
 
3204
  # Malawi
3205
- #: ../admin/view/wp-slimstat-reports.php:1721
3206
  msgid "c-mw"
3207
  msgstr "Malawi"
3208
 
3209
  # Malaysia
3210
- #: ../admin/view/wp-slimstat-reports.php:1721
3211
  msgid "c-my"
3212
  msgstr "Malaisie"
3213
 
3214
  # Mali
3215
- #: ../admin/view/wp-slimstat-reports.php:1721
3216
  msgid "c-ml"
3217
  msgstr "Mali"
3218
 
3219
  # Malta
3220
- #: ../admin/view/wp-slimstat-reports.php:1721
3221
  msgid "c-mt"
3222
  msgstr "Malte"
3223
 
3224
  # Martinique
3225
- #: ../admin/view/wp-slimstat-reports.php:1721
3226
  msgid "c-mq"
3227
  msgstr "Martinique"
3228
 
3229
  # Mauritania
3230
- #: ../admin/view/wp-slimstat-reports.php:1721
3231
  msgid "c-mr"
3232
  msgstr "Mauritanie"
3233
 
3234
  # Mauritius
3235
- #: ../admin/view/wp-slimstat-reports.php:1721
3236
  msgid "c-mu"
3237
  msgstr "Maurice"
3238
 
3239
  # Mexico
3240
- #: ../admin/view/wp-slimstat-reports.php:1721
3241
  msgid "c-mx"
3242
  msgstr "Mexique"
3243
 
3244
  # Moldova
3245
- #: ../admin/view/wp-slimstat-reports.php:1721
3246
  msgid "c-md"
3247
  msgstr "République de Moldova"
3248
 
3249
  # Mongolia
3250
- #: ../admin/view/wp-slimstat-reports.php:1721
3251
  msgid "c-mn"
3252
  msgstr "Mongolie"
3253
 
3254
  # Montenegro
3255
- #: ../admin/view/wp-slimstat-reports.php:1721
3256
  msgid "c-me"
3257
  msgstr "Monténégro"
3258
 
3259
  # Montserrat
3260
- #: ../admin/view/wp-slimstat-reports.php:1721
3261
  msgid "c-ms"
3262
  msgstr "Montserrat"
3263
 
3264
  # Morocco
3265
- #: ../admin/view/wp-slimstat-reports.php:1721
3266
  msgid "c-ma"
3267
  msgstr "Maroc"
3268
 
3269
  # Mozambique
3270
- #: ../admin/view/wp-slimstat-reports.php:1721
3271
  msgid "c-mz"
3272
  msgstr "Mozambique"
3273
 
3274
  # Myanmar
3275
- #: ../admin/view/wp-slimstat-reports.php:1721
3276
  msgid "c-mm"
3277
  msgstr "Myanmar"
3278
 
3279
  # Namibia
3280
- #: ../admin/view/wp-slimstat-reports.php:1721
3281
  msgid "c-na"
3282
  msgstr "Namibie"
3283
 
3284
  # Nepal
3285
- #: ../admin/view/wp-slimstat-reports.php:1721
3286
  msgid "c-np"
3287
  msgstr "Népal"
3288
 
3289
  # Netherlands
3290
- #: ../admin/view/wp-slimstat-reports.php:1721
3291
  msgid "c-nl"
3292
  msgstr "Pays-bas"
3293
 
3294
  # New Caledonia
3295
- #: ../admin/view/wp-slimstat-reports.php:1721
3296
  msgid "c-nc"
3297
  msgstr "Nouvelle-Calédonie"
3298
 
3299
  # New Zealand
3300
- #: ../admin/view/wp-slimstat-reports.php:1721
3301
  msgid "c-nz"
3302
  msgstr "Nouvelle-Zélande"
3303
 
3304
  # Nicaragua
3305
- #: ../admin/view/wp-slimstat-reports.php:1721
3306
  msgid "c-ni"
3307
  msgstr "Nicaragua"
3308
 
3309
  # Niger
3310
- #: ../admin/view/wp-slimstat-reports.php:1721
3311
  msgid "c-ne"
3312
  msgstr "Niger"
3313
 
3314
  # Nigeria
3315
- #: ../admin/view/wp-slimstat-reports.php:1721
3316
  msgid "c-ng"
3317
  msgstr "Nigéria"
3318
 
3319
  # Norway
3320
- #: ../admin/view/wp-slimstat-reports.php:1721
3321
  msgid "c-no"
3322
  msgstr "Norvège"
3323
 
3324
  # Oman
3325
- #: ../admin/view/wp-slimstat-reports.php:1721
3326
  msgid "c-om"
3327
  msgstr "Oman"
3328
 
3329
  # Pakistan
3330
- #: ../admin/view/wp-slimstat-reports.php:1721
3331
  msgid "c-pk"
3332
  msgstr "Pakistan"
3333
 
3334
  # Palau
3335
- #: ../admin/view/wp-slimstat-reports.php:1721
3336
  msgid "c-pw"
3337
  msgstr "Palaos"
3338
 
3339
  # Occupied Palestinian Territory
3340
- #: ../admin/view/wp-slimstat-reports.php:1721
3341
  msgid "c-ps"
3342
  msgstr "Territoire palestinien occupé"
3343
 
3344
  # Panama
3345
- #: ../admin/view/wp-slimstat-reports.php:1721
3346
  msgid "c-pa"
3347
  msgstr "Panama"
3348
 
3349
  # Papua New Guinea
3350
- #: ../admin/view/wp-slimstat-reports.php:1721
3351
  msgid "c-pg"
3352
  msgstr "Papouasie-Nouvelle-Guinée"
3353
 
3354
  # Paraguay
3355
- #: ../admin/view/wp-slimstat-reports.php:1721
3356
  msgid "c-py"
3357
  msgstr "Paraguay"
3358
 
3359
  # Peru
3360
- #: ../admin/view/wp-slimstat-reports.php:1721
3361
  msgid "c-pe"
3362
  msgstr "Pérou"
3363
 
3364
  # Philippines
3365
- #: ../admin/view/wp-slimstat-reports.php:1721
3366
  msgid "c-ph"
3367
  msgstr "Philippines"
3368
 
3369
  # Poland
3370
- #: ../admin/view/wp-slimstat-reports.php:1721
3371
  msgid "c-pl"
3372
  msgstr "Pologne"
3373
 
3374
  # Portugal
3375
- #: ../admin/view/wp-slimstat-reports.php:1721
3376
  msgid "c-pt"
3377
  msgstr "Portugal"
3378
 
3379
  # Puerto Rico
3380
- #: ../admin/view/wp-slimstat-reports.php:1721
3381
  msgid "c-pr"
3382
  msgstr "Porto Rico"
3383
 
3384
  # Qatar
3385
- #: ../admin/view/wp-slimstat-reports.php:1721
3386
  msgid "c-qa"
3387
  msgstr "Qatar"
3388
 
3389
  # Réunion
3390
- #: ../admin/view/wp-slimstat-reports.php:1721
3391
  msgid "c-re"
3392
  msgstr "Réunion"
3393
 
3394
  # Romania
3395
- #: ../admin/view/wp-slimstat-reports.php:1721
3396
  msgid "c-ro"
3397
  msgstr "Roumanie"
3398
 
3399
  # Russian Federation
3400
- #: ../admin/view/wp-slimstat-reports.php:1721
3401
  msgid "c-ru"
3402
  msgstr "Fédération de Russie"
3403
 
3404
  # Rwanda
3405
- #: ../admin/view/wp-slimstat-reports.php:1721
3406
  msgid "c-rw"
3407
  msgstr "Rwanda"
3408
 
3409
  # Saint Kitts and Nevis
3410
- #: ../admin/view/wp-slimstat-reports.php:1721
3411
  msgid "c-kn"
3412
  msgstr "Saint-Kitts-et-Nevis"
3413
 
3414
  # Saint Lucia
3415
- #: ../admin/view/wp-slimstat-reports.php:1721
3416
  msgid "c-lc"
3417
  msgstr "Sainte-Lucie"
3418
 
3419
  # Saint Martin
3420
- #: ../admin/view/wp-slimstat-reports.php:1721
3421
  msgid "c-mf"
3422
  msgstr "Saint-Martin"
3423
 
3424
  # Saint Vincent and the Grenadines
3425
- #: ../admin/view/wp-slimstat-reports.php:1721
3426
  msgid "c-vc"
3427
  msgstr "Saint-Vincent-et-les Grenadines"
3428
 
3429
  # Samoa
3430
- #: ../admin/view/wp-slimstat-reports.php:1721
3431
  msgid "c-ws"
3432
  msgstr "Samoa"
3433
 
3434
  # Sao Tome and Principe
3435
- #: ../admin/view/wp-slimstat-reports.php:1721
3436
  msgid "c-st"
3437
  msgstr "Sao Tomé-et-Principe"
3438
 
3439
  # Saudi Arabia
3440
- #: ../admin/view/wp-slimstat-reports.php:1721
3441
  msgid "c-sa"
3442
  msgstr "Arabie saoudite"
3443
 
3444
  # Senegal
3445
- #: ../admin/view/wp-slimstat-reports.php:1721
3446
  msgid "c-sn"
3447
  msgstr "Sénégal"
3448
 
3449
  # Serbia
3450
- #: ../admin/view/wp-slimstat-reports.php:1721
3451
  msgid "c-rs"
3452
  msgstr "Serbie"
3453
 
3454
  # Sierra Leone
3455
- #: ../admin/view/wp-slimstat-reports.php:1721
3456
  msgid "c-sl"
3457
  msgstr "Sierra Leone"
3458
 
3459
  # Singapore
3460
- #: ../admin/view/wp-slimstat-reports.php:1721
3461
  msgid "c-sg"
3462
  msgstr "Singapour"
3463
 
3464
  # Slovakia
3465
- #: ../admin/view/wp-slimstat-reports.php:1721
3466
  msgid "c-sk"
3467
  msgstr "Slovaquie"
3468
 
3469
  # Slovenia
3470
- #: ../admin/view/wp-slimstat-reports.php:1721
3471
  msgid "c-si"
3472
  msgstr "Slovénie"
3473
 
3474
  # Solomon Islands
3475
- #: ../admin/view/wp-slimstat-reports.php:1721
3476
  msgid "c-sb"
3477
  msgstr "Îles Salomon"
3478
 
3479
  # Somalia
3480
- #: ../admin/view/wp-slimstat-reports.php:1721
3481
  msgid "c-so"
3482
  msgstr "Somalie"
3483
 
3484
  # South Africa
3485
- #: ../admin/view/wp-slimstat-reports.php:1721
3486
  msgid "c-za"
3487
  msgstr "Afrique du sud"
3488
 
3489
  # South Georgia and the South Sandwich Islands
3490
- #: ../admin/view/wp-slimstat-reports.php:1721
3491
  msgid "c-gs"
3492
  msgstr "Géorgie du sud et les Îles Sandwich du sud"
3493
 
3494
  # Spain
3495
- #: ../admin/view/wp-slimstat-reports.php:1721
3496
  msgid "c-es"
3497
  msgstr "Espagne"
3498
 
3499
  # Sri Lanka
3500
- #: ../admin/view/wp-slimstat-reports.php:1721
3501
  msgid "c-lk"
3502
  msgstr "Sri Lanka"
3503
 
3504
  # Seychelles
3505
- #: ../admin/view/wp-slimstat-reports.php:1721
3506
  msgid "c-sc"
3507
  msgstr "Seychelles"
3508
 
3509
  # Sudan
3510
- #: ../admin/view/wp-slimstat-reports.php:1721
3511
  msgid "c-sd"
3512
  msgstr "Soudan"
3513
 
3514
- #: ../admin/view/wp-slimstat-reports.php:1721
3515
  msgid "c-ss"
3516
  msgstr "Soudan du Sud"
3517
 
3518
  # Suriname
3519
- #: ../admin/view/wp-slimstat-reports.php:1721
3520
  msgid "c-sr"
3521
  msgstr "Suriname"
3522
 
3523
  # Svalbard and Jan Mayen
3524
- #: ../admin/view/wp-slimstat-reports.php:1721
3525
  msgid "c-sj"
3526
  msgstr "Svalbard et île Jan Mayen"
3527
 
3528
  # Swaziland
3529
- #: ../admin/view/wp-slimstat-reports.php:1721
3530
  msgid "c-sz"
3531
  msgstr "Swaziland"
3532
 
3533
  # Sweden
3534
- #: ../admin/view/wp-slimstat-reports.php:1721
3535
  msgid "c-se"
3536
  msgstr "Suède"
3537
 
3538
  # Switzerland
3539
- #: ../admin/view/wp-slimstat-reports.php:1721
3540
  msgid "c-ch"
3541
  msgstr "Suisse"
3542
 
3543
  # Syrian Arab Republic
3544
- #: ../admin/view/wp-slimstat-reports.php:1721
3545
  msgid "c-sy"
3546
  msgstr "République arabe syrienne"
3547
 
3548
  # Taiwan, Province of China
3549
- #: ../admin/view/wp-slimstat-reports.php:1721
3550
  msgid "c-tw"
3551
  msgstr "Taïwan, province de Chine"
3552
 
3553
  # Tajikistan
3554
- #: ../admin/view/wp-slimstat-reports.php:1721
3555
  msgid "c-tj"
3556
  msgstr "Tadjikistan"
3557
 
3558
  # United Republic of Tanzania
3559
- #: ../admin/view/wp-slimstat-reports.php:1721
3560
  msgid "c-tz"
3561
  msgstr "République-unie de Tanzanie"
3562
 
3563
  # Thailand
3564
- #: ../admin/view/wp-slimstat-reports.php:1721
3565
  msgid "c-th"
3566
  msgstr "Thaïlande"
3567
 
3568
  # Timor-Leste
3569
- #: ../admin/view/wp-slimstat-reports.php:1721
3570
  msgid "c-tl"
3571
  msgstr "Timor-Leste"
3572
 
3573
  # Togo
3574
- #: ../admin/view/wp-slimstat-reports.php:1721
3575
  msgid "c-tg"
3576
  msgstr "Togo"
3577
 
3578
  # Tonga
3579
- #: ../admin/view/wp-slimstat-reports.php:1721
3580
  msgid "c-to"
3581
  msgstr "Tonga"
3582
 
3583
  # Trinidad and Tobago
3584
- #: ../admin/view/wp-slimstat-reports.php:1721
3585
  msgid "c-tt"
3586
  msgstr "Trinité-et-Tobago "
3587
 
3588
  # Tunisia
3589
- #: ../admin/view/wp-slimstat-reports.php:1721
3590
  msgid "c-tn"
3591
  msgstr "Tunisie"
3592
 
3593
  # Turkey
3594
- #: ../admin/view/wp-slimstat-reports.php:1721
3595
  msgid "c-tr"
3596
  msgstr "Turquie "
3597
 
3598
  # Turkmenistan
3599
- #: ../admin/view/wp-slimstat-reports.php:1721
3600
  msgid "c-tm"
3601
  msgstr "Turkménistan"
3602
 
3603
  # Turks and Caicos Islands
3604
- #: ../admin/view/wp-slimstat-reports.php:1721
3605
  msgid "c-tc"
3606
  msgstr "Îles Turks et Caïques"
3607
 
3608
  # Uganda
3609
- #: ../admin/view/wp-slimstat-reports.php:1721
3610
  msgid "c-ug"
3611
  msgstr "Ouganda"
3612
 
3613
  # Ukraine
3614
- #: ../admin/view/wp-slimstat-reports.php:1721
3615
  msgid "c-ua"
3616
  msgstr "Ukraine"
3617
 
3618
  # United Arab Emirates
3619
- #: ../admin/view/wp-slimstat-reports.php:1721
3620
  msgid "c-ae"
3621
  msgstr "Émirats arabes unis"
3622
 
3623
  # United Kingdom
3624
- #: ../admin/view/wp-slimstat-reports.php:1721
3625
  msgid "c-gb"
3626
  msgstr "Royaume-Uni"
3627
 
3628
  # United States
3629
- #: ../admin/view/wp-slimstat-reports.php:1721
3630
  msgid "c-us"
3631
  msgstr "États-Unis"
3632
 
3633
  # Uruguay
3634
- #: ../admin/view/wp-slimstat-reports.php:1721
3635
  msgid "c-uy"
3636
  msgstr "Uruguay"
3637
 
3638
  # Uzbekistan
3639
- #: ../admin/view/wp-slimstat-reports.php:1721
3640
  msgid "c-uz"
3641
  msgstr "Ouzbékistan "
3642
 
3643
  # Vanuatu
3644
- #: ../admin/view/wp-slimstat-reports.php:1721
3645
  msgid "c-vu"
3646
  msgstr "Vanuatu"
3647
 
3648
  # Venezuela
3649
- #: ../admin/view/wp-slimstat-reports.php:1721
3650
  msgid "c-ve"
3651
  msgstr "République bolivarienne du Venezuela"
3652
 
3653
  # Viet Nam
3654
- #: ../admin/view/wp-slimstat-reports.php:1721
3655
  msgid "c-vn"
3656
  msgstr "Viet Nam"
3657
 
3658
  # British Virgin Islands
3659
- #: ../admin/view/wp-slimstat-reports.php:1721
3660
  msgid "c-vg"
3661
  msgstr "Îles vierges britanniques"
3662
 
3663
  # U.S. Virgin Islands
3664
- #: ../admin/view/wp-slimstat-reports.php:1721
3665
  msgid "c-vi"
3666
  msgstr "Îles vierges des États-Unis"
3667
 
3668
  # Western Sahara
3669
- #: ../admin/view/wp-slimstat-reports.php:1721
3670
  msgid "c-eh"
3671
  msgstr "Sahara occidental"
3672
 
3673
  # Yemen
3674
- #: ../admin/view/wp-slimstat-reports.php:1721
3675
  msgid "c-ye"
3676
  msgstr "Yémen"
3677
 
3678
  # Zambia
3679
- #: ../admin/view/wp-slimstat-reports.php:1721
3680
  msgid "c-zm"
3681
  msgstr "Zambie"
3682
 
3683
  # Zimbabwe
3684
- #: ../admin/view/wp-slimstat-reports.php:1721
3685
  msgid "c-zw"
3686
  msgstr "Zimbabwe"
3687
 
3688
  # Guernsey
3689
- #: ../admin/view/wp-slimstat-reports.php:1721
3690
  msgid "c-gg"
3691
  msgstr "Guernesey"
3692
 
3693
  # Jersey
3694
- #: ../admin/view/wp-slimstat-reports.php:1721
3695
  msgid "c-je"
3696
  msgstr "Jersey"
3697
 
3698
  # Isle of Man
3699
- #: ../admin/view/wp-slimstat-reports.php:1721
3700
  msgid "c-im"
3701
  msgstr "Île de Man"
3702
 
3703
  # Maldives
3704
- #: ../admin/view/wp-slimstat-reports.php:1721
3705
  msgid "c-mv"
3706
  msgstr "Maldives"
3707
 
3708
  # European Union
3709
- #: ../admin/view/wp-slimstat-reports.php:1722
3710
  msgid "c-eu"
3711
  msgstr "Union européenne"
3712
 
3713
- #: ../admin/view/wp-slimstat-reports.php:1804
3714
  msgid "src"
3715
  msgstr "src"
3716
 
3717
- #: ../admin/view/wp-slimstat-reports.php:1807
3718
  msgid "serp"
3719
  msgstr "serp"
3720
 
3721
- #: ../admin/view/wp-slimstat-reports.php:1814
3722
  msgid "Go to the referring page"
3723
  msgstr "Aller sur la page référente"
3724
 
3725
- #: ../admin/view/wp-slimstat-reports.php:1836
3726
  msgid "Remove filter for"
3727
  msgstr "Enlever le filtre pour"
3728
 
3729
- #: ../admin/view/wp-slimstat-reports.php:1840
3730
  msgid "Save"
3731
  msgstr ""
3732
 
3733
- #: ../admin/view/wp-slimstat-reports.php:1843
3734
  msgid "Reset All"
3735
  msgstr "Réinitialiser l'ensemble"
3736
 
3737
- #: ../admin/view/wp-slimstat-reports.php:1847
3738
  msgid "Current filters:"
3739
  msgstr "Filtres actifs :"
3740
 
3741
- #: ../admin/wp-slimstat-admin.php:648 ../admin/wp-slimstat-admin.php:659
3742
- #: ../admin/wp-slimstat-admin.php:661
3743
  msgid "SlimStat"
3744
  msgstr "SlimStat"
3745
 
3746
- #: ../admin/wp-slimstat-admin.php:655
3747
- msgid "Custom Reports"
3748
- msgstr "Rapports personnalisés"
 
 
3749
 
3750
- #: ../admin/wp-slimstat-admin.php:744
3751
  #, fuzzy
3752
  msgid "Pageviews in the last "
3753
  msgstr "Pages durant les 365 derniers jours"
3754
 
3755
- #: ../admin/wp-slimstat-admin.php:747
3756
  #, fuzzy
3757
  msgid "Unique IPs in the last "
3758
  msgstr "Intervalle unique"
3759
 
3760
- #: ../admin/wp-slimstat-admin.php:803
3761
  msgid "Show on screen"
3762
  msgstr "Montrer à l'écran"
3763
 
3764
- #: ../admin/wp-slimstat-admin.php:888
3765
  msgid "Already saved"
3766
  msgstr ""
3767
 
3768
- #: ../admin/wp-slimstat-admin.php:896
3769
  msgid "Saved"
3770
  msgstr ""
3771
 
3772
- #: ../admin/wp-slimstat-admin.php:916
3773
  #, fuzzy
3774
  msgid "Delete this filter"
3775
  msgstr "Filtrer les pages vues pour que"
3776
 
3777
- #: ../admin/wp-slimstat-admin.php:960
3778
  msgid "There was an error updating the following options:"
3779
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
3780
 
3781
- #: ../admin/wp-slimstat-admin.php:963
3782
  msgid "Your changes have been saved."
3783
  msgstr "Vos réglages ont bien été mis à jour"
3784
 
3785
- #: ../admin/wp-slimstat-admin.php:986
3786
  msgid "Save Changes"
3787
  msgstr "Enregistrer les modifications"
3788
 
3789
- #: ../admin/wp-slimstat-admin.php:1002
3790
  msgid "Definitions"
3791
  msgstr "Définitions"
3792
 
3793
- #: ../admin/wp-slimstat-admin.php:1005
3794
  msgid "Pageview"
3795
  msgstr "Page vue"
3796
 
3797
- #: ../admin/wp-slimstat-admin.php:1005
3798
  msgid ""
3799
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3800
  "with a \"hit\", which refers to a request for any file from a web server. "
@@ -3805,11 +3897,11 @@ msgstr ""
3805
  "d'un serveur Web. WP SlimStat enregistre une page vue chaque fois que le "
3806
  "code de traçage est exécuté"
3807
 
3808
- #: ../admin/wp-slimstat-admin.php:1006
3809
  msgid "(Human) Visit"
3810
  msgstr "Visiteurs humains"
3811
 
3812
- #: ../admin/wp-slimstat-admin.php:1006
3813
  msgid ""
3814
  "A period of interaction between a visitor's browser and your website, ending "
3815
  "when the browser is closed or when the user has been inactive on that site "
@@ -3819,7 +3911,7 @@ msgstr ""
3819
  "Web se terminant lorsque le navigateur est fermé ou lorsque l'utilisateur "
3820
  "est inactif sur ce site depuis 30 minutes"
3821
 
3822
- #: ../admin/wp-slimstat-admin.php:1007
3823
  msgid ""
3824
  "Any user who has left a comment on your blog, and is thus identified by "
3825
  "Wordpress as a returning visitor"
@@ -3827,11 +3919,11 @@ msgstr ""
3827
  "Un utilisateur qui a laissé un commentaire sur votre blog et est ainsi "
3828
  "identifié par Wordpress comme un visiteur qui a déjà visité votre site"
3829
 
3830
- #: ../admin/wp-slimstat-admin.php:1008
3831
  msgid "Unique IP"
3832
  msgstr "IP uniques"
3833
 
3834
- #: ../admin/wp-slimstat-admin.php:1008
3835
  msgid ""
3836
  "Used to differentiate between multiple requests to download a file from one "
3837
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -3844,7 +3936,7 @@ msgstr ""
3844
  "Internet de la provenance d'une consultation, elle est utile, mais pas "
3845
  "parfaite"
3846
 
3847
- #: ../admin/wp-slimstat-admin.php:1009
3848
  msgid ""
3849
  "the originating IP address of a client connecting to a web server through an "
3850
  "HTTP proxy or load balancer"
@@ -3852,11 +3944,11 @@ msgstr ""
3852
  "l'adresse IP d'origine d'un client qui se connecte à un serveur Web via un "
3853
  "proxy HTTP ou équilibreur de charge"
3854
 
3855
- #: ../admin/wp-slimstat-admin.php:1010
3856
  msgid "Direct Traffic"
3857
  msgstr "Trafic direct"
3858
 
3859
- #: ../admin/wp-slimstat-admin.php:1010
3860
  msgid ""
3861
  "All those people showing up to your Web site by typing in the URL of your "
3862
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -3866,11 +3958,11 @@ msgstr ""
3866
  "votre site Web ou qui viennent à partir d'un signet, certaines personnes "
3867
  "appellent également cela \"trafic par défaut \" ou \"trafic ambiant \""
3868
 
3869
- #: ../admin/wp-slimstat-admin.php:1011
3870
  msgid "Search Engine"
3871
  msgstr "Moteur de recherche"
3872
 
3873
- #: ../admin/wp-slimstat-admin.php:1011
3874
  msgid ""
3875
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3876
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -3878,17 +3970,17 @@ msgstr ""
3878
  "Google, Yahoo, MSN, Ask, et autres; cet item comprendra à la fois votre "
3879
  "trafic rémunéré (PPC/SEM) ainsi que votre trafic organique, prenez en note"
3880
 
3881
- #: ../admin/wp-slimstat-admin.php:1012 ../admin/wp-slimstat-admin.php:1028
3882
  msgid "Keywords used by your visitors to find your website on a search engine"
3883
  msgstr ""
3884
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
3885
  "de recherche"
3886
 
3887
- #: ../admin/wp-slimstat-admin.php:1013
3888
  msgid "SERP"
3889
  msgstr "SERP"
3890
 
3891
- #: ../admin/wp-slimstat-admin.php:1013
3892
  msgid ""
3893
  "Short for search engine results page, the Web page that a search engine "
3894
  "returns with the results of its search. The value shown represents your rank "
@@ -3898,7 +3990,7 @@ msgstr ""
3898
  "recherche renvoie les résultats de sa recherche. La valeur indiquée "
3899
  "correspond à votre classement (ou la position) dans la liste des résultats"
3900
 
3901
- #: ../admin/wp-slimstat-admin.php:1014
3902
  msgid ""
3903
  "Any program used for accessing a website; this includes browsers, robots, "
3904
  "spiders and any other program that was used to retrieve information from the "
@@ -3908,7 +4000,7 @@ msgstr ""
3908
  "navigateurs, robots, spiders et tout autre programme qui a été utilisé pour "
3909
  "extraire des informations du site"
3910
 
3911
- #: ../admin/wp-slimstat-admin.php:1015
3912
  msgid ""
3913
  "A link from one domain to another is said to be outbound from its source "
3914
  "anchor and inbound to its target. This report lists all the links to other "
@@ -3918,27 +4010,27 @@ msgstr ""
3918
  "sa cible. Ce rapport répertorie tous les liens vers d'autres sites suivis "
3919
  "par vos visiteurs."
3920
 
3921
- #: ../admin/wp-slimstat-admin.php:1022
3922
  msgid "Basic Filters"
3923
  msgstr "Filtres de base"
3924
 
3925
- #: ../admin/wp-slimstat-admin.php:1025
3926
  msgid "User agent (Firefox, Chrome, ...)"
3927
  msgstr "User agent (Firefox, Chrome, ...)"
3928
 
3929
- #: ../admin/wp-slimstat-admin.php:1026
3930
  msgid "2-letter code (us, ru, de, it, ...)"
3931
  msgstr "code pays à 2 lettres (us, ru, de, it, ...)"
3932
 
3933
- #: ../admin/wp-slimstat-admin.php:1027
3934
  msgid "IP"
3935
  msgstr "IP"
3936
 
3937
- #: ../admin/wp-slimstat-admin.php:1027
3938
  msgid "Visitor's public IP address"
3939
  msgstr " Adresse IP publique du visiteur"
3940
 
3941
- #: ../admin/wp-slimstat-admin.php:1029
3942
  msgid ""
3943
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
3944
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -3948,7 +4040,7 @@ msgstr ""
3948
  "microsoft.com/en-us/library/ee825488(v=cs.20).aspx\">language culture page</"
3949
  "a> (première colonne) pour plus d'informations"
3950
 
3951
- #: ../admin/wp-slimstat-admin.php:1030
3952
  msgid ""
3953
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
3954
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -3958,15 +4050,15 @@ msgstr ""
3958
  "référez-vous à <a target=\"_blank\" href=\"http://php.net/manual/en/function."
3959
  "get-browser.php\">cette page de manuel </a> pour plus d'informations"
3960
 
3961
- #: ../admin/wp-slimstat-admin.php:1031
3962
  msgid "URL accessed on your site"
3963
  msgstr "URL accessible sur votre site"
3964
 
3965
- #: ../admin/wp-slimstat-admin.php:1032
3966
  msgid "Complete address of the referrer page"
3967
  msgstr "Adresse complète de la page référente"
3968
 
3969
- #: ../admin/wp-slimstat-admin.php:1033
3970
  msgid ""
3971
  "Visitors' names according to the cookie set by Wordpress after they leave a "
3972
  "comment"
@@ -3974,15 +4066,15 @@ msgstr ""
3974
  "Les noms des visiteurs selon le cookie enregistré par Wordpress, après avoir "
3975
  "laissé un commentaire"
3976
 
3977
- #: ../admin/wp-slimstat-admin.php:1041
3978
  msgid "Advanced Filters"
3979
  msgstr "Filtres Avancés"
3980
 
3981
- #: ../admin/wp-slimstat-admin.php:1044
3982
  msgid "user agent version (9.0, 11, ...)"
3983
  msgstr "user agent version (9.0, 11, ...)"
3984
 
3985
- #: ../admin/wp-slimstat-admin.php:1045
3986
  msgid ""
3987
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
3988
  "all others"
@@ -3990,11 +4082,11 @@ msgstr ""
3990
  "1 = moteur de recherche, 2 = appareil mobile, 3 = lecteur de flux "
3991
  "(syndication) , 0 = tous les autres"
3992
 
3993
- #: ../admin/wp-slimstat-admin.php:1046
3994
  msgid "Pageview Attributes"
3995
  msgstr "l'attribut des Pages Vues"
3996
 
3997
- #: ../admin/wp-slimstat-admin.php:1046
3998
  msgid ""
3999
  "this field is set to <em>[pre]</em> if the resource has been accessed "
4000
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -4005,19 +4097,19 @@ msgstr ""
4005
  "Link_prefetching_FAQ\"> préchargement des liens</a> ou d'autres techniques "
4006
  "similaires"
4007
 
4008
- #: ../admin/wp-slimstat-admin.php:1047
4009
  msgid "author associated to that post/page when the resource was accessed"
4010
  msgstr "auteur associé à cet article/page lorsque la ressource est accessible"
4011
 
4012
- #: ../admin/wp-slimstat-admin.php:1048
4013
  msgid "ID of the category/term associated to the resource, when available"
4014
  msgstr "ID de la catégorie/terme associée à la ressource, lorsqu'il y en a"
4015
 
4016
- #: ../admin/wp-slimstat-admin.php:1049
4017
  msgid "visitor's originating IP address, if available"
4018
  msgstr "adresse IP d'origine du visiteur, s'il est disponible"
4019
 
4020
- #: ../admin/wp-slimstat-admin.php:1050
4021
  msgid ""
4022
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4023
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -4031,15 +4123,15 @@ msgstr ""
4031
  "\" href=\"http://codex.wordpress.org/Conditional_Tags\">Conditional Tags</a> "
4032
  "pour plus d'informations"
4033
 
4034
- #: ../admin/wp-slimstat-admin.php:1051
4035
  msgid "Screen Resolution"
4036
  msgstr "la résolution de l'écran"
4037
 
4038
- #: ../admin/wp-slimstat-admin.php:1051
4039
  msgid "viewport width and height (1024x768, 800x600, ...)"
4040
  msgstr "résolution de l'écran (1024x768, 800x600, ...)"
4041
 
4042
- #: ../admin/wp-slimstat-admin.php:1052
4043
  msgid ""
4044
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4045
  "visitors"
@@ -4047,11 +4139,11 @@ msgstr ""
4047
  "généralement utilisé en conjonction avec <em>n'est pas vide </em>, identifie "
4048
  "les visiteurs humains"
4049
 
4050
- #: ../admin/wp-slimstat-admin.php:1053
4051
  msgid "Date Filters"
4052
  msgstr "Filtres de dates"
4053
 
4054
- #: ../admin/wp-slimstat-admin.php:1053
4055
  msgid ""
4056
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4057
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -4062,11 +4154,11 @@ msgstr ""
4062
  "ex : jour = 1, mois = 1, année = vide, intervalle = -1 fixera un filtre "
4063
  "année à date)"
4064
 
4065
- #: ../admin/wp-slimstat-admin.php:1054
4066
  msgid "SERP Position"
4067
  msgstr "Position SERP "
4068
 
4069
- #: ../admin/wp-slimstat-admin.php:1054
4070
  msgid ""
4071
  "set the filter to Referer contains cd=N&, where N is the position you are "
4072
  "looking for"
@@ -4074,15 +4166,15 @@ msgstr ""
4074
  "Réglez le filtre sur Référent contient cd=N&, où N est la position que vous "
4075
  "recherchez"
4076
 
4077
- #: ../admin/wp-slimstat-admin.php:1081
4078
  msgid "Yes"
4079
  msgstr "Oui"
4080
 
4081
- #: ../admin/wp-slimstat-admin.php:1082
4082
  msgid "No"
4083
  msgstr "Non"
4084
 
4085
- #: ../admin/wp-slimstat-admin.php:1083
4086
  msgid "Site Specific"
4087
  msgstr "Spécificités du site"
4088
 
@@ -5607,98 +5699,150 @@ msgstr "Inconnue"
5607
  msgid "c-xy"
5608
  msgstr "Local"
5609
 
5610
- #: ../wp-slimstat.php:219 ../wp-slimstat.php:497
5611
- msgid "Pageview filtered by third-party code"
5612
  msgstr ""
5613
 
5614
- #: ../wp-slimstat.php:236
5615
- #, fuzzy
5616
- msgid "Malformed URL"
5617
  msgstr "Ignorer les utilisateurs"
5618
 
5619
- #: ../wp-slimstat.php:255
5620
- msgid "Referrer is blacklisted"
 
5621
  msgstr ""
5622
 
5623
- #: ../wp-slimstat.php:333
5624
- #, fuzzy
5625
- msgid "Permalink is blacklisted"
5626
  msgstr "le permalien"
5627
 
5628
- #: ../wp-slimstat.php:344
5629
- msgid "Empty or not supported IP address format (IPv6)"
5630
- msgstr ""
5631
-
5632
- #: ../wp-slimstat.php:353
5633
- msgid "Logged in user not tracked"
5634
- msgstr ""
5635
-
5636
- #: ../wp-slimstat.php:361
5637
- msgid "User with given capability not tracked"
5638
  msgstr ""
5639
 
5640
- #: ../wp-slimstat.php:368
5641
  #, php-format
5642
- msgid "User %s is blacklisted"
5643
  msgstr ""
5644
 
5645
- #: ../wp-slimstat.php:388
5646
  #, php-format
5647
- msgid "Spammer %s not tracked"
5648
  msgstr ""
5649
 
5650
- #: ../wp-slimstat.php:417
 
 
 
 
 
 
 
 
 
 
5651
  #, php-format
5652
- msgid "IP address %s is blacklisted"
5653
  msgstr ""
5654
 
5655
- #: ../wp-slimstat.php:446
5656
  #, php-format
5657
- msgid "Country %s is blacklisted"
5658
  msgstr ""
5659
 
5660
- #: ../wp-slimstat.php:455
5661
  #, fuzzy
5662
- msgid "Prefetch requests are ignored"
5663
  msgstr "Ignorer les requêtes anticipées"
5664
 
5665
- #: ../wp-slimstat.php:471
5666
  #, fuzzy
5667
- msgid "Bot not tracked"
5668
  msgstr "Robot ou Crawler"
5669
 
5670
- #: ../wp-slimstat.php:480
5671
  #, php-format
5672
- msgid "Browser %s is blacklisted"
 
 
 
 
5673
  msgstr ""
5674
 
5675
- #: ../wp-slimstat.php:1206
5676
  msgid "Invalid payload string. Try clearing your WordPress cache."
5677
  msgstr ""
5678
 
5679
- #: ../wp-slimstat.php:1216
5680
  msgid "Invalid data signature. Try clearing your WordPress cache."
5681
  msgstr ""
5682
 
5683
- #: ../wp-slimstat.php:1286
5684
  #, fuzzy
5685
  msgid "There was an error downloading the MaxMind Geolite DB:"
5686
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5687
 
5688
- #: ../wp-slimstat.php:1294 ../wp-slimstat.php:1303
5689
  #, fuzzy
5690
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5691
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5692
 
5693
- #: ../wp-slimstat.php:1298
5694
  msgid "Function gzopen not defined. Aborting."
5695
  msgstr ""
5696
 
5697
- #: ../wp-slimstat.php:1308
5698
  #, fuzzy
5699
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5700
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5701
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5702
  #, fuzzy
5703
  #~ msgid "Tracking"
5704
  #~ msgstr "Mode traçage"
@@ -5729,9 +5873,6 @@ msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5729
  #~ msgid "External Pages"
5730
  #~ msgstr "Pages externes"
5731
 
5732
- #~ msgid "Reset Reports"
5733
- #~ msgstr "Réinitialiser les rapports"
5734
-
5735
  #~ msgid "Start From"
5736
  #~ msgstr "Commencer à partir de"
5737
 
@@ -5780,12 +5921,6 @@ msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5780
  #~ msgid "Views"
5781
  #~ msgstr "Vues"
5782
 
5783
- #~ msgid "Enable Tracking"
5784
- #~ msgstr "Activer le traçage"
5785
-
5786
- #~ msgid "Enable Spy Mode"
5787
- #~ msgstr "Activer le mode espion"
5788
-
5789
  #~ msgid "Javascript"
5790
  #~ msgstr "Mode Javascript"
5791
 
@@ -6235,9 +6370,6 @@ msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
6235
  #~ msgid "IP Addresses"
6236
  #~ msgstr "Adresses IP"
6237
 
6238
- #~ msgid "Users"
6239
- #~ msgstr "Utilisateurs"
6240
-
6241
  #~ msgid "Capability to Admin"
6242
  #~ msgstr "Capacité à administrer"
6243
 
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-24 09:22-0500\n"
6
+ "PO-Revision-Date: 2015-12-24 09:22-0500\n"
7
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
8
  "Language-Team: Michael Bastin\n"
9
  "Language: fr_FR\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../admin/config/index.php:50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgid ""
22
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
23
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
26
  "Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
27
  "d'informations"
28
 
29
+ #: ../admin/config/index.php:65
30
  msgid "Read access: username not found"
31
  msgstr "Accès lecture : username inexistant"
32
 
33
+ #: ../admin/config/index.php:75 ../admin/config/index.php:100
34
  msgid ""
35
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
36
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
40
  "org/Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
41
  "d'informations"
42
 
43
+ #: ../admin/config/index.php:90
44
  msgid "Config access: username not found"
45
  msgstr "Accès configuration : username inexistant"
46
 
47
+ #: ../admin/config/index.php:109
48
+ msgid "Basic"
49
+ msgstr ""
50
 
51
+ #: ../admin/config/index.php:111 ../admin/config/index.php:132
52
  msgid "Tracker"
53
  msgstr "Traçage"
54
 
55
+ #: ../admin/config/index.php:112
56
+ msgid "Enable Tracking"
57
+ msgstr "Activer le traçage"
 
58
 
59
+ #: ../admin/config/index.php:112
60
  #, fuzzy
61
  msgid "Turn the tracker on or off, while keeping the reports accessible."
62
  msgstr ""
63
  "Activez ou désactivez le Traceur, mais conservez le rapport accessible (Ce "
64
  "que vous n'auriez pas si vous désactiviez le plugin.)"
65
 
66
+ #: ../admin/config/index.php:113
 
 
 
 
 
 
 
 
 
67
  msgid "Tracking Mode"
68
  msgstr "Mode traçage"
69
 
70
+ #: ../admin/config/index.php:113
71
  #, fuzzy
72
  msgid ""
73
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
82
  "ignorés. En outre, <strong>la plupart</strong> des spammeurs, moteurs de "
83
  "recherche et autres robots ne seront pas suivis."
84
 
85
+ #: ../admin/config/index.php:113
86
+ msgid "Client Side"
87
  msgstr ""
88
 
89
+ #: ../admin/config/index.php:113
90
  #, fuzzy
91
+ msgid "Server Side"
92
  msgstr "Côté serveur"
93
 
94
+ #: ../admin/config/index.php:114
95
  msgid "Stealth Mode"
96
  msgstr ""
97
 
98
+ #: ../admin/config/index.php:114
99
  msgid ""
100
  "Do not add the javascript tracking code to your pages, if tracking mode is "
101
  "set to Server. Please note: if enabled, this will prevent the tracker from "
103
  "etc. This option is ignored is Tracking Mode is set to Client."
104
  msgstr ""
105
 
106
+ #: ../admin/config/index.php:114 ../admin/view/wp-slimstat-reports.php:1359
107
+ msgid "Off"
108
+ msgstr ""
109
+
110
+ #: ../admin/config/index.php:114
111
+ msgid "On"
112
+ msgstr "Actif"
113
+
114
+ #: ../admin/config/index.php:115
115
  #, fuzzy
116
  msgid "Admin Pages"
117
  msgstr "Tracer les pages Administrateur"
118
 
119
+ #: ../admin/config/index.php:115
120
  msgid "Enable this option to track your users' activity within the admin."
121
  msgstr ""
122
  "Activez cette option pour suivre l'activité de vos utilisateurs dans l'admin."
123
 
124
+ #: ../admin/config/index.php:115
125
  #, fuzzy
126
  msgid "Track"
127
  msgstr "Traçage"
128
 
129
+ #: ../admin/config/index.php:115
130
  #, fuzzy
131
  msgid "Do not track"
132
  msgstr "ne contient pas"
133
 
134
+ #: ../admin/config/index.php:117
135
  msgid "WordPress Integration"
136
  msgstr "Intégration WordPress"
137
 
138
+ #: ../admin/config/index.php:118
139
  msgid "Menu Position"
140
  msgstr "Position du Menu"
141
 
142
+ #: ../admin/config/index.php:118
143
  msgid ""
144
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
145
  "admin bar (if visible)."
147
  "Choisir entre un menu d'administration dans la barre latérale de WordPress "
148
  "ou un menu déroulant dans la barre supérieure (si elle est affichée)."
149
 
150
+ #: ../admin/config/index.php:118
151
  msgid "Side Menu"
152
  msgstr "Menu latéral"
153
 
154
+ #: ../admin/config/index.php:118
155
  msgid "Admin Bar"
156
  msgstr "Barre d'Administration"
157
 
158
+ #: ../admin/config/index.php:119
159
  #, fuzzy
160
  msgid "Posts and Pages"
161
  msgstr "Etendre les Stats aux articles"
162
 
163
+ #: ../admin/config/index.php:119
164
  #, fuzzy
165
  msgid ""
166
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
167
+ "per post within the timeframe specified here below."
168
  msgstr ""
169
  "Ajoute une colonne à l'écran d'édition des articles, en indiquant le nombre "
170
  "de visites par article (peut ralentir le rendu des pages)."
171
 
172
+ #: ../admin/config/index.php:120
 
 
 
 
 
 
 
 
 
 
173
  #, fuzzy
174
  msgid "Report Interval"
175
  msgstr "Intervalle unique"
176
 
177
+ #: ../admin/config/index.php:120
178
  msgid ""
179
  "Enter the time range, in days, that should be used to calculate the value "
180
  "here above."
181
  msgstr ""
182
 
183
+ #: ../admin/config/index.php:121
184
  #, fuzzy
185
  msgid "Report Type"
186
  msgstr "Rapports"
187
 
188
+ #: ../admin/config/index.php:121
189
  msgid ""
190
  "Select what kind of information you would like to see displayed on the Posts "
191
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
192
  "IPs consider only one hit per user in the given time range."
193
  msgstr ""
194
 
195
+ #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:100
196
+ #: ../admin/view/wp-slimstat-reports.php:109
197
+ #: ../admin/view/wp-slimstat-reports.php:1375
198
+ #: ../admin/view/wp-slimstat-reports.php:1533
199
  msgid "Pageviews"
200
  msgstr "Pages vues"
201
 
202
+ #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:110
203
+ #: ../admin/view/wp-slimstat-reports.php:286
204
+ #: ../admin/view/wp-slimstat-reports.php:526
205
+ #: ../admin/view/wp-slimstat-reports.php:1390
206
+ #: ../admin/view/wp-slimstat-reports.php:1435
207
  msgid "Unique IPs"
208
  msgstr "IPs uniques"
209
 
210
+ #: ../admin/config/index.php:122
211
+ msgid "Dashboard Widgets"
212
+ msgstr ""
213
+
214
+ #: ../admin/config/index.php:122
215
+ msgid ""
216
+ "Choose if you want to have the most important reports on your WordPress "
217
+ "Dashboard. Use the Screen Options dropdown to select which ones to display."
218
+ msgstr ""
219
+
220
+ #: ../admin/config/index.php:123
221
  #, fuzzy
222
  msgid "Hide Add-ons"
223
  msgstr "Add-ons"
224
 
225
+ #: ../admin/config/index.php:123
226
  msgid ""
227
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
228
  "from the list of plugins in WordPress. Please note that you will still "
229
  "receive updates for hidden add-ons."
230
  msgstr ""
231
 
232
+ #: ../admin/config/index.php:125
233
  msgid "Database"
234
  msgstr "Base de données"
235
 
236
+ #: ../admin/config/index.php:126
237
  msgid "Retain data for"
238
  msgstr "Conserver les données pour"
239
 
240
+ #: ../admin/config/index.php:126
241
  #, fuzzy
242
  msgid ""
243
  "Clean-up log entries older than the number of days specified here above. "
248
  "ci-dessus. Entrer <strong>0</strong> (number zero) si vous souhaitez "
249
  "conserver toutes vos données sans limites de durée."
250
 
251
+ #: ../admin/config/index.php:126
252
  msgid "Next clean-up on"
253
  msgstr "Prochain nettoyage le"
254
 
255
+ #: ../admin/config/index.php:126
256
  #, fuzzy, php-format
257
  msgid ""
258
  "Entries logged on or before %s will be archived or deleted according to the "
260
  msgstr ""
261
  "Les données enregistrées le ou avant le %s seront définitivement supprimées. "
262
 
263
+ #: ../admin/config/index.php:126 ../admin/view/index.php:102
264
  #: ../admin/view/wp-slimstat-db.php:79
265
+ #: ../admin/view/wp-slimstat-reports.php:1359
266
  msgid "days"
267
  msgstr "jours"
268
 
269
+ #: ../admin/config/index.php:127
270
  #, fuzzy
271
  msgid "Delete records"
272
  msgstr "Filtrer les pages vues pour que"
273
 
274
+ #: ../admin/config/index.php:127
275
  msgid ""
276
  "If DB space is not an issue, you can decide to archive older records in "
277
  "another table, instead of deleting them. This way performance is preserved, "
281
  "is uninstalled. Make sure to backup your data before you proceed."
282
  msgstr ""
283
 
284
+ #: ../admin/config/index.php:134
285
+ #, fuzzy
286
+ msgid "Advanced Options"
287
+ msgstr "Filtres Avancés"
288
 
289
+ #: ../admin/config/index.php:135
290
+ msgid "Session Duration"
291
+ msgstr "Durée session"
292
+
293
+ #: ../admin/config/index.php:135
294
+ msgid ""
295
+ "How many seconds should a human session last? Google Analytics sets it to "
296
+ "1800 seconds."
297
  msgstr ""
298
+ "Définit le nombre de secondes qu'une visite devrait durer. Google Analytics "
299
+ "fixe cette durée à 1800 secondes."
300
 
301
+ #: ../admin/config/index.php:135 ../admin/config/index.php:205
302
+ msgid "seconds"
303
+ msgstr "secondes"
304
 
305
+ #: ../admin/config/index.php:136
306
+ msgid "Extend Session"
307
+ msgstr "Etendre la session"
308
+
309
+ #: ../admin/config/index.php:136
310
+ msgid "Extend the duration of a session each time the user visits a new page."
311
  msgstr ""
312
+ "Prolonger la durée d'une session à chaque fois que l'utilisateur visite une "
313
+ "page."
314
 
315
+ #: ../admin/config/index.php:137
316
+ msgid "Enable CDN"
317
+ msgstr "Activer CDN"
 
318
 
319
+ #: ../admin/config/index.php:137
 
320
  msgid ""
321
+ "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
322
+ "by serving our tracking code from their fast and reliable network (free "
323
+ "service)."
324
  msgstr ""
325
+ "Permet <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a> 's "
326
+ "CDN, en servant le traqueur Javascript WP SlimStat à partir de leur réseau "
327
+ "rapide et fiable."
328
 
329
+ #: ../admin/config/index.php:138
330
+ msgid "Extensions to Track"
331
+ msgstr "Extensions du traçage"
 
332
 
333
+ #: ../admin/config/index.php:138
 
334
  msgid ""
335
+ "List all the file extensions that you want to be treated as Downloads. "
336
+ "Please note that links pointing to external resources (i.e. PDFs on a "
337
+ "different website) are considered Downloads and not Outbound Links (and "
338
+ "tracked as such), if their extension matches one of the ones listed here "
339
+ "below."
340
  msgstr ""
341
+ "Les extensions de fichiers suivants (valeurs séparées par des virgules pour "
342
+ "être répertoriées) seront suivis comme Téléchargements par WP SlimStat. "
343
+ "Veuillez noter que les liens pointant vers des ressources externes (par ex. "
344
+ "fichiers PDF sur un autre site) sont considérés comme Téléchargements et non "
345
+ "comme liens sortants (et suivis en tant que tel), si leur extension "
346
+ "correspond à l'une de celles qui sont énumérées ci-dessous."
347
 
348
+ #: ../admin/config/index.php:140
349
  #, fuzzy
350
+ msgid "Internal and Outbound Links"
351
+ msgstr "Liens sortants récents"
352
 
353
+ #: ../admin/config/index.php:141
354
+ msgid "Track Outbound Clicks"
355
+ msgstr "Tracer les liens sortants"
356
+
357
+ #: ../admin/config/index.php:141
358
  msgid ""
359
+ "Track when your visitors click on link to external websites. This option "
360
+ "required Spy Mode to be enabled."
361
  msgstr ""
362
+ "Détectez vos visiteurs cliquant sur des liens pointant sur des sites "
363
+ "externes. Cette fonctionnalité nécéssite que le Mode Espion soit activé."
364
 
365
+ #: ../admin/config/index.php:142
366
  #, fuzzy
367
+ msgid "Track Coordinates"
368
+ msgstr "Mode traçage"
369
 
370
+ #: ../admin/config/index.php:142
 
371
  msgid ""
372
+ "Collect mouse coordinates and other information for clicks on internal "
373
+ "links. Strongly recommended if you're using the heatmap add-on. By default, "
374
+ "this information is only collected for external links."
375
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
376
 
377
+ #: ../admin/config/index.php:143
378
+ msgid "No Callback"
379
+ msgstr ""
380
 
381
+ #: ../admin/config/index.php:143
382
  msgid ""
383
+ "Track the event but do not invoke the callback function on links marked with "
384
+ "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
385
+ "attribute contains one of these strings (separated by comma). Useful to "
386
+ "prevent conflicts with lightbox and similar libraries."
387
  msgstr ""
 
 
388
 
389
+ #: ../admin/config/index.php:144
390
+ msgid "Do Not Track"
 
 
 
 
391
  msgstr ""
 
 
392
 
393
+ #: ../admin/config/index.php:144
 
 
 
 
 
 
 
 
 
 
 
 
 
394
  msgid ""
395
+ "Do not track links marked with one of these class names, <em>rel</em> "
396
+ "attributes or whose <em>href</em> attribute contains one of these strings "
397
+ "(separated by comma)."
398
  msgstr ""
399
 
400
+ #: ../admin/config/index.php:146
401
+ msgid "Pages not belonging to this site"
 
 
 
 
 
 
 
 
 
 
402
  msgstr ""
 
 
 
 
 
 
 
 
 
 
403
 
404
+ #: ../admin/config/index.php:147
 
 
 
 
 
 
 
 
 
405
  #, fuzzy
406
  msgid ""
407
+ "Add the following code to all the non-WP pages you want to track, right "
408
+ "before the closing BODY tag. Please make sure to change the protocol of all "
409
+ "the URLs to HTTPS, if you external site is served over a secure channel."
 
 
410
  msgstr ""
411
+ "Ajouter le code suivant à toutes les pages non-WordPress que vous souhaitez "
412
+ "suivre."
 
 
413
 
414
+ #: ../admin/config/index.php:157
415
  #, fuzzy
416
+ msgid "Allow External Domains"
417
+ msgstr "Liens externes hostiles"
 
 
 
 
 
 
 
 
 
 
 
 
418
 
419
+ #: ../admin/config/index.php:157
420
  msgid ""
421
+ "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
422
+ "header is present on the requested resource, when using the external "
423
+ "tracking code here above, list the domains (complete with scheme, separated "
424
+ "by commas) you would like to allow. For example: <code>http://my.domain.ext</"
425
+ "code> (no trailing slash). Please see <a href='http://www.w3.org/TR/cors/"
426
+ "#security' target='_blank'>this W3 resource</a> for more information on the "
427
+ "security implications of allowing CORS requests."
428
  msgstr ""
 
 
429
 
430
+ #: ../admin/config/index.php:158 ../admin/config/index.php:180
431
+ #: ../admin/config/index.php:208
432
+ msgid "Miscellaneous"
433
+ msgstr "Divers"
 
 
 
 
 
 
 
 
 
434
 
435
+ #: ../admin/config/index.php:159
436
+ msgid "Enable UAN"
437
+ msgstr "Activer UAN"
 
438
 
439
+ #: ../admin/config/index.php:159
440
  msgid ""
441
+ "Send anonymous data about user agents to our server for analysis. This "
442
+ "allows us to contribute to the <a href='http://browscap.org/' "
443
+ "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
444
+ "Slimstat's browser detection functionality. It also enables our transparent "
445
+ "ads network. No worries, your site will not be affected in any way."
 
446
  msgstr ""
447
+ "Envoyer des données anonymes concernant les navigateurs inconnus à nos "
448
+ "serveurs pour analyse. Cela nous permet de contribuer au <a href='http://"
449
+ "browscap.org/' target='_blank'> projet opensource BrowsCap, et d'améliorer "
450
+ "la pertinence de la fonctionnalité de WPStats concernant les navigateurs web."
451
 
452
+ #: ../admin/config/index.php:164
453
  msgid "Filters"
454
  msgstr "Filtres"
455
 
456
+ #: ../admin/config/index.php:166
457
+ #, fuzzy
458
+ msgid "Do not track settings"
459
+ msgstr "ne contient pas"
460
 
461
+ #: ../admin/config/index.php:167
462
  msgid "Track Registered Users"
463
  msgstr "Tracer les utilisateurs enregistrés"
464
 
465
+ #: ../admin/config/index.php:167
466
  msgid "Enable this option to track logged in users."
467
  msgstr "Activez cette option pour tracer les utilisateurs connectés"
468
 
469
+ #: ../admin/config/index.php:168
470
  msgid "Blacklist by Username"
471
  msgstr "Liste noire basée sur le nom d'utilisateur"
472
 
473
+ #: ../admin/config/index.php:168
474
+ #, fuzzy
475
  msgid ""
476
  "List all the usernames you don't want to track, separated by commas. Please "
477
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
478
+ "sensitive. Wildcards: <code>*</code> matches 'any string, including the "
479
+ "empty string', <code>!</code> matches 'any character'. For example, "
480
+ "<code>user*</code> will match user12 and userfoo, <code>u*100</code> will "
481
+ "match user100 and uber100, <code>user!0</code> will match user10 and user90."
482
  msgstr ""
483
+ "Liste de tous les URL que vous ne voulez pas suivre, séparées par des "
484
+ "virgules. Ne pas inclure le nom de domaine: <em>/about, ?p=1</em>, etc. "
485
+ "Caractères génériques: <code> * </code> signifie «n'importe quelle chaîne, y "
486
+ "compris la chaîne vide\", <code>!</code> signifie «n'importe quel "
487
+ "caractère». Par exemple, <code>/abou*</code> correspondra /about et /abound, "
488
+ "<code>/abo*t</code> correspondra /aboundant et /about, <code>/abo!t </code > "
489
+ "correspondra /about et /abort. Les chaînes sont insensibles à la casse."
490
 
491
+ #: ../admin/config/index.php:169
492
  msgid "Blacklist by IP Address"
493
  msgstr "Liste noire par adresse IP"
494
 
495
+ #: ../admin/config/index.php:169
496
  msgid ""
497
  "List all the IP addresses you don't want to track, separated by commas. Each "
498
  "network <strong>must</strong> be defined using the <a href='http://en."
507
  "<em>192.168.0.0/24</em>). Si le format est incorrect, WP SlimStat ne peut "
508
  "pas suivre correctement les pages vues."
509
 
510
+ #: ../admin/config/index.php:170
511
  msgid "Blacklist by Capability"
512
  msgstr "Blacklister par Capabilité WordPress"
513
 
514
+ #: ../admin/config/index.php:170
515
  msgid ""
516
  "Users having at least one of the <a href='http://codex.wordpress.org/"
517
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
521
  "Roles_and_Capabilities' target='_new'>capacités</a> listées ci-dessous ne "
522
  "seront pas suivis. Les capacités sont insensibles à la casse."
523
 
524
+ #: ../admin/config/index.php:172
525
  msgid "Profiling"
526
  msgstr "Profiling"
527
 
528
+ #: ../admin/config/index.php:173
529
  msgid "Ignore Spammers"
530
  msgstr "Ignorer les spammeurs"
531
 
532
+ #: ../admin/config/index.php:173
533
  msgid ""
534
  "Enable this option if you don't want to track visits from users identified "
535
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
541
  "Akismet). Les visites de personnes dont les commentaires sont ensuite marqué "
542
  "comme spam par vous, seront également supprimées de la base."
543
 
544
+ #: ../admin/config/index.php:174
545
  #, fuzzy
546
  msgid "Ignore Bots"
547
  msgstr "Ignorer les utilisateurs"
548
 
549
+ #: ../admin/config/index.php:174
550
  msgid ""
551
  "Turn on this feature if you want to have the accuracy level of server-side "
552
  "tracking, but not the inconvenience of getting your database clogged with "
554
  "note that in Client mode, bots are ignored regardless of this setting."
555
  msgstr ""
556
 
557
+ #: ../admin/config/index.php:175
558
  msgid "Permalinks"
559
  msgstr "Rermaliens"
560
 
561
+ #: ../admin/config/index.php:175
562
  msgid ""
563
  "List all the URLs on your website that you don't want to track, separated by "
564
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
576
  "<code>/abo*t</code> correspondra /aboundant et /about, <code>/abo!t </code > "
577
  "correspondra /about et /abort. Les chaînes sont insensibles à la casse."
578
 
579
+ #: ../admin/config/index.php:176
580
  msgid "Countries"
581
  msgstr "Pays"
582
 
583
+ #: ../admin/config/index.php:176
584
  msgid ""
585
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
586
  "track, separated by commas."
588
  "Listez tous les codes de pays (p. ex.: <code>en-us, it, es </code>) que vous "
589
  "ne voulez pas suivre, séparées par des virgules."
590
 
591
+ #: ../admin/config/index.php:177
592
  msgid "User Agents"
593
  msgstr "User Agents"
594
 
595
+ #: ../admin/config/index.php:177
596
  msgid ""
597
  "Browsers (user agents) you don't want to track, separated by commas. You can "
598
  "specify the browser's version adding a slash after the name (i.e. "
610
  "correspondra à Chrome et Chromium, <code>IE/!.0</Code> correspondra IE/7.0 "
611
  "et IE/8.0. Les chaînes sont insensibles à la casse."
612
 
613
+ #: ../admin/config/index.php:178
614
  msgid "Referring Sites"
615
  msgstr "Sites référents"
616
 
617
+ #: ../admin/config/index.php:178
618
  msgid ""
619
  "Referring URLs that you don't want to track, separated by commas: "
620
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
631
  "soit un caractère générique ou le protocole que vous voulez filtrer "
632
  "(http://, https://)."
633
 
634
+ #: ../admin/config/index.php:181
635
+ msgid "Enable Privacy Mode"
636
+ msgstr "Activer le mode privé"
637
+
638
+ #: ../admin/config/index.php:181
639
+ msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
640
+ msgstr ""
641
+ "Cette option masque l'adresse IP de vos visiteurs afin de se conformer aux "
642
+ "lois de confidentialité européennes."
643
+
644
+ #: ../admin/config/index.php:182
645
+ msgid "Ignore Prefetch Requests"
646
+ msgstr "Ignorer les requêtes anticipées"
647
+
648
+ #: ../admin/config/index.php:182
649
+ msgid ""
650
+ "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
651
+ "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
652
+ "target='_blank'>Link Prefetching functionality</a>."
653
+ msgstr ""
654
+ "Activer ce filtre si vous voulez éviter à WP SlimStat le suivi des pages "
655
+ "vues générées par Firefox <a href='https://developer.mozilla.org/en/"
656
+ "Link_prefetching_FAQ' target='_blank'>Link Prefetching functionality</a>."
657
+
658
+ #: ../admin/config/index.php:187 ../admin/config/index.php:220
659
+ msgid "Reports"
660
+ msgstr "Rapports"
661
+
662
+ #: ../admin/config/index.php:189
663
+ msgid "Formats and Conversions"
664
+ msgstr ""
665
+
666
+ #: ../admin/config/index.php:190
667
+ msgid "Number Format"
668
+ msgstr "Format des nombres"
669
+
670
+ #: ../admin/config/index.php:190
671
+ msgid "Choose the number format you want to use for your reports."
672
+ msgstr ""
673
+ "Choisissez le format numérique que vous souhaitez utiliser, européen ou "
674
+ "américain."
675
+
676
+ #: ../admin/config/index.php:191
677
  #, fuzzy
678
+ msgid "Date Format"
679
+ msgstr "Données et Formats"
680
 
681
+ #: ../admin/config/index.php:191
682
+ #, fuzzy
683
+ msgid ""
684
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
685
+ "Format</a> to use when displaying a pageview's date."
686
+ msgstr ""
687
+ "<a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank"
688
+ "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
689
+ "vue."
690
 
691
+ #: ../admin/config/index.php:192
692
+ #, fuzzy
693
+ msgid "Time Format"
694
+ msgstr "Format des nombres"
695
+
696
+ #: ../admin/config/index.php:192
697
+ #, fuzzy
698
  msgid ""
699
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
700
+ "Format</a> to use when displaying a pageview's time."
701
  msgstr ""
702
+ "<a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank"
703
+ "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
704
+ "vue."
705
 
706
+ #: ../admin/config/index.php:193
707
  #, fuzzy
708
+ msgid "Use Display Name"
709
+ msgstr "Voir Nom d'affichage"
710
+
711
+ #: ../admin/config/index.php:193
712
+ msgid ""
713
+ "By default, users are listed by their usernames. Use this option to "
714
+ "visualize their display names instead."
715
+ msgstr ""
716
+ "Par défaut, les utilisateurs sont affichés par Nom d'utilisateur. Utilisez "
717
+ "cette option pour basculer au Nom d'affichage."
718
+
719
+ #: ../admin/config/index.php:194
720
+ #, fuzzy
721
+ msgid "Use Titles"
722
+ msgstr "Afficher les titres"
723
+
724
+ #: ../admin/config/index.php:194
725
+ #, fuzzy
726
+ msgid ""
727
+ "Slimstat converts your permalinks into post, page and category titles. "
728
+ "Disable this feature if you need to see the URL in your reports."
729
+ msgstr ""
730
+ "WP SlimStat convertit vos permalinks en post et en titres de pages. "
731
+ "Désactivez cette fonction si vous souhaitez conserver l'URL dans de vos "
732
+ "rapports."
733
+
734
+ #: ../admin/config/index.php:195
735
+ msgid "Convert IP Addresses"
736
+ msgstr "Convertir les adresses IP"
737
+
738
+ #: ../admin/config/index.php:195
739
+ msgid "Display provider names instead of IP addresses."
740
+ msgstr "Afficher le nom du fournisseur d'accès au lieu de l'adresse IP."
741
 
742
  #: ../admin/config/index.php:197
743
+ msgid "Functionality"
744
+ msgstr "Fonctionnalité"
745
+
746
+ #: ../admin/config/index.php:198
747
+ msgid "SlimScroll"
748
+ msgstr "SlimScroll"
749
+
750
+ #: ../admin/config/index.php:198
751
  msgid ""
752
+ "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
753
+ "scrollbar."
754
+ msgstr ""
755
+ "Activer SlimScroll, une librairie jQuery élégante qui remplace la barre de "
756
+ "défilement par défaut des navigateurs."
757
+
758
+ #: ../admin/config/index.php:199
759
+ msgid "Expand Details"
760
+ msgstr "Développez les détails"
761
+
762
+ #: ../admin/config/index.php:199
763
+ msgid "Expand each row's details by default, insted of on mousehover."
764
+ msgstr ""
765
+ "Développe les détails de chaque ligne par défaut, plutôt que sur survol de "
766
+ "souris."
767
+
768
+ #: ../admin/config/index.php:200 ../admin/config/index.php:206
769
+ msgid "Rows to Display"
770
+ msgstr "Colonnes à afficher"
771
+
772
+ #: ../admin/config/index.php:200
773
+ msgid "Specify the number of items in each report."
774
+ msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
775
+
776
+ #: ../admin/config/index.php:201 ../admin/view/wp-slimstat-db.php:101
777
+ #, fuzzy
778
+ msgid "Max Results"
779
+ msgstr "Limiter les résultats"
780
+
781
+ #: ../admin/config/index.php:201
782
+ msgid ""
783
+ "Decide how many records should be retrieved from the database in total. "
784
+ "Depending on your server configuration, you may want to fine tune this value "
785
+ "to avoid exceeding your PHP memory limit."
786
+ msgstr ""
787
+
788
+ #: ../admin/config/index.php:202
789
+ msgid "IP Lookup"
790
+ msgstr "Recherche d'IP"
791
+
792
+ #: ../admin/config/index.php:202
793
+ msgid "Customize the Geolocation service to be used in the reports."
794
+ msgstr ""
795
+ "Personnaliser le service de Géolocalisation à utiliser dans les rapports."
796
+
797
+ #: ../admin/config/index.php:204
798
+ msgid "Activity Log"
799
+ msgstr "Statistiques de fréquentation"
800
+
801
+ #: ../admin/config/index.php:205
802
+ msgid "Live Stream"
803
+ msgstr "Flux en temps réel (Flux live)"
804
+
805
+ #: ../admin/config/index.php:205
806
+ msgid ""
807
+ "Enable the Live view, which refreshes the Activity Log every X seconds. "
808
+ "Enter <strong>0</strong> (number zero) to deactivate this feature."
809
+ msgstr ""
810
+ "Actualisez la vue 'Maintenant' toutes les X secondes. Entrer <strong>0</"
811
+ "strong> pour désactiver cette fonctionnalité."
812
+
813
+ #: ../admin/config/index.php:206
814
+ msgid "Specify the number of items in the Activity Log."
815
+ msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
816
+
817
+ #: ../admin/config/index.php:209
818
+ msgid "Custom CSS"
819
+ msgstr "Personnaliser le style CSS"
820
+
821
+ #: ../admin/config/index.php:209
822
+ #, fuzzy
823
+ msgid ""
824
+ "Paste here your custom stylesheet to personalize the way your reports look. "
825
+ "<a href='https://slimstat.freshdesk.com/support/solutions/"
826
+ "articles/5000528528-how-can-i-change-the-colors-associated-to-color-coded-"
827
+ "pageviews-known-user-known-visitors-search-e' target='_blank'>Check the FAQ</"
828
+ "a> for more information on how to use this setting."
829
  msgstr ""
830
+ "Collez ici votre feuille de style, afin de personnaliser la présentation de "
831
+ "vos rapports. <a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
832
+ "target='_blank'>Consultez les FAQs</a> pour plus d'informations sur la façon "
833
+ "d'utiliser cette fonctionnalité."
834
 
835
+ #: ../admin/config/index.php:210
836
+ #, fuzzy
837
+ msgid "Chart Colors"
838
+ msgstr "Contrôle du graphique"
839
 
840
+ #: ../admin/config/index.php:210
841
  msgid ""
842
+ "Customize the look and feel of your charts by assigning personalized colors "
843
+ "to each metric. List 4 hex colors separated by commas, strictly in the "
844
+ "following order: metric 1 previous, metric 2 previous, metric 1 current, "
845
+ "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
846
  msgstr ""
847
 
848
+ #: ../admin/config/index.php:211
849
+ msgid "Show User Agent"
850
+ msgstr "Voir User Agent"
851
 
852
+ #: ../admin/config/index.php:211
853
  msgid ""
854
+ "Choose if you want to see the browser name or a complete user agent string "
855
+ "when hovering on browser icons."
 
856
  msgstr ""
857
+ "Choisissez si vous voulez voir le nom du navigateur ou une chaîne complete "
858
+ "de user agent lorsque vous survolez les icônes du navigateur."
859
 
860
+ #: ../admin/config/index.php:212
861
+ msgid "Enable SOV"
862
+ msgstr "Activer SOV"
863
 
864
+ #: ../admin/config/index.php:212
865
+ msgid ""
866
+ "In linguistic typology, a subject-object-verb (SOV) language is one in which "
867
+ "the subject, object, and verb of a sentence appear in that order, like in "
868
+ "Japanese."
869
  msgstr ""
870
+ "En typologie linguistique, une langue en sujet-objet-verbe (SOV) est une "
871
+ "langue dans laquelle les sujet, objet et verbe d'une phrase apparaissent "
872
+ "dans cet ordre, comme en japonais."
873
 
874
+ #: ../admin/config/index.php:213
875
+ #, fuzzy
876
+ msgid "Social Analytics"
877
+ msgstr "Analyse du site"
878
 
879
+ #: ../admin/config/index.php:213
880
  msgid ""
881
+ "Thanks to a <a href='http://getsocial.io/enterprise' "
882
+ "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
883
+ "set of analytics for social media where you can identify top performing "
884
+ "posts. Track social sharing to understand which of your posts are generating "
885
+ "more engagement. When this option is enabled, Slimstat sends a list of all "
886
+ "your posts's URLs to their service for analysis once daily."
887
  msgstr ""
 
 
 
888
 
889
+ #: ../admin/config/index.php:218
890
+ msgid "Access Control"
891
+ msgstr ""
892
 
893
+ #: ../admin/config/index.php:221
894
  msgid "Restrict Authors"
895
  msgstr "Restriction Auteurs"
896
 
897
+ #: ../admin/config/index.php:221
898
  msgid ""
899
  "Enable this option if you want your authors to only see stats related to "
900
  "their own content."
902
  "Activez cette option si vous voulez que vos auteurs ne voient que les "
903
  "statistiques relatives à leur propre contenu."
904
 
905
+ #: ../admin/config/index.php:222 ../admin/config/index.php:226
906
  msgid "Capability"
907
  msgstr "Aptitude"
908
 
909
+ #: ../admin/config/index.php:222
910
  msgid ""
911
  "Specify the minimum <a href='http://codex.wordpress.org/"
912
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
922
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
923
  "Dans ce cas, la liste a la priorité sur la capacité."
924
 
925
+ #: ../admin/config/index.php:223 ../admin/config/index.php:227
926
  msgid "Whitelist"
927
  msgstr "Liste blanche"
928
 
929
+ #: ../admin/config/index.php:223
930
  msgid ""
931
  "List all the users who should have access to the reports, separated by "
932
  "commas. Administrators are implicitly allowed, so you don't need to list "
938
  "vide, <strong>tous vos utilisateurs</strong> sont autorisés à accéder. Les "
939
  "noms d'utilisateurs sont sensibles à la casse."
940
 
941
+ #: ../admin/config/index.php:225 ../admin/config/index.php:250
942
+ #: ../admin/wp-slimstat-admin.php:532 ../admin/wp-slimstat-admin.php:535
943
+ #: ../wp-slimstat.php:1803
944
  msgid "Settings"
945
  msgstr "Réglages"
946
 
947
+ #: ../admin/config/index.php:226
948
  msgid ""
949
  "Specify the minimum <a href='http://codex.wordpress.org/"
950
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
958
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
959
  "Dans ce cas, la liste a la priorité sur la capacité."
960
 
961
+ #: ../admin/config/index.php:227
962
  msgid ""
963
  "List all the users who can edit these options, separated by commas. Please "
964
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
970
  "inscrire! Les noms d'utilisateurs sont sensibles à la casse. (Majuscules-"
971
  "minuscules)"
972
 
973
+ #: ../admin/config/index.php:232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
974
  msgid "Maintenance"
975
  msgstr "Maintenance"
976
 
977
+ #: ../admin/config/index.php:237 ../admin/view/addons.php:32
978
+ #: ../admin/wp-slimstat-admin.php:490 ../admin/wp-slimstat-admin.php:505
979
+ #: ../wp-slimstat.php:1800
980
+ msgid "Add-ons"
981
+ msgstr "Add-ons"
982
+
983
  #: ../admin/config/maintenance.php:16
984
  msgid ""
985
  "Congrats! Slimstat is now optimized for <a href=\"http://www.youtube.com/"
988
  "Félicitations ! WP SlimStat est à présent optimisé pour <a href=\"http://www."
989
  "youtube.com/watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
990
 
991
+ #: ../admin/config/maintenance.php:27
992
  #, fuzzy
993
  msgid "Indexing has been disabled. Enjoy the extra database space!"
994
  msgstr ""
995
  "L'indexation a bien été désactivée. Profitez bien de l'espace supplémentaire "
996
  "que vous venez de gagner !"
997
 
998
+ #: ../admin/config/maintenance.php:43
999
  msgid "records deleted from your database."
1000
  msgstr "enregistrements supprimés de votre base de données."
1001
 
1002
+ #: ../admin/config/maintenance.php:48
1003
  msgid "The geolocation database has been uninstalled from your server."
1004
  msgstr ""
1005
 
1006
+ #: ../admin/config/maintenance.php:58
1007
  msgid "The geolocation database has been installed on your server."
1008
  msgstr ""
1009
 
1010
+ #: ../admin/config/maintenance.php:166
1011
  msgid ""
1012
  "Your data was successfully imported. You may now drop the old tables: "
1013
  "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
1016
  "delete the old tables."
1017
  msgstr ""
1018
 
1019
+ #: ../admin/config/maintenance.php:175
1020
  msgid "Your reports were successfully restored to their default arrangement."
1021
  msgstr ""
1022
  "Vos rapports ont été réinitialisés avec succès dans leur configuration par "
1023
  "défaut."
1024
 
1025
+ #: ../admin/config/maintenance.php:185
1026
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1027
  msgstr "Vos tables WP SlimStat ont été converties en InnoDB avec succès."
1028
 
1029
+ #: ../admin/config/maintenance.php:191
1030
  #, fuzzy
1031
  msgid "All the archived records were successfully deleted."
1032
  msgstr "Tous les enregistrements ont bien été supprimés"
1033
 
1034
+ #: ../admin/config/maintenance.php:199
1035
  msgid "All the records were successfully deleted."
1036
  msgstr "Tous les enregistrements ont bien été supprimés"
1037
 
1038
+ #: ../admin/config/maintenance.php:221
1039
  msgid "Debugging"
1040
  msgstr ""
1041
 
1042
+ #: ../admin/config/maintenance.php:224
1043
+ #, fuzzy
1044
+ msgid "Tracker Status"
1045
+ msgstr "Traçage"
1046
 
1047
+ #: ../admin/config/maintenance.php:226
1048
  #, fuzzy
1049
  msgid "recorded on"
1050
  msgstr "Enregistrements"
1051
 
1052
+ #: ../admin/config/maintenance.php:226
1053
  msgid "No Errors so far"
1054
  msgstr ""
1055
 
1056
+ #: ../admin/config/maintenance.php:227
1057
  msgid ""
1058
  "The information here above is useful to troubleshoot issues with the "
1059
+ "tracker. It includes both <strong>errors</strong>, which are returned when "
1060
+ "the tracker could not record a pageview and are indicative of some kind of "
1061
+ "malfunction, and <strong>notices</strong>, which explain the reason why the "
1062
+ "most recent pageview was not recorded, based on your settings (filters, "
1063
+ "blackslists, etc). Please include this code when sending a support request."
1064
  msgstr ""
1065
 
1066
+ #: ../admin/config/maintenance.php:233
1067
+ #, fuzzy
1068
+ msgid "Enable SQL Debug"
1069
+ msgstr "Activer le mode espion"
1070
+
1071
+ #: ../admin/config/maintenance.php:236
1072
+ msgid ""
1073
+ "Display the SQL code used to retrieve the data from the database. Useful to "
1074
+ "troubleshoot issues with data consistency or missing pageviews."
1075
+ msgstr ""
1076
+
1077
+ #: ../admin/config/maintenance.php:240
1078
+ msgid "Disable SQL Debug"
1079
+ msgstr ""
1080
+
1081
+ #: ../admin/config/maintenance.php:243
1082
+ msgid "Deactivate the SQL output on top of each report."
1083
+ msgstr ""
1084
+
1085
+ #: ../admin/config/maintenance.php:248
1086
  msgid "Layout"
1087
  msgstr ""
1088
 
1089
+ #: ../admin/config/maintenance.php:251
1090
  msgid ""
1091
  "Are you sure you want to restore the default arrangement of your reports?"
1092
  msgstr "Etes-vous sûr de vouloir réinitialiser vos rapports ?"
1093
 
1094
+ #: ../admin/config/maintenance.php:251
1095
  msgid "No Panic Button"
1096
  msgstr "Pas de panique !"
1097
 
1098
+ #: ../admin/config/maintenance.php:253
1099
  #, fuzzy
1100
  msgid ""
1101
  "Reset the default arrangement of your reports. Helpful when, for some "
1103
  "in your views."
1104
  msgstr "Réinitialiser la mise en page par défaut de vos rapports."
1105
 
1106
+ #: ../admin/config/maintenance.php:257
1107
  msgid "Data Maintenance"
1108
  msgstr "Maintenance des données"
1109
 
1110
+ #: ../admin/config/maintenance.php:260
1111
  msgid "Delete pageviews where"
1112
  msgstr "Supprimer les pages où"
1113
 
1114
+ #: ../admin/config/maintenance.php:274 ../admin/view/index.php:16
1115
  msgid "equals"
1116
  msgstr "est égal à"
1117
 
1118
+ #: ../admin/config/maintenance.php:275 ../admin/view/index.php:17
1119
  msgid "is not equal to"
1120
  msgstr "n'est pas égal à"
1121
 
1122
+ #: ../admin/config/maintenance.php:276 ../admin/view/index.php:18
1123
  msgid "contains"
1124
  msgstr "contient"
1125
 
1126
+ #: ../admin/config/maintenance.php:277 ../admin/view/index.php:19
1127
  msgid "is included in"
1128
  msgstr ""
1129
 
1130
+ #: ../admin/config/maintenance.php:278 ../admin/view/index.php:20
1131
  msgid "does not contain"
1132
  msgstr "ne contient pas"
1133
 
1134
+ #: ../admin/config/maintenance.php:279 ../admin/view/index.php:21
1135
  msgid "starts with"
1136
  msgstr "commence par"
1137
 
1138
+ #: ../admin/config/maintenance.php:280 ../admin/view/index.php:22
1139
  msgid "ends with"
1140
  msgstr "finit par"
1141
 
1142
+ #: ../admin/config/maintenance.php:281 ../admin/view/index.php:23
1143
  msgid "sounds like"
1144
  msgstr "ressemble à"
1145
 
1146
+ #: ../admin/config/maintenance.php:282 ../admin/view/index.php:24
1147
  msgid "is greater than"
1148
  msgstr "est plus grand que"
1149
 
1150
+ #: ../admin/config/maintenance.php:283 ../admin/view/index.php:25
1151
  msgid "is less than"
1152
  msgstr "est plus petit que"
1153
 
1154
+ #: ../admin/config/maintenance.php:284 ../admin/view/index.php:27
1155
  msgid "matches"
1156
  msgstr "correspond à"
1157
 
1158
+ #: ../admin/config/maintenance.php:285 ../admin/view/index.php:28
1159
  msgid "does not match"
1160
  msgstr "ne correspond pas à"
1161
 
1162
+ #: ../admin/config/maintenance.php:286 ../admin/view/index.php:29
1163
  msgid "is empty"
1164
  msgstr "est vide"
1165
 
1166
+ #: ../admin/config/maintenance.php:287 ../admin/view/index.php:30
1167
  msgid "is not empty"
1168
  msgstr "n'est pas vide"
1169
 
1170
+ #: ../admin/config/maintenance.php:290 ../admin/view/index.php:42
1171
  #: ../admin/view/index.php:105
1172
  msgid "Apply"
1173
  msgstr "Appliquer"
1174
 
1175
+ #: ../admin/config/maintenance.php:291
1176
  msgid ""
1177
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1178
  msgstr ""
1179
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT ces enregistrement de "
1180
  "votre base de données ?"
1181
 
1182
+ #: ../admin/config/maintenance.php:298
1183
  msgid ""
1184
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1185
  "database?"
1187
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1188
  "votre base de données ?"
1189
 
1190
+ #: ../admin/config/maintenance.php:298
1191
  #, fuzzy
1192
  msgid "Delete All Records"
1193
  msgstr "Supprimer toutes les pages vues"
1194
 
1195
+ #: ../admin/config/maintenance.php:301
1196
  #, fuzzy
1197
  msgid ""
1198
  "Erase all the information collected so far by Slimstat, including the "
1201
  "Effacer les informations collecter par WP Slimstat jusqu'à present. Cette "
1202
  "opération <strong>ne réinitialise pas </strong>vos paramétrages."
1203
 
1204
+ #: ../admin/config/maintenance.php:307
1205
  #, fuzzy
1206
  msgid ""
1207
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1210
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1211
  "votre base de données ?"
1212
 
1213
+ #: ../admin/config/maintenance.php:307
1214
  #, fuzzy
1215
  msgid "Delete Archive"
1216
  msgstr "Filtrer les pages vues pour que"
1217
 
1218
+ #: ../admin/config/maintenance.php:310
1219
  msgid "Erase all the archived records. This operation cannot be undone."
1220
  msgstr ""
1221
 
1222
+ #: ../admin/config/maintenance.php:316
1223
  msgid "Improve Performance"
1224
  msgstr "Improve la performance"
1225
 
1226
+ #: ../admin/config/maintenance.php:320
1227
  msgid ""
1228
  "Please note that you will need about 30% more DB space to store the extra "
1229
  "information required."
1231
  "Vous aurez besoin d'environ 30% de plus d'espace de base de données pour "
1232
  "stocker les informations supplémentaires nécessaires."
1233
 
1234
+ #: ../admin/config/maintenance.php:324
1235
  msgid "Save DB Space"
1236
  msgstr "Gagner de l'espace sur la taille de votre base de données"
1237
 
1238
+ #: ../admin/config/maintenance.php:327
1239
  msgid ""
1240
  "Please note that by removing table indexes, Slimstat's performance will be "
1241
  "affected."
1243
  "Merci de noter qu'en supprimant les indexes, les performances de WP "
1244
  "SlimStats seront impactées."
1245
 
1246
+ #: ../admin/config/maintenance.php:334
1247
  msgid ""
1248
  "Hold on tight, we are about to import all your old data. Are you sure you "
1249
  "want to proceed?"
1250
  msgstr ""
1251
 
1252
+ #: ../admin/config/maintenance.php:334
1253
  #, fuzzy
1254
  msgid "Import old data"
1255
  msgstr "Import-Export"
1256
 
1257
+ #: ../admin/config/maintenance.php:337
1258
  msgid ""
1259
  "Import all the records from the old table structure. No data will be deleted "
1260
  "from your database."
1261
  msgstr ""
1262
 
1263
+ #: ../admin/config/maintenance.php:341
1264
  msgid "MaxMind IP to Country"
1265
  msgstr ""
1266
 
1267
+ #: ../admin/config/maintenance.php:347
1268
  msgid ""
1269
  "Do you want to download and install the geolocation database from MaxMind's "
1270
  "server?"
1271
  msgstr ""
1272
 
1273
+ #: ../admin/config/maintenance.php:347
1274
  msgid "Install GeoLite DB"
1275
  msgstr ""
1276
 
1277
+ #: ../admin/config/maintenance.php:350
1278
  msgid "Do you want to uninstall the geolocation database?"
1279
  msgstr ""
1280
 
1281
+ #: ../admin/config/maintenance.php:350
1282
  msgid "Uninstall GeoLite DB"
1283
  msgstr ""
1284
 
1285
+ #: ../admin/config/maintenance.php:354
1286
  msgid ""
1287
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1288
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
1292
  "enable this functionality."
1293
  msgstr ""
1294
 
1295
+ #: ../admin/config/maintenance.php:359
1296
+ msgid "Import and Export"
1297
+ msgstr "Import-Export"
1298
+
1299
+ #: ../admin/config/maintenance.php:363
1300
+ #, fuzzy
1301
+ msgid ""
1302
+ "Here below you can find the current configuration string for Slimstat. You "
1303
+ "can update your settings by pasting a new string inside the text area and "
1304
+ "clicking the Import button."
1305
+ msgstr ""
1306
+ "Ci-après vous trouverez la configuration actuelle de la ligne de "
1307
+ "configuration. Vous pouvez mettre à jour vos réglages en collant une "
1308
+ "nouvelle ligne ci-après et en cliquant sur Import."
1309
+
1310
+ #: ../admin/config/maintenance.php:368
1311
+ msgid "Import"
1312
+ msgstr "Importer"
1313
+
1314
+ #: ../admin/config/maintenance.php:369
1315
+ msgid "Are you sure you want to OVERWRITE your current settings?"
1316
+ msgstr "Etes-vous sûr que vous voulez réinitialiser vos onglets?"
1317
+
1318
+ #: ../admin/config/maintenance.php:374
1319
+ msgid "Database Information"
1320
+ msgstr "Informations de base de données"
1321
+
1322
+ #: ../admin/config/maintenance.php:377
1323
+ msgid "Engine"
1324
+ msgstr "Moteur"
1325
+
1326
+ #: ../admin/config/maintenance.php:381
1327
+ msgid "switch to InnoDB"
1328
+ msgstr "changer pour InnoDB"
1329
+
1330
+ #: ../admin/config/maintenance.php:392
1331
+ msgid "records"
1332
+ msgstr "Enregistrements"
1333
+
1334
+ #: ../admin/view/addons.php:15
1335
+ msgid ""
1336
+ "There was an error retrieving the add-ons list from the server. Please try "
1337
+ "again later. Error Message:"
1338
+ msgstr ""
1339
+ "La liste des add-ons n'a pas pu être récupérée du serveur. Veuillez "
1340
+ "réessayer plus tard. Message d'erreur :"
1341
+
1342
+ #: ../admin/view/addons.php:25
1343
+ msgid ""
1344
+ "There was an error decoding the add-ons list from the server. Please try "
1345
+ "again later."
1346
+ msgstr ""
1347
+ "La liste des add-ons n'a pas pu être récupérée du serveur. Veuillez "
1348
+ "réessayer plus tard."
1349
+
1350
+ #: ../admin/view/addons.php:33
1351
+ msgid ""
1352
+ "Add-ons extend the functionality of Slimstat in many interesting ways. We "
1353
+ "offer both free and premium (paid) extensions. Each add-on can be installed "
1354
+ "as a separate plugin, which will receive regular updates via the WordPress "
1355
+ "Plugins panel. In order to be notified when a new version of a premium add-"
1356
+ "on is available, please enter the <strong>license key</strong> you received "
1357
+ "when you purchased it."
1358
+ msgstr ""
1359
+ "Les Add-ons rajoutent de nombreuses fonctionnalités intéressantes à WP "
1360
+ "Slimstat. Nous proposons une version gratuite et une version premium "
1361
+ "(payante). Chaque Add-on peut être installé séparément comme plugin et être "
1362
+ "mis à jour régulièrement via le panneau de gestion des plugins Wordpress. "
1363
+ "Afin d'être averti d'une nouvelle version premium, veuillez entrer le "
1364
+ "<strong>code de licence<strong> que vous avez reçu à l'achat."
1365
 
1366
+ #: ../admin/view/addons.php:37
1367
+ #, php-format
1368
  msgid ""
1369
+ "This list is refreshed once daily: <a href=\"%s&amp;force_refresh=true"
1370
+ "\">click here</a> to clear the cache."
 
1371
  msgstr ""
 
 
 
1372
 
1373
+ #: ../admin/view/addons.php:46
1374
+ msgid "Add-on"
1375
+ msgstr "Add-on"
1376
 
1377
+ #: ../admin/view/addons.php:46
1378
+ msgid "Description"
1379
+ msgstr "Description"
1380
 
1381
+ #: ../admin/view/addons.php:57
1382
+ #, fuzzy
1383
+ msgid "Repo Version"
1384
+ msgstr "la version CSS"
1385
 
1386
+ #: ../admin/view/addons.php:57
1387
+ #, fuzzy
1388
+ msgid "Version"
1389
+ msgstr "la version CSS"
1390
 
1391
+ #: ../admin/view/addons.php:69
1392
+ #, fuzzy
1393
+ msgid "Your Version:"
1394
+ msgstr "la version CSS"
1395
 
1396
+ #: ../admin/view/addons.php:72
1397
+ msgid "Installed and Active"
1398
+ msgstr ""
1399
 
1400
  #: ../admin/view/index.php:26
1401
  msgid "is between (x,y)"
1405
  msgid "Load"
1406
  msgstr ""
1407
 
1408
+ #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1397
1409
  msgid "Today"
1410
  msgstr "Aujourd'hui"
1411
 
1412
+ #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1400
1413
  msgid "Yesterday"
1414
  msgstr "Hier"
1415
 
1474
  "country of origin."
1475
  msgstr ""
1476
 
1477
+ #: ../admin/view/layout.php:40
1478
+ msgid "Customize and organize your reports"
1479
+ msgstr ""
1480
+
1481
+ #: ../admin/view/layout.php:41
1482
+ msgid ""
1483
+ "Drag and drop report placeholders from one container to another, to "
1484
+ "customize the information you want to see right away when you open Slimstat. "
1485
+ "Place two or more charts on the same view, clone reports or move them to the "
1486
+ "Inactive Reports container for improved performance. It is your website, and "
1487
+ "you know how metrics should be combined to get a clear picture of the "
1488
+ "traffic it generates.<br/><br/><strong>Note</strong>: if a placeholder is "
1489
+ "greyed out, it means that the corresponding report is currently hidden "
1490
+ "(Screen Options tab)."
1491
+ msgstr ""
1492
+
1493
+ #: ../admin/view/layout.php:53
1494
+ msgid "Clone"
1495
+ msgstr ""
1496
+
1497
+ #: ../admin/view/layout.php:57
1498
+ #, fuzzy
1499
+ msgid "Delete"
1500
+ msgstr "Filtrer les pages vues pour que"
1501
+
1502
  #: ../admin/view/right-now.php:12
1503
  msgid "Human"
1504
  msgstr "Humain"
1515
  msgid "Syndication Reader"
1516
  msgstr "Lecteur de Flux (Syndication)"
1517
 
1518
+ #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1031
1519
+ #: ../admin/view/wp-slimstat-reports.php:1706
1520
  msgid "No data to display"
1521
  msgstr "Aucune donnée à afficher"
1522
 
1525
  msgstr "Date/Heure"
1526
 
1527
  # Unknown
1528
+ #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1082
1529
+ #: ../admin/view/wp-slimstat-reports.php:1820 ../wp-slimstat.php:1409
1530
  msgid "c-"
1531
  msgstr "Inconnu"
1532
 
1533
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1534
+ #: ../admin/wp-slimstat-admin.php:846 ../admin/wp-slimstat-admin.php:886
1535
  msgid "Originating IP"
1536
  msgstr "IP d'origine"
1537
 
1538
+ #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1179
1539
+ #: ../admin/view/wp-slimstat-reports.php:1183
1540
+ msgid "Open this URL in a new window"
1541
+ msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1542
+
1543
+ #: ../admin/view/right-now.php:151
1544
+ msgid "Local search results page"
1545
+ msgstr "Page de résultat d'une recherche locale"
1546
+
1547
+ #: ../admin/view/right-now.php:156 ../admin/view/wp-slimstat-db.php:42
1548
+ #: ../admin/view/wp-slimstat-reports.php:257
1549
+ #: ../admin/view/wp-slimstat-reports.php:266
1550
+ #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
1551
+ msgid "Search Terms"
1552
+ msgstr "Termes de recherche"
1553
+
1554
+ #: ../admin/view/right-now.php:162
1555
  msgid "Server Latency and Page Speed in milliseconds"
1556
  msgstr "Latence du serveur et Rapidité de la page en millisecondes"
1557
 
1558
+ #: ../admin/view/right-now.php:162
1559
  msgid "SL"
1560
  msgstr "SL"
1561
 
1562
+ #: ../admin/view/right-now.php:162
1563
  msgid "PS"
1564
  msgstr "PS"
1565
 
1566
+ #: ../admin/view/right-now.php:169
1567
  #, fuzzy
1568
  msgid "Time spent on this page in seconds"
1569
  msgstr "Ouvrir cette page dans une nouvelle fenêtre"
1570
 
1571
+ #: ../admin/view/right-now.php:179
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1572
  msgid "Open this referrer in a new window"
1573
  msgstr "Ouvrir ce référent dans une nouvelle fenêtre"
1574
 
1575
+ #: ../admin/view/right-now.php:180
1576
  msgid "Open this outbound link in a new window"
1577
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1578
 
1579
+ #: ../admin/view/right-now.php:181
1580
  msgid "Content Type"
1581
  msgstr "Type de contenu"
1582
 
1583
+ #: ../admin/view/right-now.php:184
1584
  #, fuzzy
1585
  msgid "Delete this pageview"
1586
  msgstr "Filtrer les pages vues pour que"
1587
 
1588
+ #: ../admin/view/right-now.php:195
1589
+ #, fuzzy
1590
+ msgid "User Logged In"
1591
+ msgstr "User Agent"
1592
+
1593
+ #: ../admin/view/right-now.php:205
1594
+ #, fuzzy
1595
+ msgid "User Logged Out"
1596
+ msgstr "User Agent"
1597
+
1598
+ #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:862
1599
  msgid "Browser"
1600
  msgstr "Navigateur Web"
1601
 
1602
+ #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:863
1603
  msgid "Country Code"
1604
  msgstr "Code du pays"
1605
 
1607
  msgid "IP Address"
1608
  msgstr "Adresse IP"
1609
 
1610
+ #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:866
1611
  msgid "Language Code"
1612
  msgstr "Code langue"
1613
 
1614
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1615
+ #: ../admin/wp-slimstat-admin.php:867
1616
  msgid "Operating System"
1617
  msgstr "Système d'exploitation (OS)"
1618
 
1619
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1620
+ #: ../admin/wp-slimstat-admin.php:868
1621
  msgid "Permalink"
1622
  msgstr "Permalien"
1623
 
1624
+ #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:869
1625
  msgid "Referer"
1626
  msgstr "Référent"
1627
 
1628
+ #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:870
1629
  msgid "Visitor's Name"
1630
  msgstr "le nom des visiteurs"
1631
 
1632
+ #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:852
1633
  msgid "Outbound Link"
1634
  msgstr "Lien sortant"
1635
 
1642
  msgstr "-- Filtres Avancés --"
1643
 
1644
  #: ../admin/view/wp-slimstat-db.php:52
1645
+ #: ../admin/view/wp-slimstat-reports.php:373
1646
  msgid "Browser Capabilities"
1647
  msgstr "Capacités des Navigateurs"
1648
 
1649
+ #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:881
1650
  msgid "Browser Version"
1651
  msgstr "Version de navigateur"
1652
 
1653
+ #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:882
1654
  msgid "Browser Type"
1655
  msgstr "le type de navigateur Web"
1656
 
1657
+ #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:851
1658
  msgid "User Agent"
1659
  msgstr "User Agent"
1660
 
1667
  msgid "Server Latency"
1668
  msgstr "Latence du serveur"
1669
 
1670
+ #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:884
1671
  msgid "Post Author"
1672
  msgstr "l'auteur de l'article"
1673
 
1674
+ #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:885
1675
  msgid "Post Category ID"
1676
  msgstr "ID de la catégorie de l'article"
1677
 
1678
+ #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:887
1679
  msgid "Resource Content Type"
1680
  msgstr "le type de source de contenu"
1681
 
1696
  msgid "Viewport Size"
1697
  msgstr ""
1698
 
1699
+ #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:889
1700
  msgid "Visit ID"
1701
  msgstr "Visites ID"
1702
 
1742
  msgstr "Contenus récents"
1743
 
1744
  #: ../admin/view/wp-slimstat-db.php:96
1745
+ #: ../admin/view/wp-slimstat-reports.php:1720
1746
  msgid "Type"
1747
  msgstr ""
1748
 
1765
  msgid "Offset"
1766
  msgstr ""
1767
 
1768
+ #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:483
1769
+ #: ../wp-slimstat.php:1793
1770
  msgid "Access Log"
1771
  msgstr ""
1772
 
1773
+ #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:484
1774
+ #: ../admin/wp-slimstat-admin.php:499 ../wp-slimstat.php:1794
1775
  msgid "Overview"
1776
  msgstr "Vue générale"
1777
 
1778
+ #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:485
1779
+ #: ../admin/wp-slimstat-admin.php:500 ../wp-slimstat.php:1795
1780
  msgid "Audience"
1781
  msgstr "Audience"
1782
 
1783
+ #: ../admin/view/wp-slimstat-reports.php:24 ../admin/wp-slimstat-admin.php:486
1784
+ #: ../admin/wp-slimstat-admin.php:501 ../wp-slimstat.php:1796
1785
  msgid "Site Analysis"
1786
  msgstr "Analyse du site"
1787
 
1788
+ #: ../admin/view/wp-slimstat-reports.php:25
1789
+ #: ../admin/view/wp-slimstat-reports.php:516
1790
+ #: ../admin/wp-slimstat-admin.php:487 ../admin/wp-slimstat-admin.php:502
1791
+ #: ../wp-slimstat.php:1797
1792
  msgid "Traffic Sources"
1793
  msgstr "Sources de trafic"
1794
 
1795
+ #: ../admin/view/wp-slimstat-reports.php:26
1796
+ #: ../admin/view/wp-slimstat-reports.php:1364
1797
+ #: ../admin/wp-slimstat-admin.php:488 ../admin/wp-slimstat-admin.php:503
1798
+ #: ../wp-slimstat.php:1798
1799
+ #, fuzzy
1800
+ msgid "Geolocation"
1801
+ msgstr "Ordre de tri"
1802
+
1803
+ #: ../admin/view/wp-slimstat-reports.php:27
1804
+ #, fuzzy
1805
+ msgid "WordPress Dashboard"
1806
+ msgstr "Intégration WordPress"
1807
+
1808
+ #: ../admin/view/wp-slimstat-reports.php:28
1809
+ #, fuzzy
1810
+ msgid "Inactive Reports"
1811
+ msgstr "Réinitialiser les rapports"
1812
 
1813
+ #: ../admin/view/wp-slimstat-reports.php:77
1814
  msgid "Chart controls"
1815
  msgstr "Contrôle du graphique"
1816
 
1817
+ #: ../admin/view/wp-slimstat-reports.php:77
1818
  msgid "Use your mouse wheel to zoom in and out"
1819
  msgstr "Utilisez la molette de votre souris pour zoomer et dézoomer"
1820
 
1821
+ #: ../admin/view/wp-slimstat-reports.php:77
1822
  msgid "While zooming in, drag the chart to move to a different area"
1823
  msgstr ""
1824
  "Alors que le zoom avant est activé, faites glisser la carte pour passer à "
1825
  "une autre zone"
1826
 
1827
+ #: ../admin/view/wp-slimstat-reports.php:80
1828
+ #, fuzzy
1829
+ msgid "Social Sharing Analytics"
1830
+ msgstr "Analyse du site"
 
 
 
 
 
1831
 
1832
+ #: ../admin/view/wp-slimstat-reports.php:87
1833
  #, fuzzy
1834
  msgid "Visitors Activity"
1835
  msgstr "Statistiques de fréquentation"
1836
 
1837
+ #: ../admin/view/wp-slimstat-reports.php:96
1838
  msgid "Color codes"
1839
  msgstr "Codes couleur"
1840
 
1841
+ #: ../admin/view/wp-slimstat-reports.php:96
1842
  msgid "From search result page"
1843
  msgstr "Depuis un moteur de recherche"
1844
 
1845
+ #: ../admin/view/wp-slimstat-reports.php:96 ../admin/wp-slimstat-admin.php:844
 
1846
  msgid "Known Visitor"
1847
  msgstr "Visiteurs connus"
1848
 
1849
+ #: ../admin/view/wp-slimstat-reports.php:96
1850
  msgid "Known Users"
1851
  msgstr "Utilisateurs connus"
1852
 
1853
+ #: ../admin/view/wp-slimstat-reports.php:96
1854
  msgid "Other Humans"
1855
  msgstr "Autres humains"
1856
 
1857
+ #: ../admin/view/wp-slimstat-reports.php:96
1858
  msgid "Bot or Crawler"
1859
  msgstr "Robot ou Crawler"
1860
 
1861
+ #: ../admin/view/wp-slimstat-reports.php:118
1862
  msgid "About Slimstat"
1863
  msgstr "À propos de WP-SlimStat"
1864
 
1865
+ #: ../admin/view/wp-slimstat-reports.php:127
1866
  #, fuzzy
1867
  msgid "Traffic at a Glance"
1868
  msgstr "Brièvement"
1869
 
1870
+ #: ../admin/view/wp-slimstat-reports.php:137
1871
  msgid "Currently Online"
1872
  msgstr "Actuellement en ligne"
1873
 
1874
+ #: ../admin/view/wp-slimstat-reports.php:150
1875
  msgid "Recent Search Terms"
1876
  msgstr "Derniers Termes de Recherches"
1877
 
1878
+ #: ../admin/view/wp-slimstat-reports.php:160
1879
  msgid "Keywords used by your visitors to find your website on a search engine."
1880
  msgstr ""
1881
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
1882
  "de recherche."
1883
 
1884
+ #: ../admin/view/wp-slimstat-reports.php:163
1885
+ #, fuzzy
1886
+ msgid "Top Web Pages"
1887
  msgstr "Top Pages Vues"
1888
 
1889
+ #: ../admin/view/wp-slimstat-reports.php:174
1890
  msgid ""
1891
+ "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1892
+ "site, including posts, products, categories, and so on. You can set the "
1893
+ "corresponding filter where Resource Content Type equals cpt:"
1894
+ "you_cpt_slug_here to get top web pages for a specific custom post type you "
1895
+ "have."
1896
  msgstr ""
1897
 
1898
+ #: ../admin/view/wp-slimstat-reports.php:177
1899
  msgid "Top Traffic Sources"
1900
  msgstr "Top Sources de Trafic"
1901
 
1902
+ #: ../admin/view/wp-slimstat-reports.php:189
1903
  msgid "Top Known Visitors"
1904
  msgstr "Top Visiteurs Connus"
1905
 
1906
+ #: ../admin/view/wp-slimstat-reports.php:200
1907
  msgid "Top Search Terms"
1908
  msgstr "Top Termes de Recherche"
1909
 
1910
+ #: ../admin/view/wp-slimstat-reports.php:211
1911
  msgid "Top Countries"
1912
  msgstr "Pays les plus récurrents"
1913
 
1914
+ #: ../admin/view/wp-slimstat-reports.php:220
1915
  msgid ""
1916
  "You can configure Slimstat to ignore a specific Country by setting the "
1917
  "corresponding filter under Settings > Slimstat > Filters."
1919
  "Vous pouvez configurer WP SlimStat afin d'ignorer un pays spécifique en "
1920
  "définissant le filtre correspondant sous SlimStat> Paramètres> Filtres."
1921
 
1922
+ #: ../admin/view/wp-slimstat-reports.php:223
1923
  msgid "Rankings"
1924
  msgstr "Classements"
1925
 
1926
+ #: ../admin/view/wp-slimstat-reports.php:227
1927
  msgid ""
1928
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1929
  "measures your site's rankings. Values are updated every 12 hours. Filters "
1934
  "12 heures. Les filtres indiqués ci-dessus ne sont pas pris en compte dans ce "
1935
  "rapport."
1936
 
1937
+ #: ../admin/view/wp-slimstat-reports.php:230
1938
  msgid "Top Language Families"
1939
  msgstr "Top Langues"
1940
 
1941
+ #: ../admin/view/wp-slimstat-reports.php:243
1942
  #, fuzzy
1943
  msgid "Users Currently Online"
1944
  msgstr "Actuellement en ligne"
1945
 
1946
+ #: ../admin/view/wp-slimstat-reports.php:254
1947
  msgid ""
1948
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1949
  "Slimstat leverages this information to identify returning visitors. Please "
1953
  "attribue un cookie. WP SlimStat exploite ces informations pour identifier "
1954
  "les visiteurs qui reviennent, y compris les utilisateurs enregistrés."
1955
 
1956
+ #: ../admin/view/wp-slimstat-reports.php:267
1957
+ #, fuzzy
1958
+ msgid "Unique Terms"
1959
+ msgstr "IPs uniques"
1960
+
1961
+ #: ../admin/view/wp-slimstat-reports.php:276
1962
  msgid "Human Visits"
1963
  msgstr "Visiteurs humains"
1964
 
1965
+ #: ../admin/view/wp-slimstat-reports.php:285
1966
+ #: ../admin/view/wp-slimstat-reports.php:1431
1967
+ msgid "Visits"
1968
+ msgstr "Visites"
1969
+
1970
+ #: ../admin/view/wp-slimstat-reports.php:295
1971
  msgid "Audience Overview"
1972
  msgstr "Vue générale"
1973
 
1974
+ #: ../admin/view/wp-slimstat-reports.php:302
1975
  msgid ""
1976
  "Where not otherwise specified, the metrics in this report are referred to "
1977
  "human visitors."
1978
  msgstr ""
1979
 
1980
+ #: ../admin/view/wp-slimstat-reports.php:305
1981
  msgid "Top Languages"
1982
  msgstr "Top Langues"
1983
 
1984
+ #: ../admin/view/wp-slimstat-reports.php:316
1985
  msgid "Top Browsers"
1986
  msgstr "Principaux navigateurs"
1987
 
1988
+ #: ../admin/view/wp-slimstat-reports.php:327
1989
  msgid "Top Service Providers"
1990
  msgstr "Top Fournisseur d'Accès"
1991
 
1992
+ #: ../admin/view/wp-slimstat-reports.php:336
1993
+ #: ../admin/view/wp-slimstat-reports.php:348
1994
  msgid ""
1995
  "Internet Service Provider: a company which provides other companies or "
1996
  "individuals with access to the Internet. Your DSL or cable internet service "
2003
  "spécifiques en définissant le filtre correspondant sous SlimStat> Réglages> "
2004
  "Filtres."
2005
 
2006
+ #: ../admin/view/wp-slimstat-reports.php:339
2007
  msgid "Top Operating Systems"
2008
  msgstr "Top Systèmes d'Exploitation"
2009
 
2010
+ #: ../admin/view/wp-slimstat-reports.php:351
2011
  msgid "Top Screen Resolutions"
2012
  msgstr "Top Résolutions d'écran"
2013
 
2014
+ #: ../admin/view/wp-slimstat-reports.php:362
2015
  #, fuzzy
2016
  msgid "Top Viewport Sizes"
2017
  msgstr "Top Catégories"
2018
 
2019
+ #: ../admin/view/wp-slimstat-reports.php:382
2020
  msgid "Visit Duration"
2021
  msgstr "Durée des Visites"
2022
 
2023
+ #: ../admin/view/wp-slimstat-reports.php:389
2024
  #, fuzzy
2025
  msgid ""
2026
  "All values represent the percentages of pageviews within the corresponding "
2029
  "Carte du monde - Les valeurs représentent le pourcentage des accès provenant "
2030
  "de ce pays"
2031
 
2032
+ #: ../admin/view/wp-slimstat-reports.php:392
2033
  msgid "Recent Countries"
2034
  msgstr "Derniers Pays"
2035
 
2036
+ #: ../admin/view/wp-slimstat-reports.php:403
2037
  #, fuzzy
2038
  msgid "Recent Viewport Sizes"
2039
  msgstr "Dernières Catégories"
2040
 
2041
+ #: ../admin/view/wp-slimstat-reports.php:414
2042
  msgid "Recent Operating Systems"
2043
  msgstr "Derniers Systèmes d'Exploitation"
2044
 
2045
+ #: ../admin/view/wp-slimstat-reports.php:425
2046
  msgid "Recent Browsers"
2047
  msgstr "Navigateurs récents"
2048
 
2049
+ #: ../admin/view/wp-slimstat-reports.php:436
2050
  msgid "Recent Languages"
2051
  msgstr "Dernier Language"
2052
 
2053
+ #: ../admin/view/wp-slimstat-reports.php:447
2054
  msgid "Top Browser Families"
2055
  msgstr "Principales familles de navigateurs"
2056
 
2057
+ #: ../admin/view/wp-slimstat-reports.php:456
2058
  msgid ""
2059
  "This report shows you what user agent families (no version considered) are "
2060
  "popular among your visitors."
2062
  "Ce rapport affiche quelles familles d'user agent (sans prise en compte de "
2063
  "version) sont populaires chez vos visiteurs."
2064
 
2065
+ #: ../admin/view/wp-slimstat-reports.php:459
2066
  msgid "Top OS Families"
2067
  msgstr "Principales familles de SO"
2068
 
2069
+ #: ../admin/view/wp-slimstat-reports.php:470
2070
  msgid ""
2071
  "This report shows you what operating system families (no version considered) "
2072
  "are popular among your visitors."
2074
  "Ce rapport affiche quelles familles de système d'exploitation (sans prise en "
2075
  "compte de version) sont populaires chez vos visiteurs."
2076
 
2077
+ #: ../admin/view/wp-slimstat-reports.php:473
2078
  msgid "Recent Users"
2079
  msgstr "Utilisateurs récents"
2080
 
2081
+ #: ../admin/view/wp-slimstat-reports.php:485
2082
  msgid "Top Users"
2083
  msgstr "Principaux utilisateurs"
2084
 
2085
+ #: ../admin/view/wp-slimstat-reports.php:497
2086
+ #: ../admin/view/wp-slimstat-reports.php:506
2087
+ msgid "Users"
2088
+ msgstr "Utilisateurs"
2089
+
2090
+ #: ../admin/view/wp-slimstat-reports.php:507
2091
+ #, fuzzy
2092
+ msgid "Unique Users"
2093
+ msgstr "IPs uniques"
2094
+
2095
+ #: ../admin/view/wp-slimstat-reports.php:525
2096
+ msgid "Domains"
2097
+ msgstr "Domaines"
2098
+
2099
+ #: ../admin/view/wp-slimstat-reports.php:535
2100
  #, fuzzy
2101
  msgid "Traffic Summary"
2102
  msgstr "Sources de trafic"
2103
 
2104
+ #: ../admin/view/wp-slimstat-reports.php:544
2105
  msgid "Top Referring Search Engines"
2106
  msgstr "Top Moteurs de Recherche"
2107
 
2108
+ #: ../admin/view/wp-slimstat-reports.php:571
2109
  msgid "Recent Outbound Links"
2110
  msgstr "Liens sortants récents"
2111
 
2112
+ #: ../admin/view/wp-slimstat-reports.php:583
2113
  msgid "Recent Posts"
2114
  msgstr "Contenus récents"
2115
 
2116
+ #: ../admin/view/wp-slimstat-reports.php:611
2117
  msgid "Recent Feeds"
2118
  msgstr "Flux récents"
2119
 
2120
+ #: ../admin/view/wp-slimstat-reports.php:623
2121
  msgid "Recent Pages Not Found"
2122
  msgstr "Dernières pages non trouvées"
2123
 
2124
+ #: ../admin/view/wp-slimstat-reports.php:635
2125
  msgid "Recent Internal Searches"
2126
  msgstr "Recherches internes récentes"
2127
 
2128
+ #: ../admin/view/wp-slimstat-reports.php:645
2129
  #, fuzzy
2130
  msgid "Searches performed using WordPress' built-in search functionality."
2131
  msgstr ""
2132
  "Recherches effectuées en utilisant la fonctionnalité de recherche intégrée "
2133
  "dans Wordpress."
2134
 
2135
+ #: ../admin/view/wp-slimstat-reports.php:648
2136
  msgid "Top Categories"
2137
  msgstr "Top Catégories"
2138
 
2139
+ #: ../admin/view/wp-slimstat-reports.php:661
2140
  msgid "Top Downloads"
2141
  msgstr "Top Téléchargements"
2142
 
2143
+ #: ../admin/view/wp-slimstat-reports.php:672
2144
  msgid ""
2145
  "You can configure Slimstat to track specific file extensions as downloads."
2146
  msgstr ""
2147
 
2148
+ #: ../admin/view/wp-slimstat-reports.php:675
2149
  msgid "Recent Events"
2150
  msgstr "Evènements Récents"
2151
 
2152
+ #: ../admin/view/wp-slimstat-reports.php:684
2153
+ #: ../admin/view/wp-slimstat-reports.php:708
2154
  #, fuzzy
2155
  msgid ""
2156
  "This report lists any <em>event</em> occurred on your website. Please refer "
2160
  "web. S'il vous plaît se référer à la FAQ pour plus d'informations sur la "
2161
  "façon de tirer parti de cette fonctionnalité."
2162
 
2163
+ #: ../admin/view/wp-slimstat-reports.php:687
2164
  msgid "Top Posts"
2165
  msgstr "Top Posts"
2166
 
2167
+ #: ../admin/view/wp-slimstat-reports.php:699
2168
  #, fuzzy
2169
  msgid "Top Events"
2170
  msgstr "Contenus récents"
2171
 
2172
+ #: ../admin/view/wp-slimstat-reports.php:711
2173
  msgid "Top Internal Searches"
2174
  msgstr "Top Recherches Internes"
2175
 
2176
+ #: ../admin/view/wp-slimstat-reports.php:723
2177
  msgid "Recent Categories"
2178
  msgstr "Dernières Catégories"
2179
 
2180
+ #: ../admin/view/wp-slimstat-reports.php:735
2181
  msgid "Top Pages Not Found"
2182
  msgstr "Top Pages non trouvées"
2183
 
2184
+ #: ../admin/view/wp-slimstat-reports.php:747
2185
  msgid "Top Authors"
2186
  msgstr "Top Auteurs"
2187
 
2188
+ #: ../admin/view/wp-slimstat-reports.php:758
2189
  msgid "Top Tags"
2190
  msgstr "Top Mots Clés"
2191
 
2192
+ #: ../admin/view/wp-slimstat-reports.php:770
2193
  msgid "Recent Downloads"
2194
  msgstr "Téléchargements récents"
2195
 
2196
+ #: ../admin/view/wp-slimstat-reports.php:782
2197
  #, fuzzy
2198
  msgid "Top Outbound Links"
2199
  msgstr "Lien sortant"
2200
 
2201
+ #: ../admin/view/wp-slimstat-reports.php:794
2202
  msgid "Your Website"
2203
  msgstr "Votre site web"
2204
 
2205
+ #: ../admin/view/wp-slimstat-reports.php:801
2206
  msgid ""
2207
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2208
  "this report is not affected by the filters set here above."
2210
  "Votre contenu en bref : Posts, commentaires, pingbacks, etc. Merci de noter "
2211
  "que ce rpport ne prend pas en compte les filtres ci-dessus."
2212
 
2213
+ #: ../admin/view/wp-slimstat-reports.php:804
2214
  #, fuzzy
2215
  msgid "Top Bounce Pages"
2216
  msgstr "Pages de Rebonds"
2217
 
2218
+ #: ../admin/view/wp-slimstat-reports.php:817
2219
  #, fuzzy
2220
  msgid "Top Exit Pages"
2221
  msgstr "Top Pages Vues"
2222
 
2223
+ #: ../admin/view/wp-slimstat-reports.php:830
2224
  #, fuzzy
2225
  msgid "Top Entry Pages"
2226
  msgstr "Top Pages Vues"
2227
 
2228
+ #: ../admin/view/wp-slimstat-reports.php:843
2229
+ #: ../admin/view/wp-slimstat-reports.php:852
2230
+ #, fuzzy
2231
+ msgid "Outbound Links"
2232
+ msgstr "Lien sortant"
2233
+
2234
+ #: ../admin/view/wp-slimstat-reports.php:853
2235
+ msgid "Unique Outbound"
2236
+ msgstr ""
2237
+
2238
+ #: ../admin/view/wp-slimstat-reports.php:862
2239
  msgid "World Map"
2240
  msgstr "Carte du monde"
2241
 
2242
+ #: ../admin/view/wp-slimstat-reports.php:944
2243
  msgid "Refresh"
2244
  msgstr "Rafraichir"
2245
 
2246
+ #: ../admin/view/wp-slimstat-reports.php:981
2247
  #, php-format
2248
  msgid "Results %s - %s of %s"
2249
  msgstr "Résultats %s - %s de %s"
2250
 
2251
+ #: ../admin/view/wp-slimstat-reports.php:983
2252
  msgid "Refresh in"
2253
  msgstr "Rafraichir dans "
2254
 
2255
+ #: ../admin/view/wp-slimstat-reports.php:1076
2256
  msgid "Category ID"
2257
  msgstr "l'ID de la catégorie de l'article"
2258
 
2259
+ #: ../admin/view/wp-slimstat-reports.php:1081
2260
+ #: ../admin/view/wp-slimstat-reports.php:1096
2261
+ #: ../admin/view/wp-slimstat-reports.php:1102
2262
  #, fuzzy
2263
  msgid "Code"
2264
  msgstr "Code OS "
2265
 
2266
  # Unknown
2267
+ #: ../admin/view/wp-slimstat-reports.php:1097
2268
+ #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1421
2269
  msgid "l-"
2270
  msgstr "Inconnue"
2271
 
2272
+ #: ../admin/view/wp-slimstat-reports.php:1114
2273
  msgid "URL"
2274
  msgstr ""
2275
 
2276
+ #: ../admin/view/wp-slimstat-reports.php:1127
2277
  msgid "Referrer"
2278
  msgstr "Référent"
2279
 
2280
+ #: ../admin/view/wp-slimstat-reports.php:1168
2281
+ #: ../admin/view/wp-slimstat-reports.php:1415
2282
+ #: ../admin/view/wp-slimstat-reports.php:1471
2283
+ #: ../admin/view/wp-slimstat-reports.php:1477
2284
+ #: ../admin/view/wp-slimstat-reports.php:1483
2285
+ #: ../admin/view/wp-slimstat-reports.php:1489
2286
+ #: ../admin/view/wp-slimstat-reports.php:1495
2287
+ #: ../admin/view/wp-slimstat-reports.php:1501
2288
+ #: ../admin/view/wp-slimstat-reports.php:1507
2289
+ #: ../admin/view/wp-slimstat-reports.php:1727
2290
  msgid "Hits"
2291
  msgstr "Hits"
2292
 
2293
+ #: ../admin/view/wp-slimstat-reports.php:1342
 
 
 
 
 
 
 
 
 
2294
  #, fuzzy
2295
  msgid "Dataset Size"
2296
  msgstr "Taille de la base de données"
2297
 
2298
+ #: ../admin/view/wp-slimstat-reports.php:1344
2299
  msgid "Total number of records stored in the database."
2300
  msgstr ""
2301
 
2302
+ #: ../admin/view/wp-slimstat-reports.php:1346
2303
  msgid "DB Size"
2304
  msgstr "Taille de la base de données"
2305
 
2306
+ #: ../admin/view/wp-slimstat-reports.php:1349
2307
  #, fuzzy
2308
  msgid "Tracking Enabled"
2309
  msgstr "Mode traçage"
2310
 
2311
+ #: ../admin/view/wp-slimstat-reports.php:1352
2312
  msgid "Javascript Mode"
2313
  msgstr "Mode Javascript"
2314
 
2315
+ #: ../admin/view/wp-slimstat-reports.php:1355
2316
  msgid "Tracking Browser Caps"
2317
  msgstr "Traçage Capacités Navigateurs"
2318
 
2319
+ #: ../admin/view/wp-slimstat-reports.php:1358
2320
  msgid "Auto purge"
2321
  msgstr "Purge automatique"
2322
 
2323
+ #: ../admin/view/wp-slimstat-reports.php:1361
2324
  msgid "Oldest pageview"
2325
  msgstr "Plus ancienne page vue"
2326
 
2327
+ #: ../admin/view/wp-slimstat-reports.php:1362
2328
  msgid "No visits"
2329
  msgstr "Aucune visite"
2330
 
2331
+ #: ../admin/view/wp-slimstat-reports.php:1366
 
 
 
 
 
2332
  msgid "Date when the MaxMind Geolocation database was last updated."
2333
  msgstr ""
2334
 
2335
+ #: ../admin/view/wp-slimstat-reports.php:1377
2336
+ #: ../admin/view/wp-slimstat-reports.php:1535
2337
  msgid ""
2338
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2339
  "the tracking code is executed."
2341
  "Une demande pour charger un fichier HTML. WP SlimStat enregistre un \"pages "
2342
  "vues \" chaque fois que le code de traçage est exécuté."
2343
 
2344
+ #: ../admin/view/wp-slimstat-reports.php:1379
2345
  #, fuzzy
2346
  msgid "Days in Range"
2347
  msgstr "Intervalle de date"
2348
 
2349
+ #: ../admin/view/wp-slimstat-reports.php:1382
2350
  #, fuzzy
2351
  msgid "Average Daily Pageviews"
2352
  msgstr "Nombre de pages vues en moyenne"
2353
 
2354
+ #: ../admin/view/wp-slimstat-reports.php:1384
2355
  #, fuzzy
2356
  msgid ""
2357
  "How many pages have been visited on average every day during the current "
2359
  msgstr ""
2360
  "Combien de pages ont été visitées en moyenne au cours de la période en cours."
2361
 
2362
+ #: ../admin/view/wp-slimstat-reports.php:1386
2363
  msgid "From Search Results"
2364
  msgstr "Résultat de recherches"
2365
 
2366
+ #: ../admin/view/wp-slimstat-reports.php:1388
2367
  msgid ""
2368
  "Visitors who landed on your site after searching for a keyword on Google, "
2369
  "Yahoo, etc."
2371
  "Visiteurs qui sont arrivés sur votre site après une recherche par mots clés "
2372
  "sur Google, Yahoo, etc"
2373
 
2374
+ #: ../admin/view/wp-slimstat-reports.php:1392
2375
  msgid ""
2376
  "Used to differentiate between multiple requests to download a file from one "
2377
  "internet address (IP) and requests originating from many distinct addresses"
2380
  "fichier à partir d'une adresse Internet (IP) unique et les demandes "
2381
  "provenant de plusieurs adresses distinctes"
2382
 
2383
+ #: ../admin/view/wp-slimstat-reports.php:1394
2384
  msgid "Last 30 minutes"
2385
  msgstr "30 dernières minutes"
2386
 
2387
+ #: ../admin/view/wp-slimstat-reports.php:1433
2388
  msgid ""
2389
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2390
  "multiple times if they perform multiple visits."
2393
  "reviennent sont comptés plusieurs fois s'ils effectuent des visites "
2394
  "multiples."
2395
 
2396
+ #: ../admin/view/wp-slimstat-reports.php:1437
2397
  msgid "It includes only traffic generated by human visitors."
2398
  msgstr "Cela ne comprend que les visites dites humaines."
2399
 
2400
+ #: ../admin/view/wp-slimstat-reports.php:1439
2401
  msgid "Bounce rate"
2402
  msgstr "Taux de rebond"
2403
 
2404
+ #: ../admin/view/wp-slimstat-reports.php:1441
2405
  msgid ""
2406
  "Percentage of single-page visits, i.e. visits in which the person left your "
2407
  "site from the entrance page."
2409
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
2410
  "desquelles la personne a quitté votre site dès la page d'entrée."
2411
 
2412
+ #: ../admin/view/wp-slimstat-reports.php:1443
2413
  msgid "Known visitors"
2414
  msgstr "Visiteurs connus"
2415
 
2416
+ #: ../admin/view/wp-slimstat-reports.php:1445
2417
  msgid "Visitors who had previously left a comment on your blog."
2418
  msgstr "Visiteurs qui ont déjà laissé un commentaire sur votre blog."
2419
 
2420
+ #: ../admin/view/wp-slimstat-reports.php:1447
2421
  msgid "New visitors"
2422
  msgstr "Nouveaux visiteurs"
2423
 
2424
+ #: ../admin/view/wp-slimstat-reports.php:1449
2425
  msgid "Human users who visited your site only once."
2426
  msgstr "Visiteurs humains qui ont visité votre site une seule fois."
2427
 
2428
+ #: ../admin/view/wp-slimstat-reports.php:1451
2429
  msgid "Bots"
2430
  msgstr "Robots"
2431
 
2432
+ #: ../admin/view/wp-slimstat-reports.php:1454
2433
+ #, fuzzy
2434
+ msgid "Pageviews per visit"
2435
  msgstr "Pages vues par visite"
2436
 
2437
+ #: ../admin/view/wp-slimstat-reports.php:1457
2438
  msgid "Longest visit"
2439
  msgstr "Visite la plus longue"
2440
 
2441
+ #: ../admin/view/wp-slimstat-reports.php:1458
2442
  msgid "hits"
2443
  msgstr "hits"
2444
 
2445
+ #: ../admin/view/wp-slimstat-reports.php:1469
2446
  msgid "0 - 30 seconds"
2447
  msgstr "0 - 30 secondes"
2448
 
2449
+ #: ../admin/view/wp-slimstat-reports.php:1475
2450
  msgid "31 - 60 seconds"
2451
  msgstr "31 - 60 secondes"
2452
 
2453
+ #: ../admin/view/wp-slimstat-reports.php:1481
2454
  msgid "1 - 3 minutes"
2455
  msgstr "1 - 3 minutes"
2456
 
2457
+ #: ../admin/view/wp-slimstat-reports.php:1487
2458
  msgid "3 - 5 minutes"
2459
  msgstr "3 - 5 minutes"
2460
 
2461
+ #: ../admin/view/wp-slimstat-reports.php:1493
2462
  msgid "5 - 7 minutes"
2463
  msgstr "5 - 7 minutes"
2464
 
2465
+ #: ../admin/view/wp-slimstat-reports.php:1499
2466
  msgid "7 - 10 minutes"
2467
  msgstr "7 - 10 minutes"
2468
 
2469
+ #: ../admin/view/wp-slimstat-reports.php:1505
2470
  msgid "More than 10 minutes"
2471
  msgstr "Plus de 10 minutes"
2472
 
2473
+ #: ../admin/view/wp-slimstat-reports.php:1517
2474
  #, fuzzy
2475
  msgid "Average visit duration"
2476
  msgstr "Durée des Visites"
2477
 
2478
+ #: ../admin/view/wp-slimstat-reports.php:1537
2479
  msgid "Unique Referrers"
2480
  msgstr "Référents uniques"
2481
 
2482
+ #: ../admin/view/wp-slimstat-reports.php:1539
2483
  msgid ""
2484
  "A referrer (or referring site) is the site that a visitor previously visited "
2485
  "before following a link to your site."
2487
  "Un référent (ou site référent) est le site que le visiteur a visité avant de "
2488
  "suivre un lien vers votre site."
2489
 
2490
+ #: ../admin/view/wp-slimstat-reports.php:1541
2491
  msgid "Direct Pageviews"
2492
  msgstr "Pages Vues Directes"
2493
 
2494
+ #: ../admin/view/wp-slimstat-reports.php:1543
2495
  msgid ""
2496
  "Visitors who visited the site by typing the URL directly into their browser. "
2497
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
2504
  "courriels non marquées, ou des liens à partir de documents qui ne "
2505
  "contiennent pas de variables de suivi."
2506
 
2507
+ #: ../admin/view/wp-slimstat-reports.php:1545
2508
  msgid "From a search result"
2509
  msgstr "Depuis un moteur de recherche"
2510
 
2511
+ #: ../admin/view/wp-slimstat-reports.php:1547
2512
  msgid ""
2513
  "Visitors who came to your site via searches on Google or some other search "
2514
  "engine."
2516
  "Visiteurs qui sont venus sur le site via un moteur de recherche comme Google "
2517
  "ou autre."
2518
 
2519
+ #: ../admin/view/wp-slimstat-reports.php:1549
2520
  msgid "Unique Landing Pages"
2521
  msgstr "Pages d'Entrées Uniques"
2522
 
2523
+ #: ../admin/view/wp-slimstat-reports.php:1551
2524
  msgid ""
2525
  "The first page that a user views during a session. This is also known as the "
2526
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
2532
  "mots clés 'Brooklyn Office Space' et arrive sur votre page d'accueil, elle "
2533
  "sera comptée (pour cette visite) comme la page d'entrée."
2534
 
2535
+ #: ../admin/view/wp-slimstat-reports.php:1553
2536
  msgid "Bounce Pages"
2537
  msgstr "Pages de Rebonds"
2538
 
2539
+ #: ../admin/view/wp-slimstat-reports.php:1555
2540
  #, fuzzy
2541
  msgid "Number of single page visits to your site over the selected period."
2542
  msgstr ""
2543
  "Nombre de visites d'une seule page de votre site au cours de la période "
2544
  "sélectionnée."
2545
 
2546
+ #: ../admin/view/wp-slimstat-reports.php:1557
2547
  msgid "New Visitors Rate"
2548
  msgstr "Taux de Nouveaux Visiteurs"
2549
 
2550
+ #: ../admin/view/wp-slimstat-reports.php:1559
2551
  #, fuzzy
2552
  msgid ""
2553
  "Percentage of single page visits, i.e. visits in which the person left your "
2556
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
2557
  "desquelles la personne a quitté votre site dès la page d'entrée."
2558
 
2559
+ #: ../admin/view/wp-slimstat-reports.php:1561
2560
  msgid "Currently from search engines"
2561
  msgstr "Moteurs de recherche récents"
2562
 
2563
+ #: ../admin/view/wp-slimstat-reports.php:1563
2564
  msgid ""
2565
  "Visitors who visited the site in the last 5 minutes coming from a search "
2566
  "engine."
2568
  "Visiteurs qui ont visité le site dans les 5 dernières visites, provenant "
2569
  "d'un moteur de recherche."
2570
 
2571
+ #: ../admin/view/wp-slimstat-reports.php:1633
2572
  msgid "Number of pages in your site included in Google's index."
2573
  msgstr "Nombre de pages de votre site indexées par Google."
2574
 
2575
+ #: ../admin/view/wp-slimstat-reports.php:1634
2576
  msgid "Google Index"
2577
  msgstr "Index Google"
2578
 
2579
+ #: ../admin/view/wp-slimstat-reports.php:1635
2580
  msgid "Number of pages, according to Google, that link back to your site."
2581
  msgstr ""
2582
  "Nombre de pages qui pointent sur votre site, d'après les informations "
2583
  "fournies par Google."
2584
 
2585
+ #: ../admin/view/wp-slimstat-reports.php:1636
2586
  msgid "Google Backlinks"
2587
  msgstr "Backlinks Google"
2588
 
2589
+ #: ../admin/view/wp-slimstat-reports.php:1637
2590
  msgid ""
2591
  "How many times the Facebook Like button has been approximately clicked on "
2592
  "your site."
2593
  msgstr ""
2594
  "Nombre de fois que votre site a été Liké par quelqu'un sur le réseau social."
2595
 
2596
+ #: ../admin/view/wp-slimstat-reports.php:1638
2597
  msgid "Facebook Likes"
2598
  msgstr "\"J'aime\" Facebook"
2599
 
2600
+ #: ../admin/view/wp-slimstat-reports.php:1639
2601
  msgid ""
2602
  "How many times your site has been shared by someone on the social network."
2603
  msgstr ""
2604
  "Nombre de fois que votre site a été partagé par quelqu'un sur le réseau "
2605
  "social."
2606
 
2607
+ #: ../admin/view/wp-slimstat-reports.php:1640
2608
  msgid "Facebook Shares"
2609
  msgstr "Partages Facebook"
2610
 
2611
+ #: ../admin/view/wp-slimstat-reports.php:1641
2612
  msgid "How many times links to your website have been clicked on Facebook."
2613
  msgstr "Nombre de fois que vos liens ont été activés sur Facebook"
2614
 
2615
+ #: ../admin/view/wp-slimstat-reports.php:1642
2616
  msgid "Facebook Clicks"
2617
  msgstr "Clicks Facebook"
2618
 
2619
+ #: ../admin/view/wp-slimstat-reports.php:1643
2620
  msgid ""
2621
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2622
  "traffic data."
2624
  "Alexa est une filiale d'Amazon.com qui fournit des données commerciales "
2625
  "concernant le trafic web."
2626
 
2627
+ #: ../admin/view/wp-slimstat-reports.php:1644
2628
  msgid "Alexa World Rank"
2629
  msgstr "Alexa, Classement mondial"
2630
 
2631
+ #: ../admin/view/wp-slimstat-reports.php:1645
2632
  msgid "Alexa Country Rank"
2633
  msgstr "Alexa, Classement par pays"
2634
 
2635
+ #: ../admin/view/wp-slimstat-reports.php:1646
2636
  msgid "Alexa Popularity"
2637
  msgstr "Alexa, Popularité"
2638
 
2639
+ #: ../admin/view/wp-slimstat-reports.php:1657
2640
  msgid "Content Items"
2641
  msgstr "Contenus"
2642
 
2643
+ #: ../admin/view/wp-slimstat-reports.php:1659
2644
  msgid ""
2645
  "This value includes not only posts, but also custom post types, regardless "
2646
  "of their status"
2648
  "Cette valeur n'inclut pas seulement les articles de blog, mais aussi des "
2649
  "types personnalisés d'articles, quel que soit leur statut."
2650
 
2651
+ #: ../admin/view/wp-slimstat-reports.php:1661
2652
  #, fuzzy
2653
  msgid "Posts"
2654
  msgstr "Top Posts"
2655
 
2656
+ #: ../admin/view/wp-slimstat-reports.php:1664
2657
  #, fuzzy
2658
  msgid "Pages"
2659
  msgstr "Pages de sorties les plus utilisées"
2660
 
2661
+ #: ../admin/view/wp-slimstat-reports.php:1667
2662
  msgid "Attachments"
2663
  msgstr ""
2664
 
2665
+ #: ../admin/view/wp-slimstat-reports.php:1670
2666
  #, fuzzy
2667
  msgid "Revisions"
2668
  msgstr "Permissions"
2669
 
2670
+ #: ../admin/view/wp-slimstat-reports.php:1673
2671
  #, fuzzy
2672
  msgid "Comments"
2673
  msgstr "Nombre de commentaires"
2674
 
2675
+ #: ../admin/view/wp-slimstat-reports.php:1676
2676
  #, fuzzy
2677
  msgid "Avg Comments per Post"
2678
  msgstr "Moyenne de commentaires par Article"
2679
 
2680
+ #: ../admin/view/wp-slimstat-reports.php:1679
2681
  msgid "Avg Server Latency"
2682
  msgstr "Latence moyenne du serveur"
2683
 
2684
+ #: ../admin/view/wp-slimstat-reports.php:1681
2685
  msgid ""
2686
  "Latency is the amount of time it takes for the host server to receive and "
2687
  "process a request for a page object. The amount of latency depends largely "
2688
  "on how far away the user is from the server."
2689
  msgstr ""
2690
 
2691
+ #: ../admin/view/wp-slimstat-reports.php:1724
2692
  #, fuzzy
2693
  msgid "Coordinates"
2694
  msgstr "Mode traçage"
2695
 
2696
+ #: ../admin/view/wp-slimstat-reports.php:1724
2697
  msgid "Date"
2698
  msgstr ""
2699
 
2700
+ #: ../admin/view/wp-slimstat-reports.php:1761
2701
  msgid "Error contacting the GetSocial endpoint."
2702
  msgstr ""
2703
 
2704
+ #: ../admin/view/wp-slimstat-reports.php:1769
2705
  msgid "Error decoding the GetSocial payload."
2706
  msgstr ""
2707
 
2708
+ #: ../admin/view/wp-slimstat-reports.php:1801
2709
  msgid ""
2710
  "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2711
  ">social media metrics and identify your top performing posts.<br/> <a "
2713
  msgstr ""
2714
 
2715
  # Unknown
2716
+ #: ../admin/view/wp-slimstat-reports.php:1811
2717
  msgid "c-xx"
2718
  msgstr "Inconnu"
2719
 
2720
  # Afghanistan
2721
+ #: ../admin/view/wp-slimstat-reports.php:1811
2722
  msgid "c-af"
2723
  msgstr "Afghanistan"
2724
 
2725
  # Åland Islands
2726
+ #: ../admin/view/wp-slimstat-reports.php:1811
2727
  msgid "c-ax"
2728
  msgstr "Îles Åland"
2729
 
2730
  # Albania
2731
+ #: ../admin/view/wp-slimstat-reports.php:1811
2732
  msgid "c-al"
2733
  msgstr "Albanie"
2734
 
2735
  # Algeria
2736
+ #: ../admin/view/wp-slimstat-reports.php:1811
2737
  msgid "c-dz"
2738
  msgstr "Algérie"
2739
 
2740
  # Andorra
2741
+ #: ../admin/view/wp-slimstat-reports.php:1811
2742
  msgid "c-ad"
2743
  msgstr "Andorre"
2744
 
2745
  # Angola
2746
+ #: ../admin/view/wp-slimstat-reports.php:1811
2747
  msgid "c-ao"
2748
  msgstr "Angola"
2749
 
2750
  # Anguilla
2751
+ #: ../admin/view/wp-slimstat-reports.php:1811
2752
  msgid "c-ai"
2753
  msgstr "Anguilla"
2754
 
2755
  # Antigua and Barbuda
2756
+ #: ../admin/view/wp-slimstat-reports.php:1811
2757
  msgid "c-ag"
2758
  msgstr "Antigua et Barbuda"
2759
 
2760
  # Argentina
2761
+ #: ../admin/view/wp-slimstat-reports.php:1811
2762
  msgid "c-ar"
2763
  msgstr "Argentine"
2764
 
2765
  # Armenia
2766
+ #: ../admin/view/wp-slimstat-reports.php:1811
2767
  msgid "c-am"
2768
  msgstr "Arménie"
2769
 
2770
  # Aruba
2771
+ #: ../admin/view/wp-slimstat-reports.php:1811
2772
  msgid "c-aw"
2773
  msgstr "Aruba"
2774
 
2775
  # Australia
2776
+ #: ../admin/view/wp-slimstat-reports.php:1811
2777
  msgid "c-au"
2778
  msgstr "Australie"
2779
 
2780
  # Austria
2781
+ #: ../admin/view/wp-slimstat-reports.php:1811
2782
  msgid "c-at"
2783
  msgstr "Autriche"
2784
 
2785
  # Azerbaijan
2786
+ #: ../admin/view/wp-slimstat-reports.php:1811
2787
  msgid "c-az"
2788
  msgstr "Azerbaïdjan"
2789
 
2790
  # Bahamas
2791
+ #: ../admin/view/wp-slimstat-reports.php:1811
2792
  msgid "c-bs"
2793
  msgstr "Bahamas"
2794
 
2795
  # Bahrain
2796
+ #: ../admin/view/wp-slimstat-reports.php:1811
2797
  msgid "c-bh"
2798
  msgstr "Bahreïn"
2799
 
2800
  # Bangladesh
2801
+ #: ../admin/view/wp-slimstat-reports.php:1811
2802
  msgid "c-bd"
2803
  msgstr "Bangladesh"
2804
 
2805
  # Barbados
2806
+ #: ../admin/view/wp-slimstat-reports.php:1811
2807
  msgid "c-bb"
2808
  msgstr "Barbade"
2809
 
2810
  # Belarus
2811
+ #: ../admin/view/wp-slimstat-reports.php:1811
2812
  msgid "c-by"
2813
  msgstr "Bélarus"
2814
 
2815
  # Belgium
2816
+ #: ../admin/view/wp-slimstat-reports.php:1811
2817
  msgid "c-be"
2818
  msgstr "Belgique"
2819
 
2820
  # Belize
2821
+ #: ../admin/view/wp-slimstat-reports.php:1811
2822
  msgid "c-bz"
2823
  msgstr "Belize"
2824
 
2825
  # Benin
2826
+ #: ../admin/view/wp-slimstat-reports.php:1811
2827
  msgid "c-bj"
2828
  msgstr "Bénin"
2829
 
2830
  # Bermuda
2831
+ #: ../admin/view/wp-slimstat-reports.php:1811
2832
  msgid "c-bm"
2833
  msgstr "Bermudes"
2834
 
2835
  # Bhutan
2836
+ #: ../admin/view/wp-slimstat-reports.php:1811
2837
  msgid "c-bt"
2838
  msgstr "Bhoutan"
2839
 
2840
  # Bolivia
2841
+ #: ../admin/view/wp-slimstat-reports.php:1811
2842
  msgid "c-bo"
2843
  msgstr "État plurinational de Bolivie"
2844
 
2845
  # Bosnia and Herzegovina
2846
+ #: ../admin/view/wp-slimstat-reports.php:1811
2847
  msgid "c-ba"
2848
  msgstr "Bosnie-Herzégovine"
2849
 
2850
  # Botswana
2851
+ #: ../admin/view/wp-slimstat-reports.php:1811
2852
  msgid "c-bw"
2853
  msgstr "Botswana"
2854
 
2855
  # Brazil
2856
+ #: ../admin/view/wp-slimstat-reports.php:1811
2857
  msgid "c-br"
2858
  msgstr "Brésil"
2859
 
2860
  # Brunei Darussalam
2861
+ #: ../admin/view/wp-slimstat-reports.php:1811
2862
  msgid "c-bn"
2863
  msgstr "Brunéi Darussalam"
2864
 
2865
  # Bulgaria
2866
+ #: ../admin/view/wp-slimstat-reports.php:1811
2867
  msgid "c-bg"
2868
  msgstr "Bulgarie"
2869
 
2870
  # Burkina Faso
2871
+ #: ../admin/view/wp-slimstat-reports.php:1811
2872
  msgid "c-bf"
2873
  msgstr "Burkina Faso"
2874
 
2875
  # Burundi
2876
+ #: ../admin/view/wp-slimstat-reports.php:1811
2877
  msgid "c-bi"
2878
  msgstr "Burundi"
2879
 
2880
  # Cambodia
2881
+ #: ../admin/view/wp-slimstat-reports.php:1811
2882
  msgid "c-kh"
2883
  msgstr "Cambodge"
2884
 
2885
  # Cameroon
2886
+ #: ../admin/view/wp-slimstat-reports.php:1811
2887
  msgid "c-cm"
2888
  msgstr "Cameroun"
2889
 
2890
  # Canada
2891
+ #: ../admin/view/wp-slimstat-reports.php:1811
2892
  msgid "c-ca"
2893
  msgstr "Canada"
2894
 
2895
  # Cape Verde
2896
+ #: ../admin/view/wp-slimstat-reports.php:1811
2897
  msgid "c-cv"
2898
  msgstr "Cap-Vert"
2899
 
2900
  # Cayman Islands
2901
+ #: ../admin/view/wp-slimstat-reports.php:1811
2902
  msgid "c-ky"
2903
  msgstr "Îles Caïmans"
2904
 
2905
  # Central African Republic
2906
+ #: ../admin/view/wp-slimstat-reports.php:1811
2907
  msgid "c-cf"
2908
  msgstr "République Centrafricaine"
2909
 
2910
  # Chad
2911
+ #: ../admin/view/wp-slimstat-reports.php:1811
2912
  msgid "c-td"
2913
  msgstr "Tchad"
2914
 
2915
  # Chile
2916
+ #: ../admin/view/wp-slimstat-reports.php:1811
2917
  msgid "c-cl"
2918
  msgstr "Chili"
2919
 
2920
  # China
2921
+ #: ../admin/view/wp-slimstat-reports.php:1811
2922
  msgid "c-cn"
2923
  msgstr "Chine"
2924
 
2925
  # Colombia
2926
+ #: ../admin/view/wp-slimstat-reports.php:1811
2927
  msgid "c-co"
2928
  msgstr "Colombie"
2929
 
2930
  # Comoros
2931
+ #: ../admin/view/wp-slimstat-reports.php:1811
2932
  msgid "c-km"
2933
  msgstr "Comores"
2934
 
2935
  # Congo
2936
+ #: ../admin/view/wp-slimstat-reports.php:1811
2937
  msgid "c-cg"
2938
  msgstr "Congo"
2939
 
2940
  # The Democratic Republic of the Congo
2941
+ #: ../admin/view/wp-slimstat-reports.php:1811
2942
  msgid "c-cd"
2943
  msgstr "République Démocratique du Congo"
2944
 
2945
  # Costa Rica
2946
+ #: ../admin/view/wp-slimstat-reports.php:1811
2947
  msgid "c-cr"
2948
  msgstr "Costa Rica"
2949
 
2950
  # Côte d'Ivoire
2951
+ #: ../admin/view/wp-slimstat-reports.php:1811
2952
  msgid "c-ci"
2953
  msgstr "Côte d'Ivoire"
2954
 
2955
  # Croatia
2956
+ #: ../admin/view/wp-slimstat-reports.php:1811
2957
  msgid "c-hr"
2958
  msgstr "Croatie"
2959
 
2960
  # Cuba
2961
+ #: ../admin/view/wp-slimstat-reports.php:1811
2962
  msgid "c-cu"
2963
  msgstr "Cuba"
2964
 
2965
  # Cyprus
2966
+ #: ../admin/view/wp-slimstat-reports.php:1811
2967
  msgid "c-cy"
2968
  msgstr "Chypre"
2969
 
2970
  # Czech Republic
2971
+ #: ../admin/view/wp-slimstat-reports.php:1811
2972
  msgid "c-cz"
2973
  msgstr "République tchèque"
2974
 
2975
  # Denmark
2976
+ #: ../admin/view/wp-slimstat-reports.php:1811
2977
  msgid "c-dk"
2978
  msgstr "Danemark"
2979
 
2980
  # Djibouti
2981
+ #: ../admin/view/wp-slimstat-reports.php:1811
2982
  msgid "c-dj"
2983
  msgstr "Djibouti"
2984
 
2985
  # Dominica
2986
+ #: ../admin/view/wp-slimstat-reports.php:1811
2987
  msgid "c-dm"
2988
  msgstr "Dominique"
2989
 
2990
  # Dominican Republic
2991
+ #: ../admin/view/wp-slimstat-reports.php:1811
2992
  msgid "c-do"
2993
  msgstr "République dominicaine"
2994
 
2995
  # Ecuador
2996
+ #: ../admin/view/wp-slimstat-reports.php:1811
2997
  msgid "c-ec"
2998
  msgstr "Équateur"
2999
 
3000
  # Egypt
3001
+ #: ../admin/view/wp-slimstat-reports.php:1811
3002
  msgid "c-eg"
3003
  msgstr "Égypte"
3004
 
3005
  # El Salvador
3006
+ #: ../admin/view/wp-slimstat-reports.php:1811
3007
  msgid "c-sv"
3008
  msgstr "El Salvador"
3009
 
3010
  # Equatorial Guinea
3011
+ #: ../admin/view/wp-slimstat-reports.php:1811
3012
  msgid "c-gq"
3013
  msgstr "Guinée équatoriale"
3014
 
3015
  # Eritrea
3016
+ #: ../admin/view/wp-slimstat-reports.php:1811
3017
  msgid "c-er"
3018
  msgstr "Érythrée"
3019
 
3020
  # Estonia
3021
+ #: ../admin/view/wp-slimstat-reports.php:1811
3022
  msgid "c-ee"
3023
  msgstr "Estonie"
3024
 
3025
  # Ethiopia
3026
+ #: ../admin/view/wp-slimstat-reports.php:1811
3027
  msgid "c-et"
3028
  msgstr "Éthiopie"
3029
 
3030
  # Faroe Islands
3031
+ #: ../admin/view/wp-slimstat-reports.php:1811
3032
  msgid "c-fo"
3033
  msgstr "Îles Féroé"
3034
 
3035
  # Falkland Islands (Malvinas)
3036
+ #: ../admin/view/wp-slimstat-reports.php:1811
3037
  msgid "c-fk"
3038
  msgstr "Îles Falkland (Malvinas)"
3039
 
3040
  # Fiji
3041
+ #: ../admin/view/wp-slimstat-reports.php:1811
3042
  msgid "c-fj"
3043
  msgstr "Fidji"
3044
 
3045
  # Finland
3046
+ #: ../admin/view/wp-slimstat-reports.php:1811
3047
  msgid "c-fi"
3048
  msgstr "Finlande"
3049
 
3050
  # France
3051
+ #: ../admin/view/wp-slimstat-reports.php:1811
3052
  msgid "c-fr"
3053
  msgstr "France"
3054
 
3055
  # French Guiana
3056
+ #: ../admin/view/wp-slimstat-reports.php:1811
3057
  msgid "c-gf"
3058
  msgstr "Guyane française"
3059
 
3060
  # Gabon
3061
+ #: ../admin/view/wp-slimstat-reports.php:1811
3062
  msgid "c-ga"
3063
  msgstr "Gabon"
3064
 
3065
  # Gambia
3066
+ #: ../admin/view/wp-slimstat-reports.php:1811
3067
  msgid "c-gm"
3068
  msgstr "Gambie"
3069
 
3070
  # Georgia
3071
+ #: ../admin/view/wp-slimstat-reports.php:1811
3072
  msgid "c-ge"
3073
  msgstr "Géorgie"
3074
 
3075
  # Germany
3076
+ #: ../admin/view/wp-slimstat-reports.php:1811
3077
  msgid "c-de"
3078
  msgstr "Allemagne"
3079
 
3080
  # Ghana
3081
+ #: ../admin/view/wp-slimstat-reports.php:1811
3082
  msgid "c-gh"
3083
  msgstr "Ghana"
3084
 
3085
  # Greece
3086
+ #: ../admin/view/wp-slimstat-reports.php:1811
3087
  msgid "c-gr"
3088
  msgstr "Grèce"
3089
 
3090
  # Greenland
3091
+ #: ../admin/view/wp-slimstat-reports.php:1811
3092
  msgid "c-gl"
3093
  msgstr "Groenland"
3094
 
3095
  # Grenada
3096
+ #: ../admin/view/wp-slimstat-reports.php:1811
3097
  msgid "c-gd"
3098
  msgstr "Grenade"
3099
 
3100
  # Guadeloupe
3101
+ #: ../admin/view/wp-slimstat-reports.php:1811
3102
  msgid "c-gp"
3103
  msgstr "Guadeloupe"
3104
 
3105
  # Guatemala
3106
+ #: ../admin/view/wp-slimstat-reports.php:1811
3107
  msgid "c-gt"
3108
  msgstr "Guatemala"
3109
 
3110
  # Guinea
3111
+ #: ../admin/view/wp-slimstat-reports.php:1811
3112
  msgid "c-gn"
3113
  msgstr "Guinée"
3114
 
3115
  # Guinea-Bissau
3116
+ #: ../admin/view/wp-slimstat-reports.php:1811
3117
  msgid "c-gw"
3118
  msgstr "Guinée-Bissau"
3119
 
3120
  # Guyana
3121
+ #: ../admin/view/wp-slimstat-reports.php:1811
3122
  msgid "c-gy"
3123
  msgstr "Guyana"
3124
 
3125
  # Haiti
3126
+ #: ../admin/view/wp-slimstat-reports.php:1811
3127
  msgid "c-ht"
3128
  msgstr "Haïti"
3129
 
3130
  # Honduras
3131
+ #: ../admin/view/wp-slimstat-reports.php:1811
3132
  msgid "c-hn"
3133
  msgstr "Honduras"
3134
 
3135
  # Hong Kong
3136
+ #: ../admin/view/wp-slimstat-reports.php:1811
3137
  msgid "c-hk"
3138
  msgstr "Hong Kong"
3139
 
3140
  # Hungary
3141
+ #: ../admin/view/wp-slimstat-reports.php:1811
3142
  msgid "c-hu"
3143
  msgstr "Hongrie"
3144
 
3145
  # Iceland
3146
+ #: ../admin/view/wp-slimstat-reports.php:1811
3147
  msgid "c-is"
3148
  msgstr "Islande"
3149
 
3150
  # India
3151
+ #: ../admin/view/wp-slimstat-reports.php:1811
3152
  msgid "c-in"
3153
  msgstr "Inde"
3154
 
3155
  # Indonesia
3156
+ #: ../admin/view/wp-slimstat-reports.php:1811
3157
  msgid "c-id"
3158
  msgstr "Indonésie"
3159
 
3160
  # Islamic Republic of Iran
3161
+ #: ../admin/view/wp-slimstat-reports.php:1811
3162
  msgid "c-ir"
3163
  msgstr "République islamique d'Iran"
3164
 
3165
  # Iraq
3166
+ #: ../admin/view/wp-slimstat-reports.php:1811
3167
  msgid "c-iq"
3168
  msgstr "Irak"
3169
 
3170
  # Ireland
3171
+ #: ../admin/view/wp-slimstat-reports.php:1811
3172
  msgid "c-ie"
3173
  msgstr "Irlande"
3174
 
3175
  # Israel
3176
+ #: ../admin/view/wp-slimstat-reports.php:1811
3177
  msgid "c-il"
3178
  msgstr "Israël"
3179
 
3180
  # Italy
3181
+ #: ../admin/view/wp-slimstat-reports.php:1811
3182
  msgid "c-it"
3183
  msgstr "Italie"
3184
 
3185
  # Jamaica
3186
+ #: ../admin/view/wp-slimstat-reports.php:1811
3187
  msgid "c-jm"
3188
  msgstr "Jamaïque"
3189
 
3190
  # Japan
3191
+ #: ../admin/view/wp-slimstat-reports.php:1811
3192
  msgid "c-jp"
3193
  msgstr "Japon"
3194
 
3195
  # Jordan
3196
+ #: ../admin/view/wp-slimstat-reports.php:1811
3197
  msgid "c-jo"
3198
  msgstr "Jordanie"
3199
 
3200
  # Kazakhstan
3201
+ #: ../admin/view/wp-slimstat-reports.php:1811
3202
  msgid "c-kz"
3203
  msgstr "Kazakhstan"
3204
 
3205
  # Kenya
3206
+ #: ../admin/view/wp-slimstat-reports.php:1811
3207
  msgid "c-ke"
3208
  msgstr "Kenya"
3209
 
3210
  # Nauru
3211
+ #: ../admin/view/wp-slimstat-reports.php:1811
3212
  msgid "c-nr"
3213
  msgstr "Nauru"
3214
 
3215
  # Democratic People's Republic of Korea
3216
+ #: ../admin/view/wp-slimstat-reports.php:1811
3217
  msgid "c-kp"
3218
  msgstr "République populaire démocratique de Corée"
3219
 
3220
  # Republic of Korea
3221
+ #: ../admin/view/wp-slimstat-reports.php:1811
3222
  msgid "c-kr"
3223
  msgstr "République de Corée"
3224
 
3225
+ #: ../admin/view/wp-slimstat-reports.php:1811
3226
  msgid "c-kv"
3227
  msgstr "Kossovo"
3228
 
3229
  # Kuwait
3230
+ #: ../admin/view/wp-slimstat-reports.php:1811
3231
  msgid "c-kw"
3232
  msgstr "Koweït"
3233
 
3234
  # Kyrgyzstan
3235
+ #: ../admin/view/wp-slimstat-reports.php:1811
3236
  msgid "c-kg"
3237
  msgstr "Kirghizistan"
3238
 
3239
  # Lao People's Democratic Republic
3240
+ #: ../admin/view/wp-slimstat-reports.php:1811
3241
  msgid "c-la"
3242
  msgstr "République démocratique populaire lao"
3243
 
3244
  # Latvia
3245
+ #: ../admin/view/wp-slimstat-reports.php:1811
3246
  msgid "c-lv"
3247
  msgstr "Lettonie"
3248
 
3249
  # Lebanon
3250
+ #: ../admin/view/wp-slimstat-reports.php:1811
3251
  msgid "c-lb"
3252
  msgstr "Liban"
3253
 
3254
  # Lesotho
3255
+ #: ../admin/view/wp-slimstat-reports.php:1811
3256
  msgid "c-ls"
3257
  msgstr "Lesotho"
3258
 
3259
  # Liberia
3260
+ #: ../admin/view/wp-slimstat-reports.php:1811
3261
  msgid "c-lr"
3262
  msgstr "Libéria"
3263
 
3264
  # Libyan Arab Jamahiriya
3265
+ #: ../admin/view/wp-slimstat-reports.php:1811
3266
  msgid "c-ly"
3267
  msgstr "Jamahiriya arabe libyenne"
3268
 
3269
  # Liechtenstein
3270
+ #: ../admin/view/wp-slimstat-reports.php:1811
3271
  msgid "c-li"
3272
  msgstr "Liechtenstein"
3273
 
3274
  # Lithuania
3275
+ #: ../admin/view/wp-slimstat-reports.php:1811
3276
  msgid "c-lt"
3277
  msgstr "Lituanie"
3278
 
3279
  # Luxembourg
3280
+ #: ../admin/view/wp-slimstat-reports.php:1811
3281
  msgid "c-lu"
3282
  msgstr "Luxembourg"
3283
 
3284
  # The Former Yugoslav Republic of Macedonia
3285
+ #: ../admin/view/wp-slimstat-reports.php:1811
3286
  msgid "c-mk"
3287
  msgstr "Ex-république yougoslave de Macédoine"
3288
 
3289
  # Madagascar
3290
+ #: ../admin/view/wp-slimstat-reports.php:1811
3291
  msgid "c-mg"
3292
  msgstr "Madagascar"
3293
 
3294
  # Malawi
3295
+ #: ../admin/view/wp-slimstat-reports.php:1811
3296
  msgid "c-mw"
3297
  msgstr "Malawi"
3298
 
3299
  # Malaysia
3300
+ #: ../admin/view/wp-slimstat-reports.php:1811
3301
  msgid "c-my"
3302
  msgstr "Malaisie"
3303
 
3304
  # Mali
3305
+ #: ../admin/view/wp-slimstat-reports.php:1811
3306
  msgid "c-ml"
3307
  msgstr "Mali"
3308
 
3309
  # Malta
3310
+ #: ../admin/view/wp-slimstat-reports.php:1811
3311
  msgid "c-mt"
3312
  msgstr "Malte"
3313
 
3314
  # Martinique
3315
+ #: ../admin/view/wp-slimstat-reports.php:1811
3316
  msgid "c-mq"
3317
  msgstr "Martinique"
3318
 
3319
  # Mauritania
3320
+ #: ../admin/view/wp-slimstat-reports.php:1811
3321
  msgid "c-mr"
3322
  msgstr "Mauritanie"
3323
 
3324
  # Mauritius
3325
+ #: ../admin/view/wp-slimstat-reports.php:1811
3326
  msgid "c-mu"
3327
  msgstr "Maurice"
3328
 
3329
  # Mexico
3330
+ #: ../admin/view/wp-slimstat-reports.php:1811
3331
  msgid "c-mx"
3332
  msgstr "Mexique"
3333
 
3334
  # Moldova
3335
+ #: ../admin/view/wp-slimstat-reports.php:1811
3336
  msgid "c-md"
3337
  msgstr "République de Moldova"
3338
 
3339
  # Mongolia
3340
+ #: ../admin/view/wp-slimstat-reports.php:1811
3341
  msgid "c-mn"
3342
  msgstr "Mongolie"
3343
 
3344
  # Montenegro
3345
+ #: ../admin/view/wp-slimstat-reports.php:1811
3346
  msgid "c-me"
3347
  msgstr "Monténégro"
3348
 
3349
  # Montserrat
3350
+ #: ../admin/view/wp-slimstat-reports.php:1811
3351
  msgid "c-ms"
3352
  msgstr "Montserrat"
3353
 
3354
  # Morocco
3355
+ #: ../admin/view/wp-slimstat-reports.php:1811
3356
  msgid "c-ma"
3357
  msgstr "Maroc"
3358
 
3359
  # Mozambique
3360
+ #: ../admin/view/wp-slimstat-reports.php:1811
3361
  msgid "c-mz"
3362
  msgstr "Mozambique"
3363
 
3364
  # Myanmar
3365
+ #: ../admin/view/wp-slimstat-reports.php:1811
3366
  msgid "c-mm"
3367
  msgstr "Myanmar"
3368
 
3369
  # Namibia
3370
+ #: ../admin/view/wp-slimstat-reports.php:1811
3371
  msgid "c-na"
3372
  msgstr "Namibie"
3373
 
3374
  # Nepal
3375
+ #: ../admin/view/wp-slimstat-reports.php:1811
3376
  msgid "c-np"
3377
  msgstr "Népal"
3378
 
3379
  # Netherlands
3380
+ #: ../admin/view/wp-slimstat-reports.php:1811
3381
  msgid "c-nl"
3382
  msgstr "Pays-bas"
3383
 
3384
  # New Caledonia
3385
+ #: ../admin/view/wp-slimstat-reports.php:1811
3386
  msgid "c-nc"
3387
  msgstr "Nouvelle-Calédonie"
3388
 
3389
  # New Zealand
3390
+ #: ../admin/view/wp-slimstat-reports.php:1811
3391
  msgid "c-nz"
3392
  msgstr "Nouvelle-Zélande"
3393
 
3394
  # Nicaragua
3395
+ #: ../admin/view/wp-slimstat-reports.php:1811
3396
  msgid "c-ni"
3397
  msgstr "Nicaragua"
3398
 
3399
  # Niger
3400
+ #: ../admin/view/wp-slimstat-reports.php:1811
3401
  msgid "c-ne"
3402
  msgstr "Niger"
3403
 
3404
  # Nigeria
3405
+ #: ../admin/view/wp-slimstat-reports.php:1811
3406
  msgid "c-ng"
3407
  msgstr "Nigéria"
3408
 
3409
  # Norway
3410
+ #: ../admin/view/wp-slimstat-reports.php:1811
3411
  msgid "c-no"
3412
  msgstr "Norvège"
3413
 
3414
  # Oman
3415
+ #: ../admin/view/wp-slimstat-reports.php:1811
3416
  msgid "c-om"
3417
  msgstr "Oman"
3418
 
3419
  # Pakistan
3420
+ #: ../admin/view/wp-slimstat-reports.php:1811
3421
  msgid "c-pk"
3422
  msgstr "Pakistan"
3423
 
3424
  # Palau
3425
+ #: ../admin/view/wp-slimstat-reports.php:1811
3426
  msgid "c-pw"
3427
  msgstr "Palaos"
3428
 
3429
  # Occupied Palestinian Territory
3430
+ #: ../admin/view/wp-slimstat-reports.php:1811
3431
  msgid "c-ps"
3432
  msgstr "Territoire palestinien occupé"
3433
 
3434
  # Panama
3435
+ #: ../admin/view/wp-slimstat-reports.php:1811
3436
  msgid "c-pa"
3437
  msgstr "Panama"
3438
 
3439
  # Papua New Guinea
3440
+ #: ../admin/view/wp-slimstat-reports.php:1811
3441
  msgid "c-pg"
3442
  msgstr "Papouasie-Nouvelle-Guinée"
3443
 
3444
  # Paraguay
3445
+ #: ../admin/view/wp-slimstat-reports.php:1811
3446
  msgid "c-py"
3447
  msgstr "Paraguay"
3448
 
3449
  # Peru
3450
+ #: ../admin/view/wp-slimstat-reports.php:1811
3451
  msgid "c-pe"
3452
  msgstr "Pérou"
3453
 
3454
  # Philippines
3455
+ #: ../admin/view/wp-slimstat-reports.php:1811
3456
  msgid "c-ph"
3457
  msgstr "Philippines"
3458
 
3459
  # Poland
3460
+ #: ../admin/view/wp-slimstat-reports.php:1811
3461
  msgid "c-pl"
3462
  msgstr "Pologne"
3463
 
3464
  # Portugal
3465
+ #: ../admin/view/wp-slimstat-reports.php:1811
3466
  msgid "c-pt"
3467
  msgstr "Portugal"
3468
 
3469
  # Puerto Rico
3470
+ #: ../admin/view/wp-slimstat-reports.php:1811
3471
  msgid "c-pr"
3472
  msgstr "Porto Rico"
3473
 
3474
  # Qatar
3475
+ #: ../admin/view/wp-slimstat-reports.php:1811
3476
  msgid "c-qa"
3477
  msgstr "Qatar"
3478
 
3479
  # Réunion
3480
+ #: ../admin/view/wp-slimstat-reports.php:1811
3481
  msgid "c-re"
3482
  msgstr "Réunion"
3483
 
3484
  # Romania
3485
+ #: ../admin/view/wp-slimstat-reports.php:1811
3486
  msgid "c-ro"
3487
  msgstr "Roumanie"
3488
 
3489
  # Russian Federation
3490
+ #: ../admin/view/wp-slimstat-reports.php:1811
3491
  msgid "c-ru"
3492
  msgstr "Fédération de Russie"
3493
 
3494
  # Rwanda
3495
+ #: ../admin/view/wp-slimstat-reports.php:1811
3496
  msgid "c-rw"
3497
  msgstr "Rwanda"
3498
 
3499
  # Saint Kitts and Nevis
3500
+ #: ../admin/view/wp-slimstat-reports.php:1811
3501
  msgid "c-kn"
3502
  msgstr "Saint-Kitts-et-Nevis"
3503
 
3504
  # Saint Lucia
3505
+ #: ../admin/view/wp-slimstat-reports.php:1811
3506
  msgid "c-lc"
3507
  msgstr "Sainte-Lucie"
3508
 
3509
  # Saint Martin
3510
+ #: ../admin/view/wp-slimstat-reports.php:1811
3511
  msgid "c-mf"
3512
  msgstr "Saint-Martin"
3513
 
3514
  # Saint Vincent and the Grenadines
3515
+ #: ../admin/view/wp-slimstat-reports.php:1811
3516
  msgid "c-vc"
3517
  msgstr "Saint-Vincent-et-les Grenadines"
3518
 
3519
  # Samoa
3520
+ #: ../admin/view/wp-slimstat-reports.php:1811
3521
  msgid "c-ws"
3522
  msgstr "Samoa"
3523
 
3524
  # Sao Tome and Principe
3525
+ #: ../admin/view/wp-slimstat-reports.php:1811
3526
  msgid "c-st"
3527
  msgstr "Sao Tomé-et-Principe"
3528
 
3529
  # Saudi Arabia
3530
+ #: ../admin/view/wp-slimstat-reports.php:1811
3531
  msgid "c-sa"
3532
  msgstr "Arabie saoudite"
3533
 
3534
  # Senegal
3535
+ #: ../admin/view/wp-slimstat-reports.php:1811
3536
  msgid "c-sn"
3537
  msgstr "Sénégal"
3538
 
3539
  # Serbia
3540
+ #: ../admin/view/wp-slimstat-reports.php:1811
3541
  msgid "c-rs"
3542
  msgstr "Serbie"
3543
 
3544
  # Sierra Leone
3545
+ #: ../admin/view/wp-slimstat-reports.php:1811
3546
  msgid "c-sl"
3547
  msgstr "Sierra Leone"
3548
 
3549
  # Singapore
3550
+ #: ../admin/view/wp-slimstat-reports.php:1811
3551
  msgid "c-sg"
3552
  msgstr "Singapour"
3553
 
3554
  # Slovakia
3555
+ #: ../admin/view/wp-slimstat-reports.php:1811
3556
  msgid "c-sk"
3557
  msgstr "Slovaquie"
3558
 
3559
  # Slovenia
3560
+ #: ../admin/view/wp-slimstat-reports.php:1811
3561
  msgid "c-si"
3562
  msgstr "Slovénie"
3563
 
3564
  # Solomon Islands
3565
+ #: ../admin/view/wp-slimstat-reports.php:1811
3566
  msgid "c-sb"
3567
  msgstr "Îles Salomon"
3568
 
3569
  # Somalia
3570
+ #: ../admin/view/wp-slimstat-reports.php:1811
3571
  msgid "c-so"
3572
  msgstr "Somalie"
3573
 
3574
  # South Africa
3575
+ #: ../admin/view/wp-slimstat-reports.php:1811
3576
  msgid "c-za"
3577
  msgstr "Afrique du sud"
3578
 
3579
  # South Georgia and the South Sandwich Islands
3580
+ #: ../admin/view/wp-slimstat-reports.php:1811
3581
  msgid "c-gs"
3582
  msgstr "Géorgie du sud et les Îles Sandwich du sud"
3583
 
3584
  # Spain
3585
+ #: ../admin/view/wp-slimstat-reports.php:1811
3586
  msgid "c-es"
3587
  msgstr "Espagne"
3588
 
3589
  # Sri Lanka
3590
+ #: ../admin/view/wp-slimstat-reports.php:1811
3591
  msgid "c-lk"
3592
  msgstr "Sri Lanka"
3593
 
3594
  # Seychelles
3595
+ #: ../admin/view/wp-slimstat-reports.php:1811
3596
  msgid "c-sc"
3597
  msgstr "Seychelles"
3598
 
3599
  # Sudan
3600
+ #: ../admin/view/wp-slimstat-reports.php:1811
3601
  msgid "c-sd"
3602
  msgstr "Soudan"
3603
 
3604
+ #: ../admin/view/wp-slimstat-reports.php:1811
3605
  msgid "c-ss"
3606
  msgstr "Soudan du Sud"
3607
 
3608
  # Suriname
3609
+ #: ../admin/view/wp-slimstat-reports.php:1811
3610
  msgid "c-sr"
3611
  msgstr "Suriname"
3612
 
3613
  # Svalbard and Jan Mayen
3614
+ #: ../admin/view/wp-slimstat-reports.php:1811
3615
  msgid "c-sj"
3616
  msgstr "Svalbard et île Jan Mayen"
3617
 
3618
  # Swaziland
3619
+ #: ../admin/view/wp-slimstat-reports.php:1811
3620
  msgid "c-sz"
3621
  msgstr "Swaziland"
3622
 
3623
  # Sweden
3624
+ #: ../admin/view/wp-slimstat-reports.php:1811
3625
  msgid "c-se"
3626
  msgstr "Suède"
3627
 
3628
  # Switzerland
3629
+ #: ../admin/view/wp-slimstat-reports.php:1811
3630
  msgid "c-ch"
3631
  msgstr "Suisse"
3632
 
3633
  # Syrian Arab Republic
3634
+ #: ../admin/view/wp-slimstat-reports.php:1811
3635
  msgid "c-sy"
3636
  msgstr "République arabe syrienne"
3637
 
3638
  # Taiwan, Province of China
3639
+ #: ../admin/view/wp-slimstat-reports.php:1811
3640
  msgid "c-tw"
3641
  msgstr "Taïwan, province de Chine"
3642
 
3643
  # Tajikistan
3644
+ #: ../admin/view/wp-slimstat-reports.php:1811
3645
  msgid "c-tj"
3646
  msgstr "Tadjikistan"
3647
 
3648
  # United Republic of Tanzania
3649
+ #: ../admin/view/wp-slimstat-reports.php:1811
3650
  msgid "c-tz"
3651
  msgstr "République-unie de Tanzanie"
3652
 
3653
  # Thailand
3654
+ #: ../admin/view/wp-slimstat-reports.php:1811
3655
  msgid "c-th"
3656
  msgstr "Thaïlande"
3657
 
3658
  # Timor-Leste
3659
+ #: ../admin/view/wp-slimstat-reports.php:1811
3660
  msgid "c-tl"
3661
  msgstr "Timor-Leste"
3662
 
3663
  # Togo
3664
+ #: ../admin/view/wp-slimstat-reports.php:1811
3665
  msgid "c-tg"
3666
  msgstr "Togo"
3667
 
3668
  # Tonga
3669
+ #: ../admin/view/wp-slimstat-reports.php:1811
3670
  msgid "c-to"
3671
  msgstr "Tonga"
3672
 
3673
  # Trinidad and Tobago
3674
+ #: ../admin/view/wp-slimstat-reports.php:1811
3675
  msgid "c-tt"
3676
  msgstr "Trinité-et-Tobago "
3677
 
3678
  # Tunisia
3679
+ #: ../admin/view/wp-slimstat-reports.php:1811
3680
  msgid "c-tn"
3681
  msgstr "Tunisie"
3682
 
3683
  # Turkey
3684
+ #: ../admin/view/wp-slimstat-reports.php:1811
3685
  msgid "c-tr"
3686
  msgstr "Turquie "
3687
 
3688
  # Turkmenistan
3689
+ #: ../admin/view/wp-slimstat-reports.php:1811
3690
  msgid "c-tm"
3691
  msgstr "Turkménistan"
3692
 
3693
  # Turks and Caicos Islands
3694
+ #: ../admin/view/wp-slimstat-reports.php:1811
3695
  msgid "c-tc"
3696
  msgstr "Îles Turks et Caïques"
3697
 
3698
  # Uganda
3699
+ #: ../admin/view/wp-slimstat-reports.php:1811
3700
  msgid "c-ug"
3701
  msgstr "Ouganda"
3702
 
3703
  # Ukraine
3704
+ #: ../admin/view/wp-slimstat-reports.php:1811
3705
  msgid "c-ua"
3706
  msgstr "Ukraine"
3707
 
3708
  # United Arab Emirates
3709
+ #: ../admin/view/wp-slimstat-reports.php:1811
3710
  msgid "c-ae"
3711
  msgstr "Émirats arabes unis"
3712
 
3713
  # United Kingdom
3714
+ #: ../admin/view/wp-slimstat-reports.php:1811
3715
  msgid "c-gb"
3716
  msgstr "Royaume-Uni"
3717
 
3718
  # United States
3719
+ #: ../admin/view/wp-slimstat-reports.php:1811
3720
  msgid "c-us"
3721
  msgstr "États-Unis"
3722
 
3723
  # Uruguay
3724
+ #: ../admin/view/wp-slimstat-reports.php:1811
3725
  msgid "c-uy"
3726
  msgstr "Uruguay"
3727
 
3728
  # Uzbekistan
3729
+ #: ../admin/view/wp-slimstat-reports.php:1811
3730
  msgid "c-uz"
3731
  msgstr "Ouzbékistan "
3732
 
3733
  # Vanuatu
3734
+ #: ../admin/view/wp-slimstat-reports.php:1811
3735
  msgid "c-vu"
3736
  msgstr "Vanuatu"
3737
 
3738
  # Venezuela
3739
+ #: ../admin/view/wp-slimstat-reports.php:1811
3740
  msgid "c-ve"
3741
  msgstr "République bolivarienne du Venezuela"
3742
 
3743
  # Viet Nam
3744
+ #: ../admin/view/wp-slimstat-reports.php:1811
3745
  msgid "c-vn"
3746
  msgstr "Viet Nam"
3747
 
3748
  # British Virgin Islands
3749
+ #: ../admin/view/wp-slimstat-reports.php:1811
3750
  msgid "c-vg"
3751
  msgstr "Îles vierges britanniques"
3752
 
3753
  # U.S. Virgin Islands
3754
+ #: ../admin/view/wp-slimstat-reports.php:1811
3755
  msgid "c-vi"
3756
  msgstr "Îles vierges des États-Unis"
3757
 
3758
  # Western Sahara
3759
+ #: ../admin/view/wp-slimstat-reports.php:1811
3760
  msgid "c-eh"
3761
  msgstr "Sahara occidental"
3762
 
3763
  # Yemen
3764
+ #: ../admin/view/wp-slimstat-reports.php:1811
3765
  msgid "c-ye"
3766
  msgstr "Yémen"
3767
 
3768
  # Zambia
3769
+ #: ../admin/view/wp-slimstat-reports.php:1811
3770
  msgid "c-zm"
3771
  msgstr "Zambie"
3772
 
3773
  # Zimbabwe
3774
+ #: ../admin/view/wp-slimstat-reports.php:1811
3775
  msgid "c-zw"
3776
  msgstr "Zimbabwe"
3777
 
3778
  # Guernsey
3779
+ #: ../admin/view/wp-slimstat-reports.php:1811
3780
  msgid "c-gg"
3781
  msgstr "Guernesey"
3782
 
3783
  # Jersey
3784
+ #: ../admin/view/wp-slimstat-reports.php:1811
3785
  msgid "c-je"
3786
  msgstr "Jersey"
3787
 
3788
  # Isle of Man
3789
+ #: ../admin/view/wp-slimstat-reports.php:1811
3790
  msgid "c-im"
3791
  msgstr "Île de Man"
3792
 
3793
  # Maldives
3794
+ #: ../admin/view/wp-slimstat-reports.php:1811
3795
  msgid "c-mv"
3796
  msgstr "Maldives"
3797
 
3798
  # European Union
3799
+ #: ../admin/view/wp-slimstat-reports.php:1812
3800
  msgid "c-eu"
3801
  msgstr "Union européenne"
3802
 
3803
+ #: ../admin/view/wp-slimstat-reports.php:1894
3804
  msgid "src"
3805
  msgstr "src"
3806
 
3807
+ #: ../admin/view/wp-slimstat-reports.php:1897
3808
  msgid "serp"
3809
  msgstr "serp"
3810
 
3811
+ #: ../admin/view/wp-slimstat-reports.php:1904
3812
  msgid "Go to the referring page"
3813
  msgstr "Aller sur la page référente"
3814
 
3815
+ #: ../admin/view/wp-slimstat-reports.php:1926
3816
  msgid "Remove filter for"
3817
  msgstr "Enlever le filtre pour"
3818
 
3819
+ #: ../admin/view/wp-slimstat-reports.php:1930
3820
  msgid "Save"
3821
  msgstr ""
3822
 
3823
+ #: ../admin/view/wp-slimstat-reports.php:1933
3824
  msgid "Reset All"
3825
  msgstr "Réinitialiser l'ensemble"
3826
 
3827
+ #: ../admin/view/wp-slimstat-reports.php:1937
3828
  msgid "Current filters:"
3829
  msgstr "Filtres actifs :"
3830
 
3831
+ #: ../admin/wp-slimstat-admin.php:482 ../admin/wp-slimstat-admin.php:493
3832
+ #: ../admin/wp-slimstat-admin.php:495
3833
  msgid "SlimStat"
3834
  msgstr "SlimStat"
3835
 
3836
+ #: ../admin/wp-slimstat-admin.php:489 ../admin/wp-slimstat-admin.php:504
3837
+ #: ../wp-slimstat.php:1799
3838
+ #, fuzzy
3839
+ msgid "Customize"
3840
+ msgstr "Personnaliser le style CSS"
3841
 
3842
+ #: ../admin/wp-slimstat-admin.php:587
3843
  #, fuzzy
3844
  msgid "Pageviews in the last "
3845
  msgstr "Pages durant les 365 derniers jours"
3846
 
3847
+ #: ../admin/wp-slimstat-admin.php:590
3848
  #, fuzzy
3849
  msgid "Unique IPs in the last "
3850
  msgstr "Intervalle unique"
3851
 
3852
+ #: ../admin/wp-slimstat-admin.php:644
3853
  msgid "Show on screen"
3854
  msgstr "Montrer à l'écran"
3855
 
3856
+ #: ../admin/wp-slimstat-admin.php:725
3857
  msgid "Already saved"
3858
  msgstr ""
3859
 
3860
+ #: ../admin/wp-slimstat-admin.php:733
3861
  msgid "Saved"
3862
  msgstr ""
3863
 
3864
+ #: ../admin/wp-slimstat-admin.php:753
3865
  #, fuzzy
3866
  msgid "Delete this filter"
3867
  msgstr "Filtrer les pages vues pour que"
3868
 
3869
+ #: ../admin/wp-slimstat-admin.php:797
3870
  msgid "There was an error updating the following options:"
3871
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
3872
 
3873
+ #: ../admin/wp-slimstat-admin.php:800
3874
  msgid "Your changes have been saved."
3875
  msgstr "Vos réglages ont bien été mis à jour"
3876
 
3877
+ #: ../admin/wp-slimstat-admin.php:823
3878
  msgid "Save Changes"
3879
  msgstr "Enregistrer les modifications"
3880
 
3881
+ #: ../admin/wp-slimstat-admin.php:839
3882
  msgid "Definitions"
3883
  msgstr "Définitions"
3884
 
3885
+ #: ../admin/wp-slimstat-admin.php:842
3886
  msgid "Pageview"
3887
  msgstr "Page vue"
3888
 
3889
+ #: ../admin/wp-slimstat-admin.php:842
3890
  msgid ""
3891
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3892
  "with a \"hit\", which refers to a request for any file from a web server. "
3897
  "d'un serveur Web. WP SlimStat enregistre une page vue chaque fois que le "
3898
  "code de traçage est exécuté"
3899
 
3900
+ #: ../admin/wp-slimstat-admin.php:843
3901
  msgid "(Human) Visit"
3902
  msgstr "Visiteurs humains"
3903
 
3904
+ #: ../admin/wp-slimstat-admin.php:843
3905
  msgid ""
3906
  "A period of interaction between a visitor's browser and your website, ending "
3907
  "when the browser is closed or when the user has been inactive on that site "
3911
  "Web se terminant lorsque le navigateur est fermé ou lorsque l'utilisateur "
3912
  "est inactif sur ce site depuis 30 minutes"
3913
 
3914
+ #: ../admin/wp-slimstat-admin.php:844
3915
  msgid ""
3916
  "Any user who has left a comment on your blog, and is thus identified by "
3917
  "Wordpress as a returning visitor"
3919
  "Un utilisateur qui a laissé un commentaire sur votre blog et est ainsi "
3920
  "identifié par Wordpress comme un visiteur qui a déjà visité votre site"
3921
 
3922
+ #: ../admin/wp-slimstat-admin.php:845
3923
  msgid "Unique IP"
3924
  msgstr "IP uniques"
3925
 
3926
+ #: ../admin/wp-slimstat-admin.php:845
3927
  msgid ""
3928
  "Used to differentiate between multiple requests to download a file from one "
3929
  "internet address (IP) and requests originating from many distinct addresses; "
3936
  "Internet de la provenance d'une consultation, elle est utile, mais pas "
3937
  "parfaite"
3938
 
3939
+ #: ../admin/wp-slimstat-admin.php:846
3940
  msgid ""
3941
  "the originating IP address of a client connecting to a web server through an "
3942
  "HTTP proxy or load balancer"
3944
  "l'adresse IP d'origine d'un client qui se connecte à un serveur Web via un "
3945
  "proxy HTTP ou équilibreur de charge"
3946
 
3947
+ #: ../admin/wp-slimstat-admin.php:847
3948
  msgid "Direct Traffic"
3949
  msgstr "Trafic direct"
3950
 
3951
+ #: ../admin/wp-slimstat-admin.php:847
3952
  msgid ""
3953
  "All those people showing up to your Web site by typing in the URL of your "
3954
  "Web site coming or from a bookmark; some people also call this \"default "
3958
  "votre site Web ou qui viennent à partir d'un signet, certaines personnes "
3959
  "appellent également cela \"trafic par défaut \" ou \"trafic ambiant \""
3960
 
3961
+ #: ../admin/wp-slimstat-admin.php:848
3962
  msgid "Search Engine"
3963
  msgstr "Moteur de recherche"
3964
 
3965
+ #: ../admin/wp-slimstat-admin.php:848
3966
  msgid ""
3967
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3968
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
3970
  "Google, Yahoo, MSN, Ask, et autres; cet item comprendra à la fois votre "
3971
  "trafic rémunéré (PPC/SEM) ainsi que votre trafic organique, prenez en note"
3972
 
3973
+ #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
3974
  msgid "Keywords used by your visitors to find your website on a search engine"
3975
  msgstr ""
3976
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
3977
  "de recherche"
3978
 
3979
+ #: ../admin/wp-slimstat-admin.php:850
3980
  msgid "SERP"
3981
  msgstr "SERP"
3982
 
3983
+ #: ../admin/wp-slimstat-admin.php:850
3984
  msgid ""
3985
  "Short for search engine results page, the Web page that a search engine "
3986
  "returns with the results of its search. The value shown represents your rank "
3990
  "recherche renvoie les résultats de sa recherche. La valeur indiquée "
3991
  "correspond à votre classement (ou la position) dans la liste des résultats"
3992
 
3993
+ #: ../admin/wp-slimstat-admin.php:851
3994
  msgid ""
3995
  "Any program used for accessing a website; this includes browsers, robots, "
3996
  "spiders and any other program that was used to retrieve information from the "
4000
  "navigateurs, robots, spiders et tout autre programme qui a été utilisé pour "
4001
  "extraire des informations du site"
4002
 
4003
+ #: ../admin/wp-slimstat-admin.php:852
4004
  msgid ""
4005
  "A link from one domain to another is said to be outbound from its source "
4006
  "anchor and inbound to its target. This report lists all the links to other "
4010
  "sa cible. Ce rapport répertorie tous les liens vers d'autres sites suivis "
4011
  "par vos visiteurs."
4012
 
4013
+ #: ../admin/wp-slimstat-admin.php:859
4014
  msgid "Basic Filters"
4015
  msgstr "Filtres de base"
4016
 
4017
+ #: ../admin/wp-slimstat-admin.php:862
4018
  msgid "User agent (Firefox, Chrome, ...)"
4019
  msgstr "User agent (Firefox, Chrome, ...)"
4020
 
4021
+ #: ../admin/wp-slimstat-admin.php:863
4022
  msgid "2-letter code (us, ru, de, it, ...)"
4023
  msgstr "code pays à 2 lettres (us, ru, de, it, ...)"
4024
 
4025
+ #: ../admin/wp-slimstat-admin.php:864
4026
  msgid "IP"
4027
  msgstr "IP"
4028
 
4029
+ #: ../admin/wp-slimstat-admin.php:864
4030
  msgid "Visitor's public IP address"
4031
  msgstr " Adresse IP publique du visiteur"
4032
 
4033
+ #: ../admin/wp-slimstat-admin.php:866
4034
  msgid ""
4035
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
4036
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
4040
  "microsoft.com/en-us/library/ee825488(v=cs.20).aspx\">language culture page</"
4041
  "a> (première colonne) pour plus d'informations"
4042
 
4043
+ #: ../admin/wp-slimstat-admin.php:867
4044
  msgid ""
4045
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
4046
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
4050
  "référez-vous à <a target=\"_blank\" href=\"http://php.net/manual/en/function."
4051
  "get-browser.php\">cette page de manuel </a> pour plus d'informations"
4052
 
4053
+ #: ../admin/wp-slimstat-admin.php:868
4054
  msgid "URL accessed on your site"
4055
  msgstr "URL accessible sur votre site"
4056
 
4057
+ #: ../admin/wp-slimstat-admin.php:869
4058
  msgid "Complete address of the referrer page"
4059
  msgstr "Adresse complète de la page référente"
4060
 
4061
+ #: ../admin/wp-slimstat-admin.php:870
4062
  msgid ""
4063
  "Visitors' names according to the cookie set by Wordpress after they leave a "
4064
  "comment"
4066
  "Les noms des visiteurs selon le cookie enregistré par Wordpress, après avoir "
4067
  "laissé un commentaire"
4068
 
4069
+ #: ../admin/wp-slimstat-admin.php:878
4070
  msgid "Advanced Filters"
4071
  msgstr "Filtres Avancés"
4072
 
4073
+ #: ../admin/wp-slimstat-admin.php:881
4074
  msgid "user agent version (9.0, 11, ...)"
4075
  msgstr "user agent version (9.0, 11, ...)"
4076
 
4077
+ #: ../admin/wp-slimstat-admin.php:882
4078
  msgid ""
4079
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
4080
  "all others"
4082
  "1 = moteur de recherche, 2 = appareil mobile, 3 = lecteur de flux "
4083
  "(syndication) , 0 = tous les autres"
4084
 
4085
+ #: ../admin/wp-slimstat-admin.php:883
4086
  msgid "Pageview Attributes"
4087
  msgstr "l'attribut des Pages Vues"
4088
 
4089
+ #: ../admin/wp-slimstat-admin.php:883
4090
  msgid ""
4091
  "this field is set to <em>[pre]</em> if the resource has been accessed "
4092
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4097
  "Link_prefetching_FAQ\"> préchargement des liens</a> ou d'autres techniques "
4098
  "similaires"
4099
 
4100
+ #: ../admin/wp-slimstat-admin.php:884
4101
  msgid "author associated to that post/page when the resource was accessed"
4102
  msgstr "auteur associé à cet article/page lorsque la ressource est accessible"
4103
 
4104
+ #: ../admin/wp-slimstat-admin.php:885
4105
  msgid "ID of the category/term associated to the resource, when available"
4106
  msgstr "ID de la catégorie/terme associée à la ressource, lorsqu'il y en a"
4107
 
4108
+ #: ../admin/wp-slimstat-admin.php:886
4109
  msgid "visitor's originating IP address, if available"
4110
  msgstr "adresse IP d'origine du visiteur, s'il est disponible"
4111
 
4112
+ #: ../admin/wp-slimstat-admin.php:887
4113
  msgid ""
4114
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4115
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
4123
  "\" href=\"http://codex.wordpress.org/Conditional_Tags\">Conditional Tags</a> "
4124
  "pour plus d'informations"
4125
 
4126
+ #: ../admin/wp-slimstat-admin.php:888
4127
  msgid "Screen Resolution"
4128
  msgstr "la résolution de l'écran"
4129
 
4130
+ #: ../admin/wp-slimstat-admin.php:888
4131
  msgid "viewport width and height (1024x768, 800x600, ...)"
4132
  msgstr "résolution de l'écran (1024x768, 800x600, ...)"
4133
 
4134
+ #: ../admin/wp-slimstat-admin.php:889
4135
  msgid ""
4136
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4137
  "visitors"
4139
  "généralement utilisé en conjonction avec <em>n'est pas vide </em>, identifie "
4140
  "les visiteurs humains"
4141
 
4142
+ #: ../admin/wp-slimstat-admin.php:890
4143
  msgid "Date Filters"
4144
  msgstr "Filtres de dates"
4145
 
4146
+ #: ../admin/wp-slimstat-admin.php:890
4147
  msgid ""
4148
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4149
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
4154
  "ex : jour = 1, mois = 1, année = vide, intervalle = -1 fixera un filtre "
4155
  "année à date)"
4156
 
4157
+ #: ../admin/wp-slimstat-admin.php:891
4158
  msgid "SERP Position"
4159
  msgstr "Position SERP "
4160
 
4161
+ #: ../admin/wp-slimstat-admin.php:891
4162
  msgid ""
4163
  "set the filter to Referer contains cd=N&, where N is the position you are "
4164
  "looking for"
4166
  "Réglez le filtre sur Référent contient cd=N&, où N est la position que vous "
4167
  "recherchez"
4168
 
4169
+ #: ../admin/wp-slimstat-admin.php:918
4170
  msgid "Yes"
4171
  msgstr "Oui"
4172
 
4173
+ #: ../admin/wp-slimstat-admin.php:919
4174
  msgid "No"
4175
  msgstr "Non"
4176
 
4177
+ #: ../admin/wp-slimstat-admin.php:920
4178
  msgid "Site Specific"
4179
  msgstr "Spécificités du site"
4180
 
5699
  msgid "c-xy"
5700
  msgstr "Local"
5701
 
5702
+ #: ../wp-slimstat.php:223 ../wp-slimstat.php:515
5703
+ msgid "Notice: Pageview filtered by third-party code"
5704
  msgstr ""
5705
 
5706
+ #: ../wp-slimstat.php:240
5707
+ #, fuzzy, php-format
5708
+ msgid "Error: Malformed URL %s"
5709
  msgstr "Ignorer les utilisateurs"
5710
 
5711
+ #: ../wp-slimstat.php:259
5712
+ #, php-format
5713
+ msgid "Notice: Referrer %s is blacklisted"
5714
  msgstr ""
5715
 
5716
+ #: ../wp-slimstat.php:347
5717
+ #, fuzzy, php-format
5718
+ msgid "Notice: Permalink %s is blacklisted"
5719
  msgstr "le permalien"
5720
 
5721
+ #: ../wp-slimstat.php:358
5722
+ msgid "Error: Empty or not supported IP address format (IPv6)"
 
 
 
 
 
 
 
 
5723
  msgstr ""
5724
 
5725
+ #: ../wp-slimstat.php:367
5726
  #, php-format
5727
+ msgid "Notice: Logged in user %s not tracked"
5728
  msgstr ""
5729
 
5730
+ #: ../wp-slimstat.php:375
5731
  #, php-format
5732
+ msgid "Notice: User with capability %s not tracked"
5733
  msgstr ""
5734
 
5735
+ #: ../wp-slimstat.php:385
5736
+ #, fuzzy, php-format
5737
+ msgid "Notice: User %s is blacklisted"
5738
+ msgstr "le permalien"
5739
+
5740
+ #: ../wp-slimstat.php:406
5741
+ #, fuzzy, php-format
5742
+ msgid "Notice: Spammer %s not tracked"
5743
+ msgstr "Robot ou Crawler"
5744
+
5745
+ #: ../wp-slimstat.php:435
5746
  #, php-format
5747
+ msgid "Notice: IP address %s is blacklisted"
5748
  msgstr ""
5749
 
5750
+ #: ../wp-slimstat.php:464
5751
  #, php-format
5752
+ msgid "Notice: Country %s is blacklisted"
5753
  msgstr ""
5754
 
5755
+ #: ../wp-slimstat.php:473
5756
  #, fuzzy
5757
+ msgid "Notice: Prefetch requests are ignored"
5758
  msgstr "Ignorer les requêtes anticipées"
5759
 
5760
+ #: ../wp-slimstat.php:489
5761
  #, fuzzy
5762
+ msgid "Notice: Bot not tracked"
5763
  msgstr "Robot ou Crawler"
5764
 
5765
+ #: ../wp-slimstat.php:498
5766
  #, php-format
5767
+ msgid "Notice: Browser %s is blacklisted"
5768
+ msgstr ""
5769
+
5770
+ #: ../wp-slimstat.php:528
5771
+ msgid "Error:"
5772
  msgstr ""
5773
 
5774
+ #: ../wp-slimstat.php:1209
5775
  msgid "Invalid payload string. Try clearing your WordPress cache."
5776
  msgstr ""
5777
 
5778
+ #: ../wp-slimstat.php:1219
5779
  msgid "Invalid data signature. Try clearing your WordPress cache."
5780
  msgstr ""
5781
 
5782
+ #: ../wp-slimstat.php:1289
5783
  #, fuzzy
5784
  msgid "There was an error downloading the MaxMind Geolite DB:"
5785
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5786
 
5787
+ #: ../wp-slimstat.php:1297 ../wp-slimstat.php:1306
5788
  #, fuzzy
5789
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5790
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5791
 
5792
+ #: ../wp-slimstat.php:1301
5793
  msgid "Function gzopen not defined. Aborting."
5794
  msgstr ""
5795
 
5796
+ #: ../wp-slimstat.php:1311
5797
  #, fuzzy
5798
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5799
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5800
 
5801
+ #~ msgid "Ignore users (username not found)"
5802
+ #~ msgstr "Utilisateur inconnu (nom d'utilisateur non trouvé)"
5803
+
5804
+ #~ msgid "General"
5805
+ #~ msgstr "Général"
5806
+
5807
+ #, fuzzy
5808
+ #~ msgid "Track Pageviews"
5809
+ #~ msgstr "Total Pages Vues"
5810
+
5811
+ #~ msgid "Visitors and Known Users"
5812
+ #~ msgstr "Visiteurs et utilisateurs connus"
5813
+
5814
+ #~ msgid ""
5815
+ #~ "List all the usernames you don't want to track, separated by commas. "
5816
+ #~ "Please be aware that spaces are <em>not</em> ignored and that usernames "
5817
+ #~ "are case sensitive."
5818
+ #~ msgstr ""
5819
+ #~ "Entrez une liste d'utilisateurs WordPress que vous ne voulez pas suivre, "
5820
+ #~ "séparés par des virgules. Veuillez noter que les espaces <em>sont </em> "
5821
+ #~ "pris en compte et que les noms d'utilisateurs sont sensibles à la casse. "
5822
+ #~ "(min-maj)"
5823
+
5824
+ #~ msgid "Permissions"
5825
+ #~ msgstr "Permissions"
5826
+
5827
+ #~ msgid "Advanced"
5828
+ #~ msgstr "Avancé"
5829
+
5830
+ #~ msgid "Debug Mode"
5831
+ #~ msgstr "Mode Debug"
5832
+
5833
+ #~ msgid "Display the SQL queries used to retrieve the data."
5834
+ #~ msgstr "Afficher les requêtes SQL utilisées pour extraire les données."
5835
+
5836
+ #~ msgid "Map Overlay"
5837
+ #~ msgstr "Carte géographique"
5838
+
5839
+ #~ msgid "Double click on an empty region to reset the zoom level"
5840
+ #~ msgstr ""
5841
+ #~ "Double-cliquez sur une zone vide pour réinitialiser le niveau de zoom"
5842
+
5843
+ #~ msgid "Custom Reports"
5844
+ #~ msgstr "Rapports personnalisés"
5845
+
5846
  #, fuzzy
5847
  #~ msgid "Tracking"
5848
  #~ msgstr "Mode traçage"
5873
  #~ msgid "External Pages"
5874
  #~ msgstr "Pages externes"
5875
 
 
 
 
5876
  #~ msgid "Start From"
5877
  #~ msgstr "Commencer à partir de"
5878
 
5921
  #~ msgid "Views"
5922
  #~ msgstr "Vues"
5923
 
 
 
 
 
 
 
5924
  #~ msgid "Javascript"
5925
  #~ msgstr "Mode Javascript"
5926
 
6370
  #~ msgid "IP Addresses"
6371
  #~ msgstr "Adresses IP"
6372
 
 
 
 
6373
  #~ msgid "Capability to Admin"
6374
  #~ msgstr "Capacité à administrer"
6375
 
languages/wp-slimstat-fr_FR.mo CHANGED
Binary file
languages/wp-slimstat-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-01 21:02-0500\n"
6
- "PO-Revision-Date: 2015-10-01 21:02-0500\n"
7
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
8
  "Language-Team: Michael Bastin\n"
9
  "Language: fr_FR\n"
@@ -17,83 +17,7 @@ msgstr ""
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
- #: ../admin/config/addons.php:15
21
- msgid ""
22
- "There was an error retrieving the add-ons list from the server. Please try "
23
- "again later. Error Message:"
24
- msgstr ""
25
- "La liste des add-ons n'a pas pu être récupérée du serveur. Veuillez "
26
- "réessayer plus tard. Message d'erreur :"
27
-
28
- #: ../admin/config/addons.php:25
29
- msgid ""
30
- "There was an error decoding the add-ons list from the server. Please try "
31
- "again later."
32
- msgstr ""
33
- "La liste des add-ons n'a pas pu être récupérée du serveur. Veuillez "
34
- "réessayer plus tard."
35
-
36
- #: ../admin/config/addons.php:32 ../admin/config/index.php:255
37
- #: ../admin/wp-slimstat-admin.php:656 ../admin/wp-slimstat-admin.php:670
38
- #: ../wp-slimstat.php:1789
39
- msgid "Add-ons"
40
- msgstr "Add-ons"
41
-
42
- #: ../admin/config/addons.php:33
43
- msgid ""
44
- "Add-ons extend the functionality of Slimstat in many interesting ways. We "
45
- "offer both free and premium (paid) extensions. Each add-on can be installed "
46
- "as a separate plugin, which will receive regular updates via the WordPress "
47
- "Plugins panel. In order to be notified when a new version of a premium add-"
48
- "on is available, please enter the <strong>license key</strong> you received "
49
- "when you purchased it."
50
- msgstr ""
51
- "Les Add-ons rajoutent de nombreuses fonctionnalités intéressantes à WP "
52
- "Slimstat. Nous proposons une version gratuite et une version premium "
53
- "(payante). Chaque Add-on peut être installé séparément comme plugin et être "
54
- "mis à jour régulièrement via le panneau de gestion des plugins Wordpress. "
55
- "Afin d'être averti d'une nouvelle version premium, veuillez entrer le "
56
- "<strong>code de licence<strong> que vous avez reçu à l'achat."
57
-
58
- #: ../admin/config/addons.php:37
59
- #, php-format
60
- msgid ""
61
- "This list is refreshed once daily: <a href=\"%s&amp;force_refresh=true"
62
- "\">click here</a> to clear the cache."
63
- msgstr ""
64
-
65
- #: ../admin/config/addons.php:46
66
- msgid "Add-on"
67
- msgstr "Add-on"
68
-
69
- #: ../admin/config/addons.php:46
70
- msgid "Description"
71
- msgstr "Description"
72
-
73
- #: ../admin/config/addons.php:57
74
- #, fuzzy
75
- msgid "Repo Version"
76
- msgstr "la version CSS"
77
-
78
- #: ../admin/config/addons.php:57
79
- #, fuzzy
80
- msgid "Version"
81
- msgstr "la version CSS"
82
-
83
- #: ../admin/config/addons.php:69
84
- #, fuzzy
85
- msgid "Your Version:"
86
- msgstr "la version CSS"
87
-
88
- #: ../admin/config/addons.php:72
89
- msgid "Installed and Active"
90
- msgstr ""
91
-
92
- #: ../admin/config/index.php:47
93
- msgid "Ignore users (username not found)"
94
- msgstr "Utilisateur inconnu (nom d'utilisateur non trouvé)"
95
-
96
- #: ../admin/config/index.php:67
97
  msgid ""
98
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
99
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
@@ -102,11 +26,11 @@ msgstr ""
102
  "Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
103
  "d'informations"
104
 
105
- #: ../admin/config/index.php:82
106
  msgid "Read access: username not found"
107
  msgstr "Accès lecture : username inexistant"
108
 
109
- #: ../admin/config/index.php:92 ../admin/config/index.php:117
110
  msgid ""
111
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
112
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
@@ -116,44 +40,34 @@ msgstr ""
116
  "org/Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
117
  "d'informations"
118
 
119
- #: ../admin/config/index.php:107
120
  msgid "Config access: username not found"
121
  msgstr "Accès configuration : username inexistant"
122
 
123
- #: ../admin/config/index.php:126
124
- msgid "General"
125
- msgstr "Général"
126
 
127
- #: ../admin/config/index.php:128 ../admin/config/index.php:224
128
  msgid "Tracker"
129
  msgstr "Traçage"
130
 
131
- #: ../admin/config/index.php:129
132
- #, fuzzy
133
- msgid "Track Pageviews"
134
- msgstr "Total Pages Vues"
135
 
136
- #: ../admin/config/index.php:129
137
  #, fuzzy
138
  msgid "Turn the tracker on or off, while keeping the reports accessible."
139
  msgstr ""
140
  "Activez ou désactivez le Traceur, mais conservez le rapport accessible (Ce "
141
  "que vous n'auriez pas si vous désactiviez le plugin.)"
142
 
143
- #: ../admin/config/index.php:129 ../admin/config/index.php:131
144
- msgid "On"
145
- msgstr "Actif"
146
-
147
- #: ../admin/config/index.php:129 ../admin/config/index.php:131
148
- #: ../admin/view/wp-slimstat-reports.php:1269
149
- msgid "Off"
150
- msgstr ""
151
-
152
- #: ../admin/config/index.php:130
153
  msgid "Tracking Mode"
154
  msgstr "Mode traçage"
155
 
156
- #: ../admin/config/index.php:130
157
  #, fuzzy
158
  msgid ""
159
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
@@ -168,20 +82,20 @@ msgstr ""
168
  "ignorés. En outre, <strong>la plupart</strong> des spammeurs, moteurs de "
169
  "recherche et autres robots ne seront pas suivis."
170
 
171
- #: ../admin/config/index.php:130
172
- msgid "Client"
173
  msgstr ""
174
 
175
- #: ../admin/config/index.php:130
176
  #, fuzzy
177
- msgid "Server"
178
  msgstr "Côté serveur"
179
 
180
- #: ../admin/config/index.php:131
181
  msgid "Stealth Mode"
182
  msgstr ""
183
 
184
- #: ../admin/config/index.php:131
185
  msgid ""
186
  "Do not add the javascript tracking code to your pages, if tracking mode is "
187
  "set to Server. Please note: if enabled, this will prevent the tracker from "
@@ -189,35 +103,43 @@ msgid ""
189
  "etc. This option is ignored is Tracking Mode is set to Client."
190
  msgstr ""
191
 
192
- #: ../admin/config/index.php:132
 
 
 
 
 
 
 
 
193
  #, fuzzy
194
  msgid "Admin Pages"
195
  msgstr "Tracer les pages Administrateur"
196
 
197
- #: ../admin/config/index.php:132
198
  msgid "Enable this option to track your users' activity within the admin."
199
  msgstr ""
200
  "Activez cette option pour suivre l'activité de vos utilisateurs dans l'admin."
201
 
202
- #: ../admin/config/index.php:132
203
  #, fuzzy
204
  msgid "Track"
205
  msgstr "Traçage"
206
 
207
- #: ../admin/config/index.php:132
208
  #, fuzzy
209
  msgid "Do not track"
210
  msgstr "ne contient pas"
211
 
212
- #: ../admin/config/index.php:134
213
  msgid "WordPress Integration"
214
  msgstr "Intégration WordPress"
215
 
216
- #: ../admin/config/index.php:135
217
  msgid "Menu Position"
218
  msgstr "Position du Menu"
219
 
220
- #: ../admin/config/index.php:135
221
  msgid ""
222
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
223
  "admin bar (if visible)."
@@ -225,97 +147,97 @@ msgstr ""
225
  "Choisir entre un menu d'administration dans la barre latérale de WordPress "
226
  "ou un menu déroulant dans la barre supérieure (si elle est affichée)."
227
 
228
- #: ../admin/config/index.php:135
229
  msgid "Side Menu"
230
  msgstr "Menu latéral"
231
 
232
- #: ../admin/config/index.php:135
233
  msgid "Admin Bar"
234
  msgstr "Barre d'Administration"
235
 
236
- #: ../admin/config/index.php:136
237
  #, fuzzy
238
  msgid "Posts and Pages"
239
  msgstr "Etendre les Stats aux articles"
240
 
241
- #: ../admin/config/index.php:136
242
  #, fuzzy
243
  msgid ""
244
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
245
- "per post in the last 365 days."
246
  msgstr ""
247
  "Ajoute une colonne à l'écran d'édition des articles, en indiquant le nombre "
248
  "de visites par article (peut ralentir le rendu des pages)."
249
 
250
- #: ../admin/config/index.php:137
251
- msgid "Dashboard Widgets"
252
- msgstr ""
253
-
254
- #: ../admin/config/index.php:137
255
- msgid ""
256
- "Choose if you want to have the most important reports on your WordPress "
257
- "Dashboard. Use the Screen Options dropdown to select which ones to display."
258
- msgstr ""
259
-
260
- #: ../admin/config/index.php:138
261
  #, fuzzy
262
  msgid "Report Interval"
263
  msgstr "Intervalle unique"
264
 
265
- #: ../admin/config/index.php:138
266
  msgid ""
267
  "Enter the time range, in days, that should be used to calculate the value "
268
  "here above."
269
  msgstr ""
270
 
271
- #: ../admin/config/index.php:139
272
  #, fuzzy
273
  msgid "Report Type"
274
  msgstr "Rapports"
275
 
276
- #: ../admin/config/index.php:139
277
  msgid ""
278
  "Select what kind of information you would like to see displayed on the Posts "
279
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
280
  "IPs consider only one hit per user in the given time range."
281
  msgstr ""
282
 
283
- #: ../admin/config/index.php:139 ../admin/view/wp-slimstat-reports.php:97
284
- #: ../admin/view/wp-slimstat-reports.php:1124
285
- #: ../admin/view/wp-slimstat-reports.php:1285
286
- #: ../admin/view/wp-slimstat-reports.php:1443
287
  msgid "Pageviews"
288
  msgstr "Pages vues"
289
 
290
- #: ../admin/config/index.php:139 ../admin/view/wp-slimstat-reports.php:1124
291
- #: ../admin/view/wp-slimstat-reports.php:1129
292
- #: ../admin/view/wp-slimstat-reports.php:1134
293
- #: ../admin/view/wp-slimstat-reports.php:1300
294
- #: ../admin/view/wp-slimstat-reports.php:1345
295
  msgid "Unique IPs"
296
  msgstr "IPs uniques"
297
 
298
- #: ../admin/config/index.php:140
 
 
 
 
 
 
 
 
 
 
299
  #, fuzzy
300
  msgid "Hide Add-ons"
301
  msgstr "Add-ons"
302
 
303
- #: ../admin/config/index.php:140
304
  msgid ""
305
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
306
  "from the list of plugins in WordPress. Please note that you will still "
307
  "receive updates for hidden add-ons."
308
  msgstr ""
309
 
310
- #: ../admin/config/index.php:142
311
  msgid "Database"
312
  msgstr "Base de données"
313
 
314
- #: ../admin/config/index.php:143
315
  msgid "Retain data for"
316
  msgstr "Conserver les données pour"
317
 
318
- #: ../admin/config/index.php:143
319
  #, fuzzy
320
  msgid ""
321
  "Clean-up log entries older than the number of days specified here above. "
@@ -326,11 +248,11 @@ msgstr ""
326
  "ci-dessus. Entrer <strong>0</strong> (number zero) si vous souhaitez "
327
  "conserver toutes vos données sans limites de durée."
328
 
329
- #: ../admin/config/index.php:143
330
  msgid "Next clean-up on"
331
  msgstr "Prochain nettoyage le"
332
 
333
- #: ../admin/config/index.php:143
334
  #, fuzzy, php-format
335
  msgid ""
336
  "Entries logged on or before %s will be archived or deleted according to the "
@@ -338,18 +260,18 @@ msgid ""
338
  msgstr ""
339
  "Les données enregistrées le ou avant le %s seront définitivement supprimées. "
340
 
341
- #: ../admin/config/index.php:143 ../admin/view/index.php:102
342
  #: ../admin/view/wp-slimstat-db.php:79
343
- #: ../admin/view/wp-slimstat-reports.php:1269
344
  msgid "days"
345
  msgstr "jours"
346
 
347
- #: ../admin/config/index.php:144
348
  #, fuzzy
349
  msgid "Delete records"
350
  msgstr "Filtrer les pages vues pour que"
351
 
352
- #: ../admin/config/index.php:144
353
  msgid ""
354
  "If DB space is not an issue, you can decide to archive older records in "
355
  "another table, instead of deleting them. This way performance is preserved, "
@@ -359,272 +281,218 @@ msgid ""
359
  "is uninstalled. Make sure to backup your data before you proceed."
360
  msgstr ""
361
 
362
- #: ../admin/config/index.php:149 ../admin/config/index.php:210
363
- msgid "Reports"
364
- msgstr "Rapports"
 
365
 
366
- #: ../admin/config/index.php:151
367
- msgid "Formats and Conversions"
 
 
 
 
 
 
368
  msgstr ""
 
 
369
 
370
- #: ../admin/config/index.php:152
371
- msgid "Number Format"
372
- msgstr "Format des nombres"
373
 
374
- #: ../admin/config/index.php:152
375
- msgid "Choose the number format you want to use for your reports."
 
 
 
 
376
  msgstr ""
377
- "Choisissez le format numérique que vous souhaitez utiliser, européen ou "
378
- "américain."
379
 
380
- #: ../admin/config/index.php:153
381
- #, fuzzy
382
- msgid "Date Format"
383
- msgstr "Données et Formats"
384
 
385
- #: ../admin/config/index.php:153
386
- #, fuzzy
387
  msgid ""
388
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
389
- "Format</a> to use when displaying a pageview's date."
 
390
  msgstr ""
391
- "<a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank"
392
- "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
393
- "vue."
394
 
395
- #: ../admin/config/index.php:154
396
- #, fuzzy
397
- msgid "Time Format"
398
- msgstr "Format des nombres"
399
 
400
- #: ../admin/config/index.php:154
401
- #, fuzzy
402
  msgid ""
403
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
404
- "Format</a> to use when displaying a pageview's time."
 
 
 
405
  msgstr ""
406
- "<a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank"
407
- "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
408
- "vue."
 
 
 
409
 
410
- #: ../admin/config/index.php:155
411
  #, fuzzy
412
- msgid "Use Display Name"
413
- msgstr "Voir Nom d'affichage"
414
 
415
- #: ../admin/config/index.php:155
 
 
 
 
416
  msgid ""
417
- "By default, users are listed by their usernames. Use this option to "
418
- "visualize their display names instead."
419
  msgstr ""
420
- "Par défaut, les utilisateurs sont affichés par Nom d'utilisateur. Utilisez "
421
- "cette option pour basculer au Nom d'affichage."
422
 
423
- #: ../admin/config/index.php:156
424
  #, fuzzy
425
- msgid "Use Titles"
426
- msgstr "Afficher les titres"
427
 
428
- #: ../admin/config/index.php:156
429
- #, fuzzy
430
  msgid ""
431
- "Slimstat converts your permalinks into post, page and category titles. "
432
- "Disable this feature if you need to see the URL in your reports."
 
433
  msgstr ""
434
- "WP SlimStat convertit vos permalinks en post et en titres de pages. "
435
- "Désactivez cette fonction si vous souhaitez conserver l'URL dans de vos "
436
- "rapports."
437
-
438
- #: ../admin/config/index.php:157
439
- msgid "Convert IP Addresses"
440
- msgstr "Convertir les adresses IP"
441
-
442
- #: ../admin/config/index.php:157
443
- msgid "Display provider names instead of IP addresses."
444
- msgstr "Afficher le nom du fournisseur d'accès au lieu de l'adresse IP."
445
-
446
- #: ../admin/config/index.php:159
447
- msgid "Functionality"
448
- msgstr "Fonctionnalité"
449
 
450
- #: ../admin/config/index.php:160
451
- msgid "SlimScroll"
452
- msgstr "SlimScroll"
453
 
454
- #: ../admin/config/index.php:160
455
  msgid ""
456
- "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
457
- "scrollbar."
 
 
458
  msgstr ""
459
- "Activer SlimScroll, une librairie jQuery élégante qui remplace la barre de "
460
- "défilement par défaut des navigateurs."
461
 
462
- #: ../admin/config/index.php:161
463
- msgid "Expand Details"
464
- msgstr "Développez les détails"
465
-
466
- #: ../admin/config/index.php:161
467
- msgid "Expand each row's details by default, insted of on mousehover."
468
  msgstr ""
469
- "Développe les détails de chaque ligne par défaut, plutôt que sur survol de "
470
- "souris."
471
 
472
- #: ../admin/config/index.php:162 ../admin/config/index.php:167
473
- msgid "Rows to Display"
474
- msgstr "Colonnes à afficher"
475
-
476
- #: ../admin/config/index.php:162
477
- msgid "Specify the number of items in each report."
478
- msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
479
-
480
- #: ../admin/config/index.php:163 ../admin/view/wp-slimstat-db.php:101
481
- #, fuzzy
482
- msgid "Max Results"
483
- msgstr "Limiter les résultats"
484
-
485
- #: ../admin/config/index.php:163
486
  msgid ""
487
- "Decide how many records should be retrieved from the database in total. "
488
- "Depending on your server configuration, you may want to fine tune this value "
489
- "to avoid exceeding your PHP memory limit."
490
  msgstr ""
491
 
492
- #: ../admin/config/index.php:165
493
- msgid "Activity Log"
494
- msgstr "Statistiques de fréquentation"
495
-
496
- #: ../admin/config/index.php:166
497
- msgid "Live Stream"
498
- msgstr "Flux en temps réel (Flux live)"
499
-
500
- #: ../admin/config/index.php:166
501
- msgid ""
502
- "Enable the Live view, which refreshes the Activity Log every X seconds. "
503
- "Enter <strong>0</strong> (number zero) to deactivate this feature."
504
  msgstr ""
505
- "Actualisez la vue 'Maintenant' toutes les X secondes. Entrer <strong>0</"
506
- "strong> pour désactiver cette fonctionnalité."
507
-
508
- #: ../admin/config/index.php:166 ../admin/config/index.php:225
509
- msgid "seconds"
510
- msgstr "secondes"
511
-
512
- #: ../admin/config/index.php:167
513
- msgid "Specify the number of items in the Activity Log."
514
- msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
515
 
516
- #: ../admin/config/index.php:169 ../admin/config/index.php:201
517
- #: ../admin/config/index.php:242
518
- msgid "Miscellaneous"
519
- msgstr "Divers"
520
-
521
- #: ../admin/config/index.php:170
522
- msgid "Custom CSS"
523
- msgstr "Personnaliser le style CSS"
524
-
525
- #: ../admin/config/index.php:170
526
  #, fuzzy
527
  msgid ""
528
- "Paste here your custom stylesheet to personalize the way your reports look. "
529
- "<a href='https://slimstat.freshdesk.com/support/solutions/"
530
- "articles/5000528528-how-can-i-change-the-colors-associated-to-color-coded-"
531
- "pageviews-known-user-known-visitors-search-e' target='_blank'>Check the FAQ</"
532
- "a> for more information on how to use this setting."
533
  msgstr ""
534
- "Collez ici votre feuille de style, afin de personnaliser la présentation de "
535
- "vos rapports. <a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
536
- "target='_blank'>Consultez les FAQs</a> pour plus d'informations sur la façon "
537
- "d'utiliser cette fonctionnalité."
538
 
539
- #: ../admin/config/index.php:171
540
  #, fuzzy
541
- msgid "Chart Colors"
542
- msgstr "Contrôle du graphique"
543
-
544
- #: ../admin/config/index.php:171
545
- msgid ""
546
- "Customize the look and feel of your charts by assigning personalized colors "
547
- "to each metric. List 4 hex colors separated by commas, strictly in the "
548
- "following order: metric 1 previous, metric 2 previous, metric 1 current, "
549
- "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
550
- msgstr ""
551
-
552
- #: ../admin/config/index.php:172
553
- msgid "Show User Agent"
554
- msgstr "Voir User Agent"
555
 
556
- #: ../admin/config/index.php:172
557
  msgid ""
558
- "Choose if you want to see the browser name or a complete user agent string "
559
- "when hovering on browser icons."
 
 
 
 
 
560
  msgstr ""
561
- "Choisissez si vous voulez voir le nom du navigateur ou une chaîne complete "
562
- "de user agent lorsque vous survolez les icônes du navigateur."
563
 
564
- #: ../admin/config/index.php:173
565
- msgid "Enable SOV"
566
- msgstr "Activer SOV"
567
-
568
- #: ../admin/config/index.php:173
569
- msgid ""
570
- "In linguistic typology, a subject-object-verb (SOV) language is one in which "
571
- "the subject, object, and verb of a sentence appear in that order, like in "
572
- "Japanese."
573
- msgstr ""
574
- "En typologie linguistique, une langue en sujet-objet-verbe (SOV) est une "
575
- "langue dans laquelle les sujet, objet et verbe d'une phrase apparaissent "
576
- "dans cet ordre, comme en japonais."
577
 
578
- #: ../admin/config/index.php:174
579
- #, fuzzy
580
- msgid "Social Analytics"
581
- msgstr "Analyse du site"
582
 
583
- #: ../admin/config/index.php:174
584
  msgid ""
585
- "Thanks to a <a href='http://getsocial.io/enterprise' "
586
- "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
587
- "set of analytics for social media where you can identify top performing "
588
- "posts. Track social sharing to understand which of your posts are generating "
589
- "more engagement. When this option is enabled, Slimstat sends a list of all "
590
- "your posts's URLs to their service for analysis once daily."
591
  msgstr ""
 
 
 
 
592
 
593
- #: ../admin/config/index.php:179
594
  msgid "Filters"
595
  msgstr "Filtres"
596
 
597
- #: ../admin/config/index.php:181
598
- msgid "Visitors and Known Users"
599
- msgstr "Visiteurs et utilisateurs connus"
 
600
 
601
- #: ../admin/config/index.php:182
602
  msgid "Track Registered Users"
603
  msgstr "Tracer les utilisateurs enregistrés"
604
 
605
- #: ../admin/config/index.php:182
606
  msgid "Enable this option to track logged in users."
607
  msgstr "Activez cette option pour tracer les utilisateurs connectés"
608
 
609
- #: ../admin/config/index.php:183
610
  msgid "Blacklist by Username"
611
  msgstr "Liste noire basée sur le nom d'utilisateur"
612
 
613
- #: ../admin/config/index.php:183
 
614
  msgid ""
615
  "List all the usernames you don't want to track, separated by commas. Please "
616
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
617
- "sensitive."
 
 
 
618
  msgstr ""
619
- "Entrez une liste d'utilisateurs WordPress que vous ne voulez pas suivre, "
620
- "séparés par des virgules. Veuillez noter que les espaces <em>sont </em> pris "
621
- "en compte et que les noms d'utilisateurs sont sensibles à la casse. (min-maj)"
 
 
 
 
622
 
623
- #: ../admin/config/index.php:184
624
  msgid "Blacklist by IP Address"
625
  msgstr "Liste noire par adresse IP"
626
 
627
- #: ../admin/config/index.php:184
628
  msgid ""
629
  "List all the IP addresses you don't want to track, separated by commas. Each "
630
  "network <strong>must</strong> be defined using the <a href='http://en."
@@ -639,11 +507,11 @@ msgstr ""
639
  "<em>192.168.0.0/24</em>). Si le format est incorrect, WP SlimStat ne peut "
640
  "pas suivre correctement les pages vues."
641
 
642
- #: ../admin/config/index.php:185
643
  msgid "Blacklist by Capability"
644
  msgstr "Blacklister par Capabilité WordPress"
645
 
646
- #: ../admin/config/index.php:185
647
  msgid ""
648
  "Users having at least one of the <a href='http://codex.wordpress.org/"
649
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
@@ -653,15 +521,15 @@ msgstr ""
653
  "Roles_and_Capabilities' target='_new'>capacités</a> listées ci-dessous ne "
654
  "seront pas suivis. Les capacités sont insensibles à la casse."
655
 
656
- #: ../admin/config/index.php:187
657
  msgid "Profiling"
658
  msgstr "Profiling"
659
 
660
- #: ../admin/config/index.php:188
661
  msgid "Ignore Spammers"
662
  msgstr "Ignorer les spammeurs"
663
 
664
- #: ../admin/config/index.php:188
665
  msgid ""
666
  "Enable this option if you don't want to track visits from users identified "
667
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -673,12 +541,12 @@ msgstr ""
673
  "Akismet). Les visites de personnes dont les commentaires sont ensuite marqué "
674
  "comme spam par vous, seront également supprimées de la base."
675
 
676
- #: ../admin/config/index.php:189
677
  #, fuzzy
678
  msgid "Ignore Bots"
679
  msgstr "Ignorer les utilisateurs"
680
 
681
- #: ../admin/config/index.php:189
682
  msgid ""
683
  "Turn on this feature if you want to have the accuracy level of server-side "
684
  "tracking, but not the inconvenience of getting your database clogged with "
@@ -686,11 +554,11 @@ msgid ""
686
  "note that in Client mode, bots are ignored regardless of this setting."
687
  msgstr ""
688
 
689
- #: ../admin/config/index.php:190
690
  msgid "Permalinks"
691
  msgstr "Rermaliens"
692
 
693
- #: ../admin/config/index.php:190
694
  msgid ""
695
  "List all the URLs on your website that you don't want to track, separated by "
696
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -708,11 +576,11 @@ msgstr ""
708
  "<code>/abo*t</code> correspondra /aboundant et /about, <code>/abo!t </code > "
709
  "correspondra /about et /abort. Les chaînes sont insensibles à la casse."
710
 
711
- #: ../admin/config/index.php:191
712
  msgid "Countries"
713
  msgstr "Pays"
714
 
715
- #: ../admin/config/index.php:191
716
  msgid ""
717
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
718
  "track, separated by commas."
@@ -720,11 +588,11 @@ msgstr ""
720
  "Listez tous les codes de pays (p. ex.: <code>en-us, it, es </code>) que vous "
721
  "ne voulez pas suivre, séparées par des virgules."
722
 
723
- #: ../admin/config/index.php:192
724
  msgid "User Agents"
725
  msgstr "User Agents"
726
 
727
- #: ../admin/config/index.php:192
728
  msgid ""
729
  "Browsers (user agents) you don't want to track, separated by commas. You can "
730
  "specify the browser's version adding a slash after the name (i.e. "
@@ -742,11 +610,11 @@ msgstr ""
742
  "correspondra à Chrome et Chromium, <code>IE/!.0</Code> correspondra IE/7.0 "
743
  "et IE/8.0. Les chaînes sont insensibles à la casse."
744
 
745
- #: ../admin/config/index.php:193
746
  msgid "Referring Sites"
747
  msgstr "Sites référents"
748
 
749
- #: ../admin/config/index.php:193
750
  msgid ""
751
  "Referring URLs that you don't want to track, separated by commas: "
752
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -763,91 +631,270 @@ msgstr ""
763
  "soit un caractère générique ou le protocole que vous voulez filtrer "
764
  "(http://, https://)."
765
 
766
- #: ../admin/config/index.php:195
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
767
  #, fuzzy
768
- msgid "Internal and Outbound Links"
769
- msgstr "Liens sortants récents"
770
 
771
- #: ../admin/config/index.php:196
772
- msgid "Track Outbound Clicks"
773
- msgstr "Tracer les liens sortants"
 
 
 
 
 
 
774
 
775
- #: ../admin/config/index.php:196
 
 
 
 
 
 
776
  msgid ""
777
- "Track when your visitors click on link to external websites. This option "
778
- "required Spy Mode to be enabled."
779
  msgstr ""
780
- "Détectez vos visiteurs cliquant sur des liens pointant sur des sites "
781
- "externes. Cette fonctionnalité nécéssite que le Mode Espion soit activé."
 
782
 
783
- #: ../admin/config/index.php:197
784
  #, fuzzy
785
- msgid "Track Coordinates"
786
- msgstr "Mode traçage"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
787
 
788
  #: ../admin/config/index.php:197
 
 
 
 
 
 
 
 
789
  msgid ""
790
- "Collect mouse coordinates and other information for clicks on internal "
791
- "links. Strongly recommended if you're using the heatmap add-on. By default, "
792
- "this information is only collected for external links."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
793
  msgstr ""
 
 
 
 
794
 
795
- #: ../admin/config/index.php:198
796
- msgid "No Callback"
797
- msgstr ""
 
798
 
799
- #: ../admin/config/index.php:198
800
  msgid ""
801
- "Track the event but do not invoke the callback function on links marked with "
802
- "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
803
- "attribute contains one of these strings (separated by comma). Useful to "
804
- "prevent conflicts with lightbox and similar libraries."
805
  msgstr ""
806
 
807
- #: ../admin/config/index.php:199
808
- msgid "Do Not Track"
809
- msgstr ""
810
 
811
- #: ../admin/config/index.php:199
812
  msgid ""
813
- "Do not track links marked with one of these class names, <em>rel</em> "
814
- "attributes or whose <em>href</em> attribute contains one of these strings "
815
- "(separated by comma)."
816
  msgstr ""
 
 
817
 
818
- #: ../admin/config/index.php:202
819
- msgid "Enable Privacy Mode"
820
- msgstr "Activer le mode privé"
821
 
822
- #: ../admin/config/index.php:202
823
- msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
 
 
 
824
  msgstr ""
825
- "Cette option masque l'adresse IP de vos visiteurs afin de se conformer aux "
826
- "lois de confidentialité européennes."
 
827
 
828
- #: ../admin/config/index.php:203
829
- msgid "Ignore Prefetch Requests"
830
- msgstr "Ignorer les requêtes anticipées"
 
831
 
832
- #: ../admin/config/index.php:203
833
  msgid ""
834
- "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
835
- "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
836
- "target='_blank'>Link Prefetching functionality</a>."
 
 
 
837
  msgstr ""
838
- "Activer ce filtre si vous voulez éviter à WP SlimStat le suivi des pages "
839
- "vues générées par Firefox <a href='https://developer.mozilla.org/en/"
840
- "Link_prefetching_FAQ' target='_blank'>Link Prefetching functionality</a>."
841
 
842
- #: ../admin/config/index.php:208
843
- msgid "Permissions"
844
- msgstr "Permissions"
845
 
846
- #: ../admin/config/index.php:211
847
  msgid "Restrict Authors"
848
  msgstr "Restriction Auteurs"
849
 
850
- #: ../admin/config/index.php:211
851
  msgid ""
852
  "Enable this option if you want your authors to only see stats related to "
853
  "their own content."
@@ -855,11 +902,11 @@ msgstr ""
855
  "Activez cette option si vous voulez que vos auteurs ne voient que les "
856
  "statistiques relatives à leur propre contenu."
857
 
858
- #: ../admin/config/index.php:212 ../admin/config/index.php:216
859
  msgid "Capability"
860
  msgstr "Aptitude"
861
 
862
- #: ../admin/config/index.php:212
863
  msgid ""
864
  "Specify the minimum <a href='http://codex.wordpress.org/"
865
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
@@ -875,11 +922,11 @@ msgstr ""
875
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
876
  "Dans ce cas, la liste a la priorité sur la capacité."
877
 
878
- #: ../admin/config/index.php:213 ../admin/config/index.php:217
879
  msgid "Whitelist"
880
  msgstr "Liste blanche"
881
 
882
- #: ../admin/config/index.php:213
883
  msgid ""
884
  "List all the users who should have access to the reports, separated by "
885
  "commas. Administrators are implicitly allowed, so you don't need to list "
@@ -891,13 +938,13 @@ msgstr ""
891
  "vide, <strong>tous vos utilisateurs</strong> sont autorisés à accéder. Les "
892
  "noms d'utilisateurs sont sensibles à la casse."
893
 
894
- #: ../admin/config/index.php:215 ../admin/config/index.php:268
895
- #: ../admin/wp-slimstat-admin.php:697 ../admin/wp-slimstat-admin.php:700
896
- #: ../wp-slimstat.php:1792
897
  msgid "Settings"
898
  msgstr "Réglages"
899
 
900
- #: ../admin/config/index.php:216
901
  msgid ""
902
  "Specify the minimum <a href='http://codex.wordpress.org/"
903
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
@@ -911,7 +958,7 @@ msgstr ""
911
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
912
  "Dans ce cas, la liste a la priorité sur la capacité."
913
 
914
- #: ../admin/config/index.php:217
915
  msgid ""
916
  "List all the users who can edit these options, separated by commas. Please "
917
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
@@ -923,132 +970,16 @@ msgstr ""
923
  "inscrire! Les noms d'utilisateurs sont sensibles à la casse. (Majuscules-"
924
  "minuscules)"
925
 
926
- #: ../admin/config/index.php:222
927
- msgid "Advanced"
928
- msgstr "Avancé"
929
-
930
- #: ../admin/config/index.php:225
931
- msgid "Session Duration"
932
- msgstr "Durée session"
933
-
934
- #: ../admin/config/index.php:225
935
- msgid ""
936
- "How many seconds should a human session last? Google Analytics sets it to "
937
- "1800 seconds."
938
- msgstr ""
939
- "Définit le nombre de secondes qu'une visite devrait durer. Google Analytics "
940
- "fixe cette durée à 1800 secondes."
941
-
942
- #: ../admin/config/index.php:226
943
- msgid "Extend Session"
944
- msgstr "Etendre la session"
945
-
946
- #: ../admin/config/index.php:226
947
- msgid "Extend the duration of a session each time the user visits a new page."
948
- msgstr ""
949
- "Prolonger la durée d'une session à chaque fois que l'utilisateur visite une "
950
- "page."
951
-
952
- #: ../admin/config/index.php:227
953
- msgid "Enable CDN"
954
- msgstr "Activer CDN"
955
-
956
- #: ../admin/config/index.php:227
957
- msgid ""
958
- "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
959
- "by serving our tracking code from their fast and reliable network (free "
960
- "service)."
961
- msgstr ""
962
- "Permet <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a> 's "
963
- "CDN, en servant le traqueur Javascript WP SlimStat à partir de leur réseau "
964
- "rapide et fiable."
965
-
966
- #: ../admin/config/index.php:228
967
- msgid "Extensions to Track"
968
- msgstr "Extensions du traçage"
969
-
970
- #: ../admin/config/index.php:228
971
- msgid ""
972
- "List all the file extensions that you want to be treated as Downloads. "
973
- "Please note that links pointing to external resources (i.e. PDFs on a "
974
- "different website) are considered Downloads and not Outbound Links (and "
975
- "tracked as such), if their extension matches one of the ones listed here "
976
- "below."
977
- msgstr ""
978
- "Les extensions de fichiers suivants (valeurs séparées par des virgules pour "
979
- "être répertoriées) seront suivis comme Téléchargements par WP SlimStat. "
980
- "Veuillez noter que les liens pointant vers des ressources externes (par ex. "
981
- "fichiers PDF sur un autre site) sont considérés comme Téléchargements et non "
982
- "comme liens sortants (et suivis en tant que tel), si leur extension "
983
- "correspond à l'une de celles qui sont énumérées ci-dessous."
984
-
985
- #: ../admin/config/index.php:230
986
- msgid "Pages not belonging to this site"
987
- msgstr ""
988
-
989
- #: ../admin/config/index.php:231
990
- #, fuzzy
991
- msgid ""
992
- "Add the following code to all the non-WP pages you want to track, right "
993
- "before the closing BODY tag"
994
- msgstr ""
995
- "Ajouter le code suivant à toutes les pages non-WordPress que vous souhaitez "
996
- "suivre."
997
-
998
- #: ../admin/config/index.php:241
999
- #, fuzzy
1000
- msgid "Allow External Domains"
1001
- msgstr "Liens externes hostiles"
1002
-
1003
- #: ../admin/config/index.php:241
1004
- msgid ""
1005
- "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
1006
- "header is present on the requested resource, when using the external "
1007
- "tracking code here above, list the domains (complete with scheme, separated "
1008
- "by commas) you would like to allow. For example: <code>http://my.domain.ext</"
1009
- "code> (no trailing slash). Please see <a href='http://www.w3.org/TR/cors/"
1010
- "#security' target='_blank'>this W3 resource</a> for more information on the "
1011
- "security implications of allowing CORS requests."
1012
- msgstr ""
1013
-
1014
- #: ../admin/config/index.php:243
1015
- msgid "Debug Mode"
1016
- msgstr "Mode Debug"
1017
-
1018
- #: ../admin/config/index.php:243
1019
- msgid "Display the SQL queries used to retrieve the data."
1020
- msgstr "Afficher les requêtes SQL utilisées pour extraire les données."
1021
-
1022
- #: ../admin/config/index.php:244
1023
- msgid "IP Lookup"
1024
- msgstr "Recherche d'IP"
1025
-
1026
- #: ../admin/config/index.php:244
1027
- msgid "Customize the Geolocation service to be used in the reports."
1028
- msgstr ""
1029
- "Personnaliser le service de Géolocalisation à utiliser dans les rapports."
1030
-
1031
- #: ../admin/config/index.php:245
1032
- msgid "Enable UAN"
1033
- msgstr "Activer UAN"
1034
-
1035
- #: ../admin/config/index.php:245
1036
- msgid ""
1037
- "Send anonymous data about user agents to our server for analysis. This "
1038
- "allows us to contribute to the <a href='http://browscap.org/' "
1039
- "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
1040
- "Slimstat's browser detection functionality. It also enables our transparent "
1041
- "ads network. No worries, your site will not be affected in any way."
1042
- msgstr ""
1043
- "Envoyer des données anonymes concernant les navigateurs inconnus à nos "
1044
- "serveurs pour analyse. Cela nous permet de contribuer au <a href='http://"
1045
- "browscap.org/' target='_blank'> projet opensource BrowsCap, et d'améliorer "
1046
- "la pertinence de la fonctionnalité de WPStats concernant les navigateurs web."
1047
-
1048
- #: ../admin/config/index.php:250
1049
  msgid "Maintenance"
1050
  msgstr "Maintenance"
1051
 
 
 
 
 
 
 
1052
  #: ../admin/config/maintenance.php:16
1053
  msgid ""
1054
  "Congrats! Slimstat is now optimized for <a href=\"http://www.youtube.com/"
@@ -1057,26 +988,26 @@ msgstr ""
1057
  "Félicitations ! WP SlimStat est à présent optimisé pour <a href=\"http://www."
1058
  "youtube.com/watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
1059
 
1060
- #: ../admin/config/maintenance.php:23
1061
  #, fuzzy
1062
  msgid "Indexing has been disabled. Enjoy the extra database space!"
1063
  msgstr ""
1064
  "L'indexation a bien été désactivée. Profitez bien de l'espace supplémentaire "
1065
  "que vous venez de gagner !"
1066
 
1067
- #: ../admin/config/maintenance.php:35
1068
  msgid "records deleted from your database."
1069
  msgstr "enregistrements supprimés de votre base de données."
1070
 
1071
- #: ../admin/config/maintenance.php:40
1072
  msgid "The geolocation database has been uninstalled from your server."
1073
  msgstr ""
1074
 
1075
- #: ../admin/config/maintenance.php:50
1076
  msgid "The geolocation database has been installed on your server."
1077
  msgstr ""
1078
 
1079
- #: ../admin/config/maintenance.php:158
1080
  msgid ""
1081
  "Your data was successfully imported. You may now drop the old tables: "
1082
  "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
@@ -1085,62 +1016,86 @@ msgid ""
1085
  "delete the old tables."
1086
  msgstr ""
1087
 
1088
- #: ../admin/config/maintenance.php:169
1089
  msgid "Your reports were successfully restored to their default arrangement."
1090
  msgstr ""
1091
  "Vos rapports ont été réinitialisés avec succès dans leur configuration par "
1092
  "défaut."
1093
 
1094
- #: ../admin/config/maintenance.php:179
1095
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1096
  msgstr "Vos tables WP SlimStat ont été converties en InnoDB avec succès."
1097
 
1098
- #: ../admin/config/maintenance.php:185
1099
  #, fuzzy
1100
  msgid "All the archived records were successfully deleted."
1101
  msgstr "Tous les enregistrements ont bien été supprimés"
1102
 
1103
- #: ../admin/config/maintenance.php:193
1104
  msgid "All the records were successfully deleted."
1105
  msgstr "Tous les enregistrements ont bien été supprimés"
1106
 
1107
- #: ../admin/config/maintenance.php:215
1108
  msgid "Debugging"
1109
  msgstr ""
1110
 
1111
- #: ../admin/config/maintenance.php:218
1112
- msgid "Tracker Error Code"
1113
- msgstr ""
 
1114
 
1115
- #: ../admin/config/maintenance.php:220
1116
  #, fuzzy
1117
  msgid "recorded on"
1118
  msgstr "Enregistrements"
1119
 
1120
- #: ../admin/config/maintenance.php:220
1121
  msgid "No Errors so far"
1122
  msgstr ""
1123
 
1124
- #: ../admin/config/maintenance.php:221
1125
  msgid ""
1126
  "The information here above is useful to troubleshoot issues with the "
1127
- "tracker. Please include this code when sending a support request."
 
 
 
 
1128
  msgstr ""
1129
 
1130
- #: ../admin/config/maintenance.php:225
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1131
  msgid "Layout"
1132
  msgstr ""
1133
 
1134
- #: ../admin/config/maintenance.php:228
1135
  msgid ""
1136
  "Are you sure you want to restore the default arrangement of your reports?"
1137
  msgstr "Etes-vous sûr de vouloir réinitialiser vos rapports ?"
1138
 
1139
- #: ../admin/config/maintenance.php:228
1140
  msgid "No Panic Button"
1141
  msgstr "Pas de panique !"
1142
 
1143
- #: ../admin/config/maintenance.php:230
1144
  #, fuzzy
1145
  msgid ""
1146
  "Reset the default arrangement of your reports. Helpful when, for some "
@@ -1148,83 +1103,83 @@ msgid ""
1148
  "in your views."
1149
  msgstr "Réinitialiser la mise en page par défaut de vos rapports."
1150
 
1151
- #: ../admin/config/maintenance.php:234
1152
  msgid "Data Maintenance"
1153
  msgstr "Maintenance des données"
1154
 
1155
- #: ../admin/config/maintenance.php:237
1156
  msgid "Delete pageviews where"
1157
  msgstr "Supprimer les pages où"
1158
 
1159
- #: ../admin/config/maintenance.php:251 ../admin/view/index.php:16
1160
  msgid "equals"
1161
  msgstr "est égal à"
1162
 
1163
- #: ../admin/config/maintenance.php:252 ../admin/view/index.php:17
1164
  msgid "is not equal to"
1165
  msgstr "n'est pas égal à"
1166
 
1167
- #: ../admin/config/maintenance.php:253 ../admin/view/index.php:18
1168
  msgid "contains"
1169
  msgstr "contient"
1170
 
1171
- #: ../admin/config/maintenance.php:254 ../admin/view/index.php:19
1172
  msgid "is included in"
1173
  msgstr ""
1174
 
1175
- #: ../admin/config/maintenance.php:255 ../admin/view/index.php:20
1176
  msgid "does not contain"
1177
  msgstr "ne contient pas"
1178
 
1179
- #: ../admin/config/maintenance.php:256 ../admin/view/index.php:21
1180
  msgid "starts with"
1181
  msgstr "commence par"
1182
 
1183
- #: ../admin/config/maintenance.php:257 ../admin/view/index.php:22
1184
  msgid "ends with"
1185
  msgstr "finit par"
1186
 
1187
- #: ../admin/config/maintenance.php:258 ../admin/view/index.php:23
1188
  msgid "sounds like"
1189
  msgstr "ressemble à"
1190
 
1191
- #: ../admin/config/maintenance.php:259 ../admin/view/index.php:24
1192
  msgid "is greater than"
1193
  msgstr "est plus grand que"
1194
 
1195
- #: ../admin/config/maintenance.php:260 ../admin/view/index.php:25
1196
  msgid "is less than"
1197
  msgstr "est plus petit que"
1198
 
1199
- #: ../admin/config/maintenance.php:261 ../admin/view/index.php:27
1200
  msgid "matches"
1201
  msgstr "correspond à"
1202
 
1203
- #: ../admin/config/maintenance.php:262 ../admin/view/index.php:28
1204
  msgid "does not match"
1205
  msgstr "ne correspond pas à"
1206
 
1207
- #: ../admin/config/maintenance.php:263 ../admin/view/index.php:29
1208
  msgid "is empty"
1209
  msgstr "est vide"
1210
 
1211
- #: ../admin/config/maintenance.php:264 ../admin/view/index.php:30
1212
  msgid "is not empty"
1213
  msgstr "n'est pas vide"
1214
 
1215
- #: ../admin/config/maintenance.php:267 ../admin/view/index.php:42
1216
  #: ../admin/view/index.php:105
1217
  msgid "Apply"
1218
  msgstr "Appliquer"
1219
 
1220
- #: ../admin/config/maintenance.php:268
1221
  msgid ""
1222
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1223
  msgstr ""
1224
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT ces enregistrement de "
1225
  "votre base de données ?"
1226
 
1227
- #: ../admin/config/maintenance.php:275
1228
  msgid ""
1229
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1230
  "database?"
@@ -1232,12 +1187,12 @@ msgstr ""
1232
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1233
  "votre base de données ?"
1234
 
1235
- #: ../admin/config/maintenance.php:275
1236
  #, fuzzy
1237
  msgid "Delete All Records"
1238
  msgstr "Supprimer toutes les pages vues"
1239
 
1240
- #: ../admin/config/maintenance.php:278
1241
  #, fuzzy
1242
  msgid ""
1243
  "Erase all the information collected so far by Slimstat, including the "
@@ -1246,7 +1201,7 @@ msgstr ""
1246
  "Effacer les informations collecter par WP Slimstat jusqu'à present. Cette "
1247
  "opération <strong>ne réinitialise pas </strong>vos paramétrages."
1248
 
1249
- #: ../admin/config/maintenance.php:284
1250
  #, fuzzy
1251
  msgid ""
1252
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
@@ -1255,20 +1210,20 @@ msgstr ""
1255
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1256
  "votre base de données ?"
1257
 
1258
- #: ../admin/config/maintenance.php:284
1259
  #, fuzzy
1260
  msgid "Delete Archive"
1261
  msgstr "Filtrer les pages vues pour que"
1262
 
1263
- #: ../admin/config/maintenance.php:287
1264
  msgid "Erase all the archived records. This operation cannot be undone."
1265
  msgstr ""
1266
 
1267
- #: ../admin/config/maintenance.php:293
1268
  msgid "Improve Performance"
1269
  msgstr "Improve la performance"
1270
 
1271
- #: ../admin/config/maintenance.php:297
1272
  msgid ""
1273
  "Please note that you will need about 30% more DB space to store the extra "
1274
  "information required."
@@ -1276,11 +1231,11 @@ msgstr ""
1276
  "Vous aurez besoin d'environ 30% de plus d'espace de base de données pour "
1277
  "stocker les informations supplémentaires nécessaires."
1278
 
1279
- #: ../admin/config/maintenance.php:301
1280
  msgid "Save DB Space"
1281
  msgstr "Gagner de l'espace sur la taille de votre base de données"
1282
 
1283
- #: ../admin/config/maintenance.php:304
1284
  msgid ""
1285
  "Please note that by removing table indexes, Slimstat's performance will be "
1286
  "affected."
@@ -1288,46 +1243,46 @@ msgstr ""
1288
  "Merci de noter qu'en supprimant les indexes, les performances de WP "
1289
  "SlimStats seront impactées."
1290
 
1291
- #: ../admin/config/maintenance.php:311
1292
  msgid ""
1293
  "Hold on tight, we are about to import all your old data. Are you sure you "
1294
  "want to proceed?"
1295
  msgstr ""
1296
 
1297
- #: ../admin/config/maintenance.php:311
1298
  #, fuzzy
1299
  msgid "Import old data"
1300
  msgstr "Import-Export"
1301
 
1302
- #: ../admin/config/maintenance.php:314
1303
  msgid ""
1304
  "Import all the records from the old table structure. No data will be deleted "
1305
  "from your database."
1306
  msgstr ""
1307
 
1308
- #: ../admin/config/maintenance.php:318
1309
  msgid "MaxMind IP to Country"
1310
  msgstr ""
1311
 
1312
- #: ../admin/config/maintenance.php:324
1313
  msgid ""
1314
  "Do you want to download and install the geolocation database from MaxMind's "
1315
  "server?"
1316
  msgstr ""
1317
 
1318
- #: ../admin/config/maintenance.php:324
1319
  msgid "Install GeoLite DB"
1320
  msgstr ""
1321
 
1322
- #: ../admin/config/maintenance.php:327
1323
  msgid "Do you want to uninstall the geolocation database?"
1324
  msgstr ""
1325
 
1326
- #: ../admin/config/maintenance.php:327
1327
  msgid "Uninstall GeoLite DB"
1328
  msgstr ""
1329
 
1330
- #: ../admin/config/maintenance.php:331
1331
  msgid ""
1332
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1333
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
@@ -1337,44 +1292,110 @@ msgid ""
1337
  "enable this functionality."
1338
  msgstr ""
1339
 
1340
- #: ../admin/config/maintenance.php:336
1341
- msgid "Import and Export"
1342
- msgstr "Import-Export"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1343
 
1344
- #: ../admin/config/maintenance.php:340
1345
- #, fuzzy
1346
  msgid ""
1347
- "Here below you can find the current configuration string for Slimstat. You "
1348
- "can update your settings by pasting a new string inside the text area and "
1349
- "clicking the Import button."
1350
  msgstr ""
1351
- "Ci-après vous trouverez la configuration actuelle de la ligne de "
1352
- "configuration. Vous pouvez mettre à jour vos réglages en collant une "
1353
- "nouvelle ligne ci-après et en cliquant sur Import."
1354
 
1355
- #: ../admin/config/maintenance.php:345
1356
- msgid "Import"
1357
- msgstr "Importer"
1358
 
1359
- #: ../admin/config/maintenance.php:346
1360
- msgid "Are you sure you want to OVERWRITE your current settings?"
1361
- msgstr "Etes-vous sûr que vous voulez réinitialiser vos onglets?"
1362
 
1363
- #: ../admin/config/maintenance.php:351
1364
- msgid "Database Information"
1365
- msgstr "Informations de base de données"
 
1366
 
1367
- #: ../admin/config/maintenance.php:354
1368
- msgid "Engine"
1369
- msgstr "Moteur"
 
1370
 
1371
- #: ../admin/config/maintenance.php:358
1372
- msgid "switch to InnoDB"
1373
- msgstr "changer pour InnoDB"
 
1374
 
1375
- #: ../admin/config/maintenance.php:369
1376
- msgid "records"
1377
- msgstr "Enregistrements"
1378
 
1379
  #: ../admin/view/index.php:26
1380
  msgid "is between (x,y)"
@@ -1384,11 +1405,11 @@ msgstr "est entre (x,y)"
1384
  msgid "Load"
1385
  msgstr ""
1386
 
1387
- #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1307
1388
  msgid "Today"
1389
  msgstr "Aujourd'hui"
1390
 
1391
- #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1310
1392
  msgid "Yesterday"
1393
  msgstr "Hier"
1394
 
@@ -1453,6 +1474,31 @@ msgid ""
1453
  "country of origin."
1454
  msgstr ""
1455
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1456
  #: ../admin/view/right-now.php:12
1457
  msgid "Human"
1458
  msgstr "Humain"
@@ -1469,8 +1515,8 @@ msgstr "Appareil mobile"
1469
  msgid "Syndication Reader"
1470
  msgstr "Lecteur de Flux (Syndication)"
1471
 
1472
- #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:939
1473
- #: ../admin/view/wp-slimstat-reports.php:1616
1474
  msgid "No data to display"
1475
  msgstr "Aucune donnée à afficher"
1476
 
@@ -1479,69 +1525,81 @@ msgid "Date and Time"
1479
  msgstr "Date/Heure"
1480
 
1481
  # Unknown
1482
- #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:990
1483
- #: ../admin/view/wp-slimstat-reports.php:1730
1484
  msgid "c-"
1485
  msgstr "Inconnu"
1486
 
1487
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1488
- #: ../admin/wp-slimstat-admin.php:1009 ../admin/wp-slimstat-admin.php:1049
1489
  msgid "Originating IP"
1490
  msgstr "IP d'origine"
1491
 
1492
- #: ../admin/view/right-now.php:142
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1493
  msgid "Server Latency and Page Speed in milliseconds"
1494
  msgstr "Latence du serveur et Rapidité de la page en millisecondes"
1495
 
1496
- #: ../admin/view/right-now.php:142
1497
  msgid "SL"
1498
  msgstr "SL"
1499
 
1500
- #: ../admin/view/right-now.php:142
1501
  msgid "PS"
1502
  msgstr "PS"
1503
 
1504
- #: ../admin/view/right-now.php:148
1505
  #, fuzzy
1506
  msgid "Time spent on this page in seconds"
1507
  msgstr "Ouvrir cette page dans une nouvelle fenêtre"
1508
 
1509
- #: ../admin/view/right-now.php:160 ../admin/view/wp-slimstat-reports.php:1087
1510
- #: ../admin/view/wp-slimstat-reports.php:1091
1511
- msgid "Open this URL in a new window"
1512
- msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1513
-
1514
- #: ../admin/view/right-now.php:163
1515
- msgid "Local search results page"
1516
- msgstr "Page de résultat d'une recherche locale"
1517
-
1518
- #: ../admin/view/right-now.php:171 ../admin/view/wp-slimstat-db.php:42
1519
- #: ../admin/wp-slimstat-admin.php:1012 ../admin/wp-slimstat-admin.php:1028
1520
- msgid "Search Terms"
1521
- msgstr "Termes de recherche"
1522
-
1523
- #: ../admin/view/right-now.php:177
1524
  msgid "Open this referrer in a new window"
1525
  msgstr "Ouvrir ce référent dans une nouvelle fenêtre"
1526
 
1527
- #: ../admin/view/right-now.php:178
1528
  msgid "Open this outbound link in a new window"
1529
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1530
 
1531
- #: ../admin/view/right-now.php:179
1532
  msgid "Content Type"
1533
  msgstr "Type de contenu"
1534
 
1535
- #: ../admin/view/right-now.php:182
1536
  #, fuzzy
1537
  msgid "Delete this pageview"
1538
  msgstr "Filtrer les pages vues pour que"
1539
 
1540
- #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:1025
 
 
 
 
 
 
 
 
 
 
1541
  msgid "Browser"
1542
  msgstr "Navigateur Web"
1543
 
1544
- #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:1026
1545
  msgid "Country Code"
1546
  msgstr "Code du pays"
1547
 
@@ -1549,29 +1607,29 @@ msgstr "Code du pays"
1549
  msgid "IP Address"
1550
  msgstr "Adresse IP"
1551
 
1552
- #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:1029
1553
  msgid "Language Code"
1554
  msgstr "Code langue"
1555
 
1556
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1557
- #: ../admin/wp-slimstat-admin.php:1030
1558
  msgid "Operating System"
1559
  msgstr "Système d'exploitation (OS)"
1560
 
1561
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1562
- #: ../admin/wp-slimstat-admin.php:1031
1563
  msgid "Permalink"
1564
  msgstr "Permalien"
1565
 
1566
- #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:1032
1567
  msgid "Referer"
1568
  msgstr "Référent"
1569
 
1570
- #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:1033
1571
  msgid "Visitor's Name"
1572
  msgstr "le nom des visiteurs"
1573
 
1574
- #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:1015
1575
  msgid "Outbound Link"
1576
  msgstr "Lien sortant"
1577
 
@@ -1584,19 +1642,19 @@ msgid "-- Advanced filters --"
1584
  msgstr "-- Filtres Avancés --"
1585
 
1586
  #: ../admin/view/wp-slimstat-db.php:52
1587
- #: ../admin/view/wp-slimstat-reports.php:336
1588
  msgid "Browser Capabilities"
1589
  msgstr "Capacités des Navigateurs"
1590
 
1591
- #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:1044
1592
  msgid "Browser Version"
1593
  msgstr "Version de navigateur"
1594
 
1595
- #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:1045
1596
  msgid "Browser Type"
1597
  msgstr "le type de navigateur Web"
1598
 
1599
- #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:1014
1600
  msgid "User Agent"
1601
  msgstr "User Agent"
1602
 
@@ -1609,15 +1667,15 @@ msgstr "Annotations graphique"
1609
  msgid "Server Latency"
1610
  msgstr "Latence du serveur"
1611
 
1612
- #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:1047
1613
  msgid "Post Author"
1614
  msgstr "l'auteur de l'article"
1615
 
1616
- #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:1048
1617
  msgid "Post Category ID"
1618
  msgstr "ID de la catégorie de l'article"
1619
 
1620
- #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:1050
1621
  msgid "Resource Content Type"
1622
  msgstr "le type de source de contenu"
1623
 
@@ -1638,7 +1696,7 @@ msgstr "la résolution de l'écran"
1638
  msgid "Viewport Size"
1639
  msgstr ""
1640
 
1641
- #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:1052
1642
  msgid "Visit ID"
1643
  msgstr "Visites ID"
1644
 
@@ -1684,7 +1742,7 @@ msgid "Event ID"
1684
  msgstr "Contenus récents"
1685
 
1686
  #: ../admin/view/wp-slimstat-db.php:96
1687
- #: ../admin/view/wp-slimstat-reports.php:1630
1688
  msgid "Type"
1689
  msgstr ""
1690
 
@@ -1707,142 +1765,153 @@ msgstr "Ordre de tri"
1707
  msgid "Offset"
1708
  msgstr ""
1709
 
1710
- #: ../admin/view/wp-slimstat-reports.php:20 ../admin/wp-slimstat-admin.php:649
1711
- #: ../wp-slimstat.php:1783
1712
  msgid "Access Log"
1713
  msgstr ""
1714
 
1715
- #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:650
1716
- #: ../admin/wp-slimstat-admin.php:665 ../wp-slimstat.php:1784
1717
  msgid "Overview"
1718
  msgstr "Vue générale"
1719
 
1720
- #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:651
1721
- #: ../admin/wp-slimstat-admin.php:666 ../wp-slimstat.php:1785
1722
  msgid "Audience"
1723
  msgstr "Audience"
1724
 
1725
- #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:652
1726
- #: ../admin/wp-slimstat-admin.php:667 ../wp-slimstat.php:1786
1727
  msgid "Site Analysis"
1728
  msgstr "Analyse du site"
1729
 
1730
- #: ../admin/view/wp-slimstat-reports.php:24
1731
- #: ../admin/view/wp-slimstat-reports.php:461
1732
- #: ../admin/wp-slimstat-admin.php:653 ../admin/wp-slimstat-admin.php:668
1733
- #: ../wp-slimstat.php:1787
1734
  msgid "Traffic Sources"
1735
  msgstr "Sources de trafic"
1736
 
1737
- #: ../admin/view/wp-slimstat-reports.php:25 ../admin/wp-slimstat-admin.php:654
1738
- #: ../admin/wp-slimstat-admin.php:669 ../wp-slimstat.php:1788
1739
- msgid "Map Overlay"
1740
- msgstr "Carte géographique"
 
 
 
 
 
 
 
 
 
 
 
 
 
1741
 
1742
- #: ../admin/view/wp-slimstat-reports.php:74
1743
  msgid "Chart controls"
1744
  msgstr "Contrôle du graphique"
1745
 
1746
- #: ../admin/view/wp-slimstat-reports.php:74
1747
  msgid "Use your mouse wheel to zoom in and out"
1748
  msgstr "Utilisez la molette de votre souris pour zoomer et dézoomer"
1749
 
1750
- #: ../admin/view/wp-slimstat-reports.php:74
1751
  msgid "While zooming in, drag the chart to move to a different area"
1752
  msgstr ""
1753
  "Alors que le zoom avant est activé, faites glisser la carte pour passer à "
1754
  "une autre zone"
1755
 
1756
- #: ../admin/view/wp-slimstat-reports.php:74
1757
- msgid "Double click on an empty region to reset the zoom level"
1758
- msgstr "Double-cliquez sur une zone vide pour réinitialiser le niveau de zoom"
1759
-
1760
- #: ../admin/view/wp-slimstat-reports.php:77
1761
- msgid ""
1762
- "Social Sharing Analytics <a href=\"http://getsocial.io/?utm_source=slimstat"
1763
- "\">powered by GetSocial</a>"
1764
- msgstr ""
1765
 
1766
- #: ../admin/view/wp-slimstat-reports.php:84
1767
  #, fuzzy
1768
  msgid "Visitors Activity"
1769
  msgstr "Statistiques de fréquentation"
1770
 
1771
- #: ../admin/view/wp-slimstat-reports.php:93
1772
  msgid "Color codes"
1773
  msgstr "Codes couleur"
1774
 
1775
- #: ../admin/view/wp-slimstat-reports.php:93
1776
  msgid "From search result page"
1777
  msgstr "Depuis un moteur de recherche"
1778
 
1779
- #: ../admin/view/wp-slimstat-reports.php:93
1780
- #: ../admin/wp-slimstat-admin.php:1007
1781
  msgid "Known Visitor"
1782
  msgstr "Visiteurs connus"
1783
 
1784
- #: ../admin/view/wp-slimstat-reports.php:93
1785
  msgid "Known Users"
1786
  msgstr "Utilisateurs connus"
1787
 
1788
- #: ../admin/view/wp-slimstat-reports.php:93
1789
  msgid "Other Humans"
1790
  msgstr "Autres humains"
1791
 
1792
- #: ../admin/view/wp-slimstat-reports.php:93
1793
  msgid "Bot or Crawler"
1794
  msgstr "Robot ou Crawler"
1795
 
1796
- #: ../admin/view/wp-slimstat-reports.php:107
1797
  msgid "About Slimstat"
1798
  msgstr "À propos de WP-SlimStat"
1799
 
1800
- #: ../admin/view/wp-slimstat-reports.php:117
1801
  #, fuzzy
1802
  msgid "Traffic at a Glance"
1803
  msgstr "Brièvement"
1804
 
1805
- #: ../admin/view/wp-slimstat-reports.php:127
1806
  msgid "Currently Online"
1807
  msgstr "Actuellement en ligne"
1808
 
1809
- #: ../admin/view/wp-slimstat-reports.php:140
1810
  msgid "Recent Search Terms"
1811
  msgstr "Derniers Termes de Recherches"
1812
 
1813
- #: ../admin/view/wp-slimstat-reports.php:150
1814
  msgid "Keywords used by your visitors to find your website on a search engine."
1815
  msgstr ""
1816
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
1817
  "de recherche."
1818
 
1819
- #: ../admin/view/wp-slimstat-reports.php:153
1820
- msgid "Top Pages"
 
1821
  msgstr "Top Pages Vues"
1822
 
1823
- #: ../admin/view/wp-slimstat-reports.php:164
1824
  msgid ""
1825
- "Here a \"page\" is not just a WordPress page type, but any web page on your "
1826
- "website, including posts, products, categories, and so on."
 
 
 
1827
  msgstr ""
1828
 
1829
- #: ../admin/view/wp-slimstat-reports.php:167
1830
  msgid "Top Traffic Sources"
1831
  msgstr "Top Sources de Trafic"
1832
 
1833
- #: ../admin/view/wp-slimstat-reports.php:179
1834
  msgid "Top Known Visitors"
1835
  msgstr "Top Visiteurs Connus"
1836
 
1837
- #: ../admin/view/wp-slimstat-reports.php:190
1838
  msgid "Top Search Terms"
1839
  msgstr "Top Termes de Recherche"
1840
 
1841
- #: ../admin/view/wp-slimstat-reports.php:201
1842
  msgid "Top Countries"
1843
  msgstr "Pays les plus récurrents"
1844
 
1845
- #: ../admin/view/wp-slimstat-reports.php:210
1846
  msgid ""
1847
  "You can configure Slimstat to ignore a specific Country by setting the "
1848
  "corresponding filter under Settings > Slimstat > Filters."
@@ -1850,11 +1919,11 @@ msgstr ""
1850
  "Vous pouvez configurer WP SlimStat afin d'ignorer un pays spécifique en "
1851
  "définissant le filtre correspondant sous SlimStat> Paramètres> Filtres."
1852
 
1853
- #: ../admin/view/wp-slimstat-reports.php:213
1854
  msgid "Rankings"
1855
  msgstr "Classements"
1856
 
1857
- #: ../admin/view/wp-slimstat-reports.php:217
1858
  msgid ""
1859
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1860
  "measures your site's rankings. Values are updated every 12 hours. Filters "
@@ -1865,16 +1934,16 @@ msgstr ""
1865
  "12 heures. Les filtres indiqués ci-dessus ne sont pas pris en compte dans ce "
1866
  "rapport."
1867
 
1868
- #: ../admin/view/wp-slimstat-reports.php:220
1869
  msgid "Top Language Families"
1870
  msgstr "Top Langues"
1871
 
1872
- #: ../admin/view/wp-slimstat-reports.php:233
1873
  #, fuzzy
1874
  msgid "Users Currently Online"
1875
  msgstr "Actuellement en ligne"
1876
 
1877
- #: ../admin/view/wp-slimstat-reports.php:244
1878
  msgid ""
1879
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1880
  "Slimstat leverages this information to identify returning visitors. Please "
@@ -1884,34 +1953,44 @@ msgstr ""
1884
  "attribue un cookie. WP SlimStat exploite ces informations pour identifier "
1885
  "les visiteurs qui reviennent, y compris les utilisateurs enregistrés."
1886
 
1887
- #: ../admin/view/wp-slimstat-reports.php:248
 
 
 
 
 
1888
  msgid "Human Visits"
1889
  msgstr "Visiteurs humains"
1890
 
1891
- #: ../admin/view/wp-slimstat-reports.php:258
 
 
 
 
 
1892
  msgid "Audience Overview"
1893
  msgstr "Vue générale"
1894
 
1895
- #: ../admin/view/wp-slimstat-reports.php:265
1896
  msgid ""
1897
  "Where not otherwise specified, the metrics in this report are referred to "
1898
  "human visitors."
1899
  msgstr ""
1900
 
1901
- #: ../admin/view/wp-slimstat-reports.php:268
1902
  msgid "Top Languages"
1903
  msgstr "Top Langues"
1904
 
1905
- #: ../admin/view/wp-slimstat-reports.php:279
1906
  msgid "Top Browsers"
1907
  msgstr "Principaux navigateurs"
1908
 
1909
- #: ../admin/view/wp-slimstat-reports.php:290
1910
  msgid "Top Service Providers"
1911
  msgstr "Top Fournisseur d'Accès"
1912
 
1913
- #: ../admin/view/wp-slimstat-reports.php:299
1914
- #: ../admin/view/wp-slimstat-reports.php:311
1915
  msgid ""
1916
  "Internet Service Provider: a company which provides other companies or "
1917
  "individuals with access to the Internet. Your DSL or cable internet service "
@@ -1924,24 +2003,24 @@ msgstr ""
1924
  "spécifiques en définissant le filtre correspondant sous SlimStat> Réglages> "
1925
  "Filtres."
1926
 
1927
- #: ../admin/view/wp-slimstat-reports.php:302
1928
  msgid "Top Operating Systems"
1929
  msgstr "Top Systèmes d'Exploitation"
1930
 
1931
- #: ../admin/view/wp-slimstat-reports.php:314
1932
  msgid "Top Screen Resolutions"
1933
  msgstr "Top Résolutions d'écran"
1934
 
1935
- #: ../admin/view/wp-slimstat-reports.php:325
1936
  #, fuzzy
1937
  msgid "Top Viewport Sizes"
1938
  msgstr "Top Catégories"
1939
 
1940
- #: ../admin/view/wp-slimstat-reports.php:345
1941
  msgid "Visit Duration"
1942
  msgstr "Durée des Visites"
1943
 
1944
- #: ../admin/view/wp-slimstat-reports.php:352
1945
  #, fuzzy
1946
  msgid ""
1947
  "All values represent the percentages of pageviews within the corresponding "
@@ -1950,32 +2029,32 @@ msgstr ""
1950
  "Carte du monde - Les valeurs représentent le pourcentage des accès provenant "
1951
  "de ce pays"
1952
 
1953
- #: ../admin/view/wp-slimstat-reports.php:355
1954
  msgid "Recent Countries"
1955
  msgstr "Derniers Pays"
1956
 
1957
- #: ../admin/view/wp-slimstat-reports.php:366
1958
  #, fuzzy
1959
  msgid "Recent Viewport Sizes"
1960
  msgstr "Dernières Catégories"
1961
 
1962
- #: ../admin/view/wp-slimstat-reports.php:377
1963
  msgid "Recent Operating Systems"
1964
  msgstr "Derniers Systèmes d'Exploitation"
1965
 
1966
- #: ../admin/view/wp-slimstat-reports.php:388
1967
  msgid "Recent Browsers"
1968
  msgstr "Navigateurs récents"
1969
 
1970
- #: ../admin/view/wp-slimstat-reports.php:399
1971
  msgid "Recent Languages"
1972
  msgstr "Dernier Language"
1973
 
1974
- #: ../admin/view/wp-slimstat-reports.php:410
1975
  msgid "Top Browser Families"
1976
  msgstr "Principales familles de navigateurs"
1977
 
1978
- #: ../admin/view/wp-slimstat-reports.php:419
1979
  msgid ""
1980
  "This report shows you what user agent families (no version considered) are "
1981
  "popular among your visitors."
@@ -1983,11 +2062,11 @@ msgstr ""
1983
  "Ce rapport affiche quelles familles d'user agent (sans prise en compte de "
1984
  "version) sont populaires chez vos visiteurs."
1985
 
1986
- #: ../admin/view/wp-slimstat-reports.php:422
1987
  msgid "Top OS Families"
1988
  msgstr "Principales familles de SO"
1989
 
1990
- #: ../admin/view/wp-slimstat-reports.php:433
1991
  msgid ""
1992
  "This report shows you what operating system families (no version considered) "
1993
  "are popular among your visitors."
@@ -1995,69 +2074,83 @@ msgstr ""
1995
  "Ce rapport affiche quelles familles de système d'exploitation (sans prise en "
1996
  "compte de version) sont populaires chez vos visiteurs."
1997
 
1998
- #: ../admin/view/wp-slimstat-reports.php:436
1999
  msgid "Recent Users"
2000
  msgstr "Utilisateurs récents"
2001
 
2002
- #: ../admin/view/wp-slimstat-reports.php:448
2003
  msgid "Top Users"
2004
  msgstr "Principaux utilisateurs"
2005
 
2006
- #: ../admin/view/wp-slimstat-reports.php:471
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2007
  #, fuzzy
2008
  msgid "Traffic Summary"
2009
  msgstr "Sources de trafic"
2010
 
2011
- #: ../admin/view/wp-slimstat-reports.php:480
2012
  msgid "Top Referring Search Engines"
2013
  msgstr "Top Moteurs de Recherche"
2014
 
2015
- #: ../admin/view/wp-slimstat-reports.php:507
2016
  msgid "Recent Outbound Links"
2017
  msgstr "Liens sortants récents"
2018
 
2019
- #: ../admin/view/wp-slimstat-reports.php:519
2020
  msgid "Recent Posts"
2021
  msgstr "Contenus récents"
2022
 
2023
- #: ../admin/view/wp-slimstat-reports.php:547
2024
  msgid "Recent Feeds"
2025
  msgstr "Flux récents"
2026
 
2027
- #: ../admin/view/wp-slimstat-reports.php:559
2028
  msgid "Recent Pages Not Found"
2029
  msgstr "Dernières pages non trouvées"
2030
 
2031
- #: ../admin/view/wp-slimstat-reports.php:571
2032
  msgid "Recent Internal Searches"
2033
  msgstr "Recherches internes récentes"
2034
 
2035
- #: ../admin/view/wp-slimstat-reports.php:581
2036
  #, fuzzy
2037
  msgid "Searches performed using WordPress' built-in search functionality."
2038
  msgstr ""
2039
  "Recherches effectuées en utilisant la fonctionnalité de recherche intégrée "
2040
  "dans Wordpress."
2041
 
2042
- #: ../admin/view/wp-slimstat-reports.php:584
2043
  msgid "Top Categories"
2044
  msgstr "Top Catégories"
2045
 
2046
- #: ../admin/view/wp-slimstat-reports.php:597
2047
  msgid "Top Downloads"
2048
  msgstr "Top Téléchargements"
2049
 
2050
- #: ../admin/view/wp-slimstat-reports.php:608
2051
  msgid ""
2052
  "You can configure Slimstat to track specific file extensions as downloads."
2053
  msgstr ""
2054
 
2055
- #: ../admin/view/wp-slimstat-reports.php:611
2056
  msgid "Recent Events"
2057
  msgstr "Evènements Récents"
2058
 
2059
- #: ../admin/view/wp-slimstat-reports.php:620
2060
- #: ../admin/view/wp-slimstat-reports.php:644
2061
  #, fuzzy
2062
  msgid ""
2063
  "This report lists any <em>event</em> occurred on your website. Please refer "
@@ -2067,49 +2160,49 @@ msgstr ""
2067
  "web. S'il vous plaît se référer à la FAQ pour plus d'informations sur la "
2068
  "façon de tirer parti de cette fonctionnalité."
2069
 
2070
- #: ../admin/view/wp-slimstat-reports.php:623
2071
  msgid "Top Posts"
2072
  msgstr "Top Posts"
2073
 
2074
- #: ../admin/view/wp-slimstat-reports.php:635
2075
  #, fuzzy
2076
  msgid "Top Events"
2077
  msgstr "Contenus récents"
2078
 
2079
- #: ../admin/view/wp-slimstat-reports.php:647
2080
  msgid "Top Internal Searches"
2081
  msgstr "Top Recherches Internes"
2082
 
2083
- #: ../admin/view/wp-slimstat-reports.php:659
2084
  msgid "Recent Categories"
2085
  msgstr "Dernières Catégories"
2086
 
2087
- #: ../admin/view/wp-slimstat-reports.php:671
2088
  msgid "Top Pages Not Found"
2089
  msgstr "Top Pages non trouvées"
2090
 
2091
- #: ../admin/view/wp-slimstat-reports.php:683
2092
  msgid "Top Authors"
2093
  msgstr "Top Auteurs"
2094
 
2095
- #: ../admin/view/wp-slimstat-reports.php:694
2096
  msgid "Top Tags"
2097
  msgstr "Top Mots Clés"
2098
 
2099
- #: ../admin/view/wp-slimstat-reports.php:706
2100
  msgid "Recent Downloads"
2101
  msgstr "Téléchargements récents"
2102
 
2103
- #: ../admin/view/wp-slimstat-reports.php:718
2104
  #, fuzzy
2105
  msgid "Top Outbound Links"
2106
  msgstr "Lien sortant"
2107
 
2108
- #: ../admin/view/wp-slimstat-reports.php:729
2109
  msgid "Your Website"
2110
  msgstr "Votre site web"
2111
 
2112
- #: ../admin/view/wp-slimstat-reports.php:736
2113
  msgid ""
2114
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2115
  "this report is not affected by the filters set here above."
@@ -2117,134 +2210,130 @@ msgstr ""
2117
  "Votre contenu en bref : Posts, commentaires, pingbacks, etc. Merci de noter "
2118
  "que ce rpport ne prend pas en compte les filtres ci-dessus."
2119
 
2120
- #: ../admin/view/wp-slimstat-reports.php:739
2121
  #, fuzzy
2122
  msgid "Top Bounce Pages"
2123
  msgstr "Pages de Rebonds"
2124
 
2125
- #: ../admin/view/wp-slimstat-reports.php:752
2126
  #, fuzzy
2127
  msgid "Top Exit Pages"
2128
  msgstr "Top Pages Vues"
2129
 
2130
- #: ../admin/view/wp-slimstat-reports.php:765
2131
  #, fuzzy
2132
  msgid "Top Entry Pages"
2133
  msgstr "Top Pages Vues"
2134
 
2135
- #: ../admin/view/wp-slimstat-reports.php:779
 
 
 
 
 
 
 
 
 
 
2136
  msgid "World Map"
2137
  msgstr "Carte du monde"
2138
 
2139
- #: ../admin/view/wp-slimstat-reports.php:852
2140
  msgid "Refresh"
2141
  msgstr "Rafraichir"
2142
 
2143
- #: ../admin/view/wp-slimstat-reports.php:889
2144
  #, php-format
2145
  msgid "Results %s - %s of %s"
2146
  msgstr "Résultats %s - %s de %s"
2147
 
2148
- #: ../admin/view/wp-slimstat-reports.php:891
2149
  msgid "Refresh in"
2150
  msgstr "Rafraichir dans "
2151
 
2152
- #: ../admin/view/wp-slimstat-reports.php:984
2153
  msgid "Category ID"
2154
  msgstr "l'ID de la catégorie de l'article"
2155
 
2156
- #: ../admin/view/wp-slimstat-reports.php:989
2157
- #: ../admin/view/wp-slimstat-reports.php:1004
2158
- #: ../admin/view/wp-slimstat-reports.php:1010
2159
  #, fuzzy
2160
  msgid "Code"
2161
  msgstr "Code OS "
2162
 
2163
  # Unknown
2164
- #: ../admin/view/wp-slimstat-reports.php:1005
2165
- #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1424
2166
  msgid "l-"
2167
  msgstr "Inconnue"
2168
 
2169
- #: ../admin/view/wp-slimstat-reports.php:1022
2170
  msgid "URL"
2171
  msgstr ""
2172
 
2173
- #: ../admin/view/wp-slimstat-reports.php:1035
2174
  msgid "Referrer"
2175
  msgstr "Référent"
2176
 
2177
- #: ../admin/view/wp-slimstat-reports.php:1076
2178
- #: ../admin/view/wp-slimstat-reports.php:1325
2179
- #: ../admin/view/wp-slimstat-reports.php:1381
2180
- #: ../admin/view/wp-slimstat-reports.php:1387
2181
- #: ../admin/view/wp-slimstat-reports.php:1393
2182
- #: ../admin/view/wp-slimstat-reports.php:1399
2183
- #: ../admin/view/wp-slimstat-reports.php:1405
2184
- #: ../admin/view/wp-slimstat-reports.php:1411
2185
- #: ../admin/view/wp-slimstat-reports.php:1417
2186
- #: ../admin/view/wp-slimstat-reports.php:1637
2187
  msgid "Hits"
2188
  msgstr "Hits"
2189
 
2190
- #: ../admin/view/wp-slimstat-reports.php:1129
2191
- #: ../admin/view/wp-slimstat-reports.php:1341
2192
- msgid "Visits"
2193
- msgstr "Visites"
2194
-
2195
- #: ../admin/view/wp-slimstat-reports.php:1134
2196
- msgid "Domains"
2197
- msgstr "Domaines"
2198
-
2199
- #: ../admin/view/wp-slimstat-reports.php:1252
2200
  #, fuzzy
2201
  msgid "Dataset Size"
2202
  msgstr "Taille de la base de données"
2203
 
2204
- #: ../admin/view/wp-slimstat-reports.php:1254
2205
  msgid "Total number of records stored in the database."
2206
  msgstr ""
2207
 
2208
- #: ../admin/view/wp-slimstat-reports.php:1256
2209
  msgid "DB Size"
2210
  msgstr "Taille de la base de données"
2211
 
2212
- #: ../admin/view/wp-slimstat-reports.php:1259
2213
  #, fuzzy
2214
  msgid "Tracking Enabled"
2215
  msgstr "Mode traçage"
2216
 
2217
- #: ../admin/view/wp-slimstat-reports.php:1262
2218
  msgid "Javascript Mode"
2219
  msgstr "Mode Javascript"
2220
 
2221
- #: ../admin/view/wp-slimstat-reports.php:1265
2222
  msgid "Tracking Browser Caps"
2223
  msgstr "Traçage Capacités Navigateurs"
2224
 
2225
- #: ../admin/view/wp-slimstat-reports.php:1268
2226
  msgid "Auto purge"
2227
  msgstr "Purge automatique"
2228
 
2229
- #: ../admin/view/wp-slimstat-reports.php:1271
2230
  msgid "Oldest pageview"
2231
  msgstr "Plus ancienne page vue"
2232
 
2233
- #: ../admin/view/wp-slimstat-reports.php:1272
2234
  msgid "No visits"
2235
  msgstr "Aucune visite"
2236
 
2237
- #: ../admin/view/wp-slimstat-reports.php:1274
2238
- #, fuzzy
2239
- msgid "Geolocation"
2240
- msgstr "Ordre de tri"
2241
-
2242
- #: ../admin/view/wp-slimstat-reports.php:1276
2243
  msgid "Date when the MaxMind Geolocation database was last updated."
2244
  msgstr ""
2245
 
2246
- #: ../admin/view/wp-slimstat-reports.php:1287
2247
- #: ../admin/view/wp-slimstat-reports.php:1445
2248
  msgid ""
2249
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2250
  "the tracking code is executed."
@@ -2252,17 +2341,17 @@ msgstr ""
2252
  "Une demande pour charger un fichier HTML. WP SlimStat enregistre un \"pages "
2253
  "vues \" chaque fois que le code de traçage est exécuté."
2254
 
2255
- #: ../admin/view/wp-slimstat-reports.php:1289
2256
  #, fuzzy
2257
  msgid "Days in Range"
2258
  msgstr "Intervalle de date"
2259
 
2260
- #: ../admin/view/wp-slimstat-reports.php:1292
2261
  #, fuzzy
2262
  msgid "Average Daily Pageviews"
2263
  msgstr "Nombre de pages vues en moyenne"
2264
 
2265
- #: ../admin/view/wp-slimstat-reports.php:1294
2266
  #, fuzzy
2267
  msgid ""
2268
  "How many pages have been visited on average every day during the current "
@@ -2270,11 +2359,11 @@ msgid ""
2270
  msgstr ""
2271
  "Combien de pages ont été visitées en moyenne au cours de la période en cours."
2272
 
2273
- #: ../admin/view/wp-slimstat-reports.php:1296
2274
  msgid "From Search Results"
2275
  msgstr "Résultat de recherches"
2276
 
2277
- #: ../admin/view/wp-slimstat-reports.php:1298
2278
  msgid ""
2279
  "Visitors who landed on your site after searching for a keyword on Google, "
2280
  "Yahoo, etc."
@@ -2282,7 +2371,7 @@ msgstr ""
2282
  "Visiteurs qui sont arrivés sur votre site après une recherche par mots clés "
2283
  "sur Google, Yahoo, etc"
2284
 
2285
- #: ../admin/view/wp-slimstat-reports.php:1302
2286
  msgid ""
2287
  "Used to differentiate between multiple requests to download a file from one "
2288
  "internet address (IP) and requests originating from many distinct addresses"
@@ -2291,11 +2380,11 @@ msgstr ""
2291
  "fichier à partir d'une adresse Internet (IP) unique et les demandes "
2292
  "provenant de plusieurs adresses distinctes"
2293
 
2294
- #: ../admin/view/wp-slimstat-reports.php:1304
2295
  msgid "Last 30 minutes"
2296
  msgstr "30 dernières minutes"
2297
 
2298
- #: ../admin/view/wp-slimstat-reports.php:1343
2299
  msgid ""
2300
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2301
  "multiple times if they perform multiple visits."
@@ -2304,15 +2393,15 @@ msgstr ""
2304
  "reviennent sont comptés plusieurs fois s'ils effectuent des visites "
2305
  "multiples."
2306
 
2307
- #: ../admin/view/wp-slimstat-reports.php:1347
2308
  msgid "It includes only traffic generated by human visitors."
2309
  msgstr "Cela ne comprend que les visites dites humaines."
2310
 
2311
- #: ../admin/view/wp-slimstat-reports.php:1349
2312
  msgid "Bounce rate"
2313
  msgstr "Taux de rebond"
2314
 
2315
- #: ../admin/view/wp-slimstat-reports.php:1351
2316
  msgid ""
2317
  "Percentage of single-page visits, i.e. visits in which the person left your "
2318
  "site from the entrance page."
@@ -2320,76 +2409,77 @@ msgstr ""
2320
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
2321
  "desquelles la personne a quitté votre site dès la page d'entrée."
2322
 
2323
- #: ../admin/view/wp-slimstat-reports.php:1353
2324
  msgid "Known visitors"
2325
  msgstr "Visiteurs connus"
2326
 
2327
- #: ../admin/view/wp-slimstat-reports.php:1355
2328
  msgid "Visitors who had previously left a comment on your blog."
2329
  msgstr "Visiteurs qui ont déjà laissé un commentaire sur votre blog."
2330
 
2331
- #: ../admin/view/wp-slimstat-reports.php:1357
2332
  msgid "New visitors"
2333
  msgstr "Nouveaux visiteurs"
2334
 
2335
- #: ../admin/view/wp-slimstat-reports.php:1359
2336
  msgid "Human users who visited your site only once."
2337
  msgstr "Visiteurs humains qui ont visité votre site une seule fois."
2338
 
2339
- #: ../admin/view/wp-slimstat-reports.php:1361
2340
  msgid "Bots"
2341
  msgstr "Robots"
2342
 
2343
- #: ../admin/view/wp-slimstat-reports.php:1364
2344
- msgid "Pages per visit"
 
2345
  msgstr "Pages vues par visite"
2346
 
2347
- #: ../admin/view/wp-slimstat-reports.php:1367
2348
  msgid "Longest visit"
2349
  msgstr "Visite la plus longue"
2350
 
2351
- #: ../admin/view/wp-slimstat-reports.php:1368
2352
  msgid "hits"
2353
  msgstr "hits"
2354
 
2355
- #: ../admin/view/wp-slimstat-reports.php:1379
2356
  msgid "0 - 30 seconds"
2357
  msgstr "0 - 30 secondes"
2358
 
2359
- #: ../admin/view/wp-slimstat-reports.php:1385
2360
  msgid "31 - 60 seconds"
2361
  msgstr "31 - 60 secondes"
2362
 
2363
- #: ../admin/view/wp-slimstat-reports.php:1391
2364
  msgid "1 - 3 minutes"
2365
  msgstr "1 - 3 minutes"
2366
 
2367
- #: ../admin/view/wp-slimstat-reports.php:1397
2368
  msgid "3 - 5 minutes"
2369
  msgstr "3 - 5 minutes"
2370
 
2371
- #: ../admin/view/wp-slimstat-reports.php:1403
2372
  msgid "5 - 7 minutes"
2373
  msgstr "5 - 7 minutes"
2374
 
2375
- #: ../admin/view/wp-slimstat-reports.php:1409
2376
  msgid "7 - 10 minutes"
2377
  msgstr "7 - 10 minutes"
2378
 
2379
- #: ../admin/view/wp-slimstat-reports.php:1415
2380
  msgid "More than 10 minutes"
2381
  msgstr "Plus de 10 minutes"
2382
 
2383
- #: ../admin/view/wp-slimstat-reports.php:1427
2384
  #, fuzzy
2385
  msgid "Average visit duration"
2386
  msgstr "Durée des Visites"
2387
 
2388
- #: ../admin/view/wp-slimstat-reports.php:1447
2389
  msgid "Unique Referrers"
2390
  msgstr "Référents uniques"
2391
 
2392
- #: ../admin/view/wp-slimstat-reports.php:1449
2393
  msgid ""
2394
  "A referrer (or referring site) is the site that a visitor previously visited "
2395
  "before following a link to your site."
@@ -2397,11 +2487,11 @@ msgstr ""
2397
  "Un référent (ou site référent) est le site que le visiteur a visité avant de "
2398
  "suivre un lien vers votre site."
2399
 
2400
- #: ../admin/view/wp-slimstat-reports.php:1451
2401
  msgid "Direct Pageviews"
2402
  msgstr "Pages Vues Directes"
2403
 
2404
- #: ../admin/view/wp-slimstat-reports.php:1453
2405
  msgid ""
2406
  "Visitors who visited the site by typing the URL directly into their browser. "
2407
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -2414,11 +2504,11 @@ msgstr ""
2414
  "courriels non marquées, ou des liens à partir de documents qui ne "
2415
  "contiennent pas de variables de suivi."
2416
 
2417
- #: ../admin/view/wp-slimstat-reports.php:1455
2418
  msgid "From a search result"
2419
  msgstr "Depuis un moteur de recherche"
2420
 
2421
- #: ../admin/view/wp-slimstat-reports.php:1457
2422
  msgid ""
2423
  "Visitors who came to your site via searches on Google or some other search "
2424
  "engine."
@@ -2426,11 +2516,11 @@ msgstr ""
2426
  "Visiteurs qui sont venus sur le site via un moteur de recherche comme Google "
2427
  "ou autre."
2428
 
2429
- #: ../admin/view/wp-slimstat-reports.php:1459
2430
  msgid "Unique Landing Pages"
2431
  msgstr "Pages d'Entrées Uniques"
2432
 
2433
- #: ../admin/view/wp-slimstat-reports.php:1461
2434
  msgid ""
2435
  "The first page that a user views during a session. This is also known as the "
2436
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -2442,22 +2532,22 @@ msgstr ""
2442
  "mots clés 'Brooklyn Office Space' et arrive sur votre page d'accueil, elle "
2443
  "sera comptée (pour cette visite) comme la page d'entrée."
2444
 
2445
- #: ../admin/view/wp-slimstat-reports.php:1463
2446
  msgid "Bounce Pages"
2447
  msgstr "Pages de Rebonds"
2448
 
2449
- #: ../admin/view/wp-slimstat-reports.php:1465
2450
  #, fuzzy
2451
  msgid "Number of single page visits to your site over the selected period."
2452
  msgstr ""
2453
  "Nombre de visites d'une seule page de votre site au cours de la période "
2454
  "sélectionnée."
2455
 
2456
- #: ../admin/view/wp-slimstat-reports.php:1467
2457
  msgid "New Visitors Rate"
2458
  msgstr "Taux de Nouveaux Visiteurs"
2459
 
2460
- #: ../admin/view/wp-slimstat-reports.php:1469
2461
  #, fuzzy
2462
  msgid ""
2463
  "Percentage of single page visits, i.e. visits in which the person left your "
@@ -2466,11 +2556,11 @@ msgstr ""
2466
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
2467
  "desquelles la personne a quitté votre site dès la page d'entrée."
2468
 
2469
- #: ../admin/view/wp-slimstat-reports.php:1471
2470
  msgid "Currently from search engines"
2471
  msgstr "Moteurs de recherche récents"
2472
 
2473
- #: ../admin/view/wp-slimstat-reports.php:1473
2474
  msgid ""
2475
  "Visitors who visited the site in the last 5 minutes coming from a search "
2476
  "engine."
@@ -2478,55 +2568,55 @@ msgstr ""
2478
  "Visiteurs qui ont visité le site dans les 5 dernières visites, provenant "
2479
  "d'un moteur de recherche."
2480
 
2481
- #: ../admin/view/wp-slimstat-reports.php:1543
2482
  msgid "Number of pages in your site included in Google's index."
2483
  msgstr "Nombre de pages de votre site indexées par Google."
2484
 
2485
- #: ../admin/view/wp-slimstat-reports.php:1544
2486
  msgid "Google Index"
2487
  msgstr "Index Google"
2488
 
2489
- #: ../admin/view/wp-slimstat-reports.php:1545
2490
  msgid "Number of pages, according to Google, that link back to your site."
2491
  msgstr ""
2492
  "Nombre de pages qui pointent sur votre site, d'après les informations "
2493
  "fournies par Google."
2494
 
2495
- #: ../admin/view/wp-slimstat-reports.php:1546
2496
  msgid "Google Backlinks"
2497
  msgstr "Backlinks Google"
2498
 
2499
- #: ../admin/view/wp-slimstat-reports.php:1547
2500
  msgid ""
2501
  "How many times the Facebook Like button has been approximately clicked on "
2502
  "your site."
2503
  msgstr ""
2504
  "Nombre de fois que votre site a été Liké par quelqu'un sur le réseau social."
2505
 
2506
- #: ../admin/view/wp-slimstat-reports.php:1548
2507
  msgid "Facebook Likes"
2508
  msgstr "\"J'aime\" Facebook"
2509
 
2510
- #: ../admin/view/wp-slimstat-reports.php:1549
2511
  msgid ""
2512
  "How many times your site has been shared by someone on the social network."
2513
  msgstr ""
2514
  "Nombre de fois que votre site a été partagé par quelqu'un sur le réseau "
2515
  "social."
2516
 
2517
- #: ../admin/view/wp-slimstat-reports.php:1550
2518
  msgid "Facebook Shares"
2519
  msgstr "Partages Facebook"
2520
 
2521
- #: ../admin/view/wp-slimstat-reports.php:1551
2522
  msgid "How many times links to your website have been clicked on Facebook."
2523
  msgstr "Nombre de fois que vos liens ont été activés sur Facebook"
2524
 
2525
- #: ../admin/view/wp-slimstat-reports.php:1552
2526
  msgid "Facebook Clicks"
2527
  msgstr "Clicks Facebook"
2528
 
2529
- #: ../admin/view/wp-slimstat-reports.php:1553
2530
  msgid ""
2531
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2532
  "traffic data."
@@ -2534,23 +2624,23 @@ msgstr ""
2534
  "Alexa est une filiale d'Amazon.com qui fournit des données commerciales "
2535
  "concernant le trafic web."
2536
 
2537
- #: ../admin/view/wp-slimstat-reports.php:1554
2538
  msgid "Alexa World Rank"
2539
  msgstr "Alexa, Classement mondial"
2540
 
2541
- #: ../admin/view/wp-slimstat-reports.php:1555
2542
  msgid "Alexa Country Rank"
2543
  msgstr "Alexa, Classement par pays"
2544
 
2545
- #: ../admin/view/wp-slimstat-reports.php:1556
2546
  msgid "Alexa Popularity"
2547
  msgstr "Alexa, Popularité"
2548
 
2549
- #: ../admin/view/wp-slimstat-reports.php:1567
2550
  msgid "Content Items"
2551
  msgstr "Contenus"
2552
 
2553
- #: ../admin/view/wp-slimstat-reports.php:1569
2554
  msgid ""
2555
  "This value includes not only posts, but also custom post types, regardless "
2556
  "of their status"
@@ -2558,64 +2648,64 @@ msgstr ""
2558
  "Cette valeur n'inclut pas seulement les articles de blog, mais aussi des "
2559
  "types personnalisés d'articles, quel que soit leur statut."
2560
 
2561
- #: ../admin/view/wp-slimstat-reports.php:1571
2562
  #, fuzzy
2563
  msgid "Posts"
2564
  msgstr "Top Posts"
2565
 
2566
- #: ../admin/view/wp-slimstat-reports.php:1574
2567
  #, fuzzy
2568
  msgid "Pages"
2569
  msgstr "Pages de sorties les plus utilisées"
2570
 
2571
- #: ../admin/view/wp-slimstat-reports.php:1577
2572
  msgid "Attachments"
2573
  msgstr ""
2574
 
2575
- #: ../admin/view/wp-slimstat-reports.php:1580
2576
  #, fuzzy
2577
  msgid "Revisions"
2578
  msgstr "Permissions"
2579
 
2580
- #: ../admin/view/wp-slimstat-reports.php:1583
2581
  #, fuzzy
2582
  msgid "Comments"
2583
  msgstr "Nombre de commentaires"
2584
 
2585
- #: ../admin/view/wp-slimstat-reports.php:1586
2586
  #, fuzzy
2587
  msgid "Avg Comments per Post"
2588
  msgstr "Moyenne de commentaires par Article"
2589
 
2590
- #: ../admin/view/wp-slimstat-reports.php:1589
2591
  msgid "Avg Server Latency"
2592
  msgstr "Latence moyenne du serveur"
2593
 
2594
- #: ../admin/view/wp-slimstat-reports.php:1591
2595
  msgid ""
2596
  "Latency is the amount of time it takes for the host server to receive and "
2597
  "process a request for a page object. The amount of latency depends largely "
2598
  "on how far away the user is from the server."
2599
  msgstr ""
2600
 
2601
- #: ../admin/view/wp-slimstat-reports.php:1634
2602
  #, fuzzy
2603
  msgid "Coordinates"
2604
  msgstr "Mode traçage"
2605
 
2606
- #: ../admin/view/wp-slimstat-reports.php:1634
2607
  msgid "Date"
2608
  msgstr ""
2609
 
2610
- #: ../admin/view/wp-slimstat-reports.php:1671
2611
  msgid "Error contacting the GetSocial endpoint."
2612
  msgstr ""
2613
 
2614
- #: ../admin/view/wp-slimstat-reports.php:1679
2615
  msgid "Error decoding the GetSocial payload."
2616
  msgstr ""
2617
 
2618
- #: ../admin/view/wp-slimstat-reports.php:1711
2619
  msgid ""
2620
  "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2621
  ">social media metrics and identify your top performing posts.<br/> <a "
@@ -2623,1178 +2713,1180 @@ msgid ""
2623
  msgstr ""
2624
 
2625
  # Unknown
2626
- #: ../admin/view/wp-slimstat-reports.php:1721
2627
  msgid "c-xx"
2628
  msgstr "Inconnu"
2629
 
2630
  # Afghanistan
2631
- #: ../admin/view/wp-slimstat-reports.php:1721
2632
  msgid "c-af"
2633
  msgstr "Afghanistan"
2634
 
2635
  # Åland Islands
2636
- #: ../admin/view/wp-slimstat-reports.php:1721
2637
  msgid "c-ax"
2638
  msgstr "Îles Åland"
2639
 
2640
  # Albania
2641
- #: ../admin/view/wp-slimstat-reports.php:1721
2642
  msgid "c-al"
2643
  msgstr "Albanie"
2644
 
2645
  # Algeria
2646
- #: ../admin/view/wp-slimstat-reports.php:1721
2647
  msgid "c-dz"
2648
  msgstr "Algérie"
2649
 
2650
  # Andorra
2651
- #: ../admin/view/wp-slimstat-reports.php:1721
2652
  msgid "c-ad"
2653
  msgstr "Andorre"
2654
 
2655
  # Angola
2656
- #: ../admin/view/wp-slimstat-reports.php:1721
2657
  msgid "c-ao"
2658
  msgstr "Angola"
2659
 
2660
  # Anguilla
2661
- #: ../admin/view/wp-slimstat-reports.php:1721
2662
  msgid "c-ai"
2663
  msgstr "Anguilla"
2664
 
2665
  # Antigua and Barbuda
2666
- #: ../admin/view/wp-slimstat-reports.php:1721
2667
  msgid "c-ag"
2668
  msgstr "Antigua et Barbuda"
2669
 
2670
  # Argentina
2671
- #: ../admin/view/wp-slimstat-reports.php:1721
2672
  msgid "c-ar"
2673
  msgstr "Argentine"
2674
 
2675
  # Armenia
2676
- #: ../admin/view/wp-slimstat-reports.php:1721
2677
  msgid "c-am"
2678
  msgstr "Arménie"
2679
 
2680
  # Aruba
2681
- #: ../admin/view/wp-slimstat-reports.php:1721
2682
  msgid "c-aw"
2683
  msgstr "Aruba"
2684
 
2685
  # Australia
2686
- #: ../admin/view/wp-slimstat-reports.php:1721
2687
  msgid "c-au"
2688
  msgstr "Australie"
2689
 
2690
  # Austria
2691
- #: ../admin/view/wp-slimstat-reports.php:1721
2692
  msgid "c-at"
2693
  msgstr "Autriche"
2694
 
2695
  # Azerbaijan
2696
- #: ../admin/view/wp-slimstat-reports.php:1721
2697
  msgid "c-az"
2698
  msgstr "Azerbaïdjan"
2699
 
2700
  # Bahamas
2701
- #: ../admin/view/wp-slimstat-reports.php:1721
2702
  msgid "c-bs"
2703
  msgstr "Bahamas"
2704
 
2705
  # Bahrain
2706
- #: ../admin/view/wp-slimstat-reports.php:1721
2707
  msgid "c-bh"
2708
  msgstr "Bahreïn"
2709
 
2710
  # Bangladesh
2711
- #: ../admin/view/wp-slimstat-reports.php:1721
2712
  msgid "c-bd"
2713
  msgstr "Bangladesh"
2714
 
2715
  # Barbados
2716
- #: ../admin/view/wp-slimstat-reports.php:1721
2717
  msgid "c-bb"
2718
  msgstr "Barbade"
2719
 
2720
  # Belarus
2721
- #: ../admin/view/wp-slimstat-reports.php:1721
2722
  msgid "c-by"
2723
  msgstr "Bélarus"
2724
 
2725
  # Belgium
2726
- #: ../admin/view/wp-slimstat-reports.php:1721
2727
  msgid "c-be"
2728
  msgstr "Belgique"
2729
 
2730
  # Belize
2731
- #: ../admin/view/wp-slimstat-reports.php:1721
2732
  msgid "c-bz"
2733
  msgstr "Belize"
2734
 
2735
  # Benin
2736
- #: ../admin/view/wp-slimstat-reports.php:1721
2737
  msgid "c-bj"
2738
  msgstr "Bénin"
2739
 
2740
  # Bermuda
2741
- #: ../admin/view/wp-slimstat-reports.php:1721
2742
  msgid "c-bm"
2743
  msgstr "Bermudes"
2744
 
2745
  # Bhutan
2746
- #: ../admin/view/wp-slimstat-reports.php:1721
2747
  msgid "c-bt"
2748
  msgstr "Bhoutan"
2749
 
2750
  # Bolivia
2751
- #: ../admin/view/wp-slimstat-reports.php:1721
2752
  msgid "c-bo"
2753
  msgstr "État plurinational de Bolivie"
2754
 
2755
  # Bosnia and Herzegovina
2756
- #: ../admin/view/wp-slimstat-reports.php:1721
2757
  msgid "c-ba"
2758
  msgstr "Bosnie-Herzégovine"
2759
 
2760
  # Botswana
2761
- #: ../admin/view/wp-slimstat-reports.php:1721
2762
  msgid "c-bw"
2763
  msgstr "Botswana"
2764
 
2765
  # Brazil
2766
- #: ../admin/view/wp-slimstat-reports.php:1721
2767
  msgid "c-br"
2768
  msgstr "Brésil"
2769
 
2770
  # Brunei Darussalam
2771
- #: ../admin/view/wp-slimstat-reports.php:1721
2772
  msgid "c-bn"
2773
  msgstr "Brunéi Darussalam"
2774
 
2775
  # Bulgaria
2776
- #: ../admin/view/wp-slimstat-reports.php:1721
2777
  msgid "c-bg"
2778
  msgstr "Bulgarie"
2779
 
2780
  # Burkina Faso
2781
- #: ../admin/view/wp-slimstat-reports.php:1721
2782
  msgid "c-bf"
2783
  msgstr "Burkina Faso"
2784
 
2785
  # Burundi
2786
- #: ../admin/view/wp-slimstat-reports.php:1721
2787
  msgid "c-bi"
2788
  msgstr "Burundi"
2789
 
2790
  # Cambodia
2791
- #: ../admin/view/wp-slimstat-reports.php:1721
2792
  msgid "c-kh"
2793
  msgstr "Cambodge"
2794
 
2795
  # Cameroon
2796
- #: ../admin/view/wp-slimstat-reports.php:1721
2797
  msgid "c-cm"
2798
  msgstr "Cameroun"
2799
 
2800
  # Canada
2801
- #: ../admin/view/wp-slimstat-reports.php:1721
2802
  msgid "c-ca"
2803
  msgstr "Canada"
2804
 
2805
  # Cape Verde
2806
- #: ../admin/view/wp-slimstat-reports.php:1721
2807
  msgid "c-cv"
2808
  msgstr "Cap-Vert"
2809
 
2810
  # Cayman Islands
2811
- #: ../admin/view/wp-slimstat-reports.php:1721
2812
  msgid "c-ky"
2813
  msgstr "Îles Caïmans"
2814
 
2815
  # Central African Republic
2816
- #: ../admin/view/wp-slimstat-reports.php:1721
2817
  msgid "c-cf"
2818
  msgstr "République Centrafricaine"
2819
 
2820
  # Chad
2821
- #: ../admin/view/wp-slimstat-reports.php:1721
2822
  msgid "c-td"
2823
  msgstr "Tchad"
2824
 
2825
  # Chile
2826
- #: ../admin/view/wp-slimstat-reports.php:1721
2827
  msgid "c-cl"
2828
  msgstr "Chili"
2829
 
2830
  # China
2831
- #: ../admin/view/wp-slimstat-reports.php:1721
2832
  msgid "c-cn"
2833
  msgstr "Chine"
2834
 
2835
  # Colombia
2836
- #: ../admin/view/wp-slimstat-reports.php:1721
2837
  msgid "c-co"
2838
  msgstr "Colombie"
2839
 
2840
  # Comoros
2841
- #: ../admin/view/wp-slimstat-reports.php:1721
2842
  msgid "c-km"
2843
  msgstr "Comores"
2844
 
2845
  # Congo
2846
- #: ../admin/view/wp-slimstat-reports.php:1721
2847
  msgid "c-cg"
2848
  msgstr "Congo"
2849
 
2850
  # The Democratic Republic of the Congo
2851
- #: ../admin/view/wp-slimstat-reports.php:1721
2852
  msgid "c-cd"
2853
  msgstr "République Démocratique du Congo"
2854
 
2855
  # Costa Rica
2856
- #: ../admin/view/wp-slimstat-reports.php:1721
2857
  msgid "c-cr"
2858
  msgstr "Costa Rica"
2859
 
2860
  # Côte d'Ivoire
2861
- #: ../admin/view/wp-slimstat-reports.php:1721
2862
  msgid "c-ci"
2863
  msgstr "Côte d'Ivoire"
2864
 
2865
  # Croatia
2866
- #: ../admin/view/wp-slimstat-reports.php:1721
2867
  msgid "c-hr"
2868
  msgstr "Croatie"
2869
 
2870
  # Cuba
2871
- #: ../admin/view/wp-slimstat-reports.php:1721
2872
  msgid "c-cu"
2873
  msgstr "Cuba"
2874
 
2875
  # Cyprus
2876
- #: ../admin/view/wp-slimstat-reports.php:1721
2877
  msgid "c-cy"
2878
  msgstr "Chypre"
2879
 
2880
  # Czech Republic
2881
- #: ../admin/view/wp-slimstat-reports.php:1721
2882
  msgid "c-cz"
2883
  msgstr "République tchèque"
2884
 
2885
  # Denmark
2886
- #: ../admin/view/wp-slimstat-reports.php:1721
2887
  msgid "c-dk"
2888
  msgstr "Danemark"
2889
 
2890
  # Djibouti
2891
- #: ../admin/view/wp-slimstat-reports.php:1721
2892
  msgid "c-dj"
2893
  msgstr "Djibouti"
2894
 
2895
  # Dominica
2896
- #: ../admin/view/wp-slimstat-reports.php:1721
2897
  msgid "c-dm"
2898
  msgstr "Dominique"
2899
 
2900
  # Dominican Republic
2901
- #: ../admin/view/wp-slimstat-reports.php:1721
2902
  msgid "c-do"
2903
  msgstr "République dominicaine"
2904
 
2905
  # Ecuador
2906
- #: ../admin/view/wp-slimstat-reports.php:1721
2907
  msgid "c-ec"
2908
  msgstr "Équateur"
2909
 
2910
  # Egypt
2911
- #: ../admin/view/wp-slimstat-reports.php:1721
2912
  msgid "c-eg"
2913
  msgstr "Égypte"
2914
 
2915
  # El Salvador
2916
- #: ../admin/view/wp-slimstat-reports.php:1721
2917
  msgid "c-sv"
2918
  msgstr "El Salvador"
2919
 
2920
  # Equatorial Guinea
2921
- #: ../admin/view/wp-slimstat-reports.php:1721
2922
  msgid "c-gq"
2923
  msgstr "Guinée équatoriale"
2924
 
2925
  # Eritrea
2926
- #: ../admin/view/wp-slimstat-reports.php:1721
2927
  msgid "c-er"
2928
  msgstr "Érythrée"
2929
 
2930
  # Estonia
2931
- #: ../admin/view/wp-slimstat-reports.php:1721
2932
  msgid "c-ee"
2933
  msgstr "Estonie"
2934
 
2935
  # Ethiopia
2936
- #: ../admin/view/wp-slimstat-reports.php:1721
2937
  msgid "c-et"
2938
  msgstr "Éthiopie"
2939
 
2940
  # Faroe Islands
2941
- #: ../admin/view/wp-slimstat-reports.php:1721
2942
  msgid "c-fo"
2943
  msgstr "Îles Féroé"
2944
 
2945
  # Falkland Islands (Malvinas)
2946
- #: ../admin/view/wp-slimstat-reports.php:1721
2947
  msgid "c-fk"
2948
  msgstr "Îles Falkland (Malvinas)"
2949
 
2950
  # Fiji
2951
- #: ../admin/view/wp-slimstat-reports.php:1721
2952
  msgid "c-fj"
2953
  msgstr "Fidji"
2954
 
2955
  # Finland
2956
- #: ../admin/view/wp-slimstat-reports.php:1721
2957
  msgid "c-fi"
2958
  msgstr "Finlande"
2959
 
2960
  # France
2961
- #: ../admin/view/wp-slimstat-reports.php:1721
2962
  msgid "c-fr"
2963
  msgstr "France"
2964
 
2965
  # French Guiana
2966
- #: ../admin/view/wp-slimstat-reports.php:1721
2967
  msgid "c-gf"
2968
  msgstr "Guyane française"
2969
 
2970
  # Gabon
2971
- #: ../admin/view/wp-slimstat-reports.php:1721
2972
  msgid "c-ga"
2973
  msgstr "Gabon"
2974
 
2975
  # Gambia
2976
- #: ../admin/view/wp-slimstat-reports.php:1721
2977
  msgid "c-gm"
2978
  msgstr "Gambie"
2979
 
2980
  # Georgia
2981
- #: ../admin/view/wp-slimstat-reports.php:1721
2982
  msgid "c-ge"
2983
  msgstr "Géorgie"
2984
 
2985
  # Germany
2986
- #: ../admin/view/wp-slimstat-reports.php:1721
2987
  msgid "c-de"
2988
  msgstr "Allemagne"
2989
 
2990
  # Ghana
2991
- #: ../admin/view/wp-slimstat-reports.php:1721
2992
  msgid "c-gh"
2993
  msgstr "Ghana"
2994
 
2995
  # Greece
2996
- #: ../admin/view/wp-slimstat-reports.php:1721
2997
  msgid "c-gr"
2998
  msgstr "Grèce"
2999
 
3000
  # Greenland
3001
- #: ../admin/view/wp-slimstat-reports.php:1721
3002
  msgid "c-gl"
3003
  msgstr "Groenland"
3004
 
3005
  # Grenada
3006
- #: ../admin/view/wp-slimstat-reports.php:1721
3007
  msgid "c-gd"
3008
  msgstr "Grenade"
3009
 
3010
  # Guadeloupe
3011
- #: ../admin/view/wp-slimstat-reports.php:1721
3012
  msgid "c-gp"
3013
  msgstr "Guadeloupe"
3014
 
3015
  # Guatemala
3016
- #: ../admin/view/wp-slimstat-reports.php:1721
3017
  msgid "c-gt"
3018
  msgstr "Guatemala"
3019
 
3020
  # Guinea
3021
- #: ../admin/view/wp-slimstat-reports.php:1721
3022
  msgid "c-gn"
3023
  msgstr "Guinée"
3024
 
3025
  # Guinea-Bissau
3026
- #: ../admin/view/wp-slimstat-reports.php:1721
3027
  msgid "c-gw"
3028
  msgstr "Guinée-Bissau"
3029
 
3030
  # Guyana
3031
- #: ../admin/view/wp-slimstat-reports.php:1721
3032
  msgid "c-gy"
3033
  msgstr "Guyana"
3034
 
3035
  # Haiti
3036
- #: ../admin/view/wp-slimstat-reports.php:1721
3037
  msgid "c-ht"
3038
  msgstr "Haïti"
3039
 
3040
  # Honduras
3041
- #: ../admin/view/wp-slimstat-reports.php:1721
3042
  msgid "c-hn"
3043
  msgstr "Honduras"
3044
 
3045
  # Hong Kong
3046
- #: ../admin/view/wp-slimstat-reports.php:1721
3047
  msgid "c-hk"
3048
  msgstr "Hong Kong"
3049
 
3050
  # Hungary
3051
- #: ../admin/view/wp-slimstat-reports.php:1721
3052
  msgid "c-hu"
3053
  msgstr "Hongrie"
3054
 
3055
  # Iceland
3056
- #: ../admin/view/wp-slimstat-reports.php:1721
3057
  msgid "c-is"
3058
  msgstr "Islande"
3059
 
3060
  # India
3061
- #: ../admin/view/wp-slimstat-reports.php:1721
3062
  msgid "c-in"
3063
  msgstr "Inde"
3064
 
3065
  # Indonesia
3066
- #: ../admin/view/wp-slimstat-reports.php:1721
3067
  msgid "c-id"
3068
  msgstr "Indonésie"
3069
 
3070
  # Islamic Republic of Iran
3071
- #: ../admin/view/wp-slimstat-reports.php:1721
3072
  msgid "c-ir"
3073
  msgstr "République islamique d'Iran"
3074
 
3075
  # Iraq
3076
- #: ../admin/view/wp-slimstat-reports.php:1721
3077
  msgid "c-iq"
3078
  msgstr "Irak"
3079
 
3080
  # Ireland
3081
- #: ../admin/view/wp-slimstat-reports.php:1721
3082
  msgid "c-ie"
3083
  msgstr "Irlande"
3084
 
3085
  # Israel
3086
- #: ../admin/view/wp-slimstat-reports.php:1721
3087
  msgid "c-il"
3088
  msgstr "Israël"
3089
 
3090
  # Italy
3091
- #: ../admin/view/wp-slimstat-reports.php:1721
3092
  msgid "c-it"
3093
  msgstr "Italie"
3094
 
3095
  # Jamaica
3096
- #: ../admin/view/wp-slimstat-reports.php:1721
3097
  msgid "c-jm"
3098
  msgstr "Jamaïque"
3099
 
3100
  # Japan
3101
- #: ../admin/view/wp-slimstat-reports.php:1721
3102
  msgid "c-jp"
3103
  msgstr "Japon"
3104
 
3105
  # Jordan
3106
- #: ../admin/view/wp-slimstat-reports.php:1721
3107
  msgid "c-jo"
3108
  msgstr "Jordanie"
3109
 
3110
  # Kazakhstan
3111
- #: ../admin/view/wp-slimstat-reports.php:1721
3112
  msgid "c-kz"
3113
  msgstr "Kazakhstan"
3114
 
3115
  # Kenya
3116
- #: ../admin/view/wp-slimstat-reports.php:1721
3117
  msgid "c-ke"
3118
  msgstr "Kenya"
3119
 
3120
  # Nauru
3121
- #: ../admin/view/wp-slimstat-reports.php:1721
3122
  msgid "c-nr"
3123
  msgstr "Nauru"
3124
 
3125
  # Democratic People's Republic of Korea
3126
- #: ../admin/view/wp-slimstat-reports.php:1721
3127
  msgid "c-kp"
3128
  msgstr "République populaire démocratique de Corée"
3129
 
3130
  # Republic of Korea
3131
- #: ../admin/view/wp-slimstat-reports.php:1721
3132
  msgid "c-kr"
3133
  msgstr "République de Corée"
3134
 
3135
- #: ../admin/view/wp-slimstat-reports.php:1721
3136
  msgid "c-kv"
3137
  msgstr "Kossovo"
3138
 
3139
  # Kuwait
3140
- #: ../admin/view/wp-slimstat-reports.php:1721
3141
  msgid "c-kw"
3142
  msgstr "Koweït"
3143
 
3144
  # Kyrgyzstan
3145
- #: ../admin/view/wp-slimstat-reports.php:1721
3146
  msgid "c-kg"
3147
  msgstr "Kirghizistan"
3148
 
3149
  # Lao People's Democratic Republic
3150
- #: ../admin/view/wp-slimstat-reports.php:1721
3151
  msgid "c-la"
3152
  msgstr "République démocratique populaire lao"
3153
 
3154
  # Latvia
3155
- #: ../admin/view/wp-slimstat-reports.php:1721
3156
  msgid "c-lv"
3157
  msgstr "Lettonie"
3158
 
3159
  # Lebanon
3160
- #: ../admin/view/wp-slimstat-reports.php:1721
3161
  msgid "c-lb"
3162
  msgstr "Liban"
3163
 
3164
  # Lesotho
3165
- #: ../admin/view/wp-slimstat-reports.php:1721
3166
  msgid "c-ls"
3167
  msgstr "Lesotho"
3168
 
3169
  # Liberia
3170
- #: ../admin/view/wp-slimstat-reports.php:1721
3171
  msgid "c-lr"
3172
  msgstr "Libéria"
3173
 
3174
  # Libyan Arab Jamahiriya
3175
- #: ../admin/view/wp-slimstat-reports.php:1721
3176
  msgid "c-ly"
3177
  msgstr "Jamahiriya arabe libyenne"
3178
 
3179
  # Liechtenstein
3180
- #: ../admin/view/wp-slimstat-reports.php:1721
3181
  msgid "c-li"
3182
  msgstr "Liechtenstein"
3183
 
3184
  # Lithuania
3185
- #: ../admin/view/wp-slimstat-reports.php:1721
3186
  msgid "c-lt"
3187
  msgstr "Lituanie"
3188
 
3189
  # Luxembourg
3190
- #: ../admin/view/wp-slimstat-reports.php:1721
3191
  msgid "c-lu"
3192
  msgstr "Luxembourg"
3193
 
3194
  # The Former Yugoslav Republic of Macedonia
3195
- #: ../admin/view/wp-slimstat-reports.php:1721
3196
  msgid "c-mk"
3197
  msgstr "Ex-république yougoslave de Macédoine"
3198
 
3199
  # Madagascar
3200
- #: ../admin/view/wp-slimstat-reports.php:1721
3201
  msgid "c-mg"
3202
  msgstr "Madagascar"
3203
 
3204
  # Malawi
3205
- #: ../admin/view/wp-slimstat-reports.php:1721
3206
  msgid "c-mw"
3207
  msgstr "Malawi"
3208
 
3209
  # Malaysia
3210
- #: ../admin/view/wp-slimstat-reports.php:1721
3211
  msgid "c-my"
3212
  msgstr "Malaisie"
3213
 
3214
  # Mali
3215
- #: ../admin/view/wp-slimstat-reports.php:1721
3216
  msgid "c-ml"
3217
  msgstr "Mali"
3218
 
3219
  # Malta
3220
- #: ../admin/view/wp-slimstat-reports.php:1721
3221
  msgid "c-mt"
3222
  msgstr "Malte"
3223
 
3224
  # Martinique
3225
- #: ../admin/view/wp-slimstat-reports.php:1721
3226
  msgid "c-mq"
3227
  msgstr "Martinique"
3228
 
3229
  # Mauritania
3230
- #: ../admin/view/wp-slimstat-reports.php:1721
3231
  msgid "c-mr"
3232
  msgstr "Mauritanie"
3233
 
3234
  # Mauritius
3235
- #: ../admin/view/wp-slimstat-reports.php:1721
3236
  msgid "c-mu"
3237
  msgstr "Maurice"
3238
 
3239
  # Mexico
3240
- #: ../admin/view/wp-slimstat-reports.php:1721
3241
  msgid "c-mx"
3242
  msgstr "Mexique"
3243
 
3244
  # Moldova
3245
- #: ../admin/view/wp-slimstat-reports.php:1721
3246
  msgid "c-md"
3247
  msgstr "République de Moldova"
3248
 
3249
  # Mongolia
3250
- #: ../admin/view/wp-slimstat-reports.php:1721
3251
  msgid "c-mn"
3252
  msgstr "Mongolie"
3253
 
3254
  # Montenegro
3255
- #: ../admin/view/wp-slimstat-reports.php:1721
3256
  msgid "c-me"
3257
  msgstr "Monténégro"
3258
 
3259
  # Montserrat
3260
- #: ../admin/view/wp-slimstat-reports.php:1721
3261
  msgid "c-ms"
3262
  msgstr "Montserrat"
3263
 
3264
  # Morocco
3265
- #: ../admin/view/wp-slimstat-reports.php:1721
3266
  msgid "c-ma"
3267
  msgstr "Maroc"
3268
 
3269
  # Mozambique
3270
- #: ../admin/view/wp-slimstat-reports.php:1721
3271
  msgid "c-mz"
3272
  msgstr "Mozambique"
3273
 
3274
  # Myanmar
3275
- #: ../admin/view/wp-slimstat-reports.php:1721
3276
  msgid "c-mm"
3277
  msgstr "Myanmar"
3278
 
3279
  # Namibia
3280
- #: ../admin/view/wp-slimstat-reports.php:1721
3281
  msgid "c-na"
3282
  msgstr "Namibie"
3283
 
3284
  # Nepal
3285
- #: ../admin/view/wp-slimstat-reports.php:1721
3286
  msgid "c-np"
3287
  msgstr "Népal"
3288
 
3289
  # Netherlands
3290
- #: ../admin/view/wp-slimstat-reports.php:1721
3291
  msgid "c-nl"
3292
  msgstr "Pays-bas"
3293
 
3294
  # New Caledonia
3295
- #: ../admin/view/wp-slimstat-reports.php:1721
3296
  msgid "c-nc"
3297
  msgstr "Nouvelle-Calédonie"
3298
 
3299
  # New Zealand
3300
- #: ../admin/view/wp-slimstat-reports.php:1721
3301
  msgid "c-nz"
3302
  msgstr "Nouvelle-Zélande"
3303
 
3304
  # Nicaragua
3305
- #: ../admin/view/wp-slimstat-reports.php:1721
3306
  msgid "c-ni"
3307
  msgstr "Nicaragua"
3308
 
3309
  # Niger
3310
- #: ../admin/view/wp-slimstat-reports.php:1721
3311
  msgid "c-ne"
3312
  msgstr "Niger"
3313
 
3314
  # Nigeria
3315
- #: ../admin/view/wp-slimstat-reports.php:1721
3316
  msgid "c-ng"
3317
  msgstr "Nigéria"
3318
 
3319
  # Norway
3320
- #: ../admin/view/wp-slimstat-reports.php:1721
3321
  msgid "c-no"
3322
  msgstr "Norvège"
3323
 
3324
  # Oman
3325
- #: ../admin/view/wp-slimstat-reports.php:1721
3326
  msgid "c-om"
3327
  msgstr "Oman"
3328
 
3329
  # Pakistan
3330
- #: ../admin/view/wp-slimstat-reports.php:1721
3331
  msgid "c-pk"
3332
  msgstr "Pakistan"
3333
 
3334
  # Palau
3335
- #: ../admin/view/wp-slimstat-reports.php:1721
3336
  msgid "c-pw"
3337
  msgstr "Palaos"
3338
 
3339
  # Occupied Palestinian Territory
3340
- #: ../admin/view/wp-slimstat-reports.php:1721
3341
  msgid "c-ps"
3342
  msgstr "Territoire palestinien occupé"
3343
 
3344
  # Panama
3345
- #: ../admin/view/wp-slimstat-reports.php:1721
3346
  msgid "c-pa"
3347
  msgstr "Panama"
3348
 
3349
  # Papua New Guinea
3350
- #: ../admin/view/wp-slimstat-reports.php:1721
3351
  msgid "c-pg"
3352
  msgstr "Papouasie-Nouvelle-Guinée"
3353
 
3354
  # Paraguay
3355
- #: ../admin/view/wp-slimstat-reports.php:1721
3356
  msgid "c-py"
3357
  msgstr "Paraguay"
3358
 
3359
  # Peru
3360
- #: ../admin/view/wp-slimstat-reports.php:1721
3361
  msgid "c-pe"
3362
  msgstr "Pérou"
3363
 
3364
  # Philippines
3365
- #: ../admin/view/wp-slimstat-reports.php:1721
3366
  msgid "c-ph"
3367
  msgstr "Philippines"
3368
 
3369
  # Poland
3370
- #: ../admin/view/wp-slimstat-reports.php:1721
3371
  msgid "c-pl"
3372
  msgstr "Pologne"
3373
 
3374
  # Portugal
3375
- #: ../admin/view/wp-slimstat-reports.php:1721
3376
  msgid "c-pt"
3377
  msgstr "Portugal"
3378
 
3379
  # Puerto Rico
3380
- #: ../admin/view/wp-slimstat-reports.php:1721
3381
  msgid "c-pr"
3382
  msgstr "Porto Rico"
3383
 
3384
  # Qatar
3385
- #: ../admin/view/wp-slimstat-reports.php:1721
3386
  msgid "c-qa"
3387
  msgstr "Qatar"
3388
 
3389
  # Réunion
3390
- #: ../admin/view/wp-slimstat-reports.php:1721
3391
  msgid "c-re"
3392
  msgstr "Réunion"
3393
 
3394
  # Romania
3395
- #: ../admin/view/wp-slimstat-reports.php:1721
3396
  msgid "c-ro"
3397
  msgstr "Roumanie"
3398
 
3399
  # Russian Federation
3400
- #: ../admin/view/wp-slimstat-reports.php:1721
3401
  msgid "c-ru"
3402
  msgstr "Fédération de Russie"
3403
 
3404
  # Rwanda
3405
- #: ../admin/view/wp-slimstat-reports.php:1721
3406
  msgid "c-rw"
3407
  msgstr "Rwanda"
3408
 
3409
  # Saint Kitts and Nevis
3410
- #: ../admin/view/wp-slimstat-reports.php:1721
3411
  msgid "c-kn"
3412
  msgstr "Saint-Kitts-et-Nevis"
3413
 
3414
  # Saint Lucia
3415
- #: ../admin/view/wp-slimstat-reports.php:1721
3416
  msgid "c-lc"
3417
  msgstr "Sainte-Lucie"
3418
 
3419
  # Saint Martin
3420
- #: ../admin/view/wp-slimstat-reports.php:1721
3421
  msgid "c-mf"
3422
  msgstr "Saint-Martin"
3423
 
3424
  # Saint Vincent and the Grenadines
3425
- #: ../admin/view/wp-slimstat-reports.php:1721
3426
  msgid "c-vc"
3427
  msgstr "Saint-Vincent-et-les Grenadines"
3428
 
3429
  # Samoa
3430
- #: ../admin/view/wp-slimstat-reports.php:1721
3431
  msgid "c-ws"
3432
  msgstr "Samoa"
3433
 
3434
  # Sao Tome and Principe
3435
- #: ../admin/view/wp-slimstat-reports.php:1721
3436
  msgid "c-st"
3437
  msgstr "Sao Tomé-et-Principe"
3438
 
3439
  # Saudi Arabia
3440
- #: ../admin/view/wp-slimstat-reports.php:1721
3441
  msgid "c-sa"
3442
  msgstr "Arabie saoudite"
3443
 
3444
  # Senegal
3445
- #: ../admin/view/wp-slimstat-reports.php:1721
3446
  msgid "c-sn"
3447
  msgstr "Sénégal"
3448
 
3449
  # Serbia
3450
- #: ../admin/view/wp-slimstat-reports.php:1721
3451
  msgid "c-rs"
3452
  msgstr "Serbie"
3453
 
3454
  # Sierra Leone
3455
- #: ../admin/view/wp-slimstat-reports.php:1721
3456
  msgid "c-sl"
3457
  msgstr "Sierra Leone"
3458
 
3459
  # Singapore
3460
- #: ../admin/view/wp-slimstat-reports.php:1721
3461
  msgid "c-sg"
3462
  msgstr "Singapour"
3463
 
3464
  # Slovakia
3465
- #: ../admin/view/wp-slimstat-reports.php:1721
3466
  msgid "c-sk"
3467
  msgstr "Slovaquie"
3468
 
3469
  # Slovenia
3470
- #: ../admin/view/wp-slimstat-reports.php:1721
3471
  msgid "c-si"
3472
  msgstr "Slovénie"
3473
 
3474
  # Solomon Islands
3475
- #: ../admin/view/wp-slimstat-reports.php:1721
3476
  msgid "c-sb"
3477
  msgstr "Îles Salomon"
3478
 
3479
  # Somalia
3480
- #: ../admin/view/wp-slimstat-reports.php:1721
3481
  msgid "c-so"
3482
  msgstr "Somalie"
3483
 
3484
  # South Africa
3485
- #: ../admin/view/wp-slimstat-reports.php:1721
3486
  msgid "c-za"
3487
  msgstr "Afrique du sud"
3488
 
3489
  # South Georgia and the South Sandwich Islands
3490
- #: ../admin/view/wp-slimstat-reports.php:1721
3491
  msgid "c-gs"
3492
  msgstr "Géorgie du sud et les Îles Sandwich du sud"
3493
 
3494
  # Spain
3495
- #: ../admin/view/wp-slimstat-reports.php:1721
3496
  msgid "c-es"
3497
  msgstr "Espagne"
3498
 
3499
  # Sri Lanka
3500
- #: ../admin/view/wp-slimstat-reports.php:1721
3501
  msgid "c-lk"
3502
  msgstr "Sri Lanka"
3503
 
3504
  # Seychelles
3505
- #: ../admin/view/wp-slimstat-reports.php:1721
3506
  msgid "c-sc"
3507
  msgstr "Seychelles"
3508
 
3509
  # Sudan
3510
- #: ../admin/view/wp-slimstat-reports.php:1721
3511
  msgid "c-sd"
3512
  msgstr "Soudan"
3513
 
3514
- #: ../admin/view/wp-slimstat-reports.php:1721
3515
  msgid "c-ss"
3516
  msgstr "Soudan du Sud"
3517
 
3518
  # Suriname
3519
- #: ../admin/view/wp-slimstat-reports.php:1721
3520
  msgid "c-sr"
3521
  msgstr "Suriname"
3522
 
3523
  # Svalbard and Jan Mayen
3524
- #: ../admin/view/wp-slimstat-reports.php:1721
3525
  msgid "c-sj"
3526
  msgstr "Svalbard et île Jan Mayen"
3527
 
3528
  # Swaziland
3529
- #: ../admin/view/wp-slimstat-reports.php:1721
3530
  msgid "c-sz"
3531
  msgstr "Swaziland"
3532
 
3533
  # Sweden
3534
- #: ../admin/view/wp-slimstat-reports.php:1721
3535
  msgid "c-se"
3536
  msgstr "Suède"
3537
 
3538
  # Switzerland
3539
- #: ../admin/view/wp-slimstat-reports.php:1721
3540
  msgid "c-ch"
3541
  msgstr "Suisse"
3542
 
3543
  # Syrian Arab Republic
3544
- #: ../admin/view/wp-slimstat-reports.php:1721
3545
  msgid "c-sy"
3546
  msgstr "République arabe syrienne"
3547
 
3548
  # Taiwan, Province of China
3549
- #: ../admin/view/wp-slimstat-reports.php:1721
3550
  msgid "c-tw"
3551
  msgstr "Taïwan, province de Chine"
3552
 
3553
  # Tajikistan
3554
- #: ../admin/view/wp-slimstat-reports.php:1721
3555
  msgid "c-tj"
3556
  msgstr "Tadjikistan"
3557
 
3558
  # United Republic of Tanzania
3559
- #: ../admin/view/wp-slimstat-reports.php:1721
3560
  msgid "c-tz"
3561
  msgstr "République-unie de Tanzanie"
3562
 
3563
  # Thailand
3564
- #: ../admin/view/wp-slimstat-reports.php:1721
3565
  msgid "c-th"
3566
  msgstr "Thaïlande"
3567
 
3568
  # Timor-Leste
3569
- #: ../admin/view/wp-slimstat-reports.php:1721
3570
  msgid "c-tl"
3571
  msgstr "Timor-Leste"
3572
 
3573
  # Togo
3574
- #: ../admin/view/wp-slimstat-reports.php:1721
3575
  msgid "c-tg"
3576
  msgstr "Togo"
3577
 
3578
  # Tonga
3579
- #: ../admin/view/wp-slimstat-reports.php:1721
3580
  msgid "c-to"
3581
  msgstr "Tonga"
3582
 
3583
  # Trinidad and Tobago
3584
- #: ../admin/view/wp-slimstat-reports.php:1721
3585
  msgid "c-tt"
3586
  msgstr "Trinité-et-Tobago "
3587
 
3588
  # Tunisia
3589
- #: ../admin/view/wp-slimstat-reports.php:1721
3590
  msgid "c-tn"
3591
  msgstr "Tunisie"
3592
 
3593
  # Turkey
3594
- #: ../admin/view/wp-slimstat-reports.php:1721
3595
  msgid "c-tr"
3596
  msgstr "Turquie "
3597
 
3598
  # Turkmenistan
3599
- #: ../admin/view/wp-slimstat-reports.php:1721
3600
  msgid "c-tm"
3601
  msgstr "Turkménistan"
3602
 
3603
  # Turks and Caicos Islands
3604
- #: ../admin/view/wp-slimstat-reports.php:1721
3605
  msgid "c-tc"
3606
  msgstr "Îles Turks et Caïques"
3607
 
3608
  # Uganda
3609
- #: ../admin/view/wp-slimstat-reports.php:1721
3610
  msgid "c-ug"
3611
  msgstr "Ouganda"
3612
 
3613
  # Ukraine
3614
- #: ../admin/view/wp-slimstat-reports.php:1721
3615
  msgid "c-ua"
3616
  msgstr "Ukraine"
3617
 
3618
  # United Arab Emirates
3619
- #: ../admin/view/wp-slimstat-reports.php:1721
3620
  msgid "c-ae"
3621
  msgstr "Émirats arabes unis"
3622
 
3623
  # United Kingdom
3624
- #: ../admin/view/wp-slimstat-reports.php:1721
3625
  msgid "c-gb"
3626
  msgstr "Royaume-Uni"
3627
 
3628
  # United States
3629
- #: ../admin/view/wp-slimstat-reports.php:1721
3630
  msgid "c-us"
3631
  msgstr "États-Unis"
3632
 
3633
  # Uruguay
3634
- #: ../admin/view/wp-slimstat-reports.php:1721
3635
  msgid "c-uy"
3636
  msgstr "Uruguay"
3637
 
3638
  # Uzbekistan
3639
- #: ../admin/view/wp-slimstat-reports.php:1721
3640
  msgid "c-uz"
3641
  msgstr "Ouzbékistan "
3642
 
3643
  # Vanuatu
3644
- #: ../admin/view/wp-slimstat-reports.php:1721
3645
  msgid "c-vu"
3646
  msgstr "Vanuatu"
3647
 
3648
  # Venezuela
3649
- #: ../admin/view/wp-slimstat-reports.php:1721
3650
  msgid "c-ve"
3651
  msgstr "République bolivarienne du Venezuela"
3652
 
3653
  # Viet Nam
3654
- #: ../admin/view/wp-slimstat-reports.php:1721
3655
  msgid "c-vn"
3656
  msgstr "Viet Nam"
3657
 
3658
  # British Virgin Islands
3659
- #: ../admin/view/wp-slimstat-reports.php:1721
3660
  msgid "c-vg"
3661
  msgstr "Îles vierges britanniques"
3662
 
3663
  # U.S. Virgin Islands
3664
- #: ../admin/view/wp-slimstat-reports.php:1721
3665
  msgid "c-vi"
3666
  msgstr "Îles vierges des États-Unis"
3667
 
3668
  # Western Sahara
3669
- #: ../admin/view/wp-slimstat-reports.php:1721
3670
  msgid "c-eh"
3671
  msgstr "Sahara occidental"
3672
 
3673
  # Yemen
3674
- #: ../admin/view/wp-slimstat-reports.php:1721
3675
  msgid "c-ye"
3676
  msgstr "Yémen"
3677
 
3678
  # Zambia
3679
- #: ../admin/view/wp-slimstat-reports.php:1721
3680
  msgid "c-zm"
3681
  msgstr "Zambie"
3682
 
3683
  # Zimbabwe
3684
- #: ../admin/view/wp-slimstat-reports.php:1721
3685
  msgid "c-zw"
3686
  msgstr "Zimbabwe"
3687
 
3688
  # Guernsey
3689
- #: ../admin/view/wp-slimstat-reports.php:1721
3690
  msgid "c-gg"
3691
  msgstr "Guernesey"
3692
 
3693
  # Jersey
3694
- #: ../admin/view/wp-slimstat-reports.php:1721
3695
  msgid "c-je"
3696
  msgstr "Jersey"
3697
 
3698
  # Isle of Man
3699
- #: ../admin/view/wp-slimstat-reports.php:1721
3700
  msgid "c-im"
3701
  msgstr "Île de Man"
3702
 
3703
  # Maldives
3704
- #: ../admin/view/wp-slimstat-reports.php:1721
3705
  msgid "c-mv"
3706
  msgstr "Maldives"
3707
 
3708
  # European Union
3709
- #: ../admin/view/wp-slimstat-reports.php:1722
3710
  msgid "c-eu"
3711
  msgstr "Union européenne"
3712
 
3713
- #: ../admin/view/wp-slimstat-reports.php:1804
3714
  msgid "src"
3715
  msgstr "src"
3716
 
3717
- #: ../admin/view/wp-slimstat-reports.php:1807
3718
  msgid "serp"
3719
  msgstr "serp"
3720
 
3721
- #: ../admin/view/wp-slimstat-reports.php:1814
3722
  msgid "Go to the referring page"
3723
  msgstr "Aller sur la page référente"
3724
 
3725
- #: ../admin/view/wp-slimstat-reports.php:1836
3726
  msgid "Remove filter for"
3727
  msgstr "Enlever le filtre pour"
3728
 
3729
- #: ../admin/view/wp-slimstat-reports.php:1840
3730
  msgid "Save"
3731
  msgstr ""
3732
 
3733
- #: ../admin/view/wp-slimstat-reports.php:1843
3734
  msgid "Reset All"
3735
  msgstr "Réinitialiser l'ensemble"
3736
 
3737
- #: ../admin/view/wp-slimstat-reports.php:1847
3738
  msgid "Current filters:"
3739
  msgstr "Filtres actifs :"
3740
 
3741
- #: ../admin/wp-slimstat-admin.php:648 ../admin/wp-slimstat-admin.php:659
3742
- #: ../admin/wp-slimstat-admin.php:661
3743
  msgid "SlimStat"
3744
  msgstr "SlimStat"
3745
 
3746
- #: ../admin/wp-slimstat-admin.php:655
3747
- msgid "Custom Reports"
3748
- msgstr "Rapports personnalisés"
 
 
3749
 
3750
- #: ../admin/wp-slimstat-admin.php:744
3751
  #, fuzzy
3752
  msgid "Pageviews in the last "
3753
  msgstr "Pages durant les 365 derniers jours"
3754
 
3755
- #: ../admin/wp-slimstat-admin.php:747
3756
  #, fuzzy
3757
  msgid "Unique IPs in the last "
3758
  msgstr "Intervalle unique"
3759
 
3760
- #: ../admin/wp-slimstat-admin.php:803
3761
  msgid "Show on screen"
3762
  msgstr "Montrer à l'écran"
3763
 
3764
- #: ../admin/wp-slimstat-admin.php:888
3765
  msgid "Already saved"
3766
  msgstr ""
3767
 
3768
- #: ../admin/wp-slimstat-admin.php:896
3769
  msgid "Saved"
3770
  msgstr ""
3771
 
3772
- #: ../admin/wp-slimstat-admin.php:916
3773
  #, fuzzy
3774
  msgid "Delete this filter"
3775
  msgstr "Filtrer les pages vues pour que"
3776
 
3777
- #: ../admin/wp-slimstat-admin.php:960
3778
  msgid "There was an error updating the following options:"
3779
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
3780
 
3781
- #: ../admin/wp-slimstat-admin.php:963
3782
  msgid "Your changes have been saved."
3783
  msgstr "Vos réglages ont bien été mis à jour"
3784
 
3785
- #: ../admin/wp-slimstat-admin.php:986
3786
  msgid "Save Changes"
3787
  msgstr "Enregistrer les modifications"
3788
 
3789
- #: ../admin/wp-slimstat-admin.php:1002
3790
  msgid "Definitions"
3791
  msgstr "Définitions"
3792
 
3793
- #: ../admin/wp-slimstat-admin.php:1005
3794
  msgid "Pageview"
3795
  msgstr "Page vue"
3796
 
3797
- #: ../admin/wp-slimstat-admin.php:1005
3798
  msgid ""
3799
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3800
  "with a \"hit\", which refers to a request for any file from a web server. "
@@ -3805,11 +3897,11 @@ msgstr ""
3805
  "d'un serveur Web. WP SlimStat enregistre une page vue chaque fois que le "
3806
  "code de traçage est exécuté"
3807
 
3808
- #: ../admin/wp-slimstat-admin.php:1006
3809
  msgid "(Human) Visit"
3810
  msgstr "Visiteurs humains"
3811
 
3812
- #: ../admin/wp-slimstat-admin.php:1006
3813
  msgid ""
3814
  "A period of interaction between a visitor's browser and your website, ending "
3815
  "when the browser is closed or when the user has been inactive on that site "
@@ -3819,7 +3911,7 @@ msgstr ""
3819
  "Web se terminant lorsque le navigateur est fermé ou lorsque l'utilisateur "
3820
  "est inactif sur ce site depuis 30 minutes"
3821
 
3822
- #: ../admin/wp-slimstat-admin.php:1007
3823
  msgid ""
3824
  "Any user who has left a comment on your blog, and is thus identified by "
3825
  "Wordpress as a returning visitor"
@@ -3827,11 +3919,11 @@ msgstr ""
3827
  "Un utilisateur qui a laissé un commentaire sur votre blog et est ainsi "
3828
  "identifié par Wordpress comme un visiteur qui a déjà visité votre site"
3829
 
3830
- #: ../admin/wp-slimstat-admin.php:1008
3831
  msgid "Unique IP"
3832
  msgstr "IP uniques"
3833
 
3834
- #: ../admin/wp-slimstat-admin.php:1008
3835
  msgid ""
3836
  "Used to differentiate between multiple requests to download a file from one "
3837
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -3844,7 +3936,7 @@ msgstr ""
3844
  "Internet de la provenance d'une consultation, elle est utile, mais pas "
3845
  "parfaite"
3846
 
3847
- #: ../admin/wp-slimstat-admin.php:1009
3848
  msgid ""
3849
  "the originating IP address of a client connecting to a web server through an "
3850
  "HTTP proxy or load balancer"
@@ -3852,11 +3944,11 @@ msgstr ""
3852
  "l'adresse IP d'origine d'un client qui se connecte à un serveur Web via un "
3853
  "proxy HTTP ou équilibreur de charge"
3854
 
3855
- #: ../admin/wp-slimstat-admin.php:1010
3856
  msgid "Direct Traffic"
3857
  msgstr "Trafic direct"
3858
 
3859
- #: ../admin/wp-slimstat-admin.php:1010
3860
  msgid ""
3861
  "All those people showing up to your Web site by typing in the URL of your "
3862
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -3866,11 +3958,11 @@ msgstr ""
3866
  "votre site Web ou qui viennent à partir d'un signet, certaines personnes "
3867
  "appellent également cela \"trafic par défaut \" ou \"trafic ambiant \""
3868
 
3869
- #: ../admin/wp-slimstat-admin.php:1011
3870
  msgid "Search Engine"
3871
  msgstr "Moteur de recherche"
3872
 
3873
- #: ../admin/wp-slimstat-admin.php:1011
3874
  msgid ""
3875
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3876
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -3878,17 +3970,17 @@ msgstr ""
3878
  "Google, Yahoo, MSN, Ask, et autres; cet item comprendra à la fois votre "
3879
  "trafic rémunéré (PPC/SEM) ainsi que votre trafic organique, prenez en note"
3880
 
3881
- #: ../admin/wp-slimstat-admin.php:1012 ../admin/wp-slimstat-admin.php:1028
3882
  msgid "Keywords used by your visitors to find your website on a search engine"
3883
  msgstr ""
3884
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
3885
  "de recherche"
3886
 
3887
- #: ../admin/wp-slimstat-admin.php:1013
3888
  msgid "SERP"
3889
  msgstr "SERP"
3890
 
3891
- #: ../admin/wp-slimstat-admin.php:1013
3892
  msgid ""
3893
  "Short for search engine results page, the Web page that a search engine "
3894
  "returns with the results of its search. The value shown represents your rank "
@@ -3898,7 +3990,7 @@ msgstr ""
3898
  "recherche renvoie les résultats de sa recherche. La valeur indiquée "
3899
  "correspond à votre classement (ou la position) dans la liste des résultats"
3900
 
3901
- #: ../admin/wp-slimstat-admin.php:1014
3902
  msgid ""
3903
  "Any program used for accessing a website; this includes browsers, robots, "
3904
  "spiders and any other program that was used to retrieve information from the "
@@ -3908,7 +4000,7 @@ msgstr ""
3908
  "navigateurs, robots, spiders et tout autre programme qui a été utilisé pour "
3909
  "extraire des informations du site"
3910
 
3911
- #: ../admin/wp-slimstat-admin.php:1015
3912
  msgid ""
3913
  "A link from one domain to another is said to be outbound from its source "
3914
  "anchor and inbound to its target. This report lists all the links to other "
@@ -3918,27 +4010,27 @@ msgstr ""
3918
  "sa cible. Ce rapport répertorie tous les liens vers d'autres sites suivis "
3919
  "par vos visiteurs."
3920
 
3921
- #: ../admin/wp-slimstat-admin.php:1022
3922
  msgid "Basic Filters"
3923
  msgstr "Filtres de base"
3924
 
3925
- #: ../admin/wp-slimstat-admin.php:1025
3926
  msgid "User agent (Firefox, Chrome, ...)"
3927
  msgstr "User agent (Firefox, Chrome, ...)"
3928
 
3929
- #: ../admin/wp-slimstat-admin.php:1026
3930
  msgid "2-letter code (us, ru, de, it, ...)"
3931
  msgstr "code pays à 2 lettres (us, ru, de, it, ...)"
3932
 
3933
- #: ../admin/wp-slimstat-admin.php:1027
3934
  msgid "IP"
3935
  msgstr "IP"
3936
 
3937
- #: ../admin/wp-slimstat-admin.php:1027
3938
  msgid "Visitor's public IP address"
3939
  msgstr " Adresse IP publique du visiteur"
3940
 
3941
- #: ../admin/wp-slimstat-admin.php:1029
3942
  msgid ""
3943
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
3944
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -3948,7 +4040,7 @@ msgstr ""
3948
  "microsoft.com/en-us/library/ee825488(v=cs.20).aspx\">language culture page</"
3949
  "a> (première colonne) pour plus d'informations"
3950
 
3951
- #: ../admin/wp-slimstat-admin.php:1030
3952
  msgid ""
3953
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
3954
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -3958,15 +4050,15 @@ msgstr ""
3958
  "référez-vous à <a target=\"_blank\" href=\"http://php.net/manual/en/function."
3959
  "get-browser.php\">cette page de manuel </a> pour plus d'informations"
3960
 
3961
- #: ../admin/wp-slimstat-admin.php:1031
3962
  msgid "URL accessed on your site"
3963
  msgstr "URL accessible sur votre site"
3964
 
3965
- #: ../admin/wp-slimstat-admin.php:1032
3966
  msgid "Complete address of the referrer page"
3967
  msgstr "Adresse complète de la page référente"
3968
 
3969
- #: ../admin/wp-slimstat-admin.php:1033
3970
  msgid ""
3971
  "Visitors' names according to the cookie set by Wordpress after they leave a "
3972
  "comment"
@@ -3974,15 +4066,15 @@ msgstr ""
3974
  "Les noms des visiteurs selon le cookie enregistré par Wordpress, après avoir "
3975
  "laissé un commentaire"
3976
 
3977
- #: ../admin/wp-slimstat-admin.php:1041
3978
  msgid "Advanced Filters"
3979
  msgstr "Filtres Avancés"
3980
 
3981
- #: ../admin/wp-slimstat-admin.php:1044
3982
  msgid "user agent version (9.0, 11, ...)"
3983
  msgstr "user agent version (9.0, 11, ...)"
3984
 
3985
- #: ../admin/wp-slimstat-admin.php:1045
3986
  msgid ""
3987
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
3988
  "all others"
@@ -3990,11 +4082,11 @@ msgstr ""
3990
  "1 = moteur de recherche, 2 = appareil mobile, 3 = lecteur de flux "
3991
  "(syndication) , 0 = tous les autres"
3992
 
3993
- #: ../admin/wp-slimstat-admin.php:1046
3994
  msgid "Pageview Attributes"
3995
  msgstr "l'attribut des Pages Vues"
3996
 
3997
- #: ../admin/wp-slimstat-admin.php:1046
3998
  msgid ""
3999
  "this field is set to <em>[pre]</em> if the resource has been accessed "
4000
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -4005,19 +4097,19 @@ msgstr ""
4005
  "Link_prefetching_FAQ\"> préchargement des liens</a> ou d'autres techniques "
4006
  "similaires"
4007
 
4008
- #: ../admin/wp-slimstat-admin.php:1047
4009
  msgid "author associated to that post/page when the resource was accessed"
4010
  msgstr "auteur associé à cet article/page lorsque la ressource est accessible"
4011
 
4012
- #: ../admin/wp-slimstat-admin.php:1048
4013
  msgid "ID of the category/term associated to the resource, when available"
4014
  msgstr "ID de la catégorie/terme associée à la ressource, lorsqu'il y en a"
4015
 
4016
- #: ../admin/wp-slimstat-admin.php:1049
4017
  msgid "visitor's originating IP address, if available"
4018
  msgstr "adresse IP d'origine du visiteur, s'il est disponible"
4019
 
4020
- #: ../admin/wp-slimstat-admin.php:1050
4021
  msgid ""
4022
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4023
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -4031,15 +4123,15 @@ msgstr ""
4031
  "\" href=\"http://codex.wordpress.org/Conditional_Tags\">Conditional Tags</a> "
4032
  "pour plus d'informations"
4033
 
4034
- #: ../admin/wp-slimstat-admin.php:1051
4035
  msgid "Screen Resolution"
4036
  msgstr "la résolution de l'écran"
4037
 
4038
- #: ../admin/wp-slimstat-admin.php:1051
4039
  msgid "viewport width and height (1024x768, 800x600, ...)"
4040
  msgstr "résolution de l'écran (1024x768, 800x600, ...)"
4041
 
4042
- #: ../admin/wp-slimstat-admin.php:1052
4043
  msgid ""
4044
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4045
  "visitors"
@@ -4047,11 +4139,11 @@ msgstr ""
4047
  "généralement utilisé en conjonction avec <em>n'est pas vide </em>, identifie "
4048
  "les visiteurs humains"
4049
 
4050
- #: ../admin/wp-slimstat-admin.php:1053
4051
  msgid "Date Filters"
4052
  msgstr "Filtres de dates"
4053
 
4054
- #: ../admin/wp-slimstat-admin.php:1053
4055
  msgid ""
4056
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4057
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -4062,11 +4154,11 @@ msgstr ""
4062
  "ex : jour = 1, mois = 1, année = vide, intervalle = -1 fixera un filtre "
4063
  "année à date)"
4064
 
4065
- #: ../admin/wp-slimstat-admin.php:1054
4066
  msgid "SERP Position"
4067
  msgstr "Position SERP "
4068
 
4069
- #: ../admin/wp-slimstat-admin.php:1054
4070
  msgid ""
4071
  "set the filter to Referer contains cd=N&, where N is the position you are "
4072
  "looking for"
@@ -4074,15 +4166,15 @@ msgstr ""
4074
  "Réglez le filtre sur Référent contient cd=N&, où N est la position que vous "
4075
  "recherchez"
4076
 
4077
- #: ../admin/wp-slimstat-admin.php:1081
4078
  msgid "Yes"
4079
  msgstr "Oui"
4080
 
4081
- #: ../admin/wp-slimstat-admin.php:1082
4082
  msgid "No"
4083
  msgstr "Non"
4084
 
4085
- #: ../admin/wp-slimstat-admin.php:1083
4086
  msgid "Site Specific"
4087
  msgstr "Spécificités du site"
4088
 
@@ -5607,98 +5699,150 @@ msgstr "Inconnue"
5607
  msgid "c-xy"
5608
  msgstr "Local"
5609
 
5610
- #: ../wp-slimstat.php:219 ../wp-slimstat.php:497
5611
- msgid "Pageview filtered by third-party code"
5612
  msgstr ""
5613
 
5614
- #: ../wp-slimstat.php:236
5615
- #, fuzzy
5616
- msgid "Malformed URL"
5617
  msgstr "Ignorer les utilisateurs"
5618
 
5619
- #: ../wp-slimstat.php:255
5620
- msgid "Referrer is blacklisted"
 
5621
  msgstr ""
5622
 
5623
- #: ../wp-slimstat.php:333
5624
- #, fuzzy
5625
- msgid "Permalink is blacklisted"
5626
  msgstr "le permalien"
5627
 
5628
- #: ../wp-slimstat.php:344
5629
- msgid "Empty or not supported IP address format (IPv6)"
5630
- msgstr ""
5631
-
5632
- #: ../wp-slimstat.php:353
5633
- msgid "Logged in user not tracked"
5634
- msgstr ""
5635
-
5636
- #: ../wp-slimstat.php:361
5637
- msgid "User with given capability not tracked"
5638
  msgstr ""
5639
 
5640
- #: ../wp-slimstat.php:368
5641
  #, php-format
5642
- msgid "User %s is blacklisted"
5643
  msgstr ""
5644
 
5645
- #: ../wp-slimstat.php:388
5646
  #, php-format
5647
- msgid "Spammer %s not tracked"
5648
  msgstr ""
5649
 
5650
- #: ../wp-slimstat.php:417
 
 
 
 
 
 
 
 
 
 
5651
  #, php-format
5652
- msgid "IP address %s is blacklisted"
5653
  msgstr ""
5654
 
5655
- #: ../wp-slimstat.php:446
5656
  #, php-format
5657
- msgid "Country %s is blacklisted"
5658
  msgstr ""
5659
 
5660
- #: ../wp-slimstat.php:455
5661
  #, fuzzy
5662
- msgid "Prefetch requests are ignored"
5663
  msgstr "Ignorer les requêtes anticipées"
5664
 
5665
- #: ../wp-slimstat.php:471
5666
  #, fuzzy
5667
- msgid "Bot not tracked"
5668
  msgstr "Robot ou Crawler"
5669
 
5670
- #: ../wp-slimstat.php:480
5671
  #, php-format
5672
- msgid "Browser %s is blacklisted"
 
 
 
 
5673
  msgstr ""
5674
 
5675
- #: ../wp-slimstat.php:1206
5676
  msgid "Invalid payload string. Try clearing your WordPress cache."
5677
  msgstr ""
5678
 
5679
- #: ../wp-slimstat.php:1216
5680
  msgid "Invalid data signature. Try clearing your WordPress cache."
5681
  msgstr ""
5682
 
5683
- #: ../wp-slimstat.php:1286
5684
  #, fuzzy
5685
  msgid "There was an error downloading the MaxMind Geolite DB:"
5686
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5687
 
5688
- #: ../wp-slimstat.php:1294 ../wp-slimstat.php:1303
5689
  #, fuzzy
5690
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5691
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5692
 
5693
- #: ../wp-slimstat.php:1298
5694
  msgid "Function gzopen not defined. Aborting."
5695
  msgstr ""
5696
 
5697
- #: ../wp-slimstat.php:1308
5698
  #, fuzzy
5699
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5700
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5701
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5702
  #, fuzzy
5703
  #~ msgid "Tracking"
5704
  #~ msgstr "Mode traçage"
@@ -5729,9 +5873,6 @@ msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5729
  #~ msgid "External Pages"
5730
  #~ msgstr "Pages externes"
5731
 
5732
- #~ msgid "Reset Reports"
5733
- #~ msgstr "Réinitialiser les rapports"
5734
-
5735
  #~ msgid "Start From"
5736
  #~ msgstr "Commencer à partir de"
5737
 
@@ -5780,12 +5921,6 @@ msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5780
  #~ msgid "Views"
5781
  #~ msgstr "Vues"
5782
 
5783
- #~ msgid "Enable Tracking"
5784
- #~ msgstr "Activer le traçage"
5785
-
5786
- #~ msgid "Enable Spy Mode"
5787
- #~ msgstr "Activer le mode espion"
5788
-
5789
  #~ msgid "Javascript"
5790
  #~ msgstr "Mode Javascript"
5791
 
@@ -6235,9 +6370,6 @@ msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
6235
  #~ msgid "IP Addresses"
6236
  #~ msgstr "Adresses IP"
6237
 
6238
- #~ msgid "Users"
6239
- #~ msgstr "Utilisateurs"
6240
-
6241
  #~ msgid "Capability to Admin"
6242
  #~ msgstr "Capacité à administrer"
6243
 
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-24 09:22-0500\n"
6
+ "PO-Revision-Date: 2015-12-24 09:22-0500\n"
7
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
8
  "Language-Team: Michael Bastin\n"
9
  "Language: fr_FR\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../admin/config/index.php:50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgid ""
22
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
23
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
26
  "Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
27
  "d'informations"
28
 
29
+ #: ../admin/config/index.php:65
30
  msgid "Read access: username not found"
31
  msgstr "Accès lecture : username inexistant"
32
 
33
+ #: ../admin/config/index.php:75 ../admin/config/index.php:100
34
  msgid ""
35
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
36
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
40
  "org/Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
41
  "d'informations"
42
 
43
+ #: ../admin/config/index.php:90
44
  msgid "Config access: username not found"
45
  msgstr "Accès configuration : username inexistant"
46
 
47
+ #: ../admin/config/index.php:109
48
+ msgid "Basic"
49
+ msgstr ""
50
 
51
+ #: ../admin/config/index.php:111 ../admin/config/index.php:132
52
  msgid "Tracker"
53
  msgstr "Traçage"
54
 
55
+ #: ../admin/config/index.php:112
56
+ msgid "Enable Tracking"
57
+ msgstr "Activer le traçage"
 
58
 
59
+ #: ../admin/config/index.php:112
60
  #, fuzzy
61
  msgid "Turn the tracker on or off, while keeping the reports accessible."
62
  msgstr ""
63
  "Activez ou désactivez le Traceur, mais conservez le rapport accessible (Ce "
64
  "que vous n'auriez pas si vous désactiviez le plugin.)"
65
 
66
+ #: ../admin/config/index.php:113
 
 
 
 
 
 
 
 
 
67
  msgid "Tracking Mode"
68
  msgstr "Mode traçage"
69
 
70
+ #: ../admin/config/index.php:113
71
  #, fuzzy
72
  msgid ""
73
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
82
  "ignorés. En outre, <strong>la plupart</strong> des spammeurs, moteurs de "
83
  "recherche et autres robots ne seront pas suivis."
84
 
85
+ #: ../admin/config/index.php:113
86
+ msgid "Client Side"
87
  msgstr ""
88
 
89
+ #: ../admin/config/index.php:113
90
  #, fuzzy
91
+ msgid "Server Side"
92
  msgstr "Côté serveur"
93
 
94
+ #: ../admin/config/index.php:114
95
  msgid "Stealth Mode"
96
  msgstr ""
97
 
98
+ #: ../admin/config/index.php:114
99
  msgid ""
100
  "Do not add the javascript tracking code to your pages, if tracking mode is "
101
  "set to Server. Please note: if enabled, this will prevent the tracker from "
103
  "etc. This option is ignored is Tracking Mode is set to Client."
104
  msgstr ""
105
 
106
+ #: ../admin/config/index.php:114 ../admin/view/wp-slimstat-reports.php:1359
107
+ msgid "Off"
108
+ msgstr ""
109
+
110
+ #: ../admin/config/index.php:114
111
+ msgid "On"
112
+ msgstr "Actif"
113
+
114
+ #: ../admin/config/index.php:115
115
  #, fuzzy
116
  msgid "Admin Pages"
117
  msgstr "Tracer les pages Administrateur"
118
 
119
+ #: ../admin/config/index.php:115
120
  msgid "Enable this option to track your users' activity within the admin."
121
  msgstr ""
122
  "Activez cette option pour suivre l'activité de vos utilisateurs dans l'admin."
123
 
124
+ #: ../admin/config/index.php:115
125
  #, fuzzy
126
  msgid "Track"
127
  msgstr "Traçage"
128
 
129
+ #: ../admin/config/index.php:115
130
  #, fuzzy
131
  msgid "Do not track"
132
  msgstr "ne contient pas"
133
 
134
+ #: ../admin/config/index.php:117
135
  msgid "WordPress Integration"
136
  msgstr "Intégration WordPress"
137
 
138
+ #: ../admin/config/index.php:118
139
  msgid "Menu Position"
140
  msgstr "Position du Menu"
141
 
142
+ #: ../admin/config/index.php:118
143
  msgid ""
144
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
145
  "admin bar (if visible)."
147
  "Choisir entre un menu d'administration dans la barre latérale de WordPress "
148
  "ou un menu déroulant dans la barre supérieure (si elle est affichée)."
149
 
150
+ #: ../admin/config/index.php:118
151
  msgid "Side Menu"
152
  msgstr "Menu latéral"
153
 
154
+ #: ../admin/config/index.php:118
155
  msgid "Admin Bar"
156
  msgstr "Barre d'Administration"
157
 
158
+ #: ../admin/config/index.php:119
159
  #, fuzzy
160
  msgid "Posts and Pages"
161
  msgstr "Etendre les Stats aux articles"
162
 
163
+ #: ../admin/config/index.php:119
164
  #, fuzzy
165
  msgid ""
166
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
167
+ "per post within the timeframe specified here below."
168
  msgstr ""
169
  "Ajoute une colonne à l'écran d'édition des articles, en indiquant le nombre "
170
  "de visites par article (peut ralentir le rendu des pages)."
171
 
172
+ #: ../admin/config/index.php:120
 
 
 
 
 
 
 
 
 
 
173
  #, fuzzy
174
  msgid "Report Interval"
175
  msgstr "Intervalle unique"
176
 
177
+ #: ../admin/config/index.php:120
178
  msgid ""
179
  "Enter the time range, in days, that should be used to calculate the value "
180
  "here above."
181
  msgstr ""
182
 
183
+ #: ../admin/config/index.php:121
184
  #, fuzzy
185
  msgid "Report Type"
186
  msgstr "Rapports"
187
 
188
+ #: ../admin/config/index.php:121
189
  msgid ""
190
  "Select what kind of information you would like to see displayed on the Posts "
191
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
192
  "IPs consider only one hit per user in the given time range."
193
  msgstr ""
194
 
195
+ #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:100
196
+ #: ../admin/view/wp-slimstat-reports.php:109
197
+ #: ../admin/view/wp-slimstat-reports.php:1375
198
+ #: ../admin/view/wp-slimstat-reports.php:1533
199
  msgid "Pageviews"
200
  msgstr "Pages vues"
201
 
202
+ #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:110
203
+ #: ../admin/view/wp-slimstat-reports.php:286
204
+ #: ../admin/view/wp-slimstat-reports.php:526
205
+ #: ../admin/view/wp-slimstat-reports.php:1390
206
+ #: ../admin/view/wp-slimstat-reports.php:1435
207
  msgid "Unique IPs"
208
  msgstr "IPs uniques"
209
 
210
+ #: ../admin/config/index.php:122
211
+ msgid "Dashboard Widgets"
212
+ msgstr ""
213
+
214
+ #: ../admin/config/index.php:122
215
+ msgid ""
216
+ "Choose if you want to have the most important reports on your WordPress "
217
+ "Dashboard. Use the Screen Options dropdown to select which ones to display."
218
+ msgstr ""
219
+
220
+ #: ../admin/config/index.php:123
221
  #, fuzzy
222
  msgid "Hide Add-ons"
223
  msgstr "Add-ons"
224
 
225
+ #: ../admin/config/index.php:123
226
  msgid ""
227
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
228
  "from the list of plugins in WordPress. Please note that you will still "
229
  "receive updates for hidden add-ons."
230
  msgstr ""
231
 
232
+ #: ../admin/config/index.php:125
233
  msgid "Database"
234
  msgstr "Base de données"
235
 
236
+ #: ../admin/config/index.php:126
237
  msgid "Retain data for"
238
  msgstr "Conserver les données pour"
239
 
240
+ #: ../admin/config/index.php:126
241
  #, fuzzy
242
  msgid ""
243
  "Clean-up log entries older than the number of days specified here above. "
248
  "ci-dessus. Entrer <strong>0</strong> (number zero) si vous souhaitez "
249
  "conserver toutes vos données sans limites de durée."
250
 
251
+ #: ../admin/config/index.php:126
252
  msgid "Next clean-up on"
253
  msgstr "Prochain nettoyage le"
254
 
255
+ #: ../admin/config/index.php:126
256
  #, fuzzy, php-format
257
  msgid ""
258
  "Entries logged on or before %s will be archived or deleted according to the "
260
  msgstr ""
261
  "Les données enregistrées le ou avant le %s seront définitivement supprimées. "
262
 
263
+ #: ../admin/config/index.php:126 ../admin/view/index.php:102
264
  #: ../admin/view/wp-slimstat-db.php:79
265
+ #: ../admin/view/wp-slimstat-reports.php:1359
266
  msgid "days"
267
  msgstr "jours"
268
 
269
+ #: ../admin/config/index.php:127
270
  #, fuzzy
271
  msgid "Delete records"
272
  msgstr "Filtrer les pages vues pour que"
273
 
274
+ #: ../admin/config/index.php:127
275
  msgid ""
276
  "If DB space is not an issue, you can decide to archive older records in "
277
  "another table, instead of deleting them. This way performance is preserved, "
281
  "is uninstalled. Make sure to backup your data before you proceed."
282
  msgstr ""
283
 
284
+ #: ../admin/config/index.php:134
285
+ #, fuzzy
286
+ msgid "Advanced Options"
287
+ msgstr "Filtres Avancés"
288
 
289
+ #: ../admin/config/index.php:135
290
+ msgid "Session Duration"
291
+ msgstr "Durée session"
292
+
293
+ #: ../admin/config/index.php:135
294
+ msgid ""
295
+ "How many seconds should a human session last? Google Analytics sets it to "
296
+ "1800 seconds."
297
  msgstr ""
298
+ "Définit le nombre de secondes qu'une visite devrait durer. Google Analytics "
299
+ "fixe cette durée à 1800 secondes."
300
 
301
+ #: ../admin/config/index.php:135 ../admin/config/index.php:205
302
+ msgid "seconds"
303
+ msgstr "secondes"
304
 
305
+ #: ../admin/config/index.php:136
306
+ msgid "Extend Session"
307
+ msgstr "Etendre la session"
308
+
309
+ #: ../admin/config/index.php:136
310
+ msgid "Extend the duration of a session each time the user visits a new page."
311
  msgstr ""
312
+ "Prolonger la durée d'une session à chaque fois que l'utilisateur visite une "
313
+ "page."
314
 
315
+ #: ../admin/config/index.php:137
316
+ msgid "Enable CDN"
317
+ msgstr "Activer CDN"
 
318
 
319
+ #: ../admin/config/index.php:137
 
320
  msgid ""
321
+ "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
322
+ "by serving our tracking code from their fast and reliable network (free "
323
+ "service)."
324
  msgstr ""
325
+ "Permet <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a> 's "
326
+ "CDN, en servant le traqueur Javascript WP SlimStat à partir de leur réseau "
327
+ "rapide et fiable."
328
 
329
+ #: ../admin/config/index.php:138
330
+ msgid "Extensions to Track"
331
+ msgstr "Extensions du traçage"
 
332
 
333
+ #: ../admin/config/index.php:138
 
334
  msgid ""
335
+ "List all the file extensions that you want to be treated as Downloads. "
336
+ "Please note that links pointing to external resources (i.e. PDFs on a "
337
+ "different website) are considered Downloads and not Outbound Links (and "
338
+ "tracked as such), if their extension matches one of the ones listed here "
339
+ "below."
340
  msgstr ""
341
+ "Les extensions de fichiers suivants (valeurs séparées par des virgules pour "
342
+ "être répertoriées) seront suivis comme Téléchargements par WP SlimStat. "
343
+ "Veuillez noter que les liens pointant vers des ressources externes (par ex. "
344
+ "fichiers PDF sur un autre site) sont considérés comme Téléchargements et non "
345
+ "comme liens sortants (et suivis en tant que tel), si leur extension "
346
+ "correspond à l'une de celles qui sont énumérées ci-dessous."
347
 
348
+ #: ../admin/config/index.php:140
349
  #, fuzzy
350
+ msgid "Internal and Outbound Links"
351
+ msgstr "Liens sortants récents"
352
 
353
+ #: ../admin/config/index.php:141
354
+ msgid "Track Outbound Clicks"
355
+ msgstr "Tracer les liens sortants"
356
+
357
+ #: ../admin/config/index.php:141
358
  msgid ""
359
+ "Track when your visitors click on link to external websites. This option "
360
+ "required Spy Mode to be enabled."
361
  msgstr ""
362
+ "Détectez vos visiteurs cliquant sur des liens pointant sur des sites "
363
+ "externes. Cette fonctionnalité nécéssite que le Mode Espion soit activé."
364
 
365
+ #: ../admin/config/index.php:142
366
  #, fuzzy
367
+ msgid "Track Coordinates"
368
+ msgstr "Mode traçage"
369
 
370
+ #: ../admin/config/index.php:142
 
371
  msgid ""
372
+ "Collect mouse coordinates and other information for clicks on internal "
373
+ "links. Strongly recommended if you're using the heatmap add-on. By default, "
374
+ "this information is only collected for external links."
375
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
376
 
377
+ #: ../admin/config/index.php:143
378
+ msgid "No Callback"
379
+ msgstr ""
380
 
381
+ #: ../admin/config/index.php:143
382
  msgid ""
383
+ "Track the event but do not invoke the callback function on links marked with "
384
+ "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
385
+ "attribute contains one of these strings (separated by comma). Useful to "
386
+ "prevent conflicts with lightbox and similar libraries."
387
  msgstr ""
 
 
388
 
389
+ #: ../admin/config/index.php:144
390
+ msgid "Do Not Track"
 
 
 
 
391
  msgstr ""
 
 
392
 
393
+ #: ../admin/config/index.php:144
 
 
 
 
 
 
 
 
 
 
 
 
 
394
  msgid ""
395
+ "Do not track links marked with one of these class names, <em>rel</em> "
396
+ "attributes or whose <em>href</em> attribute contains one of these strings "
397
+ "(separated by comma)."
398
  msgstr ""
399
 
400
+ #: ../admin/config/index.php:146
401
+ msgid "Pages not belonging to this site"
 
 
 
 
 
 
 
 
 
 
402
  msgstr ""
 
 
 
 
 
 
 
 
 
 
403
 
404
+ #: ../admin/config/index.php:147
 
 
 
 
 
 
 
 
 
405
  #, fuzzy
406
  msgid ""
407
+ "Add the following code to all the non-WP pages you want to track, right "
408
+ "before the closing BODY tag. Please make sure to change the protocol of all "
409
+ "the URLs to HTTPS, if you external site is served over a secure channel."
 
 
410
  msgstr ""
411
+ "Ajouter le code suivant à toutes les pages non-WordPress que vous souhaitez "
412
+ "suivre."
 
 
413
 
414
+ #: ../admin/config/index.php:157
415
  #, fuzzy
416
+ msgid "Allow External Domains"
417
+ msgstr "Liens externes hostiles"
 
 
 
 
 
 
 
 
 
 
 
 
418
 
419
+ #: ../admin/config/index.php:157
420
  msgid ""
421
+ "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
422
+ "header is present on the requested resource, when using the external "
423
+ "tracking code here above, list the domains (complete with scheme, separated "
424
+ "by commas) you would like to allow. For example: <code>http://my.domain.ext</"
425
+ "code> (no trailing slash). Please see <a href='http://www.w3.org/TR/cors/"
426
+ "#security' target='_blank'>this W3 resource</a> for more information on the "
427
+ "security implications of allowing CORS requests."
428
  msgstr ""
 
 
429
 
430
+ #: ../admin/config/index.php:158 ../admin/config/index.php:180
431
+ #: ../admin/config/index.php:208
432
+ msgid "Miscellaneous"
433
+ msgstr "Divers"
 
 
 
 
 
 
 
 
 
434
 
435
+ #: ../admin/config/index.php:159
436
+ msgid "Enable UAN"
437
+ msgstr "Activer UAN"
 
438
 
439
+ #: ../admin/config/index.php:159
440
  msgid ""
441
+ "Send anonymous data about user agents to our server for analysis. This "
442
+ "allows us to contribute to the <a href='http://browscap.org/' "
443
+ "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
444
+ "Slimstat's browser detection functionality. It also enables our transparent "
445
+ "ads network. No worries, your site will not be affected in any way."
 
446
  msgstr ""
447
+ "Envoyer des données anonymes concernant les navigateurs inconnus à nos "
448
+ "serveurs pour analyse. Cela nous permet de contribuer au <a href='http://"
449
+ "browscap.org/' target='_blank'> projet opensource BrowsCap, et d'améliorer "
450
+ "la pertinence de la fonctionnalité de WPStats concernant les navigateurs web."
451
 
452
+ #: ../admin/config/index.php:164
453
  msgid "Filters"
454
  msgstr "Filtres"
455
 
456
+ #: ../admin/config/index.php:166
457
+ #, fuzzy
458
+ msgid "Do not track settings"
459
+ msgstr "ne contient pas"
460
 
461
+ #: ../admin/config/index.php:167
462
  msgid "Track Registered Users"
463
  msgstr "Tracer les utilisateurs enregistrés"
464
 
465
+ #: ../admin/config/index.php:167
466
  msgid "Enable this option to track logged in users."
467
  msgstr "Activez cette option pour tracer les utilisateurs connectés"
468
 
469
+ #: ../admin/config/index.php:168
470
  msgid "Blacklist by Username"
471
  msgstr "Liste noire basée sur le nom d'utilisateur"
472
 
473
+ #: ../admin/config/index.php:168
474
+ #, fuzzy
475
  msgid ""
476
  "List all the usernames you don't want to track, separated by commas. Please "
477
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
478
+ "sensitive. Wildcards: <code>*</code> matches 'any string, including the "
479
+ "empty string', <code>!</code> matches 'any character'. For example, "
480
+ "<code>user*</code> will match user12 and userfoo, <code>u*100</code> will "
481
+ "match user100 and uber100, <code>user!0</code> will match user10 and user90."
482
  msgstr ""
483
+ "Liste de tous les URL que vous ne voulez pas suivre, séparées par des "
484
+ "virgules. Ne pas inclure le nom de domaine: <em>/about, ?p=1</em>, etc. "
485
+ "Caractères génériques: <code> * </code> signifie «n'importe quelle chaîne, y "
486
+ "compris la chaîne vide\", <code>!</code> signifie «n'importe quel "
487
+ "caractère». Par exemple, <code>/abou*</code> correspondra /about et /abound, "
488
+ "<code>/abo*t</code> correspondra /aboundant et /about, <code>/abo!t </code > "
489
+ "correspondra /about et /abort. Les chaînes sont insensibles à la casse."
490
 
491
+ #: ../admin/config/index.php:169
492
  msgid "Blacklist by IP Address"
493
  msgstr "Liste noire par adresse IP"
494
 
495
+ #: ../admin/config/index.php:169
496
  msgid ""
497
  "List all the IP addresses you don't want to track, separated by commas. Each "
498
  "network <strong>must</strong> be defined using the <a href='http://en."
507
  "<em>192.168.0.0/24</em>). Si le format est incorrect, WP SlimStat ne peut "
508
  "pas suivre correctement les pages vues."
509
 
510
+ #: ../admin/config/index.php:170
511
  msgid "Blacklist by Capability"
512
  msgstr "Blacklister par Capabilité WordPress"
513
 
514
+ #: ../admin/config/index.php:170
515
  msgid ""
516
  "Users having at least one of the <a href='http://codex.wordpress.org/"
517
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
521
  "Roles_and_Capabilities' target='_new'>capacités</a> listées ci-dessous ne "
522
  "seront pas suivis. Les capacités sont insensibles à la casse."
523
 
524
+ #: ../admin/config/index.php:172
525
  msgid "Profiling"
526
  msgstr "Profiling"
527
 
528
+ #: ../admin/config/index.php:173
529
  msgid "Ignore Spammers"
530
  msgstr "Ignorer les spammeurs"
531
 
532
+ #: ../admin/config/index.php:173
533
  msgid ""
534
  "Enable this option if you don't want to track visits from users identified "
535
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
541
  "Akismet). Les visites de personnes dont les commentaires sont ensuite marqué "
542
  "comme spam par vous, seront également supprimées de la base."
543
 
544
+ #: ../admin/config/index.php:174
545
  #, fuzzy
546
  msgid "Ignore Bots"
547
  msgstr "Ignorer les utilisateurs"
548
 
549
+ #: ../admin/config/index.php:174
550
  msgid ""
551
  "Turn on this feature if you want to have the accuracy level of server-side "
552
  "tracking, but not the inconvenience of getting your database clogged with "
554
  "note that in Client mode, bots are ignored regardless of this setting."
555
  msgstr ""
556
 
557
+ #: ../admin/config/index.php:175
558
  msgid "Permalinks"
559
  msgstr "Rermaliens"
560
 
561
+ #: ../admin/config/index.php:175
562
  msgid ""
563
  "List all the URLs on your website that you don't want to track, separated by "
564
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
576
  "<code>/abo*t</code> correspondra /aboundant et /about, <code>/abo!t </code > "
577
  "correspondra /about et /abort. Les chaînes sont insensibles à la casse."
578
 
579
+ #: ../admin/config/index.php:176
580
  msgid "Countries"
581
  msgstr "Pays"
582
 
583
+ #: ../admin/config/index.php:176
584
  msgid ""
585
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
586
  "track, separated by commas."
588
  "Listez tous les codes de pays (p. ex.: <code>en-us, it, es </code>) que vous "
589
  "ne voulez pas suivre, séparées par des virgules."
590
 
591
+ #: ../admin/config/index.php:177
592
  msgid "User Agents"
593
  msgstr "User Agents"
594
 
595
+ #: ../admin/config/index.php:177
596
  msgid ""
597
  "Browsers (user agents) you don't want to track, separated by commas. You can "
598
  "specify the browser's version adding a slash after the name (i.e. "
610
  "correspondra à Chrome et Chromium, <code>IE/!.0</Code> correspondra IE/7.0 "
611
  "et IE/8.0. Les chaînes sont insensibles à la casse."
612
 
613
+ #: ../admin/config/index.php:178
614
  msgid "Referring Sites"
615
  msgstr "Sites référents"
616
 
617
+ #: ../admin/config/index.php:178
618
  msgid ""
619
  "Referring URLs that you don't want to track, separated by commas: "
620
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
631
  "soit un caractère générique ou le protocole que vous voulez filtrer "
632
  "(http://, https://)."
633
 
634
+ #: ../admin/config/index.php:181
635
+ msgid "Enable Privacy Mode"
636
+ msgstr "Activer le mode privé"
637
+
638
+ #: ../admin/config/index.php:181
639
+ msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
640
+ msgstr ""
641
+ "Cette option masque l'adresse IP de vos visiteurs afin de se conformer aux "
642
+ "lois de confidentialité européennes."
643
+
644
+ #: ../admin/config/index.php:182
645
+ msgid "Ignore Prefetch Requests"
646
+ msgstr "Ignorer les requêtes anticipées"
647
+
648
+ #: ../admin/config/index.php:182
649
+ msgid ""
650
+ "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
651
+ "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
652
+ "target='_blank'>Link Prefetching functionality</a>."
653
+ msgstr ""
654
+ "Activer ce filtre si vous voulez éviter à WP SlimStat le suivi des pages "
655
+ "vues générées par Firefox <a href='https://developer.mozilla.org/en/"
656
+ "Link_prefetching_FAQ' target='_blank'>Link Prefetching functionality</a>."
657
+
658
+ #: ../admin/config/index.php:187 ../admin/config/index.php:220
659
+ msgid "Reports"
660
+ msgstr "Rapports"
661
+
662
+ #: ../admin/config/index.php:189
663
+ msgid "Formats and Conversions"
664
+ msgstr ""
665
+
666
+ #: ../admin/config/index.php:190
667
+ msgid "Number Format"
668
+ msgstr "Format des nombres"
669
+
670
+ #: ../admin/config/index.php:190
671
+ msgid "Choose the number format you want to use for your reports."
672
+ msgstr ""
673
+ "Choisissez le format numérique que vous souhaitez utiliser, européen ou "
674
+ "américain."
675
+
676
+ #: ../admin/config/index.php:191
677
  #, fuzzy
678
+ msgid "Date Format"
679
+ msgstr "Données et Formats"
680
 
681
+ #: ../admin/config/index.php:191
682
+ #, fuzzy
683
+ msgid ""
684
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
685
+ "Format</a> to use when displaying a pageview's date."
686
+ msgstr ""
687
+ "<a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank"
688
+ "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
689
+ "vue."
690
 
691
+ #: ../admin/config/index.php:192
692
+ #, fuzzy
693
+ msgid "Time Format"
694
+ msgstr "Format des nombres"
695
+
696
+ #: ../admin/config/index.php:192
697
+ #, fuzzy
698
  msgid ""
699
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
700
+ "Format</a> to use when displaying a pageview's time."
701
  msgstr ""
702
+ "<a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank"
703
+ "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
704
+ "vue."
705
 
706
+ #: ../admin/config/index.php:193
707
  #, fuzzy
708
+ msgid "Use Display Name"
709
+ msgstr "Voir Nom d'affichage"
710
+
711
+ #: ../admin/config/index.php:193
712
+ msgid ""
713
+ "By default, users are listed by their usernames. Use this option to "
714
+ "visualize their display names instead."
715
+ msgstr ""
716
+ "Par défaut, les utilisateurs sont affichés par Nom d'utilisateur. Utilisez "
717
+ "cette option pour basculer au Nom d'affichage."
718
+
719
+ #: ../admin/config/index.php:194
720
+ #, fuzzy
721
+ msgid "Use Titles"
722
+ msgstr "Afficher les titres"
723
+
724
+ #: ../admin/config/index.php:194
725
+ #, fuzzy
726
+ msgid ""
727
+ "Slimstat converts your permalinks into post, page and category titles. "
728
+ "Disable this feature if you need to see the URL in your reports."
729
+ msgstr ""
730
+ "WP SlimStat convertit vos permalinks en post et en titres de pages. "
731
+ "Désactivez cette fonction si vous souhaitez conserver l'URL dans de vos "
732
+ "rapports."
733
+
734
+ #: ../admin/config/index.php:195
735
+ msgid "Convert IP Addresses"
736
+ msgstr "Convertir les adresses IP"
737
+
738
+ #: ../admin/config/index.php:195
739
+ msgid "Display provider names instead of IP addresses."
740
+ msgstr "Afficher le nom du fournisseur d'accès au lieu de l'adresse IP."
741
 
742
  #: ../admin/config/index.php:197
743
+ msgid "Functionality"
744
+ msgstr "Fonctionnalité"
745
+
746
+ #: ../admin/config/index.php:198
747
+ msgid "SlimScroll"
748
+ msgstr "SlimScroll"
749
+
750
+ #: ../admin/config/index.php:198
751
  msgid ""
752
+ "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
753
+ "scrollbar."
754
+ msgstr ""
755
+ "Activer SlimScroll, une librairie jQuery élégante qui remplace la barre de "
756
+ "défilement par défaut des navigateurs."
757
+
758
+ #: ../admin/config/index.php:199
759
+ msgid "Expand Details"
760
+ msgstr "Développez les détails"
761
+
762
+ #: ../admin/config/index.php:199
763
+ msgid "Expand each row's details by default, insted of on mousehover."
764
+ msgstr ""
765
+ "Développe les détails de chaque ligne par défaut, plutôt que sur survol de "
766
+ "souris."
767
+
768
+ #: ../admin/config/index.php:200 ../admin/config/index.php:206
769
+ msgid "Rows to Display"
770
+ msgstr "Colonnes à afficher"
771
+
772
+ #: ../admin/config/index.php:200
773
+ msgid "Specify the number of items in each report."
774
+ msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
775
+
776
+ #: ../admin/config/index.php:201 ../admin/view/wp-slimstat-db.php:101
777
+ #, fuzzy
778
+ msgid "Max Results"
779
+ msgstr "Limiter les résultats"
780
+
781
+ #: ../admin/config/index.php:201
782
+ msgid ""
783
+ "Decide how many records should be retrieved from the database in total. "
784
+ "Depending on your server configuration, you may want to fine tune this value "
785
+ "to avoid exceeding your PHP memory limit."
786
+ msgstr ""
787
+
788
+ #: ../admin/config/index.php:202
789
+ msgid "IP Lookup"
790
+ msgstr "Recherche d'IP"
791
+
792
+ #: ../admin/config/index.php:202
793
+ msgid "Customize the Geolocation service to be used in the reports."
794
+ msgstr ""
795
+ "Personnaliser le service de Géolocalisation à utiliser dans les rapports."
796
+
797
+ #: ../admin/config/index.php:204
798
+ msgid "Activity Log"
799
+ msgstr "Statistiques de fréquentation"
800
+
801
+ #: ../admin/config/index.php:205
802
+ msgid "Live Stream"
803
+ msgstr "Flux en temps réel (Flux live)"
804
+
805
+ #: ../admin/config/index.php:205
806
+ msgid ""
807
+ "Enable the Live view, which refreshes the Activity Log every X seconds. "
808
+ "Enter <strong>0</strong> (number zero) to deactivate this feature."
809
+ msgstr ""
810
+ "Actualisez la vue 'Maintenant' toutes les X secondes. Entrer <strong>0</"
811
+ "strong> pour désactiver cette fonctionnalité."
812
+
813
+ #: ../admin/config/index.php:206
814
+ msgid "Specify the number of items in the Activity Log."
815
+ msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
816
+
817
+ #: ../admin/config/index.php:209
818
+ msgid "Custom CSS"
819
+ msgstr "Personnaliser le style CSS"
820
+
821
+ #: ../admin/config/index.php:209
822
+ #, fuzzy
823
+ msgid ""
824
+ "Paste here your custom stylesheet to personalize the way your reports look. "
825
+ "<a href='https://slimstat.freshdesk.com/support/solutions/"
826
+ "articles/5000528528-how-can-i-change-the-colors-associated-to-color-coded-"
827
+ "pageviews-known-user-known-visitors-search-e' target='_blank'>Check the FAQ</"
828
+ "a> for more information on how to use this setting."
829
  msgstr ""
830
+ "Collez ici votre feuille de style, afin de personnaliser la présentation de "
831
+ "vos rapports. <a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
832
+ "target='_blank'>Consultez les FAQs</a> pour plus d'informations sur la façon "
833
+ "d'utiliser cette fonctionnalité."
834
 
835
+ #: ../admin/config/index.php:210
836
+ #, fuzzy
837
+ msgid "Chart Colors"
838
+ msgstr "Contrôle du graphique"
839
 
840
+ #: ../admin/config/index.php:210
841
  msgid ""
842
+ "Customize the look and feel of your charts by assigning personalized colors "
843
+ "to each metric. List 4 hex colors separated by commas, strictly in the "
844
+ "following order: metric 1 previous, metric 2 previous, metric 1 current, "
845
+ "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
846
  msgstr ""
847
 
848
+ #: ../admin/config/index.php:211
849
+ msgid "Show User Agent"
850
+ msgstr "Voir User Agent"
851
 
852
+ #: ../admin/config/index.php:211
853
  msgid ""
854
+ "Choose if you want to see the browser name or a complete user agent string "
855
+ "when hovering on browser icons."
 
856
  msgstr ""
857
+ "Choisissez si vous voulez voir le nom du navigateur ou une chaîne complete "
858
+ "de user agent lorsque vous survolez les icônes du navigateur."
859
 
860
+ #: ../admin/config/index.php:212
861
+ msgid "Enable SOV"
862
+ msgstr "Activer SOV"
863
 
864
+ #: ../admin/config/index.php:212
865
+ msgid ""
866
+ "In linguistic typology, a subject-object-verb (SOV) language is one in which "
867
+ "the subject, object, and verb of a sentence appear in that order, like in "
868
+ "Japanese."
869
  msgstr ""
870
+ "En typologie linguistique, une langue en sujet-objet-verbe (SOV) est une "
871
+ "langue dans laquelle les sujet, objet et verbe d'une phrase apparaissent "
872
+ "dans cet ordre, comme en japonais."
873
 
874
+ #: ../admin/config/index.php:213
875
+ #, fuzzy
876
+ msgid "Social Analytics"
877
+ msgstr "Analyse du site"
878
 
879
+ #: ../admin/config/index.php:213
880
  msgid ""
881
+ "Thanks to a <a href='http://getsocial.io/enterprise' "
882
+ "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
883
+ "set of analytics for social media where you can identify top performing "
884
+ "posts. Track social sharing to understand which of your posts are generating "
885
+ "more engagement. When this option is enabled, Slimstat sends a list of all "
886
+ "your posts's URLs to their service for analysis once daily."
887
  msgstr ""
 
 
 
888
 
889
+ #: ../admin/config/index.php:218
890
+ msgid "Access Control"
891
+ msgstr ""
892
 
893
+ #: ../admin/config/index.php:221
894
  msgid "Restrict Authors"
895
  msgstr "Restriction Auteurs"
896
 
897
+ #: ../admin/config/index.php:221
898
  msgid ""
899
  "Enable this option if you want your authors to only see stats related to "
900
  "their own content."
902
  "Activez cette option si vous voulez que vos auteurs ne voient que les "
903
  "statistiques relatives à leur propre contenu."
904
 
905
+ #: ../admin/config/index.php:222 ../admin/config/index.php:226
906
  msgid "Capability"
907
  msgstr "Aptitude"
908
 
909
+ #: ../admin/config/index.php:222
910
  msgid ""
911
  "Specify the minimum <a href='http://codex.wordpress.org/"
912
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
922
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
923
  "Dans ce cas, la liste a la priorité sur la capacité."
924
 
925
+ #: ../admin/config/index.php:223 ../admin/config/index.php:227
926
  msgid "Whitelist"
927
  msgstr "Liste blanche"
928
 
929
+ #: ../admin/config/index.php:223
930
  msgid ""
931
  "List all the users who should have access to the reports, separated by "
932
  "commas. Administrators are implicitly allowed, so you don't need to list "
938
  "vide, <strong>tous vos utilisateurs</strong> sont autorisés à accéder. Les "
939
  "noms d'utilisateurs sont sensibles à la casse."
940
 
941
+ #: ../admin/config/index.php:225 ../admin/config/index.php:250
942
+ #: ../admin/wp-slimstat-admin.php:532 ../admin/wp-slimstat-admin.php:535
943
+ #: ../wp-slimstat.php:1803
944
  msgid "Settings"
945
  msgstr "Réglages"
946
 
947
+ #: ../admin/config/index.php:226
948
  msgid ""
949
  "Specify the minimum <a href='http://codex.wordpress.org/"
950
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
958
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
959
  "Dans ce cas, la liste a la priorité sur la capacité."
960
 
961
+ #: ../admin/config/index.php:227
962
  msgid ""
963
  "List all the users who can edit these options, separated by commas. Please "
964
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
970
  "inscrire! Les noms d'utilisateurs sont sensibles à la casse. (Majuscules-"
971
  "minuscules)"
972
 
973
+ #: ../admin/config/index.php:232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
974
  msgid "Maintenance"
975
  msgstr "Maintenance"
976
 
977
+ #: ../admin/config/index.php:237 ../admin/view/addons.php:32
978
+ #: ../admin/wp-slimstat-admin.php:490 ../admin/wp-slimstat-admin.php:505
979
+ #: ../wp-slimstat.php:1800
980
+ msgid "Add-ons"
981
+ msgstr "Add-ons"
982
+
983
  #: ../admin/config/maintenance.php:16
984
  msgid ""
985
  "Congrats! Slimstat is now optimized for <a href=\"http://www.youtube.com/"
988
  "Félicitations ! WP SlimStat est à présent optimisé pour <a href=\"http://www."
989
  "youtube.com/watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
990
 
991
+ #: ../admin/config/maintenance.php:27
992
  #, fuzzy
993
  msgid "Indexing has been disabled. Enjoy the extra database space!"
994
  msgstr ""
995
  "L'indexation a bien été désactivée. Profitez bien de l'espace supplémentaire "
996
  "que vous venez de gagner !"
997
 
998
+ #: ../admin/config/maintenance.php:43
999
  msgid "records deleted from your database."
1000
  msgstr "enregistrements supprimés de votre base de données."
1001
 
1002
+ #: ../admin/config/maintenance.php:48
1003
  msgid "The geolocation database has been uninstalled from your server."
1004
  msgstr ""
1005
 
1006
+ #: ../admin/config/maintenance.php:58
1007
  msgid "The geolocation database has been installed on your server."
1008
  msgstr ""
1009
 
1010
+ #: ../admin/config/maintenance.php:166
1011
  msgid ""
1012
  "Your data was successfully imported. You may now drop the old tables: "
1013
  "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
1016
  "delete the old tables."
1017
  msgstr ""
1018
 
1019
+ #: ../admin/config/maintenance.php:175
1020
  msgid "Your reports were successfully restored to their default arrangement."
1021
  msgstr ""
1022
  "Vos rapports ont été réinitialisés avec succès dans leur configuration par "
1023
  "défaut."
1024
 
1025
+ #: ../admin/config/maintenance.php:185
1026
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1027
  msgstr "Vos tables WP SlimStat ont été converties en InnoDB avec succès."
1028
 
1029
+ #: ../admin/config/maintenance.php:191
1030
  #, fuzzy
1031
  msgid "All the archived records were successfully deleted."
1032
  msgstr "Tous les enregistrements ont bien été supprimés"
1033
 
1034
+ #: ../admin/config/maintenance.php:199
1035
  msgid "All the records were successfully deleted."
1036
  msgstr "Tous les enregistrements ont bien été supprimés"
1037
 
1038
+ #: ../admin/config/maintenance.php:221
1039
  msgid "Debugging"
1040
  msgstr ""
1041
 
1042
+ #: ../admin/config/maintenance.php:224
1043
+ #, fuzzy
1044
+ msgid "Tracker Status"
1045
+ msgstr "Traçage"
1046
 
1047
+ #: ../admin/config/maintenance.php:226
1048
  #, fuzzy
1049
  msgid "recorded on"
1050
  msgstr "Enregistrements"
1051
 
1052
+ #: ../admin/config/maintenance.php:226
1053
  msgid "No Errors so far"
1054
  msgstr ""
1055
 
1056
+ #: ../admin/config/maintenance.php:227
1057
  msgid ""
1058
  "The information here above is useful to troubleshoot issues with the "
1059
+ "tracker. It includes both <strong>errors</strong>, which are returned when "
1060
+ "the tracker could not record a pageview and are indicative of some kind of "
1061
+ "malfunction, and <strong>notices</strong>, which explain the reason why the "
1062
+ "most recent pageview was not recorded, based on your settings (filters, "
1063
+ "blackslists, etc). Please include this code when sending a support request."
1064
  msgstr ""
1065
 
1066
+ #: ../admin/config/maintenance.php:233
1067
+ #, fuzzy
1068
+ msgid "Enable SQL Debug"
1069
+ msgstr "Activer le mode espion"
1070
+
1071
+ #: ../admin/config/maintenance.php:236
1072
+ msgid ""
1073
+ "Display the SQL code used to retrieve the data from the database. Useful to "
1074
+ "troubleshoot issues with data consistency or missing pageviews."
1075
+ msgstr ""
1076
+
1077
+ #: ../admin/config/maintenance.php:240
1078
+ msgid "Disable SQL Debug"
1079
+ msgstr ""
1080
+
1081
+ #: ../admin/config/maintenance.php:243
1082
+ msgid "Deactivate the SQL output on top of each report."
1083
+ msgstr ""
1084
+
1085
+ #: ../admin/config/maintenance.php:248
1086
  msgid "Layout"
1087
  msgstr ""
1088
 
1089
+ #: ../admin/config/maintenance.php:251
1090
  msgid ""
1091
  "Are you sure you want to restore the default arrangement of your reports?"
1092
  msgstr "Etes-vous sûr de vouloir réinitialiser vos rapports ?"
1093
 
1094
+ #: ../admin/config/maintenance.php:251
1095
  msgid "No Panic Button"
1096
  msgstr "Pas de panique !"
1097
 
1098
+ #: ../admin/config/maintenance.php:253
1099
  #, fuzzy
1100
  msgid ""
1101
  "Reset the default arrangement of your reports. Helpful when, for some "
1103
  "in your views."
1104
  msgstr "Réinitialiser la mise en page par défaut de vos rapports."
1105
 
1106
+ #: ../admin/config/maintenance.php:257
1107
  msgid "Data Maintenance"
1108
  msgstr "Maintenance des données"
1109
 
1110
+ #: ../admin/config/maintenance.php:260
1111
  msgid "Delete pageviews where"
1112
  msgstr "Supprimer les pages où"
1113
 
1114
+ #: ../admin/config/maintenance.php:274 ../admin/view/index.php:16
1115
  msgid "equals"
1116
  msgstr "est égal à"
1117
 
1118
+ #: ../admin/config/maintenance.php:275 ../admin/view/index.php:17
1119
  msgid "is not equal to"
1120
  msgstr "n'est pas égal à"
1121
 
1122
+ #: ../admin/config/maintenance.php:276 ../admin/view/index.php:18
1123
  msgid "contains"
1124
  msgstr "contient"
1125
 
1126
+ #: ../admin/config/maintenance.php:277 ../admin/view/index.php:19
1127
  msgid "is included in"
1128
  msgstr ""
1129
 
1130
+ #: ../admin/config/maintenance.php:278 ../admin/view/index.php:20
1131
  msgid "does not contain"
1132
  msgstr "ne contient pas"
1133
 
1134
+ #: ../admin/config/maintenance.php:279 ../admin/view/index.php:21
1135
  msgid "starts with"
1136
  msgstr "commence par"
1137
 
1138
+ #: ../admin/config/maintenance.php:280 ../admin/view/index.php:22
1139
  msgid "ends with"
1140
  msgstr "finit par"
1141
 
1142
+ #: ../admin/config/maintenance.php:281 ../admin/view/index.php:23
1143
  msgid "sounds like"
1144
  msgstr "ressemble à"
1145
 
1146
+ #: ../admin/config/maintenance.php:282 ../admin/view/index.php:24
1147
  msgid "is greater than"
1148
  msgstr "est plus grand que"
1149
 
1150
+ #: ../admin/config/maintenance.php:283 ../admin/view/index.php:25
1151
  msgid "is less than"
1152
  msgstr "est plus petit que"
1153
 
1154
+ #: ../admin/config/maintenance.php:284 ../admin/view/index.php:27
1155
  msgid "matches"
1156
  msgstr "correspond à"
1157
 
1158
+ #: ../admin/config/maintenance.php:285 ../admin/view/index.php:28
1159
  msgid "does not match"
1160
  msgstr "ne correspond pas à"
1161
 
1162
+ #: ../admin/config/maintenance.php:286 ../admin/view/index.php:29
1163
  msgid "is empty"
1164
  msgstr "est vide"
1165
 
1166
+ #: ../admin/config/maintenance.php:287 ../admin/view/index.php:30
1167
  msgid "is not empty"
1168
  msgstr "n'est pas vide"
1169
 
1170
+ #: ../admin/config/maintenance.php:290 ../admin/view/index.php:42
1171
  #: ../admin/view/index.php:105
1172
  msgid "Apply"
1173
  msgstr "Appliquer"
1174
 
1175
+ #: ../admin/config/maintenance.php:291
1176
  msgid ""
1177
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1178
  msgstr ""
1179
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT ces enregistrement de "
1180
  "votre base de données ?"
1181
 
1182
+ #: ../admin/config/maintenance.php:298
1183
  msgid ""
1184
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1185
  "database?"
1187
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1188
  "votre base de données ?"
1189
 
1190
+ #: ../admin/config/maintenance.php:298
1191
  #, fuzzy
1192
  msgid "Delete All Records"
1193
  msgstr "Supprimer toutes les pages vues"
1194
 
1195
+ #: ../admin/config/maintenance.php:301
1196
  #, fuzzy
1197
  msgid ""
1198
  "Erase all the information collected so far by Slimstat, including the "
1201
  "Effacer les informations collecter par WP Slimstat jusqu'à present. Cette "
1202
  "opération <strong>ne réinitialise pas </strong>vos paramétrages."
1203
 
1204
+ #: ../admin/config/maintenance.php:307
1205
  #, fuzzy
1206
  msgid ""
1207
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1210
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1211
  "votre base de données ?"
1212
 
1213
+ #: ../admin/config/maintenance.php:307
1214
  #, fuzzy
1215
  msgid "Delete Archive"
1216
  msgstr "Filtrer les pages vues pour que"
1217
 
1218
+ #: ../admin/config/maintenance.php:310
1219
  msgid "Erase all the archived records. This operation cannot be undone."
1220
  msgstr ""
1221
 
1222
+ #: ../admin/config/maintenance.php:316
1223
  msgid "Improve Performance"
1224
  msgstr "Improve la performance"
1225
 
1226
+ #: ../admin/config/maintenance.php:320
1227
  msgid ""
1228
  "Please note that you will need about 30% more DB space to store the extra "
1229
  "information required."
1231
  "Vous aurez besoin d'environ 30% de plus d'espace de base de données pour "
1232
  "stocker les informations supplémentaires nécessaires."
1233
 
1234
+ #: ../admin/config/maintenance.php:324
1235
  msgid "Save DB Space"
1236
  msgstr "Gagner de l'espace sur la taille de votre base de données"
1237
 
1238
+ #: ../admin/config/maintenance.php:327
1239
  msgid ""
1240
  "Please note that by removing table indexes, Slimstat's performance will be "
1241
  "affected."
1243
  "Merci de noter qu'en supprimant les indexes, les performances de WP "
1244
  "SlimStats seront impactées."
1245
 
1246
+ #: ../admin/config/maintenance.php:334
1247
  msgid ""
1248
  "Hold on tight, we are about to import all your old data. Are you sure you "
1249
  "want to proceed?"
1250
  msgstr ""
1251
 
1252
+ #: ../admin/config/maintenance.php:334
1253
  #, fuzzy
1254
  msgid "Import old data"
1255
  msgstr "Import-Export"
1256
 
1257
+ #: ../admin/config/maintenance.php:337
1258
  msgid ""
1259
  "Import all the records from the old table structure. No data will be deleted "
1260
  "from your database."
1261
  msgstr ""
1262
 
1263
+ #: ../admin/config/maintenance.php:341
1264
  msgid "MaxMind IP to Country"
1265
  msgstr ""
1266
 
1267
+ #: ../admin/config/maintenance.php:347
1268
  msgid ""
1269
  "Do you want to download and install the geolocation database from MaxMind's "
1270
  "server?"
1271
  msgstr ""
1272
 
1273
+ #: ../admin/config/maintenance.php:347
1274
  msgid "Install GeoLite DB"
1275
  msgstr ""
1276
 
1277
+ #: ../admin/config/maintenance.php:350
1278
  msgid "Do you want to uninstall the geolocation database?"
1279
  msgstr ""
1280
 
1281
+ #: ../admin/config/maintenance.php:350
1282
  msgid "Uninstall GeoLite DB"
1283
  msgstr ""
1284
 
1285
+ #: ../admin/config/maintenance.php:354
1286
  msgid ""
1287
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1288
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
1292
  "enable this functionality."
1293
  msgstr ""
1294
 
1295
+ #: ../admin/config/maintenance.php:359
1296
+ msgid "Import and Export"
1297
+ msgstr "Import-Export"
1298
+
1299
+ #: ../admin/config/maintenance.php:363
1300
+ #, fuzzy
1301
+ msgid ""
1302
+ "Here below you can find the current configuration string for Slimstat. You "
1303
+ "can update your settings by pasting a new string inside the text area and "
1304
+ "clicking the Import button."
1305
+ msgstr ""
1306
+ "Ci-après vous trouverez la configuration actuelle de la ligne de "
1307
+ "configuration. Vous pouvez mettre à jour vos réglages en collant une "
1308
+ "nouvelle ligne ci-après et en cliquant sur Import."
1309
+
1310
+ #: ../admin/config/maintenance.php:368
1311
+ msgid "Import"
1312
+ msgstr "Importer"
1313
+
1314
+ #: ../admin/config/maintenance.php:369
1315
+ msgid "Are you sure you want to OVERWRITE your current settings?"
1316
+ msgstr "Etes-vous sûr que vous voulez réinitialiser vos onglets?"
1317
+
1318
+ #: ../admin/config/maintenance.php:374
1319
+ msgid "Database Information"
1320
+ msgstr "Informations de base de données"
1321
+
1322
+ #: ../admin/config/maintenance.php:377
1323
+ msgid "Engine"
1324
+ msgstr "Moteur"
1325
+
1326
+ #: ../admin/config/maintenance.php:381
1327
+ msgid "switch to InnoDB"
1328
+ msgstr "changer pour InnoDB"
1329
+
1330
+ #: ../admin/config/maintenance.php:392
1331
+ msgid "records"
1332
+ msgstr "Enregistrements"
1333
+
1334
+ #: ../admin/view/addons.php:15
1335
+ msgid ""
1336
+ "There was an error retrieving the add-ons list from the server. Please try "
1337
+ "again later. Error Message:"
1338
+ msgstr ""
1339
+ "La liste des add-ons n'a pas pu être récupérée du serveur. Veuillez "
1340
+ "réessayer plus tard. Message d'erreur :"
1341
+
1342
+ #: ../admin/view/addons.php:25
1343
+ msgid ""
1344
+ "There was an error decoding the add-ons list from the server. Please try "
1345
+ "again later."
1346
+ msgstr ""
1347
+ "La liste des add-ons n'a pas pu être récupérée du serveur. Veuillez "
1348
+ "réessayer plus tard."
1349
+
1350
+ #: ../admin/view/addons.php:33
1351
+ msgid ""
1352
+ "Add-ons extend the functionality of Slimstat in many interesting ways. We "
1353
+ "offer both free and premium (paid) extensions. Each add-on can be installed "
1354
+ "as a separate plugin, which will receive regular updates via the WordPress "
1355
+ "Plugins panel. In order to be notified when a new version of a premium add-"
1356
+ "on is available, please enter the <strong>license key</strong> you received "
1357
+ "when you purchased it."
1358
+ msgstr ""
1359
+ "Les Add-ons rajoutent de nombreuses fonctionnalités intéressantes à WP "
1360
+ "Slimstat. Nous proposons une version gratuite et une version premium "
1361
+ "(payante). Chaque Add-on peut être installé séparément comme plugin et être "
1362
+ "mis à jour régulièrement via le panneau de gestion des plugins Wordpress. "
1363
+ "Afin d'être averti d'une nouvelle version premium, veuillez entrer le "
1364
+ "<strong>code de licence<strong> que vous avez reçu à l'achat."
1365
 
1366
+ #: ../admin/view/addons.php:37
1367
+ #, php-format
1368
  msgid ""
1369
+ "This list is refreshed once daily: <a href=\"%s&amp;force_refresh=true"
1370
+ "\">click here</a> to clear the cache."
 
1371
  msgstr ""
 
 
 
1372
 
1373
+ #: ../admin/view/addons.php:46
1374
+ msgid "Add-on"
1375
+ msgstr "Add-on"
1376
 
1377
+ #: ../admin/view/addons.php:46
1378
+ msgid "Description"
1379
+ msgstr "Description"
1380
 
1381
+ #: ../admin/view/addons.php:57
1382
+ #, fuzzy
1383
+ msgid "Repo Version"
1384
+ msgstr "la version CSS"
1385
 
1386
+ #: ../admin/view/addons.php:57
1387
+ #, fuzzy
1388
+ msgid "Version"
1389
+ msgstr "la version CSS"
1390
 
1391
+ #: ../admin/view/addons.php:69
1392
+ #, fuzzy
1393
+ msgid "Your Version:"
1394
+ msgstr "la version CSS"
1395
 
1396
+ #: ../admin/view/addons.php:72
1397
+ msgid "Installed and Active"
1398
+ msgstr ""
1399
 
1400
  #: ../admin/view/index.php:26
1401
  msgid "is between (x,y)"
1405
  msgid "Load"
1406
  msgstr ""
1407
 
1408
+ #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1397
1409
  msgid "Today"
1410
  msgstr "Aujourd'hui"
1411
 
1412
+ #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1400
1413
  msgid "Yesterday"
1414
  msgstr "Hier"
1415
 
1474
  "country of origin."
1475
  msgstr ""
1476
 
1477
+ #: ../admin/view/layout.php:40
1478
+ msgid "Customize and organize your reports"
1479
+ msgstr ""
1480
+
1481
+ #: ../admin/view/layout.php:41
1482
+ msgid ""
1483
+ "Drag and drop report placeholders from one container to another, to "
1484
+ "customize the information you want to see right away when you open Slimstat. "
1485
+ "Place two or more charts on the same view, clone reports or move them to the "
1486
+ "Inactive Reports container for improved performance. It is your website, and "
1487
+ "you know how metrics should be combined to get a clear picture of the "
1488
+ "traffic it generates.<br/><br/><strong>Note</strong>: if a placeholder is "
1489
+ "greyed out, it means that the corresponding report is currently hidden "
1490
+ "(Screen Options tab)."
1491
+ msgstr ""
1492
+
1493
+ #: ../admin/view/layout.php:53
1494
+ msgid "Clone"
1495
+ msgstr ""
1496
+
1497
+ #: ../admin/view/layout.php:57
1498
+ #, fuzzy
1499
+ msgid "Delete"
1500
+ msgstr "Filtrer les pages vues pour que"
1501
+
1502
  #: ../admin/view/right-now.php:12
1503
  msgid "Human"
1504
  msgstr "Humain"
1515
  msgid "Syndication Reader"
1516
  msgstr "Lecteur de Flux (Syndication)"
1517
 
1518
+ #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1031
1519
+ #: ../admin/view/wp-slimstat-reports.php:1706
1520
  msgid "No data to display"
1521
  msgstr "Aucune donnée à afficher"
1522
 
1525
  msgstr "Date/Heure"
1526
 
1527
  # Unknown
1528
+ #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1082
1529
+ #: ../admin/view/wp-slimstat-reports.php:1820 ../wp-slimstat.php:1409
1530
  msgid "c-"
1531
  msgstr "Inconnu"
1532
 
1533
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1534
+ #: ../admin/wp-slimstat-admin.php:846 ../admin/wp-slimstat-admin.php:886
1535
  msgid "Originating IP"
1536
  msgstr "IP d'origine"
1537
 
1538
+ #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1179
1539
+ #: ../admin/view/wp-slimstat-reports.php:1183
1540
+ msgid "Open this URL in a new window"
1541
+ msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1542
+
1543
+ #: ../admin/view/right-now.php:151
1544
+ msgid "Local search results page"
1545
+ msgstr "Page de résultat d'une recherche locale"
1546
+
1547
+ #: ../admin/view/right-now.php:156 ../admin/view/wp-slimstat-db.php:42
1548
+ #: ../admin/view/wp-slimstat-reports.php:257
1549
+ #: ../admin/view/wp-slimstat-reports.php:266
1550
+ #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
1551
+ msgid "Search Terms"
1552
+ msgstr "Termes de recherche"
1553
+
1554
+ #: ../admin/view/right-now.php:162
1555
  msgid "Server Latency and Page Speed in milliseconds"
1556
  msgstr "Latence du serveur et Rapidité de la page en millisecondes"
1557
 
1558
+ #: ../admin/view/right-now.php:162
1559
  msgid "SL"
1560
  msgstr "SL"
1561
 
1562
+ #: ../admin/view/right-now.php:162
1563
  msgid "PS"
1564
  msgstr "PS"
1565
 
1566
+ #: ../admin/view/right-now.php:169
1567
  #, fuzzy
1568
  msgid "Time spent on this page in seconds"
1569
  msgstr "Ouvrir cette page dans une nouvelle fenêtre"
1570
 
1571
+ #: ../admin/view/right-now.php:179
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1572
  msgid "Open this referrer in a new window"
1573
  msgstr "Ouvrir ce référent dans une nouvelle fenêtre"
1574
 
1575
+ #: ../admin/view/right-now.php:180
1576
  msgid "Open this outbound link in a new window"
1577
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1578
 
1579
+ #: ../admin/view/right-now.php:181
1580
  msgid "Content Type"
1581
  msgstr "Type de contenu"
1582
 
1583
+ #: ../admin/view/right-now.php:184
1584
  #, fuzzy
1585
  msgid "Delete this pageview"
1586
  msgstr "Filtrer les pages vues pour que"
1587
 
1588
+ #: ../admin/view/right-now.php:195
1589
+ #, fuzzy
1590
+ msgid "User Logged In"
1591
+ msgstr "User Agent"
1592
+
1593
+ #: ../admin/view/right-now.php:205
1594
+ #, fuzzy
1595
+ msgid "User Logged Out"
1596
+ msgstr "User Agent"
1597
+
1598
+ #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:862
1599
  msgid "Browser"
1600
  msgstr "Navigateur Web"
1601
 
1602
+ #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:863
1603
  msgid "Country Code"
1604
  msgstr "Code du pays"
1605
 
1607
  msgid "IP Address"
1608
  msgstr "Adresse IP"
1609
 
1610
+ #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:866
1611
  msgid "Language Code"
1612
  msgstr "Code langue"
1613
 
1614
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1615
+ #: ../admin/wp-slimstat-admin.php:867
1616
  msgid "Operating System"
1617
  msgstr "Système d'exploitation (OS)"
1618
 
1619
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1620
+ #: ../admin/wp-slimstat-admin.php:868
1621
  msgid "Permalink"
1622
  msgstr "Permalien"
1623
 
1624
+ #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:869
1625
  msgid "Referer"
1626
  msgstr "Référent"
1627
 
1628
+ #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:870
1629
  msgid "Visitor's Name"
1630
  msgstr "le nom des visiteurs"
1631
 
1632
+ #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:852
1633
  msgid "Outbound Link"
1634
  msgstr "Lien sortant"
1635
 
1642
  msgstr "-- Filtres Avancés --"
1643
 
1644
  #: ../admin/view/wp-slimstat-db.php:52
1645
+ #: ../admin/view/wp-slimstat-reports.php:373
1646
  msgid "Browser Capabilities"
1647
  msgstr "Capacités des Navigateurs"
1648
 
1649
+ #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:881
1650
  msgid "Browser Version"
1651
  msgstr "Version de navigateur"
1652
 
1653
+ #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:882
1654
  msgid "Browser Type"
1655
  msgstr "le type de navigateur Web"
1656
 
1657
+ #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:851
1658
  msgid "User Agent"
1659
  msgstr "User Agent"
1660
 
1667
  msgid "Server Latency"
1668
  msgstr "Latence du serveur"
1669
 
1670
+ #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:884
1671
  msgid "Post Author"
1672
  msgstr "l'auteur de l'article"
1673
 
1674
+ #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:885
1675
  msgid "Post Category ID"
1676
  msgstr "ID de la catégorie de l'article"
1677
 
1678
+ #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:887
1679
  msgid "Resource Content Type"
1680
  msgstr "le type de source de contenu"
1681
 
1696
  msgid "Viewport Size"
1697
  msgstr ""
1698
 
1699
+ #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:889
1700
  msgid "Visit ID"
1701
  msgstr "Visites ID"
1702
 
1742
  msgstr "Contenus récents"
1743
 
1744
  #: ../admin/view/wp-slimstat-db.php:96
1745
+ #: ../admin/view/wp-slimstat-reports.php:1720
1746
  msgid "Type"
1747
  msgstr ""
1748
 
1765
  msgid "Offset"
1766
  msgstr ""
1767
 
1768
+ #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:483
1769
+ #: ../wp-slimstat.php:1793
1770
  msgid "Access Log"
1771
  msgstr ""
1772
 
1773
+ #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:484
1774
+ #: ../admin/wp-slimstat-admin.php:499 ../wp-slimstat.php:1794
1775
  msgid "Overview"
1776
  msgstr "Vue générale"
1777
 
1778
+ #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:485
1779
+ #: ../admin/wp-slimstat-admin.php:500 ../wp-slimstat.php:1795
1780
  msgid "Audience"
1781
  msgstr "Audience"
1782
 
1783
+ #: ../admin/view/wp-slimstat-reports.php:24 ../admin/wp-slimstat-admin.php:486
1784
+ #: ../admin/wp-slimstat-admin.php:501 ../wp-slimstat.php:1796
1785
  msgid "Site Analysis"
1786
  msgstr "Analyse du site"
1787
 
1788
+ #: ../admin/view/wp-slimstat-reports.php:25
1789
+ #: ../admin/view/wp-slimstat-reports.php:516
1790
+ #: ../admin/wp-slimstat-admin.php:487 ../admin/wp-slimstat-admin.php:502
1791
+ #: ../wp-slimstat.php:1797
1792
  msgid "Traffic Sources"
1793
  msgstr "Sources de trafic"
1794
 
1795
+ #: ../admin/view/wp-slimstat-reports.php:26
1796
+ #: ../admin/view/wp-slimstat-reports.php:1364
1797
+ #: ../admin/wp-slimstat-admin.php:488 ../admin/wp-slimstat-admin.php:503
1798
+ #: ../wp-slimstat.php:1798
1799
+ #, fuzzy
1800
+ msgid "Geolocation"
1801
+ msgstr "Ordre de tri"
1802
+
1803
+ #: ../admin/view/wp-slimstat-reports.php:27
1804
+ #, fuzzy
1805
+ msgid "WordPress Dashboard"
1806
+ msgstr "Intégration WordPress"
1807
+
1808
+ #: ../admin/view/wp-slimstat-reports.php:28
1809
+ #, fuzzy
1810
+ msgid "Inactive Reports"
1811
+ msgstr "Réinitialiser les rapports"
1812
 
1813
+ #: ../admin/view/wp-slimstat-reports.php:77
1814
  msgid "Chart controls"
1815
  msgstr "Contrôle du graphique"
1816
 
1817
+ #: ../admin/view/wp-slimstat-reports.php:77
1818
  msgid "Use your mouse wheel to zoom in and out"
1819
  msgstr "Utilisez la molette de votre souris pour zoomer et dézoomer"
1820
 
1821
+ #: ../admin/view/wp-slimstat-reports.php:77
1822
  msgid "While zooming in, drag the chart to move to a different area"
1823
  msgstr ""
1824
  "Alors que le zoom avant est activé, faites glisser la carte pour passer à "
1825
  "une autre zone"
1826
 
1827
+ #: ../admin/view/wp-slimstat-reports.php:80
1828
+ #, fuzzy
1829
+ msgid "Social Sharing Analytics"
1830
+ msgstr "Analyse du site"
 
 
 
 
 
1831
 
1832
+ #: ../admin/view/wp-slimstat-reports.php:87
1833
  #, fuzzy
1834
  msgid "Visitors Activity"
1835
  msgstr "Statistiques de fréquentation"
1836
 
1837
+ #: ../admin/view/wp-slimstat-reports.php:96
1838
  msgid "Color codes"
1839
  msgstr "Codes couleur"
1840
 
1841
+ #: ../admin/view/wp-slimstat-reports.php:96
1842
  msgid "From search result page"
1843
  msgstr "Depuis un moteur de recherche"
1844
 
1845
+ #: ../admin/view/wp-slimstat-reports.php:96 ../admin/wp-slimstat-admin.php:844
 
1846
  msgid "Known Visitor"
1847
  msgstr "Visiteurs connus"
1848
 
1849
+ #: ../admin/view/wp-slimstat-reports.php:96
1850
  msgid "Known Users"
1851
  msgstr "Utilisateurs connus"
1852
 
1853
+ #: ../admin/view/wp-slimstat-reports.php:96
1854
  msgid "Other Humans"
1855
  msgstr "Autres humains"
1856
 
1857
+ #: ../admin/view/wp-slimstat-reports.php:96
1858
  msgid "Bot or Crawler"
1859
  msgstr "Robot ou Crawler"
1860
 
1861
+ #: ../admin/view/wp-slimstat-reports.php:118
1862
  msgid "About Slimstat"
1863
  msgstr "À propos de WP-SlimStat"
1864
 
1865
+ #: ../admin/view/wp-slimstat-reports.php:127
1866
  #, fuzzy
1867
  msgid "Traffic at a Glance"
1868
  msgstr "Brièvement"
1869
 
1870
+ #: ../admin/view/wp-slimstat-reports.php:137
1871
  msgid "Currently Online"
1872
  msgstr "Actuellement en ligne"
1873
 
1874
+ #: ../admin/view/wp-slimstat-reports.php:150
1875
  msgid "Recent Search Terms"
1876
  msgstr "Derniers Termes de Recherches"
1877
 
1878
+ #: ../admin/view/wp-slimstat-reports.php:160
1879
  msgid "Keywords used by your visitors to find your website on a search engine."
1880
  msgstr ""
1881
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
1882
  "de recherche."
1883
 
1884
+ #: ../admin/view/wp-slimstat-reports.php:163
1885
+ #, fuzzy
1886
+ msgid "Top Web Pages"
1887
  msgstr "Top Pages Vues"
1888
 
1889
+ #: ../admin/view/wp-slimstat-reports.php:174
1890
  msgid ""
1891
+ "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1892
+ "site, including posts, products, categories, and so on. You can set the "
1893
+ "corresponding filter where Resource Content Type equals cpt:"
1894
+ "you_cpt_slug_here to get top web pages for a specific custom post type you "
1895
+ "have."
1896
  msgstr ""
1897
 
1898
+ #: ../admin/view/wp-slimstat-reports.php:177
1899
  msgid "Top Traffic Sources"
1900
  msgstr "Top Sources de Trafic"
1901
 
1902
+ #: ../admin/view/wp-slimstat-reports.php:189
1903
  msgid "Top Known Visitors"
1904
  msgstr "Top Visiteurs Connus"
1905
 
1906
+ #: ../admin/view/wp-slimstat-reports.php:200
1907
  msgid "Top Search Terms"
1908
  msgstr "Top Termes de Recherche"
1909
 
1910
+ #: ../admin/view/wp-slimstat-reports.php:211
1911
  msgid "Top Countries"
1912
  msgstr "Pays les plus récurrents"
1913
 
1914
+ #: ../admin/view/wp-slimstat-reports.php:220
1915
  msgid ""
1916
  "You can configure Slimstat to ignore a specific Country by setting the "
1917
  "corresponding filter under Settings > Slimstat > Filters."
1919
  "Vous pouvez configurer WP SlimStat afin d'ignorer un pays spécifique en "
1920
  "définissant le filtre correspondant sous SlimStat> Paramètres> Filtres."
1921
 
1922
+ #: ../admin/view/wp-slimstat-reports.php:223
1923
  msgid "Rankings"
1924
  msgstr "Classements"
1925
 
1926
+ #: ../admin/view/wp-slimstat-reports.php:227
1927
  msgid ""
1928
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1929
  "measures your site's rankings. Values are updated every 12 hours. Filters "
1934
  "12 heures. Les filtres indiqués ci-dessus ne sont pas pris en compte dans ce "
1935
  "rapport."
1936
 
1937
+ #: ../admin/view/wp-slimstat-reports.php:230
1938
  msgid "Top Language Families"
1939
  msgstr "Top Langues"
1940
 
1941
+ #: ../admin/view/wp-slimstat-reports.php:243
1942
  #, fuzzy
1943
  msgid "Users Currently Online"
1944
  msgstr "Actuellement en ligne"
1945
 
1946
+ #: ../admin/view/wp-slimstat-reports.php:254
1947
  msgid ""
1948
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1949
  "Slimstat leverages this information to identify returning visitors. Please "
1953
  "attribue un cookie. WP SlimStat exploite ces informations pour identifier "
1954
  "les visiteurs qui reviennent, y compris les utilisateurs enregistrés."
1955
 
1956
+ #: ../admin/view/wp-slimstat-reports.php:267
1957
+ #, fuzzy
1958
+ msgid "Unique Terms"
1959
+ msgstr "IPs uniques"
1960
+
1961
+ #: ../admin/view/wp-slimstat-reports.php:276
1962
  msgid "Human Visits"
1963
  msgstr "Visiteurs humains"
1964
 
1965
+ #: ../admin/view/wp-slimstat-reports.php:285
1966
+ #: ../admin/view/wp-slimstat-reports.php:1431
1967
+ msgid "Visits"
1968
+ msgstr "Visites"
1969
+
1970
+ #: ../admin/view/wp-slimstat-reports.php:295
1971
  msgid "Audience Overview"
1972
  msgstr "Vue générale"
1973
 
1974
+ #: ../admin/view/wp-slimstat-reports.php:302
1975
  msgid ""
1976
  "Where not otherwise specified, the metrics in this report are referred to "
1977
  "human visitors."
1978
  msgstr ""
1979
 
1980
+ #: ../admin/view/wp-slimstat-reports.php:305
1981
  msgid "Top Languages"
1982
  msgstr "Top Langues"
1983
 
1984
+ #: ../admin/view/wp-slimstat-reports.php:316
1985
  msgid "Top Browsers"
1986
  msgstr "Principaux navigateurs"
1987
 
1988
+ #: ../admin/view/wp-slimstat-reports.php:327
1989
  msgid "Top Service Providers"
1990
  msgstr "Top Fournisseur d'Accès"
1991
 
1992
+ #: ../admin/view/wp-slimstat-reports.php:336
1993
+ #: ../admin/view/wp-slimstat-reports.php:348
1994
  msgid ""
1995
  "Internet Service Provider: a company which provides other companies or "
1996
  "individuals with access to the Internet. Your DSL or cable internet service "
2003
  "spécifiques en définissant le filtre correspondant sous SlimStat> Réglages> "
2004
  "Filtres."
2005
 
2006
+ #: ../admin/view/wp-slimstat-reports.php:339
2007
  msgid "Top Operating Systems"
2008
  msgstr "Top Systèmes d'Exploitation"
2009
 
2010
+ #: ../admin/view/wp-slimstat-reports.php:351
2011
  msgid "Top Screen Resolutions"
2012
  msgstr "Top Résolutions d'écran"
2013
 
2014
+ #: ../admin/view/wp-slimstat-reports.php:362
2015
  #, fuzzy
2016
  msgid "Top Viewport Sizes"
2017
  msgstr "Top Catégories"
2018
 
2019
+ #: ../admin/view/wp-slimstat-reports.php:382
2020
  msgid "Visit Duration"
2021
  msgstr "Durée des Visites"
2022
 
2023
+ #: ../admin/view/wp-slimstat-reports.php:389
2024
  #, fuzzy
2025
  msgid ""
2026
  "All values represent the percentages of pageviews within the corresponding "
2029
  "Carte du monde - Les valeurs représentent le pourcentage des accès provenant "
2030
  "de ce pays"
2031
 
2032
+ #: ../admin/view/wp-slimstat-reports.php:392
2033
  msgid "Recent Countries"
2034
  msgstr "Derniers Pays"
2035
 
2036
+ #: ../admin/view/wp-slimstat-reports.php:403
2037
  #, fuzzy
2038
  msgid "Recent Viewport Sizes"
2039
  msgstr "Dernières Catégories"
2040
 
2041
+ #: ../admin/view/wp-slimstat-reports.php:414
2042
  msgid "Recent Operating Systems"
2043
  msgstr "Derniers Systèmes d'Exploitation"
2044
 
2045
+ #: ../admin/view/wp-slimstat-reports.php:425
2046
  msgid "Recent Browsers"
2047
  msgstr "Navigateurs récents"
2048
 
2049
+ #: ../admin/view/wp-slimstat-reports.php:436
2050
  msgid "Recent Languages"
2051
  msgstr "Dernier Language"
2052
 
2053
+ #: ../admin/view/wp-slimstat-reports.php:447
2054
  msgid "Top Browser Families"
2055
  msgstr "Principales familles de navigateurs"
2056
 
2057
+ #: ../admin/view/wp-slimstat-reports.php:456
2058
  msgid ""
2059
  "This report shows you what user agent families (no version considered) are "
2060
  "popular among your visitors."
2062
  "Ce rapport affiche quelles familles d'user agent (sans prise en compte de "
2063
  "version) sont populaires chez vos visiteurs."
2064
 
2065
+ #: ../admin/view/wp-slimstat-reports.php:459
2066
  msgid "Top OS Families"
2067
  msgstr "Principales familles de SO"
2068
 
2069
+ #: ../admin/view/wp-slimstat-reports.php:470
2070
  msgid ""
2071
  "This report shows you what operating system families (no version considered) "
2072
  "are popular among your visitors."
2074
  "Ce rapport affiche quelles familles de système d'exploitation (sans prise en "
2075
  "compte de version) sont populaires chez vos visiteurs."
2076
 
2077
+ #: ../admin/view/wp-slimstat-reports.php:473
2078
  msgid "Recent Users"
2079
  msgstr "Utilisateurs récents"
2080
 
2081
+ #: ../admin/view/wp-slimstat-reports.php:485
2082
  msgid "Top Users"
2083
  msgstr "Principaux utilisateurs"
2084
 
2085
+ #: ../admin/view/wp-slimstat-reports.php:497
2086
+ #: ../admin/view/wp-slimstat-reports.php:506
2087
+ msgid "Users"
2088
+ msgstr "Utilisateurs"
2089
+
2090
+ #: ../admin/view/wp-slimstat-reports.php:507
2091
+ #, fuzzy
2092
+ msgid "Unique Users"
2093
+ msgstr "IPs uniques"
2094
+
2095
+ #: ../admin/view/wp-slimstat-reports.php:525
2096
+ msgid "Domains"
2097
+ msgstr "Domaines"
2098
+
2099
+ #: ../admin/view/wp-slimstat-reports.php:535
2100
  #, fuzzy
2101
  msgid "Traffic Summary"
2102
  msgstr "Sources de trafic"
2103
 
2104
+ #: ../admin/view/wp-slimstat-reports.php:544
2105
  msgid "Top Referring Search Engines"
2106
  msgstr "Top Moteurs de Recherche"
2107
 
2108
+ #: ../admin/view/wp-slimstat-reports.php:571
2109
  msgid "Recent Outbound Links"
2110
  msgstr "Liens sortants récents"
2111
 
2112
+ #: ../admin/view/wp-slimstat-reports.php:583
2113
  msgid "Recent Posts"
2114
  msgstr "Contenus récents"
2115
 
2116
+ #: ../admin/view/wp-slimstat-reports.php:611
2117
  msgid "Recent Feeds"
2118
  msgstr "Flux récents"
2119
 
2120
+ #: ../admin/view/wp-slimstat-reports.php:623
2121
  msgid "Recent Pages Not Found"
2122
  msgstr "Dernières pages non trouvées"
2123
 
2124
+ #: ../admin/view/wp-slimstat-reports.php:635
2125
  msgid "Recent Internal Searches"
2126
  msgstr "Recherches internes récentes"
2127
 
2128
+ #: ../admin/view/wp-slimstat-reports.php:645
2129
  #, fuzzy
2130
  msgid "Searches performed using WordPress' built-in search functionality."
2131
  msgstr ""
2132
  "Recherches effectuées en utilisant la fonctionnalité de recherche intégrée "
2133
  "dans Wordpress."
2134
 
2135
+ #: ../admin/view/wp-slimstat-reports.php:648
2136
  msgid "Top Categories"
2137
  msgstr "Top Catégories"
2138
 
2139
+ #: ../admin/view/wp-slimstat-reports.php:661
2140
  msgid "Top Downloads"
2141
  msgstr "Top Téléchargements"
2142
 
2143
+ #: ../admin/view/wp-slimstat-reports.php:672
2144
  msgid ""
2145
  "You can configure Slimstat to track specific file extensions as downloads."
2146
  msgstr ""
2147
 
2148
+ #: ../admin/view/wp-slimstat-reports.php:675
2149
  msgid "Recent Events"
2150
  msgstr "Evènements Récents"
2151
 
2152
+ #: ../admin/view/wp-slimstat-reports.php:684
2153
+ #: ../admin/view/wp-slimstat-reports.php:708
2154
  #, fuzzy
2155
  msgid ""
2156
  "This report lists any <em>event</em> occurred on your website. Please refer "
2160
  "web. S'il vous plaît se référer à la FAQ pour plus d'informations sur la "
2161
  "façon de tirer parti de cette fonctionnalité."
2162
 
2163
+ #: ../admin/view/wp-slimstat-reports.php:687
2164
  msgid "Top Posts"
2165
  msgstr "Top Posts"
2166
 
2167
+ #: ../admin/view/wp-slimstat-reports.php:699
2168
  #, fuzzy
2169
  msgid "Top Events"
2170
  msgstr "Contenus récents"
2171
 
2172
+ #: ../admin/view/wp-slimstat-reports.php:711
2173
  msgid "Top Internal Searches"
2174
  msgstr "Top Recherches Internes"
2175
 
2176
+ #: ../admin/view/wp-slimstat-reports.php:723
2177
  msgid "Recent Categories"
2178
  msgstr "Dernières Catégories"
2179
 
2180
+ #: ../admin/view/wp-slimstat-reports.php:735
2181
  msgid "Top Pages Not Found"
2182
  msgstr "Top Pages non trouvées"
2183
 
2184
+ #: ../admin/view/wp-slimstat-reports.php:747
2185
  msgid "Top Authors"
2186
  msgstr "Top Auteurs"
2187
 
2188
+ #: ../admin/view/wp-slimstat-reports.php:758
2189
  msgid "Top Tags"
2190
  msgstr "Top Mots Clés"
2191
 
2192
+ #: ../admin/view/wp-slimstat-reports.php:770
2193
  msgid "Recent Downloads"
2194
  msgstr "Téléchargements récents"
2195
 
2196
+ #: ../admin/view/wp-slimstat-reports.php:782
2197
  #, fuzzy
2198
  msgid "Top Outbound Links"
2199
  msgstr "Lien sortant"
2200
 
2201
+ #: ../admin/view/wp-slimstat-reports.php:794
2202
  msgid "Your Website"
2203
  msgstr "Votre site web"
2204
 
2205
+ #: ../admin/view/wp-slimstat-reports.php:801
2206
  msgid ""
2207
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2208
  "this report is not affected by the filters set here above."
2210
  "Votre contenu en bref : Posts, commentaires, pingbacks, etc. Merci de noter "
2211
  "que ce rpport ne prend pas en compte les filtres ci-dessus."
2212
 
2213
+ #: ../admin/view/wp-slimstat-reports.php:804
2214
  #, fuzzy
2215
  msgid "Top Bounce Pages"
2216
  msgstr "Pages de Rebonds"
2217
 
2218
+ #: ../admin/view/wp-slimstat-reports.php:817
2219
  #, fuzzy
2220
  msgid "Top Exit Pages"
2221
  msgstr "Top Pages Vues"
2222
 
2223
+ #: ../admin/view/wp-slimstat-reports.php:830
2224
  #, fuzzy
2225
  msgid "Top Entry Pages"
2226
  msgstr "Top Pages Vues"
2227
 
2228
+ #: ../admin/view/wp-slimstat-reports.php:843
2229
+ #: ../admin/view/wp-slimstat-reports.php:852
2230
+ #, fuzzy
2231
+ msgid "Outbound Links"
2232
+ msgstr "Lien sortant"
2233
+
2234
+ #: ../admin/view/wp-slimstat-reports.php:853
2235
+ msgid "Unique Outbound"
2236
+ msgstr ""
2237
+
2238
+ #: ../admin/view/wp-slimstat-reports.php:862
2239
  msgid "World Map"
2240
  msgstr "Carte du monde"
2241
 
2242
+ #: ../admin/view/wp-slimstat-reports.php:944
2243
  msgid "Refresh"
2244
  msgstr "Rafraichir"
2245
 
2246
+ #: ../admin/view/wp-slimstat-reports.php:981
2247
  #, php-format
2248
  msgid "Results %s - %s of %s"
2249
  msgstr "Résultats %s - %s de %s"
2250
 
2251
+ #: ../admin/view/wp-slimstat-reports.php:983
2252
  msgid "Refresh in"
2253
  msgstr "Rafraichir dans "
2254
 
2255
+ #: ../admin/view/wp-slimstat-reports.php:1076
2256
  msgid "Category ID"
2257
  msgstr "l'ID de la catégorie de l'article"
2258
 
2259
+ #: ../admin/view/wp-slimstat-reports.php:1081
2260
+ #: ../admin/view/wp-slimstat-reports.php:1096
2261
+ #: ../admin/view/wp-slimstat-reports.php:1102
2262
  #, fuzzy
2263
  msgid "Code"
2264
  msgstr "Code OS "
2265
 
2266
  # Unknown
2267
+ #: ../admin/view/wp-slimstat-reports.php:1097
2268
+ #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1421
2269
  msgid "l-"
2270
  msgstr "Inconnue"
2271
 
2272
+ #: ../admin/view/wp-slimstat-reports.php:1114
2273
  msgid "URL"
2274
  msgstr ""
2275
 
2276
+ #: ../admin/view/wp-slimstat-reports.php:1127
2277
  msgid "Referrer"
2278
  msgstr "Référent"
2279
 
2280
+ #: ../admin/view/wp-slimstat-reports.php:1168
2281
+ #: ../admin/view/wp-slimstat-reports.php:1415
2282
+ #: ../admin/view/wp-slimstat-reports.php:1471
2283
+ #: ../admin/view/wp-slimstat-reports.php:1477
2284
+ #: ../admin/view/wp-slimstat-reports.php:1483
2285
+ #: ../admin/view/wp-slimstat-reports.php:1489
2286
+ #: ../admin/view/wp-slimstat-reports.php:1495
2287
+ #: ../admin/view/wp-slimstat-reports.php:1501
2288
+ #: ../admin/view/wp-slimstat-reports.php:1507
2289
+ #: ../admin/view/wp-slimstat-reports.php:1727
2290
  msgid "Hits"
2291
  msgstr "Hits"
2292
 
2293
+ #: ../admin/view/wp-slimstat-reports.php:1342
 
 
 
 
 
 
 
 
 
2294
  #, fuzzy
2295
  msgid "Dataset Size"
2296
  msgstr "Taille de la base de données"
2297
 
2298
+ #: ../admin/view/wp-slimstat-reports.php:1344
2299
  msgid "Total number of records stored in the database."
2300
  msgstr ""
2301
 
2302
+ #: ../admin/view/wp-slimstat-reports.php:1346
2303
  msgid "DB Size"
2304
  msgstr "Taille de la base de données"
2305
 
2306
+ #: ../admin/view/wp-slimstat-reports.php:1349
2307
  #, fuzzy
2308
  msgid "Tracking Enabled"
2309
  msgstr "Mode traçage"
2310
 
2311
+ #: ../admin/view/wp-slimstat-reports.php:1352
2312
  msgid "Javascript Mode"
2313
  msgstr "Mode Javascript"
2314
 
2315
+ #: ../admin/view/wp-slimstat-reports.php:1355
2316
  msgid "Tracking Browser Caps"
2317
  msgstr "Traçage Capacités Navigateurs"
2318
 
2319
+ #: ../admin/view/wp-slimstat-reports.php:1358
2320
  msgid "Auto purge"
2321
  msgstr "Purge automatique"
2322
 
2323
+ #: ../admin/view/wp-slimstat-reports.php:1361
2324
  msgid "Oldest pageview"
2325
  msgstr "Plus ancienne page vue"
2326
 
2327
+ #: ../admin/view/wp-slimstat-reports.php:1362
2328
  msgid "No visits"
2329
  msgstr "Aucune visite"
2330
 
2331
+ #: ../admin/view/wp-slimstat-reports.php:1366
 
 
 
 
 
2332
  msgid "Date when the MaxMind Geolocation database was last updated."
2333
  msgstr ""
2334
 
2335
+ #: ../admin/view/wp-slimstat-reports.php:1377
2336
+ #: ../admin/view/wp-slimstat-reports.php:1535
2337
  msgid ""
2338
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2339
  "the tracking code is executed."
2341
  "Une demande pour charger un fichier HTML. WP SlimStat enregistre un \"pages "
2342
  "vues \" chaque fois que le code de traçage est exécuté."
2343
 
2344
+ #: ../admin/view/wp-slimstat-reports.php:1379
2345
  #, fuzzy
2346
  msgid "Days in Range"
2347
  msgstr "Intervalle de date"
2348
 
2349
+ #: ../admin/view/wp-slimstat-reports.php:1382
2350
  #, fuzzy
2351
  msgid "Average Daily Pageviews"
2352
  msgstr "Nombre de pages vues en moyenne"
2353
 
2354
+ #: ../admin/view/wp-slimstat-reports.php:1384
2355
  #, fuzzy
2356
  msgid ""
2357
  "How many pages have been visited on average every day during the current "
2359
  msgstr ""
2360
  "Combien de pages ont été visitées en moyenne au cours de la période en cours."
2361
 
2362
+ #: ../admin/view/wp-slimstat-reports.php:1386
2363
  msgid "From Search Results"
2364
  msgstr "Résultat de recherches"
2365
 
2366
+ #: ../admin/view/wp-slimstat-reports.php:1388
2367
  msgid ""
2368
  "Visitors who landed on your site after searching for a keyword on Google, "
2369
  "Yahoo, etc."
2371
  "Visiteurs qui sont arrivés sur votre site après une recherche par mots clés "
2372
  "sur Google, Yahoo, etc"
2373
 
2374
+ #: ../admin/view/wp-slimstat-reports.php:1392
2375
  msgid ""
2376
  "Used to differentiate between multiple requests to download a file from one "
2377
  "internet address (IP) and requests originating from many distinct addresses"
2380
  "fichier à partir d'une adresse Internet (IP) unique et les demandes "
2381
  "provenant de plusieurs adresses distinctes"
2382
 
2383
+ #: ../admin/view/wp-slimstat-reports.php:1394
2384
  msgid "Last 30 minutes"
2385
  msgstr "30 dernières minutes"
2386
 
2387
+ #: ../admin/view/wp-slimstat-reports.php:1433
2388
  msgid ""
2389
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2390
  "multiple times if they perform multiple visits."
2393
  "reviennent sont comptés plusieurs fois s'ils effectuent des visites "
2394
  "multiples."
2395
 
2396
+ #: ../admin/view/wp-slimstat-reports.php:1437
2397
  msgid "It includes only traffic generated by human visitors."
2398
  msgstr "Cela ne comprend que les visites dites humaines."
2399
 
2400
+ #: ../admin/view/wp-slimstat-reports.php:1439
2401
  msgid "Bounce rate"
2402
  msgstr "Taux de rebond"
2403
 
2404
+ #: ../admin/view/wp-slimstat-reports.php:1441
2405
  msgid ""
2406
  "Percentage of single-page visits, i.e. visits in which the person left your "
2407
  "site from the entrance page."
2409
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
2410
  "desquelles la personne a quitté votre site dès la page d'entrée."
2411
 
2412
+ #: ../admin/view/wp-slimstat-reports.php:1443
2413
  msgid "Known visitors"
2414
  msgstr "Visiteurs connus"
2415
 
2416
+ #: ../admin/view/wp-slimstat-reports.php:1445
2417
  msgid "Visitors who had previously left a comment on your blog."
2418
  msgstr "Visiteurs qui ont déjà laissé un commentaire sur votre blog."
2419
 
2420
+ #: ../admin/view/wp-slimstat-reports.php:1447
2421
  msgid "New visitors"
2422
  msgstr "Nouveaux visiteurs"
2423
 
2424
+ #: ../admin/view/wp-slimstat-reports.php:1449
2425
  msgid "Human users who visited your site only once."
2426
  msgstr "Visiteurs humains qui ont visité votre site une seule fois."
2427
 
2428
+ #: ../admin/view/wp-slimstat-reports.php:1451
2429
  msgid "Bots"
2430
  msgstr "Robots"
2431
 
2432
+ #: ../admin/view/wp-slimstat-reports.php:1454
2433
+ #, fuzzy
2434
+ msgid "Pageviews per visit"
2435
  msgstr "Pages vues par visite"
2436
 
2437
+ #: ../admin/view/wp-slimstat-reports.php:1457
2438
  msgid "Longest visit"
2439
  msgstr "Visite la plus longue"
2440
 
2441
+ #: ../admin/view/wp-slimstat-reports.php:1458
2442
  msgid "hits"
2443
  msgstr "hits"
2444
 
2445
+ #: ../admin/view/wp-slimstat-reports.php:1469
2446
  msgid "0 - 30 seconds"
2447
  msgstr "0 - 30 secondes"
2448
 
2449
+ #: ../admin/view/wp-slimstat-reports.php:1475
2450
  msgid "31 - 60 seconds"
2451
  msgstr "31 - 60 secondes"
2452
 
2453
+ #: ../admin/view/wp-slimstat-reports.php:1481
2454
  msgid "1 - 3 minutes"
2455
  msgstr "1 - 3 minutes"
2456
 
2457
+ #: ../admin/view/wp-slimstat-reports.php:1487
2458
  msgid "3 - 5 minutes"
2459
  msgstr "3 - 5 minutes"
2460
 
2461
+ #: ../admin/view/wp-slimstat-reports.php:1493
2462
  msgid "5 - 7 minutes"
2463
  msgstr "5 - 7 minutes"
2464
 
2465
+ #: ../admin/view/wp-slimstat-reports.php:1499
2466
  msgid "7 - 10 minutes"
2467
  msgstr "7 - 10 minutes"
2468
 
2469
+ #: ../admin/view/wp-slimstat-reports.php:1505
2470
  msgid "More than 10 minutes"
2471
  msgstr "Plus de 10 minutes"
2472
 
2473
+ #: ../admin/view/wp-slimstat-reports.php:1517
2474
  #, fuzzy
2475
  msgid "Average visit duration"
2476
  msgstr "Durée des Visites"
2477
 
2478
+ #: ../admin/view/wp-slimstat-reports.php:1537
2479
  msgid "Unique Referrers"
2480
  msgstr "Référents uniques"
2481
 
2482
+ #: ../admin/view/wp-slimstat-reports.php:1539
2483
  msgid ""
2484
  "A referrer (or referring site) is the site that a visitor previously visited "
2485
  "before following a link to your site."
2487
  "Un référent (ou site référent) est le site que le visiteur a visité avant de "
2488
  "suivre un lien vers votre site."
2489
 
2490
+ #: ../admin/view/wp-slimstat-reports.php:1541
2491
  msgid "Direct Pageviews"
2492
  msgstr "Pages Vues Directes"
2493
 
2494
+ #: ../admin/view/wp-slimstat-reports.php:1543
2495
  msgid ""
2496
  "Visitors who visited the site by typing the URL directly into their browser. "
2497
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
2504
  "courriels non marquées, ou des liens à partir de documents qui ne "
2505
  "contiennent pas de variables de suivi."
2506
 
2507
+ #: ../admin/view/wp-slimstat-reports.php:1545
2508
  msgid "From a search result"
2509
  msgstr "Depuis un moteur de recherche"
2510
 
2511
+ #: ../admin/view/wp-slimstat-reports.php:1547
2512
  msgid ""
2513
  "Visitors who came to your site via searches on Google or some other search "
2514
  "engine."
2516
  "Visiteurs qui sont venus sur le site via un moteur de recherche comme Google "
2517
  "ou autre."
2518
 
2519
+ #: ../admin/view/wp-slimstat-reports.php:1549
2520
  msgid "Unique Landing Pages"
2521
  msgstr "Pages d'Entrées Uniques"
2522
 
2523
+ #: ../admin/view/wp-slimstat-reports.php:1551
2524
  msgid ""
2525
  "The first page that a user views during a session. This is also known as the "
2526
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
2532
  "mots clés 'Brooklyn Office Space' et arrive sur votre page d'accueil, elle "
2533
  "sera comptée (pour cette visite) comme la page d'entrée."
2534
 
2535
+ #: ../admin/view/wp-slimstat-reports.php:1553
2536
  msgid "Bounce Pages"
2537
  msgstr "Pages de Rebonds"
2538
 
2539
+ #: ../admin/view/wp-slimstat-reports.php:1555
2540
  #, fuzzy
2541
  msgid "Number of single page visits to your site over the selected period."
2542
  msgstr ""
2543
  "Nombre de visites d'une seule page de votre site au cours de la période "
2544
  "sélectionnée."
2545
 
2546
+ #: ../admin/view/wp-slimstat-reports.php:1557
2547
  msgid "New Visitors Rate"
2548
  msgstr "Taux de Nouveaux Visiteurs"
2549
 
2550
+ #: ../admin/view/wp-slimstat-reports.php:1559
2551
  #, fuzzy
2552
  msgid ""
2553
  "Percentage of single page visits, i.e. visits in which the person left your "
2556
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
2557
  "desquelles la personne a quitté votre site dès la page d'entrée."
2558
 
2559
+ #: ../admin/view/wp-slimstat-reports.php:1561
2560
  msgid "Currently from search engines"
2561
  msgstr "Moteurs de recherche récents"
2562
 
2563
+ #: ../admin/view/wp-slimstat-reports.php:1563
2564
  msgid ""
2565
  "Visitors who visited the site in the last 5 minutes coming from a search "
2566
  "engine."
2568
  "Visiteurs qui ont visité le site dans les 5 dernières visites, provenant "
2569
  "d'un moteur de recherche."
2570
 
2571
+ #: ../admin/view/wp-slimstat-reports.php:1633
2572
  msgid "Number of pages in your site included in Google's index."
2573
  msgstr "Nombre de pages de votre site indexées par Google."
2574
 
2575
+ #: ../admin/view/wp-slimstat-reports.php:1634
2576
  msgid "Google Index"
2577
  msgstr "Index Google"
2578
 
2579
+ #: ../admin/view/wp-slimstat-reports.php:1635
2580
  msgid "Number of pages, according to Google, that link back to your site."
2581
  msgstr ""
2582
  "Nombre de pages qui pointent sur votre site, d'après les informations "
2583
  "fournies par Google."
2584
 
2585
+ #: ../admin/view/wp-slimstat-reports.php:1636
2586
  msgid "Google Backlinks"
2587
  msgstr "Backlinks Google"
2588
 
2589
+ #: ../admin/view/wp-slimstat-reports.php:1637
2590
  msgid ""
2591
  "How many times the Facebook Like button has been approximately clicked on "
2592
  "your site."
2593
  msgstr ""
2594
  "Nombre de fois que votre site a été Liké par quelqu'un sur le réseau social."
2595
 
2596
+ #: ../admin/view/wp-slimstat-reports.php:1638
2597
  msgid "Facebook Likes"
2598
  msgstr "\"J'aime\" Facebook"
2599
 
2600
+ #: ../admin/view/wp-slimstat-reports.php:1639
2601
  msgid ""
2602
  "How many times your site has been shared by someone on the social network."
2603
  msgstr ""
2604
  "Nombre de fois que votre site a été partagé par quelqu'un sur le réseau "
2605
  "social."
2606
 
2607
+ #: ../admin/view/wp-slimstat-reports.php:1640
2608
  msgid "Facebook Shares"
2609
  msgstr "Partages Facebook"
2610
 
2611
+ #: ../admin/view/wp-slimstat-reports.php:1641
2612
  msgid "How many times links to your website have been clicked on Facebook."
2613
  msgstr "Nombre de fois que vos liens ont été activés sur Facebook"
2614
 
2615
+ #: ../admin/view/wp-slimstat-reports.php:1642
2616
  msgid "Facebook Clicks"
2617
  msgstr "Clicks Facebook"
2618
 
2619
+ #: ../admin/view/wp-slimstat-reports.php:1643
2620
  msgid ""
2621
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2622
  "traffic data."
2624
  "Alexa est une filiale d'Amazon.com qui fournit des données commerciales "
2625
  "concernant le trafic web."
2626
 
2627
+ #: ../admin/view/wp-slimstat-reports.php:1644
2628
  msgid "Alexa World Rank"
2629
  msgstr "Alexa, Classement mondial"
2630
 
2631
+ #: ../admin/view/wp-slimstat-reports.php:1645
2632
  msgid "Alexa Country Rank"
2633
  msgstr "Alexa, Classement par pays"
2634
 
2635
+ #: ../admin/view/wp-slimstat-reports.php:1646
2636
  msgid "Alexa Popularity"
2637
  msgstr "Alexa, Popularité"
2638
 
2639
+ #: ../admin/view/wp-slimstat-reports.php:1657
2640
  msgid "Content Items"
2641
  msgstr "Contenus"
2642
 
2643
+ #: ../admin/view/wp-slimstat-reports.php:1659
2644
  msgid ""
2645
  "This value includes not only posts, but also custom post types, regardless "
2646
  "of their status"
2648
  "Cette valeur n'inclut pas seulement les articles de blog, mais aussi des "
2649
  "types personnalisés d'articles, quel que soit leur statut."
2650
 
2651
+ #: ../admin/view/wp-slimstat-reports.php:1661
2652
  #, fuzzy
2653
  msgid "Posts"
2654
  msgstr "Top Posts"
2655
 
2656
+ #: ../admin/view/wp-slimstat-reports.php:1664
2657
  #, fuzzy
2658
  msgid "Pages"
2659
  msgstr "Pages de sorties les plus utilisées"
2660
 
2661
+ #: ../admin/view/wp-slimstat-reports.php:1667
2662
  msgid "Attachments"
2663
  msgstr ""
2664
 
2665
+ #: ../admin/view/wp-slimstat-reports.php:1670
2666
  #, fuzzy
2667
  msgid "Revisions"
2668
  msgstr "Permissions"
2669
 
2670
+ #: ../admin/view/wp-slimstat-reports.php:1673
2671
  #, fuzzy
2672
  msgid "Comments"
2673
  msgstr "Nombre de commentaires"
2674
 
2675
+ #: ../admin/view/wp-slimstat-reports.php:1676
2676
  #, fuzzy
2677
  msgid "Avg Comments per Post"
2678
  msgstr "Moyenne de commentaires par Article"
2679
 
2680
+ #: ../admin/view/wp-slimstat-reports.php:1679
2681
  msgid "Avg Server Latency"
2682
  msgstr "Latence moyenne du serveur"
2683
 
2684
+ #: ../admin/view/wp-slimstat-reports.php:1681
2685
  msgid ""
2686
  "Latency is the amount of time it takes for the host server to receive and "
2687
  "process a request for a page object. The amount of latency depends largely "
2688
  "on how far away the user is from the server."
2689
  msgstr ""
2690
 
2691
+ #: ../admin/view/wp-slimstat-reports.php:1724
2692
  #, fuzzy
2693
  msgid "Coordinates"
2694
  msgstr "Mode traçage"
2695
 
2696
+ #: ../admin/view/wp-slimstat-reports.php:1724
2697
  msgid "Date"
2698
  msgstr ""
2699
 
2700
+ #: ../admin/view/wp-slimstat-reports.php:1761
2701
  msgid "Error contacting the GetSocial endpoint."
2702
  msgstr ""
2703
 
2704
+ #: ../admin/view/wp-slimstat-reports.php:1769
2705
  msgid "Error decoding the GetSocial payload."
2706
  msgstr ""
2707
 
2708
+ #: ../admin/view/wp-slimstat-reports.php:1801
2709
  msgid ""
2710
  "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2711
  ">social media metrics and identify your top performing posts.<br/> <a "
2713
  msgstr ""
2714
 
2715
  # Unknown
2716
+ #: ../admin/view/wp-slimstat-reports.php:1811
2717
  msgid "c-xx"
2718
  msgstr "Inconnu"
2719
 
2720
  # Afghanistan
2721
+ #: ../admin/view/wp-slimstat-reports.php:1811
2722
  msgid "c-af"
2723
  msgstr "Afghanistan"
2724
 
2725
  # Åland Islands
2726
+ #: ../admin/view/wp-slimstat-reports.php:1811
2727
  msgid "c-ax"
2728
  msgstr "Îles Åland"
2729
 
2730
  # Albania
2731
+ #: ../admin/view/wp-slimstat-reports.php:1811
2732
  msgid "c-al"
2733
  msgstr "Albanie"
2734
 
2735
  # Algeria
2736
+ #: ../admin/view/wp-slimstat-reports.php:1811
2737
  msgid "c-dz"
2738
  msgstr "Algérie"
2739
 
2740
  # Andorra
2741
+ #: ../admin/view/wp-slimstat-reports.php:1811
2742
  msgid "c-ad"
2743
  msgstr "Andorre"
2744
 
2745
  # Angola
2746
+ #: ../admin/view/wp-slimstat-reports.php:1811
2747
  msgid "c-ao"
2748
  msgstr "Angola"
2749
 
2750
  # Anguilla
2751
+ #: ../admin/view/wp-slimstat-reports.php:1811
2752
  msgid "c-ai"
2753
  msgstr "Anguilla"
2754
 
2755
  # Antigua and Barbuda
2756
+ #: ../admin/view/wp-slimstat-reports.php:1811
2757
  msgid "c-ag"
2758
  msgstr "Antigua et Barbuda"
2759
 
2760
  # Argentina
2761
+ #: ../admin/view/wp-slimstat-reports.php:1811
2762
  msgid "c-ar"
2763
  msgstr "Argentine"
2764
 
2765
  # Armenia
2766
+ #: ../admin/view/wp-slimstat-reports.php:1811
2767
  msgid "c-am"
2768
  msgstr "Arménie"
2769
 
2770
  # Aruba
2771
+ #: ../admin/view/wp-slimstat-reports.php:1811
2772
  msgid "c-aw"
2773
  msgstr "Aruba"
2774
 
2775
  # Australia
2776
+ #: ../admin/view/wp-slimstat-reports.php:1811
2777
  msgid "c-au"
2778
  msgstr "Australie"
2779
 
2780
  # Austria
2781
+ #: ../admin/view/wp-slimstat-reports.php:1811
2782
  msgid "c-at"
2783
  msgstr "Autriche"
2784
 
2785
  # Azerbaijan
2786
+ #: ../admin/view/wp-slimstat-reports.php:1811
2787
  msgid "c-az"
2788
  msgstr "Azerbaïdjan"
2789
 
2790
  # Bahamas
2791
+ #: ../admin/view/wp-slimstat-reports.php:1811
2792
  msgid "c-bs"
2793
  msgstr "Bahamas"
2794
 
2795
  # Bahrain
2796
+ #: ../admin/view/wp-slimstat-reports.php:1811
2797
  msgid "c-bh"
2798
  msgstr "Bahreïn"
2799
 
2800
  # Bangladesh
2801
+ #: ../admin/view/wp-slimstat-reports.php:1811
2802
  msgid "c-bd"
2803
  msgstr "Bangladesh"
2804
 
2805
  # Barbados
2806
+ #: ../admin/view/wp-slimstat-reports.php:1811
2807
  msgid "c-bb"
2808
  msgstr "Barbade"
2809
 
2810
  # Belarus
2811
+ #: ../admin/view/wp-slimstat-reports.php:1811
2812
  msgid "c-by"
2813
  msgstr "Bélarus"
2814
 
2815
  # Belgium
2816
+ #: ../admin/view/wp-slimstat-reports.php:1811
2817
  msgid "c-be"
2818
  msgstr "Belgique"
2819
 
2820
  # Belize
2821
+ #: ../admin/view/wp-slimstat-reports.php:1811
2822
  msgid "c-bz"
2823
  msgstr "Belize"
2824
 
2825
  # Benin
2826
+ #: ../admin/view/wp-slimstat-reports.php:1811
2827
  msgid "c-bj"
2828
  msgstr "Bénin"
2829
 
2830
  # Bermuda
2831
+ #: ../admin/view/wp-slimstat-reports.php:1811
2832
  msgid "c-bm"
2833
  msgstr "Bermudes"
2834
 
2835
  # Bhutan
2836
+ #: ../admin/view/wp-slimstat-reports.php:1811
2837
  msgid "c-bt"
2838
  msgstr "Bhoutan"
2839
 
2840
  # Bolivia
2841
+ #: ../admin/view/wp-slimstat-reports.php:1811
2842
  msgid "c-bo"
2843
  msgstr "État plurinational de Bolivie"
2844
 
2845
  # Bosnia and Herzegovina
2846
+ #: ../admin/view/wp-slimstat-reports.php:1811
2847
  msgid "c-ba"
2848
  msgstr "Bosnie-Herzégovine"
2849
 
2850
  # Botswana
2851
+ #: ../admin/view/wp-slimstat-reports.php:1811
2852
  msgid "c-bw"
2853
  msgstr "Botswana"
2854
 
2855
  # Brazil
2856
+ #: ../admin/view/wp-slimstat-reports.php:1811
2857
  msgid "c-br"
2858
  msgstr "Brésil"
2859
 
2860
  # Brunei Darussalam
2861
+ #: ../admin/view/wp-slimstat-reports.php:1811
2862
  msgid "c-bn"
2863
  msgstr "Brunéi Darussalam"
2864
 
2865
  # Bulgaria
2866
+ #: ../admin/view/wp-slimstat-reports.php:1811
2867
  msgid "c-bg"
2868
  msgstr "Bulgarie"
2869
 
2870
  # Burkina Faso
2871
+ #: ../admin/view/wp-slimstat-reports.php:1811
2872
  msgid "c-bf"
2873
  msgstr "Burkina Faso"
2874
 
2875
  # Burundi
2876
+ #: ../admin/view/wp-slimstat-reports.php:1811
2877
  msgid "c-bi"
2878
  msgstr "Burundi"
2879
 
2880
  # Cambodia
2881
+ #: ../admin/view/wp-slimstat-reports.php:1811
2882
  msgid "c-kh"
2883
  msgstr "Cambodge"
2884
 
2885
  # Cameroon
2886
+ #: ../admin/view/wp-slimstat-reports.php:1811
2887
  msgid "c-cm"
2888
  msgstr "Cameroun"
2889
 
2890
  # Canada
2891
+ #: ../admin/view/wp-slimstat-reports.php:1811
2892
  msgid "c-ca"
2893
  msgstr "Canada"
2894
 
2895
  # Cape Verde
2896
+ #: ../admin/view/wp-slimstat-reports.php:1811
2897
  msgid "c-cv"
2898
  msgstr "Cap-Vert"
2899
 
2900
  # Cayman Islands
2901
+ #: ../admin/view/wp-slimstat-reports.php:1811
2902
  msgid "c-ky"
2903
  msgstr "Îles Caïmans"
2904
 
2905
  # Central African Republic
2906
+ #: ../admin/view/wp-slimstat-reports.php:1811
2907
  msgid "c-cf"
2908
  msgstr "République Centrafricaine"
2909
 
2910
  # Chad
2911
+ #: ../admin/view/wp-slimstat-reports.php:1811
2912
  msgid "c-td"
2913
  msgstr "Tchad"
2914
 
2915
  # Chile
2916
+ #: ../admin/view/wp-slimstat-reports.php:1811
2917
  msgid "c-cl"
2918
  msgstr "Chili"
2919
 
2920
  # China
2921
+ #: ../admin/view/wp-slimstat-reports.php:1811
2922
  msgid "c-cn"
2923
  msgstr "Chine"
2924
 
2925
  # Colombia
2926
+ #: ../admin/view/wp-slimstat-reports.php:1811
2927
  msgid "c-co"
2928
  msgstr "Colombie"
2929
 
2930
  # Comoros
2931
+ #: ../admin/view/wp-slimstat-reports.php:1811
2932
  msgid "c-km"
2933
  msgstr "Comores"
2934
 
2935
  # Congo
2936
+ #: ../admin/view/wp-slimstat-reports.php:1811
2937
  msgid "c-cg"
2938
  msgstr "Congo"
2939
 
2940
  # The Democratic Republic of the Congo
2941
+ #: ../admin/view/wp-slimstat-reports.php:1811
2942
  msgid "c-cd"
2943
  msgstr "République Démocratique du Congo"
2944
 
2945
  # Costa Rica
2946
+ #: ../admin/view/wp-slimstat-reports.php:1811
2947
  msgid "c-cr"
2948
  msgstr "Costa Rica"
2949
 
2950
  # Côte d'Ivoire
2951
+ #: ../admin/view/wp-slimstat-reports.php:1811
2952
  msgid "c-ci"
2953
  msgstr "Côte d'Ivoire"
2954
 
2955
  # Croatia
2956
+ #: ../admin/view/wp-slimstat-reports.php:1811
2957
  msgid "c-hr"
2958
  msgstr "Croatie"
2959
 
2960
  # Cuba
2961
+ #: ../admin/view/wp-slimstat-reports.php:1811
2962
  msgid "c-cu"
2963
  msgstr "Cuba"
2964
 
2965
  # Cyprus
2966
+ #: ../admin/view/wp-slimstat-reports.php:1811
2967
  msgid "c-cy"
2968
  msgstr "Chypre"
2969
 
2970
  # Czech Republic
2971
+ #: ../admin/view/wp-slimstat-reports.php:1811
2972
  msgid "c-cz"
2973
  msgstr "République tchèque"
2974
 
2975
  # Denmark
2976
+ #: ../admin/view/wp-slimstat-reports.php:1811
2977
  msgid "c-dk"
2978
  msgstr "Danemark"
2979
 
2980
  # Djibouti
2981
+ #: ../admin/view/wp-slimstat-reports.php:1811
2982
  msgid "c-dj"
2983
  msgstr "Djibouti"
2984
 
2985
  # Dominica
2986
+ #: ../admin/view/wp-slimstat-reports.php:1811
2987
  msgid "c-dm"
2988
  msgstr "Dominique"
2989
 
2990
  # Dominican Republic
2991
+ #: ../admin/view/wp-slimstat-reports.php:1811
2992
  msgid "c-do"
2993
  msgstr "République dominicaine"
2994
 
2995
  # Ecuador
2996
+ #: ../admin/view/wp-slimstat-reports.php:1811
2997
  msgid "c-ec"
2998
  msgstr "Équateur"
2999
 
3000
  # Egypt
3001
+ #: ../admin/view/wp-slimstat-reports.php:1811
3002
  msgid "c-eg"
3003
  msgstr "Égypte"
3004
 
3005
  # El Salvador
3006
+ #: ../admin/view/wp-slimstat-reports.php:1811
3007
  msgid "c-sv"
3008
  msgstr "El Salvador"
3009
 
3010
  # Equatorial Guinea
3011
+ #: ../admin/view/wp-slimstat-reports.php:1811
3012
  msgid "c-gq"
3013
  msgstr "Guinée équatoriale"
3014
 
3015
  # Eritrea
3016
+ #: ../admin/view/wp-slimstat-reports.php:1811
3017
  msgid "c-er"
3018
  msgstr "Érythrée"
3019
 
3020
  # Estonia
3021
+ #: ../admin/view/wp-slimstat-reports.php:1811
3022
  msgid "c-ee"
3023
  msgstr "Estonie"
3024
 
3025
  # Ethiopia
3026
+ #: ../admin/view/wp-slimstat-reports.php:1811
3027
  msgid "c-et"
3028
  msgstr "Éthiopie"
3029
 
3030
  # Faroe Islands
3031
+ #: ../admin/view/wp-slimstat-reports.php:1811
3032
  msgid "c-fo"
3033
  msgstr "Îles Féroé"
3034
 
3035
  # Falkland Islands (Malvinas)
3036
+ #: ../admin/view/wp-slimstat-reports.php:1811
3037
  msgid "c-fk"
3038
  msgstr "Îles Falkland (Malvinas)"
3039
 
3040
  # Fiji
3041
+ #: ../admin/view/wp-slimstat-reports.php:1811
3042
  msgid "c-fj"
3043
  msgstr "Fidji"
3044
 
3045
  # Finland
3046
+ #: ../admin/view/wp-slimstat-reports.php:1811
3047
  msgid "c-fi"
3048
  msgstr "Finlande"
3049
 
3050
  # France
3051
+ #: ../admin/view/wp-slimstat-reports.php:1811
3052
  msgid "c-fr"
3053
  msgstr "France"
3054
 
3055
  # French Guiana
3056
+ #: ../admin/view/wp-slimstat-reports.php:1811
3057
  msgid "c-gf"
3058
  msgstr "Guyane française"
3059
 
3060
  # Gabon
3061
+ #: ../admin/view/wp-slimstat-reports.php:1811
3062
  msgid "c-ga"
3063
  msgstr "Gabon"
3064
 
3065
  # Gambia
3066
+ #: ../admin/view/wp-slimstat-reports.php:1811
3067
  msgid "c-gm"
3068
  msgstr "Gambie"
3069
 
3070
  # Georgia
3071
+ #: ../admin/view/wp-slimstat-reports.php:1811
3072
  msgid "c-ge"
3073
  msgstr "Géorgie"
3074
 
3075
  # Germany
3076
+ #: ../admin/view/wp-slimstat-reports.php:1811
3077
  msgid "c-de"
3078
  msgstr "Allemagne"
3079
 
3080
  # Ghana
3081
+ #: ../admin/view/wp-slimstat-reports.php:1811
3082
  msgid "c-gh"
3083
  msgstr "Ghana"
3084
 
3085
  # Greece
3086
+ #: ../admin/view/wp-slimstat-reports.php:1811
3087
  msgid "c-gr"
3088
  msgstr "Grèce"
3089
 
3090
  # Greenland
3091
+ #: ../admin/view/wp-slimstat-reports.php:1811
3092
  msgid "c-gl"
3093
  msgstr "Groenland"
3094
 
3095
  # Grenada
3096
+ #: ../admin/view/wp-slimstat-reports.php:1811
3097
  msgid "c-gd"
3098
  msgstr "Grenade"
3099
 
3100
  # Guadeloupe
3101
+ #: ../admin/view/wp-slimstat-reports.php:1811
3102
  msgid "c-gp"
3103
  msgstr "Guadeloupe"
3104
 
3105
  # Guatemala
3106
+ #: ../admin/view/wp-slimstat-reports.php:1811
3107
  msgid "c-gt"
3108
  msgstr "Guatemala"
3109
 
3110
  # Guinea
3111
+ #: ../admin/view/wp-slimstat-reports.php:1811
3112
  msgid "c-gn"
3113
  msgstr "Guinée"
3114
 
3115
  # Guinea-Bissau
3116
+ #: ../admin/view/wp-slimstat-reports.php:1811
3117
  msgid "c-gw"
3118
  msgstr "Guinée-Bissau"
3119
 
3120
  # Guyana
3121
+ #: ../admin/view/wp-slimstat-reports.php:1811
3122
  msgid "c-gy"
3123
  msgstr "Guyana"
3124
 
3125
  # Haiti
3126
+ #: ../admin/view/wp-slimstat-reports.php:1811
3127
  msgid "c-ht"
3128
  msgstr "Haïti"
3129
 
3130
  # Honduras
3131
+ #: ../admin/view/wp-slimstat-reports.php:1811
3132
  msgid "c-hn"
3133
  msgstr "Honduras"
3134
 
3135
  # Hong Kong
3136
+ #: ../admin/view/wp-slimstat-reports.php:1811
3137
  msgid "c-hk"
3138
  msgstr "Hong Kong"
3139
 
3140
  # Hungary
3141
+ #: ../admin/view/wp-slimstat-reports.php:1811
3142
  msgid "c-hu"
3143
  msgstr "Hongrie"
3144
 
3145
  # Iceland
3146
+ #: ../admin/view/wp-slimstat-reports.php:1811
3147
  msgid "c-is"
3148
  msgstr "Islande"
3149
 
3150
  # India
3151
+ #: ../admin/view/wp-slimstat-reports.php:1811
3152
  msgid "c-in"
3153
  msgstr "Inde"
3154
 
3155
  # Indonesia
3156
+ #: ../admin/view/wp-slimstat-reports.php:1811
3157
  msgid "c-id"
3158
  msgstr "Indonésie"
3159
 
3160
  # Islamic Republic of Iran
3161
+ #: ../admin/view/wp-slimstat-reports.php:1811
3162
  msgid "c-ir"
3163
  msgstr "République islamique d'Iran"
3164
 
3165
  # Iraq
3166
+ #: ../admin/view/wp-slimstat-reports.php:1811
3167
  msgid "c-iq"
3168
  msgstr "Irak"
3169
 
3170
  # Ireland
3171
+ #: ../admin/view/wp-slimstat-reports.php:1811
3172
  msgid "c-ie"
3173
  msgstr "Irlande"
3174
 
3175
  # Israel
3176
+ #: ../admin/view/wp-slimstat-reports.php:1811
3177
  msgid "c-il"
3178
  msgstr "Israël"
3179
 
3180
  # Italy
3181
+ #: ../admin/view/wp-slimstat-reports.php:1811
3182
  msgid "c-it"
3183
  msgstr "Italie"
3184
 
3185
  # Jamaica
3186
+ #: ../admin/view/wp-slimstat-reports.php:1811
3187
  msgid "c-jm"
3188
  msgstr "Jamaïque"
3189
 
3190
  # Japan
3191
+ #: ../admin/view/wp-slimstat-reports.php:1811
3192
  msgid "c-jp"
3193
  msgstr "Japon"
3194
 
3195
  # Jordan
3196
+ #: ../admin/view/wp-slimstat-reports.php:1811
3197
  msgid "c-jo"
3198
  msgstr "Jordanie"
3199
 
3200
  # Kazakhstan
3201
+ #: ../admin/view/wp-slimstat-reports.php:1811
3202
  msgid "c-kz"
3203
  msgstr "Kazakhstan"
3204
 
3205
  # Kenya
3206
+ #: ../admin/view/wp-slimstat-reports.php:1811
3207
  msgid "c-ke"
3208
  msgstr "Kenya"
3209
 
3210
  # Nauru
3211
+ #: ../admin/view/wp-slimstat-reports.php:1811
3212
  msgid "c-nr"
3213
  msgstr "Nauru"
3214
 
3215
  # Democratic People's Republic of Korea
3216
+ #: ../admin/view/wp-slimstat-reports.php:1811
3217
  msgid "c-kp"
3218
  msgstr "République populaire démocratique de Corée"
3219
 
3220
  # Republic of Korea
3221
+ #: ../admin/view/wp-slimstat-reports.php:1811
3222
  msgid "c-kr"
3223
  msgstr "République de Corée"
3224
 
3225
+ #: ../admin/view/wp-slimstat-reports.php:1811
3226
  msgid "c-kv"
3227
  msgstr "Kossovo"
3228
 
3229
  # Kuwait
3230
+ #: ../admin/view/wp-slimstat-reports.php:1811
3231
  msgid "c-kw"
3232
  msgstr "Koweït"
3233
 
3234
  # Kyrgyzstan
3235
+ #: ../admin/view/wp-slimstat-reports.php:1811
3236
  msgid "c-kg"
3237
  msgstr "Kirghizistan"
3238
 
3239
  # Lao People's Democratic Republic
3240
+ #: ../admin/view/wp-slimstat-reports.php:1811
3241
  msgid "c-la"
3242
  msgstr "République démocratique populaire lao"
3243
 
3244
  # Latvia
3245
+ #: ../admin/view/wp-slimstat-reports.php:1811
3246
  msgid "c-lv"
3247
  msgstr "Lettonie"
3248
 
3249
  # Lebanon
3250
+ #: ../admin/view/wp-slimstat-reports.php:1811
3251
  msgid "c-lb"
3252
  msgstr "Liban"
3253
 
3254
  # Lesotho
3255
+ #: ../admin/view/wp-slimstat-reports.php:1811
3256
  msgid "c-ls"
3257
  msgstr "Lesotho"
3258
 
3259
  # Liberia
3260
+ #: ../admin/view/wp-slimstat-reports.php:1811
3261
  msgid "c-lr"
3262
  msgstr "Libéria"
3263
 
3264
  # Libyan Arab Jamahiriya
3265
+ #: ../admin/view/wp-slimstat-reports.php:1811
3266
  msgid "c-ly"
3267
  msgstr "Jamahiriya arabe libyenne"
3268
 
3269
  # Liechtenstein
3270
+ #: ../admin/view/wp-slimstat-reports.php:1811
3271
  msgid "c-li"
3272
  msgstr "Liechtenstein"
3273
 
3274
  # Lithuania
3275
+ #: ../admin/view/wp-slimstat-reports.php:1811
3276
  msgid "c-lt"
3277
  msgstr "Lituanie"
3278
 
3279
  # Luxembourg
3280
+ #: ../admin/view/wp-slimstat-reports.php:1811
3281
  msgid "c-lu"
3282
  msgstr "Luxembourg"
3283
 
3284
  # The Former Yugoslav Republic of Macedonia
3285
+ #: ../admin/view/wp-slimstat-reports.php:1811
3286
  msgid "c-mk"
3287
  msgstr "Ex-république yougoslave de Macédoine"
3288
 
3289
  # Madagascar
3290
+ #: ../admin/view/wp-slimstat-reports.php:1811
3291
  msgid "c-mg"
3292
  msgstr "Madagascar"
3293
 
3294
  # Malawi
3295
+ #: ../admin/view/wp-slimstat-reports.php:1811
3296
  msgid "c-mw"
3297
  msgstr "Malawi"
3298
 
3299
  # Malaysia
3300
+ #: ../admin/view/wp-slimstat-reports.php:1811
3301
  msgid "c-my"
3302
  msgstr "Malaisie"
3303
 
3304
  # Mali
3305
+ #: ../admin/view/wp-slimstat-reports.php:1811
3306
  msgid "c-ml"
3307
  msgstr "Mali"
3308
 
3309
  # Malta
3310
+ #: ../admin/view/wp-slimstat-reports.php:1811
3311
  msgid "c-mt"
3312
  msgstr "Malte"
3313
 
3314
  # Martinique
3315
+ #: ../admin/view/wp-slimstat-reports.php:1811
3316
  msgid "c-mq"
3317
  msgstr "Martinique"
3318
 
3319
  # Mauritania
3320
+ #: ../admin/view/wp-slimstat-reports.php:1811
3321
  msgid "c-mr"
3322
  msgstr "Mauritanie"
3323
 
3324
  # Mauritius
3325
+ #: ../admin/view/wp-slimstat-reports.php:1811
3326
  msgid "c-mu"
3327
  msgstr "Maurice"
3328
 
3329
  # Mexico
3330
+ #: ../admin/view/wp-slimstat-reports.php:1811
3331
  msgid "c-mx"
3332
  msgstr "Mexique"
3333
 
3334
  # Moldova
3335
+ #: ../admin/view/wp-slimstat-reports.php:1811
3336
  msgid "c-md"
3337
  msgstr "République de Moldova"
3338
 
3339
  # Mongolia
3340
+ #: ../admin/view/wp-slimstat-reports.php:1811
3341
  msgid "c-mn"
3342
  msgstr "Mongolie"
3343
 
3344
  # Montenegro
3345
+ #: ../admin/view/wp-slimstat-reports.php:1811
3346
  msgid "c-me"
3347
  msgstr "Monténégro"
3348
 
3349
  # Montserrat
3350
+ #: ../admin/view/wp-slimstat-reports.php:1811
3351
  msgid "c-ms"
3352
  msgstr "Montserrat"
3353
 
3354
  # Morocco
3355
+ #: ../admin/view/wp-slimstat-reports.php:1811
3356
  msgid "c-ma"
3357
  msgstr "Maroc"
3358
 
3359
  # Mozambique
3360
+ #: ../admin/view/wp-slimstat-reports.php:1811
3361
  msgid "c-mz"
3362
  msgstr "Mozambique"
3363
 
3364
  # Myanmar
3365
+ #: ../admin/view/wp-slimstat-reports.php:1811
3366
  msgid "c-mm"
3367
  msgstr "Myanmar"
3368
 
3369
  # Namibia
3370
+ #: ../admin/view/wp-slimstat-reports.php:1811
3371
  msgid "c-na"
3372
  msgstr "Namibie"
3373
 
3374
  # Nepal
3375
+ #: ../admin/view/wp-slimstat-reports.php:1811
3376
  msgid "c-np"
3377
  msgstr "Népal"
3378
 
3379
  # Netherlands
3380
+ #: ../admin/view/wp-slimstat-reports.php:1811
3381
  msgid "c-nl"
3382
  msgstr "Pays-bas"
3383
 
3384
  # New Caledonia
3385
+ #: ../admin/view/wp-slimstat-reports.php:1811
3386
  msgid "c-nc"
3387
  msgstr "Nouvelle-Calédonie"
3388
 
3389
  # New Zealand
3390
+ #: ../admin/view/wp-slimstat-reports.php:1811
3391
  msgid "c-nz"
3392
  msgstr "Nouvelle-Zélande"
3393
 
3394
  # Nicaragua
3395
+ #: ../admin/view/wp-slimstat-reports.php:1811
3396
  msgid "c-ni"
3397
  msgstr "Nicaragua"
3398
 
3399
  # Niger
3400
+ #: ../admin/view/wp-slimstat-reports.php:1811
3401
  msgid "c-ne"
3402
  msgstr "Niger"
3403
 
3404
  # Nigeria
3405
+ #: ../admin/view/wp-slimstat-reports.php:1811
3406
  msgid "c-ng"
3407
  msgstr "Nigéria"
3408
 
3409
  # Norway
3410
+ #: ../admin/view/wp-slimstat-reports.php:1811
3411
  msgid "c-no"
3412
  msgstr "Norvège"
3413
 
3414
  # Oman
3415
+ #: ../admin/view/wp-slimstat-reports.php:1811
3416
  msgid "c-om"
3417
  msgstr "Oman"
3418
 
3419
  # Pakistan
3420
+ #: ../admin/view/wp-slimstat-reports.php:1811
3421
  msgid "c-pk"
3422
  msgstr "Pakistan"
3423
 
3424
  # Palau
3425
+ #: ../admin/view/wp-slimstat-reports.php:1811
3426
  msgid "c-pw"
3427
  msgstr "Palaos"
3428
 
3429
  # Occupied Palestinian Territory
3430
+ #: ../admin/view/wp-slimstat-reports.php:1811
3431
  msgid "c-ps"
3432
  msgstr "Territoire palestinien occupé"
3433
 
3434
  # Panama
3435
+ #: ../admin/view/wp-slimstat-reports.php:1811
3436
  msgid "c-pa"
3437
  msgstr "Panama"
3438
 
3439
  # Papua New Guinea
3440
+ #: ../admin/view/wp-slimstat-reports.php:1811
3441
  msgid "c-pg"
3442
  msgstr "Papouasie-Nouvelle-Guinée"
3443
 
3444
  # Paraguay
3445
+ #: ../admin/view/wp-slimstat-reports.php:1811
3446
  msgid "c-py"
3447
  msgstr "Paraguay"
3448
 
3449
  # Peru
3450
+ #: ../admin/view/wp-slimstat-reports.php:1811
3451
  msgid "c-pe"
3452
  msgstr "Pérou"
3453
 
3454
  # Philippines
3455
+ #: ../admin/view/wp-slimstat-reports.php:1811
3456
  msgid "c-ph"
3457
  msgstr "Philippines"
3458
 
3459
  # Poland
3460
+ #: ../admin/view/wp-slimstat-reports.php:1811
3461
  msgid "c-pl"
3462
  msgstr "Pologne"
3463
 
3464
  # Portugal
3465
+ #: ../admin/view/wp-slimstat-reports.php:1811
3466
  msgid "c-pt"
3467
  msgstr "Portugal"
3468
 
3469
  # Puerto Rico
3470
+ #: ../admin/view/wp-slimstat-reports.php:1811
3471
  msgid "c-pr"
3472
  msgstr "Porto Rico"
3473
 
3474
  # Qatar
3475
+ #: ../admin/view/wp-slimstat-reports.php:1811
3476
  msgid "c-qa"
3477
  msgstr "Qatar"
3478
 
3479
  # Réunion
3480
+ #: ../admin/view/wp-slimstat-reports.php:1811
3481
  msgid "c-re"
3482
  msgstr "Réunion"
3483
 
3484
  # Romania
3485
+ #: ../admin/view/wp-slimstat-reports.php:1811
3486
  msgid "c-ro"
3487
  msgstr "Roumanie"
3488
 
3489
  # Russian Federation
3490
+ #: ../admin/view/wp-slimstat-reports.php:1811
3491
  msgid "c-ru"
3492
  msgstr "Fédération de Russie"
3493
 
3494
  # Rwanda
3495
+ #: ../admin/view/wp-slimstat-reports.php:1811
3496
  msgid "c-rw"
3497
  msgstr "Rwanda"
3498
 
3499
  # Saint Kitts and Nevis
3500
+ #: ../admin/view/wp-slimstat-reports.php:1811
3501
  msgid "c-kn"
3502
  msgstr "Saint-Kitts-et-Nevis"
3503
 
3504
  # Saint Lucia
3505
+ #: ../admin/view/wp-slimstat-reports.php:1811
3506
  msgid "c-lc"
3507
  msgstr "Sainte-Lucie"
3508
 
3509
  # Saint Martin
3510
+ #: ../admin/view/wp-slimstat-reports.php:1811
3511
  msgid "c-mf"
3512
  msgstr "Saint-Martin"
3513
 
3514
  # Saint Vincent and the Grenadines
3515
+ #: ../admin/view/wp-slimstat-reports.php:1811
3516
  msgid "c-vc"
3517
  msgstr "Saint-Vincent-et-les Grenadines"
3518
 
3519
  # Samoa
3520
+ #: ../admin/view/wp-slimstat-reports.php:1811
3521
  msgid "c-ws"
3522
  msgstr "Samoa"
3523
 
3524
  # Sao Tome and Principe
3525
+ #: ../admin/view/wp-slimstat-reports.php:1811
3526
  msgid "c-st"
3527
  msgstr "Sao Tomé-et-Principe"
3528
 
3529
  # Saudi Arabia
3530
+ #: ../admin/view/wp-slimstat-reports.php:1811
3531
  msgid "c-sa"
3532
  msgstr "Arabie saoudite"
3533
 
3534
  # Senegal
3535
+ #: ../admin/view/wp-slimstat-reports.php:1811
3536
  msgid "c-sn"
3537
  msgstr "Sénégal"
3538
 
3539
  # Serbia
3540
+ #: ../admin/view/wp-slimstat-reports.php:1811
3541
  msgid "c-rs"
3542
  msgstr "Serbie"
3543
 
3544
  # Sierra Leone
3545
+ #: ../admin/view/wp-slimstat-reports.php:1811
3546
  msgid "c-sl"
3547
  msgstr "Sierra Leone"
3548
 
3549
  # Singapore
3550
+ #: ../admin/view/wp-slimstat-reports.php:1811
3551
  msgid "c-sg"
3552
  msgstr "Singapour"
3553
 
3554
  # Slovakia
3555
+ #: ../admin/view/wp-slimstat-reports.php:1811
3556
  msgid "c-sk"
3557
  msgstr "Slovaquie"
3558
 
3559
  # Slovenia
3560
+ #: ../admin/view/wp-slimstat-reports.php:1811
3561
  msgid "c-si"
3562
  msgstr "Slovénie"
3563
 
3564
  # Solomon Islands
3565
+ #: ../admin/view/wp-slimstat-reports.php:1811
3566
  msgid "c-sb"
3567
  msgstr "Îles Salomon"
3568
 
3569
  # Somalia
3570
+ #: ../admin/view/wp-slimstat-reports.php:1811
3571
  msgid "c-so"
3572
  msgstr "Somalie"
3573
 
3574
  # South Africa
3575
+ #: ../admin/view/wp-slimstat-reports.php:1811
3576
  msgid "c-za"
3577
  msgstr "Afrique du sud"
3578
 
3579
  # South Georgia and the South Sandwich Islands
3580
+ #: ../admin/view/wp-slimstat-reports.php:1811
3581
  msgid "c-gs"
3582
  msgstr "Géorgie du sud et les Îles Sandwich du sud"
3583
 
3584
  # Spain
3585
+ #: ../admin/view/wp-slimstat-reports.php:1811
3586
  msgid "c-es"
3587
  msgstr "Espagne"
3588
 
3589
  # Sri Lanka
3590
+ #: ../admin/view/wp-slimstat-reports.php:1811
3591
  msgid "c-lk"
3592
  msgstr "Sri Lanka"
3593
 
3594
  # Seychelles
3595
+ #: ../admin/view/wp-slimstat-reports.php:1811
3596
  msgid "c-sc"
3597
  msgstr "Seychelles"
3598
 
3599
  # Sudan
3600
+ #: ../admin/view/wp-slimstat-reports.php:1811
3601
  msgid "c-sd"
3602
  msgstr "Soudan"
3603
 
3604
+ #: ../admin/view/wp-slimstat-reports.php:1811
3605
  msgid "c-ss"
3606
  msgstr "Soudan du Sud"
3607
 
3608
  # Suriname
3609
+ #: ../admin/view/wp-slimstat-reports.php:1811
3610
  msgid "c-sr"
3611
  msgstr "Suriname"
3612
 
3613
  # Svalbard and Jan Mayen
3614
+ #: ../admin/view/wp-slimstat-reports.php:1811
3615
  msgid "c-sj"
3616
  msgstr "Svalbard et île Jan Mayen"
3617
 
3618
  # Swaziland
3619
+ #: ../admin/view/wp-slimstat-reports.php:1811
3620
  msgid "c-sz"
3621
  msgstr "Swaziland"
3622
 
3623
  # Sweden
3624
+ #: ../admin/view/wp-slimstat-reports.php:1811
3625
  msgid "c-se"
3626
  msgstr "Suède"
3627
 
3628
  # Switzerland
3629
+ #: ../admin/view/wp-slimstat-reports.php:1811
3630
  msgid "c-ch"
3631
  msgstr "Suisse"
3632
 
3633
  # Syrian Arab Republic
3634
+ #: ../admin/view/wp-slimstat-reports.php:1811
3635
  msgid "c-sy"
3636
  msgstr "République arabe syrienne"
3637
 
3638
  # Taiwan, Province of China
3639
+ #: ../admin/view/wp-slimstat-reports.php:1811
3640
  msgid "c-tw"
3641
  msgstr "Taïwan, province de Chine"
3642
 
3643
  # Tajikistan
3644
+ #: ../admin/view/wp-slimstat-reports.php:1811
3645
  msgid "c-tj"
3646
  msgstr "Tadjikistan"
3647
 
3648
  # United Republic of Tanzania
3649
+ #: ../admin/view/wp-slimstat-reports.php:1811
3650
  msgid "c-tz"
3651
  msgstr "République-unie de Tanzanie"
3652
 
3653
  # Thailand
3654
+ #: ../admin/view/wp-slimstat-reports.php:1811
3655
  msgid "c-th"
3656
  msgstr "Thaïlande"
3657
 
3658
  # Timor-Leste
3659
+ #: ../admin/view/wp-slimstat-reports.php:1811
3660
  msgid "c-tl"
3661
  msgstr "Timor-Leste"
3662
 
3663
  # Togo
3664
+ #: ../admin/view/wp-slimstat-reports.php:1811
3665
  msgid "c-tg"
3666
  msgstr "Togo"
3667
 
3668
  # Tonga
3669
+ #: ../admin/view/wp-slimstat-reports.php:1811
3670
  msgid "c-to"
3671
  msgstr "Tonga"
3672
 
3673
  # Trinidad and Tobago
3674
+ #: ../admin/view/wp-slimstat-reports.php:1811
3675
  msgid "c-tt"
3676
  msgstr "Trinité-et-Tobago "
3677
 
3678
  # Tunisia
3679
+ #: ../admin/view/wp-slimstat-reports.php:1811
3680
  msgid "c-tn"
3681
  msgstr "Tunisie"
3682
 
3683
  # Turkey
3684
+ #: ../admin/view/wp-slimstat-reports.php:1811
3685
  msgid "c-tr"
3686
  msgstr "Turquie "
3687
 
3688
  # Turkmenistan
3689
+ #: ../admin/view/wp-slimstat-reports.php:1811
3690
  msgid "c-tm"
3691
  msgstr "Turkménistan"
3692
 
3693
  # Turks and Caicos Islands
3694
+ #: ../admin/view/wp-slimstat-reports.php:1811
3695
  msgid "c-tc"
3696
  msgstr "Îles Turks et Caïques"
3697
 
3698
  # Uganda
3699
+ #: ../admin/view/wp-slimstat-reports.php:1811
3700
  msgid "c-ug"
3701
  msgstr "Ouganda"
3702
 
3703
  # Ukraine
3704
+ #: ../admin/view/wp-slimstat-reports.php:1811
3705
  msgid "c-ua"
3706
  msgstr "Ukraine"
3707
 
3708
  # United Arab Emirates
3709
+ #: ../admin/view/wp-slimstat-reports.php:1811
3710
  msgid "c-ae"
3711
  msgstr "Émirats arabes unis"
3712
 
3713
  # United Kingdom
3714
+ #: ../admin/view/wp-slimstat-reports.php:1811
3715
  msgid "c-gb"
3716
  msgstr "Royaume-Uni"
3717
 
3718
  # United States
3719
+ #: ../admin/view/wp-slimstat-reports.php:1811
3720
  msgid "c-us"
3721
  msgstr "États-Unis"
3722
 
3723
  # Uruguay
3724
+ #: ../admin/view/wp-slimstat-reports.php:1811
3725
  msgid "c-uy"
3726
  msgstr "Uruguay"
3727
 
3728
  # Uzbekistan
3729
+ #: ../admin/view/wp-slimstat-reports.php:1811
3730
  msgid "c-uz"
3731
  msgstr "Ouzbékistan "
3732
 
3733
  # Vanuatu
3734
+ #: ../admin/view/wp-slimstat-reports.php:1811
3735
  msgid "c-vu"
3736
  msgstr "Vanuatu"
3737
 
3738
  # Venezuela
3739
+ #: ../admin/view/wp-slimstat-reports.php:1811
3740
  msgid "c-ve"
3741
  msgstr "République bolivarienne du Venezuela"
3742
 
3743
  # Viet Nam
3744
+ #: ../admin/view/wp-slimstat-reports.php:1811
3745
  msgid "c-vn"
3746
  msgstr "Viet Nam"
3747
 
3748
  # British Virgin Islands
3749
+ #: ../admin/view/wp-slimstat-reports.php:1811
3750
  msgid "c-vg"
3751
  msgstr "Îles vierges britanniques"
3752
 
3753
  # U.S. Virgin Islands
3754
+ #: ../admin/view/wp-slimstat-reports.php:1811
3755
  msgid "c-vi"
3756
  msgstr "Îles vierges des États-Unis"
3757
 
3758
  # Western Sahara
3759
+ #: ../admin/view/wp-slimstat-reports.php:1811
3760
  msgid "c-eh"
3761
  msgstr "Sahara occidental"
3762
 
3763
  # Yemen
3764
+ #: ../admin/view/wp-slimstat-reports.php:1811
3765
  msgid "c-ye"
3766
  msgstr "Yémen"
3767
 
3768
  # Zambia
3769
+ #: ../admin/view/wp-slimstat-reports.php:1811
3770
  msgid "c-zm"
3771
  msgstr "Zambie"
3772
 
3773
  # Zimbabwe
3774
+ #: ../admin/view/wp-slimstat-reports.php:1811
3775
  msgid "c-zw"
3776
  msgstr "Zimbabwe"
3777
 
3778
  # Guernsey
3779
+ #: ../admin/view/wp-slimstat-reports.php:1811
3780
  msgid "c-gg"
3781
  msgstr "Guernesey"
3782
 
3783
  # Jersey
3784
+ #: ../admin/view/wp-slimstat-reports.php:1811
3785
  msgid "c-je"
3786
  msgstr "Jersey"
3787
 
3788
  # Isle of Man
3789
+ #: ../admin/view/wp-slimstat-reports.php:1811
3790
  msgid "c-im"
3791
  msgstr "Île de Man"
3792
 
3793
  # Maldives
3794
+ #: ../admin/view/wp-slimstat-reports.php:1811
3795
  msgid "c-mv"
3796
  msgstr "Maldives"
3797
 
3798
  # European Union
3799
+ #: ../admin/view/wp-slimstat-reports.php:1812
3800
  msgid "c-eu"
3801
  msgstr "Union européenne"
3802
 
3803
+ #: ../admin/view/wp-slimstat-reports.php:1894
3804
  msgid "src"
3805
  msgstr "src"
3806
 
3807
+ #: ../admin/view/wp-slimstat-reports.php:1897
3808
  msgid "serp"
3809
  msgstr "serp"
3810
 
3811
+ #: ../admin/view/wp-slimstat-reports.php:1904
3812
  msgid "Go to the referring page"
3813
  msgstr "Aller sur la page référente"
3814
 
3815
+ #: ../admin/view/wp-slimstat-reports.php:1926
3816
  msgid "Remove filter for"
3817
  msgstr "Enlever le filtre pour"
3818
 
3819
+ #: ../admin/view/wp-slimstat-reports.php:1930
3820
  msgid "Save"
3821
  msgstr ""
3822
 
3823
+ #: ../admin/view/wp-slimstat-reports.php:1933
3824
  msgid "Reset All"
3825
  msgstr "Réinitialiser l'ensemble"
3826
 
3827
+ #: ../admin/view/wp-slimstat-reports.php:1937
3828
  msgid "Current filters:"
3829
  msgstr "Filtres actifs :"
3830
 
3831
+ #: ../admin/wp-slimstat-admin.php:482 ../admin/wp-slimstat-admin.php:493
3832
+ #: ../admin/wp-slimstat-admin.php:495
3833
  msgid "SlimStat"
3834
  msgstr "SlimStat"
3835
 
3836
+ #: ../admin/wp-slimstat-admin.php:489 ../admin/wp-slimstat-admin.php:504
3837
+ #: ../wp-slimstat.php:1799
3838
+ #, fuzzy
3839
+ msgid "Customize"
3840
+ msgstr "Personnaliser le style CSS"
3841
 
3842
+ #: ../admin/wp-slimstat-admin.php:587
3843
  #, fuzzy
3844
  msgid "Pageviews in the last "
3845
  msgstr "Pages durant les 365 derniers jours"
3846
 
3847
+ #: ../admin/wp-slimstat-admin.php:590
3848
  #, fuzzy
3849
  msgid "Unique IPs in the last "
3850
  msgstr "Intervalle unique"
3851
 
3852
+ #: ../admin/wp-slimstat-admin.php:644
3853
  msgid "Show on screen"
3854
  msgstr "Montrer à l'écran"
3855
 
3856
+ #: ../admin/wp-slimstat-admin.php:725
3857
  msgid "Already saved"
3858
  msgstr ""
3859
 
3860
+ #: ../admin/wp-slimstat-admin.php:733
3861
  msgid "Saved"
3862
  msgstr ""
3863
 
3864
+ #: ../admin/wp-slimstat-admin.php:753
3865
  #, fuzzy
3866
  msgid "Delete this filter"
3867
  msgstr "Filtrer les pages vues pour que"
3868
 
3869
+ #: ../admin/wp-slimstat-admin.php:797
3870
  msgid "There was an error updating the following options:"
3871
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
3872
 
3873
+ #: ../admin/wp-slimstat-admin.php:800
3874
  msgid "Your changes have been saved."
3875
  msgstr "Vos réglages ont bien été mis à jour"
3876
 
3877
+ #: ../admin/wp-slimstat-admin.php:823
3878
  msgid "Save Changes"
3879
  msgstr "Enregistrer les modifications"
3880
 
3881
+ #: ../admin/wp-slimstat-admin.php:839
3882
  msgid "Definitions"
3883
  msgstr "Définitions"
3884
 
3885
+ #: ../admin/wp-slimstat-admin.php:842
3886
  msgid "Pageview"
3887
  msgstr "Page vue"
3888
 
3889
+ #: ../admin/wp-slimstat-admin.php:842
3890
  msgid ""
3891
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3892
  "with a \"hit\", which refers to a request for any file from a web server. "
3897
  "d'un serveur Web. WP SlimStat enregistre une page vue chaque fois que le "
3898
  "code de traçage est exécuté"
3899
 
3900
+ #: ../admin/wp-slimstat-admin.php:843
3901
  msgid "(Human) Visit"
3902
  msgstr "Visiteurs humains"
3903
 
3904
+ #: ../admin/wp-slimstat-admin.php:843
3905
  msgid ""
3906
  "A period of interaction between a visitor's browser and your website, ending "
3907
  "when the browser is closed or when the user has been inactive on that site "
3911
  "Web se terminant lorsque le navigateur est fermé ou lorsque l'utilisateur "
3912
  "est inactif sur ce site depuis 30 minutes"
3913
 
3914
+ #: ../admin/wp-slimstat-admin.php:844
3915
  msgid ""
3916
  "Any user who has left a comment on your blog, and is thus identified by "
3917
  "Wordpress as a returning visitor"
3919
  "Un utilisateur qui a laissé un commentaire sur votre blog et est ainsi "
3920
  "identifié par Wordpress comme un visiteur qui a déjà visité votre site"
3921
 
3922
+ #: ../admin/wp-slimstat-admin.php:845
3923
  msgid "Unique IP"
3924
  msgstr "IP uniques"
3925
 
3926
+ #: ../admin/wp-slimstat-admin.php:845
3927
  msgid ""
3928
  "Used to differentiate between multiple requests to download a file from one "
3929
  "internet address (IP) and requests originating from many distinct addresses; "
3936
  "Internet de la provenance d'une consultation, elle est utile, mais pas "
3937
  "parfaite"
3938
 
3939
+ #: ../admin/wp-slimstat-admin.php:846
3940
  msgid ""
3941
  "the originating IP address of a client connecting to a web server through an "
3942
  "HTTP proxy or load balancer"
3944
  "l'adresse IP d'origine d'un client qui se connecte à un serveur Web via un "
3945
  "proxy HTTP ou équilibreur de charge"
3946
 
3947
+ #: ../admin/wp-slimstat-admin.php:847
3948
  msgid "Direct Traffic"
3949
  msgstr "Trafic direct"
3950
 
3951
+ #: ../admin/wp-slimstat-admin.php:847
3952
  msgid ""
3953
  "All those people showing up to your Web site by typing in the URL of your "
3954
  "Web site coming or from a bookmark; some people also call this \"default "
3958
  "votre site Web ou qui viennent à partir d'un signet, certaines personnes "
3959
  "appellent également cela \"trafic par défaut \" ou \"trafic ambiant \""
3960
 
3961
+ #: ../admin/wp-slimstat-admin.php:848
3962
  msgid "Search Engine"
3963
  msgstr "Moteur de recherche"
3964
 
3965
+ #: ../admin/wp-slimstat-admin.php:848
3966
  msgid ""
3967
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3968
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
3970
  "Google, Yahoo, MSN, Ask, et autres; cet item comprendra à la fois votre "
3971
  "trafic rémunéré (PPC/SEM) ainsi que votre trafic organique, prenez en note"
3972
 
3973
+ #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
3974
  msgid "Keywords used by your visitors to find your website on a search engine"
3975
  msgstr ""
3976
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
3977
  "de recherche"
3978
 
3979
+ #: ../admin/wp-slimstat-admin.php:850
3980
  msgid "SERP"
3981
  msgstr "SERP"
3982
 
3983
+ #: ../admin/wp-slimstat-admin.php:850
3984
  msgid ""
3985
  "Short for search engine results page, the Web page that a search engine "
3986
  "returns with the results of its search. The value shown represents your rank "
3990
  "recherche renvoie les résultats de sa recherche. La valeur indiquée "
3991
  "correspond à votre classement (ou la position) dans la liste des résultats"
3992
 
3993
+ #: ../admin/wp-slimstat-admin.php:851
3994
  msgid ""
3995
  "Any program used for accessing a website; this includes browsers, robots, "
3996
  "spiders and any other program that was used to retrieve information from the "
4000
  "navigateurs, robots, spiders et tout autre programme qui a été utilisé pour "
4001
  "extraire des informations du site"
4002
 
4003
+ #: ../admin/wp-slimstat-admin.php:852
4004
  msgid ""
4005
  "A link from one domain to another is said to be outbound from its source "
4006
  "anchor and inbound to its target. This report lists all the links to other "
4010
  "sa cible. Ce rapport répertorie tous les liens vers d'autres sites suivis "
4011
  "par vos visiteurs."
4012
 
4013
+ #: ../admin/wp-slimstat-admin.php:859
4014
  msgid "Basic Filters"
4015
  msgstr "Filtres de base"
4016
 
4017
+ #: ../admin/wp-slimstat-admin.php:862
4018
  msgid "User agent (Firefox, Chrome, ...)"
4019
  msgstr "User agent (Firefox, Chrome, ...)"
4020
 
4021
+ #: ../admin/wp-slimstat-admin.php:863
4022
  msgid "2-letter code (us, ru, de, it, ...)"
4023
  msgstr "code pays à 2 lettres (us, ru, de, it, ...)"
4024
 
4025
+ #: ../admin/wp-slimstat-admin.php:864
4026
  msgid "IP"
4027
  msgstr "IP"
4028
 
4029
+ #: ../admin/wp-slimstat-admin.php:864
4030
  msgid "Visitor's public IP address"
4031
  msgstr " Adresse IP publique du visiteur"
4032
 
4033
+ #: ../admin/wp-slimstat-admin.php:866
4034
  msgid ""
4035
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
4036
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
4040
  "microsoft.com/en-us/library/ee825488(v=cs.20).aspx\">language culture page</"
4041
  "a> (première colonne) pour plus d'informations"
4042
 
4043
+ #: ../admin/wp-slimstat-admin.php:867
4044
  msgid ""
4045
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
4046
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
4050
  "référez-vous à <a target=\"_blank\" href=\"http://php.net/manual/en/function."
4051
  "get-browser.php\">cette page de manuel </a> pour plus d'informations"
4052
 
4053
+ #: ../admin/wp-slimstat-admin.php:868
4054
  msgid "URL accessed on your site"
4055
  msgstr "URL accessible sur votre site"
4056
 
4057
+ #: ../admin/wp-slimstat-admin.php:869
4058
  msgid "Complete address of the referrer page"
4059
  msgstr "Adresse complète de la page référente"
4060
 
4061
+ #: ../admin/wp-slimstat-admin.php:870
4062
  msgid ""
4063
  "Visitors' names according to the cookie set by Wordpress after they leave a "
4064
  "comment"
4066
  "Les noms des visiteurs selon le cookie enregistré par Wordpress, après avoir "
4067
  "laissé un commentaire"
4068
 
4069
+ #: ../admin/wp-slimstat-admin.php:878
4070
  msgid "Advanced Filters"
4071
  msgstr "Filtres Avancés"
4072
 
4073
+ #: ../admin/wp-slimstat-admin.php:881
4074
  msgid "user agent version (9.0, 11, ...)"
4075
  msgstr "user agent version (9.0, 11, ...)"
4076
 
4077
+ #: ../admin/wp-slimstat-admin.php:882
4078
  msgid ""
4079
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
4080
  "all others"
4082
  "1 = moteur de recherche, 2 = appareil mobile, 3 = lecteur de flux "
4083
  "(syndication) , 0 = tous les autres"
4084
 
4085
+ #: ../admin/wp-slimstat-admin.php:883
4086
  msgid "Pageview Attributes"
4087
  msgstr "l'attribut des Pages Vues"
4088
 
4089
+ #: ../admin/wp-slimstat-admin.php:883
4090
  msgid ""
4091
  "this field is set to <em>[pre]</em> if the resource has been accessed "
4092
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4097
  "Link_prefetching_FAQ\"> préchargement des liens</a> ou d'autres techniques "
4098
  "similaires"
4099
 
4100
+ #: ../admin/wp-slimstat-admin.php:884
4101
  msgid "author associated to that post/page when the resource was accessed"
4102
  msgstr "auteur associé à cet article/page lorsque la ressource est accessible"
4103
 
4104
+ #: ../admin/wp-slimstat-admin.php:885
4105
  msgid "ID of the category/term associated to the resource, when available"
4106
  msgstr "ID de la catégorie/terme associée à la ressource, lorsqu'il y en a"
4107
 
4108
+ #: ../admin/wp-slimstat-admin.php:886
4109
  msgid "visitor's originating IP address, if available"
4110
  msgstr "adresse IP d'origine du visiteur, s'il est disponible"
4111
 
4112
+ #: ../admin/wp-slimstat-admin.php:887
4113
  msgid ""
4114
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4115
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
4123
  "\" href=\"http://codex.wordpress.org/Conditional_Tags\">Conditional Tags</a> "
4124
  "pour plus d'informations"
4125
 
4126
+ #: ../admin/wp-slimstat-admin.php:888
4127
  msgid "Screen Resolution"
4128
  msgstr "la résolution de l'écran"
4129
 
4130
+ #: ../admin/wp-slimstat-admin.php:888
4131
  msgid "viewport width and height (1024x768, 800x600, ...)"
4132
  msgstr "résolution de l'écran (1024x768, 800x600, ...)"
4133
 
4134
+ #: ../admin/wp-slimstat-admin.php:889
4135
  msgid ""
4136
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4137
  "visitors"
4139
  "généralement utilisé en conjonction avec <em>n'est pas vide </em>, identifie "
4140
  "les visiteurs humains"
4141
 
4142
+ #: ../admin/wp-slimstat-admin.php:890
4143
  msgid "Date Filters"
4144
  msgstr "Filtres de dates"
4145
 
4146
+ #: ../admin/wp-slimstat-admin.php:890
4147
  msgid ""
4148
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4149
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
4154
  "ex : jour = 1, mois = 1, année = vide, intervalle = -1 fixera un filtre "
4155
  "année à date)"
4156
 
4157
+ #: ../admin/wp-slimstat-admin.php:891
4158
  msgid "SERP Position"
4159
  msgstr "Position SERP "
4160
 
4161
+ #: ../admin/wp-slimstat-admin.php:891
4162
  msgid ""
4163
  "set the filter to Referer contains cd=N&, where N is the position you are "
4164
  "looking for"
4166
  "Réglez le filtre sur Référent contient cd=N&, où N est la position que vous "
4167
  "recherchez"
4168
 
4169
+ #: ../admin/wp-slimstat-admin.php:918
4170
  msgid "Yes"
4171
  msgstr "Oui"
4172
 
4173
+ #: ../admin/wp-slimstat-admin.php:919
4174
  msgid "No"
4175
  msgstr "Non"
4176
 
4177
+ #: ../admin/wp-slimstat-admin.php:920
4178
  msgid "Site Specific"
4179
  msgstr "Spécificités du site"
4180
 
5699
  msgid "c-xy"
5700
  msgstr "Local"
5701
 
5702
+ #: ../wp-slimstat.php:223 ../wp-slimstat.php:515
5703
+ msgid "Notice: Pageview filtered by third-party code"
5704
  msgstr ""
5705
 
5706
+ #: ../wp-slimstat.php:240
5707
+ #, fuzzy, php-format
5708
+ msgid "Error: Malformed URL %s"
5709
  msgstr "Ignorer les utilisateurs"
5710
 
5711
+ #: ../wp-slimstat.php:259
5712
+ #, php-format
5713
+ msgid "Notice: Referrer %s is blacklisted"
5714
  msgstr ""
5715
 
5716
+ #: ../wp-slimstat.php:347
5717
+ #, fuzzy, php-format
5718
+ msgid "Notice: Permalink %s is blacklisted"
5719
  msgstr "le permalien"
5720
 
5721
+ #: ../wp-slimstat.php:358
5722
+ msgid "Error: Empty or not supported IP address format (IPv6)"
 
 
 
 
 
 
 
 
5723
  msgstr ""
5724
 
5725
+ #: ../wp-slimstat.php:367
5726
  #, php-format
5727
+ msgid "Notice: Logged in user %s not tracked"
5728
  msgstr ""
5729
 
5730
+ #: ../wp-slimstat.php:375
5731
  #, php-format
5732
+ msgid "Notice: User with capability %s not tracked"
5733
  msgstr ""
5734
 
5735
+ #: ../wp-slimstat.php:385
5736
+ #, fuzzy, php-format
5737
+ msgid "Notice: User %s is blacklisted"
5738
+ msgstr "le permalien"
5739
+
5740
+ #: ../wp-slimstat.php:406
5741
+ #, fuzzy, php-format
5742
+ msgid "Notice: Spammer %s not tracked"
5743
+ msgstr "Robot ou Crawler"
5744
+
5745
+ #: ../wp-slimstat.php:435
5746
  #, php-format
5747
+ msgid "Notice: IP address %s is blacklisted"
5748
  msgstr ""
5749
 
5750
+ #: ../wp-slimstat.php:464
5751
  #, php-format
5752
+ msgid "Notice: Country %s is blacklisted"
5753
  msgstr ""
5754
 
5755
+ #: ../wp-slimstat.php:473
5756
  #, fuzzy
5757
+ msgid "Notice: Prefetch requests are ignored"
5758
  msgstr "Ignorer les requêtes anticipées"
5759
 
5760
+ #: ../wp-slimstat.php:489
5761
  #, fuzzy
5762
+ msgid "Notice: Bot not tracked"
5763
  msgstr "Robot ou Crawler"
5764
 
5765
+ #: ../wp-slimstat.php:498
5766
  #, php-format
5767
+ msgid "Notice: Browser %s is blacklisted"
5768
+ msgstr ""
5769
+
5770
+ #: ../wp-slimstat.php:528
5771
+ msgid "Error:"
5772
  msgstr ""
5773
 
5774
+ #: ../wp-slimstat.php:1209
5775
  msgid "Invalid payload string. Try clearing your WordPress cache."
5776
  msgstr ""
5777
 
5778
+ #: ../wp-slimstat.php:1219
5779
  msgid "Invalid data signature. Try clearing your WordPress cache."
5780
  msgstr ""
5781
 
5782
+ #: ../wp-slimstat.php:1289
5783
  #, fuzzy
5784
  msgid "There was an error downloading the MaxMind Geolite DB:"
5785
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5786
 
5787
+ #: ../wp-slimstat.php:1297 ../wp-slimstat.php:1306
5788
  #, fuzzy
5789
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5790
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5791
 
5792
+ #: ../wp-slimstat.php:1301
5793
  msgid "Function gzopen not defined. Aborting."
5794
  msgstr ""
5795
 
5796
+ #: ../wp-slimstat.php:1311
5797
  #, fuzzy
5798
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5799
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5800
 
5801
+ #~ msgid "Ignore users (username not found)"
5802
+ #~ msgstr "Utilisateur inconnu (nom d'utilisateur non trouvé)"
5803
+
5804
+ #~ msgid "General"
5805
+ #~ msgstr "Général"
5806
+
5807
+ #, fuzzy
5808
+ #~ msgid "Track Pageviews"
5809
+ #~ msgstr "Total Pages Vues"
5810
+
5811
+ #~ msgid "Visitors and Known Users"
5812
+ #~ msgstr "Visiteurs et utilisateurs connus"
5813
+
5814
+ #~ msgid ""
5815
+ #~ "List all the usernames you don't want to track, separated by commas. "
5816
+ #~ "Please be aware that spaces are <em>not</em> ignored and that usernames "
5817
+ #~ "are case sensitive."
5818
+ #~ msgstr ""
5819
+ #~ "Entrez une liste d'utilisateurs WordPress que vous ne voulez pas suivre, "
5820
+ #~ "séparés par des virgules. Veuillez noter que les espaces <em>sont </em> "
5821
+ #~ "pris en compte et que les noms d'utilisateurs sont sensibles à la casse. "
5822
+ #~ "(min-maj)"
5823
+
5824
+ #~ msgid "Permissions"
5825
+ #~ msgstr "Permissions"
5826
+
5827
+ #~ msgid "Advanced"
5828
+ #~ msgstr "Avancé"
5829
+
5830
+ #~ msgid "Debug Mode"
5831
+ #~ msgstr "Mode Debug"
5832
+
5833
+ #~ msgid "Display the SQL queries used to retrieve the data."
5834
+ #~ msgstr "Afficher les requêtes SQL utilisées pour extraire les données."
5835
+
5836
+ #~ msgid "Map Overlay"
5837
+ #~ msgstr "Carte géographique"
5838
+
5839
+ #~ msgid "Double click on an empty region to reset the zoom level"
5840
+ #~ msgstr ""
5841
+ #~ "Double-cliquez sur une zone vide pour réinitialiser le niveau de zoom"
5842
+
5843
+ #~ msgid "Custom Reports"
5844
+ #~ msgstr "Rapports personnalisés"
5845
+
5846
  #, fuzzy
5847
  #~ msgid "Tracking"
5848
  #~ msgstr "Mode traçage"
5873
  #~ msgid "External Pages"
5874
  #~ msgstr "Pages externes"
5875
 
 
 
 
5876
  #~ msgid "Start From"
5877
  #~ msgstr "Commencer à partir de"
5878
 
5921
  #~ msgid "Views"
5922
  #~ msgstr "Vues"
5923
 
 
 
 
 
 
 
5924
  #~ msgid "Javascript"
5925
  #~ msgstr "Mode Javascript"
5926
 
6370
  #~ msgid "IP Addresses"
6371
  #~ msgstr "Adresses IP"
6372
 
 
 
 
6373
  #~ msgid "Capability to Admin"
6374
  #~ msgstr "Capacité à administrer"
6375
 
languages/wp-slimstat-it_IT.mo CHANGED
Binary file
languages/wp-slimstat-it_IT.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
- "POT-Creation-Date: 2015-10-01 21:04-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
7
  "Language-Team: camu <info@duechiacchiere.it>\n"
@@ -16,124 +16,48 @@ msgstr ""
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../admin/config/addons.php:15
20
- msgid ""
21
- "There was an error retrieving the add-ons list from the server. Please try "
22
- "again later. Error Message:"
23
- msgstr ""
24
-
25
- #: ../admin/config/addons.php:25
26
- msgid ""
27
- "There was an error decoding the add-ons list from the server. Please try "
28
- "again later."
29
- msgstr ""
30
-
31
- #: ../admin/config/addons.php:32 ../admin/config/index.php:255
32
- #: ../admin/wp-slimstat-admin.php:656 ../admin/wp-slimstat-admin.php:670
33
- #: ../wp-slimstat.php:1789
34
- msgid "Add-ons"
35
- msgstr "Add-ons"
36
-
37
- #: ../admin/config/addons.php:33
38
- msgid ""
39
- "Add-ons extend the functionality of Slimstat in many interesting ways. We "
40
- "offer both free and premium (paid) extensions. Each add-on can be installed "
41
- "as a separate plugin, which will receive regular updates via the WordPress "
42
- "Plugins panel. In order to be notified when a new version of a premium add-"
43
- "on is available, please enter the <strong>license key</strong> you received "
44
- "when you purchased it."
45
- msgstr ""
46
-
47
- #: ../admin/config/addons.php:37
48
- #, php-format
49
- msgid ""
50
- "This list is refreshed once daily: <a href=\"%s&amp;force_refresh=true"
51
- "\">click here</a> to clear the cache."
52
- msgstr ""
53
-
54
- #: ../admin/config/addons.php:46
55
- msgid "Add-on"
56
- msgstr "Add-on"
57
-
58
- #: ../admin/config/addons.php:46
59
- msgid "Description"
60
- msgstr "Definizione"
61
-
62
- #: ../admin/config/addons.php:57
63
- #, fuzzy
64
- msgid "Repo Version"
65
- msgstr "Versione CSS"
66
-
67
- #: ../admin/config/addons.php:57
68
- #, fuzzy
69
- msgid "Version"
70
- msgstr "Versione CSS"
71
-
72
- #: ../admin/config/addons.php:69
73
- #, fuzzy
74
- msgid "Your Version:"
75
- msgstr "Versione Browser"
76
-
77
- #: ../admin/config/addons.php:72
78
- msgid "Installed and Active"
79
- msgstr ""
80
-
81
- #: ../admin/config/index.php:47
82
- msgid "Ignore users (username not found)"
83
- msgstr "Ignora utenti (nome utente non trovato)"
84
-
85
- #: ../admin/config/index.php:67
86
  msgid ""
87
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
88
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
89
  msgstr ""
90
 
91
- #: ../admin/config/index.php:82
92
  msgid "Read access: username not found"
93
  msgstr "Accesso ai rapporti: nome utente non valido"
94
 
95
- #: ../admin/config/index.php:92 ../admin/config/index.php:117
96
  msgid ""
97
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
98
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
99
  "information"
100
  msgstr ""
101
 
102
- #: ../admin/config/index.php:107
103
  msgid "Config access: username not found"
104
  msgstr "Accesso alle impostazioni: nome utente non valido"
105
 
106
- #: ../admin/config/index.php:126
107
- msgid "General"
108
- msgstr "Generale"
109
 
110
- #: ../admin/config/index.php:128 ../admin/config/index.php:224
111
  msgid "Tracker"
112
  msgstr "Sistema di tracciamento"
113
 
114
- #: ../admin/config/index.php:129
115
- #, fuzzy
116
- msgid "Track Pageviews"
117
- msgstr "Accessi totali"
118
 
119
- #: ../admin/config/index.php:129
120
  msgid "Turn the tracker on or off, while keeping the reports accessible."
121
  msgstr ""
122
 
123
- #: ../admin/config/index.php:129 ../admin/config/index.php:131
124
- msgid "On"
125
- msgstr ""
126
-
127
- #: ../admin/config/index.php:129 ../admin/config/index.php:131
128
- #: ../admin/view/wp-slimstat-reports.php:1269
129
- msgid "Off"
130
- msgstr ""
131
-
132
- #: ../admin/config/index.php:130
133
  msgid "Tracking Mode"
134
  msgstr "Tipo Tracciamento"
135
 
136
- #: ../admin/config/index.php:130
137
  msgid ""
138
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
139
  "Cache, WP SuperCache, HyperCache, etc). Slimstat will behave pretty much "
@@ -142,20 +66,20 @@ msgid ""
142
  "spammers, search engines and other crawlers</strong> will not be tracked."
143
  msgstr ""
144
 
145
- #: ../admin/config/index.php:130
146
- msgid "Client"
147
  msgstr ""
148
 
149
- #: ../admin/config/index.php:130
150
  #, fuzzy
151
- msgid "Server"
152
  msgstr "Lato server"
153
 
154
- #: ../admin/config/index.php:131
155
  msgid "Stealth Mode"
156
  msgstr ""
157
 
158
- #: ../admin/config/index.php:131
159
  msgid ""
160
  "Do not add the javascript tracking code to your pages, if tracking mode is "
161
  "set to Server. Please note: if enabled, this will prevent the tracker from "
@@ -163,34 +87,42 @@ msgid ""
163
  "etc. This option is ignored is Tracking Mode is set to Client."
164
  msgstr ""
165
 
166
- #: ../admin/config/index.php:132
 
 
 
 
 
 
 
 
167
  #, fuzzy
168
  msgid "Admin Pages"
169
  msgstr "Traccia pagine admin"
170
 
171
- #: ../admin/config/index.php:132
172
  msgid "Enable this option to track your users' activity within the admin."
173
  msgstr ""
174
 
175
- #: ../admin/config/index.php:132
176
  #, fuzzy
177
  msgid "Track"
178
  msgstr "Sistema di tracciamento"
179
 
180
- #: ../admin/config/index.php:132
181
  #, fuzzy
182
  msgid "Do not track"
183
  msgstr "non contiene"
184
 
185
- #: ../admin/config/index.php:134
186
  msgid "WordPress Integration"
187
  msgstr "Integrazione con WordPress"
188
 
189
- #: ../admin/config/index.php:135
190
  msgid "Menu Position"
191
  msgstr "Posizione Menu"
192
 
193
- #: ../admin/config/index.php:135
194
  msgid ""
195
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
196
  "admin bar (if visible)."
@@ -198,122 +130,122 @@ msgstr ""
198
  "Ti consente di decidere se vuoi avere il menu di Slimstat nella navigazione "
199
  "qui a fianco o nella barra di amministrazione."
200
 
201
- #: ../admin/config/index.php:135
202
  msgid "Side Menu"
203
  msgstr "Navigazione laterale"
204
 
205
- #: ../admin/config/index.php:135
206
  msgid "Admin Bar"
207
  msgstr "Barra di amministrazione"
208
 
209
- #: ../admin/config/index.php:136
210
  #, fuzzy
211
  msgid "Posts and Pages"
212
  msgstr "Mostra contatore in Articoli e Pagine"
213
 
214
- #: ../admin/config/index.php:136
215
  msgid ""
216
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
217
- "per post in the last 365 days."
218
- msgstr ""
219
-
220
- #: ../admin/config/index.php:137
221
- msgid "Dashboard Widgets"
222
- msgstr ""
223
-
224
- #: ../admin/config/index.php:137
225
- msgid ""
226
- "Choose if you want to have the most important reports on your WordPress "
227
- "Dashboard. Use the Screen Options dropdown to select which ones to display."
228
  msgstr ""
229
 
230
- #: ../admin/config/index.php:138
231
  msgid "Report Interval"
232
  msgstr ""
233
 
234
- #: ../admin/config/index.php:138
235
  msgid ""
236
  "Enter the time range, in days, that should be used to calculate the value "
237
  "here above."
238
  msgstr ""
239
 
240
- #: ../admin/config/index.php:139
241
  #, fuzzy
242
  msgid "Report Type"
243
  msgstr "Rapporti"
244
 
245
- #: ../admin/config/index.php:139
246
  msgid ""
247
  "Select what kind of information you would like to see displayed on the Posts "
248
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
249
  "IPs consider only one hit per user in the given time range."
250
  msgstr ""
251
 
252
- #: ../admin/config/index.php:139 ../admin/view/wp-slimstat-reports.php:97
253
- #: ../admin/view/wp-slimstat-reports.php:1124
254
- #: ../admin/view/wp-slimstat-reports.php:1285
255
- #: ../admin/view/wp-slimstat-reports.php:1443
256
  msgid "Pageviews"
257
  msgstr "Accessi"
258
 
259
- #: ../admin/config/index.php:139 ../admin/view/wp-slimstat-reports.php:1124
260
- #: ../admin/view/wp-slimstat-reports.php:1129
261
- #: ../admin/view/wp-slimstat-reports.php:1134
262
- #: ../admin/view/wp-slimstat-reports.php:1300
263
- #: ../admin/view/wp-slimstat-reports.php:1345
264
  msgid "Unique IPs"
265
  msgstr "IP unici"
266
 
267
- #: ../admin/config/index.php:140
 
 
 
 
 
 
 
 
 
 
268
  #, fuzzy
269
  msgid "Hide Add-ons"
270
  msgstr "Add-ons"
271
 
272
- #: ../admin/config/index.php:140
273
  msgid ""
274
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
275
  "from the list of plugins in WordPress. Please note that you will still "
276
  "receive updates for hidden add-ons."
277
  msgstr ""
278
 
279
- #: ../admin/config/index.php:142
280
  msgid "Database"
281
  msgstr "Database"
282
 
283
- #: ../admin/config/index.php:143
284
  msgid "Retain data for"
285
  msgstr "Preserva log per"
286
 
287
- #: ../admin/config/index.php:143
288
  msgid ""
289
  "Clean-up log entries older than the number of days specified here above. "
290
  "Enter <strong>0</strong> (number zero) if you want to preserve your data "
291
  "regardless of its age."
292
  msgstr ""
293
 
294
- #: ../admin/config/index.php:143
295
  msgid "Next clean-up on"
296
  msgstr "Prossima pulizia il"
297
 
298
- #: ../admin/config/index.php:143
299
  #, php-format
300
  msgid ""
301
  "Entries logged on or before %s will be archived or deleted according to the "
302
  "option here below."
303
  msgstr ""
304
 
305
- #: ../admin/config/index.php:143 ../admin/view/index.php:102
306
  #: ../admin/view/wp-slimstat-db.php:79
307
- #: ../admin/view/wp-slimstat-reports.php:1269
308
  msgid "days"
309
  msgstr "giorni"
310
 
311
- #: ../admin/config/index.php:144
312
  #, fuzzy
313
  msgid "Delete records"
314
  msgstr "righe"
315
 
316
- #: ../admin/config/index.php:144
317
  msgid ""
318
  "If DB space is not an issue, you can decide to archive older records in "
319
  "another table, instead of deleting them. This way performance is preserved, "
@@ -323,237 +255,188 @@ msgid ""
323
  "is uninstalled. Make sure to backup your data before you proceed."
324
  msgstr ""
325
 
326
- #: ../admin/config/index.php:149 ../admin/config/index.php:210
327
- msgid "Reports"
328
- msgstr "Rapporti"
 
329
 
330
- #: ../admin/config/index.php:151
331
- msgid "Formats and Conversions"
 
 
 
 
 
 
332
  msgstr ""
333
 
334
- #: ../admin/config/index.php:152
335
- msgid "Number Format"
336
- msgstr "Formato dei numeri"
337
 
338
- #: ../admin/config/index.php:152
339
- msgid "Choose the number format you want to use for your reports."
 
 
 
 
340
  msgstr ""
341
 
342
- #: ../admin/config/index.php:153
343
- #, fuzzy
344
- msgid "Date Format"
345
- msgstr "Dati e formati"
346
 
347
- #: ../admin/config/index.php:153
348
  msgid ""
349
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
350
- "Format</a> to use when displaying a pageview's date."
 
351
  msgstr ""
352
 
353
- #: ../admin/config/index.php:154
354
- #, fuzzy
355
- msgid "Time Format"
356
- msgstr "Formato dei numeri"
357
 
358
- #: ../admin/config/index.php:154
359
  msgid ""
360
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
361
- "Format</a> to use when displaying a pageview's time."
 
 
 
362
  msgstr ""
363
 
364
- #: ../admin/config/index.php:155
365
  #, fuzzy
366
- msgid "Use Display Name"
367
- msgstr "Mostra nome completo"
 
 
 
 
368
 
369
- #: ../admin/config/index.php:155
370
  msgid ""
371
- "By default, users are listed by their usernames. Use this option to "
372
- "visualize their display names instead."
373
  msgstr ""
374
 
375
- #: ../admin/config/index.php:156
376
  #, fuzzy
377
- msgid "Use Titles"
378
- msgstr "Mostra titoli"
379
 
380
- #: ../admin/config/index.php:156
381
  msgid ""
382
- "Slimstat converts your permalinks into post, page and category titles. "
383
- "Disable this feature if you need to see the URL in your reports."
 
384
  msgstr ""
385
 
386
- #: ../admin/config/index.php:157
387
- msgid "Convert IP Addresses"
388
- msgstr "Converti indirizzi IP"
389
-
390
- #: ../admin/config/index.php:157
391
- msgid "Display provider names instead of IP addresses."
392
  msgstr ""
393
 
394
- #: ../admin/config/index.php:159
395
- msgid "Functionality"
396
- msgstr "Funzionalit&agrave;"
397
-
398
- #: ../admin/config/index.php:160
399
- msgid "SlimScroll"
400
- msgstr "SlimScroll"
401
-
402
- #: ../admin/config/index.php:160
403
  msgid ""
404
- "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
405
- "scrollbar."
 
 
406
  msgstr ""
407
 
408
- #: ../admin/co
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
+ "POT-Creation-Date: 2015-12-24 09:22-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
7
  "Language-Team: camu <info@duechiacchiere.it>\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../admin/config/index.php:50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  msgid ""
21
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
22
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
23
  msgstr ""
24
 
25
+ #: ../admin/config/index.php:65
26
  msgid "Read access: username not found"
27
  msgstr "Accesso ai rapporti: nome utente non valido"
28
 
29
+ #: ../admin/config/index.php:75 ../admin/config/index.php:100
30
  msgid ""
31
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
32
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
33
  "information"
34
  msgstr ""
35
 
36
+ #: ../admin/config/index.php:90
37
  msgid "Config access: username not found"
38
  msgstr "Accesso alle impostazioni: nome utente non valido"
39
 
40
+ #: ../admin/config/index.php:109
41
+ msgid "Basic"
42
+ msgstr ""
43
 
44
+ #: ../admin/config/index.php:111 ../admin/config/index.php:132
45
  msgid "Tracker"
46
  msgstr "Sistema di tracciamento"
47
 
48
+ #: ../admin/config/index.php:112
49
+ msgid "Enable Tracking"
50
+ msgstr "Attiva tracciamento"
 
51
 
52
+ #: ../admin/config/index.php:112
53
  msgid "Turn the tracker on or off, while keeping the reports accessible."
54
  msgstr ""
55
 
56
+ #: ../admin/config/index.php:113
 
 
 
 
 
 
 
 
 
57
  msgid "Tracking Mode"
58
  msgstr "Tipo Tracciamento"
59
 
60
+ #: ../admin/config/index.php:113
61
  msgid ""
62
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
63
  "Cache, WP SuperCache, HyperCache, etc). Slimstat will behave pretty much "
66
  "spammers, search engines and other crawlers</strong> will not be tracked."
67
  msgstr ""
68
 
69
+ #: ../admin/config/index.php:113
70
+ msgid "Client Side"
71
  msgstr ""
72
 
73
+ #: ../admin/config/index.php:113
74
  #, fuzzy
75
+ msgid "Server Side"
76
  msgstr "Lato server"
77
 
78
+ #: ../admin/config/index.php:114
79
  msgid "Stealth Mode"
80
  msgstr ""
81
 
82
+ #: ../admin/config/index.php:114
83
  msgid ""
84
  "Do not add the javascript tracking code to your pages, if tracking mode is "
85
  "set to Server. Please note: if enabled, this will prevent the tracker from "
87
  "etc. This option is ignored is Tracking Mode is set to Client."
88
  msgstr ""
89
 
90
+ #: ../admin/config/index.php:114 ../admin/view/wp-slimstat-reports.php:1359
91
+ msgid "Off"
92
+ msgstr ""
93
+
94
+ #: ../admin/config/index.php:114
95
+ msgid "On"
96
+ msgstr ""
97
+
98
+ #: ../admin/config/index.php:115
99
  #, fuzzy
100
  msgid "Admin Pages"
101
  msgstr "Traccia pagine admin"
102
 
103
+ #: ../admin/config/index.php:115
104
  msgid "Enable this option to track your users' activity within the admin."
105
  msgstr ""
106
 
107
+ #: ../admin/config/index.php:115
108
  #, fuzzy
109
  msgid "Track"
110
  msgstr "Sistema di tracciamento"
111
 
112
+ #: ../admin/config/index.php:115
113
  #, fuzzy
114
  msgid "Do not track"
115
  msgstr "non contiene"
116
 
117
+ #: ../admin/config/index.php:117
118
  msgid "WordPress Integration"
119
  msgstr "Integrazione con WordPress"
120
 
121
+ #: ../admin/config/index.php:118
122
  msgid "Menu Position"
123
  msgstr "Posizione Menu"
124
 
125
+ #: ../admin/config/index.php:118
126
  msgid ""
127
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
128
  "admin bar (if visible)."
130
  "Ti consente di decidere se vuoi avere il menu di Slimstat nella navigazione "
131
  "qui a fianco o nella barra di amministrazione."
132
 
133
+ #: ../admin/config/index.php:118
134
  msgid "Side Menu"
135
  msgstr "Navigazione laterale"
136
 
137
+ #: ../admin/config/index.php:118
138
  msgid "Admin Bar"
139
  msgstr "Barra di amministrazione"
140
 
141
+ #: ../admin/config/index.php:119
142
  #, fuzzy
143
  msgid "Posts and Pages"
144
  msgstr "Mostra contatore in Articoli e Pagine"
145
 
146
+ #: ../admin/config/index.php:119
147
  msgid ""
148
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
149
+ "per post within the timeframe specified here below."
 
 
 
 
 
 
 
 
 
 
150
  msgstr ""
151
 
152
+ #: ../admin/config/index.php:120
153
  msgid "Report Interval"
154
  msgstr ""
155
 
156
+ #: ../admin/config/index.php:120
157
  msgid ""
158
  "Enter the time range, in days, that should be used to calculate the value "
159
  "here above."
160
  msgstr ""
161
 
162
+ #: ../admin/config/index.php:121
163
  #, fuzzy
164
  msgid "Report Type"
165
  msgstr "Rapporti"
166
 
167
+ #: ../admin/config/index.php:121
168
  msgid ""
169
  "Select what kind of information you would like to see displayed on the Posts "
170
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
171
  "IPs consider only one hit per user in the given time range."
172
  msgstr ""
173
 
174
+ #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:100
175
+ #: ../admin/view/wp-slimstat-reports.php:109
176
+ #: ../admin/view/wp-slimstat-reports.php:1375
177
+ #: ../admin/view/wp-slimstat-reports.php:1533
178
  msgid "Pageviews"
179
  msgstr "Accessi"
180
 
181
+ #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:110
182
+ #: ../admin/view/wp-slimstat-reports.php:286
183
+ #: ../admin/view/wp-slimstat-reports.php:526
184
+ #: ../admin/view/wp-slimstat-reports.php:1390
185
+ #: ../admin/view/wp-slimstat-reports.php:1435
186
  msgid "Unique IPs"
187
  msgstr "IP unici"
188
 
189
+ #: ../admin/config/index.php:122
190
+ msgid "Dashboard Widgets"
191
+ msgstr ""
192
+
193
+ #: ../admin/config/index.php:122
194
+ msgid ""
195
+ "Choose if you want to have the most important reports on your WordPress "
196
+ "Dashboard. Use the Screen Options dropdown to select which ones to display."
197
+ msgstr ""
198
+
199
+ #: ../admin/config/index.php:123
200
  #, fuzzy
201
  msgid "Hide Add-ons"
202
  msgstr "Add-ons"
203
 
204
+ #: ../admin/config/index.php:123
205
  msgid ""
206
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
207
  "from the list of plugins in WordPress. Please note that you will still "
208
  "receive updates for hidden add-ons."
209
  msgstr ""
210
 
211
+ #: ../admin/config/index.php:125
212
  msgid "Database"
213
  msgstr "Database"
214
 
215
+ #: ../admin/config/index.php:126
216
  msgid "Retain data for"
217
  msgstr "Preserva log per"
218
 
219
+ #: ../admin/config/index.php:126
220
  msgid ""
221
  "Clean-up log entries older than the number of days specified here above. "
222
  "Enter <strong>0</strong> (number zero) if you want to preserve your data "
223
  "regardless of its age."
224
  msgstr ""
225
 
226
+ #: ../admin/config/index.php:126
227
  msgid "Next clean-up on"
228
  msgstr "Prossima pulizia il"
229
 
230
+ #: ../admin/config/index.php:126
231
  #, php-format
232
  msgid ""
233
  "Entries logged on or before %s will be archived or deleted according to the "
234
  "option here below."
235
  msgstr ""
236
 
237
+ #: ../admin/config/index.php:126 ../admin/view/index.php:102
238
  #: ../admin/view/wp-slimstat-db.php:79
239
+ #: ../admin/view/wp-slimstat-reports.php:1359
240
  msgid "days"
241
  msgstr "giorni"
242
 
243
+ #: ../admin/config/index.php:127
244
  #, fuzzy
245
  msgid "Delete records"
246
  msgstr "righe"
247
 
248
+ #: ../admin/config/index.php:127
249
  msgid ""
250
  "If DB space is not an issue, you can decide to archive older records in "
251
  "another table, instead of deleting them. This way performance is preserved, "
255
  "is uninstalled. Make sure to backup your data before you proceed."
256
  msgstr ""
257
 
258
+ #: ../admin/config/index.php:134
259
+ #, fuzzy
260
+ msgid "Advanced Options"
261
+ msgstr "Filtri avanzati"
262
 
263
+ #: ../admin/config/index.php:135
264
+ msgid "Session Duration"
265
+ msgstr "Durata della sessione"
266
+
267
+ #: ../admin/config/index.php:135
268
+ msgid ""
269
+ "How many seconds should a human session last? Google Analytics sets it to "
270
+ "1800 seconds."
271
  msgstr ""
272
 
273
+ #: ../admin/config/index.php:135 ../admin/config/index.php:205
274
+ msgid "seconds"
275
+ msgstr "secondi"
276
 
277
+ #: ../admin/config/index.php:136
278
+ msgid "Extend Session"
279
+ msgstr "Estendi sessione"
280
+
281
+ #: ../admin/config/index.php:136
282
+ msgid "Extend the duration of a session each time the user visits a new page."
283
  msgstr ""
284
 
285
+ #: ../admin/config/index.php:137
286
+ msgid "Enable CDN"
287
+ msgstr "Attiva CDN"
 
288
 
289
+ #: ../admin/config/index.php:137
290
  msgid ""
291
+ "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
292
+ "by serving our tracking code from their fast and reliable network (free "
293
+ "service)."
294
  msgstr ""
295
 
296
+ #: ../admin/config/index.php:138
297
+ msgid "Extensions to Track"
298
+ msgstr "Estensioni da tracciare"
 
299
 
300
+ #: ../admin/config/index.php:138
301
  msgid ""
302
+ "List all the file extensions that you want to be treated as Downloads. "
303
+ "Please note that links pointing to external resources (i.e. PDFs on a "
304
+ "different website) are considered Downloads and not Outbound Links (and "
305
+ "tracked as such), if their extension matches one of the ones listed here "
306
+ "below."
307
  msgstr ""
308
 
309
+ #: ../admin/config/index.php:140
310
  #, fuzzy
311
+ msgid "Internal and Outbound Links"
312
+ msgstr "Link in uscita"
313
+
314
+ #: ../admin/config/index.php:141
315
+ msgid "Track Outbound Clicks"
316
+ msgstr "Traccia link in uscita"
317
 
318
+ #: ../admin/config/index.php:141
319
  msgid ""
320
+ "Track when your visitors click on link to external websites. This option "
321
+ "required Spy Mode to be enabled."
322
  msgstr ""
323
 
324
+ #: ../admin/config/index.php:142
325
  #, fuzzy
326
+ msgid "Track Coordinates"
327
+ msgstr "Tipo Tracciamento"
328
 
329
+ #: ../admin/config/index.php:142
330
  msgid ""
331
+ "Collect mouse coordinates and other information for clicks on internal "
332
+ "links. Strongly recommended if you're using the heatmap add-on. By default, "
333
+ "this information is only collected for external links."
334
  msgstr ""
335
 
336
+ #: ../admin/config/index.php:143
337
+ msgid "No Callback"
 
 
 
 
338
  msgstr ""
339
 
340
+ #: ../admin/config/index.php:143
 
 
 
 
 
 
 
 
341
  msgid ""
342
+ "Track the event but do not invoke the callback function on links marked with "
343
+ "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
344
+ "attribute contains one of these strings (separated by comma). Useful to "
345
+ "prevent conflicts with lightbox and similar libraries."
346
  msgstr ""
347