Slimstat Analytics - Version 4.0

Version Description

  • [Note] A brave new world is now ready to be explored: Slimstat 4.0. This version introduces a totally redesigned database architecture, new streamlined tracking code, new heuristic user agent parser, new filters and much more. You will surely notice the performance improvements!
  • [Note] Our dev team should have read this article a long time ago. But it's never too late, and we can guarantee you that the new denormalized table structure will make your report generation so quick that your jaw will drop. Sure, the table size will increase 50%, but in the age where space is cheap, the real precious resource is time. The time you won't have to wait for your report to appear!
  • [Note] Upon update, Slimstat will convert the old table structure to the new one. Just to stay on the safe side, the old tables will not be removed (wp_slim_stats will be renamed to wp_slim_stats_3). After a transition period, we will offer the option to remove the old tables with a button in the settings.
  • [Note] Please make sure that your MySQL user can issue a RENAME command.
  • [Note] We are now working on our premium add-ons to make them compatible with Slimstat 4.0. Some of them might stop working until a new update is available.
  • [New] MaxMind upload folder path can now be filtered (thank you, chrisl27).
  • [New] The new tracker is measuring both the screen resolution and the viewport size. Here you can find more information on this topic.
  • [New] The library wp-slimstat-db.php has been cleaned up and reorganized (20% smaller!). Please note: some of the function signatures have changed (order of parameters), please update your custom code accordingly or contact us for more information.
  • [New] Internal downloads are now tracked as regular pageviews, with content_type
Download this release

Release Info

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

Code changes from version 3.9.9 to 4.0

admin/config/index.php CHANGED
@@ -18,15 +18,15 @@ switch ($config_tabs[$current_tab-1]){
18
  case __('General','wp-slimstat'):
19
  $options_on_this_page = array(
20
  'general_tracking_header' => array('description' => __('Tracker','wp-slimstat'), 'type' => 'section_header'),
21
- 'is_tracking' => array( 'description' => __('Enable Tracking','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Turn the tracker on or off, but keep the reports accessible.','wp-slimstat') ),
22
- 'track_admin_pages' => array( 'description' => __('Monitor Admin Pages','wp-slimstat'), 'type' => 'yesno', 'long_description' => __("Enable this option to track your users' activity within the admin.",'wp-slimstat') ),
23
- 'enable_javascript' => array('description' => __('Enable Spy Mode','wp-slimstat'), 'type' => 'yesno', 'long_description' => __("Collect information about screen resolutions, outbound links, downloads, etc. If Tracking Mode is set to Javascript, this data will be tracked regardless of which value you set for this option.",'wp-slimstat')),
24
- 'javascript_mode' => array( 'description' => __('Tracking Mode','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Select <strong>Javascript</strong> if you are using a caching plugin (W3 Total Cache, WP SuperCache, HyperCache, etc). Slimstat will behave pretty much like Google Analytics, and visitors whose browser does not support Javascript will be ignored. A nice side effect is that <strong>most spammers, search engines and other crawlers</strong> will not be tracked.','wp-slimstat'), 'custom_label_yes' => __('Javascript','wp-slimstat'), 'custom_label_no' => __('Server-side','wp-slimstat') ),
25
 
26
  'general_integration_header' => array('description' => __('WordPress Integration','wp-slimstat'), 'type' => 'section_header'),
27
  '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') ),
28
  'add_posts_column' => array( 'description' => __('Add Stats to 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') ),
29
- 'posts_column_day_interval' => array( 'description' => __('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') ),
30
  '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') ),
31
 
32
  'general_database_header' => array('description' => __('Database','wp-slimstat'), 'type' => 'section_header'),
@@ -80,7 +80,7 @@ switch ($config_tabs[$current_tab-1]){
80
 
81
  'filters_categories_header' => array('description' => __('Profiling','wp-slimstat'), 'type' => 'section_header'),
82
  'ignore_spammers' => array('description' => __('Ignore Spammers','wp-slimstat'), 'type' => 'yesno', 'long_description' => __("Enable this option if you don't want to track visits from users identified as spammers by third-party tools like Akismet. Pageviews generated by users whose comments are later marked as spam, will also be removed from the database.",'wp-slimstat')),
83
- 'ignore_bots' => array('description' => __('Ignore Bots','wp-slimstat'), 'type' => 'yesno', 'long_description' => __("Turn on this feature if you want to have the accuracy level of server-side tracking, but not the inconvenience of getting your database clogged with pageviews generated by crawlers, spiders, search engine bots, etc. Please note that in Javascript Mode, bots are ignored regardless of this setting.",'wp-slimstat')),
84
  'ignore_resources' => array('description' => __('Permalinks','wp-slimstat'), 'type' => 'textarea', 'long_description' => __("List all the URLs on your website that you don't want to track, separated by commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. Wildcards: <code>*</code> matches 'any string, including the empty string', <code>!</code> matches 'any character'. For example, <code>/abou*</code> will match /about and /abound, <code>/abo*t</code> will match /aboundant and /about, <code>/abo!t</code> will match /about and /abort. Strings are case-insensitive.",'wp-slimstat')),
85
  'ignore_countries' => array('description' => __('Countries','wp-slimstat'), 'type' => 'textarea', 'long_description' => __("Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to track, separated by commas.",'wp-slimstat')),
86
  'ignore_browsers' => array('description' => __('User Agents','wp-slimstat'), 'type' => 'textarea', 'long_description' => __("Browsers (user agents) you don't want to track, separated by commas. You can specify the browser's version adding a slash after the name (i.e. <em>Firefox/3.6</em>). Wildcards: <code>*</code> matches 'any string, including the empty string', <code>!</code> matches 'any character'. For example, <code>Chr*</code> will match Chrome and Chromium, <code>IE/!.0</code> will match IE/7.0 and IE/8.0. Strings are case-insensitive.",'wp-slimstat')),
18
  case __('General','wp-slimstat'):
19
  $options_on_this_page = array(
20
  'general_tracking_header' => array('description' => __('Tracker','wp-slimstat'), 'type' => 'section_header'),
21
+ 'is_tracking' => array( 'description' => __('Tracking','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Turn the tracker on or off, but keep the reports accessible.','wp-slimstat'), 'custom_label_yes' => __('On','wp-slimstat'), 'custom_label_no' => __('Off','wp-slimstat') ),
22
+ 'track_admin_pages' => array( 'description' => __('Admin Pages','wp-slimstat'), 'type' => 'yesno', 'long_description' => __("Enable this option to track your users' activity within the admin.",'wp-slimstat'), 'custom_label_yes' => __('Track','wp-slimstat'), 'custom_label_no' => __('Do not track','wp-slimstat') ),
23
+ 'enable_javascript' => array('description' => __('Stealth Mode','wp-slimstat'), 'type' => 'yesno', 'long_description' => __("Collect information about screen resolutions, outbound links, downloads, etc. If Tracking Mode is set to Javascript, this data will be tracked regardless of which value you set for this option. In Accurate mode, this option will remove the tracking code from your pages' source code.",'wp-slimstat'), 'custom_label_yes' => __('Off','wp-slimstat'), 'custom_label_no' => __('On','wp-slimstat') ),
24
+ 'javascript_mode' => array( 'description' => __('Tracking Mode','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Select <strong>Client</strong> if you are using a caching plugin (W3 Total Cache, WP SuperCache, HyperCache, etc). Slimstat will behave pretty much like Google Analytics, and visitors whose browser does not support Javascript will be ignored. A nice side effect is that <strong>most spammers, search engines and other crawlers</strong> will not be tracked.','wp-slimstat'), 'custom_label_yes' => __('Client','wp-slimstat'), 'custom_label_no' => __('Server','wp-slimstat') ),
25
 
26
  'general_integration_header' => array('description' => __('WordPress Integration','wp-slimstat'), 'type' => 'section_header'),
27
  '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') ),
28
  'add_posts_column' => array( 'description' => __('Add Stats to 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') ),
29
+ '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') ),
30
  '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') ),
31
 
32
  'general_database_header' => array('description' => __('Database','wp-slimstat'), 'type' => 'section_header'),
80
 
81
  'filters_categories_header' => array('description' => __('Profiling','wp-slimstat'), 'type' => 'section_header'),
82
  'ignore_spammers' => array('description' => __('Ignore Spammers','wp-slimstat'), 'type' => 'yesno', 'long_description' => __("Enable this option if you don't want to track visits from users identified as spammers by third-party tools like Akismet. Pageviews generated by users whose comments are later marked as spam, will also be removed from the database.",'wp-slimstat')),
83
+ 'ignore_bots' => array('description' => __('Ignore Bots','wp-slimstat'), 'type' => 'yesno', 'long_description' => __("Turn on this feature if you want to have the accuracy level of server-side tracking, but not the inconvenience of getting your database clogged with pageviews generated by crawlers, spiders, search engine bots, etc. Please note that in Client mode, bots are ignored regardless of this setting.",'wp-slimstat')),
84
  'ignore_resources' => array('description' => __('Permalinks','wp-slimstat'), 'type' => 'textarea', 'long_description' => __("List all the URLs on your website that you don't want to track, separated by commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. Wildcards: <code>*</code> matches 'any string, including the empty string', <code>!</code> matches 'any character'. For example, <code>/abou*</code> will match /about and /abound, <code>/abo*t</code> will match /aboundant and /about, <code>/abo!t</code> will match /about and /abort. Strings are case-insensitive.",'wp-slimstat')),
85
  'ignore_countries' => array('description' => __('Countries','wp-slimstat'), 'type' => 'textarea', 'long_description' => __("Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to track, separated by commas.",'wp-slimstat')),
86
  'ignore_browsers' => array('description' => __('User Agents','wp-slimstat'), 'type' => 'textarea', 'long_description' => __("Browsers (user agents) you don't want to track, separated by commas. You can specify the browser's version adding a slash after the name (i.e. <em>Firefox/3.6</em>). Wildcards: <code>*</code> matches 'any string, including the empty string', <code>!</code> matches 'any character'. For example, <code>Chr*</code> will match Chrome and Chromium, <code>IE/!.0</code> will match IE/7.0 and IE/8.0. Strings are case-insensitive.",'wp-slimstat')),
admin/config/maintenance.php CHANGED
@@ -10,28 +10,26 @@ wp_slimstat_reports::init();
10
  if (!empty($_REQUEST['action'])){
11
  switch ($_REQUEST['action']){
12
  case 'activate-indexes':
13
- wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats ADD INDEX stats_resource_idx(resource(20))");
14
- wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats ADD INDEX stats_browser_idx(browser_id)");
15
- wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->base_prefix}slim_browsers ADD INDEX browser_all_idx(browser,version,platform,css_version,type)");
16
- wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->base_prefix}slim_screenres ADD INDEX screenres_all_idx(resolution,colordepth,antialias)");
17
  wp_slimstat_admin::show_alert_message(__('Congrats! Slimstat is now optimized for <a href="http://www.youtube.com/watch?v=ygE01sOhzz0" target="_blank">ludicrous speed</a>.','wp-slimstat'), 'wp-ui-highlight below-h2');
18
  break;
19
 
20
  case 'deactivate-indexes':
21
- wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats DROP INDEX stats_resource_idx");
22
- wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats DROP INDEX stats_browser_idx");
23
- wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->base_prefix}slim_browsers DROP INDEX browser_all_idx");
24
- wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->base_prefix}slim_screenres DROP INDEX screenres_all_idx");
25
  wp_slimstat_admin::show_alert_message(__('Indexing has been disabled. Enjoy the extra database space!','wp-slimstat'), 'wp-ui-highlight below-h2');
26
  break;
27
 
28
  case 'delete-records':
29
  $rows_affected = 0;
30
- if (key_exists($_POST['f'], wp_slimstat_reports::$dropdown_filter_names)){
31
- $rows_affected = wp_slimstat::$wpdb->query('
32
  DELETE t1.*
33
- FROM '.wp_slimstat_db::$sql_filters['from']['all'].'
34
- WHERE 1=1 '.wp_slimstat_db::$sql_filters['where']['all']);
35
  }
36
  wp_slimstat_admin::show_alert_message(intval($rows_affected).' '.__('records deleted from your database.','wp-slimstat'), 'wp-ui-highlight below-h2');
37
  break;
@@ -62,31 +60,115 @@ if (!empty($_REQUEST['action'])){
62
  }
63
  break;
64
 
65
- case 'restore-archived-records':
66
- wp_slimstat::$wpdb->query("
67
- INSERT INTO {$GLOBALS['wpdb']->prefix}slim_stats (ip, other_ip, user, language, country, domain, referer, resource, searchterms, browser_id, screenres_id, content_info_id, plugins, notes, visit_id, server_latency, page_performance, dt)
68
- SELECT tsa.ip, tsa.other_ip, tsa.user, tsa.language, tsa.country, tsa.domain, tsa.referer, tsa.resource, tsa.searchterms, tsa.browser_id, tsa.screenres_id, tsa.content_info_id, tsa.plugins, tsa.notes, tsa.visit_id, tsa.server_latency, tsa.page_performance, tsa.dt
69
- FROM {$GLOBALS['wpdb']->prefix}slim_stats_archive tsa");
70
- wp_slimstat::$wpdb->query("DELETE tsa FROM {$GLOBALS['wpdb']->prefix}slim_stats_archive tsa");
71
- wp_slimstat::$wpdb->query("OPTIMIZE TABLE {$GLOBALS['wpdb']->prefix}slim_stats_archive");
72
- wp_slimstat_admin::show_alert_message(__('All the archived records were successfully restored.','wp-slimstat'), 'wp-ui-highlight below-h2');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  break;
74
 
75
  case 'restore-views':
76
- $GLOBALS['wpdb']->query("DELETE FROM {$GLOBALS['wpdb']->prefix}usermeta WHERE meta_key LIKE '%slim%'");
 
77
  wp_slimstat_admin::show_alert_message(__('Your reports were successfully restored to their default arrangement.','wp-slimstat'), 'wp-ui-highlight below-h2');
78
  break;
79
 
80
  case 'switch-engine':
81
  $have_innodb = wp_slimstat::$wpdb->get_results("SHOW VARIABLES LIKE 'have_innodb'", ARRAY_A);
82
  if ($have_innodb[0]['Value'] != 'YES') return;
83
-
84
  wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats ENGINE = InnoDB");
85
- wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_outbound ENGINE = InnoDB");
86
- wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->base_prefix}slim_browsers ENGINE = InnoDB");
87
- wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->base_prefix}slim_screenres ENGINE = InnoDB");
88
- wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->base_prefix}slim_content_info ENGINE = InnoDB");
89
-
90
  wp_slimstat_admin::show_alert_message(__('Your Slimstat tables have been successfully converted to InnoDB.','wp-slimstat'), 'wp-ui-highlight below-h2');
91
  break;
92
 
@@ -97,8 +179,8 @@ if (!empty($_REQUEST['action'])){
97
  break;
98
 
99
  case 'truncate-table':
100
- wp_slimstat::$wpdb->query("DELETE tob FROM {$GLOBALS['wpdb']->prefix}slim_outbound tob");
101
- wp_slimstat::$wpdb->query("OPTIMIZE TABLE {$GLOBALS['wpdb']->prefix}slim_outbound");
102
  wp_slimstat::$wpdb->query("DELETE t1 FROM {$GLOBALS['wpdb']->prefix}slim_stats t1");
103
  wp_slimstat::$wpdb->query("OPTIMIZE TABLE {$GLOBALS['wpdb']->prefix}slim_stats");
104
  wp_slimstat_admin::show_alert_message(__('All the records were successfully deleted.','wp-slimstat'), 'wp-ui-highlight below-h2');
@@ -113,10 +195,7 @@ if (!empty($_REQUEST['action'])){
113
  $check_index = wp_slimstat::$wpdb->get_results("SHOW INDEX FROM {$GLOBALS['wpdb']->prefix}slim_stats WHERE Key_name = 'stats_resource_idx'");
114
  $details_wp_slim_tables = array_merge(
115
  wp_slimstat::$wpdb->get_results("SHOW TABLE STATUS LIKE '{$GLOBALS['wpdb']->prefix}slim_stats'", ARRAY_A),
116
- wp_slimstat::$wpdb->get_results("SHOW TABLE STATUS LIKE '{$GLOBALS['wpdb']->prefix}slim_outbound'", ARRAY_A),
117
- wp_slimstat::$wpdb->get_results("SHOW TABLE STATUS LIKE '{$GLOBALS['wpdb']->base_prefix}slim_browsers'", ARRAY_A),
118
- wp_slimstat::$wpdb->get_results("SHOW TABLE STATUS LIKE '{$GLOBALS['wpdb']->base_prefix}slim_screenres'", ARRAY_A),
119
- wp_slimstat::$wpdb->get_results("SHOW TABLE STATUS LIKE '{$GLOBALS['wpdb']->base_prefix}slim_content_info'", ARRAY_A),
120
  wp_slimstat::$wpdb->get_results("SHOW TABLE STATUS LIKE '{$GLOBALS['wpdb']->prefix}slim_stats_archive'", ARRAY_A)
121
  );
122
  $have_innodb = wp_slimstat::$wpdb->get_results("SHOW VARIABLES LIKE 'have_innodb'", ARRAY_A);
@@ -178,8 +257,8 @@ $suffixes = array('bytes', 'KB', 'MB', 'GB', 'TB');
178
 
179
  <select name="f" id="slimstat-filter-name">
180
  <?php
181
- foreach (wp_slimstat_reports::$dropdown_filter_names as $a_filter_id => $a_filter_name){
182
- echo "<option value='$a_filter_id'>$a_filter_name</option>";
183
  }
184
  ?>
185
  </select>
@@ -214,16 +293,7 @@ $suffixes = array('bytes', 'KB', 'MB', 'GB', 'TB');
214
  <span class="description"><?php _e('Erase all the information collected so far by Slimstat, including the archive. This operation <strong>does not</strong> reset your settings.','wp-slimstat') ?></span>
215
  </td>
216
  </tr>
217
- <tr>
218
- <th scope="row">
219
- <a class="button-secondary" href="<?php echo wp_slimstat_admin::$config_url.$current_tab ?>&amp;action=restore-archived-records"
220
- onclick="return(confirm('<?php _e('Are you sure you want to restore all the archived pageviews?','wp-slimstat'); ?>'))"><?php _e("Restore Archive",'wp-slimstat'); ?></a>
221
- </th>
222
- <td>
223
- <span class="description"><?php _e("Move all the archived pageviews back to the main Slimstat table. Please note that, unless you disabled the daily purge, this data will be archived again at the next scheduled clean-up.",'wp-slimstat') ?></span>
224
- </td>
225
- </tr>
226
- <tr class="alternate">
227
  <th scope="row">
228
  <a class="button-secondary" href="<?php echo wp_slimstat_admin::$config_url.$current_tab ?>&amp;action=truncate-archive"
229
  onclick="return(confirm('<?php _e('Are you sure you want to PERMANENTLY DELETE ALL the records from your archive?','wp-slimstat'); ?>'))"><?php _e('Delete Archive','wp-slimstat'); ?></a>
@@ -232,7 +302,7 @@ $suffixes = array('bytes', 'KB', 'MB', 'GB', 'TB');
232
  <span class="description"><?php _e("Erase all the archived records. This operation cannot be undone.",'wp-slimstat') ?></span>
233
  </td>
234
  </tr>
235
- <tr>
236
  <?php if (empty($check_index)): ?>
237
  <th scope="row">
238
  <a class="button-secondary" href="<?php echo wp_slimstat_admin::$config_url.$current_tab ?>&amp;action=activate-indexes"><?php _e("Improve Performance",'wp-slimstat'); ?></a>
@@ -250,6 +320,15 @@ $suffixes = array('bytes', 'KB', 'MB', 'GB', 'TB');
250
  </td>
251
  <?php endif ?>
252
  </tr>
 
 
 
 
 
 
 
 
 
253
  <tr>
254
  <td colspan="2" class="slimstat-options-section-header"><?php _e('Import and Export','wp-slimstat') ?></td>
255
  </tr>
@@ -271,7 +350,7 @@ $suffixes = array('bytes', 'KB', 'MB', 'GB', 'TB');
271
  <tr>
272
  <th scope="row"><?php _e('Tracker Error Code','wp-slimstat') ?></th>
273
  <td>
274
- <?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).' '.__('at','wp-slimstat').' '.date_i18n(wp_slimstat::$options['time_format'], wp_slimstat::$options['last_tracker_error'][2], true):__('No Errors so far','wp-slimstat'); ?>
275
  <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>
276
  </td>
277
  </tr>
10
  if (!empty($_REQUEST['action'])){
11
  switch ($_REQUEST['action']){
12
  case 'activate-indexes':
13
+ wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats ADD INDEX {$GLOBALS['wpdb']->prefix}stats_resource_idx(resource(20))");
14
+ wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats ADD INDEX {$GLOBALS['wpdb']->prefix}stats_browser_idx(browser(10))");
15
+ wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats ADD INDEX {$GLOBALS['wpdb']->prefix}stats_searchterms_idx(searchterms(15))");
 
16
  wp_slimstat_admin::show_alert_message(__('Congrats! Slimstat is now optimized for <a href="http://www.youtube.com/watch?v=ygE01sOhzz0" target="_blank">ludicrous speed</a>.','wp-slimstat'), 'wp-ui-highlight below-h2');
17
  break;
18
 
19
  case 'deactivate-indexes':
20
+ wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats DROP INDEX {$GLOBALS['wpdb']->prefix}stats_resource_idx");
21
+ wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats DROP INDEX {$GLOBALS['wpdb']->prefix}stats_browser_idx");
22
+ wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats DROP INDEX {$GLOBALS['wpdb']->prefix}stats_searchterms_idx");
 
23
  wp_slimstat_admin::show_alert_message(__('Indexing has been disabled. Enjoy the extra database space!','wp-slimstat'), 'wp-ui-highlight below-h2');
24
  break;
25
 
26
  case 'delete-records':
27
  $rows_affected = 0;
28
+ if (key_exists($_POST['f'], wp_slimstat_db::$filters_names)){
29
+ $rows_affected = wp_slimstat::$wpdb->query("
30
  DELETE t1.*
31
+ FROM {$GLOBALS['wpdb']->prefix}slim_stats t1
32
+ WHERE ".wp_slimstat_db::$sql_where[ 'columns' ]);
33
  }
34
  wp_slimstat_admin::show_alert_message(intval($rows_affected).' '.__('records deleted from your database.','wp-slimstat'), 'wp-ui-highlight below-h2');
35
  break;
60
  }
61
  break;
62
 
63
+ case 'import-data-from-old-tables':
64
+ wp_slimstat::$wpdb->query( "
65
+ INSERT INTO {$GLOBALS['wpdb']->prefix}slim_stats (
66
+ id,
67
+ ip,
68
+ other_ip,
69
+ username,
70
+ country,
71
+ referer,
72
+ resource,
73
+ searchterms,
74
+
75
+ plugins,
76
+ notes,
77
+ visit_id,
78
+ server_latency,
79
+ page_performance,
80
+
81
+ browser,
82
+ browser_version,
83
+ browser_type,
84
+ platform,
85
+ language,
86
+ user_agent,
87
+
88
+ screen_width,
89
+ screen_height,
90
+
91
+ content_type,
92
+ category,
93
+ author,
94
+ content_id,
95
+
96
+ outbound_resource,
97
+
98
+ dt
99
+ )
100
+ SELECT
101
+ t1.id,
102
+ t1.ip,
103
+ t1.other_ip,
104
+ NULLIF(t1.user, ''),
105
+ NULLIF(t1.country, ''),
106
+ NULLIF(t1.referer, ''),
107
+ NULLIF(t1.resource, ''),
108
+ NULLIF(t1.searchterms, ''),
109
+ NULLIF(t1.plugins, ''),
110
+ NULLIF(t1.notes, ''),
111
+ t1.visit_id,
112
+ t1.server_latency,
113
+ t1.page_performance,
114
+
115
+ NULLIF(tb.browser, ''),
116
+ NULLIF(tb.version, ''),
117
+ tb.type,
118
+ NULLIF(tb.platform, ''),
119
+ NULLIF(t1.language, ''),
120
+ NULLIF(tb.user_agent, ''),
121
+
122
+ 9812,
123
+ 9812,
124
+
125
+ NULLIF(tci.content_type, ''),
126
+ NULLIF(tci.category, ''),
127
+ NULLIF(tci.author, ''),
128
+ tci.content_id,
129
+
130
+ NULL,
131
+
132
+ t1.dt
133
+
134
+ FROM {$GLOBALS['wpdb']->prefix}slim_stats_3 AS t1
135
+ INNER JOIN {$GLOBALS['wpdb']->prefix}slim_browsers AS tb ON t1.browser_id = tb.browser_id
136
+ INNER JOIN {$GLOBALS['wpdb']->prefix}slim_content_info AS tci ON t1.content_info_id = tci.content_info_id" );
137
+
138
+ // Copy the events
139
+ wp_slimstat::$wpdb->query( "
140
+ INSERT INTO {$GLOBALS['wpdb']->prefix}slim_events (
141
+ type,
142
+ event_description,
143
+ notes,
144
+ position,
145
+ id,
146
+ dt
147
+ )
148
+ SELECT
149
+ tob.type,
150
+ SUBSTRING(tob.notes, LOCATE('Event:', tob.notes)+6, LOCATE(',', tob.notes, LOCATE('Event:', tob.notes)+6) - LOCATE('Event:', tob.notes)-6),
151
+ SUBSTRING(tob.notes, 1, LOCATE('Event:', tob.notes) - 3),
152
+ tob.position,
153
+ tob.id,
154
+ tob.dt
155
+ FROM {$GLOBALS['wpdb']->prefix}slim_outbound AS tob" );
156
+ wp_slimstat_admin::show_alert_message(__('Your data was successfully imported. You may now drop the old tables: wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, wp_slim_outbound. Please note: if you are using Slimstat in a MU network, you will need to run the import script on all your sites before you can delete the old tables.','wp-slimstat'), 'wp-ui-highlight below-h2');
157
  break;
158
 
159
  case 'restore-views':
160
+ $GLOBALS['wpdb']->query("DELETE FROM {$GLOBALS['wpdb']->prefix}usermeta WHERE meta_key LIKE '%meta-box-order_slimstat%'");
161
+ $GLOBALS['wpdb']->query("DELETE FROM {$GLOBALS['wpdb']->prefix}usermeta WHERE meta_key LIKE '%metaboxhidden_slimstat%'");
162
  wp_slimstat_admin::show_alert_message(__('Your reports were successfully restored to their default arrangement.','wp-slimstat'), 'wp-ui-highlight below-h2');
163
  break;
164
 
165
  case 'switch-engine':
166
  $have_innodb = wp_slimstat::$wpdb->get_results("SHOW VARIABLES LIKE 'have_innodb'", ARRAY_A);
167
  if ($have_innodb[0]['Value'] != 'YES') return;
168
+
169
  wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats ENGINE = InnoDB");
170
+ wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_events ENGINE = InnoDB");
171
+
 
 
 
172
  wp_slimstat_admin::show_alert_message(__('Your Slimstat tables have been successfully converted to InnoDB.','wp-slimstat'), 'wp-ui-highlight below-h2');
173
  break;
174
 
179
  break;
180
 
181
  case 'truncate-table':
182
+ wp_slimstat::$wpdb->query("DELETE te FROM {$GLOBALS['wpdb']->prefix}slim_events te");
183
+ wp_slimstat::$wpdb->query("OPTIMIZE TABLE {$GLOBALS['wpdb']->prefix}slim_events");
184
  wp_slimstat::$wpdb->query("DELETE t1 FROM {$GLOBALS['wpdb']->prefix}slim_stats t1");
185
  wp_slimstat::$wpdb->query("OPTIMIZE TABLE {$GLOBALS['wpdb']->prefix}slim_stats");
186
  wp_slimstat_admin::show_alert_message(__('All the records were successfully deleted.','wp-slimstat'), 'wp-ui-highlight below-h2');
195
  $check_index = wp_slimstat::$wpdb->get_results("SHOW INDEX FROM {$GLOBALS['wpdb']->prefix}slim_stats WHERE Key_name = 'stats_resource_idx'");
196
  $details_wp_slim_tables = array_merge(
197
  wp_slimstat::$wpdb->get_results("SHOW TABLE STATUS LIKE '{$GLOBALS['wpdb']->prefix}slim_stats'", ARRAY_A),
198
+ wp_slimstat::$wpdb->get_results("SHOW TABLE STATUS LIKE '{$GLOBALS['wpdb']->prefix}slim_events'", ARRAY_A),
 
 
 
199
  wp_slimstat::$wpdb->get_results("SHOW TABLE STATUS LIKE '{$GLOBALS['wpdb']->prefix}slim_stats_archive'", ARRAY_A)
200
  );
201
  $have_innodb = wp_slimstat::$wpdb->get_results("SHOW VARIABLES LIKE 'have_innodb'", ARRAY_A);
257
 
258
  <select name="f" id="slimstat-filter-name">
259
  <?php
260
+ foreach (wp_slimstat_db::$filters_names as $a_filter_id => $a_filter_info){
261
+ echo "<option value='$a_filter_id'>{$a_filter_info[0]}</option>";
262
  }
263
  ?>
264
  </select>
293
  <span class="description"><?php _e('Erase all the information collected so far by Slimstat, including the archive. This operation <strong>does not</strong> reset your settings.','wp-slimstat') ?></span>
294
  </td>
295
  </tr>
296
+ <tr >
 
 
 
 
 
 
 
 
 
297
  <th scope="row">
298
  <a class="button-secondary" href="<?php echo wp_slimstat_admin::$config_url.$current_tab ?>&amp;action=truncate-archive"
299
  onclick="return(confirm('<?php _e('Are you sure you want to PERMANENTLY DELETE ALL the records from your archive?','wp-slimstat'); ?>'))"><?php _e('Delete Archive','wp-slimstat'); ?></a>
302
  <span class="description"><?php _e("Erase all the archived records. This operation cannot be undone.",'wp-slimstat') ?></span>
303
  </td>
304
  </tr>
305
+ <tr class="alternate">
306
  <?php if (empty($check_index)): ?>
307
  <th scope="row">
308
  <a class="button-secondary" href="<?php echo wp_slimstat_admin::$config_url.$current_tab ?>&amp;action=activate-indexes"><?php _e("Improve Performance",'wp-slimstat'); ?></a>
320
  </td>
321
  <?php endif ?>
322
  </tr>
323
+ <tr>
324
+ <th scope="row">
325
+ <a class="button-secondary" href="<?php echo wp_slimstat_admin::$config_url.$current_tab ?>&amp;action=import-data-from-old-tables"
326
+ onclick="return(confirm('<?php _e('Hold on tight, we are about to import all your old data. Are you sure you want to proceed?','wp-slimstat'); ?>'))"><?php _e('Import old data','wp-slimstat'); ?></a>
327
+ </th>
328
+ <td>
329
+ <span class="description"><?php _e("Import all the records from the old table structure. No data will be deleted from your database.",'wp-slimstat') ?></span>
330
+ </td>
331
+ </tr>
332
  <tr>
333
  <td colspan="2" class="slimstat-options-section-header"><?php _e('Import and Export','wp-slimstat') ?></td>
334
  </tr>
350
  <tr>
351
  <th scope="row"><?php _e('Tracker Error Code','wp-slimstat') ?></th>
352
  <td>
353
+ <?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'); ?>
354
  <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>
355
  </td>
356
  </tr>
admin/css/slimstat.css CHANGED
@@ -40,21 +40,21 @@
40
  width: 15%;
41
  }
42
  #slimstat-date-filters{
43
- padding: 5px 5px 5px 10px;
44
  position: absolute;
45
  right: 5px;
46
  top: 5px;
47
  }
48
  #slimstat-date-filters>a{
49
  color: #fff;
 
50
  }
51
- #slimstat-date-filters>a:after{
52
  content: "\f140";
53
  font: normal 20px/1 'dashicons';
54
- float: right;
55
- vertical-align: bottom;
56
  }
57
- #slimstat-date-filters>a.open:after{
58
  content: "\f142";
59
  }
60
  #slimstat-date-filters span{
@@ -64,8 +64,8 @@
64
  display: none;
65
  padding: 5px 0 5px 5px;
66
  position: absolute;
67
- right: 0;
68
- top: 30px;
69
  width: 450px;
70
  z-index: 120;
71
  }
@@ -127,7 +127,7 @@
127
  }
128
 
129
  /* Single Report */
130
- .wrap.slimstat .postbox{
131
  float: left;
132
  height: 282px;
133
  margin-right: .5%;
@@ -143,6 +143,12 @@
143
  width:100%;
144
  }
145
 
 
 
 
 
 
 
146
  /* Single Report: Header and Header Buttons */
147
  .wrap.slimstat .postbox .hndle{
148
  font-size: 1.2em;
@@ -171,6 +177,9 @@
171
  .wrap.slimstat .hndle .slimstat-tooltip-trigger.corner{
172
  right: 0;
173
  }
 
 
 
174
 
175
  /* Single Report: Header and Header Buttons - Pagination */
176
  [id^=slim_] p.pagination{
40
  width: 15%;
41
  }
42
  #slimstat-date-filters{
43
+ padding: 4px 10px 6px 20px;
44
  position: absolute;
45
  right: 5px;
46
  top: 5px;
47
  }
48
  #slimstat-date-filters>a{
49
  color: #fff;
50
+ white-space: nowrap;
51
  }
52
+ #slimstat-date-filters>a::after{
53
  content: "\f140";
54
  font: normal 20px/1 'dashicons';
55
+ vertical-align: bottom;
 
56
  }
57
+ #slimstat-date-filters>a.open::after{
58
  content: "\f142";
59
  }
60
  #slimstat-date-filters span{
64
  display: none;
65
  padding: 5px 0 5px 5px;
66
  position: absolute;
67
+ right: -4px;
68
+ top: 35px;
69
  width: 450px;
70
  z-index: 120;
71
  }
127
  }
128
 
129
  /* Single Report */
130
+ .wrap.slimstat .postbox, .wrap.slimstat .sortable-placeholder{
131
  float: left;
132
  height: 282px;
133
  margin-right: .5%;
143
  width:100%;
144
  }
145
 
146
+ .sortable-placeholder{
147
+ background-color: #ccc;
148
+ border: 1px dashed #bbb;
149
+ margin-bottom:20px
150
+ }
151
+
152
  /* Single Report: Header and Header Buttons */
153
  .wrap.slimstat .postbox .hndle{
154
  font-size: 1.2em;
177
  .wrap.slimstat .hndle .slimstat-tooltip-trigger.corner{
178
  right: 0;
179
  }
180
+ .slimstat .no-refresh .refresh{
181
+ display: none;
182
+ }
183
 
184
  /* Single Report: Header and Header Buttons - Pagination */
185
  [id^=slim_] p.pagination{
admin/images/flags/ap.png ADDED
Binary file
admin/images/platforms/cellos.png ADDED
Binary file
admin/images/platforms/chromeos.png ADDED
Binary file
admin/images/platforms/rim-os.png ADDED
Binary file
admin/images/platforms/winnt.png DELETED
Binary file
admin/images/platforms/winphone7-5.png ADDED
Binary file
admin/images/platforms/winphone8-1.png ADDED
Binary file
admin/images/platforms/winphone8.png ADDED
Binary file
admin/js/slimstat.admin.js CHANGED
@@ -1,4 +1,4 @@
1
- if (typeof SlimStatAdminParams == 'undefined') SlimStatAdminParams = {current_tab: 1, async_load: 'no', refresh_interval: 0, expand_details: 'no', datepicker_image: '', text_direction: '', use_slimscroll: 'yes'};
2
  var SlimStatAdmin = {
3
  // Public variables
4
  chart_data: [],
@@ -241,6 +241,23 @@ var SlimStatAdmin = {
241
 
242
  // Remove filters set by other Ajax buttons
243
  jQuery('.slimstat-temp-filter').remove();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  }
245
  }
246
 
@@ -363,7 +380,7 @@ jQuery(function(){
363
  }
364
  }
365
 
366
- data = {action: 'slimstat_load_report', report_id: report_id, security: jQuery('#meta-box-order-nonce').val(), current_tab: SlimStatAdminParams.current_tab};
367
  SlimStatAdmin.refresh_report(report_id, data);
368
 
369
  if (SlimStatAdminParams.use_slimscroll == 'yes'){
@@ -382,7 +399,7 @@ jQuery(function(){
382
  if (SlimStatAdminParams.async_load == 'yes'){
383
  jQuery('div[id^=slim_]').each(function(){
384
  report_id = jQuery(this).attr('id');
385
- data = {action: 'slimstat_load_report', report_id: report_id, security: jQuery('#meta-box-order-nonce').val(), current_tab: SlimStatAdminParams.current_tab}
386
  SlimStatAdmin.refresh_report(report_id, data);
387
  });
388
  }
@@ -413,8 +430,8 @@ jQuery(function(){
413
  });
414
  });
415
 
416
- // Enable ads on click
417
- jQuery(document).on('click', '#slimstat-enable-ads-toggle', function(e){
418
  e.preventDefault();
419
  jQuery('.updated.slimstat-notice').slideUp(1000);
420
  data = {action: 'slimstat_enable_ads_feature', security: jQuery('#meta-box-order-nonce').val()};
@@ -529,7 +546,7 @@ jQuery(function(){
529
  e.preventDefault();
530
  var inner_html = '';
531
 
532
- data = {action: 'slimstat_manage_filters', security: jQuery('#meta-box-order-nonce').val(), type: 'load', current_tab: SlimStatAdminParams.current_tab};
533
  jQuery.ajax({
534
  url: ajaxurl,
535
  type: 'post',
@@ -565,7 +582,7 @@ jQuery(function(){
565
  jQuery(document).on('click', '.slimstat-delete-filter', function(e){
566
  e.preventDefault();
567
 
568
- data = {action: 'slimstat_manage_filters', security: jQuery('#meta-box-order-nonce').val(), type: 'delete', filter_id: jQuery(this).attr('data-filter-id'), current_tab: SlimStatAdminParams.current_tab};
569
  jQuery.ajax({
570
  url: ajaxurl,
571
  type: 'post',
1
+ if (typeof SlimStatAdminParams == 'undefined') SlimStatAdminParams = {async_load: 'no', refresh_interval: 0, expand_details: 'no', datepicker_image: '', text_direction: '', use_slimscroll: 'yes'};
2
  var SlimStatAdmin = {
3
  // Public variables
4
  chart_data: [],
241
 
242
  // Remove filters set by other Ajax buttons
243
  jQuery('.slimstat-temp-filter').remove();
244
+ },
245
+
246
+ get_query_string_value : function( key ) {
247
+ query_string = window.location.search.substring( 1 );
248
+
249
+ // Split into key/value pairs
250
+ pairs = query_string.split("&");
251
+
252
+ // Convert the array of strings into an object
253
+ for ( i in pairs ) {
254
+ pair_array = pairs[i].split('=');
255
+ if ( pair_array[ 0 ] == key ) {
256
+ return pair_array[ 1 ];
257
+ }
258
+ }
259
+
260
+ return '';
261
  }
262
  }
263
 
380
  }
381
  }
382
 
383
+ data = {action: 'slimstat_load_report', report_id: report_id, security: jQuery('#meta-box-order-nonce').val(), page: SlimStatAdmin.get_query_string_value( 'page' ) };
384
  SlimStatAdmin.refresh_report(report_id, data);
385
 
386
  if (SlimStatAdminParams.use_slimscroll == 'yes'){
399
  if (SlimStatAdminParams.async_load == 'yes'){
400
  jQuery('div[id^=slim_]').each(function(){
401
  report_id = jQuery(this).attr('id');
402
+ data = {action: 'slimstat_load_report', report_id: report_id, security: jQuery('#meta-box-order-nonce').val(), page: SlimStatAdmin.get_query_string_value( 'page' ) }
403
  SlimStatAdmin.refresh_report(report_id, data);
404
  });
405
  }
430
  });
431
  });
432
 
433
+ // Accept terms and conditions
434
+ jQuery(document).on('click', '#slimstat-accept-terms', function(e){
435
  e.preventDefault();
436
  jQuery('.updated.slimstat-notice').slideUp(1000);
437
  data = {action: 'slimstat_enable_ads_feature', security: jQuery('#meta-box-order-nonce').val()};
546
  e.preventDefault();
547
  var inner_html = '';
548
 
549
+ data = {action: 'slimstat_manage_filters', security: jQuery('#meta-box-order-nonce').val(), type: 'load', page: SlimStatAdmin.get_query_string_value( 'page' ) };
550
  jQuery.ajax({
551
  url: ajaxurl,
552
  type: 'post',
582
  jQuery(document).on('click', '.slimstat-delete-filter', function(e){
583
  e.preventDefault();
584
 
585
+ data = {action: 'slimstat_manage_filters', security: jQuery('#meta-box-order-nonce').val(), type: 'delete', filter_id: jQuery(this).attr('data-filter-id'), page: SlimStatAdmin.get_query_string_value( 'page' ) };
586
  jQuery.ajax({
587
  url: ajaxurl,
588
  type: 'post',
admin/lang/dynamic_strings.php CHANGED
@@ -46,6 +46,9 @@ __('palm','wp-slimstat'), // Palm
46
  __('wap','wp-slimstat'), // WAP
47
  __('java','wp-slimstat'), // Java
48
  __('winphone7','wp-slimstat'), // Windows Phone
 
 
 
49
  __('wince','wp-slimstat'), // Windows CE
50
  __('symbianos','wp-slimstat'), // Symbian OS
51
  __('blackberry os','wp-slimstat'), // BlackBerry OS
46
  __('wap','wp-slimstat'), // WAP
47
  __('java','wp-slimstat'), // Java
48
  __('winphone7','wp-slimstat'), // Windows Phone
49
+ __('winphone7.5','wp-slimstat'), // Windows Phone
50
+ __('winphone8','wp-slimstat'), // Windows Phone
51
+ __('winphone8.1','wp-slimstat'), // Windows Phone
52
  __('wince','wp-slimstat'), // Windows CE
53
  __('symbianos','wp-slimstat'), // Symbian OS
54
  __('blackberry os','wp-slimstat'), // BlackBerry OS
admin/lang/wp-slimstat-de_DE.mo CHANGED
Binary file
admin/lang/wp-slimstat-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-12-12 10:23-0500\n"
6
- "PO-Revision-Date: 2014-12-12 10:23-0500\n"
7
  "Last-Translator: Get Used To IT <support@getused.to.it>\n"
8
  "Language-Team: TechnoViel <klaus@technoviel.de>\n"
9
  "Language: de_DE\n"
@@ -16,7 +16,7 @@ msgstr ""
16
  "X-Generator: Poedit 1.6.9\n"
17
  "X-Poedit-SearchPath-0: ../..\n"
18
 
19
- #: ../../admin/config/addons.php:14
20
  msgid ""
21
  "There was an error retrieving the add-ons list from the server. Please try "
22
  "again later. Error Message:"
@@ -24,7 +24,7 @@ msgstr ""
24
  "Es gabe einen Fehler beim Abruf der Add-on-Liste vom Server. Bitte später "
25
  "nochmals versuchen. Fehlermeldung:"
26
 
27
- #: ../../admin/config/addons.php:23
28
  msgid ""
29
  "There was an error decoding the add-ons list from the server. Please try "
30
  "again later."
@@ -32,13 +32,13 @@ msgstr ""
32
  "Fehler beim Auslesen der Add-on-Liste vom Server. Versuchen Sie es später "
33
  "nochmals."
34
 
35
- #: ../../admin/config/addons.php:29 ../../admin/config/index.php:9
36
- #: ../../admin/wp-slimstat-admin.php:512 ../../admin/wp-slimstat-admin.php:529
37
- #: ../../wp-slimstat.php:1351
38
  msgid "Add-ons"
39
  msgstr "Add-Ons"
40
 
41
- #: ../../admin/config/addons.php:30
42
  #, fuzzy
43
  msgid ""
44
  "Add-ons extend the functionality of Slimstat in many interesting ways. We "
@@ -56,10 +56,17 @@ msgstr ""
56
  "strong> eingegeben werden."
57
 
58
  #: ../../admin/config/addons.php:36
 
 
 
 
 
 
 
59
  msgid "Add-on"
60
  msgstr "Add-on"
61
 
62
- #: ../../admin/config/addons.php:36
63
  msgid "Description"
64
  msgstr "Beschreibung"
65
 
@@ -67,33 +74,34 @@ msgstr "Beschreibung"
67
  msgid "General"
68
  msgstr "Allgemein"
69
 
70
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:45
71
- msgid "Views"
72
- msgstr "Letzte Aufrufe"
 
73
 
74
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:69
75
  msgid "Filters"
76
  msgstr "Filter"
77
 
78
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:140
79
  msgid "Permissions"
80
  msgstr "Berechtigungen"
81
 
82
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:217
83
  msgid "Advanced"
84
  msgstr "Erweitert"
85
 
86
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:249
87
  msgid "Maintenance"
88
  msgstr "Wartung"
89
 
90
- #: ../../admin/config/index.php:14 ../../admin/config/index.php:147
91
- #: ../../admin/wp-slimstat-admin.php:558 ../../admin/wp-slimstat-admin.php:561
92
- #: ../../wp-slimstat.php:1354
93
  msgid "Settings"
94
  msgstr "Einstellungen"
95
 
96
- #: ../../admin/config/index.php:20 ../../admin/config/index.php:223
97
  #, fuzzy
98
  msgid "Tracker"
99
  msgstr "Benutzer tracken"
@@ -200,145 +208,165 @@ msgstr ""
200
  #, fuzzy
201
  msgid ""
202
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
203
- "per post."
204
  msgstr ""
205
  "F&uuml;gt eine Spalte in der Beitrags&uuml;bersicht ein, welche die Anzahl "
206
  "der Zugriffe pro Beitrag anzeigt."
207
 
208
- #: ../../admin/config/index.php:30
209
- msgid "Database"
210
- msgstr "Datenbank"
 
 
 
 
 
 
 
211
 
212
- #: ../../admin/config/index.php:31
213
  #, fuzzy
214
- msgid "Delete records"
215
- msgstr "Datensätze"
216
 
217
- #: ../../admin/config/index.php:31
218
  msgid ""
219
- "If database space is not an issue, you can decide to archive older records "
220
- "in another table, instead of deleting them. This way performance is "
221
- "preserved, but you will still be able to access your data at a later time, "
222
- "if needed."
223
  msgstr ""
224
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
225
  #: ../../admin/config/index.php:32
 
 
 
 
226
  msgid "Retain data for"
227
  msgstr ""
228
 
229
- #: ../../admin/config/index.php:32
230
  msgid ""
231
  "Clean-up log entries older than the number of days specified here above. "
232
  "Enter <strong>0</strong> (number zero) if you want to preserve your data "
233
  "regardless of its age."
234
  msgstr ""
235
 
236
- #: ../../admin/config/index.php:32
237
  msgid "Next clean-up on"
238
  msgstr "N&auml;chste Bereinigung "
239
 
240
- #: ../../admin/config/index.php:32
241
  #, fuzzy, php-format
242
- msgid "Entries logged on or before %s will be permanently deleted."
 
 
243
  msgstr ""
244
  "Eintr&auml;ge, die vor dem %s erfasst wurden werden unwiderruflich gel&ouml;"
245
  "scht."
246
 
247
- #: ../../admin/config/index.php:32 ../../admin/view/index.php:100
248
- #: ../../admin/view/wp-slimstat-db.php:74
249
- #: ../../admin/view/wp-slimstat-reports.php:800
 
250
  msgid "days"
251
  msgstr "Tage"
252
 
253
- #: ../../admin/config/index.php:47
254
  #, fuzzy
255
- msgid "Data and Formats"
256
- msgstr "Datum und Uhrzeit"
257
-
258
- #: ../../admin/config/index.php:48
259
- msgid "Convert IP Addresses"
260
- msgstr "IP-Adressen umwandeln"
261
 
262
- #: ../../admin/config/index.php:48
263
- msgid "Display provider names instead of IP addresses."
 
 
 
 
 
 
264
  msgstr ""
265
 
266
  #: ../../admin/config/index.php:49
 
 
 
 
267
  msgid "Number Format"
268
  msgstr "Zahlenformat"
269
 
270
- #: ../../admin/config/index.php:49
271
  #, fuzzy
272
  msgid "Choose the number format you want to use for your reports."
273
  msgstr "Das zu verwendente Zahlenformat ausw&auml;hlen (metrisch o. imperial)."
274
 
275
- #: ../../admin/config/index.php:50
276
- msgid "Enable SOV"
277
- msgstr "SOV aktivieren"
278
-
279
- #: ../../admin/config/index.php:50
280
- msgid ""
281
- "In linguistic typology, a subject-object-verb (SOV) language is one in which "
282
- "the subject, object, and verb of a sentence appear in that order, like in "
283
- "Japanese."
284
- msgstr ""
285
-
286
  #: ../../admin/config/index.php:51
287
- msgid "Show Display Name"
288
- msgstr "Spitznamen anzeigen"
289
 
290
  #: ../../admin/config/index.php:51
291
- #, fuzzy
292
  msgid ""
293
- "By default, users are listed by their usernames. Use this option to "
294
- "visualize their display names instead."
295
  msgstr ""
296
- "Standardmäßig werden die Benutzernamen aufgelistet. Benutzen Sie diese "
297
- "Option, um dafür stattdessen die Spitznamen anzeigen zu lassen,"
298
 
299
  #: ../../admin/config/index.php:52
300
  #, fuzzy
301
- msgid "Show User Agent"
302
- msgstr "Top Browser"
303
 
304
  #: ../../admin/config/index.php:52
305
- #, fuzzy
306
  msgid ""
307
- "Choose if you want to see the browser name or a complete user agent string "
308
- "when hovering on browser icons."
309
  msgstr ""
310
- "Wählen Sie, ob der Browsername oder ein kompletter USER AGENT STRING "
311
- "angezeigt werden soll, wenn Sie auf die Browsersymbole zeigen."
312
 
313
  #: ../../admin/config/index.php:53
314
- msgid "Show Titles"
315
- msgstr "Titel anzeigen"
 
316
 
317
  #: ../../admin/config/index.php:53
 
318
  msgid ""
319
- "Slimstat converts your permalinks into post and page titles. Disable this "
320
- "feature if you need to see the URL in your reports."
321
  msgstr ""
 
 
322
 
323
  #: ../../admin/config/index.php:54
324
- msgid "Date Format"
325
- msgstr "Datum"
 
326
 
327
  #: ../../admin/config/index.php:54
328
  msgid ""
329
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
330
- "Format</a> to use when displaying a pageview's date."
331
  msgstr ""
332
 
333
  #: ../../admin/config/index.php:55
334
- #, fuzzy
335
- msgid "Time Format"
336
- msgstr "Zahlenformat"
337
 
338
  #: ../../admin/config/index.php:55
339
- msgid ""
340
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
341
- "Format</a> to use when displaying a pageview's time."
342
  msgstr ""
343
 
344
  #: ../../admin/config/index.php:57
@@ -403,7 +431,7 @@ msgstr ""
403
  "Anzeige der aktuell aktiven Besucher alle X Sekunden aktualisieren. Null "
404
  "deaktiviert diese Funktion."
405
 
406
- #: ../../admin/config/index.php:64 ../../admin/config/index.php:225
407
  msgid "seconds"
408
  msgstr "Sekunden"
409
 
@@ -411,42 +439,57 @@ msgstr "Sekunden"
411
  msgid "Specify the number of items in the Activity Log."
412
  msgstr ""
413
 
414
- #: ../../admin/config/index.php:66
 
 
 
 
 
415
  #, fuzzy
416
- msgid "Activity Log Extended"
417
- msgstr "Aktuell (erweitert)"
418
 
419
- #: ../../admin/config/index.php:66
420
  #, fuzzy
421
  msgid ""
422
- "Choose if you want to see outbound links listed in the Activity Log. It "
423
- "might slow down the rendering of this report."
 
 
 
 
 
 
 
 
 
 
 
 
 
424
  msgstr ""
425
- "Wählen Sie, ob die ausgehenden Links unter Aktuell angezeigt werden sollen. "
426
- "Dies könnte die Erstellung des Berichtes verlansamen oder Fehler bei "
427
- "langsameren System anzeigen."
428
 
429
- #: ../../admin/config/index.php:71
430
  #, fuzzy
431
  msgid "Visitors and Known Users"
432
  msgstr "Bekannte Benutzer"
433
 
434
- #: ../../admin/config/index.php:72
435
  #, fuzzy
436
  msgid "Track Registered Users"
437
  msgstr "Benutzer tracken"
438
 
439
- #: ../../admin/config/index.php:72
440
  #, fuzzy
441
  msgid "Enable this option to track logged in users."
442
  msgstr "Ja falls eingeloggte Benutzer getrackt werden sollen."
443
 
444
- #: ../../admin/config/index.php:73
445
  #, fuzzy
446
  msgid "Blacklist by Username"
447
  msgstr "IP-Adresse"
448
 
449
- #: ../../admin/config/index.php:73
450
  #, fuzzy
451
  msgid ""
452
  "List all the usernames you don't want to track, separated by commas. Please "
@@ -457,12 +500,12 @@ msgstr ""
457
  "Beistriche. Leerzeichen werden <em>nicht</em> ignoriert und Gro&szlig;-/ "
458
  "Kleinschreibung wird beachtet."
459
 
460
- #: ../../admin/config/index.php:74
461
  #, fuzzy
462
  msgid "Blacklist by IP Address"
463
  msgstr "IP-Adresse"
464
 
465
- #: ../../admin/config/index.php:74
466
  #, fuzzy
467
  msgid ""
468
  "List all the IP addresses you don't want to track, separated by commas. Each "
@@ -477,12 +520,12 @@ msgstr ""
477
  "(z.B. <em>192.168.0.0/24</em>) definiert werden. Bei inkorrektem Format kann "
478
  "WP SlimStat evtl. nicht die Pageviews korrekt tracken."
479
 
480
- #: ../../admin/config/index.php:75
481
  #, fuzzy
482
  msgid "Blacklist by Capability"
483
  msgstr "Benutzer nach Browserf&auml;higkeiten"
484
 
485
- #: ../../admin/config/index.php:75
486
  #, fuzzy
487
  msgid ""
488
  "Users having at least one of the <a href='http://codex.wordpress.org/"
@@ -493,15 +536,15 @@ msgstr ""
493
  "wordpress.org/Roles_and_Capabilities' target='_new'>CAPABILITIES</a> haben, "
494
  "werden nicht verfolgt. Bitte Groß-/Kleinschreibung beachten."
495
 
496
- #: ../../admin/config/index.php:77
497
  msgid "Profiling"
498
  msgstr ""
499
 
500
- #: ../../admin/config/index.php:78
501
  msgid "Ignore Spammers"
502
  msgstr "Spammer ignorieren"
503
 
504
- #: ../../admin/config/index.php:78
505
  #, fuzzy
506
  msgid ""
507
  "Enable this option if you don't want to track visits from users identified "
@@ -514,11 +557,24 @@ msgstr ""
514
  "Kommentare später von Ihnen als Spam markiert werden, werden ebenso aus der "
515
  "Datenbank entfernt."
516
 
517
- #: ../../admin/config/index.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
518
  msgid "Permalinks"
519
  msgstr "Permalinks"
520
 
521
- #: ../../admin/config/index.php:79
522
  #, fuzzy
523
  msgid ""
524
  "List all the URLs on your website that you don't want to track, separated by "
@@ -537,11 +593,11 @@ msgstr ""
537
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
538
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
539
 
540
- #: ../../admin/config/index.php:80
541
  msgid "Countries"
542
  msgstr "L&auml;nder"
543
 
544
- #: ../../admin/config/index.php:80
545
  msgid ""
546
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
547
  "track, separated by commas."
@@ -549,11 +605,11 @@ msgstr ""
549
  "Liste der L&auml;dercodes (z.B.: <code>en-us, de, it, es</code>), die nicht "
550
  "mit erfasst werden sollen, getrennt durch Kommata."
551
 
552
- #: ../../admin/config/index.php:81
553
  msgid "User Agents"
554
  msgstr "User Agents"
555
 
556
- #: ../../admin/config/index.php:81
557
  #, fuzzy
558
  msgid ""
559
  "Browsers (user agents) you don't want to track, separated by commas. You can "
@@ -571,11 +627,11 @@ msgstr ""
571
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
572
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
573
 
574
- #: ../../admin/config/index.php:82
575
  msgid "Referring Sites"
576
  msgstr "Verweisende Webseiten"
577
 
578
- #: ../../admin/config/index.php:82
579
  #, fuzzy
580
  msgid ""
581
  "Referring URLs that you don't want to track, separated by commas: "
@@ -593,87 +649,72 @@ msgstr ""
593
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
594
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
595
 
596
- #: ../../admin/config/index.php:84
597
  #, fuzzy
598
  msgid "Internal and Outbound Links"
599
  msgstr "Letzte ausgehende Links"
600
 
601
- #: ../../admin/config/index.php:85
602
  msgid "Track Outbound Clicks"
603
  msgstr "Letzte ausgehende Links"
604
 
605
- #: ../../admin/config/index.php:85
606
  msgid ""
607
  "Track when your visitors click on link to external websites. This option "
608
  "required Spy Mode to be enabled."
609
  msgstr ""
610
 
611
- #: ../../admin/config/index.php:86
612
  #, fuzzy
613
  msgid "Track Coordinates"
614
  msgstr "Tracking aktiv"
615
 
616
- #: ../../admin/config/index.php:86
617
  msgid ""
618
  "Collect mouse coordinates and other information for clicks on internal "
619
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
620
  "this information is only collected for external links."
621
  msgstr ""
622
 
623
- #: ../../admin/config/index.php:87
624
- #, fuzzy
625
- msgid "Ignore Classes"
626
- msgstr "Ignoriere Benutzer"
627
 
628
- #: ../../admin/config/index.php:87
629
  msgid ""
630
  "Track the event but do not invoke the callback function on links marked with "
631
- "one of these classnames (separated by comma). Useful to prevent conflicts "
632
- "with lightbox and similar libraries."
 
633
  msgstr ""
634
 
635
- #: ../../admin/config/index.php:88
636
- #, fuzzy
637
- msgid "Ignore Rel"
638
- msgstr "Ignoriere Benutzer"
639
-
640
- #: ../../admin/config/index.php:88
641
- msgid ""
642
- "Track the event but do not invoke the callback function on links having one "
643
- "of these values (separated by comma) as their <em>rel</em> attribute."
644
  msgstr ""
645
 
646
- #: ../../admin/config/index.php:89
647
- #, fuzzy
648
- msgid "Ignore URL"
649
- msgstr "Ignoriere Benutzer"
650
-
651
- #: ../../admin/config/index.php:89
652
  msgid ""
653
- "Track the event but do not invoke the callback function on links whose "
654
- "<em>href</em> attribute contains one of these strings (separated by comma)."
 
655
  msgstr ""
656
 
657
- #: ../../admin/config/index.php:91 ../../admin/config/index.php:242
658
- msgid "Miscellaneous"
659
- msgstr "Diverse"
660
-
661
- #: ../../admin/config/index.php:92
662
  msgid "Enable Privacy Mode"
663
  msgstr ""
664
 
665
- #: ../../admin/config/index.php:92
666
  #, fuzzy
667
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
668
  msgstr ""
669
  "Diese Option maskiert das letzte Byte der IP-Adressen Ihrere Besucher um die "
670
  "Europ&auml;ischen Datenschutzgesetze zur erf&uuml;llen."
671
 
672
- #: ../../admin/config/index.php:93
673
  msgid "Ignore Prefetch Requests"
674
  msgstr ""
675
 
676
- #: ../../admin/config/index.php:93
677
  #, fuzzy
678
  msgid ""
679
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
@@ -683,25 +724,21 @@ msgstr ""
683
  "Verhindert, dass WP SlimStat Pageviews trackt, die durch die <a "
684
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' target='_blank'>"
685
 
686
- #: ../../admin/config/index.php:109
687
  msgid "Ignore users (username not found)"
688
  msgstr "Benutzer ignorieren (Benutzername nicht gefunden)"
689
 
690
- #: ../../admin/config/index.php:132
691
  msgid ""
692
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
693
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
694
  msgstr ""
695
 
696
- #: ../../admin/config/index.php:142
697
- msgid "Reports"
698
- msgstr "Auswertungen"
699
-
700
- #: ../../admin/config/index.php:143
701
  msgid "Restrict Authors"
702
  msgstr "Autoren einschränken"
703
 
704
- #: ../../admin/config/index.php:143
705
  #, fuzzy
706
  msgid ""
707
  "Enable this option if you want your authors to only see stats related to "
@@ -710,12 +747,12 @@ msgstr ""
710
  "Aktivieren Sie diese Option, wenn Ihre Autoren nur Statistiken zu Ihrem "
711
  "eigenen Inhalt ansehen können."
712
 
713
- #: ../../admin/config/index.php:144 ../../admin/config/index.php:148
714
  #, fuzzy
715
  msgid "Capability"
716
  msgstr "Benutzer nach Browserf&auml;higkeiten"
717
 
718
- #: ../../admin/config/index.php:144
719
  #, fuzzy
720
  msgid ""
721
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -732,11 +769,11 @@ msgstr ""
732
  "Berichte, Außer eine 'Lesezugriffs'-Whitelist wurde weiter unten festgelegt, "
733
  "welche Vorrang über die CAPABILITY hat."
734
 
735
- #: ../../admin/config/index.php:145 ../../admin/config/index.php:149
736
  msgid "Whitelist"
737
  msgstr "Whitelist"
738
 
739
- #: ../../admin/config/index.php:145
740
  #, fuzzy
741
  msgid ""
742
  "List all the users who should have access to the reports, separated by "
@@ -748,7 +785,7 @@ msgstr ""
748
  "angeführt werden. Wenn dieses Feld leer ist der Zugriff <strong>allen Ihren "
749
  "Benutzern</strong> erlaubt. Bitte Groß-/Kleinschreibung beachten."
750
 
751
- #: ../../admin/config/index.php:148
752
  #, fuzzy
753
  msgid ""
754
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -763,7 +800,7 @@ msgstr ""
763
  "Berichte, Außer eine 'Lesezugriffs'-Whitelist wurde weiter unten festgelegt, "
764
  "welche Vorrang über die CAPABILITY hat."
765
 
766
- #: ../../admin/config/index.php:149
767
  #, fuzzy
768
  msgid ""
769
  "List all the users who can edit these options, separated by commas. Please "
@@ -777,11 +814,11 @@ msgstr ""
777
  "Benutzer bekommen automatisch auch 'Lesezugriff' auf die WP SlimStat-"
778
  "Berichte. Bitte Groß-/Kleinschreibung beachten."
779
 
780
- #: ../../admin/config/index.php:165
781
  msgid "Read access: username not found"
782
  msgstr "Lesezugriff: Benutzername nicht gefunden"
783
 
784
- #: ../../admin/config/index.php:178 ../../admin/config/index.php:209
785
  #, fuzzy
786
  msgid ""
787
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
@@ -792,26 +829,26 @@ msgstr ""
792
  "\"http://codex.wordpress.org/Roles_and_Capabilities\" target=\"_new\">hier</"
793
  "a>."
794
 
795
- #: ../../admin/config/index.php:196
796
  msgid "Config access: username not found"
797
  msgstr "Konfigurationszugriff: Benutzername nicht gefunden."
798
 
799
  # What is smoothing?
800
- #: ../../admin/config/index.php:224
801
  msgid "Detect Smoothing"
802
  msgstr "Smoothing erkennen"
803
 
804
- #: ../../admin/config/index.php:224
805
  msgid ""
806
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
807
  "This option required Spy Mode to be enabled."
808
  msgstr ""
809
 
810
- #: ../../admin/config/index.php:225
811
  msgid "Session Duration"
812
  msgstr "Besuchsdauer"
813
 
814
- #: ../../admin/config/index.php:225
815
  #, fuzzy
816
  msgid ""
817
  "How many seconds should a human session last? Google Analytics sets it to "
@@ -820,33 +857,33 @@ msgstr ""
820
  "Definiert, wie viele Sekunden ein Besuch dauern soll. Bei Google Analytics "
821
  "wird hier 1.800 Sekunden vorgeschlagen."
822
 
823
- #: ../../admin/config/index.php:226
824
  msgid "Extend Session"
825
  msgstr "Sitzung erweitern"
826
 
827
- #: ../../admin/config/index.php:226
828
  #, fuzzy
829
  msgid "Extend the duration of a session each time the user visits a new page."
830
  msgstr ""
831
  "Verlängert die Dauer einer Sitzung jedes Mal um die hier eingegebene Zahl an "
832
  "Sekunden, wenn ein Benutzer eine neue Seite aufruft."
833
 
834
- #: ../../admin/config/index.php:227
835
  msgid "Enable CDN"
836
  msgstr "CDN aktivieren"
837
 
838
- #: ../../admin/config/index.php:227
839
  msgid ""
840
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
841
  "by serving our tracking code from their fast and reliable network (free "
842
  "service)."
843
  msgstr ""
844
 
845
- #: ../../admin/config/index.php:228
846
  msgid "Extensions to Track"
847
  msgstr "Zu verfolgende Erweiterungen"
848
 
849
- #: ../../admin/config/index.php:228
850
  #, fuzzy
851
  msgid ""
852
  "List all the file extensions that you want to be treated as Downloads. "
@@ -861,49 +898,68 @@ msgstr ""
861
  "nicht als 'Ausgehende Links' gewertet werden, wenn der Typ in der folgenden "
862
  "Liste enthalten ist."
863
 
864
- #: ../../admin/config/index.php:230
865
  #, fuzzy
866
  msgid "External Pages"
867
  msgstr "Gesamte Seitenaufrufe"
868
 
869
- #: ../../admin/config/index.php:231
870
- msgid "Add the following code to all the non-WP pages you want to track"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
871
  msgstr ""
872
 
873
- #: ../../admin/config/index.php:243
874
  msgid "Debug Mode"
875
  msgstr ""
876
 
877
- #: ../../admin/config/index.php:243
878
  msgid "Display the SQL queries used to retrieve the data."
879
  msgstr ""
880
 
881
- #: ../../admin/config/index.php:244
882
  msgid "IP Lookup"
883
  msgstr "IP Suche"
884
 
885
- #: ../../admin/config/index.php:244
886
  msgid "Customize the Geolocation service to be used in the reports."
887
  msgstr ""
888
 
889
- #: ../../admin/config/index.php:245
890
  msgid "Custom CSS"
891
  msgstr "Benutzerdefinierte CSS"
892
 
893
- #: ../../admin/config/index.php:245
894
  msgid ""
895
  "Paste here your custom stylesheet to personalize the way your reports look. "
896
- "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
897
- "target='_blank'>Check the FAQ</a> for more information on how to use this "
898
- "setting."
 
899
  msgstr ""
900
 
901
- #: ../../admin/config/index.php:246
902
  #, fuzzy
903
  msgid "Enable UAN"
904
  msgstr "ADN aktivieren"
905
 
906
- #: ../../admin/config/index.php:246
907
  msgid ""
908
  "Send anonymous data about user agents to our server for analysis. This "
909
  "allows us to contribute to the <a href='http://browscap.org/' "
@@ -912,137 +968,188 @@ msgid ""
912
  "ads network. No worries, your site will not be affected in any way."
913
  msgstr ""
914
 
915
- #: ../../admin/config/maintenance.php:20
916
  #, fuzzy
917
- msgid "Your Slimstat tables have been successfully converted to InnoDB."
 
 
 
 
 
 
 
 
 
918
  msgstr ""
919
- "Ihre WP SlimStat Datenbank wurden erfolgreich ins InnoDB-Format konvertiert."
920
 
921
- #: ../../admin/config/maintenance.php:30
922
  msgid "records deleted from your database."
923
  msgstr "Datensätze von Ihrer Datenbank gelöscht."
924
 
925
- #: ../../admin/config/maintenance.php:37
926
- msgid "All the records were successfully deleted."
927
- msgstr "Alle Aufzeichnungen wurden erfolgreich gelöscht."
928
-
929
- #: ../../admin/config/maintenance.php:42
930
- #, fuzzy
931
- msgid "All the archived records were successfully deleted."
932
- msgstr "Alle Aufzeichnungen wurden erfolgreich gelöscht."
933
 
934
  #: ../../admin/config/maintenance.php:51
 
 
 
 
 
 
 
 
 
 
 
 
 
935
  #, fuzzy
936
  msgid "All the archived records were successfully restored."
937
  msgstr "Alle Aufzeichnungen wurden erfolgreich gelöscht."
938
 
939
- #: ../../admin/config/maintenance.php:55
940
  msgid "Your reports were successfully restored to their default arrangement."
941
  msgstr ""
942
 
943
- #: ../../admin/config/maintenance.php:62
944
  #, fuzzy
945
- msgid ""
946
- "Congrats! Slimstat is now optimized for <a href=\"http://www.youtube.com/"
947
- "watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
948
  msgstr ""
949
- "Gratulation! WP SlimStat ist jetzt für <a href=\"http://www.youtube.com/"
950
- "watch?v=1mgvE55HpcU\" target=\"_blank\">wahnsinnige Geschwindigkeit</a> "
951
- "optimiert."
952
 
953
- #: ../../admin/config/maintenance.php:69
 
 
 
 
 
 
 
 
954
  msgid ""
955
- "Indexing has been successfully disabled. Enjoy the extra database space you "
956
- "just gained!"
 
 
 
 
957
  msgstr ""
958
 
959
- #: ../../admin/config/maintenance.php:101
960
  msgid "Database Information"
961
  msgstr "Datenbankinformation"
962
 
963
  # depends on context:
964
  # Engine = Maschine, Motor, Triebwerk or Antrieb
965
  # Search engine = Suchmaschine
966
- #: ../../admin/config/maintenance.php:104
967
  #, fuzzy
968
  msgid "Engine"
969
  msgstr "Suchmaschinen"
970
 
971
- #: ../../admin/config/maintenance.php:108
972
  msgid "switch to InnoDB"
973
  msgstr "zu InnoDB wechseln"
974
 
975
- #: ../../admin/config/maintenance.php:119
976
  msgid "records"
977
  msgstr "Datensätze"
978
 
979
- #: ../../admin/config/maintenance.php:124
980
  msgid "Data Maintenance"
981
  msgstr "Datenwartung"
982
 
983
- #: ../../admin/config/maintenance.php:127
984
  #, fuzzy
985
  msgid "Delete pageviews where"
986
  msgstr "Lösche Seitenaufrufe, wo"
987
 
988
- #: ../../admin/config/maintenance.php:141 ../../admin/view/index.php:15
989
  msgid "equals"
990
  msgstr "entspricht"
991
 
992
- #: ../../admin/config/maintenance.php:142 ../../admin/view/index.php:16
993
  msgid "is not equal to"
994
  msgstr "ist ungleich zu"
995
 
996
- #: ../../admin/config/maintenance.php:143 ../../admin/view/index.php:17
997
  msgid "contains"
998
  msgstr "enth&auml;lt"
999
 
1000
- #: ../../admin/config/maintenance.php:144 ../../admin/view/index.php:18
 
 
 
 
1001
  msgid "does not contain"
1002
  msgstr "enth&auml;lt nicht"
1003
 
1004
- #: ../../admin/config/maintenance.php:145 ../../admin/view/index.php:19
1005
  msgid "starts with"
1006
  msgstr "beginnt mit"
1007
 
1008
- #: ../../admin/config/maintenance.php:146 ../../admin/view/index.php:20
1009
  msgid "ends with"
1010
  msgstr "endet mit"
1011
 
1012
- #: ../../admin/config/maintenance.php:147 ../../admin/view/index.php:21
1013
  msgid "sounds like"
1014
  msgstr "&auml;hnelt"
1015
 
1016
- #: ../../admin/config/maintenance.php:148 ../../admin/view/index.php:22
1017
  msgid "is greater than"
1018
  msgstr "ist gr&ouml;sser als"
1019
 
1020
- #: ../../admin/config/maintenance.php:149 ../../admin/view/index.php:23
1021
  msgid "is less than"
1022
  msgstr "ist kleiner als"
1023
 
1024
- #: ../../admin/config/maintenance.php:150 ../../admin/view/index.php:25
1025
  msgid "matches"
1026
  msgstr "entspricht"
1027
 
1028
- #: ../../admin/config/maintenance.php:151 ../../admin/view/index.php:26
1029
  msgid "does not match"
1030
  msgstr "entspricht nicht"
1031
 
1032
- #: ../../admin/config/maintenance.php:152 ../../admin/view/index.php:27
1033
  msgid "is empty"
1034
  msgstr "ist leer"
1035
 
1036
- #: ../../admin/config/maintenance.php:153 ../../admin/view/index.php:28
1037
  msgid "is not empty"
1038
  msgstr "ist nicht leer"
1039
 
1040
- #: ../../admin/config/maintenance.php:156 ../../admin/view/index.php:40
1041
- #: ../../admin/view/index.php:103
1042
  msgid "Apply"
1043
  msgstr "Anwenden"
1044
 
1045
- #: ../../admin/config/maintenance.php:157
1046
  #, fuzzy
1047
  msgid ""
1048
  "Are you sure you want to PERMANENTLY delete these records from your database?"
@@ -1050,11 +1157,7 @@ msgstr ""
1050
  "Sind Sie wirklich sicher, dass Sie diese Datensätze UNWIDERRUFLICH aus Ihrer "
1051
  "Datenbank löschen möchten?"
1052
 
1053
- #: ../../admin/config/maintenance.php:162
1054
- msgid "Truncate Tables"
1055
- msgstr ""
1056
-
1057
- #: ../../admin/config/maintenance.php:165
1058
  #, fuzzy
1059
  msgid ""
1060
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
@@ -1063,44 +1166,37 @@ msgstr ""
1063
  "Sind Sie wirklich sicher, dass Sie diese Datensätze UNWIDERRUFLICH aus Ihrer "
1064
  "Datenbank löschen möchten?"
1065
 
1066
- #: ../../admin/config/maintenance.php:165
1067
  #, fuzzy
1068
  msgid "Delete All Records"
1069
  msgstr "Alle Seitenaufrufe löschen"
1070
 
1071
- #: ../../admin/config/maintenance.php:166
1072
  msgid ""
1073
  "Erase all the information collected so far by Slimstat, including the "
1074
  "archive. This operation <strong>does not</strong> reset your settings."
1075
  msgstr ""
1076
 
1077
- #: ../../admin/config/maintenance.php:170
1078
- msgid "Restore archive"
1079
- msgstr ""
1080
-
1081
- #: ../../admin/config/maintenance.php:173
1082
  #, fuzzy
1083
  msgid "Are you sure you want to restore all the archived pageviews?"
1084
  msgstr ""
1085
  "Sie wollen die gesamte Infomationen über die Besuche und Aufrufe auf Ihrer "
1086
  "Webseite löschen. Sind Sie sicher?"
1087
 
1088
- #: ../../admin/config/maintenance.php:173
1089
- msgid "Get 'em back"
1090
- msgstr ""
 
1091
 
1092
- #: ../../admin/config/maintenance.php:174
1093
  msgid ""
1094
  "Move all the archived pageviews back to the main Slimstat table. Please note "
1095
  "that, unless you disabled the daily purge, this data will be archived again "
1096
  "at the next scheduled clean-up."
1097
  msgstr ""
1098
 
1099
- #: ../../admin/config/maintenance.php:178
1100
- msgid "Empty Archive"
1101
- msgstr ""
1102
-
1103
- #: ../../admin/config/maintenance.php:181
1104
  #, fuzzy
1105
  msgid ""
1106
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
@@ -1109,24 +1205,20 @@ msgstr ""
1109
  "Sind Sie wirklich sicher, dass Sie diese Datensätze UNWIDERRUFLICH aus Ihrer "
1110
  "Datenbank löschen möchten?"
1111
 
1112
- #: ../../admin/config/maintenance.php:181
1113
  #, fuzzy
1114
  msgid "Delete Archive"
1115
  msgstr "Lösche Seitenaufrufe, wo"
1116
 
1117
- #: ../../admin/config/maintenance.php:182
1118
  msgid "Erase all the archived records. This operation cannot be undone."
1119
  msgstr ""
1120
 
1121
- #: ../../admin/config/maintenance.php:186
1122
- msgid "Performance"
1123
- msgstr "Leistung"
1124
-
1125
- #: ../../admin/config/maintenance.php:189
1126
  msgid "Improve Performance"
1127
  msgstr "Leistung erhöhen"
1128
 
1129
- #: ../../admin/config/maintenance.php:190
1130
  #, fuzzy
1131
  msgid ""
1132
  "Please note that you will need about 30% more DB space to store the extra "
@@ -1136,35 +1228,101 @@ msgstr ""
1136
  "verbessern. Die Datenbank benötigt dafür ca. 30% mehr Speicherplatz, damit "
1137
  "die notwendigen zusätzlichne Informationen gespeichert werden können."
1138
 
1139
- #: ../../admin/config/maintenance.php:194
1140
  msgid "Save DB Space"
1141
  msgstr "Datenbank-Speicherplatz sparen"
1142
 
1143
- #: ../../admin/config/maintenance.php:195
1144
  msgid ""
1145
  "Please note that by removing table indexes, Slimstat's performance will be "
1146
  "affected."
1147
  msgstr ""
1148
 
1149
- #: ../../admin/config/maintenance.php:200
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1150
  msgid "Import and Export"
1151
  msgstr ""
1152
 
1153
- #: ../../admin/config/maintenance.php:204
1154
  msgid ""
1155
  "Here below you can find the current configuration string for Slimstat. You "
1156
- "can update your settings by pasting a new string here below and clicking on "
1157
- "Import."
1158
  msgstr ""
1159
 
1160
- #: ../../admin/config/maintenance.php:209
1161
  msgid "Import"
1162
  msgstr "Import"
1163
 
1164
- #: ../../admin/config/maintenance.php:210
1165
  msgid "Are you sure you want to OVERWRITE your current settings?"
1166
  msgstr "Derzeitige Einstellungen wirklich zurücksetzen?"
1167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1168
  #: ../../admin/lang/dynamic_strings.php:3
1169
  msgid "xx"
1170
  msgstr "xx"
@@ -1350,1392 +1508,1419 @@ msgid "winphone7"
1350
  msgstr "Windows Phone"
1351
 
1352
  #: ../../admin/lang/dynamic_strings.php:49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1353
  msgid "wince"
1354
  msgstr "Windows CE"
1355
 
1356
- #: ../../admin/lang/dynamic_strings.php:50
1357
  msgid "symbianos"
1358
  msgstr "Symbian OS"
1359
 
1360
- #: ../../admin/lang/dynamic_strings.php:51
1361
  msgid "blackberry os"
1362
  msgstr "Blackberry OS"
1363
 
1364
- #: ../../admin/lang/dynamic_strings.php:52
1365
  msgid "webos"
1366
  msgstr "WebOS"
1367
 
1368
- #: ../../admin/lang/dynamic_strings.php:53
1369
  msgid "p-and"
1370
  msgstr "Android"
1371
 
1372
- #: ../../admin/lang/dynamic_strings.php:54
1373
  msgid "p-bla"
1374
  msgstr "BlackBerry"
1375
 
1376
- #: ../../admin/lang/dynamic_strings.php:55
1377
  msgid "p-chr"
1378
  msgstr "Chrome OS"
1379
 
1380
- #: ../../admin/lang/dynamic_strings.php:56
1381
  msgid "p-fre"
1382
  msgstr "Linux FreeBSD"
1383
 
1384
- #: ../../admin/lang/dynamic_strings.php:57
1385
  msgid "p-ios"
1386
  msgstr "Apple iOS"
1387
 
1388
- #: ../../admin/lang/dynamic_strings.php:58
1389
  msgid "p-jav"
1390
  msgstr "Java-based OS"
1391
 
1392
- #: ../../admin/lang/dynamic_strings.php:59
1393
  msgid "p-lin"
1394
  msgstr "Linux"
1395
 
1396
- #: ../../admin/lang/dynamic_strings.php:60
1397
  msgid "p-mac"
1398
  msgstr "Apple"
1399
 
1400
- #: ../../admin/lang/dynamic_strings.php:61
1401
  msgid "p-sym"
1402
  msgstr "Symbian OS"
1403
 
1404
- #: ../../admin/lang/dynamic_strings.php:62
1405
  msgid "p-unk"
1406
  msgstr "Unbekannt"
1407
 
1408
- #: ../../admin/lang/dynamic_strings.php:63
1409
  msgid "p-win"
1410
  msgstr "Microsoft"
1411
 
1412
- #: ../../admin/lang/dynamic_strings.php:64
1413
  msgid "powertv"
1414
  msgstr "PowerTV"
1415
 
1416
- #: ../../admin/lang/dynamic_strings.php:65
1417
  msgid "acrobat"
1418
  msgstr "Acrobat Reader"
1419
 
1420
- #: ../../admin/lang/dynamic_strings.php:66
1421
  msgid "director"
1422
  msgstr "Macromedia Director"
1423
 
1424
- #: ../../admin/lang/dynamic_strings.php:67
1425
  msgid "flash"
1426
  msgstr "Adobe Flash Player"
1427
 
1428
- #: ../../admin/lang/dynamic_strings.php:68
1429
  msgid "mediaplayer"
1430
  msgstr "Microsoft Media Player"
1431
 
1432
- #: ../../admin/lang/dynamic_strings.php:69
1433
  msgid "quicktime"
1434
  msgstr "QuickTime"
1435
 
1436
- #: ../../admin/lang/dynamic_strings.php:70
1437
  msgid "real"
1438
  msgstr "Real Player"
1439
 
1440
- #: ../../admin/lang/dynamic_strings.php:71
1441
  msgid "silverlight"
1442
  msgstr "Microsoft Silverlight"
1443
 
1444
  # Afrikaans
1445
- #: ../../admin/lang/dynamic_strings.php:72
1446
  msgid "l-af"
1447
  msgstr "Afrikaans"
1448
 
1449
  # Afrikaans
1450
- #: ../../admin/lang/dynamic_strings.php:73
1451
  #, fuzzy
1452
  msgid "l-af-za"
1453
  msgstr "Afrikaans"
1454
 
1455
  # Arabic
1456
- #: ../../admin/lang/dynamic_strings.php:74
1457
  msgid "l-ar"
1458
  msgstr "Arabic"
1459
 
1460
  # Arabic (United Arab Emirates)
1461
- #: ../../admin/lang/dynamic_strings.php:75
1462
  msgid "l-ar-ae"
1463
  msgstr "Arabic (United Arab Emirates)"
1464
 
1465
  # Arabic (Bahrain)
1466
- #: ../../admin/lang/dynamic_strings.php:76
1467
  msgid "l-ar-bh"
1468
  msgstr "Arabic (Bahrain)"
1469
 
1470
  # Arabic (Algeria)
1471
- #: ../../admin/lang/dynamic_strings.php:77
1472
  msgid "l-ar-dz"
1473
  msgstr "Arabic (Algeria)"
1474
 
1475
  # Arabic (Egypt)
1476
- #: ../../admin/lang/dynamic_strings.php:78
1477
  msgid "l-ar-eg"
1478
  msgstr "Arabic (Egypt)"
1479
 
1480
  # Arabic (Iraq)
1481
- #: ../../admin/lang/dynamic_strings.php:79
1482
  msgid "l-ar-iq"
1483
  msgstr "Arabic (Iraq)"
1484
 
1485
  # Arabic (Jordan)
1486
- #: ../../admin/lang/dynamic_strings.php:80
1487
  msgid "l-ar-jo"
1488
  msgstr "Arabic (Jordan)"
1489
 
1490
  # Arabic (Kuwait)
1491
- #: ../../admin/lang/dynamic_strings.php:81
1492
  msgid "l-ar-kw"
1493
  msgstr "Arabic (Kuwait)"
1494
 
1495
  # Arabic (Lebanon)
1496
- #: ../../admin/lang/dynamic_strings.php:82
1497
  msgid "l-ar-lb"
1498
  msgstr "Arabic (Lebanon)"
1499
 
1500
  # Arabic (Libya)
1501
- #: ../../admin/lang/dynamic_strings.php:83
1502
  msgid "l-ar-ly"
1503
  msgstr "Arabic (Libya)"
1504
 
1505
  # Arabic (Morocco)
1506
- #: ../../admin/lang/dynamic_strings.php:84
1507
  msgid "l-ar-ma"
1508
  msgstr "Arabic (Morocco)"
1509
 
1510
  # Arabic (Oman)
1511
- #: ../../admin/lang/dynamic_strings.php:85
1512
  msgid "l-ar-om"
1513
  msgstr "Arabic (Oman)"
1514
 
1515
  # Arabic (Qatar)
1516
- #: ../../admin/lang/dynamic_strings.php:86
1517
  msgid "l-ar-qa"
1518
  msgstr "Arabic (Qatar)"
1519
 
1520
  # Arabic (Saudi Arabia)
1521
- #: ../../admin/lang/dynamic_strings.php:87
1522
  msgid "l-ar-sa"
1523
  msgstr "Arabic (Saudi Arabia)"
1524
 
1525
  # Arabic (Syria)
1526
- #: ../../admin/lang/dynamic_strings.php:88
1527
  msgid "l-ar-sy"
1528
  msgstr "Arabic (Syria)"
1529
 
1530
  # Arabic (Tunisia)
1531
- #: ../../admin/lang/dynamic_strings.php:89
1532
  msgid "l-ar-tn"
1533
  msgstr "Arabic (Tunisia)"
1534
 
1535
  # Arabic (Yemen)
1536
- #: ../../admin/lang/dynamic_strings.php:90
1537
  msgid "l-ar-ye"
1538
  msgstr "Arabic (Yemen)"
1539
 
1540
  # Azerbaijani
1541
- #: ../../admin/lang/dynamic_strings.php:91
1542
  msgid "l-az"
1543
  msgstr "Azerbaijani"
1544
 
1545
  # Azerbaijani
1546
- #: ../../admin/lang/dynamic_strings.php:92
1547
  #, fuzzy
1548
  msgid "l-az-az"
1549
  msgstr "Azerbaijani"
1550
 
1551
  # Belarusian
1552
- #: ../../admin/lang/dynamic_strings.php:93
1553
  msgid "l-be"
1554
  msgstr "Belarusian"
1555
 
1556
  # Belarusian
1557
- #: ../../admin/lang/dynamic_strings.php:94
1558
  #, fuzzy
1559
  msgid "l-be-by"
1560
  msgstr "Belarusian"
1561
 
1562
  # Bulgarian
1563
- #: ../../admin/lang/dynamic_strings.php:95
1564
  msgid "l-bg"
1565
  msgstr "Bulgarian"
1566
 
1567
  # Bulgarian
1568
- #: ../../admin/lang/dynamic_strings.php:96
1569
  #, fuzzy
1570
  msgid "l-bg-bg"
1571
  msgstr "Bulgarian"
1572
 
1573
  # Bosnian
1574
- #: ../../admin/lang/dynamic_strings.php:97
1575
  #, fuzzy
1576
  msgid "l-bs-ba"
1577
  msgstr "Bosnian"
1578
 
1579
  # Catalan; Valencian
1580
- #: ../../admin/lang/dynamic_strings.php:98
1581
  msgid "l-ca"
1582
  msgstr "Catalan; Valencian"
1583
 
1584
  # Catalan; Valencian
1585
- #: ../../admin/lang/dynamic_strings.php:99
1586
  #, fuzzy
1587
  msgid "l-ca-es"
1588
  msgstr "Catalan; Valencian"
1589
 
1590
  # Czech
1591
- #: ../../admin/lang/dynamic_strings.php:100
1592
  msgid "l-cs"
1593
  msgstr "Czech"
1594
 
1595
  # Czech
1596
- #: ../../admin/lang/dynamic_strings.php:101
1597
  #, fuzzy
1598
  msgid "l-cs-cz"
1599
  msgstr "Czech"
1600
 
1601
  # Welsh
1602
- #: ../../admin/lang/dynamic_strings.php:102
1603
  msgid "l-cy"
1604
  msgstr "Welsh"
1605
 
1606
  # Welsh
1607
- #: ../../admin/lang/dynamic_strings.php:103
1608
  #, fuzzy
1609
  msgid "l-cy-gb"
1610
  msgstr "Welsh"
1611
 
1612
  # Danish
1613
- #: ../../admin/lang/dynamic_strings.php:104
1614
  msgid "l-da"
1615
  msgstr "Danish"
1616
 
1617
  # Danish
1618
- #: ../../admin/lang/dynamic_strings.php:105
1619
  #, fuzzy
1620
  msgid "l-da-dk"
1621
  msgstr "Danish"
1622
 
1623
  # German
1624
- #: ../../admin/lang/dynamic_strings.php:106
1625
  msgid "l-de"
1626
  msgstr "German"
1627
 
1628
  # German (Austria)
1629
- #: ../../admin/lang/dynamic_strings.php:107
1630
  msgid "l-de-at"
1631
  msgstr "German (Austria)"
1632
 
1633
  # German (Switzerland)
1634
- #: ../../admin/lang/dynamic_strings.php:108
1635
  msgid "l-de-ch"
1636
  msgstr "German (Switzerland)"
1637
 
1638
  # German (Germany)
1639
- #: ../../admin/lang/dynamic_strings.php:109
1640
  msgid "l-de-de"
1641
  msgstr "German (Germany)"
1642
 
1643
  # German (Liechtenstein)
1644
- #: ../../admin/lang/dynamic_strings.php:110
1645
  msgid "l-de-li"
1646
  msgstr "German (Liechtenstein)"
1647
 
1648
  # German (Luxembourg)
1649
- #: ../../admin/lang/dynamic_strings.php:111
1650
  msgid "l-de-lu"
1651
  msgstr "German (Luxembourg)"
1652
 
1653
  # Dhivehi; Divehi; Maldivian
1654
- #: ../../admin/lang/dynamic_strings.php:112
1655
  msgid "l-dv"
1656
  msgstr "Dhivehi; Divehi; Maldivian"
1657
 
1658
  # Dhivehi; Divehi; Maldivian
1659
- #: ../../admin/lang/dynamic_strings.php:113
1660
  #, fuzzy
1661
  msgid "l-dv-mv"
1662
  msgstr "Dhivehi; Divehi; Maldivian"
1663
 
1664
  # Modern Greek (1453-)
1665
- #: ../../admin/lang/dynamic_strings.php:114
1666
  msgid "l-el"
1667
  msgstr "Modern Greek (1453-)"
1668
 
1669
  # Greek (Greece)
1670
- #: ../../admin/lang/dynamic_strings.php:115
1671
  msgid "l-el-gr"
1672
  msgstr "Greek (Greece)"
1673
 
1674
  # English
1675
- #: ../../admin/lang/dynamic_strings.php:116
1676
  msgid "l-en"
1677
  msgstr "English"
1678
 
1679
  # English (Australia)
1680
- #: ../../admin/lang/dynamic_strings.php:117
1681
  msgid "l-en-au"
1682
  msgstr "English (Australia)"
1683
 
1684
  # English (Belize)
1685
- #: ../../admin/lang/dynamic_strings.php:118
1686
  msgid "l-en-bz"
1687
  msgstr "English (Belize)"
1688
 
1689
  # English (Canada)
1690
- #: ../../admin/lang/dynamic_strings.php:119
1691
  msgid "l-en-ca"
1692
  msgstr "English (Canada)"
1693
 
1694
  # English (Canada)
1695
- #: ../../admin/lang/dynamic_strings.php:120
1696
  #, fuzzy
1697
  msgid "l-en-cb"
1698
  msgstr "English (Canada)"
1699
 
1700
  # English (United Kingdom)
1701
- #: ../../admin/lang/dynamic_strings.php:121
1702
  msgid "l-en-gb"
1703
  msgstr "English (United Kingdom)"
1704
 
1705
  # English (Ireland)
1706
- #: ../../admin/lang/dynamic_strings.php:122
1707
  msgid "l-en-ie"
1708
  msgstr "English (Ireland)"
1709
 
1710
  # English (Jamaica)
1711
- #: ../../admin/lang/dynamic_strings.php:123
1712
  msgid "l-en-jm"
1713
  msgstr "English (Jamaica)"
1714
 
1715
  # English (New Zealand)
1716
- #: ../../admin/lang/dynamic_strings.php:124
1717
  msgid "l-en-nz"
1718
  msgstr "English (New Zealand)"
1719
 
1720
  # English
1721
- #: ../../admin/lang/dynamic_strings.php:125
1722
  #, fuzzy
1723
  msgid "l-en-ph"
1724
  msgstr "English"
1725
 
1726
  # English (Trinidad)
1727
- #: ../../admin/lang/dynamic_strings.php:126
1728
  msgid "l-en-tt"
1729
  msgstr "English (Trinidad)"
1730
 
1731
  # English (United States)
1732
- #: ../../admin/lang/dynamic_strings.php:127
1733
  msgid "l-en-us"
1734
  msgstr "English (United States)"
1735
 
1736
  # English (South Africa)
1737
- #: ../../admin/lang/dynamic_strings.php:128
1738
  msgid "l-en-za"
1739
  msgstr "English (South Africa)"
1740
 
1741
  # English (South Africa)
1742
- #: ../../admin/lang/dynamic_strings.php:129
1743
  #, fuzzy
1744
  msgid "l-en-zw"
1745
  msgstr "English (South Africa)"
1746
 
1747
  # Esperanto
1748
- #: ../../admin/lang/dynamic_strings.php:130
1749
  msgid "l-eo"
1750
  msgstr "Esperanto"
1751
 
1752
  # Spanish; Castilian
1753
- #: ../../admin/lang/dynamic_strings.php:131
1754
  msgid "l-es"
1755
  msgstr "Spanish; Castilian"
1756
 
1757
  # Spanish (Argentina)
1758
- #: ../../admin/lang/dynamic_strings.php:132
1759
  msgid "l-es-ar"
1760
  msgstr "Spanish (Argentina)"
1761
 
1762
  # Spanish (Bolivia)
1763
- #: ../../admin/lang/dynamic_strings.php:133
1764
  msgid "l-es-bo"
1765
  msgstr "Spanish (Bolivia)"
1766
 
1767
  # Spanish (Chile)
1768
- #: ../../admin/lang/dynamic_strings.php:134
1769
  msgid "l-es-cl"
1770
  msgstr "Spanish (Chile)"
1771
 
1772
  # Spanish (Colombia)
1773
- #: ../../admin/lang/dynamic_strings.php:135
1774
  msgid "l-es-co"
1775
  msgstr "Spanish (Colombia)"
1776
 
1777
  # Spanish (Costa Rica)
1778
- #: ../../admin/lang/dynamic_strings.php:136
1779
  msgid "l-es-cr"
1780
  msgstr "Spanish (Costa Rica)"
1781
 
1782
  # Spanish (Dominican Republic)
1783
- #: ../../admin/lang/dynamic_strings.php:137
1784
  msgid "l-es-do"
1785
  msgstr "Spanish (Dominican Republic)"
1786
 
1787
  # Spanish (Ecuador)
1788
- #: ../../admin/lang/dynamic_strings.php:138
1789
  msgid "l-es-ec"
1790
  msgstr "Spanish (Ecuador)"
1791
 
1792
  # Spanish (Spain)
1793
- #: ../../admin/lang/dynamic_strings.php:139
1794
  msgid "l-es-es"
1795
  msgstr "Spanish (Spain)"
1796
 
1797
  # Spanish (Guatemala)
1798
- #: ../../admin/lang/dynamic_strings.php:140
1799
  msgid "l-es-gt"
1800
  msgstr "Spanish (Guatemala)"
1801
 
1802
  # Spanish (Honduras)
1803
- #: ../../admin/lang/dynamic_strings.php:141
1804
  msgid "l-es-hn"
1805
  msgstr "Spanish (Honduras)"
1806
 
1807
  # Spanish (Mexico)
1808
- #: ../../admin/lang/dynamic_strings.php:142
1809
  msgid "l-es-mx"
1810
  msgstr "Spanish (Mexico)"
1811
 
1812
  # Spanish (Nicaragua)
1813
- #: ../../admin/lang/dynamic_strings.php:143
1814
  msgid "l-es-ni"
1815
  msgstr "Spanish (Nicaragua)"
1816
 
1817
  # Spanish (Panama)
1818
- #: ../../admin/lang/dynamic_strings.php:144
1819
  msgid "l-es-pa"
1820
  msgstr "Spanish (Panama)"
1821
 
1822
  # Spanish (Peru)
1823
- #: ../../admin/lang/dynamic_strings.php:145
1824
  msgid "l-es-pe"
1825
  msgstr "Spanish (Peru)"
1826
 
1827
  # Spanish (Puerto Rico)
1828
- #: ../../admin/lang/dynamic_strings.php:146
1829
  msgid "l-es-pr"
1830
  msgstr "Spanish (Puerto Rico)"
1831
 
1832
  # Spanish (Paraguay)
1833
- #: ../../admin/lang/dynamic_strings.php:147
1834
  msgid "l-es-py"
1835
  msgstr "Spanish (Paraguay)"
1836
 
1837
  # Spanish (El Salvador)
1838
- #: ../../admin/lang/dynamic_strings.php:148
1839
  msgid "l-es-sv"
1840
  msgstr "Spanish (El Salvador)"
1841
 
1842
  # Spanish (Uruguay)
1843
- #: ../../admin/lang/dynamic_strings.php:149
1844
  msgid "l-es-uy"
1845
  msgstr "Spanish (Uruguay)"
1846
 
1847
  # Spanish (Venezuela)
1848
- #: ../../admin/lang/dynamic_strings.php:150
1849
  msgid "l-es-ve"
1850
  msgstr "Spanish (Venezuela)"
1851
 
1852
  # Estonian
1853
- #: ../../admin/lang/dynamic_strings.php:151
1854
  msgid "l-et"
1855
  msgstr "Estonian"
1856
 
1857
  # Estonian
1858
- #: ../../admin/lang/dynamic_strings.php:152
1859
  #, fuzzy
1860
  msgid "l-et-ee"
1861
  msgstr "Estonian"
1862
 
1863
  # Basque
1864
- #: ../../admin/lang/dynamic_strings.php:153
1865
  msgid "l-eu"
1866
  msgstr "Basque"
1867
 
1868
  # Basque
1869
- #: ../../admin/lang/dynamic_strings.php:154
1870
  #, fuzzy
1871
  msgid "l-eu-es"
1872
  msgstr "Basque"
1873
 
1874
  # Persian
1875
- #: ../../admin/lang/dynamic_strings.php:155
1876
  msgid "l-fa"
1877
  msgstr "Persian"
1878
 
1879
  # Persian
1880
- #: ../../admin/lang/dynamic_strings.php:156
1881
  #, fuzzy
1882
  msgid "l-fa-ir"
1883
  msgstr "Persian"
1884
 
1885
  # Finnish
1886
- #: ../../admin/lang/dynamic_strings.php:157
1887
  msgid "l-fi"
1888
  msgstr "Finnish"
1889
 
1890
  # Finnish
1891
- #: ../../admin/lang/dynamic_strings.php:158
1892
  #, fuzzy
1893
  msgid "l-fi-fi"
1894
  msgstr "Finnish"
1895
 
1896
  # Faroese
1897
- #: ../../admin/lang/dynamic_strings.php:159
1898
  msgid "l-fo"
1899
  msgstr "Faroese"
1900
 
1901
  # Faroese
1902
- #: ../../admin/lang/dynamic_strings.php:160
1903
  #, fuzzy
1904
  msgid "l-fo-fo"
1905
  msgstr "Faroese"
1906
 
1907
  # French
1908
- #: ../../admin/lang/dynamic_strings.php:161
1909
  msgid "l-fr"
1910
  msgstr "French"
1911
 
1912
  # French (Belgium)
1913
- #: ../../admin/lang/dynamic_strings.php:162
1914
  msgid "l-fr-be"
1915
  msgstr "French (Belgium)"
1916
 
1917
  # French (Canada)
1918
- #: ../../admin/lang/dynamic_strings.php:163
1919
  msgid "l-fr-ca"
1920
  msgstr "French (Canada)"
1921
 
1922
  # French (Switzerland)
1923
- #: ../../admin/lang/dynamic_strings.php:164
1924
  msgid "l-fr-ch"
1925
  msgstr "French (Switzerland)"
1926
 
1927
  # French (France)
1928
- #: ../../admin/lang/dynamic_strings.php:165
1929
  msgid "l-fr-fr"
1930
  msgstr "French (France)"
1931
 
1932
  # French (Luxembourg)
1933
- #: ../../admin/lang/dynamic_strings.php:166
1934
  msgid "l-fr-lu"
1935
  msgstr "French (Luxembourg)"
1936
 
1937
  # French (Switzerland)
1938
- #: ../../admin/lang/dynamic_strings.php:167
1939
  #, fuzzy
1940
  msgid "l-fr-mc"
1941
  msgstr "French (Switzerland)"
1942
 
1943
  # Galician
1944
- #: ../../admin/lang/dynamic_strings.php:168
1945
  msgid "l-gl"
1946
  msgstr "Galician"
1947
 
1948
  # Spanish; Castilian
1949
- #: ../../admin/lang/dynamic_strings.php:169
1950
  #, fuzzy
1951
  msgid "l-gl-es"
1952
  msgstr "Spanish; Castilian"
1953
 
1954
  # Gujarati
1955
- #: ../../admin/lang/dynamic_strings.php:170
1956
  msgid "l-gu"
1957
  msgstr "Gujarati"
1958
 
1959
  # Gujarati
1960
- #: ../../admin/lang/dynamic_strings.php:171
1961
  #, fuzzy
1962
  msgid "l-gu-in"
1963
  msgstr "Gujarati"
1964
 
1965
  # Hebrew
1966
- #: ../../admin/lang/dynamic_strings.php:172
1967
  msgid "l-he"
1968
  msgstr "Hebrew"
1969
 
1970
  # Hebrew (Israel)
1971
- #: ../../admin/lang/dynamic_strings.php:173
1972
  msgid "l-he-il"
1973
  msgstr "Hebrew (Israel)"
1974
 
1975
  # Hindi
1976
- #: ../../admin/lang/dynamic_strings.php:174
1977
  msgid "l-hi"
1978
  msgstr "Hindi"
1979
 
1980
  # Hindi
1981
- #: ../../admin/lang/dynamic_strings.php:175
1982
  #, fuzzy
1983
  msgid "l-hi-in"
1984
  msgstr "Hindi"
1985
 
1986
  # Croatian
1987
- #: ../../admin/lang/dynamic_strings.php:176
1988
  msgid "l-hr"
1989
  msgstr "Croatian"
1990
 
1991
  # Croatian
1992
- #: ../../admin/lang/dynamic_strings.php:177
1993
  #, fuzzy
1994
  msgid "l-hr-ba"
1995
  msgstr "Croatian"
1996
 
1997
  # Croatian
1998
- #: ../../admin/lang/dynamic_strings.php:178
1999
  #, fuzzy
2000
  msgid "l-hr-hr"
2001
  msgstr "Croatian"
2002
 
2003
  # Hungarian
2004
- #: ../../admin/lang/dynamic_strings.php:179
2005
  msgid "l-hu"
2006
  msgstr "Hungarian"
2007
 
2008
  # Hungarian (Hungary)
2009
- #: ../../admin/lang/dynamic_strings.php:180
2010
  msgid "l-hu-hu"
2011
  msgstr "Hungarian (Hungary)"
2012
 
2013
  # Armenian
2014
- #: ../../admin/lang/dynamic_strings.php:181
2015
  msgid "l-hy"
2016
  msgstr "Armenian"
2017
 
2018
  # Armenian
2019
- #: ../../admin/lang/dynamic_strings.php:182
2020
  #, fuzzy
2021
  msgid "l-hy-am"
2022
  msgstr "Armenian"
2023
 
2024
  # Indonesian
2025
- #: ../../admin/lang/dynamic_strings.php:183
2026
  msgid "l-id"
2027
  msgstr "Indonesian"
2028
 
2029
  # Indonesian
2030
- #: ../../admin/lang/dynamic_strings.php:184
2031
  #, fuzzy
2032
  msgid "l-id-id"
2033
  msgstr "Indonesian"
2034
 
2035
  # Icelandic
2036
- #: ../../admin/lang/dynamic_strings.php:185
2037
  msgid "l-is"
2038
  msgstr "Icelandic"
2039
 
2040
  # Icelandic
2041
- #: ../../admin/lang/dynamic_strings.php:186
2042
  #, fuzzy
2043
  msgid "l-is-is"
2044
  msgstr "Icelandic"
2045
 
2046
  # Italian
2047
- #: ../../admin/lang/dynamic_strings.php:187
2048
  msgid "l-it"
2049
  msgstr "Italian"
2050
 
2051
  # Italian (Switzerland)
2052
- #: ../../admin/lang/dynamic_strings.php:188
2053
  msgid "l-it-ch"
2054
  msgstr "Italian (Switzerland)"
2055
 
2056
  # Italian (Italia)
2057
- #: ../../admin/lang/dynamic_strings.php:189
2058
  msgid "l-it-it"
2059
  msgstr "Italian (Italia)"
2060
 
2061
  # Japanese
2062
- #: ../../admin/lang/dynamic_strings.php:190
2063
  msgid "l-ja"
2064
  msgstr "Japanese"
2065
 
2066
  # Japanes
2067
- #: ../../admin/lang/dynamic_strings.php:191
2068
  msgid "l-ja-jp"
2069
  msgstr "Japanese"
2070
 
2071
  # Georgian
2072
- #: ../../admin/lang/dynamic_strings.php:192
2073
  msgid "l-ka"
2074
  msgstr "Georgian"
2075
 
2076
  # Georgian
2077
- #: ../../admin/lang/dynamic_strings.php:193
2078
  #, fuzzy
2079
  msgid "l-ka-ge"
2080
  msgstr "Georgian"
2081
 
2082
  # Kazakh
2083
- #: ../../admin/lang/dynamic_strings.php:194
2084
  msgid "l-kk"
2085
  msgstr "Kazakh"
2086
 
2087
  # Kazakh
2088
- #: ../../admin/lang/dynamic_strings.php:195
2089
  #, fuzzy
2090
  msgid "l-kk-kz"
2091
  msgstr "Kazakh"
2092
 
2093
  # Kannada
2094
- #: ../../admin/lang/dynamic_strings.php:196
2095
  msgid "l-kn"
2096
  msgstr "Kannada"
2097
 
2098
  # Kannada
2099
- #: ../../admin/lang/dynamic_strings.php:197
2100
  #, fuzzy
2101
  msgid "l-kn-in"
2102
  msgstr "Kannada"
2103
 
2104
  # Korean
2105
- #: ../../admin/lang/dynamic_strings.php:198
2106
  msgid "l-ko"
2107
  msgstr "Korean"
2108
 
2109
  # Korean (Republic of Korea)
2110
- #: ../../admin/lang/dynamic_strings.php:199
2111
  msgid "l-ko-kr"
2112
  msgstr "Korean (Republic of Korea)"
2113
 
2114
  # Korean
2115
- #: ../../admin/lang/dynamic_strings.php:200
2116
  #, fuzzy
2117
  msgid "l-kok"
2118
  msgstr "Korean"
2119
 
2120
  # Korean
2121
- #: ../../admin/lang/dynamic_strings.php:201
2122
  #, fuzzy
2123
  msgid "l-kok-in"
2124
  msgstr "Korean"
2125
 
2126
  # Kirghiz; Kyrgyz
2127
- #: ../../admin/lang/dynamic_strings.php:202
2128
  msgid "l-ky"
2129
  msgstr "Kirghiz; Kyrgyz"
2130
 
2131
  # Kirghiz; Kyrgyz
2132
- #: ../../admin/lang/dynamic_strings.php:203
2133
  #, fuzzy
2134
  msgid "l-ky-kg"
2135
  msgstr "Kirghiz; Kyrgyz"
2136
 
2137
  # Lithuanian
2138
- #: ../../admin/lang/dynamic_strings.php:204
2139
  msgid "l-lt"
2140
  msgstr "Lithuanian"
2141
 
2142
  # Lithuanian
2143
- #: ../../admin/lang/dynamic_strings.php:205
2144
  #, fuzzy
2145
  msgid "l-lt-lt"
2146
  msgstr "Lithuanian"
2147
 
2148
  # Latvian
2149
- #: ../../admin/lang/dynamic_strings.php:206
2150
  msgid "l-lv"
2151
  msgstr "Latvian"
2152
 
2153
  # Latvian
2154
- #: ../../admin/lang/dynamic_strings.php:207
2155
  #, fuzzy
2156
  msgid "l-lv-lv"
2157
  msgstr "Latvian"
2158
 
2159
  # Maori
2160
- #: ../../admin/lang/dynamic_strings.php:208
2161
  msgid "l-mi"
2162
  msgstr "Maori"
2163
 
2164
  # Maori
2165
- #: ../../admin/lang/dynamic_strings.php:209
2166
  #, fuzzy
2167
  msgid "l-mi-nz"
2168
  msgstr "Maori"
2169
 
2170
  # Macedonian
2171
- #: ../../admin/lang/dynamic_strings.php:210
2172
  msgid "l-mk"
2173
  msgstr "Macedonian"
2174
 
2175
  # Macedonian
2176
- #: ../../admin/lang/dynamic_strings.php:211
2177
  #, fuzzy
2178
  msgid "l-mk-ml"
2179
  msgstr "Macedonian"
2180
 
2181
  # Mongolian
2182
- #: ../../admin/lang/dynamic_strings.php:212
2183
  msgid "l-mn"
2184
  msgstr "Mongolian"
2185
 
2186
  # Mongolian
2187
- #: ../../admin/lang/dynamic_strings.php:213
2188
  #, fuzzy
2189
  msgid "l-mn-mn"
2190
  msgstr "Mongolian"
2191
 
2192
  # Marathi
2193
- #: ../../admin/lang/dynamic_strings.php:214
2194
  msgid "l-mr"
2195
  msgstr "Marathi"
2196
 
2197
  # Marathi
2198
- #: ../../admin/lang/dynamic_strings.php:215
2199
  #, fuzzy
2200
  msgid "l-mr-in"
2201
  msgstr "Marathi"
2202
 
2203
  # Malay
2204
- #: ../../admin/lang/dynamic_strings.php:216
2205
  msgid "l-ms"
2206
  msgstr "Malay"
2207
 
2208
  # Malay
2209
- #: ../../admin/lang/dynamic_strings.php:217
2210
  #, fuzzy
2211
  msgid "l-ms-bn"
2212
  msgstr "Malay"
2213
 
2214
  # Malay
2215
- #: ../../admin/lang/dynamic_strings.php:218
2216
  #, fuzzy
2217
  msgid "l-ms-my"
2218
  msgstr "Malay"
2219
 
2220
  # Maltese
2221
- #: ../../admin/lang/dynamic_strings.php:219
2222
  msgid "l-mt"
2223
  msgstr "Maltese"
2224
 
2225
  # Maltese
2226
- #: ../../admin/lang/dynamic_strings.php:220
2227
  #, fuzzy
2228
  msgid "l-mt-mt"
2229
  msgstr "Maltese"
2230
 
2231
  # Norwegian Bokmål
2232
- #: ../../admin/lang/dynamic_strings.php:221
2233
  msgid "l-nb"
2234
  msgstr "Norwegian Bokmål"
2235
 
2236
  # Norwegian Bokmål
2237
- #: ../../admin/lang/dynamic_strings.php:222
2238
  #, fuzzy
2239
  msgid "l-nb-no"
2240
  msgstr "Norwegian Bokmål"
2241
 
2242
  # Dutch; Flemish
2243
- #: ../../admin/lang/dynamic_strings.php:223
2244
  msgid "l-nl"
2245
  msgstr "Dutch; Flemish"
2246
 
2247
  # Dutch (Belgium)
2248
- #: ../../admin/lang/dynamic_strings.php:224
2249
  msgid "l-nl-be"
2250
  msgstr "Dutch (Belgium)"
2251
 
2252
  # Dutch (Netherlands)
2253
- #: ../../admin/lang/dynamic_strings.php:225
2254
  msgid "l-nl-nl"
2255
  msgstr "Dutch (Netherlands)"
2256
 
2257
  # Norwegian Nynorsk
2258
- #: ../../admin/lang/dynamic_strings.php:226
2259
  #, fuzzy
2260
  msgid "l-nn-no"
2261
  msgstr "Norwegian Nynorsk"
2262
 
2263
- #: ../../admin/lang/dynamic_strings.php:227
2264
  msgid "l-ns"
2265
  msgstr ""
2266
 
2267
- #: ../../admin/lang/dynamic_strings.php:228
2268
  msgid "l-ns-za"
2269
  msgstr ""
2270
 
2271
  # Panjabi; Punjabi
2272
- #: ../../admin/lang/dynamic_strings.php:229
2273
  msgid "l-pa"
2274
  msgstr "Panjabi; Punjabi"
2275
 
2276
  # Panjabi; Punjabi
2277
- #: ../../admin/lang/dynamic_strings.php:230
2278
  #, fuzzy
2279
  msgid "l-pa-in"
2280
  msgstr "Panjabi; Punjabi"
2281
 
2282
  # Polish
2283
- #: ../../admin/lang/dynamic_strings.php:231
2284
  msgid "l-pl"
2285
  msgstr "Polish"
2286
 
2287
  # Polish
2288
- #: ../../admin/lang/dynamic_strings.php:232
2289
  msgid "l-pl-pl"
2290
  msgstr "Polish (Poland)"
2291
 
2292
  # Pushto; Pashto
2293
- #: ../../admin/lang/dynamic_strings.php:233
2294
  msgid "l-ps"
2295
  msgstr "Pushto; Pashto"
2296
 
2297
  # Spanish (Argentina)
2298
- #: ../../admin/lang/dynamic_strings.php:234
2299
  #, fuzzy
2300
  msgid "l-ps-ar"
2301
  msgstr "Spanish (Argentina)"
2302
 
2303
  # Portuguese
2304
- #: ../../admin/lang/dynamic_strings.php:235
2305
  msgid "l-pt"
2306
  msgstr "Portuguese"
2307
 
2308
  # Portuguese (Brazil)
2309
- #: ../../admin/lang/dynamic_strings.php:236
2310
  msgid "l-pt-br"
2311
  msgstr "Portuguese (Brazil)"
2312
 
2313
  # Portuguese
2314
- #: ../../admin/lang/dynamic_strings.php:237
2315
  msgid "l-pt-pt"
2316
  msgstr "Portuguese (Portugal)"
2317
 
2318
  # Quechua
2319
- #: ../../admin/lang/dynamic_strings.php:238
2320
  msgid "l-qu"
2321
  msgstr "Quechua"
2322
 
2323
  # Quechua
2324
- #: ../../admin/lang/dynamic_strings.php:239
2325
  #, fuzzy
2326
  msgid "l-qu-bo"
2327
  msgstr "Quechua"
2328
 
2329
  # Quechua
2330
- #: ../../admin/lang/dynamic_strings.php:240
2331
  #, fuzzy
2332
  msgid "l-qu-ec"
2333
  msgstr "Quechua"
2334
 
2335
  # Quechua
2336
- #: ../../admin/lang/dynamic_strings.php:241
2337
  #, fuzzy
2338
  msgid "l-qu-pe"
2339
  msgstr "Quechua"
2340
 
2341
  # Romanian; Moldavian; Moldovan
2342
- #: ../../admin/lang/dynamic_strings.php:242
2343
  msgid "l-ro"
2344
  msgstr "Romanian; Moldavian; Moldovan"
2345
 
2346
  # Romanian; Moldavian; Moldovan
2347
- #: ../../admin/lang/dynamic_strings.php:243
2348
  #, fuzzy
2349
  msgid "l-ro-ro"
2350
  msgstr "Romanian; Moldavian; Moldovan"
2351
 
2352
  # Russian
2353
- #: ../../admin/lang/dynamic_strings.php:244
2354
  msgid "l-ru"
2355
  msgstr "Russian"
2356
 
2357
  # Russian (Russia)
2358
- #: ../../admin/lang/dynamic_strings.php:245
2359
  msgid "l-ru-ru"
2360
  msgstr "Russian (Russia)"
2361
 
2362
  # Sanskrit
2363
- #: ../../admin/lang/dynamic_strings.php:246
2364
  msgid "l-sa"
2365
  msgstr "Sanskrit"
2366
 
2367
  # Sanskrit
2368
- #: ../../admin/lang/dynamic_strings.php:247
2369
  #, fuzzy
2370
  msgid "l-sa-in"
2371
  msgstr "Sanskrit"
2372
 
2373
  # Northern Sami
2374
- #: ../../admin/lang/dynamic_strings.php:248
2375
  msgid "l-se"
2376
  msgstr "Northern Sami"
2377
 
2378
  # Northern Sami
2379
- #: ../../admin/lang/dynamic_strings.php:249
2380
  #, fuzzy
2381
  msgid "l-se-fi"
2382
  msgstr "Northern Sami"
2383
 
2384
  # Northern Sami
2385
- #: ../../admin/lang/dynamic_strings.php:250
2386
  #, fuzzy
2387
  msgid "l-se-no"
2388
  msgstr "Northern Sami"
2389
 
2390
  # Northern Sami
2391
- #: ../../admin/lang/dynamic_strings.php:251
2392
  #, fuzzy
2393
  msgid "l-se-se"
2394
  msgstr "Northern Sami"
2395
 
2396
  # Slovak
2397
- #: ../../admin/lang/dynamic_strings.php:252
2398
  msgid "l-sk"
2399
  msgstr "Slovak"
2400
 
2401
  # Slovak
2402
- #: ../../admin/lang/dynamic_strings.php:253
2403
  #, fuzzy
2404
  msgid "l-sk-sk"
2405
  msgstr "Slovak"
2406
 
2407
  # Slovenian
2408
- #: ../../admin/lang/dynamic_strings.php:254
2409
  msgid "l-sl"
2410
  msgstr "Slovenian"
2411
 
2412
  # Sinhala; Sinhalese
2413
- #: ../../admin/lang/dynamic_strings.php:255
2414
  #, fuzzy
2415
  msgid "l-sl-si"
2416
  msgstr "Sinhala; Sinhalese"
2417
 
2418
  # Albanian
2419
- #: ../../admin/lang/dynamic_strings.php:256
2420
  msgid "l-sq"
2421
  msgstr "Albanian"
2422
 
2423
  # Albanian
2424
- #: ../../admin/lang/dynamic_strings.php:257
2425
  #, fuzzy
2426
  msgid "l-sq-al"
2427
  msgstr "Albanian"
2428
 
2429
  # Serbian
2430
- #: ../../admin/lang/dynamic_strings.php:258
2431
  #, fuzzy
2432
  msgid "l-sr-ba"
2433
  msgstr "Serbian"
2434
 
2435
  # Serbian
2436
- #: ../../admin/lang/dynamic_strings.php:259
2437
  #, fuzzy
2438
  msgid "l-sr-sp"
2439
  msgstr "Serbian"
2440
 
2441
  # Swedish
2442
- #: ../../admin/lang/dynamic_strings.php:260
2443
  msgid "l-sv"
2444
  msgstr "Swedish"
2445
 
2446
  # Swedish (Finland)
2447
- #: ../../admin/lang/dynamic_strings.php:261
2448
  msgid "l-sv-fi"
2449
  msgstr "Swedish (Finland)"
2450
 
2451
  # Swedish (Sweden)
2452
- #: ../../admin/lang/dynamic_strings.php:262
2453
  msgid "l-sv-se"
2454
  msgstr "Swedish (Sweden)"
2455
 
2456
  # Swahili
2457
- #: ../../admin/lang/dynamic_strings.php:263
2458
  msgid "l-sw"
2459
  msgstr "Swahili"
2460
 
2461
  # Swahili
2462
- #: ../../admin/lang/dynamic_strings.php:264
2463
  #, fuzzy
2464
  msgid "l-sw-ke"
2465
  msgstr "Swahili"
2466
 
2467
  # Tamil
2468
- #: ../../admin/lang/dynamic_strings.php:265
2469
  msgid "l-ta"
2470
  msgstr "Tamil"
2471
 
2472
  # Tamil
2473
- #: ../../admin/lang/dynamic_strings.php:266
2474
  #, fuzzy
2475
  msgid "l-ta-in"
2476
  msgstr "Tamil"
2477
 
2478
  # Telugu
2479
- #: ../../admin/lang/dynamic_strings.php:267
2480
  msgid "l-te"
2481
  msgstr "Telugu"
2482
 
2483
  # Telugu
2484
- #: ../../admin/lang/dynamic_strings.php:268
2485
  #, fuzzy
2486
  msgid "l-te-in"
2487
  msgstr "Telugu"
2488
 
2489
  # Thai
2490
- #: ../../admin/lang/dynamic_strings.php:269
2491
  msgid "l-th"
2492
  msgstr "Thai"
2493
 
2494
  # Thai
2495
- #: ../../admin/lang/dynamic_strings.php:270
2496
  msgid "l-th-th"
2497
  msgstr "Thai (Thailand)"
2498
 
2499
  # Tagalog
2500
- #: ../../admin/lang/dynamic_strings.php:271
2501
  msgid "l-tl"
2502
  msgstr "Tagalog"
2503
 
2504
  # Tagalog
2505
- #: ../../admin/lang/dynamic_strings.php:272
2506
  #, fuzzy
2507
  msgid "l-tl-ph"
2508
  msgstr "Tagalog"
2509
 
2510
  # Tswana
2511
- #: ../../admin/lang/dynamic_strings.php:273
2512
  msgid "l-tn"
2513
  msgstr "Tswana"
2514
 
2515
  # English (South Africa)
2516
- #: ../../admin/lang/dynamic_strings.php:274
2517
  #, fuzzy
2518
  msgid "l-tn-za"
2519
  msgstr "English (South Africa)"
2520
 
2521
  # Turkish
2522
- #: ../../admin/lang/dynamic_strings.php:275
2523
  msgid "l-tr"
2524
  msgstr "Turkish"
2525
 
2526
  # Turkish
2527
- #: ../../admin/lang/dynamic_strings.php:276
2528
  msgid "l-tr-tr"
2529
  msgstr "Turkish"
2530
 
2531
  # Tatar
2532
- #: ../../admin/lang/dynamic_strings.php:277
2533
  msgid "l-tt"
2534
  msgstr "Tatar"
2535
 
2536
  # Tatar
2537
- #: ../../admin/lang/dynamic_strings.php:278
2538
  #, fuzzy
2539
  msgid "l-tt-ru"
2540
  msgstr "Tatar"
2541
 
2542
  # Tsonga
2543
- #: ../../admin/lang/dynamic_strings.php:279
2544
  msgid "l-ts"
2545
  msgstr "Tsonga"
2546
 
2547
  # Ukrainian
2548
- #: ../../admin/lang/dynamic_strings.php:280
2549
  msgid "l-uk"
2550
  msgstr "Ukrainian"
2551
 
2552
  # Ukrainian
2553
- #: ../../admin/lang/dynamic_strings.php:281
2554
  #, fuzzy
2555
  msgid "l-uk-ua"
2556
  msgstr "Ukrainian"
2557
 
2558
  # Urdu
2559
- #: ../../admin/lang/dynamic_strings.php:282
2560
  msgid "l-ur"
2561
  msgstr "Urdu"
2562
 
2563
  # Urdu
2564
- #: ../../admin/lang/dynamic_strings.php:283
2565
  #, fuzzy
2566
  msgid "l-ur-pk"
2567
  msgstr "Urdu"
2568
 
2569
  # Uzbek
2570
- #: ../../admin/lang/dynamic_strings.php:284
2571
  msgid "l-uz"
2572
  msgstr "Uzbek"
2573
 
2574
  # Uzbek
2575
- #: ../../admin/lang/dynamic_strings.php:285
2576
  #, fuzzy
2577
  msgid "l-uz-uz"
2578
  msgstr "Uzbek"
2579
 
2580
  # Vietnamese
2581
- #: ../../admin/lang/dynamic_strings.php:286
2582
  msgid "l-vi"
2583
  msgstr "Vietnamese"
2584
 
2585
  # Vietnamese
2586
- #: ../../admin/lang/dynamic_strings.php:287
2587
  msgid "l-vi-vn"
2588
  msgstr "Vietnamese (Vietnam)"
2589
 
2590
  # Xhosa
2591
- #: ../../admin/lang/dynamic_strings.php:288
2592
  msgid "l-xh"
2593
  msgstr "Xhosa"
2594
 
2595
  # Xhosa
2596
- #: ../../admin/lang/dynamic_strings.php:289
2597
  #, fuzzy
2598
  msgid "l-xh-za"
2599
  msgstr "Xhosa"
2600
 
2601
  # Chinese
2602
- #: ../../admin/lang/dynamic_strings.php:290
2603
  msgid "l-zh"
2604
  msgstr "Chinese"
2605
 
2606
  # Chinese (China)
2607
- #: ../../admin/lang/dynamic_strings.php:291
2608
  msgid "l-zh-cn"
2609
  msgstr "Chinese (China)"
2610
 
2611
  # Chinese (Hong Kong)
2612
- #: ../../admin/lang/dynamic_strings.php:292
2613
  msgid "l-zh-hk"
2614
  msgstr "Chinese (Hong Kong)"
2615
 
2616
  # Chinese
2617
- #: ../../admin/lang/dynamic_strings.php:293
2618
  #, fuzzy
2619
  msgid "l-zh-mo"
2620
  msgstr "Chinese"
2621
 
2622
  # Chinese (Singapore)
2623
- #: ../../admin/lang/dynamic_strings.php:294
2624
  msgid "l-zh-sg"
2625
  msgstr "Chinese (Singapore)"
2626
 
2627
  # Chinese (Taiwan)
2628
- #: ../../admin/lang/dynamic_strings.php:295
2629
  msgid "l-zh-tw"
2630
  msgstr "Taiwanese"
2631
 
2632
  # Zulu
2633
- #: ../../admin/lang/dynamic_strings.php:296
2634
  msgid "l-zu"
2635
  msgstr "Zulu"
2636
 
2637
  # Zulu
2638
- #: ../../admin/lang/dynamic_strings.php:297
2639
  #, fuzzy
2640
  msgid "l-zu-za"
2641
  msgstr "Zulu"
2642
 
2643
- #: ../../admin/lang/dynamic_strings.php:298
2644
- #: ../../admin/view/wp-slimstat-reports.php:505
2645
  msgid "l-"
2646
  msgstr "l-"
2647
 
2648
  # Unknown
2649
- #: ../../admin/lang/dynamic_strings.php:299
2650
  msgid "l-empty"
2651
  msgstr "Unknown"
2652
 
2653
  # Unknown
2654
- #: ../../admin/lang/dynamic_strings.php:300
2655
  msgid "l-xx"
2656
  msgstr "Unknown"
2657
 
2658
- #: ../../admin/lang/dynamic_strings.php:301
2659
  msgid "c-xy"
2660
  msgstr "Lokale IP-Adresse"
2661
 
2662
- #: ../../admin/view/index.php:24
2663
  msgid "is between (x,y)"
2664
  msgstr ""
2665
 
2666
- #: ../../admin/view/index.php:44
2667
  msgid "Load"
2668
  msgstr ""
2669
 
2670
- #: ../../admin/view/index.php:64 ../../admin/view/wp-slimstat-reports.php:821
2671
  msgid "Today"
2672
  msgstr "heute"
2673
 
2674
- #: ../../admin/view/index.php:65 ../../admin/view/wp-slimstat-reports.php:822
2675
  msgid "Yesterday"
2676
  msgstr "Gestern"
2677
 
2678
- #: ../../admin/view/index.php:66
2679
  msgid "Last 7 Days"
2680
  msgstr "Letzte 7 Tage"
2681
 
2682
- #: ../../admin/view/index.php:67
2683
  #, fuzzy
2684
  msgid "Last 60 Days"
2685
  msgstr "Letzte 30 Tage"
2686
 
2687
- #: ../../admin/view/index.php:68
2688
  msgid "Last 90 Days"
2689
  msgstr "Letzte 90 Tage"
2690
 
2691
- #: ../../admin/view/index.php:69
2692
  #, fuzzy
2693
  msgid "This Year So Far"
2694
  msgstr "Heuer"
2695
 
2696
- #: ../../admin/view/index.php:70
2697
  #, fuzzy
2698
  msgid "Date Range"
2699
  msgstr "Datum und Uhrzeit"
2700
 
2701
- #: ../../admin/view/index.php:72 ../../admin/view/wp-slimstat-db.php:70
 
2702
  msgid "Day"
2703
  msgstr "Tag"
2704
 
2705
- #: ../../admin/view/index.php:82 ../../admin/view/wp-slimstat-db.php:71
 
2706
  msgid "Month"
2707
  msgstr "Monat"
2708
 
2709
- #: ../../admin/view/index.php:91 ../../admin/view/wp-slimstat-db.php:72
 
2710
  msgid "Year"
2711
  msgstr "Jahr"
2712
 
2713
- #: ../../admin/view/index.php:92 ../../admin/view/wp-slimstat-db.php:69
 
2714
  msgid "Hour"
2715
  msgstr "Stunde"
2716
 
2717
- #: ../../admin/view/index.php:93
2718
  msgid "Min"
2719
  msgstr ""
2720
 
2721
- #: ../../admin/view/index.php:101 ../../admin/view/wp-slimstat-db.php:75
 
2722
  msgid "hours"
2723
  msgstr ""
2724
 
2725
- #: ../../admin/view/index.php:102
2726
  msgid "mins"
2727
  msgstr ""
2728
 
2729
- #: ../../admin/view/index.php:110
2730
  #, fuzzy
2731
  msgid "Reset Filters"
2732
  msgstr "Datumsfilter"
2733
 
2734
- #: ../../admin/view/index.php:151
 
 
 
 
 
 
 
2735
  msgid "Your report here"
2736
  msgstr "Deine Auswertung hier"
2737
 
2738
- #: ../../admin/view/index.php:153
2739
  #, fuzzy
2740
  msgid ""
2741
  "Yes, you can! Create and view your personalized analytics for Slimstat. Just "
@@ -2753,13 +2938,7 @@ msgstr ""
2753
  "besuchen Sie mein <a href=\"http://lab.duechiacchiere.it/\" title=\"WP "
2754
  "SlimStat Support-Forum\" target=\"_blank\">Support-Forum</a>."
2755
 
2756
- #: ../../admin/view/index.php:167 ../../admin/view/wp-slimstat-reports.php:812
2757
- #: ../../admin/view/wp-slimstat-reports.php:914
2758
- #: ../../admin/view/wp-slimstat-reports.php:1137
2759
- msgid "Pageviews"
2760
- msgstr "Seitenaufrufe"
2761
-
2762
- #: ../../admin/view/index.php:170
2763
  #, fuzzy
2764
  msgid ""
2765
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
@@ -2770,52 +2949,58 @@ msgstr ""
2770
  "einen Cookie zu. WP SlimStat erweitert diese Information um die Erkennung "
2771
  "zur&uuml;kkehrender Besucher."
2772
 
2773
- #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2774
- #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2775
  msgid "Color codes"
2776
  msgstr "Farbcode"
2777
 
2778
- #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2779
  #, fuzzy
2780
  msgid "From search result page"
2781
  msgstr "Von einer Suchergebnisseite"
2782
 
2783
- #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2784
- #: ../../admin/wp-slimstat-admin.php:806
2785
  msgid "Known Visitor"
2786
  msgstr "Bekannte Besucher"
2787
 
2788
- #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2789
- #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2790
  msgid "Known Users"
2791
  msgstr "Bekannte Benutzer"
2792
 
2793
- #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2794
- #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2795
  msgid "Other Humans"
2796
  msgstr "Andere echte Besucher"
2797
 
2798
- #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2799
  msgid "Bot or Crawler"
2800
  msgstr "Bot oder Crawler"
2801
 
2802
- #: ../../admin/view/index.php:178
2803
  #, fuzzy
2804
  msgid "Keywords used by your visitors to find your website on a search engine."
2805
  msgstr "Begriffe welche von Besuchern in Suchmaschinen verwendet wurden"
2806
 
2807
- #: ../../admin/view/index.php:181
2808
  msgid ""
2809
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
2810
  "measures your site's rankings. Values are updated every 12 hours. Filters "
2811
  "set above don't apply to this report."
2812
  msgstr ""
2813
 
2814
- #: ../../admin/view/index.php:184
2815
  msgid "Human Visits"
2816
  msgstr "Echte Besuche"
2817
 
2818
- #: ../../admin/view/index.php:187
 
 
 
 
 
 
2819
  #, fuzzy
2820
  msgid ""
2821
  "Internet Service Provider: a company which provides other companies or "
@@ -2829,7 +3014,7 @@ msgstr ""
2829
  "Adressen generell zu ignorieren kann ein entsprechender Filter unter "
2830
  "'Einstellungen > SlimStat > Filter' gesetzt werden."
2831
 
2832
- #: ../../admin/view/index.php:190
2833
  #, fuzzy
2834
  msgid ""
2835
  "You can configure Slimstat to ignore a specific Country by setting the "
@@ -2838,7 +3023,7 @@ msgstr ""
2838
  "Um ein spezifisches Land generell zu ignorieren kann ein entsprechender "
2839
  "Filter unter 'Einstellungen > SlimStat > Filter' gesetzt werden."
2840
 
2841
- #: ../../admin/view/index.php:193
2842
  msgid ""
2843
  "This report shows you what user agent families (no version considered) are "
2844
  "popular among your visitors."
@@ -2846,7 +3031,7 @@ msgstr ""
2846
  "Dieser Bericht zeigt, welche User Agent-Familien (unabhängig Ihrer Version) "
2847
  "bei Ihren Besuchern populär sind."
2848
 
2849
- #: ../../admin/view/index.php:196
2850
  msgid ""
2851
  "This report shows you what operating system families (no version considered) "
2852
  "are popular among your visitors."
@@ -2854,17 +3039,17 @@ msgstr ""
2854
  "Dieser Bericht zeigt, welche Betriebssystemfamilien (ohne Berücksichtigung "
2855
  "der Version) hauptsächlich von Ihren Benutzer verwendet werden."
2856
 
2857
- #: ../../admin/view/index.php:199 ../../admin/view/wp-slimstat-reports.php:38
2858
- #: ../../admin/wp-slimstat-admin.php:509 ../../admin/wp-slimstat-admin.php:526
2859
- #: ../../wp-slimstat.php:1348
2860
  msgid "Traffic Sources"
2861
  msgstr "Traffic-Ursprung"
2862
 
2863
- #: ../../admin/view/index.php:202
2864
  msgid "Average Pageviews per Visit"
2865
  msgstr "Durchschnittl. Seitenaufrufe pro Besuch"
2866
 
2867
- #: ../../admin/view/index.php:205
2868
  msgid ""
2869
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
2870
  "left your site from the entrance (landing) page."
@@ -2872,12 +3057,12 @@ msgstr ""
2872
  "Eine 'Absprung' Seite ist der Zugriff auf eine einzelne Seite oder wenn der "
2873
  "Besucher die Website bereits auf der Einstiegs-Seite wieder verl&auml;sst."
2874
 
2875
- #: ../../admin/view/index.php:208
2876
  msgid "Searches performed using Wordpress' built-in search functionality."
2877
  msgstr ""
2878
  "Suchen welche mit der WordPress eigenen Such-Funktion ausgef&uuml;hrt wurden."
2879
 
2880
- #: ../../admin/view/index.php:212
2881
  #, fuzzy
2882
  msgid ""
2883
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
@@ -2888,7 +3073,7 @@ msgstr ""
2888
  "Seite angeklickt wurde.<br>- <em>ID:xx</em> wird gezeigt, wenn dem "
2889
  "betreffenden Link ein ID-Attribute zugewiesen wurde."
2890
 
2891
- #: ../../admin/view/index.php:215
2892
  msgid ""
2893
  "This report lists any <em>event</em> occurred on your website. Please refer "
2894
  "to the FAQ for more information on how to leverage this functionality."
@@ -2897,7 +3082,7 @@ msgstr ""
2897
  "stattgefunden hat. Bitte schlagen Sie in der FAQ für weitere Informationen "
2898
  "zur Verwendung dieser Funktionalit&auml;t nach."
2899
 
2900
- #: ../../admin/view/index.php:218
2901
  msgid ""
2902
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2903
  "this report is not affected by the filters set here above."
@@ -2921,51 +3106,55 @@ msgstr "Mobiles Gerät"
2921
  msgid "Syndication Reader"
2922
  msgstr ""
2923
 
2924
- #: ../../admin/view/right-now.php:30
2925
- #: ../../admin/view/wp-slimstat-reports.php:440
2926
- #: ../../admin/view/wp-slimstat-reports.php:703
2927
  msgid "No data to display"
2928
  msgstr "keine Daten vorhanden"
2929
 
2930
  # Unknown
2931
- #: ../../admin/view/right-now.php:56
2932
- #: ../../admin/view/wp-slimstat-reports.php:493
2933
- #: ../../admin/view/wp-slimstat-reports.php:746
2934
- #: ../../admin/view/wp-slimstat-reports.php:1025
2935
  msgid "c-"
2936
  msgstr "Unknown"
2937
 
2938
- #: ../../admin/view/right-now.php:109 ../../admin/view/wp-slimstat-db.php:61
2939
- #: ../../admin/wp-slimstat-admin.php:808 ../../admin/wp-slimstat-admin.php:850
 
 
2940
  msgid "Originating IP"
2941
  msgstr "Ursprüngliche IP"
2942
 
2943
- #: ../../admin/view/right-now.php:130
2944
  msgid "Server Latency and Page Speed in milliseconds"
2945
  msgstr ""
2946
 
2947
- #: ../../admin/view/right-now.php:130
2948
  msgid "SL"
2949
  msgstr ""
2950
 
2951
- #: ../../admin/view/right-now.php:130
2952
  msgid "PS"
2953
  msgstr ""
2954
 
2955
- #: ../../admin/view/right-now.php:142
2956
- #: ../../admin/view/wp-slimstat-reports.php:552
2957
- #: ../../admin/view/wp-slimstat-reports.php:556
2958
- #: ../../admin/view/wp-slimstat-reports.php:728
2959
- #: ../../admin/view/wp-slimstat-reports.php:781
2960
  msgid "Open this URL in a new window"
2961
  msgstr "Diese URL in einem neuen Fenster &ouml;ffnen"
2962
 
2963
- #: ../../admin/view/right-now.php:145
2964
  msgid "Local search results page"
2965
  msgstr "lokale Suchergebnisse"
2966
 
2967
- #: ../../admin/view/right-now.php:150 ../../admin/view/wp-slimstat-db.php:40
2968
- #: ../../admin/wp-slimstat-admin.php:811 ../../admin/wp-slimstat-admin.php:827
 
 
2969
  msgid "Search Terms"
2970
  msgstr "Suchbegriffe"
2971
 
@@ -2973,10 +3162,6 @@ msgstr "Suchbegriffe"
2973
  msgid "Open this referrer in a new window"
2974
  msgstr "Verweisende Seite in einem neuen Fenster &ouml;ffnen"
2975
 
2976
- #: ../../admin/view/right-now.php:154
2977
- msgid "Open this outbound link in a new window"
2978
- msgstr "Wegführender Link in neuem Fenster &ouml;ffnen"
2979
-
2980
  #: ../../admin/view/right-now.php:155
2981
  msgid "Date and Time"
2982
  msgstr "Datum und Uhrzeit"
@@ -2986,602 +3171,667 @@ msgstr "Datum und Uhrzeit"
2986
  msgid "Content Type"
2987
  msgstr "Inhalt"
2988
 
2989
- #: ../../admin/view/wp-slimstat-db.php:37
2990
- #: ../../admin/wp-slimstat-admin.php:824
 
 
 
 
 
 
2991
  msgid "Browser"
2992
  msgstr "Browser"
2993
 
2994
- #: ../../admin/view/wp-slimstat-db.php:38
2995
- #: ../../admin/view/wp-slimstat-reports.php:492
2996
- #: ../../admin/wp-slimstat-admin.php:825
 
2997
  msgid "Country Code"
2998
  msgstr "L&auml;nder-Code"
2999
 
3000
- #: ../../admin/view/wp-slimstat-db.php:39
 
3001
  msgid "IP Address"
3002
  msgstr "IP-Adresse"
3003
 
3004
- #: ../../admin/view/wp-slimstat-db.php:41
3005
- #: ../../admin/view/wp-slimstat-reports.php:504
3006
- #: ../../admin/wp-slimstat-admin.php:828
 
3007
  msgid "Language Code"
3008
  msgstr "Sprach-Kodierung"
3009
 
3010
- #: ../../admin/view/wp-slimstat-db.php:42
3011
- #: ../../admin/wp-slimstat-admin.php:829
 
3012
  msgid "Operating System"
3013
  msgstr "Betriebssystem"
3014
 
3015
- #: ../../admin/view/wp-slimstat-db.php:43
3016
- #: ../../admin/wp-slimstat-admin.php:830
 
3017
  msgid "Permalink"
3018
  msgstr "Permalink"
3019
 
3020
- #: ../../admin/view/wp-slimstat-db.php:44
3021
  msgid "Domain"
3022
  msgstr "Dom&auml;ne"
3023
 
3024
- #: ../../admin/view/wp-slimstat-db.php:45
3025
- #: ../../admin/wp-slimstat-admin.php:831
 
3026
  msgid "Referer"
3027
  msgstr "Herkunft"
3028
 
3029
- #: ../../admin/view/wp-slimstat-db.php:46
3030
- #: ../../admin/wp-slimstat-admin.php:832
 
3031
  msgid "Visitor's Name"
3032
  msgstr "Besuchername"
3033
 
3034
- #: ../../admin/view/wp-slimstat-db.php:47
 
3035
  msgid "Page Speed"
3036
  msgstr ""
3037
 
3038
- #: ../../admin/view/wp-slimstat-db.php:49
 
3039
  msgid "-- Advanced filters --"
3040
  msgstr "-- Erweiterte Filter --"
3041
 
3042
- #: ../../admin/view/wp-slimstat-db.php:50
3043
- #: ../../admin/view/wp-slimstat-reports.php:64
 
3044
  msgid "Browser Capabilities"
3045
  msgstr "Browser-F&auml;higkeiten"
3046
 
3047
- #: ../../admin/view/wp-slimstat-db.php:51
3048
- #: ../../admin/wp-slimstat-admin.php:843
 
3049
  msgid "Browser Version"
3050
  msgstr "Browser-Version"
3051
 
3052
- #: ../../admin/view/wp-slimstat-db.php:52
3053
- #: ../../admin/wp-slimstat-admin.php:844
 
3054
  msgid "Browser Type"
3055
  msgstr "Browser-Typ"
3056
 
3057
- #: ../../admin/view/wp-slimstat-db.php:53
3058
- #: ../../admin/wp-slimstat-admin.php:813
 
3059
  msgid "User Agent"
3060
  msgstr "User Agent"
3061
 
3062
- #: ../../admin/view/wp-slimstat-db.php:54
3063
- #: ../../admin/wp-slimstat-admin.php:845
 
3064
  msgid "Color Depth"
3065
  msgstr "Farbtiefe"
3066
 
3067
- #: ../../admin/view/wp-slimstat-db.php:55
3068
- #: ../../admin/wp-slimstat-admin.php:846
 
3069
  msgid "CSS Version"
3070
  msgstr "CSS Version"
3071
 
3072
- #: ../../admin/view/wp-slimstat-db.php:56
3073
- #: ../../admin/wp-slimstat-admin.php:847
 
3074
  msgid "Pageview Attributes"
3075
  msgstr "Eigenschaften Seitenaufrufe"
3076
 
3077
- #: ../../admin/view/wp-slimstat-db.php:57
 
3078
  #, fuzzy
3079
  msgid "Server Latency"
3080
  msgstr "Latenz"
3081
 
3082
- #: ../../admin/view/wp-slimstat-db.php:58
3083
- #: ../../admin/wp-slimstat-admin.php:814
3084
  msgid "Outbound Link"
3085
  msgstr "Ausgehender Link"
3086
 
3087
- #: ../../admin/view/wp-slimstat-db.php:59
3088
- #: ../../admin/wp-slimstat-admin.php:848
 
3089
  msgid "Post Author"
3090
  msgstr "Autor der Seiten"
3091
 
3092
- #: ../../admin/view/wp-slimstat-db.php:60
3093
- #: ../../admin/wp-slimstat-admin.php:849
 
3094
  msgid "Post Category ID"
3095
  msgstr "Kategorie-ID der Seite"
3096
 
3097
- #: ../../admin/view/wp-slimstat-db.php:62
3098
- #: ../../admin/wp-slimstat-admin.php:851
 
3099
  msgid "Resource Content Type"
3100
  msgstr "Inhalt der Ressource"
3101
 
3102
- #: ../../admin/view/wp-slimstat-db.php:63
 
3103
  msgid "Resource ID"
3104
  msgstr "Ressourcen-ID"
3105
 
3106
- #: ../../admin/view/wp-slimstat-db.php:64
3107
- #: ../../admin/wp-slimstat-admin.php:852
3108
  msgid "Screen Resolution"
3109
  msgstr "Bildschirm-Aufl&ouml;sung"
3110
 
3111
- #: ../../admin/view/wp-slimstat-db.php:65
3112
- #: ../../admin/wp-slimstat-admin.php:853
 
3113
  msgid "Visit ID"
3114
  msgstr "Besuchs-ID"
3115
 
3116
- #: ../../admin/view/wp-slimstat-db.php:68
 
3117
  msgid "Minute"
3118
  msgstr ""
3119
 
3120
- #: ../../admin/view/wp-slimstat-db.php:73
 
3121
  msgid "+/-"
3122
  msgstr ""
3123
 
3124
- #: ../../admin/view/wp-slimstat-db.php:76
 
3125
  #, fuzzy
3126
  msgid "minutes"
3127
  msgstr "1-3 Minuten"
3128
 
3129
- #: ../../admin/view/wp-slimstat-db.php:78
3130
  #, fuzzy
3131
  msgid "Order Direction"
3132
  msgstr "Macromedia Director"
3133
 
3134
- #: ../../admin/view/wp-slimstat-db.php:79
 
3135
  #, fuzzy
3136
  msgid "Limit Results"
3137
  msgstr "Max. Anzahl Ergebnisse"
3138
 
3139
- #: ../../admin/view/wp-slimstat-db.php:80
 
3140
  msgid "Start From"
3141
  msgstr ""
3142
 
3143
- #: ../../admin/view/wp-slimstat-reports.php:34
3144
- #: ../../admin/wp-slimstat-admin.php:505 ../../wp-slimstat.php:1344
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3145
  msgid "Real-Time Log"
3146
  msgstr ""
3147
 
3148
- #: ../../admin/view/wp-slimstat-reports.php:35
3149
- #: ../../admin/wp-slimstat-admin.php:506 ../../admin/wp-slimstat-admin.php:523
3150
- #: ../../wp-slimstat.php:1345
3151
  msgid "Overview"
3152
  msgstr "&Uuml;bersicht"
3153
 
3154
- #: ../../admin/view/wp-slimstat-reports.php:36
3155
- #: ../../admin/wp-slimstat-admin.php:507 ../../admin/wp-slimstat-admin.php:524
3156
- #: ../../wp-slimstat.php:1346
3157
  msgid "Audience"
3158
  msgstr ""
3159
 
3160
- #: ../../admin/view/wp-slimstat-reports.php:37
3161
- #: ../../admin/wp-slimstat-admin.php:508 ../../admin/wp-slimstat-admin.php:525
3162
- #: ../../wp-slimstat.php:1347
3163
  msgid "Site Analysis"
3164
  msgstr ""
3165
 
3166
- #: ../../admin/view/wp-slimstat-reports.php:39
3167
- #: ../../admin/wp-slimstat-admin.php:510 ../../admin/wp-slimstat-admin.php:527
3168
- #: ../../wp-slimstat.php:1349
3169
  msgid "Map Overlay"
3170
  msgstr ""
3171
 
3172
- #: ../../admin/view/wp-slimstat-reports.php:40
3173
- #: ../../admin/wp-slimstat-admin.php:511 ../../admin/wp-slimstat-admin.php:528
3174
- #: ../../wp-slimstat.php:1350
3175
  msgid "Custom Reports"
3176
  msgstr "individuelle Auswertungen"
3177
 
3178
- #: ../../admin/view/wp-slimstat-reports.php:44
3179
  msgid "Pageviews (chart)"
3180
  msgstr "Seitenaufrufe (Diagramm)"
3181
 
3182
- #: ../../admin/view/wp-slimstat-reports.php:45
3183
  #, fuzzy
3184
  msgid "About Slimstat"
3185
  msgstr "&Uuml;ber WP SlimStat"
3186
 
3187
- #: ../../admin/view/wp-slimstat-reports.php:46
3188
  msgid "At a Glance"
3189
  msgstr "Auf einen Blick"
3190
 
3191
- #: ../../admin/view/wp-slimstat-reports.php:47
3192
  #, fuzzy
3193
  msgid "Currently Online"
3194
  msgstr "Aktuelle Filter:"
3195
 
3196
- #: ../../admin/view/wp-slimstat-reports.php:48
3197
  #: ../../admin/view/wp-slimstat-reports.php:82
3198
- msgid "Spy View"
3199
- msgstr "Aktuelle Seitenaufrufe"
3200
-
3201
- #: ../../admin/view/wp-slimstat-reports.php:49
3202
- #: ../../admin/view/wp-slimstat-reports.php:83
3203
  msgid "Recent Search Terms"
3204
  msgstr "Letzte interne Suchbegriffe"
3205
 
3206
- #: ../../admin/view/wp-slimstat-reports.php:50
3207
  msgid "Top Pages"
3208
  msgstr "Top-Seiten"
3209
 
3210
- #: ../../admin/view/wp-slimstat-reports.php:51
3211
- #: ../../admin/view/wp-slimstat-reports.php:80
3212
  msgid "Top Traffic Sources"
3213
  msgstr "Top-Traffic-Ursprung"
3214
 
3215
- #: ../../admin/view/wp-slimstat-reports.php:52
3216
  msgid "Top Known Visitors"
3217
  msgstr "Top bekannte Besucher"
3218
 
3219
- #: ../../admin/view/wp-slimstat-reports.php:53
3220
- #: ../../admin/view/wp-slimstat-reports.php:78
3221
- #: ../../admin/view/wp-slimstat-reports.php:98
3222
  msgid "Top Search Terms"
3223
  msgstr "Top-Suchbegriffe"
3224
 
3225
- #: ../../admin/view/wp-slimstat-reports.php:54
3226
- #: ../../admin/view/wp-slimstat-reports.php:65
3227
- #: ../../admin/view/wp-slimstat-reports.php:79
3228
  msgid "Top Countries"
3229
  msgstr "Top-L&auml;nder"
3230
 
3231
- #: ../../admin/view/wp-slimstat-reports.php:55
3232
  msgid "Rankings"
3233
  msgstr ""
3234
 
3235
- #: ../../admin/view/wp-slimstat-reports.php:56
3236
  #, fuzzy
3237
  msgid "Top Language Families"
3238
  msgstr "Top-Sprachen"
3239
 
3240
- #: ../../admin/view/wp-slimstat-reports.php:57
 
 
 
 
3241
  msgid "Human Visits (chart)"
3242
  msgstr "Echte Besucher (Diagramm)"
3243
 
3244
- #: ../../admin/view/wp-slimstat-reports.php:58
3245
  #, fuzzy
3246
  msgid "Audience Overview"
3247
  msgstr "&Uuml;bersicht"
3248
 
3249
- #: ../../admin/view/wp-slimstat-reports.php:59
3250
  msgid "Top Languages"
3251
  msgstr "Top-Sprachen"
3252
 
3253
- #: ../../admin/view/wp-slimstat-reports.php:60
3254
  msgid "Top Browsers"
3255
  msgstr "Top-Browser"
3256
 
3257
- #: ../../admin/view/wp-slimstat-reports.php:61
3258
  msgid "Top Service Providers"
3259
  msgstr "Top-Internetprovider"
3260
 
3261
- #: ../../admin/view/wp-slimstat-reports.php:62
3262
  msgid "Top Operating Systems"
3263
  msgstr "Top-Betriebssysteme"
3264
 
3265
- #: ../../admin/view/wp-slimstat-reports.php:63
3266
  msgid "Top Screen Resolutions"
3267
  msgstr "Top-Bildschirmaufl&ouml;sungen"
3268
 
3269
- #: ../../admin/view/wp-slimstat-reports.php:66
3270
  msgid "Visit Duration"
3271
  msgstr "Besuchsdauer"
3272
 
3273
- #: ../../admin/view/wp-slimstat-reports.php:67
3274
- #: ../../admin/view/wp-slimstat-reports.php:84
3275
  msgid "Recent Countries"
3276
  msgstr "Letzte L&auml;nder"
3277
 
3278
- #: ../../admin/view/wp-slimstat-reports.php:68
3279
  msgid "Recent Screen Resolutions"
3280
  msgstr "Letzte Bildschirmaufl&ouml;sungen"
3281
 
3282
- #: ../../admin/view/wp-slimstat-reports.php:69
3283
  msgid "Recent Operating Systems"
3284
  msgstr "Letzte Betriebssysteme"
3285
 
3286
- #: ../../admin/view/wp-slimstat-reports.php:70
3287
  msgid "Recent Browsers"
3288
  msgstr "Letzte Browser"
3289
 
3290
- #: ../../admin/view/wp-slimstat-reports.php:71
3291
  msgid "Recent Languages"
3292
  msgstr "Letzte Sprachen"
3293
 
3294
- #: ../../admin/view/wp-slimstat-reports.php:72
3295
  msgid "Top Browser Families"
3296
  msgstr "Top-Browserfamilien"
3297
 
3298
- #: ../../admin/view/wp-slimstat-reports.php:73
3299
  msgid "Top OS Families"
3300
  msgstr "Top-Betriebssysteme"
3301
 
3302
- #: ../../admin/view/wp-slimstat-reports.php:74
3303
  msgid "Recent Users"
3304
  msgstr "Letzte Benutzer"
3305
 
3306
- #: ../../admin/view/wp-slimstat-reports.php:75
3307
  msgid "Top Users"
3308
  msgstr "Top-Benutzer"
3309
 
3310
- #: ../../admin/view/wp-slimstat-reports.php:76
3311
  msgid "Traffic Sources (chart)"
3312
  msgstr "Traffic-Ursprung (Diagramm)"
3313
 
3314
- #: ../../admin/view/wp-slimstat-reports.php:77
3315
  msgid "Summary"
3316
  msgstr "Zusammenfassung"
3317
 
3318
- #: ../../admin/view/wp-slimstat-reports.php:81
3319
  msgid "Top Referring Search Engines"
3320
  msgstr "Top verweisende Suchmaschinen"
3321
 
3322
- #: ../../admin/view/wp-slimstat-reports.php:85
3323
- #: ../../admin/view/wp-slimstat-reports.php:101
3324
- msgid "Top Landing Pages"
3325
- msgstr "Top-Einstiegsseiten"
3326
 
3327
- #: ../../admin/view/wp-slimstat-reports.php:86
3328
- msgid "Average Pageviews per Visit (chart)"
3329
- msgstr "Durchschnittl. Seitenaufrufe pro Besuch (Diagramm)"
 
3330
 
3331
- #: ../../admin/view/wp-slimstat-reports.php:87
3332
  msgid "Recent Posts"
3333
  msgstr "Letzte Artikel"
3334
 
3335
- #: ../../admin/view/wp-slimstat-reports.php:88
3336
  msgid "Recent Bounce Pages"
3337
  msgstr "Letzte Absprungseiten"
3338
 
3339
- #: ../../admin/view/wp-slimstat-reports.php:89
3340
  msgid "Recent Feeds"
3341
  msgstr "Letzte Feeds"
3342
 
3343
- #: ../../admin/view/wp-slimstat-reports.php:90
3344
  msgid "Recent Pages Not Found"
3345
  msgstr ""
3346
 
3347
- #: ../../admin/view/wp-slimstat-reports.php:91
3348
  msgid "Recent Internal Searches"
3349
  msgstr "Letzte interne Suchbegriffe"
3350
 
3351
- #: ../../admin/view/wp-slimstat-reports.php:92
3352
  msgid "Top Categories"
3353
  msgstr "Top-Kategorien"
3354
 
3355
- #: ../../admin/view/wp-slimstat-reports.php:93
3356
  msgid "Recent Outbound Links"
3357
  msgstr "Letzte ausgehende Links"
3358
 
3359
- #: ../../admin/view/wp-slimstat-reports.php:94
3360
  msgid "Recent Events"
3361
  msgstr "Letzte Ereignisse"
3362
 
3363
- #: ../../admin/view/wp-slimstat-reports.php:95
3364
  msgid "Top Posts"
3365
  msgstr "Top-Artikel"
3366
 
3367
- #: ../../admin/view/wp-slimstat-reports.php:96
3368
  msgid "Top Feeds"
3369
  msgstr "Top-Feeds"
3370
 
3371
- #: ../../admin/view/wp-slimstat-reports.php:97
3372
  msgid "Top Internal Searches"
3373
  msgstr "Top interne Suchbegriffe"
3374
 
3375
- #: ../../admin/view/wp-slimstat-reports.php:99
3376
  msgid "Recent Categories"
3377
  msgstr "Letzte Kategorien"
3378
 
3379
- #: ../../admin/view/wp-slimstat-reports.php:100
3380
  #, fuzzy
3381
  msgid "Top Pages Not Found"
3382
  msgstr "Top-Seiten"
3383
 
3384
- #: ../../admin/view/wp-slimstat-reports.php:102
 
 
 
 
 
3385
  msgid "Top Authors"
3386
  msgstr "Top-Autoren"
3387
 
3388
- #: ../../admin/view/wp-slimstat-reports.php:103
3389
  #, fuzzy
3390
  msgid "Top Tags"
3391
  msgstr "Top Seiten"
3392
 
3393
- #: ../../admin/view/wp-slimstat-reports.php:104
3394
  msgid "Recent Downloads"
3395
  msgstr "Letzte Downloads"
3396
 
3397
- #: ../../admin/view/wp-slimstat-reports.php:105
3398
  #, fuzzy
3399
  msgid "Top OutLinks and Downloads"
3400
  msgstr "Top-Downloads"
3401
 
3402
- #: ../../admin/view/wp-slimstat-reports.php:106
3403
  msgid "Your Website"
3404
  msgstr "Ihre Webseite"
3405
 
 
 
 
 
 
3406
  #: ../../admin/view/wp-slimstat-reports.php:107
 
 
 
 
 
 
 
 
 
 
3407
  msgid "World Map"
3408
  msgstr "Weltkarte"
3409
 
3410
- #: ../../admin/view/wp-slimstat-reports.php:108
3411
  msgid "Activity"
3412
  msgstr ""
3413
 
3414
- #: ../../admin/view/wp-slimstat-reports.php:215
3415
  msgid "Chart controls"
3416
  msgstr "Diagramm-Einstellungen"
3417
 
3418
- #: ../../admin/view/wp-slimstat-reports.php:215
3419
  msgid "Use your mouse wheel to zoom in and out"
3420
  msgstr "Verwende das Mausrad zum Zoomen"
3421
 
3422
- #: ../../admin/view/wp-slimstat-reports.php:215
3423
  msgid "While zooming in, drag the chart to move to a different area"
3424
  msgstr ""
3425
  "W&auml;hrend des Zooms das Diagramm zu einer anderen Position verschieben."
3426
 
3427
- #: ../../admin/view/wp-slimstat-reports.php:215
3428
  msgid "Double click on an empty region to reset the zoom level"
3429
  msgstr ""
3430
  "Doppelklick auf einen freien Bereich, um den Zoomlevel zur&uuml;ckzusetzen"
3431
 
3432
- #: ../../admin/view/wp-slimstat-reports.php:228
3433
  msgid "src"
3434
  msgstr "src"
3435
 
3436
- #: ../../admin/view/wp-slimstat-reports.php:229
3437
  msgid "serp"
3438
  msgstr "serp"
3439
 
3440
- #: ../../admin/view/wp-slimstat-reports.php:234
3441
- msgid "Go to the corresponding search engine result page"
3442
- msgstr "Zugeh&ouml;rige Ergbnisseite der Suchmaschine &ouml;ffnen"
3443
-
3444
- #: ../../admin/view/wp-slimstat-reports.php:237
3445
  msgid "Go to the referring page"
3446
  msgstr "Verweisende Seite &ouml;ffnen"
3447
 
3448
- #: ../../admin/view/wp-slimstat-reports.php:260
3449
  msgid "Remove filter for"
3450
  msgstr "Entferne Filter f&uuml;r"
3451
 
3452
- #: ../../admin/view/wp-slimstat-reports.php:264
3453
  msgid "Save"
3454
  msgstr ""
3455
 
3456
- #: ../../admin/view/wp-slimstat-reports.php:267
3457
  #, fuzzy
3458
  msgid "Reset All"
3459
  msgstr "Datenbanktabellen zurücksetzen"
3460
 
3461
- #: ../../admin/view/wp-slimstat-reports.php:271
3462
  msgid "Current filters:"
3463
  msgstr "Aktuelle Filter:"
3464
 
3465
- #: ../../admin/view/wp-slimstat-reports.php:275
3466
  msgid "Refresh"
3467
  msgstr "Anzeige aktualisieren"
3468
 
3469
- #: ../../admin/view/wp-slimstat-reports.php:354
3470
  #, fuzzy, php-format
3471
  msgid "Results %s - %s of %s"
3472
  msgstr "Ergbnisse filtern wo %s ist gleich %s"
3473
 
3474
- #: ../../admin/view/wp-slimstat-reports.php:356
3475
  msgid "Refresh in"
3476
  msgstr "Anzeige aktualisieren in"
3477
 
3478
- #: ../../admin/view/wp-slimstat-reports.php:378
3479
- #: ../../admin/view/wp-slimstat-reports.php:390
3480
  #, php-format
3481
  msgid "Daily %s"
3482
  msgstr "Täglich %s"
3483
 
3484
- #: ../../admin/view/wp-slimstat-reports.php:381
3485
  #, php-format
3486
  msgid "%s Minute by Minute"
3487
  msgstr "%s Minute zu Minute"
3488
 
3489
- #: ../../admin/view/wp-slimstat-reports.php:384
3490
  #, php-format
3491
  msgid "Hourly %s"
3492
  msgstr "Stündlich %s"
3493
 
3494
- #: ../../admin/view/wp-slimstat-reports.php:387
3495
  #, php-format
3496
  msgid "Monthly %s"
3497
  msgstr "Monatlich %s"
3498
 
3499
- #: ../../admin/view/wp-slimstat-reports.php:475
3500
  msgid "Category ID"
3501
  msgstr "Kategorie-ID"
3502
 
3503
- #: ../../admin/view/wp-slimstat-reports.php:508
3504
  msgid "OS Code"
3505
  msgstr "OS-Code"
3506
 
3507
- #: ../../admin/view/wp-slimstat-reports.php:518
3508
  msgid "Referrer"
3509
  msgstr "Verweis"
3510
 
3511
- #: ../../admin/view/wp-slimstat-reports.php:542
3512
- #: ../../admin/view/wp-slimstat-reports.php:849
3513
- #: ../../admin/view/wp-slimstat-reports.php:858
3514
- #: ../../admin/view/wp-slimstat-reports.php:864
3515
- #: ../../admin/view/wp-slimstat-reports.php:870
3516
- #: ../../admin/view/wp-slimstat-reports.php:876
3517
- #: ../../admin/view/wp-slimstat-reports.php:882
3518
- #: ../../admin/view/wp-slimstat-reports.php:888
3519
- #: ../../admin/view/wp-slimstat-reports.php:894
3520
  msgid "Hits"
3521
  msgstr "Zugriffe"
3522
 
3523
- #: ../../admin/view/wp-slimstat-reports.php:720
3524
  msgid "Search for"
3525
  msgstr "Suche nach"
3526
 
3527
- #: ../../admin/view/wp-slimstat-reports.php:771
3528
- #: ../../admin/view/wp-slimstat-reports.php:781
3529
  msgid "Source"
3530
  msgstr "Ursprung"
3531
 
3532
- #: ../../admin/view/wp-slimstat-reports.php:773
3533
  msgid "Keywords"
3534
  msgstr "Suchbegriffe"
3535
 
3536
- #: ../../admin/view/wp-slimstat-reports.php:781
3537
  #, fuzzy, php-format
3538
  msgid "Filter results where resource equals %s"
3539
  msgstr "Ergebnisse filtern, wo die Ressource %s ist"
3540
 
3541
- #: ../../admin/view/wp-slimstat-reports.php:782
3542
  #, fuzzy
3543
  msgid "Link Details"
3544
  msgstr "Details"
3545
 
3546
- #: ../../admin/view/wp-slimstat-reports.php:795
3547
  msgid "Total Pageviews"
3548
  msgstr "Gesamte Seitenaufrufe"
3549
 
3550
- #: ../../admin/view/wp-slimstat-reports.php:796
3551
  msgid "DB Size"
3552
  msgstr "Datenbankgr&ouml;&szlig;e"
3553
 
3554
- #: ../../admin/view/wp-slimstat-reports.php:797
3555
  msgid "Tracking Active"
3556
  msgstr "Tracking aktiv"
3557
 
3558
- #: ../../admin/view/wp-slimstat-reports.php:798
3559
  msgid "Javascript Mode"
3560
  msgstr "Tracking per JavaScript"
3561
 
3562
- #: ../../admin/view/wp-slimstat-reports.php:799
3563
  msgid "Tracking Browser Caps"
3564
  msgstr ""
3565
 
3566
- #: ../../admin/view/wp-slimstat-reports.php:800
3567
  msgid "Auto purge"
3568
  msgstr "autom. Datenbank-Reorg."
3569
 
3570
- #: ../../admin/view/wp-slimstat-reports.php:800
3571
- #: ../../admin/wp-slimstat-admin.php:883
3572
  msgid "No"
3573
  msgstr "Nein"
3574
 
3575
- #: ../../admin/view/wp-slimstat-reports.php:801
3576
  msgid "Oldest pageview"
3577
  msgstr "&Auml;ltester Seitenaufruf"
3578
 
3579
- #: ../../admin/view/wp-slimstat-reports.php:801
3580
  msgid "No visits"
3581
  msgstr "Keine Besuche"
3582
 
3583
- #: ../../admin/view/wp-slimstat-reports.php:811
3584
- #: ../../admin/view/wp-slimstat-reports.php:913
3585
  #, fuzzy
3586
  msgid ""
3587
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
@@ -3591,18 +3841,18 @@ msgstr ""
3591
  "jedesmal einen 'Seitenaufruf' auf, wenn der Tracking-Code ausgef&uuml;hrt "
3592
  "wird."
3593
 
3594
- #: ../../admin/view/wp-slimstat-reports.php:813
3595
  msgid "How many pages have been visited on average during the current period."
3596
  msgstr ""
3597
  "Wieviele Seiten wurden w&auml;hrend der aktuellen Periode durchschnittlich "
3598
  "besucht?"
3599
 
3600
- #: ../../admin/view/wp-slimstat-reports.php:814
3601
  #, fuzzy
3602
  msgid "Average Pageviews"
3603
  msgstr "Durchschnittl. Seitenaufrufe"
3604
 
3605
- #: ../../admin/view/wp-slimstat-reports.php:815
3606
  msgid ""
3607
  "Visitors who landed on your site after searching for a keyword on Google, "
3608
  "Yahoo, etc."
@@ -3610,11 +3860,11 @@ msgstr ""
3610
  "Besucher, welche nach einer Suche nach einem Suchbegriff auf einer "
3611
  "Suchmaschine auf die Website kamen."
3612
 
3613
- #: ../../admin/view/wp-slimstat-reports.php:816
3614
  msgid "From Search Results"
3615
  msgstr "Von Suchergebnissen"
3616
 
3617
- #: ../../admin/view/wp-slimstat-reports.php:817
3618
  msgid ""
3619
  "Used to differentiate between multiple requests to download a file from one "
3620
  "internet address (IP) and requests originating from many distinct addresses"
@@ -3622,23 +3872,15 @@ msgstr ""
3622
  "Benutzt um bei mehreren Downloadanfragen zu unterscheiden, ob sie von einer "
3623
  "oder mehreren verschiedenen Internet-Adressen (IP) stammen"
3624
 
3625
- #: ../../admin/view/wp-slimstat-reports.php:818
3626
- #: ../../admin/view/wp-slimstat-reports.php:833
3627
- #: ../../admin/view/wp-slimstat-reports.php:1137
3628
- #: ../../admin/view/wp-slimstat-reports.php:1141
3629
- #: ../../admin/view/wp-slimstat-reports.php:1145
3630
- msgid "Unique IPs"
3631
- msgstr "Eindeutige IPs"
3632
-
3633
- #: ../../admin/view/wp-slimstat-reports.php:819
3634
  msgid "Last 5 minutes"
3635
  msgstr "Letzte 5 Minuten"
3636
 
3637
- #: ../../admin/view/wp-slimstat-reports.php:820
3638
  msgid "Last 30 minutes"
3639
  msgstr "Letzte 30 Minuten"
3640
 
3641
- #: ../../admin/view/wp-slimstat-reports.php:830
3642
  msgid ""
3643
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3644
  "multiple times if they perform multiple visits."
@@ -3646,16 +3888,17 @@ msgstr ""
3646
  "Ein Besuch ist eine Session von max. 30 Minuten. Zur&;kkehrende Besucher "
3647
  "werden bei mehrfachen Besuchen auch mehrfach gez&auml;hlt."
3648
 
3649
- #: ../../admin/view/wp-slimstat-reports.php:831
3650
- msgid "Human visits"
3651
- msgstr "Echte Besuche"
 
3652
 
3653
- #: ../../admin/view/wp-slimstat-reports.php:832
3654
  msgid "It includes only traffic generated by human visitors."
3655
  msgstr ""
3656
 
3657
- #: ../../admin/view/wp-slimstat-reports.php:834
3658
- #: ../../admin/view/wp-slimstat-reports.php:925
3659
  msgid ""
3660
  "Percentage of single-page visits, i.e. visits in which the person left your "
3661
  "site from the entrance page."
@@ -3663,78 +3906,77 @@ msgstr ""
3663
  "Prozentsatz von Besuchen einzelner Seiten, d.h. Besuche bei welchen der "
3664
  "Besucher die Website auf der aufgerufenen Seite wieder verlassen hat."
3665
 
3666
- #: ../../admin/view/wp-slimstat-reports.php:835
3667
  msgid "Bounce rate"
3668
  msgstr "Absprungrate"
3669
 
3670
- #: ../../admin/view/wp-slimstat-reports.php:836
3671
  msgid "Visitors who had previously left a comment on your blog."
3672
  msgstr ""
3673
  "Besucher, welche fr&uuml;her bereits einen Kommentar hinterlassen haben."
3674
 
3675
- #: ../../admin/view/wp-slimstat-reports.php:837
3676
  msgid "Known visitors"
3677
  msgstr "Bekannte Besucher"
3678
 
3679
- #: ../../admin/view/wp-slimstat-reports.php:838
3680
  msgid "Human users who visited your site only once."
3681
  msgstr "Echte Besucher, welche die Wesite nur einmal besucht haben."
3682
 
3683
- #: ../../admin/view/wp-slimstat-reports.php:839
3684
  msgid "New visitors"
3685
  msgstr "Neue Besucher"
3686
 
3687
- #: ../../admin/view/wp-slimstat-reports.php:840
3688
  msgid "Bots"
3689
  msgstr "Bots"
3690
 
3691
- #: ../../admin/view/wp-slimstat-reports.php:841
3692
  msgid "Pages per visit"
3693
  msgstr "Seiten pro Besuch"
3694
 
3695
- #: ../../admin/view/wp-slimstat-reports.php:842
3696
- #: ../../admin/view/wp-slimstat-reports.php:1150
3697
  msgid "Longest visit"
3698
  msgstr "L&auml;ngster Besuch"
3699
 
3700
- #: ../../admin/view/wp-slimstat-reports.php:842
3701
  msgid "hits"
3702
  msgstr "Zugriff"
3703
 
3704
- #: ../../admin/view/wp-slimstat-reports.php:860
3705
  msgid "0 - 30 seconds"
3706
  msgstr "0-30 Sekunden"
3707
 
3708
- #: ../../admin/view/wp-slimstat-reports.php:866
3709
  msgid "31 - 60 seconds"
3710
  msgstr "31-60 Sekunden"
3711
 
3712
- #: ../../admin/view/wp-slimstat-reports.php:872
3713
  msgid "1 - 3 minutes"
3714
  msgstr "1-3 Minuten"
3715
 
3716
- #: ../../admin/view/wp-slimstat-reports.php:878
3717
  msgid "3 - 5 minutes"
3718
  msgstr "3-5 Minuten"
3719
 
3720
- #: ../../admin/view/wp-slimstat-reports.php:884
3721
  msgid "5 - 7 minutes"
3722
  msgstr "5-7 Minuten"
3723
 
3724
- #: ../../admin/view/wp-slimstat-reports.php:890
3725
  msgid "7 - 10 minutes"
3726
  msgstr "7-10 Minuten"
3727
 
3728
- #: ../../admin/view/wp-slimstat-reports.php:896
3729
  msgid "More than 10 minutes"
3730
  msgstr "Mehr als 10 Minuten"
3731
 
3732
- #: ../../admin/view/wp-slimstat-reports.php:905
3733
  #, fuzzy
3734
  msgid "Average time on site"
3735
  msgstr "Durchschnittl. Seitenaufrufe pro Besuch"
3736
 
3737
- #: ../../admin/view/wp-slimstat-reports.php:915
3738
  msgid ""
3739
  "A referrer (or referring site) is the site that a visitor previously visited "
3740
  "before following a link to your site."
@@ -3742,11 +3984,11 @@ msgstr ""
3742
  "Eine Herkunft (verweisende Seite) ist die Webseite welche ein Besucher vor "
3743
  "dem Besuch der eigenen Website besucht hat."
3744
 
3745
- #: ../../admin/view/wp-slimstat-reports.php:916
3746
  msgid "Unique Referrers"
3747
  msgstr "Eindeutige Herkunft"
3748
 
3749
- #: ../../admin/view/wp-slimstat-reports.php:917
3750
  msgid ""
3751
  "Visitors who visited the site by typing the URL directly into their browser. "
3752
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -3757,22 +3999,22 @@ msgstr ""
3757
  "auch auf Besucher beziehen, welche Lesezeichen/Favoriten verwendet haben "
3758
  "oder Links in E-Mails bzw. Dokumenten gefolgt sind."
3759
 
3760
- #: ../../admin/view/wp-slimstat-reports.php:918
3761
  msgid "Direct Pageviews"
3762
  msgstr "Direkte Seitenaufrufe"
3763
 
3764
- #: ../../admin/view/wp-slimstat-reports.php:919
3765
  msgid ""
3766
  "Visitors who came to your site via searches on Google or some other search "
3767
  "engine."
3768
  msgstr ""
3769
  "Besucher welche über eine Suchmaschine auf die eigene Website gekommen sind."
3770
 
3771
- #: ../../admin/view/wp-slimstat-reports.php:920
3772
  msgid "From a search result"
3773
  msgstr "Von einem Suchresultat"
3774
 
3775
- #: ../../admin/view/wp-slimstat-reports.php:921
3776
  msgid ""
3777
  "The first page that a user views during a session. This is also known as the "
3778
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -3782,25 +4024,25 @@ msgstr ""
3782
  "Die erste Seite welche ein Benutzer w&auml;hrend einer Sitzung besucht, die "
3783
  "s.g. Einstiegs- oder Landeseite."
3784
 
3785
- #: ../../admin/view/wp-slimstat-reports.php:922
3786
  msgid "Unique Landing Pages"
3787
  msgstr "Eindeutige Einstiegsseiten"
3788
 
3789
- #: ../../admin/view/wp-slimstat-reports.php:923
3790
  msgid "Number of single-page visits to your site over the selected period."
3791
  msgstr ""
3792
  "Anzahl der Besucher einer einzelnen Seite über die gew&auml;hlte Periode."
3793
 
3794
- #: ../../admin/view/wp-slimstat-reports.php:924
3795
  msgid "Bounce Pages"
3796
  msgstr "Absprungrate"
3797
 
3798
- #: ../../admin/view/wp-slimstat-reports.php:926
3799
  #, fuzzy
3800
  msgid "New Visitors Rate"
3801
  msgstr "Neue Besucher"
3802
 
3803
- #: ../../admin/view/wp-slimstat-reports.php:927
3804
  msgid ""
3805
  "Visitors who visited the site in the last 5 minutes coming from a search "
3806
  "engine."
@@ -3808,1263 +4050,1257 @@ msgstr ""
3808
  "Besucher welche innerhalb der letzten 5 Minuten von einer Suchmaschine "
3809
  "gekommen sind."
3810
 
3811
- #: ../../admin/view/wp-slimstat-reports.php:928
3812
  msgid "Currently from search engines"
3813
  msgstr "Aktuell von Suchmaschinen"
3814
 
3815
- #: ../../admin/view/wp-slimstat-reports.php:996
3816
  msgid "Number of pages in your site included in Google's index."
3817
  msgstr ""
3818
 
3819
- #: ../../admin/view/wp-slimstat-reports.php:997
3820
  msgid "Google Index"
3821
  msgstr "Google-Index"
3822
 
3823
- #: ../../admin/view/wp-slimstat-reports.php:998
3824
  msgid "Number of pages, according to Google, that link back to your site."
3825
  msgstr ""
3826
 
3827
- #: ../../admin/view/wp-slimstat-reports.php:999
3828
  msgid "Google Backlinks"
3829
  msgstr ""
3830
 
3831
- #: ../../admin/view/wp-slimstat-reports.php:1000
3832
  msgid ""
3833
  "How many times the Facebook Like button has been approximately clicked on "
3834
  "your site."
3835
  msgstr ""
3836
 
3837
- #: ../../admin/view/wp-slimstat-reports.php:1001
3838
  msgid "Facebook Likes"
3839
  msgstr "Facebook Likes"
3840
 
3841
- #: ../../admin/view/wp-slimstat-reports.php:1002
3842
  msgid ""
3843
  "How many times your site has been shared by someone on the social network."
3844
  msgstr ""
3845
 
3846
- #: ../../admin/view/wp-slimstat-reports.php:1003
3847
  msgid "Facebook Shares"
3848
  msgstr ""
3849
 
3850
- #: ../../admin/view/wp-slimstat-reports.php:1004
3851
  msgid "How many times links to your website have been clicked on Facebook."
3852
  msgstr ""
3853
 
3854
- #: ../../admin/view/wp-slimstat-reports.php:1005
3855
  msgid "Facebook Clicks"
3856
  msgstr "Clicks bei Facebook"
3857
 
3858
- #: ../../admin/view/wp-slimstat-reports.php:1006
3859
  msgid ""
3860
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3861
  "traffic data."
3862
  msgstr ""
3863
 
3864
- #: ../../admin/view/wp-slimstat-reports.php:1007
3865
  msgid "Alexa World Rank"
3866
  msgstr ""
3867
 
3868
- #: ../../admin/view/wp-slimstat-reports.php:1008
3869
  msgid "Alexa Country Rank"
3870
  msgstr ""
3871
 
3872
- #: ../../admin/view/wp-slimstat-reports.php:1009
3873
  msgid "Alexa Popularity"
3874
  msgstr ""
3875
 
3876
  # Unknown
3877
- #: ../../admin/view/wp-slimstat-reports.php:1016
3878
  msgid "c-xx"
3879
  msgstr "Unbekannt"
3880
 
3881
  # Afghanistan
3882
- #: ../../admin/view/wp-slimstat-reports.php:1016
3883
  msgid "c-af"
3884
  msgstr "Afghanistan"
3885
 
3886
  # Åland Islands
3887
- #: ../../admin/view/wp-slimstat-reports.php:1016
3888
  msgid "c-ax"
3889
  msgstr "&Aring;landinseln"
3890
 
3891
  # Albania
3892
- #: ../../admin/view/wp-slimstat-reports.php:1016
3893
  msgid "c-al"
3894
  msgstr "Albanien"
3895
 
3896
  # Algeria
3897
- #: ../../admin/view/wp-slimstat-reports.php:1016
3898
  msgid "c-dz"
3899
  msgstr "Algerien"
3900
 
3901
  # Andorra
3902
- #: ../../admin/view/wp-slimstat-reports.php:1016
3903
  msgid "c-ad"
3904
  msgstr "Andorra"
3905
 
3906
  # Angola
3907
- #: ../../admin/view/wp-slimstat-reports.php:1016
3908
  msgid "c-ao"
3909
  msgstr "Angola"
3910
 
3911
  # Anguilla
3912
- #: ../../admin/view/wp-slimstat-reports.php:1016
3913
  msgid "c-ai"
3914
  msgstr "Anguilla"
3915
 
3916
  # Antigua and Barbuda
3917
- #: ../../admin/view/wp-slimstat-reports.php:1016
3918
  msgid "c-ag"
3919
  msgstr "Antigua und Barbuda"
3920
 
3921
  # Argentina
3922
- #: ../../admin/view/wp-slimstat-reports.php:1016
3923
  msgid "c-ar"
3924
  msgstr "Argentinien"
3925
 
3926
  # Armenia
3927
- #: ../../admin/view/wp-slimstat-reports.php:1016
3928
  msgid "c-am"
3929
  msgstr "Armenien"
3930
 
3931
  # Aruba
3932
- #: ../../admin/view/wp-slimstat-reports.php:1016
3933
  msgid "c-aw"
3934
  msgstr "Aruba"
3935
 
3936
  # Australia
3937
- #: ../../admin/view/wp-slimstat-reports.php:1016
3938
  msgid "c-au"
3939
  msgstr "Australien"
3940
 
3941
  # Austria
3942
- #: ../../admin/view/wp-slimstat-reports.php:1016
3943
  msgid "c-at"
3944
  msgstr "&Ouml;sterreich"
3945
 
3946
  # Azerbaijan
3947
- #: ../../admin/view/wp-slimstat-reports.php:1016
3948
  msgid "c-az"
3949
  msgstr "Aserbaidschan"
3950
 
3951
  # Bahamas
3952
- #: ../../admin/view/wp-slimstat-reports.php:1016
3953
  msgid "c-bs"
3954
  msgstr "Bahamas"
3955
 
3956
  # Bahrain
3957
- #: ../../admin/view/wp-slimstat-reports.php:1016
3958
  msgid "c-bh"
3959
  msgstr "Bahrain"
3960
 
3961
  # Bangladesh
3962
- #: ../../admin/view/wp-slimstat-reports.php:1016
3963
  msgid "c-bd"
3964
  msgstr "Bangladesch"
3965
 
3966
  # Barbados
3967
- #: ../../admin/view/wp-slimstat-reports.php:1016
3968
  msgid "c-bb"
3969
  msgstr "Barbados"
3970
 
3971
  # Belarus
3972
- #: ../../admin/view/wp-slimstat-reports.php:1016
3973
  msgid "c-by"
3974
  msgstr "Wei&szlig;russland"
3975
 
3976
  # Belgium
3977
- #: ../../admin/view/wp-slimstat-reports.php:1016
3978
  msgid "c-be"
3979
  msgstr "Belgien"
3980
 
3981
  # Belize
3982
- #: ../../admin/view/wp-slimstat-reports.php:1016
3983
  msgid "c-bz"
3984
  msgstr "Belize"
3985
 
3986
  # Benin
3987
- #: ../../admin/view/wp-slimstat-reports.php:1016
3988
  msgid "c-bj"
3989
  msgstr "Benin"
3990
 
3991
  # Bermuda
3992
- #: ../../admin/view/wp-slimstat-reports.php:1016
3993
  msgid "c-bm"
3994
  msgstr "Bermuda"
3995
 
3996
  # Bhutan
3997
- #: ../../admin/view/wp-slimstat-reports.php:1016
3998
  msgid "c-bt"
3999
  msgstr "Bhutan"
4000
 
4001
  # Bolivia
4002
- #: ../../admin/view/wp-slimstat-reports.php:1016
4003
  msgid "c-bo"
4004
  msgstr "Bolivien"
4005
 
4006
  # Bosnia and Herzegovina
4007
- #: ../../admin/view/wp-slimstat-reports.php:1016
4008
  msgid "c-ba"
4009
  msgstr "Bosnien Herzegowina"
4010
 
4011
  # Botswana
4012
- #: ../../admin/view/wp-slimstat-reports.php:1016
4013
  msgid "c-bw"
4014
  msgstr "Botswana"
4015
 
4016
  # Brazil
4017
- #: ../../admin/view/wp-slimstat-reports.php:1016
4018
  msgid "c-br"
4019
  msgstr "Brasilien"
4020
 
4021
  # Brunei Darussalam
4022
- #: ../../admin/view/wp-slimstat-reports.php:1016
4023
  msgid "c-bn"
4024
  msgstr "Brunei Darussalam"
4025
 
4026
  # Bulgaria
4027
- #: ../../admin/view/wp-slimstat-reports.php:1016
4028
  msgid "c-bg"
4029
  msgstr "Bulgarien"
4030
 
4031
  # Burkina Faso
4032
- #: ../../admin/view/wp-slimstat-reports.php:1016
4033
  msgid "c-bf"
4034
  msgstr "Burkina Faso"
4035
 
4036
  # Burundi
4037
- #: ../../admin/view/wp-slimstat-reports.php:1016
4038
  msgid "c-bi"
4039
  msgstr "Burundi"
4040
 
4041
  # Cambodia
4042
- #: ../../admin/view/wp-slimstat-reports.php:1016
4043
  msgid "c-kh"
4044
  msgstr "Kambodscha"
4045
 
4046
  # Cameroon
4047
- #: ../../admin/view/wp-slimstat-reports.php:1016
4048
  msgid "c-cm"
4049
  msgstr "Kamerun"
4050
 
4051
  # Canada
4052
- #: ../../admin/view/wp-slimstat-reports.php:1016
4053
  msgid "c-ca"
4054
  msgstr "Kanada"
4055
 
4056
  # Cape Verde
4057
- #: ../../admin/view/wp-slimstat-reports.php:1016
4058
  msgid "c-cv"
4059
  msgstr "Kap Verde"
4060
 
4061
  # Cayman Islands
4062
- #: ../../admin/view/wp-slimstat-reports.php:1016
4063
  msgid "c-ky"
4064
  msgstr "Kaimaninseln"
4065
 
4066
  # Central African Republic
4067
- #: ../../admin/view/wp-slimstat-reports.php:1016
4068
  msgid "c-cf"
4069
  msgstr "Zentralafrika"
4070
 
4071
  # Chad
4072
- #: ../../admin/view/wp-slimstat-reports.php:1016
4073
  msgid "c-td"
4074
  msgstr "Tschad"
4075
 
4076
  # Chile
4077
- #: ../../admin/view/wp-slimstat-reports.php:1016
4078
  msgid "c-cl"
4079
  msgstr "Chile"
4080
 
4081
  # China
4082
- #: ../../admin/view/wp-slimstat-reports.php:1016
4083
  msgid "c-cn"
4084
  msgstr "China"
4085
 
4086
  # Colombia
4087
- #: ../../admin/view/wp-slimstat-reports.php:1016
4088
  msgid "c-co"
4089
  msgstr "Kolumbien"
4090
 
4091
  # Comoros
4092
- #: ../../admin/view/wp-slimstat-reports.php:1016
4093
  msgid "c-km"
4094
  msgstr "Komoren"
4095
 
4096
  # Congo
4097
- #: ../../admin/view/wp-slimstat-reports.php:1016
4098
  msgid "c-cg"
4099
  msgstr "Republik Kongo"
4100
 
4101
  # The Democratic Republic of the Congo
4102
- #: ../../admin/view/wp-slimstat-reports.php:1016
4103
  msgid "c-cd"
4104
  msgstr "Demokratische Republik Kongo"
4105
 
4106
  # Costa Rica
4107
- #: ../../admin/view/wp-slimstat-reports.php:1016
4108
  msgid "c-cr"
4109
  msgstr "Costa Rica"
4110
 
4111
  # Côte d'Ivoire
4112
- #: ../../admin/view/wp-slimstat-reports.php:1016
4113
  msgid "c-ci"
4114
  msgstr "Elfenbeink&uuml;ste"
4115
 
4116
  # Croatia
4117
- #: ../../admin/view/wp-slimstat-reports.php:1016
4118
  msgid "c-hr"
4119
  msgstr "Kroatien"
4120
 
4121
  # Cuba
4122
- #: ../../admin/view/wp-slimstat-reports.php:1016
4123
  msgid "c-cu"
4124
  msgstr "Kuba"
4125
 
4126
  # Cyprus
4127
- #: ../../admin/view/wp-slimstat-reports.php:1016
4128
  msgid "c-cy"
4129
  msgstr "Zypern"
4130
 
4131
  # Czech Republic
4132
- #: ../../admin/view/wp-slimstat-reports.php:1016
4133
  msgid "c-cz"
4134
  msgstr "Tschechische Republik"
4135
 
4136
  # Denmark
4137
- #: ../../admin/view/wp-slimstat-reports.php:1016
4138
  msgid "c-dk"
4139
  msgstr "D&auml;nemark"
4140
 
4141
  # Djibouti
4142
- #: ../../admin/view/wp-slimstat-reports.php:1016
4143
  msgid "c-dj"
4144
  msgstr "Dschibuti"
4145
 
4146
  # Dominica
4147
- #: ../../admin/view/wp-slimstat-reports.php:1016
4148
  msgid "c-dm"
4149
  msgstr "Dominica"
4150
 
4151
  # Dominican Republic
4152
- #: ../../admin/view/wp-slimstat-reports.php:1016
4153
  msgid "c-do"
4154
  msgstr "Dominikanische Republik"
4155
 
4156
  # Ecuador
4157
- #: ../../admin/view/wp-slimstat-reports.php:1016
4158
  msgid "c-ec"
4159
  msgstr "Ecuador"
4160
 
4161
  # Egypt
4162
- #: ../../admin/view/wp-slimstat-reports.php:1016
4163
  msgid "c-eg"
4164
  msgstr "&Auml;gypten"
4165
 
4166
  # El Salvador
4167
- #: ../../admin/view/wp-slimstat-reports.php:1016
4168
  msgid "c-sv"
4169
  msgstr "El Salvador"
4170
 
4171
  # Equatorial Guinea
4172
- #: ../../admin/view/wp-slimstat-reports.php:1016
4173
  msgid "c-gq"
4174
  msgstr "Äquatorialguinea"
4175
 
4176
  # Eritrea
4177
- #: ../../admin/view/wp-slimstat-reports.php:1016
4178
  msgid "c-er"
4179
  msgstr "Eritrea"
4180
 
4181
  # Estonia
4182
- #: ../../admin/view/wp-slimstat-reports.php:1016
4183
  msgid "c-ee"
4184
  msgstr "Estland"
4185
 
4186
  # Ethiopia
4187
- #: ../../admin/view/wp-slimstat-reports.php:1016
4188
  msgid "c-et"
4189
  msgstr "&Auml;thiopien"
4190
 
4191
  # Faroe Islands
4192
- #: ../../admin/view/wp-slimstat-reports.php:1016
4193
  msgid "c-fo"
4194
  msgstr "F&auml;r&ouml;er Inseln"
4195
 
4196
  # Falkland Islands (Malvinas)
4197
- #: ../../admin/view/wp-slimstat-reports.php:1016
4198
  msgid "c-fk"
4199
  msgstr "Falklandinseln (Malwinen)"
4200
 
4201
  # Fiji
4202
- #: ../../admin/view/wp-slimstat-reports.php:1016
4203
  msgid "c-fj"
4204
  msgstr "Republik Fidschi"
4205
 
4206
  # Finland
4207
- #: ../../admin/view/wp-slimstat-reports.php:1016
4208
  msgid "c-fi"
4209
  msgstr "Finnland"
4210
 
4211
  # France
4212
- #: ../../admin/view/wp-slimstat-reports.php:1016
4213
  msgid "c-fr"
4214
  msgstr "Franz&ouml;sische Republik"
4215
 
4216
  # French Guiana
4217
- #: ../../admin/view/wp-slimstat-reports.php:1016
4218
  msgid "c-gf"
4219
  msgstr "Franz&ouml;sisch-Guayana"
4220
 
4221
  # Gabon
4222
- #: ../../admin/view/wp-slimstat-reports.php:1016
4223
  msgid "c-ga"
4224
  msgstr "Gabun"
4225
 
4226
  # Gambia
4227
- #: ../../admin/view/wp-slimstat-reports.php:1016
4228
  msgid "c-gm"
4229
  msgstr "Gambia"
4230
 
4231
  # Georgia
4232
- #: ../../admin/view/wp-slimstat-reports.php:1016
4233
  msgid "c-ge"
4234
  msgstr "Georgien"
4235
 
4236
  # Germany
4237
- #: ../../admin/view/wp-slimstat-reports.php:1016
4238
  msgid "c-de"
4239
  msgstr "Bundesrepublik Deutschland"
4240
 
4241
  # Ghana
4242
- #: ../../admin/view/wp-slimstat-reports.php:1016
4243
  msgid "c-gh"
4244
  msgstr "Ghana"
4245
 
4246
  # Greece
4247
- #: ../../admin/view/wp-slimstat-reports.php:1016
4248
  msgid "c-gr"
4249
  msgstr "Griechenland"
4250
 
4251
  # Greenland
4252
- #: ../../admin/view/wp-slimstat-reports.php:1016
4253
  msgid "c-gl"
4254
  msgstr "Gr&ouml;nland"
4255
 
4256
  # Grenada
4257
- #: ../../admin/view/wp-slimstat-reports.php:1016
4258
  msgid "c-gd"
4259
  msgstr "Grenada"
4260
 
4261
  # Guadeloupe
4262
- #: ../../admin/view/wp-slimstat-reports.php:1016
4263
  msgid "c-gp"
4264
  msgstr "Guadeloupe"
4265
 
4266
  # Guatemala
4267
- #: ../../admin/view/wp-slimstat-reports.php:1016
4268
  msgid "c-gt"
4269
  msgstr "Guatemala"
4270
 
4271
  # Guinea
4272
- #: ../../admin/view/wp-slimstat-reports.php:1016
4273
  msgid "c-gn"
4274
  msgstr "Guinea"
4275
 
4276
  # Guinea-Bissau
4277
- #: ../../admin/view/wp-slimstat-reports.php:1016
4278
  msgid "c-gw"
4279
  msgstr "Guinea-Bissau"
4280
 
4281
  # Guyana
4282
- #: ../../admin/view/wp-slimstat-reports.php:1016
4283
  msgid "c-gy"
4284
  msgstr "Guyana"
4285
 
4286
  # Haiti
4287
- #: ../../admin/view/wp-slimstat-reports.php:1016
4288
  msgid "c-ht"
4289
  msgstr "Haiti"
4290
 
4291
  # Honduras
4292
- #: ../../admin/view/wp-slimstat-reports.php:1016
4293
  msgid "c-hn"
4294
  msgstr "Honduras"
4295
 
4296
  # Hong Kong
4297
- #: ../../admin/view/wp-slimstat-reports.php:1016
4298
  msgid "c-hk"
4299
  msgstr "Hong Kong"
4300
 
4301
  # Hungary
4302
- #: ../../admin/view/wp-slimstat-reports.php:1016
4303
  msgid "c-hu"
4304
  msgstr "Ungarn"
4305
 
4306
  # Iceland
4307
- #: ../../admin/view/wp-slimstat-reports.php:1016
4308
  msgid "c-is"
4309
  msgstr "Island"
4310
 
4311
  # India
4312
- #: ../../admin/view/wp-slimstat-reports.php:1016
4313
  msgid "c-in"
4314
  msgstr "Indien"
4315
 
4316
  # Indonesia
4317
- #: ../../admin/view/wp-slimstat-reports.php:1016
4318
  msgid "c-id"
4319
  msgstr "Indonesien"
4320
 
4321
  # Islamic Republic of Iran
4322
- #: ../../admin/view/wp-slimstat-reports.php:1016
4323
  msgid "c-ir"
4324
  msgstr "Islamische Republik Iran"
4325
 
4326
  # Iraq
4327
- #: ../../admin/view/wp-slimstat-reports.php:1016
4328
  msgid "c-iq"
4329
  msgstr "Irak"
4330
 
4331
  # Ireland
4332
- #: ../../admin/view/wp-slimstat-reports.php:1016
4333
  msgid "c-ie"
4334
  msgstr "Irland"
4335
 
4336
  # Israel
4337
- #: ../../admin/view/wp-slimstat-reports.php:1016
4338
  msgid "c-il"
4339
  msgstr "Israel"
4340
 
4341
  # Italy
4342
- #: ../../admin/view/wp-slimstat-reports.php:1016
4343
  msgid "c-it"
4344
  msgstr "Italien"
4345
 
4346
  # Jamaica
4347
- #: ../../admin/view/wp-slimstat-reports.php:1016
4348
  msgid "c-jm"
4349
  msgstr "Jamaika"
4350
 
4351
  # Japan
4352
- #: ../../admin/view/wp-slimstat-reports.php:1016
4353
  msgid "c-jp"
4354
  msgstr "Japan"
4355
 
4356
  # Jordan
4357
- #: ../../admin/view/wp-slimstat-reports.php:1016
4358
  msgid "c-jo"
4359
  msgstr "Jordan"
4360
 
4361
  # Kazakhstan
4362
- #: ../../admin/view/wp-slimstat-reports.php:1016
4363
  msgid "c-kz"
4364
  msgstr "Kasachstan"
4365
 
4366
  # Kenya
4367
- #: ../../admin/view/wp-slimstat-reports.php:1016
4368
  msgid "c-ke"
4369
  msgstr "Kenia"
4370
 
4371
  # Nauru
4372
- #: ../../admin/view/wp-slimstat-reports.php:1016
4373
  msgid "c-nr"
4374
  msgstr "Nauru"
4375
 
4376
  # Democratic People's Republic of Korea
4377
- #: ../../admin/view/wp-slimstat-reports.php:1016
4378
  msgid "c-kp"
4379
  msgstr "Demokratische Volksrepublik Korea"
4380
 
4381
  # Republic of Korea
4382
- #: ../../admin/view/wp-slimstat-reports.php:1016
4383
  msgid "c-kr"
4384
  msgstr "Republik Korea"
4385
 
4386
- #: ../../admin/view/wp-slimstat-reports.php:1016
4387
  msgid "c-kv"
4388
  msgstr "Komi"
4389
 
4390
  # Kuwait
4391
- #: ../../admin/view/wp-slimstat-reports.php:1016
4392
  msgid "c-kw"
4393
  msgstr "Kuwait"
4394
 
4395
  # Kyrgyzstan
4396
- #: ../../admin/view/wp-slimstat-reports.php:1016
4397
  msgid "c-kg"
4398
  msgstr "Kirgistan"
4399
 
4400
  # Lao People's Democratic Republic
4401
- #: ../../admin/view/wp-slimstat-reports.php:1016
4402
  msgid "c-la"
4403
  msgstr "Demokratische Volksrepublik Laos"
4404
 
4405
  # Latvia
4406
- #: ../../admin/view/wp-slimstat-reports.php:1016
4407
  msgid "c-lv"
4408
  msgstr "Lettland"
4409
 
4410
  # Lebanon
4411
- #: ../../admin/view/wp-slimstat-reports.php:1016
4412
  msgid "c-lb"
4413
  msgstr "Libanon"
4414
 
4415
  # Lesotho
4416
- #: ../../admin/view/wp-slimstat-reports.php:1016
4417
  msgid "c-ls"
4418
  msgstr "Lesotho"
4419
 
4420
  # Liberia
4421
- #: ../../admin/view/wp-slimstat-reports.php:1016
4422
  msgid "c-lr"
4423
  msgstr "Liberia"
4424
 
4425
  # Libyan Arab Jamahiriya
4426
- #: ../../admin/view/wp-slimstat-reports.php:1016
4427
  msgid "c-ly"
4428
  msgstr "Libyen"
4429
 
4430
  # Liechtenstein
4431
- #: ../../admin/view/wp-slimstat-reports.php:1016
4432
  msgid "c-li"
4433
  msgstr "Liechtenstein"
4434
 
4435
  # Lithuania
4436
- #: ../../admin/view/wp-slimstat-reports.php:1016
4437
  msgid "c-lt"
4438
  msgstr "Litauen"
4439
 
4440
  # Luxembourg
4441
- #: ../../admin/view/wp-slimstat-reports.php:1016
4442
  msgid "c-lu"
4443
  msgstr "Luxemburg"
4444
 
4445
  # The Former Yugoslav Republic of Macedonia
4446
- #: ../../admin/view/wp-slimstat-reports.php:1016
4447
  msgid "c-mk"
4448
  msgstr "Ehemalige Jugoslawische Republik Mazedonien"
4449
 
4450
  # Madagascar
4451
- #: ../../admin/view/wp-slimstat-reports.php:1016
4452
  msgid "c-mg"
4453
  msgstr "Madagaskar"
4454
 
4455
  # Malawi
4456
- #: ../../admin/view/wp-slimstat-reports.php:1016
4457
  msgid "c-mw"
4458
  msgstr "Malawi"
4459
 
4460
  # Malaysia
4461
- #: ../../admin/view/wp-slimstat-reports.php:1016
4462
  msgid "c-my"
4463
  msgstr "Malaysien"
4464
 
4465
  # Mali
4466
- #: ../../admin/view/wp-slimstat-reports.php:1016
4467
  msgid "c-ml"
4468
  msgstr "Mali"
4469
 
4470
  # Malta
4471
- #: ../../admin/view/wp-slimstat-reports.php:1016
4472
  msgid "c-mt"
4473
  msgstr "Malta"
4474
 
4475
  # Martinique
4476
- #: ../../admin/view/wp-slimstat-reports.php:1016
4477
  msgid "c-mq"
4478
  msgstr "Martinique"
4479
 
4480
  # Mauritania
4481
- #: ../../admin/view/wp-slimstat-reports.php:1016
4482
  msgid "c-mr"
4483
  msgstr "Mauritanien"
4484
 
4485
  # Mauritius
4486
- #: ../../admin/view/wp-slimstat-reports.php:1016
4487
  msgid "c-mu"
4488
  msgstr "Mauritius"
4489
 
4490
  # Mexico
4491
- #: ../../admin/view/wp-slimstat-reports.php:1016
4492
  msgid "c-mx"
4493
  msgstr "Mexiko"
4494
 
4495
  # Moldova
4496
- #: ../../admin/view/wp-slimstat-reports.php:1016
4497
  msgid "c-md"
4498
  msgstr "Moldawien"
4499
 
4500
  # Mongolia
4501
- #: ../../admin/view/wp-slimstat-reports.php:1016
4502
  msgid "c-mn"
4503
  msgstr "Mongolei"
4504
 
4505
  # Montenegro
4506
- #: ../../admin/view/wp-slimstat-reports.php:1016
4507
  msgid "c-me"
4508
  msgstr "Montenegro"
4509
 
4510
  # Montserrat
4511
- #: ../../admin/view/wp-slimstat-reports.php:1016
4512
  msgid "c-ms"
4513
  msgstr "Montserrat"
4514
 
4515
  # Morocco
4516
- #: ../../admin/view/wp-slimstat-reports.php:1016
4517
  msgid "c-ma"
4518
  msgstr "Marokko"
4519
 
4520
  # Mozambique
4521
- #: ../../admin/view/wp-slimstat-reports.php:1016
4522
  msgid "c-mz"
4523
  msgstr "Mosambik"
4524
 
4525
  # Myanmar
4526
- #: ../../admin/view/wp-slimstat-reports.php:1016
4527
  msgid "c-mm"
4528
  msgstr "Myanmar"
4529
 
4530
  # Namibia
4531
- #: ../../admin/view/wp-slimstat-reports.php:1016
4532
  msgid "c-na"
4533
  msgstr "Namibia"
4534
 
4535
  # Nepal
4536
- #: ../../admin/view/wp-slimstat-reports.php:1016
4537
  msgid "c-np"
4538
  msgstr "Nepal"
4539
 
4540
  # Netherlands
4541
- #: ../../admin/view/wp-slimstat-reports.php:1016
4542
  msgid "c-nl"
4543
  msgstr "Niederlande"
4544
 
4545
  # New Caledonia
4546
- #: ../../admin/view/wp-slimstat-reports.php:1016
4547
  msgid "c-nc"
4548
  msgstr "Neukaledonien"
4549
 
4550
  # New Zealand
4551
- #: ../../admin/view/wp-slimstat-reports.php:1016
4552
  msgid "c-nz"
4553
  msgstr "Neuseeland"
4554
 
4555
  # Nicaragua
4556
- #: ../../admin/view/wp-slimstat-reports.php:1016
4557
  msgid "c-ni"
4558
  msgstr "Nicaragua"
4559
 
4560
  # Niger
4561
- #: ../../admin/view/wp-slimstat-reports.php:1016
4562
  msgid "c-ne"
4563
  msgstr "Niger"
4564
 
4565
  # Nigeria
4566
- #: ../../admin/view/wp-slimstat-reports.php:1016
4567
  msgid "c-ng"
4568
  msgstr "Nigeria"
4569
 
4570
  # Norway
4571
- #: ../../admin/view/wp-slimstat-reports.php:1016
4572
  msgid "c-no"
4573
  msgstr "Norwegen"
4574
 
4575
  # Oman
4576
- #: ../../admin/view/wp-slimstat-reports.php:1016
4577
  msgid "c-om"
4578
  msgstr "Oman"
4579
 
4580
  # Pakistan
4581
- #: ../../admin/view/wp-slimstat-reports.php:1016
4582
  msgid "c-pk"
4583
  msgstr "Pakistan"
4584
 
4585
  # Palau
4586
- #: ../../admin/view/wp-slimstat-reports.php:1016
4587
  msgid "c-pw"
4588
  msgstr "Palau"
4589
 
4590
  # Occupied Palestinian Territory
4591
- #: ../../admin/view/wp-slimstat-reports.php:1016
4592
  msgid "c-ps"
4593
  msgstr "Palästinensische Autonomiegebiete"
4594
 
4595
  # Panama
4596
- #: ../../admin/view/wp-slimstat-reports.php:1016
4597
  msgid "c-pa"
4598
  msgstr "Panama"
4599
 
4600
  # Papua New Guinea
4601
- #: ../../admin/view/wp-slimstat-reports.php:1016
4602
  msgid "c-pg"
4603
  msgstr "Papua Neu Guinea"
4604
 
4605
  # Paraguay
4606
- #: ../../admin/view/wp-slimstat-reports.php:1016
4607
  msgid "c-py"
4608
  msgstr "Paraguay"
4609
 
4610
  # Peru
4611
- #: ../../admin/view/wp-slimstat-reports.php:1016
4612
  msgid "c-pe"
4613
  msgstr "Peru"
4614
 
4615
  # Philippines
4616
- #: ../../admin/view/wp-slimstat-reports.php:1016
4617
  msgid "c-ph"
4618
  msgstr "Philippinen"
4619
 
4620
  # Poland
4621
- #: ../../admin/view/wp-slimstat-reports.php:1016
4622
  msgid "c-pl"
4623
  msgstr "Polen"
4624
 
4625
  # Portugal
4626
- #: ../../admin/view/wp-slimstat-reports.php:1016
4627
  msgid "c-pt"
4628
  msgstr "Portugal"
4629
 
4630
  # Puerto Rico
4631
- #: ../../admin/view/wp-slimstat-reports.php:1016
4632
  msgid "c-pr"
4633
  msgstr "Puerto Rico"
4634
 
4635
  # Qatar
4636
- #: ../../admin/view/wp-slimstat-reports.php:1016
4637
  msgid "c-qa"
4638
  msgstr "Katar"
4639
 
4640
  # Réunion
4641
- #: ../../admin/view/wp-slimstat-reports.php:1016
4642
  msgid "c-re"
4643
  msgstr "Réunion"
4644
 
4645
  # Romania
4646
- #: ../../admin/view/wp-slimstat-reports.php:1016
4647
  msgid "c-ro"
4648
  msgstr "Rum&auml;nien"
4649
 
4650
  # Russian Federation
4651
- #: ../../admin/view/wp-slimstat-reports.php:1016
4652
  msgid "c-ru"
4653
  msgstr "Russische Föderation"
4654
 
4655
  # Rwanda
4656
- #: ../../admin/view/wp-slimstat-reports.php:1016
4657
  msgid "c-rw"
4658
  msgstr "Ruanda"
4659
 
4660
  # Saint Kitts and Nevis
4661
- #: ../../admin/view/wp-slimstat-reports.php:1016
4662
  msgid "c-kn"
4663
  msgstr "St. Kitts und Nevis"
4664
 
4665
  # Saint Lucia
4666
- #: ../../admin/view/wp-slimstat-reports.php:1016
4667
  msgid "c-lc"
4668
  msgstr "Saint Lucia"
4669
 
4670
  # Saint Martin
4671
- #: ../../admin/view/wp-slimstat-reports.php:1016
4672
  msgid "c-mf"
4673
  msgstr "Saint Martin"
4674
 
4675
  # Saint Vincent and the Grenadines
4676
- #: ../../admin/view/wp-slimstat-reports.php:1016
4677
  msgid "c-vc"
4678
  msgstr "St. Vincent und die Grenadinen"
4679
 
4680
  # Samoa
4681
- #: ../../admin/view/wp-slimstat-reports.php:1016
4682
  msgid "c-ws"
4683
  msgstr "Samoa"
4684
 
4685
  # Sao Tome and Principe
4686
- #: ../../admin/view/wp-slimstat-reports.php:1016
4687
  msgid "c-st"
4688
  msgstr "Sao Tomé und Príncipe"
4689
 
4690
  # Saudi Arabia
4691
- #: ../../admin/view/wp-slimstat-reports.php:1016
4692
  msgid "c-sa"
4693
  msgstr "Saudi Arabien"
4694
 
4695
  # Senegal
4696
- #: ../../admin/view/wp-slimstat-reports.php:1016
4697
  msgid "c-sn"
4698
  msgstr "Senegal"
4699
 
4700
  # Serbia
4701
- #: ../../admin/view/wp-slimstat-reports.php:1016
4702
  msgid "c-rs"
4703
  msgstr "Serbien"
4704
 
4705
  # Sierra Leone
4706
- #: ../../admin/view/wp-slimstat-reports.php:1016
4707
  msgid "c-sl"
4708
  msgstr "Sierra Leone"
4709
 
4710
  # Singapore
4711
- #: ../../admin/view/wp-slimstat-reports.php:1016
4712
  msgid "c-sg"
4713
  msgstr "Singapur"
4714
 
4715
  # Slovakia
4716
- #: ../../admin/view/wp-slimstat-reports.php:1016
4717
  msgid "c-sk"
4718
  msgstr "Slowakei"
4719
 
4720
  # Slovenia
4721
- #: ../../admin/view/wp-slimstat-reports.php:1016
4722
  msgid "c-si"
4723
  msgstr "Slowenien"
4724
 
4725
  # Solomon Islands
4726
- #: ../../admin/view/wp-slimstat-reports.php:1016
4727
  msgid "c-sb"
4728
  msgstr "Salomonen"
4729
 
4730
  # Somalia
4731
- #: ../../admin/view/wp-slimstat-reports.php:1016
4732
  msgid "c-so"
4733
  msgstr "Somalia"
4734
 
4735
  # South Africa
4736
- #: ../../admin/view/wp-slimstat-reports.php:1016
4737
  msgid "c-za"
4738
  msgstr "Südafrika"
4739
 
4740
  # South Georgia and the South Sandwich Islands
4741
- #: ../../admin/view/wp-slimstat-reports.php:1016
4742
  msgid "c-gs"
4743
  msgstr "Südgeorgien und die Südlichen Sandwichinseln"
4744
 
4745
  # Spain
4746
- #: ../../admin/view/wp-slimstat-reports.php:1016
4747
  msgid "c-es"
4748
  msgstr "Spanien"
4749
 
4750
  # Sri Lanka
4751
- #: ../../admin/view/wp-slimstat-reports.php:1016
4752
  msgid "c-lk"
4753
  msgstr "Sri Lanka"
4754
 
4755
- #: ../../admin/view/wp-slimstat-reports.php:1016
4756
  msgid "c-sc"
4757
  msgstr ""
4758
 
4759
  # Sudan
4760
- #: ../../admin/view/wp-slimstat-reports.php:1016
4761
  msgid "c-sd"
4762
  msgstr "Sudan"
4763
 
4764
- #: ../../admin/view/wp-slimstat-reports.php:1016
4765
  msgid "c-ss"
4766
  msgstr "Siswati"
4767
 
4768
  # Suriname
4769
- #: ../../admin/view/wp-slimstat-reports.php:1016
4770
  msgid "c-sr"
4771
  msgstr "Suriname"
4772
 
4773
  # Svalbard and Jan Mayen
4774
- #: ../../admin/view/wp-slimstat-reports.php:1016
4775
  msgid "c-sj"
4776
  msgstr "Spitzbergen und Jan Mayen"
4777
 
4778
  # Swaziland
4779
- #: ../../admin/view/wp-slimstat-reports.php:1016
4780
  msgid "c-sz"
4781
  msgstr "Swaziland"
4782
 
4783
  # Sweden
4784
- #: ../../admin/view/wp-slimstat-reports.php:1016
4785
  msgid "c-se"
4786
  msgstr "Schweden"
4787
 
4788
  # Switzerland
4789
- #: ../../admin/view/wp-slimstat-reports.php:1016
4790
  msgid "c-ch"
4791
  msgstr "Schweiz"
4792
 
4793
  # Syrian Arab Republic
4794
- #: ../../admin/view/wp-slimstat-reports.php:1016
4795
  msgid "c-sy"
4796
  msgstr "Arabische Republik Syrien"
4797
 
4798
  # Taiwan, Province of China
4799
- #: ../../admin/view/wp-slimstat-reports.php:1016
4800
  msgid "c-tw"
4801
  msgstr "Taiwan"
4802
 
4803
  # Tajikistan
4804
- #: ../../admin/view/wp-slimstat-reports.php:1016
4805
  msgid "c-tj"
4806
  msgstr "Tadschikistan"
4807
 
4808
  # United Republic of Tanzania
4809
- #: ../../admin/view/wp-slimstat-reports.php:1016
4810
  msgid "c-tz"
4811
  msgstr "Vereinigte Republik Tansania"
4812
 
4813
  # Thailand
4814
- #: ../../admin/view/wp-slimstat-reports.php:1016
4815
  msgid "c-th"
4816
  msgstr "Thailand"
4817
 
4818
  # Timor-Leste
4819
- #: ../../admin/view/wp-slimstat-reports.php:1016
4820
  msgid "c-tl"
4821
  msgstr "Timor-Leste"
4822
 
4823
  # Togo
4824
- #: ../../admin/view/wp-slimstat-reports.php:1016
4825
  msgid "c-tg"
4826
  msgstr "Togo"
4827
 
4828
  # Tonga
4829
- #: ../../admin/view/wp-slimstat-reports.php:1016
4830
  msgid "c-to"
4831
  msgstr "Tonga"
4832
 
4833
  # Trinidad and Tobago
4834
- #: ../../admin/view/wp-slimstat-reports.php:1016
4835
  msgid "c-tt"
4836
  msgstr "Trinidad und Tobago"
4837
 
4838
  # Tunisia
4839
- #: ../../admin/view/wp-slimstat-reports.php:1016
4840
  msgid "c-tn"
4841
  msgstr "Tunesien"
4842
 
4843
  # Turkey
4844
- #: ../../admin/view/wp-slimstat-reports.php:1016
4845
  msgid "c-tr"
4846
  msgstr "T&uuml;rkei"
4847
 
4848
  # Turkmenistan
4849
- #: ../../admin/view/wp-slimstat-reports.php:1016
4850
  msgid "c-tm"
4851
  msgstr "Turkmenistan"
4852
 
4853
  # Turks and Caicos Islands
4854
- #: ../../admin/view/wp-slimstat-reports.php:1016
4855
  msgid "c-tc"
4856
  msgstr "Turks- und Caicosinseln"
4857
 
4858
  # Uganda
4859
- #: ../../admin/view/wp-slimstat-reports.php:1016
4860
  msgid "c-ug"
4861
  msgstr "Uganda"
4862
 
4863
  # Ukraine
4864
- #: ../../admin/view/wp-slimstat-reports.php:1016
4865
  msgid "c-ua"
4866
  msgstr "Ukraine"
4867
 
4868
  # United Arab Emirates
4869
- #: ../../admin/view/wp-slimstat-reports.php:1016
4870
  msgid "c-ae"
4871
  msgstr "Vereinigte Arabische Emirate"
4872
 
4873
  # United Kingdom
4874
- #: ../../admin/view/wp-slimstat-reports.php:1016
4875
  msgid "c-gb"
4876
  msgstr "Vereinigtes K&ouml;nigreich"
4877
 
4878
  # United States
4879
- #: ../../admin/view/wp-slimstat-reports.php:1016
4880
  msgid "c-us"
4881
  msgstr "Vereinigte Staaten"
4882
 
4883
  # Uruguay
4884
- #: ../../admin/view/wp-slimstat-reports.php:1016
4885
  msgid "c-uy"
4886
  msgstr "Uruguay"
4887
 
4888
  # Uzbekistan
4889
- #: ../../admin/view/wp-slimstat-reports.php:1016
4890
  msgid "c-uz"
4891
  msgstr "Usbekistan"
4892
 
4893
  # Vanuatu
4894
- #: ../../admin/view/wp-slimstat-reports.php:1016
4895
  msgid "c-vu"
4896
  msgstr "Vanuatu"
4897
 
4898
  # Venezuela
4899
- #: ../../admin/view/wp-slimstat-reports.php:1016
4900
  msgid "c-ve"
4901
  msgstr "Venezuela"
4902
 
4903
  # Viet Nam
4904
- #: ../../admin/view/wp-slimstat-reports.php:1016
4905
  msgid "c-vn"
4906
  msgstr "Vietnam"
4907
 
4908
  # British Virgin Islands
4909
- #: ../../admin/view/wp-slimstat-reports.php:1016
4910
  msgid "c-vg"
4911
  msgstr "Jungferninseln"
4912
 
4913
  # U.S. Virgin Islands
4914
- #: ../../admin/view/wp-slimstat-reports.php:1016
4915
  msgid "c-vi"
4916
  msgstr "Amerikanische Jungferninseln"
4917
 
4918
  # Western Sahara
4919
- #: ../../admin/view/wp-slimstat-reports.php:1016
4920
  msgid "c-eh"
4921
  msgstr "Westsahara"
4922
 
4923
  # Yemen
4924
- #: ../../admin/view/wp-slimstat-reports.php:1016
4925
  msgid "c-ye"
4926
  msgstr "Jemen"
4927
 
4928
  # Zambia
4929
- #: ../../admin/view/wp-slimstat-reports.php:1016
4930
  msgid "c-zm"
4931
  msgstr "Sambia"
4932
 
4933
  # Zimbabwe
4934
- #: ../../admin/view/wp-slimstat-reports.php:1016
4935
  msgid "c-zw"
4936
  msgstr "Zimbabwe"
4937
 
4938
  # Guernsey
4939
- #: ../../admin/view/wp-slimstat-reports.php:1016
4940
  msgid "c-gg"
4941
  msgstr "Guernsey"
4942
 
4943
  # Jersey
4944
- #: ../../admin/view/wp-slimstat-reports.php:1016
4945
  msgid "c-je"
4946
  msgstr "Jersey"
4947
 
4948
  # Isle of Man
4949
- #: ../../admin/view/wp-slimstat-reports.php:1016
4950
  msgid "c-im"
4951
  msgstr "Isle of Man"
4952
 
4953
  # Maldives
4954
- #: ../../admin/view/wp-slimstat-reports.php:1016
4955
  msgid "c-mv"
4956
  msgstr "Malediven"
4957
 
4958
- #: ../../admin/view/wp-slimstat-reports.php:1017
4959
  msgid "c-eu"
4960
  msgstr ""
4961
 
4962
- #: ../../admin/view/wp-slimstat-reports.php:1106
4963
  msgid ""
4964
  "This value includes not only posts, but also custom post types, regardless "
4965
  "of their status"
4966
  msgstr ""
4967
 
4968
- #: ../../admin/view/wp-slimstat-reports.php:1107
4969
  #, fuzzy
4970
  msgid "Content Items"
4971
  msgstr "Inhalt"
4972
 
4973
- #: ../../admin/view/wp-slimstat-reports.php:1108
4974
  msgid "Total Comments"
4975
  msgstr "Gesamte Kommentare"
4976
 
4977
- #: ../../admin/view/wp-slimstat-reports.php:1109
4978
  msgid "Pingbacks"
4979
  msgstr ""
4980
 
4981
- #: ../../admin/view/wp-slimstat-reports.php:1110
4982
  msgid "Trackbacks"
4983
  msgstr ""
4984
 
4985
- #: ../../admin/view/wp-slimstat-reports.php:1111
4986
  #, fuzzy
4987
  msgid "Avg Comments Per Post"
4988
  msgstr "Spalte bei Beitr&auml;gen hinzuf&uuml;gen"
4989
 
4990
- #: ../../admin/view/wp-slimstat-reports.php:1112
4991
  msgid "Avg Posts Per Day"
4992
  msgstr ""
4993
 
4994
- #: ../../admin/view/wp-slimstat-reports.php:1113
4995
  msgid "Avg Server Latency"
4996
  msgstr ""
4997
 
4998
- #: ../../admin/view/wp-slimstat-reports.php:1114
4999
  #, fuzzy
5000
  msgid "Avg Page Load Time"
5001
  msgstr "Durchschnittl. Seitenaufrufe"
5002
 
5003
- #: ../../admin/view/wp-slimstat-reports.php:1141
5004
- msgid "Visits"
5005
- msgstr "Besuche"
5006
-
5007
- #: ../../admin/view/wp-slimstat-reports.php:1145
5008
  msgid "Domains"
5009
  msgstr "Dom&auml;nen"
5010
 
5011
- #: ../../admin/view/wp-slimstat-reports.php:1150
5012
- msgid "Avg Pageviews"
5013
- msgstr "Durchschnittl. Seitenaufrufe"
5014
-
5015
- #: ../../admin/wp-slimstat-admin.php:504 ../../admin/wp-slimstat-admin.php:516
5016
- #: ../../admin/wp-slimstat-admin.php:519
5017
  #, fuzzy
5018
  msgid "SlimStat"
5019
  msgstr "&Uuml;ber WP SlimStat"
5020
 
5021
- #: ../../admin/wp-slimstat-admin.php:600
5022
- msgid "Pageviews in the last 365 days"
5023
- msgstr ""
 
 
 
 
 
 
5024
 
5025
- #: ../../admin/wp-slimstat-admin.php:628
5026
  msgid "Show on screen"
5027
  msgstr "Anzeigen"
5028
 
5029
- #: ../../admin/wp-slimstat-admin.php:656
5030
- msgid "Hide this notice"
5031
- msgstr ""
5032
-
5033
- #: ../../admin/wp-slimstat-admin.php:698
5034
  msgid "Already saved"
5035
  msgstr ""
5036
 
5037
- #: ../../admin/wp-slimstat-admin.php:706
5038
  msgid "Saved"
5039
  msgstr ""
5040
 
5041
- #: ../../admin/wp-slimstat-admin.php:725
5042
  #, fuzzy
5043
  msgid "Delete this filter"
5044
  msgstr "Lösche Seitenaufrufe, wo"
5045
 
5046
- #: ../../admin/wp-slimstat-admin.php:759
5047
  msgid "There was an error updating the following options:"
5048
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
5049
 
5050
- #: ../../admin/wp-slimstat-admin.php:762
5051
  #, fuzzy
5052
  msgid "Your changes have been saved."
5053
  msgstr "Optionen erfolgreich aktualisiert."
5054
 
5055
- #: ../../admin/wp-slimstat-admin.php:785
5056
  msgid "Save Changes"
5057
  msgstr "Änderungen speichern"
5058
 
5059
- #: ../../admin/wp-slimstat-admin.php:801
5060
  msgid "Definitions"
5061
  msgstr "Definitionen"
5062
 
5063
- #: ../../admin/wp-slimstat-admin.php:804
5064
  msgid "Pageview"
5065
  msgstr "Seitenaufrufe"
5066
 
5067
- #: ../../admin/wp-slimstat-admin.php:804
5068
  #, fuzzy
5069
  msgid ""
5070
  "A request to load a single HTML file (\"page\"). This should be contrasted "
@@ -5075,11 +5311,11 @@ msgstr ""
5075
  "jedesmal einen 'Seitenaufruf' auf wenn der Tracking-Code ausgef&uuml;hrt "
5076
  "wird."
5077
 
5078
- #: ../../admin/wp-slimstat-admin.php:805
5079
  msgid "(Human) Visit"
5080
  msgstr "Echte Besuche"
5081
 
5082
- #: ../../admin/wp-slimstat-admin.php:805
5083
  msgid ""
5084
  "A period of interaction between a visitor's browser and your website, ending "
5085
  "when the browser is closed or when the user has been inactive on that site "
@@ -5089,7 +5325,7 @@ msgstr ""
5089
  "Diese endet wenn der Browser geschlossen wird oder der Besucher 30 Minuten "
5090
  "lang nicht auf der Website aktiv war"
5091
 
5092
- #: ../../admin/wp-slimstat-admin.php:806
5093
  msgid ""
5094
  "Any user who has left a comment on your blog, and is thus identified by "
5095
  "Wordpress as a returning visitor"
@@ -5097,11 +5333,11 @@ msgstr ""
5097
  "Jeder Benutzer, der einen Kommentar auf Ihrer Website hinterlassen hat und "
5098
  "damit als wiederkehrender Besucher erkannt wird."
5099
 
5100
- #: ../../admin/wp-slimstat-admin.php:807
5101
  msgid "Unique IP"
5102
  msgstr "Eindeutige IPs"
5103
 
5104
- #: ../../admin/wp-slimstat-admin.php:807
5105
  msgid ""
5106
  "Used to differentiate between multiple requests to download a file from one "
5107
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -5113,7 +5349,7 @@ msgstr ""
5113
  "Adresse von der ein Seitenaufruf stammt achtet, ist es nützlich, aber nicht "
5114
  "perfekt."
5115
 
5116
- #: ../../admin/wp-slimstat-admin.php:808
5117
  msgid ""
5118
  "the originating IP address of a client connecting to a web server through an "
5119
  "HTTP proxy or load balancer"
@@ -5121,11 +5357,11 @@ msgstr ""
5121
  "Die ursprüngliche IP-Adresse eines Clients, der sich durch einen HTTP Proxy "
5122
  "oder Load Balancer mit dem Server verbunden hat."
5123
 
5124
- #: ../../admin/wp-slimstat-admin.php:809
5125
  msgid "Direct Traffic"
5126
  msgstr "Direkter Besuch"
5127
 
5128
- #: ../../admin/wp-slimstat-admin.php:809
5129
  msgid ""
5130
  "All those people showing up to your Web site by typing in the URL of your "
5131
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -5135,11 +5371,11 @@ msgstr ""
5135
  "oder ein Lesezeichen erreichen; auch \"default traffic\" oder \"ambient "
5136
  "traffic\" genannt."
5137
 
5138
- #: ../../admin/wp-slimstat-admin.php:810
5139
  msgid "Search Engine"
5140
  msgstr "Suchmaschinen"
5141
 
5142
- #: ../../admin/wp-slimstat-admin.php:810
5143
  msgid ""
5144
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
5145
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -5147,15 +5383,15 @@ msgstr ""
5147
  "Google, Yahoo, MSN, Ask usw.; hiwer ist sowohl organischer als auch "
5148
  "bezahlter (PPC/SEM) Traffic enthalten."
5149
 
5150
- #: ../../admin/wp-slimstat-admin.php:811 ../../admin/wp-slimstat-admin.php:827
5151
  msgid "Keywords used by your visitors to find your website on a search engine"
5152
  msgstr "Begriffe welche von Besuchern in Suchmaschinen verwendet wurden"
5153
 
5154
- #: ../../admin/wp-slimstat-admin.php:812
5155
  msgid "SERP"
5156
  msgstr "SERP"
5157
 
5158
- #: ../../admin/wp-slimstat-admin.php:812
5159
  msgid ""
5160
  "Short for search engine results page, the Web page that a search engine "
5161
  "returns with the results of its search. The value shown represents your rank "
@@ -5164,7 +5400,7 @@ msgstr ""
5164
  "\"Search Engine Result Pages\" - Suchmaschinenranking. Der Wert "
5165
  "repräsentiert Ihren Rang (die Postition) in den Suchergebnissen."
5166
 
5167
- #: ../../admin/wp-slimstat-admin.php:813
5168
  msgid ""
5169
  "Any program used for accessing a website; this includes browsers, robots, "
5170
  "spiders and any other program that was used to retrieve information from the "
@@ -5174,7 +5410,7 @@ msgstr ""
5174
  "usw.), 'Robots' und 'Spider' sowie jedes andere Programm welches "
5175
  "Informationen von einer Website abruft."
5176
 
5177
- #: ../../admin/wp-slimstat-admin.php:814
5178
  msgid ""
5179
  "A link from one domain to another is said to be outbound from its source "
5180
  "anchor and inbound to its target. This report lists all the links to other "
@@ -5183,27 +5419,27 @@ msgstr ""
5183
  "Ausgehende Links sind links zu einer anderen Domain. Dieser Report zeigt "
5184
  "alle Links zu anderen Websites die Ihre Besucher verfolgt haben."
5185
 
5186
- #: ../../admin/wp-slimstat-admin.php:821
5187
  msgid "Basic Filters"
5188
  msgstr "Einfache Filter"
5189
 
5190
- #: ../../admin/wp-slimstat-admin.php:824
5191
  msgid "User agent (Firefox, Chrome, ...)"
5192
  msgstr "Browser (Firefox, Chrome ...)"
5193
 
5194
- #: ../../admin/wp-slimstat-admin.php:825
5195
  msgid "2-letter code (us, ru, de, it, ...)"
5196
  msgstr "Länder-Code (us, ru, de, it...)"
5197
 
5198
- #: ../../admin/wp-slimstat-admin.php:826
5199
  msgid "IP"
5200
  msgstr "IP"
5201
 
5202
- #: ../../admin/wp-slimstat-admin.php:826
5203
  msgid "Visitor's public IP address"
5204
  msgstr "&Ouml;ffentliche IP-Adresse des Besuchers"
5205
 
5206
- #: ../../admin/wp-slimstat-admin.php:828
5207
  msgid ""
5208
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
5209
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -5212,7 +5448,7 @@ msgstr ""
5212
  "Siehe <a target=\"_blank\" href=\"http://msdn.microsoft.com/en-us/library/"
5213
  "ee825488(v=cs.20).aspx\">Tabelle von Sprach-Kodierungen</a> "
5214
 
5215
- #: ../../admin/wp-slimstat-admin.php:829
5216
  msgid ""
5217
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
5218
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -5222,16 +5458,16 @@ msgstr ""
5222
  "gibt es auf <a href=\"http://php.net/manual/de/function.get-browser.php\" "
5223
  "target=\"_blank\">dieser Seite</a>"
5224
 
5225
- #: ../../admin/wp-slimstat-admin.php:830
5226
  msgid "URL accessed on your site"
5227
  msgstr "URL, die auf Ihrer Seite besucht wurde"
5228
 
5229
- #: ../../admin/wp-slimstat-admin.php:831
5230
  #, fuzzy
5231
  msgid "Complete address of the referrer page"
5232
  msgstr "Verweisende Seite &ouml;ffnen"
5233
 
5234
- #: ../../admin/wp-slimstat-admin.php:832
5235
  msgid ""
5236
  "Visitors' names according to the cookie set by Wordpress after they leave a "
5237
  "comment"
@@ -5239,15 +5475,15 @@ msgstr ""
5239
  "Besuchername laut Cookie, welches Wordpress beim hinterlassen eines "
5240
  "Kommentars anlegt"
5241
 
5242
- #: ../../admin/wp-slimstat-admin.php:840
5243
  msgid "Advanced Filters"
5244
  msgstr "Erweiterte Filter"
5245
 
5246
- #: ../../admin/wp-slimstat-admin.php:843
5247
  msgid "user agent version (9.0, 11, ...)"
5248
  msgstr "Browser-Version (9.0, 11, ...)"
5249
 
5250
- #: ../../admin/wp-slimstat-admin.php:844
5251
  msgid ""
5252
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
5253
  "all others"
@@ -5255,18 +5491,18 @@ msgstr ""
5255
  "1 = Suchmaschinen Crawler, 2 = Mobiles Gerät, 3 = Feed-Reader, 0 = alle "
5256
  "anderen"
5257
 
5258
- #: ../../admin/wp-slimstat-admin.php:845
5259
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
5260
  msgstr "Farbtiefe des Monitors des Besuchers (8, 16, 24, ...)"
5261
 
5262
- #: ../../admin/wp-slimstat-admin.php:846
5263
  msgid ""
5264
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
5265
  "values)"
5266
  msgstr ""
5267
  "Vom Browser unterstützter CSS standard (1, 2, 3 und andere ganze Zahlen)"
5268
 
5269
- #: ../../admin/wp-slimstat-admin.php:847
5270
  msgid ""
5271
  "this field is set to <em>[pre]</em> if the resource has been accessed "
5272
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -5276,19 +5512,19 @@ msgstr ""
5276
  "target=\"_blank\" href=\"https://developer.mozilla.org/en/"
5277
  "Link_prefetching_FAQ\">Link Prefetching</a> oder eine &auml;hnliche "
5278
 
5279
- #: ../../admin/wp-slimstat-admin.php:848
5280
  msgid "author associated to that post/page when the resource was accessed"
5281
  msgstr "Der dem Artikel / der Seite zugeordnete Autor"
5282
 
5283
- #: ../../admin/wp-slimstat-admin.php:849
5284
  msgid "ID of the category/term associated to the resource, when available"
5285
  msgstr "ID der zugeordneten Kategorie, falls vorhanden"
5286
 
5287
- #: ../../admin/wp-slimstat-admin.php:850
5288
  msgid "visitor's originating IP address, if available"
5289
  msgstr "IP-Adresse des Besuchers, falls bekannt"
5290
 
5291
- #: ../../admin/wp-slimstat-admin.php:851
5292
  msgid ""
5293
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
5294
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -5301,11 +5537,11 @@ msgstr ""
5301
  "feed, home; F&uuml;r mehr Infos s. <a target=\"_blank\" href=\"http://codex."
5302
  "wordpress.org/Conditional_Tags\">Conditional Tags</a>."
5303
 
5304
- #: ../../admin/wp-slimstat-admin.php:852
5305
  msgid "viewport width and height (1024x768, 800x600, ...)"
5306
  msgstr "Breite und H&ouml;he des sichtbaren Bereiches"
5307
 
5308
- #: ../../admin/wp-slimstat-admin.php:853
5309
  msgid ""
5310
  "generally used in conjunction with <em>is not empty</em>, identifies human "
5311
  "visitors"
@@ -5313,11 +5549,11 @@ msgstr ""
5313
  "Meist im Zusammenhang mit <em>nicht leer</em> verwendet, kennzeichnet echte "
5314
  "Besucher"
5315
 
5316
- #: ../../admin/wp-slimstat-admin.php:854
5317
  msgid "Date Filters"
5318
  msgstr "Datumsfilter"
5319
 
5320
- #: ../../admin/wp-slimstat-admin.php:854
5321
  msgid ""
5322
  "you can specify the timeframe by entering a number in the <em>interval</em> "
5323
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -5327,35 +5563,168 @@ msgstr ""
5327
  "-1 erzeugt ein Intervall seit Beginn des Jahres / Monats, z.B. Tag=1, "
5328
  "Monat=1, Jahr leer, Intervall=-1 erzeugt einen 'seit Jahresbeginn' Filter."
5329
 
5330
- #: ../../admin/wp-slimstat-admin.php:855
5331
  msgid "SERP Position"
5332
  msgstr "Suchmaschinenrang"
5333
 
5334
- #: ../../admin/wp-slimstat-admin.php:855
5335
  msgid ""
5336
  "set the filter to Referer contains cd=N&, where N is the position you are "
5337
  "looking for"
5338
  msgstr ""
5339
  "Filter nach Herkunft mit cd=N& setzen, wobei N die gesuchte Position ist"
5340
 
5341
- #: ../../admin/wp-slimstat-admin.php:882
5342
  msgid "Yes"
5343
  msgstr "Ja"
5344
 
5345
- #: ../../admin/wp-slimstat-admin.php:884
5346
  msgid "Site Specific"
5347
  msgstr ""
5348
 
5349
- #~ msgid "Empty Database"
5350
- #~ msgstr "Datenbank leeren"
 
 
 
 
 
 
 
 
 
 
5351
 
5352
- #~ msgid "Reset Reports"
5353
- #~ msgstr "Berichte zurücksetzen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5354
 
5355
  #, fuzzy
5356
  #~ msgid ""
5357
- #~ "Are you sure you want to restore the default arrangement of your reports?"
5358
- #~ msgstr "Datenbanktabellen wirklich zurücksetzen?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5359
 
5360
  #~ msgid "Right Now"
5361
  #~ msgstr "Aktuell"
@@ -6540,9 +6909,6 @@ msgstr ""
6540
  #~ msgid "Unique Pages Referred"
6541
  #~ msgstr "Eindeutige Seitenverweise"
6542
 
6543
- #~ msgid "Unique Internal"
6544
- #~ msgstr "Eindeutige interne Zugriffe"
6545
-
6546
  #, fuzzy
6547
  #~ msgid "Sites"
6548
  #~ msgstr "Sites"
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-17 20:27-0500\n"
6
+ "PO-Revision-Date: 2015-04-17 20:29-0500\n"
7
  "Last-Translator: Get Used To IT <support@getused.to.it>\n"
8
  "Language-Team: TechnoViel <klaus@technoviel.de>\n"
9
  "Language: de_DE\n"
16
  "X-Generator: Poedit 1.6.9\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:"
24
  "Es gabe einen Fehler beim Abruf der Add-on-Liste vom Server. Bitte später "
25
  "nochmals versuchen. Fehlermeldung:"
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."
32
  "Fehler beim Auslesen der Add-on-Liste vom Server. Versuchen Sie es später "
33
  "nochmals."
34
 
35
+ #: ../../admin/config/addons.php:31 ../../admin/config/index.php:9
36
+ #: ../../admin/wp-slimstat-admin.php:592 ../../admin/wp-slimstat-admin.php:607
37
+ #: ../../wp-slimstat.php:1476
38
  msgid "Add-ons"
39
  msgstr "Add-Ons"
40
 
41
+ #: ../../admin/config/addons.php:32
42
  #, fuzzy
43
  msgid ""
44
  "Add-ons extend the functionality of Slimstat in many interesting ways. We "
56
  "strong> eingegeben werden."
57
 
58
  #: ../../admin/config/addons.php:36
59
+ #, php-format
60
+ msgid ""
61
+ "This list is cached daily on your server: <a href=\"%s&amp;force_refresh=true"
62
+ "\">click here</a> to clear the cache."
63
+ msgstr ""
64
+
65
+ #: ../../admin/config/addons.php:45
66
  msgid "Add-on"
67
  msgstr "Add-on"
68
 
69
+ #: ../../admin/config/addons.php:45
70
  msgid "Description"
71
  msgstr "Beschreibung"
72
 
74
  msgid "General"
75
  msgstr "Allgemein"
76
 
77
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:47
78
+ #: ../../admin/config/index.php:146
79
+ msgid "Reports"
80
+ msgstr "Auswertungen"
81
 
82
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:73
83
  msgid "Filters"
84
  msgstr "Filter"
85
 
86
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:144
87
  msgid "Permissions"
88
  msgstr "Berechtigungen"
89
 
90
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:221
91
  msgid "Advanced"
92
  msgstr "Erweitert"
93
 
94
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:252
95
  msgid "Maintenance"
96
  msgstr "Wartung"
97
 
98
+ #: ../../admin/config/index.php:14 ../../admin/config/index.php:151
99
+ #: ../../admin/wp-slimstat-admin.php:633 ../../admin/wp-slimstat-admin.php:635
100
+ #: ../../wp-slimstat.php:1479
101
  msgid "Settings"
102
  msgstr "Einstellungen"
103
 
104
+ #: ../../admin/config/index.php:20 ../../admin/config/index.php:226
105
  #, fuzzy
106
  msgid "Tracker"
107
  msgstr "Benutzer tracken"
208
  #, fuzzy
209
  msgid ""
210
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
211
+ "per post in the last 365 days."
212
  msgstr ""
213
  "F&uuml;gt eine Spalte in der Beitrags&uuml;bersicht ein, welche die Anzahl "
214
  "der Zugriffe pro Beitrag anzeigt."
215
 
216
+ #: ../../admin/config/index.php:29
217
+ #, fuzzy
218
+ msgid "Interval"
219
+ msgstr "Eindeutige interne Zugriffe"
220
+
221
+ #: ../../admin/config/index.php:29
222
+ msgid ""
223
+ "Enter the time range, in days, that should be used to calculate the value "
224
+ "here above."
225
+ msgstr ""
226
 
227
+ #: ../../admin/config/index.php:30
228
  #, fuzzy
229
+ msgid "Report Type"
230
+ msgstr "Auswertungen"
231
 
232
+ #: ../../admin/config/index.php:30
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:30 ../../admin/view/index.php:173
240
+ #: ../../admin/view/wp-slimstat-reports.php:850
241
+ #: ../../admin/view/wp-slimstat-reports.php:952
242
+ #: ../../admin/view/wp-slimstat-reports.php:1175
243
+ msgid "Pageviews"
244
+ msgstr "Seitenaufrufe"
245
+
246
+ #: ../../admin/config/index.php:30
247
+ #: ../../admin/view/wp-slimstat-reports.php:856
248
+ #: ../../admin/view/wp-slimstat-reports.php:871
249
+ #: ../../admin/view/wp-slimstat-reports.php:1175
250
+ #: ../../admin/view/wp-slimstat-reports.php:1179
251
+ #: ../../admin/view/wp-slimstat-reports.php:1183
252
+ msgid "Unique IPs"
253
+ msgstr "Eindeutige IPs"
254
+
255
  #: ../../admin/config/index.php:32
256
+ msgid "Database"
257
+ msgstr "Datenbank"
258
+
259
+ #: ../../admin/config/index.php:33
260
  msgid "Retain data for"
261
  msgstr ""
262
 
263
+ #: ../../admin/config/index.php:33
264
  msgid ""
265
  "Clean-up log entries older than the number of days specified here above. "
266
  "Enter <strong>0</strong> (number zero) if you want to preserve your data "
267
  "regardless of its age."
268
  msgstr ""
269
 
270
+ #: ../../admin/config/index.php:33
271
  msgid "Next clean-up on"
272
  msgstr "N&auml;chste Bereinigung "
273
 
274
+ #: ../../admin/config/index.php:33
275
  #, fuzzy, php-format
276
+ msgid ""
277
+ "Entries logged on or before %s will be archived or deleted according to the "
278
+ "option here below."
279
  msgstr ""
280
  "Eintr&auml;ge, die vor dem %s erfasst wurden werden unwiderruflich gel&ouml;"
281
  "scht."
282
 
283
+ #: ../../admin/config/index.php:33 ../../admin/view/index.php:102
284
+ #: ../../admin/view/wp-slimstat-db-new.php:70
285
+ #: ../../admin/view/wp-slimstat-db.php:75
286
+ #: ../../admin/view/wp-slimstat-reports.php:838
287
  msgid "days"
288
  msgstr "Tage"
289
 
290
+ #: ../../admin/config/index.php:34
291
  #, fuzzy
292
+ msgid "Delete records"
293
+ msgstr "Datensätze"
 
 
 
 
294
 
295
+ #: ../../admin/config/index.php:34
296
+ msgid ""
297
+ "If DB space is not an issue, you can decide to archive older records in "
298
+ "another table, instead of deleting them. This way performance is preserved, "
299
+ "but you will still be able to access your data at a later time, if needed. "
300
+ "Please note that the archive table (<code>wp_slim_stats_archive</code>) will "
301
+ "be <strong>deleted</strong> along with all the other tables, when Slimstat "
302
+ "is uninstalled. Make sure to backup your data before you proceed."
303
  msgstr ""
304
 
305
  #: ../../admin/config/index.php:49
306
+ msgid "Formats and Conversions"
307
+ msgstr ""
308
+
309
+ #: ../../admin/config/index.php:50
310
  msgid "Number Format"
311
  msgstr "Zahlenformat"
312
 
313
+ #: ../../admin/config/index.php:50
314
  #, fuzzy
315
  msgid "Choose the number format you want to use for your reports."
316
  msgstr "Das zu verwendente Zahlenformat ausw&auml;hlen (metrisch o. imperial)."
317
 
 
 
 
 
 
 
 
 
 
 
 
318
  #: ../../admin/config/index.php:51
319
+ msgid "Date Format"
320
+ msgstr "Datum"
321
 
322
  #: ../../admin/config/index.php:51
 
323
  msgid ""
324
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
325
+ "Format</a> to use when displaying a pageview's date."
326
  msgstr ""
 
 
327
 
328
  #: ../../admin/config/index.php:52
329
  #, fuzzy
330
+ msgid "Time Format"
331
+ msgstr "Zahlenformat"
332
 
333
  #: ../../admin/config/index.php:52
 
334
  msgid ""
335
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
336
+ "Format</a> to use when displaying a pageview's time."
337
  msgstr ""
 
 
338
 
339
  #: ../../admin/config/index.php:53
340
+ #, fuzzy
341
+ msgid "Use Display Name"
342
+ msgstr "Spitznamen anzeigen"
343
 
344
  #: ../../admin/config/index.php:53
345
+ #, fuzzy
346
  msgid ""
347
+ "By default, users are listed by their usernames. Use this option to "
348
+ "visualize their display names instead."
349
  msgstr ""
350
+ "Standardmäßig werden die Benutzernamen aufgelistet. Benutzen Sie diese "
351
+ "Option, um dafür stattdessen die Spitznamen anzeigen zu lassen,"
352
 
353
  #: ../../admin/config/index.php:54
354
+ #, fuzzy
355
+ msgid "Use Post Titles"
356
+ msgstr "Titel anzeigen"
357
 
358
  #: ../../admin/config/index.php:54
359
  msgid ""
360
+ "Slimstat converts your permalinks into post and page titles. Disable this "
361
+ "feature if you need to see the URL in your reports."
362
  msgstr ""
363
 
364
  #: ../../admin/config/index.php:55
365
+ msgid "Convert IP Addresses"
366
+ msgstr "IP-Adressen umwandeln"
 
367
 
368
  #: ../../admin/config/index.php:55
369
+ msgid "Display provider names instead of IP addresses."
 
 
370
  msgstr ""
371
 
372
  #: ../../admin/config/index.php:57
431
  "Anzeige der aktuell aktiven Besucher alle X Sekunden aktualisieren. Null "
432
  "deaktiviert diese Funktion."
433
 
434
+ #: ../../admin/config/index.php:64 ../../admin/config/index.php:228
435
  msgid "seconds"
436
  msgstr "Sekunden"
437
 
439
  msgid "Specify the number of items in the Activity Log."
440
  msgstr ""
441
 
442
+ #: ../../admin/config/index.php:68 ../../admin/config/index.php:95
443
+ #: ../../admin/config/index.php:245 ../../admin/config/maintenance.php:385
444
+ msgid "Miscellaneous"
445
+ msgstr "Diverse"
446
+
447
+ #: ../../admin/config/index.php:69
448
  #, fuzzy
449
+ msgid "Show User Agent"
450
+ msgstr "Top Browser"
451
 
452
+ #: ../../admin/config/index.php:69
453
  #, fuzzy
454
  msgid ""
455
+ "Choose if you want to see the browser name or a complete user agent string "
456
+ "when hovering on browser icons."
457
+ msgstr ""
458
+ "Wählen Sie, ob der Browsername oder ein kompletter USER AGENT STRING "
459
+ "angezeigt werden soll, wenn Sie auf die Browsersymbole zeigen."
460
+
461
+ #: ../../admin/config/index.php:70
462
+ msgid "Enable SOV"
463
+ msgstr "SOV aktivieren"
464
+
465
+ #: ../../admin/config/index.php:70
466
+ msgid ""
467
+ "In linguistic typology, a subject-object-verb (SOV) language is one in which "
468
+ "the subject, object, and verb of a sentence appear in that order, like in "
469
+ "Japanese."
470
  msgstr ""
 
 
 
471
 
472
+ #: ../../admin/config/index.php:75
473
  #, fuzzy
474
  msgid "Visitors and Known Users"
475
  msgstr "Bekannte Benutzer"
476
 
477
+ #: ../../admin/config/index.php:76
478
  #, fuzzy
479
  msgid "Track Registered Users"
480
  msgstr "Benutzer tracken"
481
 
482
+ #: ../../admin/config/index.php:76
483
  #, fuzzy
484
  msgid "Enable this option to track logged in users."
485
  msgstr "Ja falls eingeloggte Benutzer getrackt werden sollen."
486
 
487
+ #: ../../admin/config/index.php:77
488
  #, fuzzy
489
  msgid "Blacklist by Username"
490
  msgstr "IP-Adresse"
491
 
492
+ #: ../../admin/config/index.php:77
493
  #, fuzzy
494
  msgid ""
495
  "List all the usernames you don't want to track, separated by commas. Please "
500
  "Beistriche. Leerzeichen werden <em>nicht</em> ignoriert und Gro&szlig;-/ "
501
  "Kleinschreibung wird beachtet."
502
 
503
+ #: ../../admin/config/index.php:78
504
  #, fuzzy
505
  msgid "Blacklist by IP Address"
506
  msgstr "IP-Adresse"
507
 
508
+ #: ../../admin/config/index.php:78
509
  #, fuzzy
510
  msgid ""
511
  "List all the IP addresses you don't want to track, separated by commas. Each "
520
  "(z.B. <em>192.168.0.0/24</em>) definiert werden. Bei inkorrektem Format kann "
521
  "WP SlimStat evtl. nicht die Pageviews korrekt tracken."
522
 
523
+ #: ../../admin/config/index.php:79
524
  #, fuzzy
525
  msgid "Blacklist by Capability"
526
  msgstr "Benutzer nach Browserf&auml;higkeiten"
527
 
528
+ #: ../../admin/config/index.php:79
529
  #, fuzzy
530
  msgid ""
531
  "Users having at least one of the <a href='http://codex.wordpress.org/"
536
  "wordpress.org/Roles_and_Capabilities' target='_new'>CAPABILITIES</a> haben, "
537
  "werden nicht verfolgt. Bitte Groß-/Kleinschreibung beachten."
538
 
539
+ #: ../../admin/config/index.php:81
540
  msgid "Profiling"
541
  msgstr ""
542
 
543
+ #: ../../admin/config/index.php:82
544
  msgid "Ignore Spammers"
545
  msgstr "Spammer ignorieren"
546
 
547
+ #: ../../admin/config/index.php:82
548
  #, fuzzy
549
  msgid ""
550
  "Enable this option if you don't want to track visits from users identified "
557
  "Kommentare später von Ihnen als Spam markiert werden, werden ebenso aus der "
558
  "Datenbank entfernt."
559
 
560
+ #: ../../admin/config/index.php:83
561
+ #, fuzzy
562
+ msgid "Ignore Bots"
563
+ msgstr "Ignoriere Benutzer"
564
+
565
+ #: ../../admin/config/index.php:83
566
+ msgid ""
567
+ "Turn on this feature if you want to have the accuracy level of server-side "
568
+ "tracking, but not the inconvenience of getting your database clogged with "
569
+ "pageviews generated by crawlers, spiders, search engine bots, etc. Please "
570
+ "note that in Javascript Mode, bots are ignored regardless of this setting."
571
+ msgstr ""
572
+
573
+ #: ../../admin/config/index.php:84
574
  msgid "Permalinks"
575
  msgstr "Permalinks"
576
 
577
+ #: ../../admin/config/index.php:84
578
  #, fuzzy
579
  msgid ""
580
  "List all the URLs on your website that you don't want to track, separated by "
593
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
594
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
595
 
596
+ #: ../../admin/config/index.php:85
597
  msgid "Countries"
598
  msgstr "L&auml;nder"
599
 
600
+ #: ../../admin/config/index.php:85
601
  msgid ""
602
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
603
  "track, separated by commas."
605
  "Liste der L&auml;dercodes (z.B.: <code>en-us, de, it, es</code>), die nicht "
606
  "mit erfasst werden sollen, getrennt durch Kommata."
607
 
608
+ #: ../../admin/config/index.php:86
609
  msgid "User Agents"
610
  msgstr "User Agents"
611
 
612
+ #: ../../admin/config/index.php:86
613
  #, fuzzy
614
  msgid ""
615
  "Browsers (user agents) you don't want to track, separated by commas. You can "
627
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
628
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
629
 
630
+ #: ../../admin/config/index.php:87
631
  msgid "Referring Sites"
632
  msgstr "Verweisende Webseiten"
633
 
634
+ #: ../../admin/config/index.php:87
635
  #, fuzzy
636
  msgid ""
637
  "Referring URLs that you don't want to track, separated by commas: "
649
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
650
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
651
 
652
+ #: ../../admin/config/index.php:89
653
  #, fuzzy
654
  msgid "Internal and Outbound Links"
655
  msgstr "Letzte ausgehende Links"
656
 
657
+ #: ../../admin/config/index.php:90
658
  msgid "Track Outbound Clicks"
659
  msgstr "Letzte ausgehende Links"
660
 
661
+ #: ../../admin/config/index.php:90
662
  msgid ""
663
  "Track when your visitors click on link to external websites. This option "
664
  "required Spy Mode to be enabled."
665
  msgstr ""
666
 
667
+ #: ../../admin/config/index.php:91
668
  #, fuzzy
669
  msgid "Track Coordinates"
670
  msgstr "Tracking aktiv"
671
 
672
+ #: ../../admin/config/index.php:91
673
  msgid ""
674
  "Collect mouse coordinates and other information for clicks on internal "
675
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
676
  "this information is only collected for external links."
677
  msgstr ""
678
 
679
+ #: ../../admin/config/index.php:92
680
+ msgid "No Callback"
681
+ msgstr ""
 
682
 
683
+ #: ../../admin/config/index.php:92
684
  msgid ""
685
  "Track the event but do not invoke the callback function on links marked with "
686
+ "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
687
+ "attribute contains one of these strings (separated by comma). Useful to "
688
+ "prevent conflicts with lightbox and similar libraries."
689
  msgstr ""
690
 
691
+ #: ../../admin/config/index.php:93
692
+ msgid "Do Not Track"
 
 
 
 
 
 
 
693
  msgstr ""
694
 
695
+ #: ../../admin/config/index.php:93
 
 
 
 
 
696
  msgid ""
697
+ "Do not track links marked with one of these class names, <em>rel</em> "
698
+ "attributes or whose <em>href</em> attribute contains one of these strings "
699
+ "(separated by comma)."
700
  msgstr ""
701
 
702
+ #: ../../admin/config/index.php:96
 
 
 
 
703
  msgid "Enable Privacy Mode"
704
  msgstr ""
705
 
706
+ #: ../../admin/config/index.php:96
707
  #, fuzzy
708
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
709
  msgstr ""
710
  "Diese Option maskiert das letzte Byte der IP-Adressen Ihrere Besucher um die "
711
  "Europ&auml;ischen Datenschutzgesetze zur erf&uuml;llen."
712
 
713
+ #: ../../admin/config/index.php:97
714
  msgid "Ignore Prefetch Requests"
715
  msgstr ""
716
 
717
+ #: ../../admin/config/index.php:97
718
  #, fuzzy
719
  msgid ""
720
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
724
  "Verhindert, dass WP SlimStat Pageviews trackt, die durch die <a "
725
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' target='_blank'>"
726
 
727
+ #: ../../admin/config/index.php:113
728
  msgid "Ignore users (username not found)"
729
  msgstr "Benutzer ignorieren (Benutzername nicht gefunden)"
730
 
731
+ #: ../../admin/config/index.php:136
732
  msgid ""
733
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
734
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
735
  msgstr ""
736
 
737
+ #: ../../admin/config/index.php:147
 
 
 
 
738
  msgid "Restrict Authors"
739
  msgstr "Autoren einschränken"
740
 
741
+ #: ../../admin/config/index.php:147
742
  #, fuzzy
743
  msgid ""
744
  "Enable this option if you want your authors to only see stats related to "
747
  "Aktivieren Sie diese Option, wenn Ihre Autoren nur Statistiken zu Ihrem "
748
  "eigenen Inhalt ansehen können."
749
 
750
+ #: ../../admin/config/index.php:148 ../../admin/config/index.php:152
751
  #, fuzzy
752
  msgid "Capability"
753
  msgstr "Benutzer nach Browserf&auml;higkeiten"
754
 
755
+ #: ../../admin/config/index.php:148
756
  #, fuzzy
757
  msgid ""
758
  "Specify the minimum <a href='http://codex.wordpress.org/"
769
  "Berichte, Außer eine 'Lesezugriffs'-Whitelist wurde weiter unten festgelegt, "
770
  "welche Vorrang über die CAPABILITY hat."
771
 
772
+ #: ../../admin/config/index.php:149 ../../admin/config/index.php:153
773
  msgid "Whitelist"
774
  msgstr "Whitelist"
775
 
776
+ #: ../../admin/config/index.php:149
777
  #, fuzzy
778
  msgid ""
779
  "List all the users who should have access to the reports, separated by "
785
  "angeführt werden. Wenn dieses Feld leer ist der Zugriff <strong>allen Ihren "
786
  "Benutzern</strong> erlaubt. Bitte Groß-/Kleinschreibung beachten."
787
 
788
+ #: ../../admin/config/index.php:152
789
  #, fuzzy
790
  msgid ""
791
  "Specify the minimum <a href='http://codex.wordpress.org/"
800
  "Berichte, Außer eine 'Lesezugriffs'-Whitelist wurde weiter unten festgelegt, "
801
  "welche Vorrang über die CAPABILITY hat."
802
 
803
+ #: ../../admin/config/index.php:153
804
  #, fuzzy
805
  msgid ""
806
  "List all the users who can edit these options, separated by commas. Please "
814
  "Benutzer bekommen automatisch auch 'Lesezugriff' auf die WP SlimStat-"
815
  "Berichte. Bitte Groß-/Kleinschreibung beachten."
816
 
817
+ #: ../../admin/config/index.php:169
818
  msgid "Read access: username not found"
819
  msgstr "Lesezugriff: Benutzername nicht gefunden"
820
 
821
+ #: ../../admin/config/index.php:182 ../../admin/config/index.php:213
822
  #, fuzzy
823
  msgid ""
824
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
829
  "\"http://codex.wordpress.org/Roles_and_Capabilities\" target=\"_new\">hier</"
830
  "a>."
831
 
832
+ #: ../../admin/config/index.php:200
833
  msgid "Config access: username not found"
834
  msgstr "Konfigurationszugriff: Benutzername nicht gefunden."
835
 
836
  # What is smoothing?
837
+ #: ../../admin/config/index.php:227
838
  msgid "Detect Smoothing"
839
  msgstr "Smoothing erkennen"
840
 
841
+ #: ../../admin/config/index.php:227
842
  msgid ""
843
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
844
  "This option required Spy Mode to be enabled."
845
  msgstr ""
846
 
847
+ #: ../../admin/config/index.php:228
848
  msgid "Session Duration"
849
  msgstr "Besuchsdauer"
850
 
851
+ #: ../../admin/config/index.php:228
852
  #, fuzzy
853
  msgid ""
854
  "How many seconds should a human session last? Google Analytics sets it to "
857
  "Definiert, wie viele Sekunden ein Besuch dauern soll. Bei Google Analytics "
858
  "wird hier 1.800 Sekunden vorgeschlagen."
859
 
860
+ #: ../../admin/config/index.php:229
861
  msgid "Extend Session"
862
  msgstr "Sitzung erweitern"
863
 
864
+ #: ../../admin/config/index.php:229
865
  #, fuzzy
866
  msgid "Extend the duration of a session each time the user visits a new page."
867
  msgstr ""
868
  "Verlängert die Dauer einer Sitzung jedes Mal um die hier eingegebene Zahl an "
869
  "Sekunden, wenn ein Benutzer eine neue Seite aufruft."
870
 
871
+ #: ../../admin/config/index.php:230
872
  msgid "Enable CDN"
873
  msgstr "CDN aktivieren"
874
 
875
+ #: ../../admin/config/index.php:230
876
  msgid ""
877
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
878
  "by serving our tracking code from their fast and reliable network (free "
879
  "service)."
880
  msgstr ""
881
 
882
+ #: ../../admin/config/index.php:231
883
  msgid "Extensions to Track"
884
  msgstr "Zu verfolgende Erweiterungen"
885
 
886
+ #: ../../admin/config/index.php:231
887
  #, fuzzy
888
  msgid ""
889
  "List all the file extensions that you want to be treated as Downloads. "
898
  "nicht als 'Ausgehende Links' gewertet werden, wenn der Typ in der folgenden "
899
  "Liste enthalten ist."
900
 
901
+ #: ../../admin/config/index.php:233
902
  #, fuzzy
903
  msgid "External Pages"
904
  msgstr "Gesamte Seitenaufrufe"
905
 
906
+ #: ../../admin/config/index.php:234
907
+ msgid ""
908
+ "Add the following code to all the non-WP pages you want to track, right "
909
+ "before the closing BODY tag"
910
+ msgstr ""
911
+
912
+ #: ../../admin/config/index.php:244
913
+ #, fuzzy
914
+ msgid "Allow External Domains"
915
+ msgstr "Gesamte Seitenaufrufe"
916
+
917
+ #: ../../admin/config/index.php:244
918
+ msgid ""
919
+ "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
920
+ "header is present on the requested resource, when using the external "
921
+ "tracking code here above, list the domains (complete with scheme, separated "
922
+ "by commas) you would like to allow. For example: <code>http://my.domain.ext</"
923
+ "code> (no trailing slash). Please see <a href='http://www.w3.org/TR/cors/"
924
+ "#security' target='_blank'>this W3 resource</a> for more information on the "
925
+ "security implications of allowing CORS requests."
926
  msgstr ""
927
 
928
+ #: ../../admin/config/index.php:246
929
  msgid "Debug Mode"
930
  msgstr ""
931
 
932
+ #: ../../admin/config/index.php:246
933
  msgid "Display the SQL queries used to retrieve the data."
934
  msgstr ""
935
 
936
+ #: ../../admin/config/index.php:247
937
  msgid "IP Lookup"
938
  msgstr "IP Suche"
939
 
940
+ #: ../../admin/config/index.php:247
941
  msgid "Customize the Geolocation service to be used in the reports."
942
  msgstr ""
943
 
944
+ #: ../../admin/config/index.php:248
945
  msgid "Custom CSS"
946
  msgstr "Benutzerdefinierte CSS"
947
 
948
+ #: ../../admin/config/index.php:248
949
  msgid ""
950
  "Paste here your custom stylesheet to personalize the way your reports look. "
951
+ "<a href='https://slimstat.freshdesk.com/support/solutions/"
952
+ "articles/5000528528-how-can-i-change-the-colors-associated-to-color-coded-"
953
+ "pageviews-known-user-known-visitors-search-e' target='_blank'>Check the FAQ</"
954
+ "a> for more information on how to use this setting."
955
  msgstr ""
956
 
957
+ #: ../../admin/config/index.php:249
958
  #, fuzzy
959
  msgid "Enable UAN"
960
  msgstr "ADN aktivieren"
961
 
962
+ #: ../../admin/config/index.php:249
963
  msgid ""
964
  "Send anonymous data about user agents to our server for analysis. This "
965
  "allows us to contribute to the <a href='http://browscap.org/' "
968
  "ads network. No worries, your site will not be affected in any way."
969
  msgstr ""
970
 
971
+ #: ../../admin/config/maintenance.php:17
972
  #, fuzzy
973
+ msgid ""
974
+ "Congrats! Slimstat is now optimized for <a href=\"http://www.youtube.com/"
975
+ "watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
976
+ msgstr ""
977
+ "Gratulation! WP SlimStat ist jetzt für <a href=\"http://www.youtube.com/"
978
+ "watch?v=1mgvE55HpcU\" target=\"_blank\">wahnsinnige Geschwindigkeit</a> "
979
+ "optimiert."
980
+
981
+ #: ../../admin/config/maintenance.php:25
982
+ msgid "Indexing has been disabled. Enjoy the extra database space!"
983
  msgstr ""
 
984
 
985
+ #: ../../admin/config/maintenance.php:36
986
  msgid "records deleted from your database."
987
  msgstr "Datensätze von Ihrer Datenbank gelöscht."
988
 
989
+ #: ../../admin/config/maintenance.php:41
990
+ msgid "The geolocation database has been uninstalled from your server."
991
+ msgstr ""
 
 
 
 
 
992
 
993
  #: ../../admin/config/maintenance.php:51
994
+ msgid "The geolocation database has been installed on your server."
995
+ msgstr ""
996
+
997
+ #: ../../admin/config/maintenance.php:159
998
+ msgid ""
999
+ "Your data was successfully imported. You may now drop the old tables: "
1000
+ "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
1001
+ "wp_slim_outbound. Please note: if you are using Slimstat in a MU network, "
1002
+ "you will need to run the import script on all your sites before you can "
1003
+ "delete the old tables."
1004
+ msgstr ""
1005
+
1006
+ #: ../../admin/config/maintenance.php:169
1007
  #, fuzzy
1008
  msgid "All the archived records were successfully restored."
1009
  msgstr "Alle Aufzeichnungen wurden erfolgreich gelöscht."
1010
 
1011
+ #: ../../admin/config/maintenance.php:174
1012
  msgid "Your reports were successfully restored to their default arrangement."
1013
  msgstr ""
1014
 
1015
+ #: ../../admin/config/maintenance.php:187
1016
  #, fuzzy
1017
+ msgid "Your Slimstat tables have been successfully converted to InnoDB."
1018
+ msgstr ""
1019
+ "Ihre WP SlimStat Datenbank wurden erfolgreich ins InnoDB-Format konvertiert."
1020
+
1021
+ #: ../../admin/config/maintenance.php:193
1022
+ #, fuzzy
1023
+ msgid "All the archived records were successfully deleted."
1024
+ msgstr "Alle Aufzeichnungen wurden erfolgreich gelöscht."
1025
+
1026
+ #: ../../admin/config/maintenance.php:201
1027
+ msgid "All the records were successfully deleted."
1028
+ msgstr "Alle Aufzeichnungen wurden erfolgreich gelöscht."
1029
+
1030
+ #: ../../admin/config/maintenance.php:226
1031
+ msgid "MaxMind IP to Country"
1032
+ msgstr ""
1033
+
1034
+ #: ../../admin/config/maintenance.php:232
1035
+ msgid ""
1036
+ "Do you want to download and install the geolocation database from MaxMind's "
1037
+ "server?"
1038
+ msgstr ""
1039
+
1040
+ #: ../../admin/config/maintenance.php:232
1041
+ msgid "Install GeoLite DB"
1042
  msgstr ""
 
 
 
1043
 
1044
+ #: ../../admin/config/maintenance.php:235
1045
+ msgid "Do you want to uninstall the geolocation database?"
1046
+ msgstr ""
1047
+
1048
+ #: ../../admin/config/maintenance.php:235
1049
+ msgid "Uninstall GeoLite DB"
1050
+ msgstr ""
1051
+
1052
+ #: ../../admin/config/maintenance.php:239
1053
  msgid ""
1054
+ "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1055
+ "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
1056
+ "released under the Creative Commons BY-SA 3.0 license, and cannot be "
1057
+ "directly bundled with the plugin because of license incompatibility issues. "
1058
+ "We are mandated to have the user take an affirmative action in order to "
1059
+ "enable this functionality."
1060
  msgstr ""
1061
 
1062
+ #: ../../admin/config/maintenance.php:244
1063
  msgid "Database Information"
1064
  msgstr "Datenbankinformation"
1065
 
1066
  # depends on context:
1067
  # Engine = Maschine, Motor, Triebwerk or Antrieb
1068
  # Search engine = Suchmaschine
1069
+ #: ../../admin/config/maintenance.php:247
1070
  #, fuzzy
1071
  msgid "Engine"
1072
  msgstr "Suchmaschinen"
1073
 
1074
+ #: ../../admin/config/maintenance.php:251
1075
  msgid "switch to InnoDB"
1076
  msgstr "zu InnoDB wechseln"
1077
 
1078
+ #: ../../admin/config/maintenance.php:262
1079
  msgid "records"
1080
  msgstr "Datensätze"
1081
 
1082
+ #: ../../admin/config/maintenance.php:267
1083
  msgid "Data Maintenance"
1084
  msgstr "Datenwartung"
1085
 
1086
+ #: ../../admin/config/maintenance.php:270
1087
  #, fuzzy
1088
  msgid "Delete pageviews where"
1089
  msgstr "Lösche Seitenaufrufe, wo"
1090
 
1091
+ #: ../../admin/config/maintenance.php:284 ../../admin/view/index.php:16
1092
  msgid "equals"
1093
  msgstr "entspricht"
1094
 
1095
+ #: ../../admin/config/maintenance.php:285 ../../admin/view/index.php:17
1096
  msgid "is not equal to"
1097
  msgstr "ist ungleich zu"
1098
 
1099
+ #: ../../admin/config/maintenance.php:286 ../../admin/view/index.php:18
1100
  msgid "contains"
1101
  msgstr "enth&auml;lt"
1102
 
1103
+ #: ../../admin/config/maintenance.php:287 ../../admin/view/index.php:19
1104
+ msgid "is included in"
1105
+ msgstr ""
1106
+
1107
+ #: ../../admin/config/maintenance.php:288 ../../admin/view/index.php:20
1108
  msgid "does not contain"
1109
  msgstr "enth&auml;lt nicht"
1110
 
1111
+ #: ../../admin/config/maintenance.php:289 ../../admin/view/index.php:21
1112
  msgid "starts with"
1113
  msgstr "beginnt mit"
1114
 
1115
+ #: ../../admin/config/maintenance.php:290 ../../admin/view/index.php:22
1116
  msgid "ends with"
1117
  msgstr "endet mit"
1118
 
1119
+ #: ../../admin/config/maintenance.php:291 ../../admin/view/index.php:23
1120
  msgid "sounds like"
1121
  msgstr "&auml;hnelt"
1122
 
1123
+ #: ../../admin/config/maintenance.php:292 ../../admin/view/index.php:24
1124
  msgid "is greater than"
1125
  msgstr "ist gr&ouml;sser als"
1126
 
1127
+ #: ../../admin/config/maintenance.php:293 ../../admin/view/index.php:25
1128
  msgid "is less than"
1129
  msgstr "ist kleiner als"
1130
 
1131
+ #: ../../admin/config/maintenance.php:294 ../../admin/view/index.php:27
1132
  msgid "matches"
1133
  msgstr "entspricht"
1134
 
1135
+ #: ../../admin/config/maintenance.php:295 ../../admin/view/index.php:28
1136
  msgid "does not match"
1137
  msgstr "entspricht nicht"
1138
 
1139
+ #: ../../admin/config/maintenance.php:296 ../../admin/view/index.php:29
1140
  msgid "is empty"
1141
  msgstr "ist leer"
1142
 
1143
+ #: ../../admin/config/maintenance.php:297 ../../admin/view/index.php:30
1144
  msgid "is not empty"
1145
  msgstr "ist nicht leer"
1146
 
1147
+ #: ../../admin/config/maintenance.php:300 ../../admin/view/index.php:42
1148
+ #: ../../admin/view/index.php:105
1149
  msgid "Apply"
1150
  msgstr "Anwenden"
1151
 
1152
+ #: ../../admin/config/maintenance.php:301
1153
  #, fuzzy
1154
  msgid ""
1155
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1157
  "Sind Sie wirklich sicher, dass Sie diese Datensätze UNWIDERRUFLICH aus Ihrer "
1158
  "Datenbank löschen möchten?"
1159
 
1160
+ #: ../../admin/config/maintenance.php:308
 
 
 
 
1161
  #, fuzzy
1162
  msgid ""
1163
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
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:308
1170
  #, fuzzy
1171
  msgid "Delete All Records"
1172
  msgstr "Alle Seitenaufrufe löschen"
1173
 
1174
+ #: ../../admin/config/maintenance.php:311
1175
  msgid ""
1176
  "Erase all the information collected so far by Slimstat, including the "
1177
  "archive. This operation <strong>does not</strong> reset your settings."
1178
  msgstr ""
1179
 
1180
+ #: ../../admin/config/maintenance.php:317
 
 
 
 
1181
  #, fuzzy
1182
  msgid "Are you sure you want to restore all the archived pageviews?"
1183
  msgstr ""
1184
  "Sie wollen die gesamte Infomationen über die Besuche und Aufrufe auf Ihrer "
1185
  "Webseite löschen. Sind Sie sicher?"
1186
 
1187
+ #: ../../admin/config/maintenance.php:317
1188
+ #, fuzzy
1189
+ msgid "Restore Archive"
1190
+ msgstr "Lösche Seitenaufrufe, wo"
1191
 
1192
+ #: ../../admin/config/maintenance.php:320
1193
  msgid ""
1194
  "Move all the archived pageviews back to the main Slimstat table. Please note "
1195
  "that, unless you disabled the daily purge, this data will be archived again "
1196
  "at the next scheduled clean-up."
1197
  msgstr ""
1198
 
1199
+ #: ../../admin/config/maintenance.php:326
 
 
 
 
1200
  #, fuzzy
1201
  msgid ""
1202
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1205
  "Sind Sie wirklich sicher, dass Sie diese Datensätze UNWIDERRUFLICH aus Ihrer "
1206
  "Datenbank löschen möchten?"
1207
 
1208
+ #: ../../admin/config/maintenance.php:326
1209
  #, fuzzy
1210
  msgid "Delete Archive"
1211
  msgstr "Lösche Seitenaufrufe, wo"
1212
 
1213
+ #: ../../admin/config/maintenance.php:329
1214
  msgid "Erase all the archived records. This operation cannot be undone."
1215
  msgstr ""
1216
 
1217
+ #: ../../admin/config/maintenance.php:335
 
 
 
 
1218
  msgid "Improve Performance"
1219
  msgstr "Leistung erhöhen"
1220
 
1221
+ #: ../../admin/config/maintenance.php:339
1222
  #, fuzzy
1223
  msgid ""
1224
  "Please note that you will need about 30% more DB space to store the extra "
1228
  "verbessern. Die Datenbank benötigt dafür ca. 30% mehr Speicherplatz, damit "
1229
  "die notwendigen zusätzlichne Informationen gespeichert werden können."
1230
 
1231
+ #: ../../admin/config/maintenance.php:343
1232
  msgid "Save DB Space"
1233
  msgstr "Datenbank-Speicherplatz sparen"
1234
 
1235
+ #: ../../admin/config/maintenance.php:346
1236
  msgid ""
1237
  "Please note that by removing table indexes, Slimstat's performance will be "
1238
  "affected."
1239
  msgstr ""
1240
 
1241
+ #: ../../admin/config/maintenance.php:353
1242
+ msgid ""
1243
+ "Hold on tight, we are about to import all your old data. Are you sure you "
1244
+ "want to proceed?"
1245
+ msgstr ""
1246
+
1247
+ #: ../../admin/config/maintenance.php:353
1248
+ msgid "Import old data"
1249
+ msgstr ""
1250
+
1251
+ #: ../../admin/config/maintenance.php:356
1252
+ msgid ""
1253
+ "Import all the records from the old table structure. No data will be deleted "
1254
+ "from your database."
1255
+ msgstr ""
1256
+
1257
+ #: ../../admin/config/maintenance.php:360
1258
  msgid "Import and Export"
1259
  msgstr ""
1260
 
1261
+ #: ../../admin/config/maintenance.php:364
1262
  msgid ""
1263
  "Here below you can find the current configuration string for Slimstat. You "
1264
+ "can update your settings by pasting a new string inside the text area and "
1265
+ "clicking the Import button."
1266
  msgstr ""
1267
 
1268
+ #: ../../admin/config/maintenance.php:369
1269
  msgid "Import"
1270
  msgstr "Import"
1271
 
1272
+ #: ../../admin/config/maintenance.php:370
1273
  msgid "Are you sure you want to OVERWRITE your current settings?"
1274
  msgstr "Derzeitige Einstellungen wirklich zurücksetzen?"
1275
 
1276
+ #: ../../admin/config/maintenance.php:375
1277
+ msgid "Debugging"
1278
+ msgstr ""
1279
+
1280
+ #: ../../admin/config/maintenance.php:378
1281
+ msgid "Tracker Error Code"
1282
+ msgstr ""
1283
+
1284
+ #: ../../admin/config/maintenance.php:380
1285
+ #, fuzzy
1286
+ msgid "recorded on"
1287
+ msgstr "Datensätze"
1288
+
1289
+ # Austria
1290
+ #: ../../admin/config/maintenance.php:380
1291
+ #, fuzzy
1292
+ msgid "at"
1293
+ msgstr "&Ouml;sterreich"
1294
+
1295
+ #: ../../admin/config/maintenance.php:380
1296
+ msgid "No Errors so far"
1297
+ msgstr ""
1298
+
1299
+ #: ../../admin/config/maintenance.php:381
1300
+ msgid ""
1301
+ "The information here above is useful to troubleshoot issues with the "
1302
+ "tracker. Please include this code when sending a support request."
1303
+ msgstr ""
1304
+
1305
+ #: ../../admin/config/maintenance.php:388
1306
+ msgid "Reset Reports"
1307
+ msgstr "Berichte zurücksetzen"
1308
+
1309
+ #: ../../admin/config/maintenance.php:391
1310
+ #, fuzzy
1311
+ msgid ""
1312
+ "Are you sure you want to restore the default arrangement of your reports?"
1313
+ msgstr "Datenbanktabellen wirklich zurücksetzen?"
1314
+
1315
+ #: ../../admin/config/maintenance.php:391
1316
+ msgid "No Panic Button"
1317
+ msgstr ""
1318
+
1319
+ #: ../../admin/config/maintenance.php:392
1320
+ msgid ""
1321
+ "Reset the default arrangement of your reports. Helpful when, for some "
1322
+ "reason, reports disappear from your panels or something doesn't look right "
1323
+ "in your views."
1324
+ msgstr ""
1325
+
1326
  #: ../../admin/lang/dynamic_strings.php:3
1327
  msgid "xx"
1328
  msgstr "xx"
1508
  msgstr "Windows Phone"
1509
 
1510
  #: ../../admin/lang/dynamic_strings.php:49
1511
+ #, fuzzy
1512
+ msgid "winphone7.5"
1513
+ msgstr "Windows Phone"
1514
+
1515
+ #: ../../admin/lang/dynamic_strings.php:50
1516
+ #, fuzzy
1517
+ msgid "winphone8"
1518
+ msgstr "Windows Phone"
1519
+
1520
+ #: ../../admin/lang/dynamic_strings.php:51
1521
+ #, fuzzy
1522
+ msgid "winphone8.1"
1523
+ msgstr "Windows Phone"
1524
+
1525
+ #: ../../admin/lang/dynamic_strings.php:52
1526
  msgid "wince"
1527
  msgstr "Windows CE"
1528
 
1529
+ #: ../../admin/lang/dynamic_strings.php:53
1530
  msgid "symbianos"
1531
  msgstr "Symbian OS"
1532
 
1533
+ #: ../../admin/lang/dynamic_strings.php:54
1534
  msgid "blackberry os"
1535
  msgstr "Blackberry OS"
1536
 
1537
+ #: ../../admin/lang/dynamic_strings.php:55
1538
  msgid "webos"
1539
  msgstr "WebOS"
1540
 
1541
+ #: ../../admin/lang/dynamic_strings.php:56
1542
  msgid "p-and"
1543
  msgstr "Android"
1544
 
1545
+ #: ../../admin/lang/dynamic_strings.php:57
1546
  msgid "p-bla"
1547
  msgstr "BlackBerry"
1548
 
1549
+ #: ../../admin/lang/dynamic_strings.php:58
1550
  msgid "p-chr"
1551
  msgstr "Chrome OS"
1552
 
1553
+ #: ../../admin/lang/dynamic_strings.php:59
1554
  msgid "p-fre"
1555
  msgstr "Linux FreeBSD"
1556
 
1557
+ #: ../../admin/lang/dynamic_strings.php:60
1558
  msgid "p-ios"
1559
  msgstr "Apple iOS"
1560
 
1561
+ #: ../../admin/lang/dynamic_strings.php:61
1562
  msgid "p-jav"
1563
  msgstr "Java-based OS"
1564
 
1565
+ #: ../../admin/lang/dynamic_strings.php:62
1566
  msgid "p-lin"
1567
  msgstr "Linux"
1568
 
1569
+ #: ../../admin/lang/dynamic_strings.php:63
1570
  msgid "p-mac"
1571
  msgstr "Apple"
1572
 
1573
+ #: ../../admin/lang/dynamic_strings.php:64
1574
  msgid "p-sym"
1575
  msgstr "Symbian OS"
1576
 
1577
+ #: ../../admin/lang/dynamic_strings.php:65
1578
  msgid "p-unk"
1579
  msgstr "Unbekannt"
1580
 
1581
+ #: ../../admin/lang/dynamic_strings.php:66
1582
  msgid "p-win"
1583
  msgstr "Microsoft"
1584
 
1585
+ #: ../../admin/lang/dynamic_strings.php:67
1586
  msgid "powertv"
1587
  msgstr "PowerTV"
1588
 
1589
+ #: ../../admin/lang/dynamic_strings.php:68
1590
  msgid "acrobat"
1591
  msgstr "Acrobat Reader"
1592
 
1593
+ #: ../../admin/lang/dynamic_strings.php:69
1594
  msgid "director"
1595
  msgstr "Macromedia Director"
1596
 
1597
+ #: ../../admin/lang/dynamic_strings.php:70
1598
  msgid "flash"
1599
  msgstr "Adobe Flash Player"
1600
 
1601
+ #: ../../admin/lang/dynamic_strings.php:71
1602
  msgid "mediaplayer"
1603
  msgstr "Microsoft Media Player"
1604
 
1605
+ #: ../../admin/lang/dynamic_strings.php:72
1606
  msgid "quicktime"
1607
  msgstr "QuickTime"
1608
 
1609
+ #: ../../admin/lang/dynamic_strings.php:73
1610
  msgid "real"
1611
  msgstr "Real Player"
1612
 
1613
+ #: ../../admin/lang/dynamic_strings.php:74
1614
  msgid "silverlight"
1615
  msgstr "Microsoft Silverlight"
1616
 
1617
  # Afrikaans
1618
+ #: ../../admin/lang/dynamic_strings.php:75
1619
  msgid "l-af"
1620
  msgstr "Afrikaans"
1621
 
1622
  # Afrikaans
1623
+ #: ../../admin/lang/dynamic_strings.php:76
1624
  #, fuzzy
1625
  msgid "l-af-za"
1626
  msgstr "Afrikaans"
1627
 
1628
  # Arabic
1629
+ #: ../../admin/lang/dynamic_strings.php:77
1630
  msgid "l-ar"
1631
  msgstr "Arabic"
1632
 
1633
  # Arabic (United Arab Emirates)
1634
+ #: ../../admin/lang/dynamic_strings.php:78
1635
  msgid "l-ar-ae"
1636
  msgstr "Arabic (United Arab Emirates)"
1637
 
1638
  # Arabic (Bahrain)
1639
+ #: ../../admin/lang/dynamic_strings.php:79
1640
  msgid "l-ar-bh"
1641
  msgstr "Arabic (Bahrain)"
1642
 
1643
  # Arabic (Algeria)
1644
+ #: ../../admin/lang/dynamic_strings.php:80
1645
  msgid "l-ar-dz"
1646
  msgstr "Arabic (Algeria)"
1647
 
1648
  # Arabic (Egypt)
1649
+ #: ../../admin/lang/dynamic_strings.php:81
1650
  msgid "l-ar-eg"
1651
  msgstr "Arabic (Egypt)"
1652
 
1653
  # Arabic (Iraq)
1654
+ #: ../../admin/lang/dynamic_strings.php:82
1655
  msgid "l-ar-iq"
1656
  msgstr "Arabic (Iraq)"
1657
 
1658
  # Arabic (Jordan)
1659
+ #: ../../admin/lang/dynamic_strings.php:83
1660
  msgid "l-ar-jo"
1661
  msgstr "Arabic (Jordan)"
1662
 
1663
  # Arabic (Kuwait)
1664
+ #: ../../admin/lang/dynamic_strings.php:84
1665
  msgid "l-ar-kw"
1666
  msgstr "Arabic (Kuwait)"
1667
 
1668
  # Arabic (Lebanon)
1669
+ #: ../../admin/lang/dynamic_strings.php:85
1670
  msgid "l-ar-lb"
1671
  msgstr "Arabic (Lebanon)"
1672
 
1673
  # Arabic (Libya)
1674
+ #: ../../admin/lang/dynamic_strings.php:86
1675
  msgid "l-ar-ly"
1676
  msgstr "Arabic (Libya)"
1677
 
1678
  # Arabic (Morocco)
1679
+ #: ../../admin/lang/dynamic_strings.php:87
1680
  msgid "l-ar-ma"
1681
  msgstr "Arabic (Morocco)"
1682
 
1683
  # Arabic (Oman)
1684
+ #: ../../admin/lang/dynamic_strings.php:88
1685
  msgid "l-ar-om"
1686
  msgstr "Arabic (Oman)"
1687
 
1688
  # Arabic (Qatar)
1689
+ #: ../../admin/lang/dynamic_strings.php:89
1690
  msgid "l-ar-qa"
1691
  msgstr "Arabic (Qatar)"
1692
 
1693
  # Arabic (Saudi Arabia)
1694
+ #: ../../admin/lang/dynamic_strings.php:90
1695
  msgid "l-ar-sa"
1696
  msgstr "Arabic (Saudi Arabia)"
1697
 
1698
  # Arabic (Syria)
1699
+ #: ../../admin/lang/dynamic_strings.php:91
1700
  msgid "l-ar-sy"
1701
  msgstr "Arabic (Syria)"
1702
 
1703
  # Arabic (Tunisia)
1704
+ #: ../../admin/lang/dynamic_strings.php:92
1705
  msgid "l-ar-tn"
1706
  msgstr "Arabic (Tunisia)"
1707
 
1708
  # Arabic (Yemen)
1709
+ #: ../../admin/lang/dynamic_strings.php:93
1710
  msgid "l-ar-ye"
1711
  msgstr "Arabic (Yemen)"
1712
 
1713
  # Azerbaijani
1714
+ #: ../../admin/lang/dynamic_strings.php:94
1715
  msgid "l-az"
1716
  msgstr "Azerbaijani"
1717
 
1718
  # Azerbaijani
1719
+ #: ../../admin/lang/dynamic_strings.php:95
1720
  #, fuzzy
1721
  msgid "l-az-az"
1722
  msgstr "Azerbaijani"
1723
 
1724
  # Belarusian
1725
+ #: ../../admin/lang/dynamic_strings.php:96
1726
  msgid "l-be"
1727
  msgstr "Belarusian"
1728
 
1729
  # Belarusian
1730
+ #: ../../admin/lang/dynamic_strings.php:97
1731
  #, fuzzy
1732
  msgid "l-be-by"
1733
  msgstr "Belarusian"
1734
 
1735
  # Bulgarian
1736
+ #: ../../admin/lang/dynamic_strings.php:98
1737
  msgid "l-bg"
1738
  msgstr "Bulgarian"
1739
 
1740
  # Bulgarian
1741
+ #: ../../admin/lang/dynamic_strings.php:99
1742
  #, fuzzy
1743
  msgid "l-bg-bg"
1744
  msgstr "Bulgarian"
1745
 
1746
  # Bosnian
1747
+ #: ../../admin/lang/dynamic_strings.php:100
1748
  #, fuzzy
1749
  msgid "l-bs-ba"
1750
  msgstr "Bosnian"
1751
 
1752
  # Catalan; Valencian
1753
+ #: ../../admin/lang/dynamic_strings.php:101
1754
  msgid "l-ca"
1755
  msgstr "Catalan; Valencian"
1756
 
1757
  # Catalan; Valencian
1758
+ #: ../../admin/lang/dynamic_strings.php:102
1759
  #, fuzzy
1760
  msgid "l-ca-es"
1761
  msgstr "Catalan; Valencian"
1762
 
1763
  # Czech
1764
+ #: ../../admin/lang/dynamic_strings.php:103
1765
  msgid "l-cs"
1766
  msgstr "Czech"
1767
 
1768
  # Czech
1769
+ #: ../../admin/lang/dynamic_strings.php:104
1770
  #, fuzzy
1771
  msgid "l-cs-cz"
1772
  msgstr "Czech"
1773
 
1774
  # Welsh
1775
+ #: ../../admin/lang/dynamic_strings.php:105
1776
  msgid "l-cy"
1777
  msgstr "Welsh"
1778
 
1779
  # Welsh
1780
+ #: ../../admin/lang/dynamic_strings.php:106
1781
  #, fuzzy
1782
  msgid "l-cy-gb"
1783
  msgstr "Welsh"
1784
 
1785
  # Danish
1786
+ #: ../../admin/lang/dynamic_strings.php:107
1787
  msgid "l-da"
1788
  msgstr "Danish"
1789
 
1790
  # Danish
1791
+ #: ../../admin/lang/dynamic_strings.php:108
1792
  #, fuzzy
1793
  msgid "l-da-dk"
1794
  msgstr "Danish"
1795
 
1796
  # German
1797
+ #: ../../admin/lang/dynamic_strings.php:109
1798
  msgid "l-de"
1799
  msgstr "German"
1800
 
1801
  # German (Austria)
1802
+ #: ../../admin/lang/dynamic_strings.php:110
1803
  msgid "l-de-at"
1804
  msgstr "German (Austria)"
1805
 
1806
  # German (Switzerland)
1807
+ #: ../../admin/lang/dynamic_strings.php:111
1808
  msgid "l-de-ch"
1809
  msgstr "German (Switzerland)"
1810
 
1811
  # German (Germany)
1812
+ #: ../../admin/lang/dynamic_strings.php:112
1813
  msgid "l-de-de"
1814
  msgstr "German (Germany)"
1815
 
1816
  # German (Liechtenstein)
1817
+ #: ../../admin/lang/dynamic_strings.php:113
1818
  msgid "l-de-li"
1819
  msgstr "German (Liechtenstein)"
1820
 
1821
  # German (Luxembourg)
1822
+ #: ../../admin/lang/dynamic_strings.php:114
1823
  msgid "l-de-lu"
1824
  msgstr "German (Luxembourg)"
1825
 
1826
  # Dhivehi; Divehi; Maldivian
1827
+ #: ../../admin/lang/dynamic_strings.php:115
1828
  msgid "l-dv"
1829
  msgstr "Dhivehi; Divehi; Maldivian"
1830
 
1831
  # Dhivehi; Divehi; Maldivian
1832
+ #: ../../admin/lang/dynamic_strings.php:116
1833
  #, fuzzy
1834
  msgid "l-dv-mv"
1835
  msgstr "Dhivehi; Divehi; Maldivian"
1836
 
1837
  # Modern Greek (1453-)
1838
+ #: ../../admin/lang/dynamic_strings.php:117
1839
  msgid "l-el"
1840
  msgstr "Modern Greek (1453-)"
1841
 
1842
  # Greek (Greece)
1843
+ #: ../../admin/lang/dynamic_strings.php:118
1844
  msgid "l-el-gr"
1845
  msgstr "Greek (Greece)"
1846
 
1847
  # English
1848
+ #: ../../admin/lang/dynamic_strings.php:119
1849
  msgid "l-en"
1850
  msgstr "English"
1851
 
1852
  # English (Australia)
1853
+ #: ../../admin/lang/dynamic_strings.php:120
1854
  msgid "l-en-au"
1855
  msgstr "English (Australia)"
1856
 
1857
  # English (Belize)
1858
+ #: ../../admin/lang/dynamic_strings.php:121
1859
  msgid "l-en-bz"
1860
  msgstr "English (Belize)"
1861
 
1862
  # English (Canada)
1863
+ #: ../../admin/lang/dynamic_strings.php:122
1864
  msgid "l-en-ca"
1865
  msgstr "English (Canada)"
1866
 
1867
  # English (Canada)
1868
+ #: ../../admin/lang/dynamic_strings.php:123
1869
  #, fuzzy
1870
  msgid "l-en-cb"
1871
  msgstr "English (Canada)"
1872
 
1873
  # English (United Kingdom)
1874
+ #: ../../admin/lang/dynamic_strings.php:124
1875
  msgid "l-en-gb"
1876
  msgstr "English (United Kingdom)"
1877
 
1878
  # English (Ireland)
1879
+ #: ../../admin/lang/dynamic_strings.php:125
1880
  msgid "l-en-ie"
1881
  msgstr "English (Ireland)"
1882
 
1883
  # English (Jamaica)
1884
+ #: ../../admin/lang/dynamic_strings.php:126
1885
  msgid "l-en-jm"
1886
  msgstr "English (Jamaica)"
1887
 
1888
  # English (New Zealand)
1889
+ #: ../../admin/lang/dynamic_strings.php:127
1890
  msgid "l-en-nz"
1891
  msgstr "English (New Zealand)"
1892
 
1893
  # English
1894
+ #: ../../admin/lang/dynamic_strings.php:128
1895
  #, fuzzy
1896
  msgid "l-en-ph"
1897
  msgstr "English"
1898
 
1899
  # English (Trinidad)
1900
+ #: ../../admin/lang/dynamic_strings.php:129
1901
  msgid "l-en-tt"
1902
  msgstr "English (Trinidad)"
1903
 
1904
  # English (United States)
1905
+ #: ../../admin/lang/dynamic_strings.php:130
1906
  msgid "l-en-us"
1907
  msgstr "English (United States)"
1908
 
1909
  # English (South Africa)
1910
+ #: ../../admin/lang/dynamic_strings.php:131
1911
  msgid "l-en-za"
1912
  msgstr "English (South Africa)"
1913
 
1914
  # English (South Africa)
1915
+ #: ../../admin/lang/dynamic_strings.php:132
1916
  #, fuzzy
1917
  msgid "l-en-zw"
1918
  msgstr "English (South Africa)"
1919
 
1920
  # Esperanto
1921
+ #: ../../admin/lang/dynamic_strings.php:133
1922
  msgid "l-eo"
1923
  msgstr "Esperanto"
1924
 
1925
  # Spanish; Castilian
1926
+ #: ../../admin/lang/dynamic_strings.php:134
1927
  msgid "l-es"
1928
  msgstr "Spanish; Castilian"
1929
 
1930
  # Spanish (Argentina)
1931
+ #: ../../admin/lang/dynamic_strings.php:135
1932
  msgid "l-es-ar"
1933
  msgstr "Spanish (Argentina)"
1934
 
1935
  # Spanish (Bolivia)
1936
+ #: ../../admin/lang/dynamic_strings.php:136
1937
  msgid "l-es-bo"
1938
  msgstr "Spanish (Bolivia)"
1939
 
1940
  # Spanish (Chile)
1941
+ #: ../../admin/lang/dynamic_strings.php:137
1942
  msgid "l-es-cl"
1943
  msgstr "Spanish (Chile)"
1944
 
1945
  # Spanish (Colombia)
1946
+ #: ../../admin/lang/dynamic_strings.php:138
1947
  msgid "l-es-co"
1948
  msgstr "Spanish (Colombia)"
1949
 
1950
  # Spanish (Costa Rica)
1951
+ #: ../../admin/lang/dynamic_strings.php:139
1952
  msgid "l-es-cr"
1953
  msgstr "Spanish (Costa Rica)"
1954
 
1955
  # Spanish (Dominican Republic)
1956
+ #: ../../admin/lang/dynamic_strings.php:140
1957
  msgid "l-es-do"
1958
  msgstr "Spanish (Dominican Republic)"
1959
 
1960
  # Spanish (Ecuador)
1961
+ #: ../../admin/lang/dynamic_strings.php:141
1962
  msgid "l-es-ec"
1963
  msgstr "Spanish (Ecuador)"
1964
 
1965
  # Spanish (Spain)
1966
+ #: ../../admin/lang/dynamic_strings.php:142
1967
  msgid "l-es-es"
1968
  msgstr "Spanish (Spain)"
1969
 
1970
  # Spanish (Guatemala)
1971
+ #: ../../admin/lang/dynamic_strings.php:143
1972
  msgid "l-es-gt"
1973
  msgstr "Spanish (Guatemala)"
1974
 
1975
  # Spanish (Honduras)
1976
+ #: ../../admin/lang/dynamic_strings.php:144
1977
  msgid "l-es-hn"
1978
  msgstr "Spanish (Honduras)"
1979
 
1980
  # Spanish (Mexico)
1981
+ #: ../../admin/lang/dynamic_strings.php:145
1982
  msgid "l-es-mx"
1983
  msgstr "Spanish (Mexico)"
1984
 
1985
  # Spanish (Nicaragua)
1986
+ #: ../../admin/lang/dynamic_strings.php:146
1987
  msgid "l-es-ni"
1988
  msgstr "Spanish (Nicaragua)"
1989
 
1990
  # Spanish (Panama)
1991
+ #: ../../admin/lang/dynamic_strings.php:147
1992
  msgid "l-es-pa"
1993
  msgstr "Spanish (Panama)"
1994
 
1995
  # Spanish (Peru)
1996
+ #: ../../admin/lang/dynamic_strings.php:148
1997
  msgid "l-es-pe"
1998
  msgstr "Spanish (Peru)"
1999
 
2000
  # Spanish (Puerto Rico)
2001
+ #: ../../admin/lang/dynamic_strings.php:149
2002
  msgid "l-es-pr"
2003
  msgstr "Spanish (Puerto Rico)"
2004
 
2005
  # Spanish (Paraguay)
2006
+ #: ../../admin/lang/dynamic_strings.php:150
2007
  msgid "l-es-py"
2008
  msgstr "Spanish (Paraguay)"
2009
 
2010
  # Spanish (El Salvador)
2011
+ #: ../../admin/lang/dynamic_strings.php:151
2012
  msgid "l-es-sv"
2013
  msgstr "Spanish (El Salvador)"
2014
 
2015
  # Spanish (Uruguay)
2016
+ #: ../../admin/lang/dynamic_strings.php:152
2017
  msgid "l-es-uy"
2018
  msgstr "Spanish (Uruguay)"
2019
 
2020
  # Spanish (Venezuela)
2021
+ #: ../../admin/lang/dynamic_strings.php:153
2022
  msgid "l-es-ve"
2023
  msgstr "Spanish (Venezuela)"
2024
 
2025
  # Estonian
2026
+ #: ../../admin/lang/dynamic_strings.php:154
2027
  msgid "l-et"
2028
  msgstr "Estonian"
2029
 
2030
  # Estonian
2031
+ #: ../../admin/lang/dynamic_strings.php:155
2032
  #, fuzzy
2033
  msgid "l-et-ee"
2034
  msgstr "Estonian"
2035
 
2036
  # Basque
2037
+ #: ../../admin/lang/dynamic_strings.php:156
2038
  msgid "l-eu"
2039
  msgstr "Basque"
2040
 
2041
  # Basque
2042
+ #: ../../admin/lang/dynamic_strings.php:157
2043
  #, fuzzy
2044
  msgid "l-eu-es"
2045
  msgstr "Basque"
2046
 
2047
  # Persian
2048
+ #: ../../admin/lang/dynamic_strings.php:158
2049
  msgid "l-fa"
2050
  msgstr "Persian"
2051
 
2052
  # Persian
2053
+ #: ../../admin/lang/dynamic_strings.php:159
2054
  #, fuzzy
2055
  msgid "l-fa-ir"
2056
  msgstr "Persian"
2057
 
2058
  # Finnish
2059
+ #: ../../admin/lang/dynamic_strings.php:160
2060
  msgid "l-fi"
2061
  msgstr "Finnish"
2062
 
2063
  # Finnish
2064
+ #: ../../admin/lang/dynamic_strings.php:161
2065
  #, fuzzy
2066
  msgid "l-fi-fi"
2067
  msgstr "Finnish"
2068
 
2069
  # Faroese
2070
+ #: ../../admin/lang/dynamic_strings.php:162
2071
  msgid "l-fo"
2072
  msgstr "Faroese"
2073
 
2074
  # Faroese
2075
+ #: ../../admin/lang/dynamic_strings.php:163
2076
  #, fuzzy
2077
  msgid "l-fo-fo"
2078
  msgstr "Faroese"
2079
 
2080
  # French
2081
+ #: ../../admin/lang/dynamic_strings.php:164
2082
  msgid "l-fr"
2083
  msgstr "French"
2084
 
2085
  # French (Belgium)
2086
+ #: ../../admin/lang/dynamic_strings.php:165
2087
  msgid "l-fr-be"
2088
  msgstr "French (Belgium)"
2089
 
2090
  # French (Canada)
2091
+ #: ../../admin/lang/dynamic_strings.php:166
2092
  msgid "l-fr-ca"
2093
  msgstr "French (Canada)"
2094
 
2095
  # French (Switzerland)
2096
+ #: ../../admin/lang/dynamic_strings.php:167
2097
  msgid "l-fr-ch"
2098
  msgstr "French (Switzerland)"
2099
 
2100
  # French (France)
2101
+ #: ../../admin/lang/dynamic_strings.php:168
2102
  msgid "l-fr-fr"
2103
  msgstr "French (France)"
2104
 
2105
  # French (Luxembourg)
2106
+ #: ../../admin/lang/dynamic_strings.php:169
2107
  msgid "l-fr-lu"
2108
  msgstr "French (Luxembourg)"
2109
 
2110
  # French (Switzerland)
2111
+ #: ../../admin/lang/dynamic_strings.php:170
2112
  #, fuzzy
2113
  msgid "l-fr-mc"
2114
  msgstr "French (Switzerland)"
2115
 
2116
  # Galician
2117
+ #: ../../admin/lang/dynamic_strings.php:171
2118
  msgid "l-gl"
2119
  msgstr "Galician"
2120
 
2121
  # Spanish; Castilian
2122
+ #: ../../admin/lang/dynamic_strings.php:172
2123
  #, fuzzy
2124
  msgid "l-gl-es"
2125
  msgstr "Spanish; Castilian"
2126
 
2127
  # Gujarati
2128
+ #: ../../admin/lang/dynamic_strings.php:173
2129
  msgid "l-gu"
2130
  msgstr "Gujarati"
2131
 
2132
  # Gujarati
2133
+ #: ../../admin/lang/dynamic_strings.php:174
2134
  #, fuzzy
2135
  msgid "l-gu-in"
2136
  msgstr "Gujarati"
2137
 
2138
  # Hebrew
2139
+ #: ../../admin/lang/dynamic_strings.php:175
2140
  msgid "l-he"
2141
  msgstr "Hebrew"
2142
 
2143
  # Hebrew (Israel)
2144
+ #: ../../admin/lang/dynamic_strings.php:176
2145
  msgid "l-he-il"
2146
  msgstr "Hebrew (Israel)"
2147
 
2148
  # Hindi
2149
+ #: ../../admin/lang/dynamic_strings.php:177
2150
  msgid "l-hi"
2151
  msgstr "Hindi"
2152
 
2153
  # Hindi
2154
+ #: ../../admin/lang/dynamic_strings.php:178
2155
  #, fuzzy
2156
  msgid "l-hi-in"
2157
  msgstr "Hindi"
2158
 
2159
  # Croatian
2160
+ #: ../../admin/lang/dynamic_strings.php:179
2161
  msgid "l-hr"
2162
  msgstr "Croatian"
2163
 
2164
  # Croatian
2165
+ #: ../../admin/lang/dynamic_strings.php:180
2166
  #, fuzzy
2167
  msgid "l-hr-ba"
2168
  msgstr "Croatian"
2169
 
2170
  # Croatian
2171
+ #: ../../admin/lang/dynamic_strings.php:181
2172
  #, fuzzy
2173
  msgid "l-hr-hr"
2174
  msgstr "Croatian"
2175
 
2176
  # Hungarian
2177
+ #: ../../admin/lang/dynamic_strings.php:182
2178
  msgid "l-hu"
2179
  msgstr "Hungarian"
2180
 
2181
  # Hungarian (Hungary)
2182
+ #: ../../admin/lang/dynamic_strings.php:183
2183
  msgid "l-hu-hu"
2184
  msgstr "Hungarian (Hungary)"
2185
 
2186
  # Armenian
2187
+ #: ../../admin/lang/dynamic_strings.php:184
2188
  msgid "l-hy"
2189
  msgstr "Armenian"
2190
 
2191
  # Armenian
2192
+ #: ../../admin/lang/dynamic_strings.php:185
2193
  #, fuzzy
2194
  msgid "l-hy-am"
2195
  msgstr "Armenian"
2196
 
2197
  # Indonesian
2198
+ #: ../../admin/lang/dynamic_strings.php:186
2199
  msgid "l-id"
2200
  msgstr "Indonesian"
2201
 
2202
  # Indonesian
2203
+ #: ../../admin/lang/dynamic_strings.php:187
2204
  #, fuzzy
2205
  msgid "l-id-id"
2206
  msgstr "Indonesian"
2207
 
2208
  # Icelandic
2209
+ #: ../../admin/lang/dynamic_strings.php:188
2210
  msgid "l-is"
2211
  msgstr "Icelandic"
2212
 
2213
  # Icelandic
2214
+ #: ../../admin/lang/dynamic_strings.php:189
2215
  #, fuzzy
2216
  msgid "l-is-is"
2217
  msgstr "Icelandic"
2218
 
2219
  # Italian
2220
+ #: ../../admin/lang/dynamic_strings.php:190
2221
  msgid "l-it"
2222
  msgstr "Italian"
2223
 
2224
  # Italian (Switzerland)
2225
+ #: ../../admin/lang/dynamic_strings.php:191
2226
  msgid "l-it-ch"
2227
  msgstr "Italian (Switzerland)"
2228
 
2229
  # Italian (Italia)
2230
+ #: ../../admin/lang/dynamic_strings.php:192
2231
  msgid "l-it-it"
2232
  msgstr "Italian (Italia)"
2233
 
2234
  # Japanese
2235
+ #: ../../admin/lang/dynamic_strings.php:193
2236
  msgid "l-ja"
2237
  msgstr "Japanese"
2238
 
2239
  # Japanes
2240
+ #: ../../admin/lang/dynamic_strings.php:194
2241
  msgid "l-ja-jp"
2242
  msgstr "Japanese"
2243
 
2244
  # Georgian
2245
+ #: ../../admin/lang/dynamic_strings.php:195
2246
  msgid "l-ka"
2247
  msgstr "Georgian"
2248
 
2249
  # Georgian
2250
+ #: ../../admin/lang/dynamic_strings.php:196
2251
  #, fuzzy
2252
  msgid "l-ka-ge"
2253
  msgstr "Georgian"
2254
 
2255
  # Kazakh
2256
+ #: ../../admin/lang/dynamic_strings.php:197
2257
  msgid "l-kk"
2258
  msgstr "Kazakh"
2259
 
2260
  # Kazakh
2261
+ #: ../../admin/lang/dynamic_strings.php:198
2262
  #, fuzzy
2263
  msgid "l-kk-kz"
2264
  msgstr "Kazakh"
2265
 
2266
  # Kannada
2267
+ #: ../../admin/lang/dynamic_strings.php:199
2268
  msgid "l-kn"
2269
  msgstr "Kannada"
2270
 
2271
  # Kannada
2272
+ #: ../../admin/lang/dynamic_strings.php:200
2273
  #, fuzzy
2274
  msgid "l-kn-in"
2275
  msgstr "Kannada"
2276
 
2277
  # Korean
2278
+ #: ../../admin/lang/dynamic_strings.php:201
2279
  msgid "l-ko"
2280
  msgstr "Korean"
2281
 
2282
  # Korean (Republic of Korea)
2283
+ #: ../../admin/lang/dynamic_strings.php:202
2284
  msgid "l-ko-kr"
2285
  msgstr "Korean (Republic of Korea)"
2286
 
2287
  # Korean
2288
+ #: ../../admin/lang/dynamic_strings.php:203
2289
  #, fuzzy
2290
  msgid "l-kok"
2291
  msgstr "Korean"
2292
 
2293
  # Korean
2294
+ #: ../../admin/lang/dynamic_strings.php:204
2295
  #, fuzzy
2296
  msgid "l-kok-in"
2297
  msgstr "Korean"
2298
 
2299
  # Kirghiz; Kyrgyz
2300
+ #: ../../admin/lang/dynamic_strings.php:205
2301
  msgid "l-ky"
2302
  msgstr "Kirghiz; Kyrgyz"
2303
 
2304
  # Kirghiz; Kyrgyz
2305
+ #: ../../admin/lang/dynamic_strings.php:206
2306
  #, fuzzy
2307
  msgid "l-ky-kg"
2308
  msgstr "Kirghiz; Kyrgyz"
2309
 
2310
  # Lithuanian
2311
+ #: ../../admin/lang/dynamic_strings.php:207
2312
  msgid "l-lt"
2313
  msgstr "Lithuanian"
2314
 
2315
  # Lithuanian
2316
+ #: ../../admin/lang/dynamic_strings.php:208
2317
  #, fuzzy
2318
  msgid "l-lt-lt"
2319
  msgstr "Lithuanian"
2320
 
2321
  # Latvian
2322
+ #: ../../admin/lang/dynamic_strings.php:209
2323
  msgid "l-lv"
2324
  msgstr "Latvian"
2325
 
2326
  # Latvian
2327
+ #: ../../admin/lang/dynamic_strings.php:210
2328
  #, fuzzy
2329
  msgid "l-lv-lv"
2330
  msgstr "Latvian"
2331
 
2332
  # Maori
2333
+ #: ../../admin/lang/dynamic_strings.php:211
2334
  msgid "l-mi"
2335
  msgstr "Maori"
2336
 
2337
  # Maori
2338
+ #: ../../admin/lang/dynamic_strings.php:212
2339
  #, fuzzy
2340
  msgid "l-mi-nz"
2341
  msgstr "Maori"
2342
 
2343
  # Macedonian
2344
+ #: ../../admin/lang/dynamic_strings.php:213
2345
  msgid "l-mk"
2346
  msgstr "Macedonian"
2347
 
2348
  # Macedonian
2349
+ #: ../../admin/lang/dynamic_strings.php:214
2350
  #, fuzzy
2351
  msgid "l-mk-ml"
2352
  msgstr "Macedonian"
2353
 
2354
  # Mongolian
2355
+ #: ../../admin/lang/dynamic_strings.php:215
2356
  msgid "l-mn"
2357
  msgstr "Mongolian"
2358
 
2359
  # Mongolian
2360
+ #: ../../admin/lang/dynamic_strings.php:216
2361
  #, fuzzy
2362
  msgid "l-mn-mn"
2363
  msgstr "Mongolian"
2364
 
2365
  # Marathi
2366
+ #: ../../admin/lang/dynamic_strings.php:217
2367
  msgid "l-mr"
2368
  msgstr "Marathi"
2369
 
2370
  # Marathi
2371
+ #: ../../admin/lang/dynamic_strings.php:218
2372
  #, fuzzy
2373
  msgid "l-mr-in"
2374
  msgstr "Marathi"
2375
 
2376
  # Malay
2377
+ #: ../../admin/lang/dynamic_strings.php:219
2378
  msgid "l-ms"
2379
  msgstr "Malay"
2380
 
2381
  # Malay
2382
+ #: ../../admin/lang/dynamic_strings.php:220
2383
  #, fuzzy
2384
  msgid "l-ms-bn"
2385
  msgstr "Malay"
2386
 
2387
  # Malay
2388
+ #: ../../admin/lang/dynamic_strings.php:221
2389
  #, fuzzy
2390
  msgid "l-ms-my"
2391
  msgstr "Malay"
2392
 
2393
  # Maltese
2394
+ #: ../../admin/lang/dynamic_strings.php:222
2395
  msgid "l-mt"
2396
  msgstr "Maltese"
2397
 
2398
  # Maltese
2399
+ #: ../../admin/lang/dynamic_strings.php:223
2400
  #, fuzzy
2401
  msgid "l-mt-mt"
2402
  msgstr "Maltese"
2403
 
2404
  # Norwegian Bokmål
2405
+ #: ../../admin/lang/dynamic_strings.php:224
2406
  msgid "l-nb"
2407
  msgstr "Norwegian Bokmål"
2408
 
2409
  # Norwegian Bokmål
2410
+ #: ../../admin/lang/dynamic_strings.php:225
2411
  #, fuzzy
2412
  msgid "l-nb-no"
2413
  msgstr "Norwegian Bokmål"
2414
 
2415
  # Dutch; Flemish
2416
+ #: ../../admin/lang/dynamic_strings.php:226
2417
  msgid "l-nl"
2418
  msgstr "Dutch; Flemish"
2419
 
2420
  # Dutch (Belgium)
2421
+ #: ../../admin/lang/dynamic_strings.php:227
2422
  msgid "l-nl-be"
2423
  msgstr "Dutch (Belgium)"
2424
 
2425
  # Dutch (Netherlands)
2426
+ #: ../../admin/lang/dynamic_strings.php:228
2427
  msgid "l-nl-nl"
2428
  msgstr "Dutch (Netherlands)"
2429
 
2430
  # Norwegian Nynorsk
2431
+ #: ../../admin/lang/dynamic_strings.php:229
2432
  #, fuzzy
2433
  msgid "l-nn-no"
2434
  msgstr "Norwegian Nynorsk"
2435
 
2436
+ #: ../../admin/lang/dynamic_strings.php:230
2437
  msgid "l-ns"
2438
  msgstr ""
2439
 
2440
+ #: ../../admin/lang/dynamic_strings.php:231
2441
  msgid "l-ns-za"
2442
  msgstr ""
2443
 
2444
  # Panjabi; Punjabi
2445
+ #: ../../admin/lang/dynamic_strings.php:232
2446
  msgid "l-pa"
2447
  msgstr "Panjabi; Punjabi"
2448
 
2449
  # Panjabi; Punjabi
2450
+ #: ../../admin/lang/dynamic_strings.php:233
2451
  #, fuzzy
2452
  msgid "l-pa-in"
2453
  msgstr "Panjabi; Punjabi"
2454
 
2455
  # Polish
2456
+ #: ../../admin/lang/dynamic_strings.php:234
2457
  msgid "l-pl"
2458
  msgstr "Polish"
2459
 
2460
  # Polish
2461
+ #: ../../admin/lang/dynamic_strings.php:235
2462
  msgid "l-pl-pl"
2463
  msgstr "Polish (Poland)"
2464
 
2465
  # Pushto; Pashto
2466
+ #: ../../admin/lang/dynamic_strings.php:236
2467
  msgid "l-ps"
2468
  msgstr "Pushto; Pashto"
2469
 
2470
  # Spanish (Argentina)
2471
+ #: ../../admin/lang/dynamic_strings.php:237
2472
  #, fuzzy
2473
  msgid "l-ps-ar"
2474
  msgstr "Spanish (Argentina)"
2475
 
2476
  # Portuguese
2477
+ #: ../../admin/lang/dynamic_strings.php:238
2478
  msgid "l-pt"
2479
  msgstr "Portuguese"
2480
 
2481
  # Portuguese (Brazil)
2482
+ #: ../../admin/lang/dynamic_strings.php:239
2483
  msgid "l-pt-br"
2484
  msgstr "Portuguese (Brazil)"
2485
 
2486
  # Portuguese
2487
+ #: ../../admin/lang/dynamic_strings.php:240
2488
  msgid "l-pt-pt"
2489
  msgstr "Portuguese (Portugal)"
2490
 
2491
  # Quechua
2492
+ #: ../../admin/lang/dynamic_strings.php:241
2493
  msgid "l-qu"
2494
  msgstr "Quechua"
2495
 
2496
  # Quechua
2497
+ #: ../../admin/lang/dynamic_strings.php:242
2498
  #, fuzzy
2499
  msgid "l-qu-bo"
2500
  msgstr "Quechua"
2501
 
2502
  # Quechua
2503
+ #: ../../admin/lang/dynamic_strings.php:243
2504
  #, fuzzy
2505
  msgid "l-qu-ec"
2506
  msgstr "Quechua"
2507
 
2508
  # Quechua
2509
+ #: ../../admin/lang/dynamic_strings.php:244
2510
  #, fuzzy
2511
  msgid "l-qu-pe"
2512
  msgstr "Quechua"
2513
 
2514
  # Romanian; Moldavian; Moldovan
2515
+ #: ../../admin/lang/dynamic_strings.php:245
2516
  msgid "l-ro"
2517
  msgstr "Romanian; Moldavian; Moldovan"
2518
 
2519
  # Romanian; Moldavian; Moldovan
2520
+ #: ../../admin/lang/dynamic_strings.php:246
2521
  #, fuzzy
2522
  msgid "l-ro-ro"
2523
  msgstr "Romanian; Moldavian; Moldovan"
2524
 
2525
  # Russian
2526
+ #: ../../admin/lang/dynamic_strings.php:247
2527
  msgid "l-ru"
2528
  msgstr "Russian"
2529
 
2530
  # Russian (Russia)
2531
+ #: ../../admin/lang/dynamic_strings.php:248
2532
  msgid "l-ru-ru"
2533
  msgstr "Russian (Russia)"
2534
 
2535
  # Sanskrit
2536
+ #: ../../admin/lang/dynamic_strings.php:249
2537
  msgid "l-sa"
2538
  msgstr "Sanskrit"
2539
 
2540
  # Sanskrit
2541
+ #: ../../admin/lang/dynamic_strings.php:250
2542
  #, fuzzy
2543
  msgid "l-sa-in"
2544
  msgstr "Sanskrit"
2545
 
2546
  # Northern Sami
2547
+ #: ../../admin/lang/dynamic_strings.php:251
2548
  msgid "l-se"
2549
  msgstr "Northern Sami"
2550
 
2551
  # Northern Sami
2552
+ #: ../../admin/lang/dynamic_strings.php:252
2553
  #, fuzzy
2554
  msgid "l-se-fi"
2555
  msgstr "Northern Sami"
2556
 
2557
  # Northern Sami
2558
+ #: ../../admin/lang/dynamic_strings.php:253
2559
  #, fuzzy
2560
  msgid "l-se-no"
2561
  msgstr "Northern Sami"
2562
 
2563
  # Northern Sami
2564
+ #: ../../admin/lang/dynamic_strings.php:254
2565
  #, fuzzy
2566
  msgid "l-se-se"
2567
  msgstr "Northern Sami"
2568
 
2569
  # Slovak
2570
+ #: ../../admin/lang/dynamic_strings.php:255
2571
  msgid "l-sk"
2572
  msgstr "Slovak"
2573
 
2574
  # Slovak
2575
+ #: ../../admin/lang/dynamic_strings.php:256
2576
  #, fuzzy
2577
  msgid "l-sk-sk"
2578
  msgstr "Slovak"
2579
 
2580
  # Slovenian
2581
+ #: ../../admin/lang/dynamic_strings.php:257
2582
  msgid "l-sl"
2583
  msgstr "Slovenian"
2584
 
2585
  # Sinhala; Sinhalese
2586
+ #: ../../admin/lang/dynamic_strings.php:258
2587
  #, fuzzy
2588
  msgid "l-sl-si"
2589
  msgstr "Sinhala; Sinhalese"
2590
 
2591
  # Albanian
2592
+ #: ../../admin/lang/dynamic_strings.php:259
2593
  msgid "l-sq"
2594
  msgstr "Albanian"
2595
 
2596
  # Albanian
2597
+ #: ../../admin/lang/dynamic_strings.php:260
2598
  #, fuzzy
2599
  msgid "l-sq-al"
2600
  msgstr "Albanian"
2601
 
2602
  # Serbian
2603
+ #: ../../admin/lang/dynamic_strings.php:261
2604
  #, fuzzy
2605
  msgid "l-sr-ba"
2606
  msgstr "Serbian"
2607
 
2608
  # Serbian
2609
+ #: ../../admin/lang/dynamic_strings.php:262
2610
  #, fuzzy
2611
  msgid "l-sr-sp"
2612
  msgstr "Serbian"
2613
 
2614
  # Swedish
2615
+ #: ../../admin/lang/dynamic_strings.php:263
2616
  msgid "l-sv"
2617
  msgstr "Swedish"
2618
 
2619
  # Swedish (Finland)
2620
+ #: ../../admin/lang/dynamic_strings.php:264
2621
  msgid "l-sv-fi"
2622
  msgstr "Swedish (Finland)"
2623
 
2624
  # Swedish (Sweden)
2625
+ #: ../../admin/lang/dynamic_strings.php:265
2626
  msgid "l-sv-se"
2627
  msgstr "Swedish (Sweden)"
2628
 
2629
  # Swahili
2630
+ #: ../../admin/lang/dynamic_strings.php:266
2631
  msgid "l-sw"
2632
  msgstr "Swahili"
2633
 
2634
  # Swahili
2635
+ #: ../../admin/lang/dynamic_strings.php:267
2636
  #, fuzzy
2637
  msgid "l-sw-ke"
2638
  msgstr "Swahili"
2639
 
2640
  # Tamil
2641
+ #: ../../admin/lang/dynamic_strings.php:268
2642
  msgid "l-ta"
2643
  msgstr "Tamil"
2644
 
2645
  # Tamil
2646
+ #: ../../admin/lang/dynamic_strings.php:269
2647
  #, fuzzy
2648
  msgid "l-ta-in"
2649
  msgstr "Tamil"
2650
 
2651
  # Telugu
2652
+ #: ../../admin/lang/dynamic_strings.php:270
2653
  msgid "l-te"
2654
  msgstr "Telugu"
2655
 
2656
  # Telugu
2657
+ #: ../../admin/lang/dynamic_strings.php:271
2658
  #, fuzzy
2659
  msgid "l-te-in"
2660
  msgstr "Telugu"
2661
 
2662
  # Thai
2663
+ #: ../../admin/lang/dynamic_strings.php:272
2664
  msgid "l-th"
2665
  msgstr "Thai"
2666
 
2667
  # Thai
2668
+ #: ../../admin/lang/dynamic_strings.php:273
2669
  msgid "l-th-th"
2670
  msgstr "Thai (Thailand)"
2671
 
2672
  # Tagalog
2673
+ #: ../../admin/lang/dynamic_strings.php:274
2674
  msgid "l-tl"
2675
  msgstr "Tagalog"
2676
 
2677
  # Tagalog
2678
+ #: ../../admin/lang/dynamic_strings.php:275
2679
  #, fuzzy
2680
  msgid "l-tl-ph"
2681
  msgstr "Tagalog"
2682
 
2683
  # Tswana
2684
+ #: ../../admin/lang/dynamic_strings.php:276
2685
  msgid "l-tn"
2686
  msgstr "Tswana"
2687
 
2688
  # English (South Africa)
2689
+ #: ../../admin/lang/dynamic_strings.php:277
2690
  #, fuzzy
2691
  msgid "l-tn-za"
2692
  msgstr "English (South Africa)"
2693
 
2694
  # Turkish
2695
+ #: ../../admin/lang/dynamic_strings.php:278
2696
  msgid "l-tr"
2697
  msgstr "Turkish"
2698
 
2699
  # Turkish
2700
+ #: ../../admin/lang/dynamic_strings.php:279
2701
  msgid "l-tr-tr"
2702
  msgstr "Turkish"
2703
 
2704
  # Tatar
2705
+ #: ../../admin/lang/dynamic_strings.php:280
2706
  msgid "l-tt"
2707
  msgstr "Tatar"
2708
 
2709
  # Tatar
2710
+ #: ../../admin/lang/dynamic_strings.php:281
2711
  #, fuzzy
2712
  msgid "l-tt-ru"
2713
  msgstr "Tatar"
2714
 
2715
  # Tsonga
2716
+ #: ../../admin/lang/dynamic_strings.php:282
2717
  msgid "l-ts"
2718
  msgstr "Tsonga"
2719
 
2720
  # Ukrainian
2721
+ #: ../../admin/lang/dynamic_strings.php:283
2722
  msgid "l-uk"
2723
  msgstr "Ukrainian"
2724
 
2725
  # Ukrainian
2726
+ #: ../../admin/lang/dynamic_strings.php:284
2727
  #, fuzzy
2728
  msgid "l-uk-ua"
2729
  msgstr "Ukrainian"
2730
 
2731
  # Urdu
2732
+ #: ../../admin/lang/dynamic_strings.php:285
2733
  msgid "l-ur"
2734
  msgstr "Urdu"
2735
 
2736
  # Urdu
2737
+ #: ../../admin/lang/dynamic_strings.php:286
2738
  #, fuzzy
2739
  msgid "l-ur-pk"
2740
  msgstr "Urdu"
2741
 
2742
  # Uzbek
2743
+ #: ../../admin/lang/dynamic_strings.php:287
2744
  msgid "l-uz"
2745
  msgstr "Uzbek"
2746
 
2747
  # Uzbek
2748
+ #: ../../admin/lang/dynamic_strings.php:288
2749
  #, fuzzy
2750
  msgid "l-uz-uz"
2751
  msgstr "Uzbek"
2752
 
2753
  # Vietnamese
2754
+ #: ../../admin/lang/dynamic_strings.php:289
2755
  msgid "l-vi"
2756
  msgstr "Vietnamese"
2757
 
2758
  # Vietnamese
2759
+ #: ../../admin/lang/dynamic_strings.php:290
2760
  msgid "l-vi-vn"
2761
  msgstr "Vietnamese (Vietnam)"
2762
 
2763
  # Xhosa
2764
+ #: ../../admin/lang/dynamic_strings.php:291
2765
  msgid "l-xh"
2766
  msgstr "Xhosa"
2767
 
2768
  # Xhosa
2769
+ #: ../../admin/lang/dynamic_strings.php:292
2770
  #, fuzzy
2771
  msgid "l-xh-za"
2772
  msgstr "Xhosa"
2773
 
2774
  # Chinese
2775
+ #: ../../admin/lang/dynamic_strings.php:293
2776
  msgid "l-zh"
2777
  msgstr "Chinese"
2778
 
2779
  # Chinese (China)
2780
+ #: ../../admin/lang/dynamic_strings.php:294
2781
  msgid "l-zh-cn"
2782
  msgstr "Chinese (China)"
2783
 
2784
  # Chinese (Hong Kong)
2785
+ #: ../../admin/lang/dynamic_strings.php:295
2786
  msgid "l-zh-hk"
2787
  msgstr "Chinese (Hong Kong)"
2788
 
2789
  # Chinese
2790
+ #: ../../admin/lang/dynamic_strings.php:296
2791
  #, fuzzy
2792
  msgid "l-zh-mo"
2793
  msgstr "Chinese"
2794
 
2795
  # Chinese (Singapore)
2796
+ #: ../../admin/lang/dynamic_strings.php:297
2797
  msgid "l-zh-sg"
2798
  msgstr "Chinese (Singapore)"
2799
 
2800
  # Chinese (Taiwan)
2801
+ #: ../../admin/lang/dynamic_strings.php:298
2802
  msgid "l-zh-tw"
2803
  msgstr "Taiwanese"
2804
 
2805
  # Zulu
2806
+ #: ../../admin/lang/dynamic_strings.php:299
2807
  msgid "l-zu"
2808
  msgstr "Zulu"
2809
 
2810
  # Zulu
2811
+ #: ../../admin/lang/dynamic_strings.php:300
2812
  #, fuzzy
2813
  msgid "l-zu-za"
2814
  msgstr "Zulu"
2815
 
2816
+ #: ../../admin/lang/dynamic_strings.php:301
2817
+ #: ../../admin/view/wp-slimstat-reports.php:536
2818
  msgid "l-"
2819
  msgstr "l-"
2820
 
2821
  # Unknown
2822
+ #: ../../admin/lang/dynamic_strings.php:302
2823
  msgid "l-empty"
2824
  msgstr "Unknown"
2825
 
2826
  # Unknown
2827
+ #: ../../admin/lang/dynamic_strings.php:303
2828
  msgid "l-xx"
2829
  msgstr "Unknown"
2830
 
2831
+ #: ../../admin/lang/dynamic_strings.php:304
2832
  msgid "c-xy"
2833
  msgstr "Lokale IP-Adresse"
2834
 
2835
+ #: ../../admin/view/index.php:26
2836
  msgid "is between (x,y)"
2837
  msgstr ""
2838
 
2839
+ #: ../../admin/view/index.php:46
2840
  msgid "Load"
2841
  msgstr ""
2842
 
2843
+ #: ../../admin/view/index.php:66 ../../admin/view/wp-slimstat-reports.php:859
2844
  msgid "Today"
2845
  msgstr "heute"
2846
 
2847
+ #: ../../admin/view/index.php:67 ../../admin/view/wp-slimstat-reports.php:860
2848
  msgid "Yesterday"
2849
  msgstr "Gestern"
2850
 
2851
+ #: ../../admin/view/index.php:68
2852
  msgid "Last 7 Days"
2853
  msgstr "Letzte 7 Tage"
2854
 
2855
+ #: ../../admin/view/index.php:69
2856
  #, fuzzy
2857
  msgid "Last 60 Days"
2858
  msgstr "Letzte 30 Tage"
2859
 
2860
+ #: ../../admin/view/index.php:70
2861
  msgid "Last 90 Days"
2862
  msgstr "Letzte 90 Tage"
2863
 
2864
+ #: ../../admin/view/index.php:71
2865
  #, fuzzy
2866
  msgid "This Year So Far"
2867
  msgstr "Heuer"
2868
 
2869
+ #: ../../admin/view/index.php:72
2870
  #, fuzzy
2871
  msgid "Date Range"
2872
  msgstr "Datum und Uhrzeit"
2873
 
2874
+ #: ../../admin/view/index.php:74 ../../admin/view/wp-slimstat-db-new.php:66
2875
+ #: ../../admin/view/wp-slimstat-db.php:71
2876
  msgid "Day"
2877
  msgstr "Tag"
2878
 
2879
+ #: ../../admin/view/index.php:84 ../../admin/view/wp-slimstat-db-new.php:67
2880
+ #: ../../admin/view/wp-slimstat-db.php:72
2881
  msgid "Month"
2882
  msgstr "Monat"
2883
 
2884
+ #: ../../admin/view/index.php:93 ../../admin/view/wp-slimstat-db-new.php:68
2885
+ #: ../../admin/view/wp-slimstat-db.php:73
2886
  msgid "Year"
2887
  msgstr "Jahr"
2888
 
2889
+ #: ../../admin/view/index.php:94 ../../admin/view/wp-slimstat-db-new.php:65
2890
+ #: ../../admin/view/wp-slimstat-db.php:70
2891
  msgid "Hour"
2892
  msgstr "Stunde"
2893
 
2894
+ #: ../../admin/view/index.php:95
2895
  msgid "Min"
2896
  msgstr ""
2897
 
2898
+ #: ../../admin/view/index.php:103 ../../admin/view/wp-slimstat-db-new.php:71
2899
+ #: ../../admin/view/wp-slimstat-db.php:76
2900
  msgid "hours"
2901
  msgstr ""
2902
 
2903
+ #: ../../admin/view/index.php:104
2904
  msgid "mins"
2905
  msgstr ""
2906
 
2907
+ #: ../../admin/view/index.php:113
2908
  #, fuzzy
2909
  msgid "Reset Filters"
2910
  msgstr "Datumsfilter"
2911
 
2912
+ #: ../../admin/view/index.php:132
2913
+ #, php-format
2914
+ msgid ""
2915
+ "Install MaxMind's <a href='%s'>GeoLite DB</a> to determine your visitors' "
2916
+ "country of origin."
2917
+ msgstr ""
2918
+
2919
+ #: ../../admin/view/index.php:157
2920
  msgid "Your report here"
2921
  msgstr "Deine Auswertung hier"
2922
 
2923
+ #: ../../admin/view/index.php:159
2924
  #, fuzzy
2925
  msgid ""
2926
  "Yes, you can! Create and view your personalized analytics for Slimstat. Just "
2938
  "besuchen Sie mein <a href=\"http://lab.duechiacchiere.it/\" title=\"WP "
2939
  "SlimStat Support-Forum\" target=\"_blank\">Support-Forum</a>."
2940
 
2941
+ #: ../../admin/view/index.php:176
 
 
 
 
 
 
2942
  #, fuzzy
2943
  msgid ""
2944
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2949
  "einen Cookie zu. WP SlimStat erweitert diese Information um die Erkennung "
2950
  "zur&uuml;kkehrender Besucher."
2951
 
2952
+ #: ../../admin/view/index.php:180 ../../admin/view/index.php:224
2953
+ #: ../../admin/view/index.php:227 ../../admin/view/right-now.php:17
2954
  msgid "Color codes"
2955
  msgstr "Farbcode"
2956
 
2957
+ #: ../../admin/view/index.php:180 ../../admin/view/right-now.php:17
2958
  #, fuzzy
2959
  msgid "From search result page"
2960
  msgstr "Von einer Suchergebnisseite"
2961
 
2962
+ #: ../../admin/view/index.php:180 ../../admin/view/right-now.php:17
2963
+ #: ../../admin/wp-slimstat-admin.php:917
2964
  msgid "Known Visitor"
2965
  msgstr "Bekannte Besucher"
2966
 
2967
+ #: ../../admin/view/index.php:180 ../../admin/view/index.php:224
2968
+ #: ../../admin/view/index.php:227 ../../admin/view/right-now.php:17
2969
  msgid "Known Users"
2970
  msgstr "Bekannte Benutzer"
2971
 
2972
+ #: ../../admin/view/index.php:180 ../../admin/view/index.php:224
2973
+ #: ../../admin/view/index.php:227 ../../admin/view/right-now.php:17
2974
  msgid "Other Humans"
2975
  msgstr "Andere echte Besucher"
2976
 
2977
+ #: ../../admin/view/index.php:180 ../../admin/view/right-now.php:17
2978
  msgid "Bot or Crawler"
2979
  msgstr "Bot oder Crawler"
2980
 
2981
+ #: ../../admin/view/index.php:184
2982
  #, fuzzy
2983
  msgid "Keywords used by your visitors to find your website on a search engine."
2984
  msgstr "Begriffe welche von Besuchern in Suchmaschinen verwendet wurden"
2985
 
2986
+ #: ../../admin/view/index.php:187
2987
  msgid ""
2988
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
2989
  "measures your site's rankings. Values are updated every 12 hours. Filters "
2990
  "set above don't apply to this report."
2991
  msgstr ""
2992
 
2993
+ #: ../../admin/view/index.php:193
2994
  msgid "Human Visits"
2995
  msgstr "Echte Besuche"
2996
 
2997
+ #: ../../admin/view/index.php:196
2998
+ msgid ""
2999
+ "Where not otherwise specified, the metrics in this report are referred to "
3000
+ "human visitors."
3001
+ msgstr ""
3002
+
3003
+ #: ../../admin/view/index.php:199
3004
  #, fuzzy
3005
  msgid ""
3006
  "Internet Service Provider: a company which provides other companies or "
3014
  "Adressen generell zu ignorieren kann ein entsprechender Filter unter "
3015
  "'Einstellungen > SlimStat > Filter' gesetzt werden."
3016
 
3017
+ #: ../../admin/view/index.php:202
3018
  #, fuzzy
3019
  msgid ""
3020
  "You can configure Slimstat to ignore a specific Country by setting the "
3023
  "Um ein spezifisches Land generell zu ignorieren kann ein entsprechender "
3024
  "Filter unter 'Einstellungen > SlimStat > Filter' gesetzt werden."
3025
 
3026
+ #: ../../admin/view/index.php:205
3027
  msgid ""
3028
  "This report shows you what user agent families (no version considered) are "
3029
  "popular among your visitors."
3031
  "Dieser Bericht zeigt, welche User Agent-Familien (unabhängig Ihrer Version) "
3032
  "bei Ihren Besuchern populär sind."
3033
 
3034
+ #: ../../admin/view/index.php:208
3035
  msgid ""
3036
  "This report shows you what operating system families (no version considered) "
3037
  "are popular among your visitors."
3039
  "Dieser Bericht zeigt, welche Betriebssystemfamilien (ohne Berücksichtigung "
3040
  "der Version) hauptsächlich von Ihren Benutzer verwendet werden."
3041
 
3042
+ #: ../../admin/view/index.php:211 ../../admin/view/wp-slimstat-reports.php:36
3043
+ #: ../../admin/wp-slimstat-admin.php:589 ../../admin/wp-slimstat-admin.php:604
3044
+ #: ../../wp-slimstat.php:1473
3045
  msgid "Traffic Sources"
3046
  msgstr "Traffic-Ursprung"
3047
 
3048
+ #: ../../admin/view/index.php:214
3049
  msgid "Average Pageviews per Visit"
3050
  msgstr "Durchschnittl. Seitenaufrufe pro Besuch"
3051
 
3052
+ #: ../../admin/view/index.php:217
3053
  msgid ""
3054
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
3055
  "left your site from the entrance (landing) page."
3057
  "Eine 'Absprung' Seite ist der Zugriff auf eine einzelne Seite oder wenn der "
3058
  "Besucher die Website bereits auf der Einstiegs-Seite wieder verl&auml;sst."
3059
 
3060
+ #: ../../admin/view/index.php:220
3061
  msgid "Searches performed using Wordpress' built-in search functionality."
3062
  msgstr ""
3063
  "Suchen welche mit der WordPress eigenen Such-Funktion ausgef&uuml;hrt wurden."
3064
 
3065
+ #: ../../admin/view/index.php:224
3066
  #, fuzzy
3067
  msgid ""
3068
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
3073
  "Seite angeklickt wurde.<br>- <em>ID:xx</em> wird gezeigt, wenn dem "
3074
  "betreffenden Link ein ID-Attribute zugewiesen wurde."
3075
 
3076
+ #: ../../admin/view/index.php:227
3077
  msgid ""
3078
  "This report lists any <em>event</em> occurred on your website. Please refer "
3079
  "to the FAQ for more information on how to leverage this functionality."
3082
  "stattgefunden hat. Bitte schlagen Sie in der FAQ für weitere Informationen "
3083
  "zur Verwendung dieser Funktionalit&auml;t nach."
3084
 
3085
+ #: ../../admin/view/index.php:230
3086
  msgid ""
3087
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
3088
  "this report is not affected by the filters set here above."
3106
  msgid "Syndication Reader"
3107
  msgstr ""
3108
 
3109
+ #: ../../admin/view/right-now.php:27
3110
+ #: ../../admin/view/wp-slimstat-reports.php:458
3111
+ #: ../../admin/view/wp-slimstat-reports.php:741
3112
  msgid "No data to display"
3113
  msgstr "keine Daten vorhanden"
3114
 
3115
  # Unknown
3116
+ #: ../../admin/view/right-now.php:57
3117
+ #: ../../admin/view/wp-slimstat-reports.php:524
3118
+ #: ../../admin/view/wp-slimstat-reports.php:784
3119
+ #: ../../admin/view/wp-slimstat-reports.php:1063
3120
  msgid "c-"
3121
  msgstr "Unknown"
3122
 
3123
+ #: ../../admin/view/right-now.php:110
3124
+ #: ../../admin/view/wp-slimstat-db-new.php:57
3125
+ #: ../../admin/view/wp-slimstat-db.php:58
3126
+ #: ../../admin/wp-slimstat-admin.php:919 ../../admin/wp-slimstat-admin.php:961
3127
  msgid "Originating IP"
3128
  msgstr "Ursprüngliche IP"
3129
 
3130
+ #: ../../admin/view/right-now.php:128
3131
  msgid "Server Latency and Page Speed in milliseconds"
3132
  msgstr ""
3133
 
3134
+ #: ../../admin/view/right-now.php:128
3135
  msgid "SL"
3136
  msgstr ""
3137
 
3138
+ #: ../../admin/view/right-now.php:128
3139
  msgid "PS"
3140
  msgstr ""
3141
 
3142
+ #: ../../admin/view/right-now.php:140
3143
+ #: ../../admin/view/wp-slimstat-reports.php:588
3144
+ #: ../../admin/view/wp-slimstat-reports.php:592
3145
+ #: ../../admin/view/wp-slimstat-reports.php:766
3146
+ #: ../../admin/view/wp-slimstat-reports.php:819
3147
  msgid "Open this URL in a new window"
3148
  msgstr "Diese URL in einem neuen Fenster &ouml;ffnen"
3149
 
3150
+ #: ../../admin/view/right-now.php:143
3151
  msgid "Local search results page"
3152
  msgstr "lokale Suchergebnisse"
3153
 
3154
+ #: ../../admin/view/right-now.php:148
3155
+ #: ../../admin/view/wp-slimstat-db-new.php:36
3156
+ #: ../../admin/view/wp-slimstat-db.php:39
3157
+ #: ../../admin/wp-slimstat-admin.php:922 ../../admin/wp-slimstat-admin.php:938
3158
  msgid "Search Terms"
3159
  msgstr "Suchbegriffe"
3160
 
3162
  msgid "Open this referrer in a new window"
3163
  msgstr "Verweisende Seite in einem neuen Fenster &ouml;ffnen"
3164
 
 
 
 
 
3165
  #: ../../admin/view/right-now.php:155
3166
  msgid "Date and Time"
3167
  msgstr "Datum und Uhrzeit"
3171
  msgid "Content Type"
3172
  msgstr "Inhalt"
3173
 
3174
+ #: ../../admin/view/right-now.php:159
3175
+ #, fuzzy
3176
+ msgid "Delete this pageview"
3177
+ msgstr "Lösche Seitenaufrufe, wo"
3178
+
3179
+ #: ../../admin/view/wp-slimstat-db-new.php:33
3180
+ #: ../../admin/view/wp-slimstat-db.php:36
3181
+ #: ../../admin/wp-slimstat-admin.php:935
3182
  msgid "Browser"
3183
  msgstr "Browser"
3184
 
3185
+ #: ../../admin/view/wp-slimstat-db-new.php:34
3186
+ #: ../../admin/view/wp-slimstat-db.php:37
3187
+ #: ../../admin/view/wp-slimstat-reports.php:523
3188
+ #: ../../admin/wp-slimstat-admin.php:936
3189
  msgid "Country Code"
3190
  msgstr "L&auml;nder-Code"
3191
 
3192
+ #: ../../admin/view/wp-slimstat-db-new.php:35
3193
+ #: ../../admin/view/wp-slimstat-db.php:38
3194
  msgid "IP Address"
3195
  msgstr "IP-Adresse"
3196
 
3197
+ #: ../../admin/view/wp-slimstat-db-new.php:37
3198
+ #: ../../admin/view/wp-slimstat-db.php:40
3199
+ #: ../../admin/view/wp-slimstat-reports.php:535
3200
+ #: ../../admin/wp-slimstat-admin.php:939
3201
  msgid "Language Code"
3202
  msgstr "Sprach-Kodierung"
3203
 
3204
+ #: ../../admin/view/wp-slimstat-db-new.php:38
3205
+ #: ../../admin/view/wp-slimstat-db.php:41
3206
+ #: ../../admin/wp-slimstat-admin.php:940
3207
  msgid "Operating System"
3208
  msgstr "Betriebssystem"
3209
 
3210
+ #: ../../admin/view/wp-slimstat-db-new.php:39
3211
+ #: ../../admin/view/wp-slimstat-db.php:42
3212
+ #: ../../admin/wp-slimstat-admin.php:941
3213
  msgid "Permalink"
3214
  msgstr "Permalink"
3215
 
3216
+ #: ../../admin/view/wp-slimstat-db-new.php:40
3217
  msgid "Domain"
3218
  msgstr "Dom&auml;ne"
3219
 
3220
+ #: ../../admin/view/wp-slimstat-db-new.php:41
3221
+ #: ../../admin/view/wp-slimstat-db.php:43
3222
+ #: ../../admin/wp-slimstat-admin.php:942
3223
  msgid "Referer"
3224
  msgstr "Herkunft"
3225
 
3226
+ #: ../../admin/view/wp-slimstat-db-new.php:42
3227
+ #: ../../admin/view/wp-slimstat-db.php:44
3228
+ #: ../../admin/wp-slimstat-admin.php:943
3229
  msgid "Visitor's Name"
3230
  msgstr "Besuchername"
3231
 
3232
+ #: ../../admin/view/wp-slimstat-db-new.php:43
3233
+ #: ../../admin/view/wp-slimstat-db.php:45
3234
  msgid "Page Speed"
3235
  msgstr ""
3236
 
3237
+ #: ../../admin/view/wp-slimstat-db-new.php:45
3238
+ #: ../../admin/view/wp-slimstat-db.php:47
3239
  msgid "-- Advanced filters --"
3240
  msgstr "-- Erweiterte Filter --"
3241
 
3242
+ #: ../../admin/view/wp-slimstat-db-new.php:46
3243
+ #: ../../admin/view/wp-slimstat-db.php:48
3244
+ #: ../../admin/view/wp-slimstat-reports.php:63
3245
  msgid "Browser Capabilities"
3246
  msgstr "Browser-F&auml;higkeiten"
3247
 
3248
+ #: ../../admin/view/wp-slimstat-db-new.php:47
3249
+ #: ../../admin/view/wp-slimstat-db.php:49
3250
+ #: ../../admin/wp-slimstat-admin.php:954
3251
  msgid "Browser Version"
3252
  msgstr "Browser-Version"
3253
 
3254
+ #: ../../admin/view/wp-slimstat-db-new.php:48
3255
+ #: ../../admin/view/wp-slimstat-db.php:50
3256
+ #: ../../admin/wp-slimstat-admin.php:955
3257
  msgid "Browser Type"
3258
  msgstr "Browser-Typ"
3259
 
3260
+ #: ../../admin/view/wp-slimstat-db-new.php:49
3261
+ #: ../../admin/view/wp-slimstat-db.php:51
3262
+ #: ../../admin/wp-slimstat-admin.php:924
3263
  msgid "User Agent"
3264
  msgstr "User Agent"
3265
 
3266
+ #: ../../admin/view/wp-slimstat-db-new.php:50
3267
+ #: ../../admin/view/wp-slimstat-db.php:52
3268
+ #: ../../admin/wp-slimstat-admin.php:956
3269
  msgid "Color Depth"
3270
  msgstr "Farbtiefe"
3271
 
3272
+ #: ../../admin/view/wp-slimstat-db-new.php:51
3273
+ #: ../../admin/view/wp-slimstat-db.php:53
3274
+ #: ../../admin/wp-slimstat-admin.php:957
3275
  msgid "CSS Version"
3276
  msgstr "CSS Version"
3277
 
3278
+ #: ../../admin/view/wp-slimstat-db-new.php:52
3279
+ #: ../../admin/view/wp-slimstat-db.php:54
3280
+ #: ../../admin/wp-slimstat-admin.php:958
3281
  msgid "Pageview Attributes"
3282
  msgstr "Eigenschaften Seitenaufrufe"
3283
 
3284
+ #: ../../admin/view/wp-slimstat-db-new.php:53
3285
+ #: ../../admin/view/wp-slimstat-db.php:55
3286
  #, fuzzy
3287
  msgid "Server Latency"
3288
  msgstr "Latenz"
3289
 
3290
+ #: ../../admin/view/wp-slimstat-db-new.php:54
3291
+ #: ../../admin/wp-slimstat-admin.php:925
3292
  msgid "Outbound Link"
3293
  msgstr "Ausgehender Link"
3294
 
3295
+ #: ../../admin/view/wp-slimstat-db-new.php:55
3296
+ #: ../../admin/view/wp-slimstat-db.php:56
3297
+ #: ../../admin/wp-slimstat-admin.php:959
3298
  msgid "Post Author"
3299
  msgstr "Autor der Seiten"
3300
 
3301
+ #: ../../admin/view/wp-slimstat-db-new.php:56
3302
+ #: ../../admin/view/wp-slimstat-db.php:57
3303
+ #: ../../admin/wp-slimstat-admin.php:960
3304
  msgid "Post Category ID"
3305
  msgstr "Kategorie-ID der Seite"
3306
 
3307
+ #: ../../admin/view/wp-slimstat-db-new.php:58
3308
+ #: ../../admin/view/wp-slimstat-db.php:59
3309
+ #: ../../admin/wp-slimstat-admin.php:962
3310
  msgid "Resource Content Type"
3311
  msgstr "Inhalt der Ressource"
3312
 
3313
+ #: ../../admin/view/wp-slimstat-db-new.php:59
3314
+ #: ../../admin/view/wp-slimstat-db.php:60
3315
  msgid "Resource ID"
3316
  msgstr "Ressourcen-ID"
3317
 
3318
+ #: ../../admin/view/wp-slimstat-db-new.php:60
3319
+ #: ../../admin/wp-slimstat-admin.php:963
3320
  msgid "Screen Resolution"
3321
  msgstr "Bildschirm-Aufl&ouml;sung"
3322
 
3323
+ #: ../../admin/view/wp-slimstat-db-new.php:61
3324
+ #: ../../admin/view/wp-slimstat-db.php:64
3325
+ #: ../../admin/wp-slimstat-admin.php:964
3326
  msgid "Visit ID"
3327
  msgstr "Besuchs-ID"
3328
 
3329
+ #: ../../admin/view/wp-slimstat-db-new.php:64
3330
+ #: ../../admin/view/wp-slimstat-db.php:69
3331
  msgid "Minute"
3332
  msgstr ""
3333
 
3334
+ #: ../../admin/view/wp-slimstat-db-new.php:69
3335
+ #: ../../admin/view/wp-slimstat-db.php:74
3336
  msgid "+/-"
3337
  msgstr ""
3338
 
3339
+ #: ../../admin/view/wp-slimstat-db-new.php:72
3340
+ #: ../../admin/view/wp-slimstat-db.php:77
3341
  #, fuzzy
3342
  msgid "minutes"
3343
  msgstr "1-3 Minuten"
3344
 
3345
+ #: ../../admin/view/wp-slimstat-db-new.php:74
3346
  #, fuzzy
3347
  msgid "Order Direction"
3348
  msgstr "Macromedia Director"
3349
 
3350
+ #: ../../admin/view/wp-slimstat-db-new.php:75
3351
+ #: ../../admin/view/wp-slimstat-db.php:80
3352
  #, fuzzy
3353
  msgid "Limit Results"
3354
  msgstr "Max. Anzahl Ergebnisse"
3355
 
3356
+ #: ../../admin/view/wp-slimstat-db-new.php:76
3357
+ #: ../../admin/view/wp-slimstat-db.php:81
3358
  msgid "Start From"
3359
  msgstr ""
3360
 
3361
+ #: ../../admin/view/wp-slimstat-db.php:61
3362
+ msgid "Screen Width"
3363
+ msgstr ""
3364
+
3365
+ #: ../../admin/view/wp-slimstat-db.php:62
3366
+ #, fuzzy
3367
+ msgid "Screen Height"
3368
+ msgstr "Bildschirm-Aufl&ouml;sung"
3369
+
3370
+ #: ../../admin/view/wp-slimstat-db.php:63
3371
+ msgid "Viewport Size"
3372
+ msgstr ""
3373
+
3374
+ #: ../../admin/view/wp-slimstat-db.php:78
3375
+ msgid "Unix Timestamp"
3376
+ msgstr ""
3377
+
3378
+ #: ../../admin/view/wp-slimstat-reports.php:32
3379
+ #: ../../admin/wp-slimstat-admin.php:585 ../../wp-slimstat.php:1469
3380
  msgid "Real-Time Log"
3381
  msgstr ""
3382
 
3383
+ #: ../../admin/view/wp-slimstat-reports.php:33
3384
+ #: ../../admin/wp-slimstat-admin.php:586 ../../admin/wp-slimstat-admin.php:601
3385
+ #: ../../wp-slimstat.php:1470
3386
  msgid "Overview"
3387
  msgstr "&Uuml;bersicht"
3388
 
3389
+ #: ../../admin/view/wp-slimstat-reports.php:34
3390
+ #: ../../admin/wp-slimstat-admin.php:587 ../../admin/wp-slimstat-admin.php:602
3391
+ #: ../../wp-slimstat.php:1471
3392
  msgid "Audience"
3393
  msgstr ""
3394
 
3395
+ #: ../../admin/view/wp-slimstat-reports.php:35
3396
+ #: ../../admin/wp-slimstat-admin.php:588 ../../admin/wp-slimstat-admin.php:603
3397
+ #: ../../wp-slimstat.php:1472
3398
  msgid "Site Analysis"
3399
  msgstr ""
3400
 
3401
+ #: ../../admin/view/wp-slimstat-reports.php:37
3402
+ #: ../../admin/wp-slimstat-admin.php:590 ../../admin/wp-slimstat-admin.php:605
3403
+ #: ../../wp-slimstat.php:1474
3404
  msgid "Map Overlay"
3405
  msgstr ""
3406
 
3407
+ #: ../../admin/view/wp-slimstat-reports.php:38
3408
+ #: ../../admin/wp-slimstat-admin.php:591 ../../admin/wp-slimstat-admin.php:606
3409
+ #: ../../wp-slimstat.php:1475
3410
  msgid "Custom Reports"
3411
  msgstr "individuelle Auswertungen"
3412
 
3413
+ #: ../../admin/view/wp-slimstat-reports.php:42
3414
  msgid "Pageviews (chart)"
3415
  msgstr "Seitenaufrufe (Diagramm)"
3416
 
3417
+ #: ../../admin/view/wp-slimstat-reports.php:43
3418
  #, fuzzy
3419
  msgid "About Slimstat"
3420
  msgstr "&Uuml;ber WP SlimStat"
3421
 
3422
+ #: ../../admin/view/wp-slimstat-reports.php:44
3423
  msgid "At a Glance"
3424
  msgstr "Auf einen Blick"
3425
 
3426
+ #: ../../admin/view/wp-slimstat-reports.php:45
3427
  #, fuzzy
3428
  msgid "Currently Online"
3429
  msgstr "Aktuelle Filter:"
3430
 
3431
+ #: ../../admin/view/wp-slimstat-reports.php:47
3432
  #: ../../admin/view/wp-slimstat-reports.php:82
 
 
 
 
 
3433
  msgid "Recent Search Terms"
3434
  msgstr "Letzte interne Suchbegriffe"
3435
 
3436
+ #: ../../admin/view/wp-slimstat-reports.php:48
3437
  msgid "Top Pages"
3438
  msgstr "Top-Seiten"
3439
 
3440
+ #: ../../admin/view/wp-slimstat-reports.php:49
3441
+ #: ../../admin/view/wp-slimstat-reports.php:79
3442
  msgid "Top Traffic Sources"
3443
  msgstr "Top-Traffic-Ursprung"
3444
 
3445
+ #: ../../admin/view/wp-slimstat-reports.php:50
3446
  msgid "Top Known Visitors"
3447
  msgstr "Top bekannte Besucher"
3448
 
3449
+ #: ../../admin/view/wp-slimstat-reports.php:51
3450
+ #: ../../admin/view/wp-slimstat-reports.php:77
3451
+ #: ../../admin/view/wp-slimstat-reports.php:97
3452
  msgid "Top Search Terms"
3453
  msgstr "Top-Suchbegriffe"
3454
 
3455
+ #: ../../admin/view/wp-slimstat-reports.php:52
3456
+ #: ../../admin/view/wp-slimstat-reports.php:64
3457
+ #: ../../admin/view/wp-slimstat-reports.php:78
3458
  msgid "Top Countries"
3459
  msgstr "Top-L&auml;nder"
3460
 
3461
+ #: ../../admin/view/wp-slimstat-reports.php:53
3462
  msgid "Rankings"
3463
  msgstr ""
3464
 
3465
+ #: ../../admin/view/wp-slimstat-reports.php:54
3466
  #, fuzzy
3467
  msgid "Top Language Families"
3468
  msgstr "Top-Sprachen"
3469
 
3470
+ #: ../../admin/view/wp-slimstat-reports.php:55
3471
+ msgid "Our Team Recommends"
3472
+ msgstr ""
3473
+
3474
+ #: ../../admin/view/wp-slimstat-reports.php:56
3475
  msgid "Human Visits (chart)"
3476
  msgstr "Echte Besucher (Diagramm)"
3477
 
3478
+ #: ../../admin/view/wp-slimstat-reports.php:57
3479
  #, fuzzy
3480
  msgid "Audience Overview"
3481
  msgstr "&Uuml;bersicht"
3482
 
3483
+ #: ../../admin/view/wp-slimstat-reports.php:58
3484
  msgid "Top Languages"
3485
  msgstr "Top-Sprachen"
3486
 
3487
+ #: ../../admin/view/wp-slimstat-reports.php:59
3488
  msgid "Top Browsers"
3489
  msgstr "Top-Browser"
3490
 
3491
+ #: ../../admin/view/wp-slimstat-reports.php:60
3492
  msgid "Top Service Providers"
3493
  msgstr "Top-Internetprovider"
3494
 
3495
+ #: ../../admin/view/wp-slimstat-reports.php:61
3496
  msgid "Top Operating Systems"
3497
  msgstr "Top-Betriebssysteme"
3498
 
3499
+ #: ../../admin/view/wp-slimstat-reports.php:62
3500
  msgid "Top Screen Resolutions"
3501
  msgstr "Top-Bildschirmaufl&ouml;sungen"
3502
 
3503
+ #: ../../admin/view/wp-slimstat-reports.php:65
3504
  msgid "Visit Duration"
3505
  msgstr "Besuchsdauer"
3506
 
3507
+ #: ../../admin/view/wp-slimstat-reports.php:66
3508
+ #: ../../admin/view/wp-slimstat-reports.php:83
3509
  msgid "Recent Countries"
3510
  msgstr "Letzte L&auml;nder"
3511
 
3512
+ #: ../../admin/view/wp-slimstat-reports.php:67
3513
  msgid "Recent Screen Resolutions"
3514
  msgstr "Letzte Bildschirmaufl&ouml;sungen"
3515
 
3516
+ #: ../../admin/view/wp-slimstat-reports.php:68
3517
  msgid "Recent Operating Systems"
3518
  msgstr "Letzte Betriebssysteme"
3519
 
3520
+ #: ../../admin/view/wp-slimstat-reports.php:69
3521
  msgid "Recent Browsers"
3522
  msgstr "Letzte Browser"
3523
 
3524
+ #: ../../admin/view/wp-slimstat-reports.php:70
3525
  msgid "Recent Languages"
3526
  msgstr "Letzte Sprachen"
3527
 
3528
+ #: ../../admin/view/wp-slimstat-reports.php:71
3529
  msgid "Top Browser Families"
3530
  msgstr "Top-Browserfamilien"
3531
 
3532
+ #: ../../admin/view/wp-slimstat-reports.php:72
3533
  msgid "Top OS Families"
3534
  msgstr "Top-Betriebssysteme"
3535
 
3536
+ #: ../../admin/view/wp-slimstat-reports.php:73
3537
  msgid "Recent Users"
3538
  msgstr "Letzte Benutzer"
3539
 
3540
+ #: ../../admin/view/wp-slimstat-reports.php:74
3541
  msgid "Top Users"
3542
  msgstr "Top-Benutzer"
3543
 
3544
+ #: ../../admin/view/wp-slimstat-reports.php:75
3545
  msgid "Traffic Sources (chart)"
3546
  msgstr "Traffic-Ursprung (Diagramm)"
3547
 
3548
+ #: ../../admin/view/wp-slimstat-reports.php:76
3549
  msgid "Summary"
3550
  msgstr "Zusammenfassung"
3551
 
3552
+ #: ../../admin/view/wp-slimstat-reports.php:80
3553
  msgid "Top Referring Search Engines"
3554
  msgstr "Top verweisende Suchmaschinen"
3555
 
3556
+ #: ../../admin/view/wp-slimstat-reports.php:81
3557
+ msgid "Spy View"
3558
+ msgstr "Aktuelle Seitenaufrufe"
 
3559
 
3560
+ #: ../../admin/view/wp-slimstat-reports.php:84
3561
+ #, fuzzy
3562
+ msgid "Recent Exit Pages"
3563
+ msgstr "Letzte Absprungseiten"
3564
 
3565
+ #: ../../admin/view/wp-slimstat-reports.php:86
3566
  msgid "Recent Posts"
3567
  msgstr "Letzte Artikel"
3568
 
3569
+ #: ../../admin/view/wp-slimstat-reports.php:87
3570
  msgid "Recent Bounce Pages"
3571
  msgstr "Letzte Absprungseiten"
3572
 
3573
+ #: ../../admin/view/wp-slimstat-reports.php:88
3574
  msgid "Recent Feeds"
3575
  msgstr "Letzte Feeds"
3576
 
3577
+ #: ../../admin/view/wp-slimstat-reports.php:89
3578
  msgid "Recent Pages Not Found"
3579
  msgstr ""
3580
 
3581
+ #: ../../admin/view/wp-slimstat-reports.php:90
3582
  msgid "Recent Internal Searches"
3583
  msgstr "Letzte interne Suchbegriffe"
3584
 
3585
+ #: ../../admin/view/wp-slimstat-reports.php:91
3586
  msgid "Top Categories"
3587
  msgstr "Top-Kategorien"
3588
 
3589
+ #: ../../admin/view/wp-slimstat-reports.php:92
3590
  msgid "Recent Outbound Links"
3591
  msgstr "Letzte ausgehende Links"
3592
 
3593
+ #: ../../admin/view/wp-slimstat-reports.php:93
3594
  msgid "Recent Events"
3595
  msgstr "Letzte Ereignisse"
3596
 
3597
+ #: ../../admin/view/wp-slimstat-reports.php:94
3598
  msgid "Top Posts"
3599
  msgstr "Top-Artikel"
3600
 
3601
+ #: ../../admin/view/wp-slimstat-reports.php:95
3602
  msgid "Top Feeds"
3603
  msgstr "Top-Feeds"
3604
 
3605
+ #: ../../admin/view/wp-slimstat-reports.php:96
3606
  msgid "Top Internal Searches"
3607
  msgstr "Top interne Suchbegriffe"
3608
 
3609
+ #: ../../admin/view/wp-slimstat-reports.php:98
3610
  msgid "Recent Categories"
3611
  msgstr "Letzte Kategorien"
3612
 
3613
+ #: ../../admin/view/wp-slimstat-reports.php:99
3614
  #, fuzzy
3615
  msgid "Top Pages Not Found"
3616
  msgstr "Top-Seiten"
3617
 
3618
+ #: ../../admin/view/wp-slimstat-reports.php:100
3619
+ #, fuzzy
3620
+ msgid "Rcent Exit Pages"
3621
+ msgstr "Letzte Absprungseiten"
3622
+
3623
+ #: ../../admin/view/wp-slimstat-reports.php:101
3624
  msgid "Top Authors"
3625
  msgstr "Top-Autoren"
3626
 
3627
+ #: ../../admin/view/wp-slimstat-reports.php:102
3628
  #, fuzzy
3629
  msgid "Top Tags"
3630
  msgstr "Top Seiten"
3631
 
3632
+ #: ../../admin/view/wp-slimstat-reports.php:103
3633
  msgid "Recent Downloads"
3634
  msgstr "Letzte Downloads"
3635
 
3636
+ #: ../../admin/view/wp-slimstat-reports.php:104
3637
  #, fuzzy
3638
  msgid "Top OutLinks and Downloads"
3639
  msgstr "Top-Downloads"
3640
 
3641
+ #: ../../admin/view/wp-slimstat-reports.php:105
3642
  msgid "Your Website"
3643
  msgstr "Ihre Webseite"
3644
 
3645
+ #: ../../admin/view/wp-slimstat-reports.php:106
3646
+ #, fuzzy
3647
+ msgid "Top Bounce Pages"
3648
+ msgstr "Absprungrate"
3649
+
3650
  #: ../../admin/view/wp-slimstat-reports.php:107
3651
+ #, fuzzy
3652
+ msgid "Top Exit Pages"
3653
+ msgstr "Top-Seiten"
3654
+
3655
+ #: ../../admin/view/wp-slimstat-reports.php:108
3656
+ #, fuzzy
3657
+ msgid "Top Entry Pages"
3658
+ msgstr "Top-Seiten"
3659
+
3660
+ #: ../../admin/view/wp-slimstat-reports.php:109
3661
  msgid "World Map"
3662
  msgstr "Weltkarte"
3663
 
3664
+ #: ../../admin/view/wp-slimstat-reports.php:110
3665
  msgid "Activity"
3666
  msgstr ""
3667
 
3668
+ #: ../../admin/view/wp-slimstat-reports.php:217
3669
  msgid "Chart controls"
3670
  msgstr "Diagramm-Einstellungen"
3671
 
3672
+ #: ../../admin/view/wp-slimstat-reports.php:217
3673
  msgid "Use your mouse wheel to zoom in and out"
3674
  msgstr "Verwende das Mausrad zum Zoomen"
3675
 
3676
+ #: ../../admin/view/wp-slimstat-reports.php:217
3677
  msgid "While zooming in, drag the chart to move to a different area"
3678
  msgstr ""
3679
  "W&auml;hrend des Zooms das Diagramm zu einer anderen Position verschieben."
3680
 
3681
+ #: ../../admin/view/wp-slimstat-reports.php:217
3682
  msgid "Double click on an empty region to reset the zoom level"
3683
  msgstr ""
3684
  "Doppelklick auf einen freien Bereich, um den Zoomlevel zur&uuml;ckzusetzen"
3685
 
3686
+ #: ../../admin/view/wp-slimstat-reports.php:233
3687
  msgid "src"
3688
  msgstr "src"
3689
 
3690
+ #: ../../admin/view/wp-slimstat-reports.php:236
3691
  msgid "serp"
3692
  msgstr "serp"
3693
 
3694
+ #: ../../admin/view/wp-slimstat-reports.php:243
 
 
 
 
3695
  msgid "Go to the referring page"
3696
  msgstr "Verweisende Seite &ouml;ffnen"
3697
 
3698
+ #: ../../admin/view/wp-slimstat-reports.php:265
3699
  msgid "Remove filter for"
3700
  msgstr "Entferne Filter f&uuml;r"
3701
 
3702
+ #: ../../admin/view/wp-slimstat-reports.php:269
3703
  msgid "Save"
3704
  msgstr ""
3705
 
3706
+ #: ../../admin/view/wp-slimstat-reports.php:272
3707
  #, fuzzy
3708
  msgid "Reset All"
3709
  msgstr "Datenbanktabellen zurücksetzen"
3710
 
3711
+ #: ../../admin/view/wp-slimstat-reports.php:276
3712
  msgid "Current filters:"
3713
  msgstr "Aktuelle Filter:"
3714
 
3715
+ #: ../../admin/view/wp-slimstat-reports.php:280
3716
  msgid "Refresh"
3717
  msgstr "Anzeige aktualisieren"
3718
 
3719
+ #: ../../admin/view/wp-slimstat-reports.php:361
3720
  #, fuzzy, php-format
3721
  msgid "Results %s - %s of %s"
3722
  msgstr "Ergbnisse filtern wo %s ist gleich %s"
3723
 
3724
+ #: ../../admin/view/wp-slimstat-reports.php:363
3725
  msgid "Refresh in"
3726
  msgstr "Anzeige aktualisieren in"
3727
 
3728
+ #: ../../admin/view/wp-slimstat-reports.php:385
3729
+ #: ../../admin/view/wp-slimstat-reports.php:397
3730
  #, php-format
3731
  msgid "Daily %s"
3732
  msgstr "Täglich %s"
3733
 
3734
+ #: ../../admin/view/wp-slimstat-reports.php:388
3735
  #, php-format
3736
  msgid "%s Minute by Minute"
3737
  msgstr "%s Minute zu Minute"
3738
 
3739
+ #: ../../admin/view/wp-slimstat-reports.php:391
3740
  #, php-format
3741
  msgid "Hourly %s"
3742
  msgstr "Stündlich %s"
3743
 
3744
+ #: ../../admin/view/wp-slimstat-reports.php:394
3745
  #, php-format
3746
  msgid "Monthly %s"
3747
  msgstr "Monatlich %s"
3748
 
3749
+ #: ../../admin/view/wp-slimstat-reports.php:506
3750
  msgid "Category ID"
3751
  msgstr "Kategorie-ID"
3752
 
3753
+ #: ../../admin/view/wp-slimstat-reports.php:539
3754
  msgid "OS Code"
3755
  msgstr "OS-Code"
3756
 
3757
+ #: ../../admin/view/wp-slimstat-reports.php:551
3758
  msgid "Referrer"
3759
  msgstr "Verweis"
3760
 
3761
+ #: ../../admin/view/wp-slimstat-reports.php:578
3762
+ #: ../../admin/view/wp-slimstat-reports.php:887
3763
+ #: ../../admin/view/wp-slimstat-reports.php:896
3764
+ #: ../../admin/view/wp-slimstat-reports.php:902
3765
+ #: ../../admin/view/wp-slimstat-reports.php:908
3766
+ #: ../../admin/view/wp-slimstat-reports.php:914
3767
+ #: ../../admin/view/wp-slimstat-reports.php:920
3768
+ #: ../../admin/view/wp-slimstat-reports.php:926
3769
+ #: ../../admin/view/wp-slimstat-reports.php:932
3770
  msgid "Hits"
3771
  msgstr "Zugriffe"
3772
 
3773
+ #: ../../admin/view/wp-slimstat-reports.php:758
3774
  msgid "Search for"
3775
  msgstr "Suche nach"
3776
 
3777
+ #: ../../admin/view/wp-slimstat-reports.php:809
3778
+ #: ../../admin/view/wp-slimstat-reports.php:819
3779
  msgid "Source"
3780
  msgstr "Ursprung"
3781
 
3782
+ #: ../../admin/view/wp-slimstat-reports.php:811
3783
  msgid "Keywords"
3784
  msgstr "Suchbegriffe"
3785
 
3786
+ #: ../../admin/view/wp-slimstat-reports.php:819
3787
  #, fuzzy, php-format
3788
  msgid "Filter results where resource equals %s"
3789
  msgstr "Ergebnisse filtern, wo die Ressource %s ist"
3790
 
3791
+ #: ../../admin/view/wp-slimstat-reports.php:820
3792
  #, fuzzy
3793
  msgid "Link Details"
3794
  msgstr "Details"
3795
 
3796
+ #: ../../admin/view/wp-slimstat-reports.php:833
3797
  msgid "Total Pageviews"
3798
  msgstr "Gesamte Seitenaufrufe"
3799
 
3800
+ #: ../../admin/view/wp-slimstat-reports.php:834
3801
  msgid "DB Size"
3802
  msgstr "Datenbankgr&ouml;&szlig;e"
3803
 
3804
+ #: ../../admin/view/wp-slimstat-reports.php:835
3805
  msgid "Tracking Active"
3806
  msgstr "Tracking aktiv"
3807
 
3808
+ #: ../../admin/view/wp-slimstat-reports.php:836
3809
  msgid "Javascript Mode"
3810
  msgstr "Tracking per JavaScript"
3811
 
3812
+ #: ../../admin/view/wp-slimstat-reports.php:837
3813
  msgid "Tracking Browser Caps"
3814
  msgstr ""
3815
 
3816
+ #: ../../admin/view/wp-slimstat-reports.php:838
3817
  msgid "Auto purge"
3818
  msgstr "autom. Datenbank-Reorg."
3819
 
3820
+ #: ../../admin/view/wp-slimstat-reports.php:838
3821
+ #: ../../admin/wp-slimstat-admin.php:994
3822
  msgid "No"
3823
  msgstr "Nein"
3824
 
3825
+ #: ../../admin/view/wp-slimstat-reports.php:839
3826
  msgid "Oldest pageview"
3827
  msgstr "&Auml;ltester Seitenaufruf"
3828
 
3829
+ #: ../../admin/view/wp-slimstat-reports.php:839
3830
  msgid "No visits"
3831
  msgstr "Keine Besuche"
3832
 
3833
+ #: ../../admin/view/wp-slimstat-reports.php:849
3834
+ #: ../../admin/view/wp-slimstat-reports.php:951
3835
  #, fuzzy
3836
  msgid ""
3837
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
3841
  "jedesmal einen 'Seitenaufruf' auf, wenn der Tracking-Code ausgef&uuml;hrt "
3842
  "wird."
3843
 
3844
+ #: ../../admin/view/wp-slimstat-reports.php:851
3845
  msgid "How many pages have been visited on average during the current period."
3846
  msgstr ""
3847
  "Wieviele Seiten wurden w&auml;hrend der aktuellen Periode durchschnittlich "
3848
  "besucht?"
3849
 
3850
+ #: ../../admin/view/wp-slimstat-reports.php:852
3851
  #, fuzzy
3852
  msgid "Average Pageviews"
3853
  msgstr "Durchschnittl. Seitenaufrufe"
3854
 
3855
+ #: ../../admin/view/wp-slimstat-reports.php:853
3856
  msgid ""
3857
  "Visitors who landed on your site after searching for a keyword on Google, "
3858
  "Yahoo, etc."
3860
  "Besucher, welche nach einer Suche nach einem Suchbegriff auf einer "
3861
  "Suchmaschine auf die Website kamen."
3862
 
3863
+ #: ../../admin/view/wp-slimstat-reports.php:854
3864
  msgid "From Search Results"
3865
  msgstr "Von Suchergebnissen"
3866
 
3867
+ #: ../../admin/view/wp-slimstat-reports.php:855
3868
  msgid ""
3869
  "Used to differentiate between multiple requests to download a file from one "
3870
  "internet address (IP) and requests originating from many distinct addresses"
3872
  "Benutzt um bei mehreren Downloadanfragen zu unterscheiden, ob sie von einer "
3873
  "oder mehreren verschiedenen Internet-Adressen (IP) stammen"
3874
 
3875
+ #: ../../admin/view/wp-slimstat-reports.php:857
 
 
 
 
 
 
 
 
3876
  msgid "Last 5 minutes"
3877
  msgstr "Letzte 5 Minuten"
3878
 
3879
+ #: ../../admin/view/wp-slimstat-reports.php:858
3880
  msgid "Last 30 minutes"
3881
  msgstr "Letzte 30 Minuten"
3882
 
3883
+ #: ../../admin/view/wp-slimstat-reports.php:868
3884
  msgid ""
3885
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3886
  "multiple times if they perform multiple visits."
3888
  "Ein Besuch ist eine Session von max. 30 Minuten. Zur&;kkehrende Besucher "
3889
  "werden bei mehrfachen Besuchen auch mehrfach gez&auml;hlt."
3890
 
3891
+ #: ../../admin/view/wp-slimstat-reports.php:869
3892
+ #: ../../admin/view/wp-slimstat-reports.php:1179
3893
+ msgid "Visits"
3894
+ msgstr "Besuche"
3895
 
3896
+ #: ../../admin/view/wp-slimstat-reports.php:870
3897
  msgid "It includes only traffic generated by human visitors."
3898
  msgstr ""
3899
 
3900
+ #: ../../admin/view/wp-slimstat-reports.php:872
3901
+ #: ../../admin/view/wp-slimstat-reports.php:963
3902
  msgid ""
3903
  "Percentage of single-page visits, i.e. visits in which the person left your "
3904
  "site from the entrance page."
3906
  "Prozentsatz von Besuchen einzelner Seiten, d.h. Besuche bei welchen der "
3907
  "Besucher die Website auf der aufgerufenen Seite wieder verlassen hat."
3908
 
3909
+ #: ../../admin/view/wp-slimstat-reports.php:873
3910
  msgid "Bounce rate"
3911
  msgstr "Absprungrate"
3912
 
3913
+ #: ../../admin/view/wp-slimstat-reports.php:874
3914
  msgid "Visitors who had previously left a comment on your blog."
3915
  msgstr ""
3916
  "Besucher, welche fr&uuml;her bereits einen Kommentar hinterlassen haben."
3917
 
3918
+ #: ../../admin/view/wp-slimstat-reports.php:875
3919
  msgid "Known visitors"
3920
  msgstr "Bekannte Besucher"
3921
 
3922
+ #: ../../admin/view/wp-slimstat-reports.php:876
3923
  msgid "Human users who visited your site only once."
3924
  msgstr "Echte Besucher, welche die Wesite nur einmal besucht haben."
3925
 
3926
+ #: ../../admin/view/wp-slimstat-reports.php:877
3927
  msgid "New visitors"
3928
  msgstr "Neue Besucher"
3929
 
3930
+ #: ../../admin/view/wp-slimstat-reports.php:878
3931
  msgid "Bots"
3932
  msgstr "Bots"
3933
 
3934
+ #: ../../admin/view/wp-slimstat-reports.php:879
3935
  msgid "Pages per visit"
3936
  msgstr "Seiten pro Besuch"
3937
 
3938
+ #: ../../admin/view/wp-slimstat-reports.php:880
 
3939
  msgid "Longest visit"
3940
  msgstr "L&auml;ngster Besuch"
3941
 
3942
+ #: ../../admin/view/wp-slimstat-reports.php:880
3943
  msgid "hits"
3944
  msgstr "Zugriff"
3945
 
3946
+ #: ../../admin/view/wp-slimstat-reports.php:898
3947
  msgid "0 - 30 seconds"
3948
  msgstr "0-30 Sekunden"
3949
 
3950
+ #: ../../admin/view/wp-slimstat-reports.php:904
3951
  msgid "31 - 60 seconds"
3952
  msgstr "31-60 Sekunden"
3953
 
3954
+ #: ../../admin/view/wp-slimstat-reports.php:910
3955
  msgid "1 - 3 minutes"
3956
  msgstr "1-3 Minuten"
3957
 
3958
+ #: ../../admin/view/wp-slimstat-reports.php:916
3959
  msgid "3 - 5 minutes"
3960
  msgstr "3-5 Minuten"
3961
 
3962
+ #: ../../admin/view/wp-slimstat-reports.php:922
3963
  msgid "5 - 7 minutes"
3964
  msgstr "5-7 Minuten"
3965
 
3966
+ #: ../../admin/view/wp-slimstat-reports.php:928
3967
  msgid "7 - 10 minutes"
3968
  msgstr "7-10 Minuten"
3969
 
3970
+ #: ../../admin/view/wp-slimstat-reports.php:934
3971
  msgid "More than 10 minutes"
3972
  msgstr "Mehr als 10 Minuten"
3973
 
3974
+ #: ../../admin/view/wp-slimstat-reports.php:943
3975
  #, fuzzy
3976
  msgid "Average time on site"
3977
  msgstr "Durchschnittl. Seitenaufrufe pro Besuch"
3978
 
3979
+ #: ../../admin/view/wp-slimstat-reports.php:953
3980
  msgid ""
3981
  "A referrer (or referring site) is the site that a visitor previously visited "
3982
  "before following a link to your site."
3984
  "Eine Herkunft (verweisende Seite) ist die Webseite welche ein Besucher vor "
3985
  "dem Besuch der eigenen Website besucht hat."
3986
 
3987
+ #: ../../admin/view/wp-slimstat-reports.php:954
3988
  msgid "Unique Referrers"
3989
  msgstr "Eindeutige Herkunft"
3990
 
3991
+ #: ../../admin/view/wp-slimstat-reports.php:955
3992
  msgid ""
3993
  "Visitors who visited the site by typing the URL directly into their browser. "
3994
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
3999
  "auch auf Besucher beziehen, welche Lesezeichen/Favoriten verwendet haben "
4000
  "oder Links in E-Mails bzw. Dokumenten gefolgt sind."
4001
 
4002
+ #: ../../admin/view/wp-slimstat-reports.php:956
4003
  msgid "Direct Pageviews"
4004
  msgstr "Direkte Seitenaufrufe"
4005
 
4006
+ #: ../../admin/view/wp-slimstat-reports.php:957
4007
  msgid ""
4008
  "Visitors who came to your site via searches on Google or some other search "
4009
  "engine."
4010
  msgstr ""
4011
  "Besucher welche über eine Suchmaschine auf die eigene Website gekommen sind."
4012
 
4013
+ #: ../../admin/view/wp-slimstat-reports.php:958
4014
  msgid "From a search result"
4015
  msgstr "Von einem Suchresultat"
4016
 
4017
+ #: ../../admin/view/wp-slimstat-reports.php:959
4018
  msgid ""
4019
  "The first page that a user views during a session. This is also known as the "
4020
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
4024
  "Die erste Seite welche ein Benutzer w&auml;hrend einer Sitzung besucht, die "
4025
  "s.g. Einstiegs- oder Landeseite."
4026
 
4027
+ #: ../../admin/view/wp-slimstat-reports.php:960
4028
  msgid "Unique Landing Pages"
4029
  msgstr "Eindeutige Einstiegsseiten"
4030
 
4031
+ #: ../../admin/view/wp-slimstat-reports.php:961
4032
  msgid "Number of single-page visits to your site over the selected period."
4033
  msgstr ""
4034
  "Anzahl der Besucher einer einzelnen Seite über die gew&auml;hlte Periode."
4035
 
4036
+ #: ../../admin/view/wp-slimstat-reports.php:962
4037
  msgid "Bounce Pages"
4038
  msgstr "Absprungrate"
4039
 
4040
+ #: ../../admin/view/wp-slimstat-reports.php:964
4041
  #, fuzzy
4042
  msgid "New Visitors Rate"
4043
  msgstr "Neue Besucher"
4044
 
4045
+ #: ../../admin/view/wp-slimstat-reports.php:965
4046
  msgid ""
4047
  "Visitors who visited the site in the last 5 minutes coming from a search "
4048
  "engine."
4050
  "Besucher welche innerhalb der letzten 5 Minuten von einer Suchmaschine "
4051
  "gekommen sind."
4052
 
4053
+ #: ../../admin/view/wp-slimstat-reports.php:966
4054
  msgid "Currently from search engines"
4055
  msgstr "Aktuell von Suchmaschinen"
4056
 
4057
+ #: ../../admin/view/wp-slimstat-reports.php:1034
4058
  msgid "Number of pages in your site included in Google's index."
4059
  msgstr ""
4060
 
4061
+ #: ../../admin/view/wp-slimstat-reports.php:1035
4062
  msgid "Google Index"
4063
  msgstr "Google-Index"
4064
 
4065
+ #: ../../admin/view/wp-slimstat-reports.php:1036
4066
  msgid "Number of pages, according to Google, that link back to your site."
4067
  msgstr ""
4068
 
4069
+ #: ../../admin/view/wp-slimstat-reports.php:1037
4070
  msgid "Google Backlinks"
4071
  msgstr ""
4072
 
4073
+ #: ../../admin/view/wp-slimstat-reports.php:1038
4074
  msgid ""
4075
  "How many times the Facebook Like button has been approximately clicked on "
4076
  "your site."
4077
  msgstr ""
4078
 
4079
+ #: ../../admin/view/wp-slimstat-reports.php:1039
4080
  msgid "Facebook Likes"
4081
  msgstr "Facebook Likes"
4082
 
4083
+ #: ../../admin/view/wp-slimstat-reports.php:1040
4084
  msgid ""
4085
  "How many times your site has been shared by someone on the social network."
4086
  msgstr ""
4087
 
4088
+ #: ../../admin/view/wp-slimstat-reports.php:1041
4089
  msgid "Facebook Shares"
4090
  msgstr ""
4091
 
4092
+ #: ../../admin/view/wp-slimstat-reports.php:1042
4093
  msgid "How many times links to your website have been clicked on Facebook."
4094
  msgstr ""
4095
 
4096
+ #: ../../admin/view/wp-slimstat-reports.php:1043
4097
  msgid "Facebook Clicks"
4098
  msgstr "Clicks bei Facebook"
4099
 
4100
+ #: ../../admin/view/wp-slimstat-reports.php:1044
4101
  msgid ""
4102
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
4103
  "traffic data."
4104
  msgstr ""
4105
 
4106
+ #: ../../admin/view/wp-slimstat-reports.php:1045
4107
  msgid "Alexa World Rank"
4108
  msgstr ""
4109
 
4110
+ #: ../../admin/view/wp-slimstat-reports.php:1046
4111
  msgid "Alexa Country Rank"
4112
  msgstr ""
4113
 
4114
+ #: ../../admin/view/wp-slimstat-reports.php:1047
4115
  msgid "Alexa Popularity"
4116
  msgstr ""
4117
 
4118
  # Unknown
4119
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4120
  msgid "c-xx"
4121
  msgstr "Unbekannt"
4122
 
4123
  # Afghanistan
4124
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4125
  msgid "c-af"
4126
  msgstr "Afghanistan"
4127
 
4128
  # Åland Islands
4129
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4130
  msgid "c-ax"
4131
  msgstr "&Aring;landinseln"
4132
 
4133
  # Albania
4134
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4135
  msgid "c-al"
4136
  msgstr "Albanien"
4137
 
4138
  # Algeria
4139
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4140
  msgid "c-dz"
4141
  msgstr "Algerien"
4142
 
4143
  # Andorra
4144
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4145
  msgid "c-ad"
4146
  msgstr "Andorra"
4147
 
4148
  # Angola
4149
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4150
  msgid "c-ao"
4151
  msgstr "Angola"
4152
 
4153
  # Anguilla
4154
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4155
  msgid "c-ai"
4156
  msgstr "Anguilla"
4157
 
4158
  # Antigua and Barbuda
4159
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4160
  msgid "c-ag"
4161
  msgstr "Antigua und Barbuda"
4162
 
4163
  # Argentina
4164
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4165
  msgid "c-ar"
4166
  msgstr "Argentinien"
4167
 
4168
  # Armenia
4169
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4170
  msgid "c-am"
4171
  msgstr "Armenien"
4172
 
4173
  # Aruba
4174
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4175
  msgid "c-aw"
4176
  msgstr "Aruba"
4177
 
4178
  # Australia
4179
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4180
  msgid "c-au"
4181
  msgstr "Australien"
4182
 
4183
  # Austria
4184
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4185
  msgid "c-at"
4186
  msgstr "&Ouml;sterreich"
4187
 
4188
  # Azerbaijan
4189
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4190
  msgid "c-az"
4191
  msgstr "Aserbaidschan"
4192
 
4193
  # Bahamas
4194
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4195
  msgid "c-bs"
4196
  msgstr "Bahamas"
4197
 
4198
  # Bahrain
4199
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4200
  msgid "c-bh"
4201
  msgstr "Bahrain"
4202
 
4203
  # Bangladesh
4204
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4205
  msgid "c-bd"
4206
  msgstr "Bangladesch"
4207
 
4208
  # Barbados
4209
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4210
  msgid "c-bb"
4211
  msgstr "Barbados"
4212
 
4213
  # Belarus
4214
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4215
  msgid "c-by"
4216
  msgstr "Wei&szlig;russland"
4217
 
4218
  # Belgium
4219
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4220
  msgid "c-be"
4221
  msgstr "Belgien"
4222
 
4223
  # Belize
4224
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4225
  msgid "c-bz"
4226
  msgstr "Belize"
4227
 
4228
  # Benin
4229
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4230
  msgid "c-bj"
4231
  msgstr "Benin"
4232
 
4233
  # Bermuda
4234
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4235
  msgid "c-bm"
4236
  msgstr "Bermuda"
4237
 
4238
  # Bhutan
4239
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4240
  msgid "c-bt"
4241
  msgstr "Bhutan"
4242
 
4243
  # Bolivia
4244
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4245
  msgid "c-bo"
4246
  msgstr "Bolivien"
4247
 
4248
  # Bosnia and Herzegovina
4249
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4250
  msgid "c-ba"
4251
  msgstr "Bosnien Herzegowina"
4252
 
4253
  # Botswana
4254
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4255
  msgid "c-bw"
4256
  msgstr "Botswana"
4257
 
4258
  # Brazil
4259
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4260
  msgid "c-br"
4261
  msgstr "Brasilien"
4262
 
4263
  # Brunei Darussalam
4264
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4265
  msgid "c-bn"
4266
  msgstr "Brunei Darussalam"
4267
 
4268
  # Bulgaria
4269
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4270
  msgid "c-bg"
4271
  msgstr "Bulgarien"
4272
 
4273
  # Burkina Faso
4274
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4275
  msgid "c-bf"
4276
  msgstr "Burkina Faso"
4277
 
4278
  # Burundi
4279
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4280
  msgid "c-bi"
4281
  msgstr "Burundi"
4282
 
4283
  # Cambodia
4284
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4285
  msgid "c-kh"
4286
  msgstr "Kambodscha"
4287
 
4288
  # Cameroon
4289
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4290
  msgid "c-cm"
4291
  msgstr "Kamerun"
4292
 
4293
  # Canada
4294
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4295
  msgid "c-ca"
4296
  msgstr "Kanada"
4297
 
4298
  # Cape Verde
4299
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4300
  msgid "c-cv"
4301
  msgstr "Kap Verde"
4302
 
4303
  # Cayman Islands
4304
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4305
  msgid "c-ky"
4306
  msgstr "Kaimaninseln"
4307
 
4308
  # Central African Republic
4309
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4310
  msgid "c-cf"
4311
  msgstr "Zentralafrika"
4312
 
4313
  # Chad
4314
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4315
  msgid "c-td"
4316
  msgstr "Tschad"
4317
 
4318
  # Chile
4319
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4320
  msgid "c-cl"
4321
  msgstr "Chile"
4322
 
4323
  # China
4324
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4325
  msgid "c-cn"
4326
  msgstr "China"
4327
 
4328
  # Colombia
4329
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4330
  msgid "c-co"
4331
  msgstr "Kolumbien"
4332
 
4333
  # Comoros
4334
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4335
  msgid "c-km"
4336
  msgstr "Komoren"
4337
 
4338
  # Congo
4339
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4340
  msgid "c-cg"
4341
  msgstr "Republik Kongo"
4342
 
4343
  # The Democratic Republic of the Congo
4344
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4345
  msgid "c-cd"
4346
  msgstr "Demokratische Republik Kongo"
4347
 
4348
  # Costa Rica
4349
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4350
  msgid "c-cr"
4351
  msgstr "Costa Rica"
4352
 
4353
  # Côte d'Ivoire
4354
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4355
  msgid "c-ci"
4356
  msgstr "Elfenbeink&uuml;ste"
4357
 
4358
  # Croatia
4359
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4360
  msgid "c-hr"
4361
  msgstr "Kroatien"
4362
 
4363
  # Cuba
4364
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4365
  msgid "c-cu"
4366
  msgstr "Kuba"
4367
 
4368
  # Cyprus
4369
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4370
  msgid "c-cy"
4371
  msgstr "Zypern"
4372
 
4373
  # Czech Republic
4374
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4375
  msgid "c-cz"
4376
  msgstr "Tschechische Republik"
4377
 
4378
  # Denmark
4379
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4380
  msgid "c-dk"
4381
  msgstr "D&auml;nemark"
4382
 
4383
  # Djibouti
4384
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4385
  msgid "c-dj"
4386
  msgstr "Dschibuti"
4387
 
4388
  # Dominica
4389
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4390
  msgid "c-dm"
4391
  msgstr "Dominica"
4392
 
4393
  # Dominican Republic
4394
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4395
  msgid "c-do"
4396
  msgstr "Dominikanische Republik"
4397
 
4398
  # Ecuador
4399
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4400
  msgid "c-ec"
4401
  msgstr "Ecuador"
4402
 
4403
  # Egypt
4404
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4405
  msgid "c-eg"
4406
  msgstr "&Auml;gypten"
4407
 
4408
  # El Salvador
4409
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4410
  msgid "c-sv"
4411
  msgstr "El Salvador"
4412
 
4413
  # Equatorial Guinea
4414
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4415
  msgid "c-gq"
4416
  msgstr "Äquatorialguinea"
4417
 
4418
  # Eritrea
4419
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4420
  msgid "c-er"
4421
  msgstr "Eritrea"
4422
 
4423
  # Estonia
4424
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4425
  msgid "c-ee"
4426
  msgstr "Estland"
4427
 
4428
  # Ethiopia
4429
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4430
  msgid "c-et"
4431
  msgstr "&Auml;thiopien"
4432
 
4433
  # Faroe Islands
4434
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4435
  msgid "c-fo"
4436
  msgstr "F&auml;r&ouml;er Inseln"
4437
 
4438
  # Falkland Islands (Malvinas)
4439
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4440
  msgid "c-fk"
4441
  msgstr "Falklandinseln (Malwinen)"
4442
 
4443
  # Fiji
4444
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4445
  msgid "c-fj"
4446
  msgstr "Republik Fidschi"
4447
 
4448
  # Finland
4449
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4450
  msgid "c-fi"
4451
  msgstr "Finnland"
4452
 
4453
  # France
4454
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4455
  msgid "c-fr"
4456
  msgstr "Franz&ouml;sische Republik"
4457
 
4458
  # French Guiana
4459
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4460
  msgid "c-gf"
4461
  msgstr "Franz&ouml;sisch-Guayana"
4462
 
4463
  # Gabon
4464
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4465
  msgid "c-ga"
4466
  msgstr "Gabun"
4467
 
4468
  # Gambia
4469
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4470
  msgid "c-gm"
4471
  msgstr "Gambia"
4472
 
4473
  # Georgia
4474
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4475
  msgid "c-ge"
4476
  msgstr "Georgien"
4477
 
4478
  # Germany
4479
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4480
  msgid "c-de"
4481
  msgstr "Bundesrepublik Deutschland"
4482
 
4483
  # Ghana
4484
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4485
  msgid "c-gh"
4486
  msgstr "Ghana"
4487
 
4488
  # Greece
4489
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4490
  msgid "c-gr"
4491
  msgstr "Griechenland"
4492
 
4493
  # Greenland
4494
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4495
  msgid "c-gl"
4496
  msgstr "Gr&ouml;nland"
4497
 
4498
  # Grenada
4499
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4500
  msgid "c-gd"
4501
  msgstr "Grenada"
4502
 
4503
  # Guadeloupe
4504
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4505
  msgid "c-gp"
4506
  msgstr "Guadeloupe"
4507
 
4508
  # Guatemala
4509
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4510
  msgid "c-gt"
4511
  msgstr "Guatemala"
4512
 
4513
  # Guinea
4514
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4515
  msgid "c-gn"
4516
  msgstr "Guinea"
4517
 
4518
  # Guinea-Bissau
4519
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4520
  msgid "c-gw"
4521
  msgstr "Guinea-Bissau"
4522
 
4523
  # Guyana
4524
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4525
  msgid "c-gy"
4526
  msgstr "Guyana"
4527
 
4528
  # Haiti
4529
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4530
  msgid "c-ht"
4531
  msgstr "Haiti"
4532
 
4533
  # Honduras
4534
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4535
  msgid "c-hn"
4536
  msgstr "Honduras"
4537
 
4538
  # Hong Kong
4539
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4540
  msgid "c-hk"
4541
  msgstr "Hong Kong"
4542
 
4543
  # Hungary
4544
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4545
  msgid "c-hu"
4546
  msgstr "Ungarn"
4547
 
4548
  # Iceland
4549
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4550
  msgid "c-is"
4551
  msgstr "Island"
4552
 
4553
  # India
4554
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4555
  msgid "c-in"
4556
  msgstr "Indien"
4557
 
4558
  # Indonesia
4559
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4560
  msgid "c-id"
4561
  msgstr "Indonesien"
4562
 
4563
  # Islamic Republic of Iran
4564
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4565
  msgid "c-ir"
4566
  msgstr "Islamische Republik Iran"
4567
 
4568
  # Iraq
4569
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4570
  msgid "c-iq"
4571
  msgstr "Irak"
4572
 
4573
  # Ireland
4574
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4575
  msgid "c-ie"
4576
  msgstr "Irland"
4577
 
4578
  # Israel
4579
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4580
  msgid "c-il"
4581
  msgstr "Israel"
4582
 
4583
  # Italy
4584
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4585
  msgid "c-it"
4586
  msgstr "Italien"
4587
 
4588
  # Jamaica
4589
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4590
  msgid "c-jm"
4591
  msgstr "Jamaika"
4592
 
4593
  # Japan
4594
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4595
  msgid "c-jp"
4596
  msgstr "Japan"
4597
 
4598
  # Jordan
4599
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4600
  msgid "c-jo"
4601
  msgstr "Jordan"
4602
 
4603
  # Kazakhstan
4604
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4605
  msgid "c-kz"
4606
  msgstr "Kasachstan"
4607
 
4608
  # Kenya
4609
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4610
  msgid "c-ke"
4611
  msgstr "Kenia"
4612
 
4613
  # Nauru
4614
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4615
  msgid "c-nr"
4616
  msgstr "Nauru"
4617
 
4618
  # Democratic People's Republic of Korea
4619
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4620
  msgid "c-kp"
4621
  msgstr "Demokratische Volksrepublik Korea"
4622
 
4623
  # Republic of Korea
4624
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4625
  msgid "c-kr"
4626
  msgstr "Republik Korea"
4627
 
4628
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4629
  msgid "c-kv"
4630
  msgstr "Komi"
4631
 
4632
  # Kuwait
4633
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4634
  msgid "c-kw"
4635
  msgstr "Kuwait"
4636
 
4637
  # Kyrgyzstan
4638
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4639
  msgid "c-kg"
4640
  msgstr "Kirgistan"
4641
 
4642
  # Lao People's Democratic Republic
4643
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4644
  msgid "c-la"
4645
  msgstr "Demokratische Volksrepublik Laos"
4646
 
4647
  # Latvia
4648
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4649
  msgid "c-lv"
4650
  msgstr "Lettland"
4651
 
4652
  # Lebanon
4653
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4654
  msgid "c-lb"
4655
  msgstr "Libanon"
4656
 
4657
  # Lesotho
4658
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4659
  msgid "c-ls"
4660
  msgstr "Lesotho"
4661
 
4662
  # Liberia
4663
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4664
  msgid "c-lr"
4665
  msgstr "Liberia"
4666
 
4667
  # Libyan Arab Jamahiriya
4668
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4669
  msgid "c-ly"
4670
  msgstr "Libyen"
4671
 
4672
  # Liechtenstein
4673
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4674
  msgid "c-li"
4675
  msgstr "Liechtenstein"
4676
 
4677
  # Lithuania
4678
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4679
  msgid "c-lt"
4680
  msgstr "Litauen"
4681
 
4682
  # Luxembourg
4683
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4684
  msgid "c-lu"
4685
  msgstr "Luxemburg"
4686
 
4687
  # The Former Yugoslav Republic of Macedonia
4688
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4689
  msgid "c-mk"
4690
  msgstr "Ehemalige Jugoslawische Republik Mazedonien"
4691
 
4692
  # Madagascar
4693
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4694
  msgid "c-mg"
4695
  msgstr "Madagaskar"
4696
 
4697
  # Malawi
4698
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4699
  msgid "c-mw"
4700
  msgstr "Malawi"
4701
 
4702
  # Malaysia
4703
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4704
  msgid "c-my"
4705
  msgstr "Malaysien"
4706
 
4707
  # Mali
4708
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4709
  msgid "c-ml"
4710
  msgstr "Mali"
4711
 
4712
  # Malta
4713
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4714
  msgid "c-mt"
4715
  msgstr "Malta"
4716
 
4717
  # Martinique
4718
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4719
  msgid "c-mq"
4720
  msgstr "Martinique"
4721
 
4722
  # Mauritania
4723
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4724
  msgid "c-mr"
4725
  msgstr "Mauritanien"
4726
 
4727
  # Mauritius
4728
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4729
  msgid "c-mu"
4730
  msgstr "Mauritius"
4731
 
4732
  # Mexico
4733
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4734
  msgid "c-mx"
4735
  msgstr "Mexiko"
4736
 
4737
  # Moldova
4738
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4739
  msgid "c-md"
4740
  msgstr "Moldawien"
4741
 
4742
  # Mongolia
4743
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4744
  msgid "c-mn"
4745
  msgstr "Mongolei"
4746
 
4747
  # Montenegro
4748
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4749
  msgid "c-me"
4750
  msgstr "Montenegro"
4751
 
4752
  # Montserrat
4753
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4754
  msgid "c-ms"
4755
  msgstr "Montserrat"
4756
 
4757
  # Morocco
4758
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4759
  msgid "c-ma"
4760
  msgstr "Marokko"
4761
 
4762
  # Mozambique
4763
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4764
  msgid "c-mz"
4765
  msgstr "Mosambik"
4766
 
4767
  # Myanmar
4768
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4769
  msgid "c-mm"
4770
  msgstr "Myanmar"
4771
 
4772
  # Namibia
4773
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4774
  msgid "c-na"
4775
  msgstr "Namibia"
4776
 
4777
  # Nepal
4778
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4779
  msgid "c-np"
4780
  msgstr "Nepal"
4781
 
4782
  # Netherlands
4783
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4784
  msgid "c-nl"
4785
  msgstr "Niederlande"
4786
 
4787
  # New Caledonia
4788
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4789
  msgid "c-nc"
4790
  msgstr "Neukaledonien"
4791
 
4792
  # New Zealand
4793
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4794
  msgid "c-nz"
4795
  msgstr "Neuseeland"
4796
 
4797
  # Nicaragua
4798
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4799
  msgid "c-ni"
4800
  msgstr "Nicaragua"
4801
 
4802
  # Niger
4803
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4804
  msgid "c-ne"
4805
  msgstr "Niger"
4806
 
4807
  # Nigeria
4808
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4809
  msgid "c-ng"
4810
  msgstr "Nigeria"
4811
 
4812
  # Norway
4813
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4814
  msgid "c-no"
4815
  msgstr "Norwegen"
4816
 
4817
  # Oman
4818
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4819
  msgid "c-om"
4820
  msgstr "Oman"
4821
 
4822
  # Pakistan
4823
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4824
  msgid "c-pk"
4825
  msgstr "Pakistan"
4826
 
4827
  # Palau
4828
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4829
  msgid "c-pw"
4830
  msgstr "Palau"
4831
 
4832
  # Occupied Palestinian Territory
4833
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4834
  msgid "c-ps"
4835
  msgstr "Palästinensische Autonomiegebiete"
4836
 
4837
  # Panama
4838
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4839
  msgid "c-pa"
4840
  msgstr "Panama"
4841
 
4842
  # Papua New Guinea
4843
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4844
  msgid "c-pg"
4845
  msgstr "Papua Neu Guinea"
4846
 
4847
  # Paraguay
4848
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4849
  msgid "c-py"
4850
  msgstr "Paraguay"
4851
 
4852
  # Peru
4853
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4854
  msgid "c-pe"
4855
  msgstr "Peru"
4856
 
4857
  # Philippines
4858
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4859
  msgid "c-ph"
4860
  msgstr "Philippinen"
4861
 
4862
  # Poland
4863
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4864
  msgid "c-pl"
4865
  msgstr "Polen"
4866
 
4867
  # Portugal
4868
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4869
  msgid "c-pt"
4870
  msgstr "Portugal"
4871
 
4872
  # Puerto Rico
4873
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4874
  msgid "c-pr"
4875
  msgstr "Puerto Rico"
4876
 
4877
  # Qatar
4878
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4879
  msgid "c-qa"
4880
  msgstr "Katar"
4881
 
4882
  # Réunion
4883
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4884
  msgid "c-re"
4885
  msgstr "Réunion"
4886
 
4887
  # Romania
4888
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4889
  msgid "c-ro"
4890
  msgstr "Rum&auml;nien"
4891
 
4892
  # Russian Federation
4893
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4894
  msgid "c-ru"
4895
  msgstr "Russische Föderation"
4896
 
4897
  # Rwanda
4898
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4899
  msgid "c-rw"
4900
  msgstr "Ruanda"
4901
 
4902
  # Saint Kitts and Nevis
4903
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4904
  msgid "c-kn"
4905
  msgstr "St. Kitts und Nevis"
4906
 
4907
  # Saint Lucia
4908
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4909
  msgid "c-lc"
4910
  msgstr "Saint Lucia"
4911
 
4912
  # Saint Martin
4913
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4914
  msgid "c-mf"
4915
  msgstr "Saint Martin"
4916
 
4917
  # Saint Vincent and the Grenadines
4918
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4919
  msgid "c-vc"
4920
  msgstr "St. Vincent und die Grenadinen"
4921
 
4922
  # Samoa
4923
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4924
  msgid "c-ws"
4925
  msgstr "Samoa"
4926
 
4927
  # Sao Tome and Principe
4928
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4929
  msgid "c-st"
4930
  msgstr "Sao Tomé und Príncipe"
4931
 
4932
  # Saudi Arabia
4933
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4934
  msgid "c-sa"
4935
  msgstr "Saudi Arabien"
4936
 
4937
  # Senegal
4938
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4939
  msgid "c-sn"
4940
  msgstr "Senegal"
4941
 
4942
  # Serbia
4943
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4944
  msgid "c-rs"
4945
  msgstr "Serbien"
4946
 
4947
  # Sierra Leone
4948
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4949
  msgid "c-sl"
4950
  msgstr "Sierra Leone"
4951
 
4952
  # Singapore
4953
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4954
  msgid "c-sg"
4955
  msgstr "Singapur"
4956
 
4957
  # Slovakia
4958
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4959
  msgid "c-sk"
4960
  msgstr "Slowakei"
4961
 
4962
  # Slovenia
4963
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4964
  msgid "c-si"
4965
  msgstr "Slowenien"
4966
 
4967
  # Solomon Islands
4968
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4969
  msgid "c-sb"
4970
  msgstr "Salomonen"
4971
 
4972
  # Somalia
4973
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4974
  msgid "c-so"
4975
  msgstr "Somalia"
4976
 
4977
  # South Africa
4978
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4979
  msgid "c-za"
4980
  msgstr "Südafrika"
4981
 
4982
  # South Georgia and the South Sandwich Islands
4983
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4984
  msgid "c-gs"
4985
  msgstr "Südgeorgien und die Südlichen Sandwichinseln"
4986
 
4987
  # Spain
4988
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4989
  msgid "c-es"
4990
  msgstr "Spanien"
4991
 
4992
  # Sri Lanka
4993
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4994
  msgid "c-lk"
4995
  msgstr "Sri Lanka"
4996
 
4997
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4998
  msgid "c-sc"
4999
  msgstr ""
5000
 
5001
  # Sudan
5002
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5003
  msgid "c-sd"
5004
  msgstr "Sudan"
5005
 
5006
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5007
  msgid "c-ss"
5008
  msgstr "Siswati"
5009
 
5010
  # Suriname
5011
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5012
  msgid "c-sr"
5013
  msgstr "Suriname"
5014
 
5015
  # Svalbard and Jan Mayen
5016
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5017
  msgid "c-sj"
5018
  msgstr "Spitzbergen und Jan Mayen"
5019
 
5020
  # Swaziland
5021
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5022
  msgid "c-sz"
5023
  msgstr "Swaziland"
5024
 
5025
  # Sweden
5026
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5027
  msgid "c-se"
5028
  msgstr "Schweden"
5029
 
5030
  # Switzerland
5031
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5032
  msgid "c-ch"
5033
  msgstr "Schweiz"
5034
 
5035
  # Syrian Arab Republic
5036
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5037
  msgid "c-sy"
5038
  msgstr "Arabische Republik Syrien"
5039
 
5040
  # Taiwan, Province of China
5041
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5042
  msgid "c-tw"
5043
  msgstr "Taiwan"
5044
 
5045
  # Tajikistan
5046
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5047
  msgid "c-tj"
5048
  msgstr "Tadschikistan"
5049
 
5050
  # United Republic of Tanzania
5051
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5052
  msgid "c-tz"
5053
  msgstr "Vereinigte Republik Tansania"
5054
 
5055
  # Thailand
5056
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5057
  msgid "c-th"
5058
  msgstr "Thailand"
5059
 
5060
  # Timor-Leste
5061
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5062
  msgid "c-tl"
5063
  msgstr "Timor-Leste"
5064
 
5065
  # Togo
5066
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5067
  msgid "c-tg"
5068
  msgstr "Togo"
5069
 
5070
  # Tonga
5071
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5072
  msgid "c-to"
5073
  msgstr "Tonga"
5074
 
5075
  # Trinidad and Tobago
5076
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5077
  msgid "c-tt"
5078
  msgstr "Trinidad und Tobago"
5079
 
5080
  # Tunisia
5081
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5082
  msgid "c-tn"
5083
  msgstr "Tunesien"
5084
 
5085
  # Turkey
5086
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5087
  msgid "c-tr"
5088
  msgstr "T&uuml;rkei"
5089
 
5090
  # Turkmenistan
5091
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5092
  msgid "c-tm"
5093
  msgstr "Turkmenistan"
5094
 
5095
  # Turks and Caicos Islands
5096
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5097
  msgid "c-tc"
5098
  msgstr "Turks- und Caicosinseln"
5099
 
5100
  # Uganda
5101
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5102
  msgid "c-ug"
5103
  msgstr "Uganda"
5104
 
5105
  # Ukraine
5106
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5107
  msgid "c-ua"
5108
  msgstr "Ukraine"
5109
 
5110
  # United Arab Emirates
5111
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5112
  msgid "c-ae"
5113
  msgstr "Vereinigte Arabische Emirate"
5114
 
5115
  # United Kingdom
5116
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5117
  msgid "c-gb"
5118
  msgstr "Vereinigtes K&ouml;nigreich"
5119
 
5120
  # United States
5121
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5122
  msgid "c-us"
5123
  msgstr "Vereinigte Staaten"
5124
 
5125
  # Uruguay
5126
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5127
  msgid "c-uy"
5128
  msgstr "Uruguay"
5129
 
5130
  # Uzbekistan
5131
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5132
  msgid "c-uz"
5133
  msgstr "Usbekistan"
5134
 
5135
  # Vanuatu
5136
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5137
  msgid "c-vu"
5138
  msgstr "Vanuatu"
5139
 
5140
  # Venezuela
5141
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5142
  msgid "c-ve"
5143
  msgstr "Venezuela"
5144
 
5145
  # Viet Nam
5146
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5147
  msgid "c-vn"
5148
  msgstr "Vietnam"
5149
 
5150
  # British Virgin Islands
5151
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5152
  msgid "c-vg"
5153
  msgstr "Jungferninseln"
5154
 
5155
  # U.S. Virgin Islands
5156
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5157
  msgid "c-vi"
5158
  msgstr "Amerikanische Jungferninseln"
5159
 
5160
  # Western Sahara
5161
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5162
  msgid "c-eh"
5163
  msgstr "Westsahara"
5164
 
5165
  # Yemen
5166
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5167
  msgid "c-ye"
5168
  msgstr "Jemen"
5169
 
5170
  # Zambia
5171
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5172
  msgid "c-zm"
5173
  msgstr "Sambia"
5174
 
5175
  # Zimbabwe
5176
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5177
  msgid "c-zw"
5178
  msgstr "Zimbabwe"
5179
 
5180
  # Guernsey
5181
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5182
  msgid "c-gg"
5183
  msgstr "Guernsey"
5184
 
5185
  # Jersey
5186
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5187
  msgid "c-je"
5188
  msgstr "Jersey"
5189
 
5190
  # Isle of Man
5191
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5192
  msgid "c-im"
5193
  msgstr "Isle of Man"
5194
 
5195
  # Maldives
5196
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5197
  msgid "c-mv"
5198
  msgstr "Malediven"
5199
 
5200
+ #: ../../admin/view/wp-slimstat-reports.php:1055
5201
  msgid "c-eu"
5202
  msgstr ""
5203
 
5204
+ #: ../../admin/view/wp-slimstat-reports.php:1144
5205
  msgid ""
5206
  "This value includes not only posts, but also custom post types, regardless "
5207
  "of their status"
5208
  msgstr ""
5209
 
5210
+ #: ../../admin/view/wp-slimstat-reports.php:1145
5211
  #, fuzzy
5212
  msgid "Content Items"
5213
  msgstr "Inhalt"
5214
 
5215
+ #: ../../admin/view/wp-slimstat-reports.php:1146
5216
  msgid "Total Comments"
5217
  msgstr "Gesamte Kommentare"
5218
 
5219
+ #: ../../admin/view/wp-slimstat-reports.php:1147
5220
  msgid "Pingbacks"
5221
  msgstr ""
5222
 
5223
+ #: ../../admin/view/wp-slimstat-reports.php:1148
5224
  msgid "Trackbacks"
5225
  msgstr ""
5226
 
5227
+ #: ../../admin/view/wp-slimstat-reports.php:1149
5228
  #, fuzzy
5229
  msgid "Avg Comments Per Post"
5230
  msgstr "Spalte bei Beitr&auml;gen hinzuf&uuml;gen"
5231
 
5232
+ #: ../../admin/view/wp-slimstat-reports.php:1150
5233
  msgid "Avg Posts Per Day"
5234
  msgstr ""
5235
 
5236
+ #: ../../admin/view/wp-slimstat-reports.php:1151
5237
  msgid "Avg Server Latency"
5238
  msgstr ""
5239
 
5240
+ #: ../../admin/view/wp-slimstat-reports.php:1152
5241
  #, fuzzy
5242
  msgid "Avg Page Load Time"
5243
  msgstr "Durchschnittl. Seitenaufrufe"
5244
 
5245
+ #: ../../admin/view/wp-slimstat-reports.php:1183
 
 
 
 
5246
  msgid "Domains"
5247
  msgstr "Dom&auml;nen"
5248
 
5249
+ #: ../../admin/wp-slimstat-admin.php:584 ../../admin/wp-slimstat-admin.php:595
5250
+ #: ../../admin/wp-slimstat-admin.php:597
 
 
 
 
5251
  #, fuzzy
5252
  msgid "SlimStat"
5253
  msgstr "&Uuml;ber WP SlimStat"
5254
 
5255
+ #: ../../admin/wp-slimstat-admin.php:679
5256
+ #, fuzzy
5257
+ msgid "Pageviews in the last "
5258
+ msgstr "Seitenaufrufe (Diagramm)"
5259
+
5260
+ #: ../../admin/wp-slimstat-admin.php:682
5261
+ #, fuzzy
5262
+ msgid "Unique IPs in the last "
5263
+ msgstr "Eindeutige interne Zugriffe"
5264
 
5265
+ #: ../../admin/wp-slimstat-admin.php:721
5266
  msgid "Show on screen"
5267
  msgstr "Anzeigen"
5268
 
5269
+ #: ../../admin/wp-slimstat-admin.php:799
 
 
 
 
5270
  msgid "Already saved"
5271
  msgstr ""
5272
 
5273
+ #: ../../admin/wp-slimstat-admin.php:807
5274
  msgid "Saved"
5275
  msgstr ""
5276
 
5277
+ #: ../../admin/wp-slimstat-admin.php:826
5278
  #, fuzzy
5279
  msgid "Delete this filter"
5280
  msgstr "Lösche Seitenaufrufe, wo"
5281
 
5282
+ #: ../../admin/wp-slimstat-admin.php:870
5283
  msgid "There was an error updating the following options:"
5284
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
5285
 
5286
+ #: ../../admin/wp-slimstat-admin.php:873
5287
  #, fuzzy
5288
  msgid "Your changes have been saved."
5289
  msgstr "Optionen erfolgreich aktualisiert."
5290
 
5291
+ #: ../../admin/wp-slimstat-admin.php:896
5292
  msgid "Save Changes"
5293
  msgstr "Änderungen speichern"
5294
 
5295
+ #: ../../admin/wp-slimstat-admin.php:912
5296
  msgid "Definitions"
5297
  msgstr "Definitionen"
5298
 
5299
+ #: ../../admin/wp-slimstat-admin.php:915
5300
  msgid "Pageview"
5301
  msgstr "Seitenaufrufe"
5302
 
5303
+ #: ../../admin/wp-slimstat-admin.php:915
5304
  #, fuzzy
5305
  msgid ""
5306
  "A request to load a single HTML file (\"page\"). This should be contrasted "
5311
  "jedesmal einen 'Seitenaufruf' auf wenn der Tracking-Code ausgef&uuml;hrt "
5312
  "wird."
5313
 
5314
+ #: ../../admin/wp-slimstat-admin.php:916
5315
  msgid "(Human) Visit"
5316
  msgstr "Echte Besuche"
5317
 
5318
+ #: ../../admin/wp-slimstat-admin.php:916
5319
  msgid ""
5320
  "A period of interaction between a visitor's browser and your website, ending "
5321
  "when the browser is closed or when the user has been inactive on that site "
5325
  "Diese endet wenn der Browser geschlossen wird oder der Besucher 30 Minuten "
5326
  "lang nicht auf der Website aktiv war"
5327
 
5328
+ #: ../../admin/wp-slimstat-admin.php:917
5329
  msgid ""
5330
  "Any user who has left a comment on your blog, and is thus identified by "
5331
  "Wordpress as a returning visitor"
5333
  "Jeder Benutzer, der einen Kommentar auf Ihrer Website hinterlassen hat und "
5334
  "damit als wiederkehrender Besucher erkannt wird."
5335
 
5336
+ #: ../../admin/wp-slimstat-admin.php:918
5337
  msgid "Unique IP"
5338
  msgstr "Eindeutige IPs"
5339
 
5340
+ #: ../../admin/wp-slimstat-admin.php:918
5341
  msgid ""
5342
  "Used to differentiate between multiple requests to download a file from one "
5343
  "internet address (IP) and requests originating from many distinct addresses; "
5349
  "Adresse von der ein Seitenaufruf stammt achtet, ist es nützlich, aber nicht "
5350
  "perfekt."
5351
 
5352
+ #: ../../admin/wp-slimstat-admin.php:919
5353
  msgid ""
5354
  "the originating IP address of a client connecting to a web server through an "
5355
  "HTTP proxy or load balancer"
5357
  "Die ursprüngliche IP-Adresse eines Clients, der sich durch einen HTTP Proxy "
5358
  "oder Load Balancer mit dem Server verbunden hat."
5359
 
5360
+ #: ../../admin/wp-slimstat-admin.php:920
5361
  msgid "Direct Traffic"
5362
  msgstr "Direkter Besuch"
5363
 
5364
+ #: ../../admin/wp-slimstat-admin.php:920
5365
  msgid ""
5366
  "All those people showing up to your Web site by typing in the URL of your "
5367
  "Web site coming or from a bookmark; some people also call this \"default "
5371
  "oder ein Lesezeichen erreichen; auch \"default traffic\" oder \"ambient "
5372
  "traffic\" genannt."
5373
 
5374
+ #: ../../admin/wp-slimstat-admin.php:921
5375
  msgid "Search Engine"
5376
  msgstr "Suchmaschinen"
5377
 
5378
+ #: ../../admin/wp-slimstat-admin.php:921
5379
  msgid ""
5380
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
5381
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
5383
  "Google, Yahoo, MSN, Ask usw.; hiwer ist sowohl organischer als auch "
5384
  "bezahlter (PPC/SEM) Traffic enthalten."
5385
 
5386
+ #: ../../admin/wp-slimstat-admin.php:922 ../../admin/wp-slimstat-admin.php:938
5387
  msgid "Keywords used by your visitors to find your website on a search engine"
5388
  msgstr "Begriffe welche von Besuchern in Suchmaschinen verwendet wurden"
5389
 
5390
+ #: ../../admin/wp-slimstat-admin.php:923
5391
  msgid "SERP"
5392
  msgstr "SERP"
5393
 
5394
+ #: ../../admin/wp-slimstat-admin.php:923
5395
  msgid ""
5396
  "Short for search engine results page, the Web page that a search engine "
5397
  "returns with the results of its search. The value shown represents your rank "
5400
  "\"Search Engine Result Pages\" - Suchmaschinenranking. Der Wert "
5401
  "repräsentiert Ihren Rang (die Postition) in den Suchergebnissen."
5402
 
5403
+ #: ../../admin/wp-slimstat-admin.php:924
5404
  msgid ""
5405
  "Any program used for accessing a website; this includes browsers, robots, "
5406
  "spiders and any other program that was used to retrieve information from the "
5410
  "usw.), 'Robots' und 'Spider' sowie jedes andere Programm welches "
5411
  "Informationen von einer Website abruft."
5412
 
5413
+ #: ../../admin/wp-slimstat-admin.php:925
5414
  msgid ""
5415
  "A link from one domain to another is said to be outbound from its source "
5416
  "anchor and inbound to its target. This report lists all the links to other "
5419
  "Ausgehende Links sind links zu einer anderen Domain. Dieser Report zeigt "
5420
  "alle Links zu anderen Websites die Ihre Besucher verfolgt haben."
5421
 
5422
+ #: ../../admin/wp-slimstat-admin.php:932
5423
  msgid "Basic Filters"
5424
  msgstr "Einfache Filter"
5425
 
5426
+ #: ../../admin/wp-slimstat-admin.php:935
5427
  msgid "User agent (Firefox, Chrome, ...)"
5428
  msgstr "Browser (Firefox, Chrome ...)"
5429
 
5430
+ #: ../../admin/wp-slimstat-admin.php:936
5431
  msgid "2-letter code (us, ru, de, it, ...)"
5432
  msgstr "Länder-Code (us, ru, de, it...)"
5433
 
5434
+ #: ../../admin/wp-slimstat-admin.php:937
5435
  msgid "IP"
5436
  msgstr "IP"
5437
 
5438
+ #: ../../admin/wp-slimstat-admin.php:937
5439
  msgid "Visitor's public IP address"
5440
  msgstr "&Ouml;ffentliche IP-Adresse des Besuchers"
5441
 
5442
+ #: ../../admin/wp-slimstat-admin.php:939
5443
  msgid ""
5444
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
5445
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
5448
  "Siehe <a target=\"_blank\" href=\"http://msdn.microsoft.com/en-us/library/"
5449
  "ee825488(v=cs.20).aspx\">Tabelle von Sprach-Kodierungen</a> "
5450
 
5451
+ #: ../../admin/wp-slimstat-admin.php:940
5452
  msgid ""
5453
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
5454
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
5458
  "gibt es auf <a href=\"http://php.net/manual/de/function.get-browser.php\" "
5459
  "target=\"_blank\">dieser Seite</a>"
5460
 
5461
+ #: ../../admin/wp-slimstat-admin.php:941
5462
  msgid "URL accessed on your site"
5463
  msgstr "URL, die auf Ihrer Seite besucht wurde"
5464
 
5465
+ #: ../../admin/wp-slimstat-admin.php:942
5466
  #, fuzzy
5467
  msgid "Complete address of the referrer page"
5468
  msgstr "Verweisende Seite &ouml;ffnen"
5469
 
5470
+ #: ../../admin/wp-slimstat-admin.php:943
5471
  msgid ""
5472
  "Visitors' names according to the cookie set by Wordpress after they leave a "
5473
  "comment"
5475
  "Besuchername laut Cookie, welches Wordpress beim hinterlassen eines "
5476
  "Kommentars anlegt"
5477
 
5478
+ #: ../../admin/wp-slimstat-admin.php:951
5479
  msgid "Advanced Filters"
5480
  msgstr "Erweiterte Filter"
5481
 
5482
+ #: ../../admin/wp-slimstat-admin.php:954
5483
  msgid "user agent version (9.0, 11, ...)"
5484
  msgstr "Browser-Version (9.0, 11, ...)"
5485
 
5486
+ #: ../../admin/wp-slimstat-admin.php:955
5487
  msgid ""
5488
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
5489
  "all others"
5491
  "1 = Suchmaschinen Crawler, 2 = Mobiles Gerät, 3 = Feed-Reader, 0 = alle "
5492
  "anderen"
5493
 
5494
+ #: ../../admin/wp-slimstat-admin.php:956
5495
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
5496
  msgstr "Farbtiefe des Monitors des Besuchers (8, 16, 24, ...)"
5497
 
5498
+ #: ../../admin/wp-slimstat-admin.php:957
5499
  msgid ""
5500
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
5501
  "values)"
5502
  msgstr ""
5503
  "Vom Browser unterstützter CSS standard (1, 2, 3 und andere ganze Zahlen)"
5504
 
5505
+ #: ../../admin/wp-slimstat-admin.php:958
5506
  msgid ""
5507
  "this field is set to <em>[pre]</em> if the resource has been accessed "
5508
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
5512
  "target=\"_blank\" href=\"https://developer.mozilla.org/en/"
5513
  "Link_prefetching_FAQ\">Link Prefetching</a> oder eine &auml;hnliche "
5514
 
5515
+ #: ../../admin/wp-slimstat-admin.php:959
5516
  msgid "author associated to that post/page when the resource was accessed"
5517
  msgstr "Der dem Artikel / der Seite zugeordnete Autor"
5518
 
5519
+ #: ../../admin/wp-slimstat-admin.php:960
5520
  msgid "ID of the category/term associated to the resource, when available"
5521
  msgstr "ID der zugeordneten Kategorie, falls vorhanden"
5522
 
5523
+ #: ../../admin/wp-slimstat-admin.php:961
5524
  msgid "visitor's originating IP address, if available"
5525
  msgstr "IP-Adresse des Besuchers, falls bekannt"
5526
 
5527
+ #: ../../admin/wp-slimstat-admin.php:962
5528
  msgid ""
5529
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
5530
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
5537
  "feed, home; F&uuml;r mehr Infos s. <a target=\"_blank\" href=\"http://codex."
5538
  "wordpress.org/Conditional_Tags\">Conditional Tags</a>."
5539
 
5540
+ #: ../../admin/wp-slimstat-admin.php:963
5541
  msgid "viewport width and height (1024x768, 800x600, ...)"
5542
  msgstr "Breite und H&ouml;he des sichtbaren Bereiches"
5543
 
5544
+ #: ../../admin/wp-slimstat-admin.php:964
5545
  msgid ""
5546
  "generally used in conjunction with <em>is not empty</em>, identifies human "
5547
  "visitors"
5549
  "Meist im Zusammenhang mit <em>nicht leer</em> verwendet, kennzeichnet echte "
5550
  "Besucher"
5551
 
5552
+ #: ../../admin/wp-slimstat-admin.php:965
5553
  msgid "Date Filters"
5554
  msgstr "Datumsfilter"
5555
 
5556
+ #: ../../admin/wp-slimstat-admin.php:965
5557
  msgid ""
5558
  "you can specify the timeframe by entering a number in the <em>interval</em> "
5559
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
5563
  "-1 erzeugt ein Intervall seit Beginn des Jahres / Monats, z.B. Tag=1, "
5564
  "Monat=1, Jahr leer, Intervall=-1 erzeugt einen 'seit Jahresbeginn' Filter."
5565
 
5566
+ #: ../../admin/wp-slimstat-admin.php:966
5567
  msgid "SERP Position"
5568
  msgstr "Suchmaschinenrang"
5569
 
5570
+ #: ../../admin/wp-slimstat-admin.php:966
5571
  msgid ""
5572
  "set the filter to Referer contains cd=N&, where N is the position you are "
5573
  "looking for"
5574
  msgstr ""
5575
  "Filter nach Herkunft mit cd=N& setzen, wobei N die gesuchte Position ist"
5576
 
5577
+ #: ../../admin/wp-slimstat-admin.php:993
5578
  msgid "Yes"
5579
  msgstr "Ja"
5580
 
5581
+ #: ../../admin/wp-slimstat-admin.php:995
5582
  msgid "Site Specific"
5583
  msgstr ""
5584
 
5585
+ #: ../../wp-slimstat.php:102
5586
+ msgid "Event must be associated to existing pageview"
5587
+ msgstr ""
5588
+
5589
+ #: ../../wp-slimstat.php:187 ../../wp-slimstat.php:422
5590
+ msgid "Pageview filtered by third-party code"
5591
+ msgstr ""
5592
+
5593
+ #: ../../wp-slimstat.php:204
5594
+ #, fuzzy
5595
+ msgid "Malformed URL"
5596
+ msgstr "Ignoriere Benutzer"
5597
 
5598
+ #: ../../wp-slimstat.php:220
5599
+ msgid "Referrer is blacklisted"
5600
+ msgstr ""
5601
+
5602
+ #: ../../wp-slimstat.php:276
5603
+ msgid "Permalink is blacklisted"
5604
+ msgstr ""
5605
+
5606
+ #: ../../wp-slimstat.php:286
5607
+ #, fuzzy
5608
+ msgid "Empty IP Address"
5609
+ msgstr "IP-Adresse"
5610
+
5611
+ #: ../../wp-slimstat.php:295
5612
+ msgid "Logged in user not tracked"
5613
+ msgstr ""
5614
+
5615
+ #: ../../wp-slimstat.php:303
5616
+ msgid "User with given capability not tracked"
5617
+ msgstr ""
5618
+
5619
+ #: ../../wp-slimstat.php:310
5620
+ msgid "User is blacklisted"
5621
+ msgstr ""
5622
+
5623
+ #: ../../wp-slimstat.php:324
5624
+ msgid "Spammer not tracked"
5625
+ msgstr ""
5626
+
5627
+ #: ../../wp-slimstat.php:355
5628
+ msgid "IP Address is blacklisted"
5629
+ msgstr ""
5630
+
5631
+ #: ../../wp-slimstat.php:373
5632
+ msgid "Country is blacklisted"
5633
+ msgstr ""
5634
+
5635
+ #: ../../wp-slimstat.php:382
5636
+ msgid "Prefetch requests are ignored"
5637
+ msgstr ""
5638
+
5639
+ #: ../../wp-slimstat.php:396
5640
+ #, fuzzy
5641
+ msgid "Bot not tracked"
5642
+ msgstr "Bot oder Crawler"
5643
+
5644
+ #: ../../wp-slimstat.php:405
5645
+ #, fuzzy
5646
+ msgid "Browser is blacklisted"
5647
+ msgstr "Browser-F&auml;higkeiten"
5648
+
5649
+ #: ../../wp-slimstat.php:438
5650
+ #, fuzzy
5651
+ msgid "Database not ready"
5652
+ msgstr "Datenbankinformation"
5653
+
5654
+ #: ../../wp-slimstat.php:1046
5655
+ msgid "Missing payload string"
5656
+ msgstr ""
5657
+
5658
+ #: ../../wp-slimstat.php:1056
5659
+ msgid "Invalid data signature (ci)"
5660
+ msgstr ""
5661
+
5662
+ #: ../../wp-slimstat.php:1066
5663
+ msgid "Invalid data signature (id)"
5664
+ msgstr ""
5665
+
5666
+ #: ../../wp-slimstat.php:1157
5667
+ #, fuzzy
5668
+ msgid "There was an error downloading the MaxMind Geolite DB:"
5669
+ msgstr "Fehler beim Aktualisieren folgender Optionen:"
5670
+
5671
+ #: ../../wp-slimstat.php:1161
5672
+ #, fuzzy
5673
+ msgid "There was an error opening the zipped MaxMind Geolite DB"
5674
+ msgstr "Fehler beim Aktualisieren folgender Optionen:"
5675
+
5676
+ #: ../../wp-slimstat.php:1165
5677
+ #, fuzzy
5678
+ msgid "There was an error opening the unzipped MaxMind Geolite DB"
5679
+ msgstr "Fehler beim Aktualisieren folgender Optionen:"
5680
+
5681
+ #~ msgid "Views"
5682
+ #~ msgstr "Letzte Aufrufe"
5683
+
5684
+ #, fuzzy
5685
+ #~ msgid "Data and Formats"
5686
+ #~ msgstr "Datum und Uhrzeit"
5687
+
5688
+ #, fuzzy
5689
+ #~ msgid "Activity Log Extended"
5690
+ #~ msgstr "Aktuell (erweitert)"
5691
 
5692
  #, fuzzy
5693
  #~ msgid ""
5694
+ #~ "Choose if you want to see outbound links listed in the Activity Log. It "
5695
+ #~ "might slow down the rendering of this report."
5696
+ #~ msgstr ""
5697
+ #~ "Wählen Sie, ob die ausgehenden Links unter Aktuell angezeigt werden "
5698
+ #~ "sollen. Dies könnte die Erstellung des Berichtes verlansamen oder Fehler "
5699
+ #~ "bei langsameren System anzeigen."
5700
+
5701
+ #, fuzzy
5702
+ #~ msgid "Ignore Classes"
5703
+ #~ msgstr "Ignoriere Benutzer"
5704
+
5705
+ #~ msgid "Performance"
5706
+ #~ msgstr "Leistung"
5707
+
5708
+ #~ msgid "Open this outbound link in a new window"
5709
+ #~ msgstr "Wegführender Link in neuem Fenster &ouml;ffnen"
5710
+
5711
+ #~ msgid "Top Landing Pages"
5712
+ #~ msgstr "Top-Einstiegsseiten"
5713
+
5714
+ #~ msgid "Average Pageviews per Visit (chart)"
5715
+ #~ msgstr "Durchschnittl. Seitenaufrufe pro Besuch (Diagramm)"
5716
+
5717
+ #~ msgid "Go to the corresponding search engine result page"
5718
+ #~ msgstr "Zugeh&ouml;rige Ergbnisseite der Suchmaschine &ouml;ffnen"
5719
+
5720
+ #~ msgid "Human visits"
5721
+ #~ msgstr "Echte Besuche"
5722
+
5723
+ #~ msgid "Avg Pageviews"
5724
+ #~ msgstr "Durchschnittl. Seitenaufrufe"
5725
+
5726
+ #~ msgid "Empty Database"
5727
+ #~ msgstr "Datenbank leeren"
5728
 
5729
  #~ msgid "Right Now"
5730
  #~ msgstr "Aktuell"
6909
  #~ msgid "Unique Pages Referred"
6910
  #~ msgstr "Eindeutige Seitenverweise"
6911
 
 
 
 
6912
  #, fuzzy
6913
  #~ msgid "Sites"
6914
  #~ msgstr "Sites"
admin/lang/wp-slimstat-en_US.mo CHANGED
Binary file
admin/lang/wp-slimstat-en_US.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
- "POT-Creation-Date: 2014-12-12 10:23-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: Get Used To IT <support@getused.to.it>\n"
7
  "Language-Team: camu <info@duechiacchiere.it>\n"
@@ -15,25 +15,25 @@ msgstr ""
15
  "X-Poedit-Bookmarks: 332,-1,-1,-1,-1,-1,-1,-1,-1,-1\n"
16
  "X-Poedit-SearchPath-0: ../..\n"
17
 
18
- #: ../../admin/config/addons.php:14
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:23
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:29 ../../admin/config/index.php:9
31
- #: ../../admin/wp-slimstat-admin.php:512 ../../admin/wp-slimstat-admin.php:529
32
- #: ../../wp-slimstat.php:1351
33
  msgid "Add-ons"
34
  msgstr ""
35
 
36
- #: ../../admin/config/addons.php:30
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 "
@@ -44,10 +44,17 @@ msgid ""
44
  msgstr ""
45
 
46
  #: ../../admin/config/addons.php:36
 
 
 
 
 
 
 
47
  msgid "Add-on"
48
  msgstr ""
49
 
50
- #: ../../admin/config/addons.php:36
51
  msgid "Description"
52
  msgstr ""
53
 
@@ -55,33 +62,34 @@ msgstr ""
55
  msgid "General"
56
  msgstr ""
57
 
58
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:45
59
- msgid "Views"
 
60
  msgstr ""
61
 
62
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:69
63
  msgid "Filters"
64
  msgstr ""
65
 
66
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:140
67
  msgid "Permissions"
68
  msgstr ""
69
 
70
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:217
71
  msgid "Advanced"
72
  msgstr ""
73
 
74
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:249
75
  msgid "Maintenance"
76
  msgstr ""
77
 
78
- #: ../../admin/config/index.php:14 ../../admin/config/index.php:147
79
- #: ../../admin/wp-slimstat-admin.php:558 ../../admin/wp-slimstat-admin.php:561
80
- #: ../../wp-slimstat.php:1354
81
  msgid "Settings"
82
  msgstr ""
83
 
84
- #: ../../admin/config/index.php:20 ../../admin/config/index.php:223
85
  msgid "Tracker"
86
  msgstr ""
87
 
@@ -162,130 +170,151 @@ msgstr ""
162
  #: ../../admin/config/index.php:28
163
  msgid ""
164
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
165
- "per post."
166
  msgstr ""
167
 
168
- #: ../../admin/config/index.php:30
169
- msgid "Database"
170
  msgstr ""
171
 
172
- #: ../../admin/config/index.php:31
173
- msgid "Delete records"
 
 
 
 
 
 
174
  msgstr ""
175
 
176
- #: ../../admin/config/index.php:31
177
  msgid ""
178
- "If database space is not an issue, you can decide to archive older records "
179
- "in another table, instead of deleting them. This way performance is "
180
- "preserved, but you will still be able to access your data at a later time, "
181
- "if needed."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
  msgstr ""
183
 
184
  #: ../../admin/config/index.php:32
 
 
 
 
185
  msgid "Retain data for"
186
  msgstr ""
187
 
188
- #: ../../admin/config/index.php:32
189
  msgid ""
190
  "Clean-up log entries older than the number of days specified here above. "
191
  "Enter <strong>0</strong> (number zero) if you want to preserve your data "
192
  "regardless of its age."
193
  msgstr ""
194
 
195
- #: ../../admin/config/index.php:32
196
  msgid "Next clean-up on"
197
  msgstr ""
198
 
199
- #: ../../admin/config/index.php:32
200
  #, php-format
201
- msgid "Entries logged on or before %s will be permanently deleted."
 
 
202
  msgstr ""
203
 
204
- #: ../../admin/config/index.php:32 ../../admin/view/index.php:100
205
- #: ../../admin/view/wp-slimstat-db.php:74
206
- #: ../../admin/view/wp-slimstat-reports.php:800
 
207
  msgid "days"
208
  msgstr ""
209
 
210
- #: ../../admin/config/index.php:47
211
- msgid "Data and Formats"
212
- msgstr ""
213
-
214
- #: ../../admin/config/index.php:48
215
- msgid "Convert IP Addresses"
216
- msgstr ""
217
-
218
- #: ../../admin/config/index.php:48
219
- msgid "Display provider names instead of IP addresses."
220
  msgstr ""
221
 
222
- #: ../../admin/config/index.php:49
223
- msgid "Number Format"
 
 
 
 
 
 
224
  msgstr ""
225
 
226
  #: ../../admin/config/index.php:49
227
- msgid "Choose the number format you want to use for your reports."
228
  msgstr ""
229
 
230
  #: ../../admin/config/index.php:50
231
- msgid "Enable SOV"
232
  msgstr ""
233
 
234
  #: ../../admin/config/index.php:50
235
- msgid ""
236
- "In linguistic typology, a subject-object-verb (SOV) language is one in which "
237
- "the subject, object, and verb of a sentence appear in that order, like in "
238
- "Japanese."
239
  msgstr ""
240
 
241
  #: ../../admin/config/index.php:51
242
- msgid "Show Display Name"
243
  msgstr ""
244
 
245
  #: ../../admin/config/index.php:51
246
  msgid ""
247
- "By default, users are listed by their usernames. Use this option to "
248
- "visualize their display names instead."
249
  msgstr ""
250
 
251
  #: ../../admin/config/index.php:52
252
- msgid "Show User Agent"
253
  msgstr ""
254
 
255
  #: ../../admin/config/index.php:52
256
  msgid ""
257
- "Choose if you want to see the browser name or a complete user agent string "
258
- "when hovering on browser icons."
259
  msgstr ""
260
 
261
  #: ../../admin/config/index.php:53
262
- msgid "Show Titles"
263
  msgstr ""
264
 
265
  #: ../../admin/config/index.php:53
266
  msgid ""
267
- "Slimstat converts your permalinks into post and page titles. Disable this "
268
- "feature if you need to see the URL in your reports."
269
  msgstr ""
270
 
271
  #: ../../admin/config/index.php:54
272
- msgid "Date Format"
273
  msgstr ""
274
 
275
  #: ../../admin/config/index.php:54
276
  msgid ""
277
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
278
- "Format</a> to use when displaying a pageview's date."
279
  msgstr ""
280
 
281
  #: ../../admin/config/index.php:55
282
- msgid "Time Format"
283
  msgstr ""
284
 
285
  #: ../../admin/config/index.php:55
286
- msgid ""
287
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
288
- "Format</a> to use when displaying a pageview's time."
289
  msgstr ""
290
 
291
  #: ../../admin/config/index.php:57
@@ -342,7 +371,7 @@ msgid ""
342
  "Enter <strong>0</strong> (number zero) to deactivate this feature."
343
  msgstr ""
344
 
345
- #: ../../admin/config/index.php:64 ../../admin/config/index.php:225
346
  msgid "seconds"
347
  msgstr ""
348
 
@@ -350,44 +379,60 @@ msgstr ""
350
  msgid "Specify the number of items in the Activity Log."
351
  msgstr ""
352
 
353
- #: ../../admin/config/index.php:66
354
- msgid "Activity Log Extended"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
355
  msgstr ""
356
 
357
- #: ../../admin/config/index.php:66
358
  msgid ""
359
- "Choose if you want to see outbound links listed in the Activity Log. It "
360
- "might slow down the rendering of this report."
 
361
  msgstr ""
362
 
363
- #: ../../admin/config/index.php:71
364
  msgid "Visitors and Known Users"
365
  msgstr ""
366
 
367
- #: ../../admin/config/index.php:72
368
  msgid "Track Registered Users"
369
  msgstr ""
370
 
371
- #: ../../admin/config/index.php:72
372
  msgid "Enable this option to track logged in users."
373
  msgstr ""
374
 
375
- #: ../../admin/config/index.php:73
376
  msgid "Blacklist by Username"
377
  msgstr ""
378
 
379
- #: ../../admin/config/index.php:73
380
  msgid ""
381
  "List all the usernames you don't want to track, separated by commas. Please "
382
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
383
  "sensitive."
384
  msgstr ""
385
 
386
- #: ../../admin/config/index.php:74
387
  msgid "Blacklist by IP Address"
388
  msgstr ""
389
 
390
- #: ../../admin/config/index.php:74
391
  msgid ""
392
  "List all the IP addresses you don't want to track, separated by commas. Each "
393
  "network <strong>must</strong> be defined using the <a href='http://en."
@@ -396,26 +441,26 @@ msgid ""
396
  "public IP and the originating IP, if available."
397
  msgstr ""
398
 
399
- #: ../../admin/config/index.php:75
400
  msgid "Blacklist by Capability"
401
  msgstr ""
402
 
403
- #: ../../admin/config/index.php:75
404
  msgid ""
405
  "Users having at least one of the <a href='http://codex.wordpress.org/"
406
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
407
  "will not be tracked. Capabilities are case-insensitive."
408
  msgstr ""
409
 
410
- #: ../../admin/config/index.php:77
411
  msgid "Profiling"
412
  msgstr ""
413
 
414
- #: ../../admin/config/index.php:78
415
  msgid "Ignore Spammers"
416
  msgstr ""
417
 
418
- #: ../../admin/config/index.php:78
419
  msgid ""
420
  "Enable this option if you don't want to track visits from users identified "
421
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -423,11 +468,23 @@ msgid ""
423
  "database."
424
  msgstr ""
425
 
426
- #: ../../admin/config/index.php:79
 
 
 
 
 
 
 
 
 
 
 
 
427
  msgid "Permalinks"
428
  msgstr ""
429
 
430
- #: ../../admin/config/index.php:79
431
  msgid ""
432
  "List all the URLs on your website that you don't want to track, separated by "
433
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -438,21 +495,21 @@ msgid ""
438
  "case-insensitive."
439
  msgstr ""
440
 
441
- #: ../../admin/config/index.php:80
442
  msgid "Countries"
443
  msgstr ""
444
 
445
- #: ../../admin/config/index.php:80
446
  msgid ""
447
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
448
  "track, separated by commas."
449
  msgstr ""
450
 
451
- #: ../../admin/config/index.php:81
452
  msgid "User Agents"
453
  msgstr ""
454
 
455
- #: ../../admin/config/index.php:81
456
  msgid ""
457
  "Browsers (user agents) you don't want to track, separated by commas. You can "
458
  "specify the browser's version adding a slash after the name (i.e. "
@@ -462,11 +519,11 @@ msgid ""
462
  "code> will match IE/7.0 and IE/8.0. Strings are case-insensitive."
463
  msgstr ""
464
 
465
- #: ../../admin/config/index.php:82
466
  msgid "Referring Sites"
467
  msgstr ""
468
 
469
- #: ../../admin/config/index.php:82
470
  msgid ""
471
  "Referring URLs that you don't want to track, separated by commas: "
472
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -476,114 +533,98 @@ msgid ""
476
  "https://)."
477
  msgstr ""
478
 
479
- #: ../../admin/config/index.php:84
480
  msgid "Internal and Outbound Links"
481
  msgstr ""
482
 
483
- #: ../../admin/config/index.php:85
484
  msgid "Track Outbound Clicks"
485
  msgstr ""
486
 
487
- #: ../../admin/config/index.php:85
488
  msgid ""
489
  "Track when your visitors click on link to external websites. This option "
490
  "required Spy Mode to be enabled."
491
  msgstr ""
492
 
493
- #: ../../admin/config/index.php:86
494
  msgid "Track Coordinates"
495
  msgstr ""
496
 
497
- #: ../../admin/config/index.php:86
498
  msgid ""
499
  "Collect mouse coordinates and other information for clicks on internal "
500
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
501
  "this information is only collected for external links."
502
  msgstr ""
503
 
504
- #: ../../admin/config/index.php:87
505
- msgid "Ignore Classes"
506
  msgstr ""
507
 
508
- #: ../../admin/config/index.php:87
509
  msgid ""
510
  "Track the event but do not invoke the callback function on links marked with "
511
- "one of these classnames (separated by comma). Useful to prevent conflicts "
512
- "with lightbox and similar libraries."
513
- msgstr ""
514
-
515
- #: ../../admin/config/index.php:88
516
- msgid "Ignore Rel"
517
- msgstr ""
518
-
519
- #: ../../admin/config/index.php:88
520
- msgid ""
521
- "Track the event but do not invoke the callback function on links having one "
522
- "of these values (separated by comma) as their <em>rel</em> attribute."
523
  msgstr ""
524
 
525
- #: ../../admin/config/index.php:89
526
- msgid "Ignore URL"
527
  msgstr ""
528
 
529
- #: ../../admin/config/index.php:89
530
  msgid ""
531
- "Track the event but do not invoke the callback function on links whose "
532
- "<em>href</em> attribute contains one of these strings (separated by comma)."
533
- msgstr ""
534
-
535
- #: ../../admin/config/index.php:91 ../../admin/config/index.php:242
536
- msgid "Miscellaneous"
537
  msgstr ""
538
 
539
- #: ../../admin/config/index.php:92
540
  msgid "Enable Privacy Mode"
541
  msgstr ""
542
 
543
- #: ../../admin/config/index.php:92
544
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
545
  msgstr ""
546
 
547
- #: ../../admin/config/index.php:93
548
  msgid "Ignore Prefetch Requests"
549
  msgstr ""
550
 
551
- #: ../../admin/config/index.php:93
552
  msgid ""
553
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
554
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
555
  "target='_blank'>Link Prefetching functionality</a>."
556
  msgstr ""
557
 
558
- #: ../../admin/config/index.php:109
559
  msgid "Ignore users (username not found)"
560
  msgstr ""
561
 
562
- #: ../../admin/config/index.php:132
563
  msgid ""
564
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
565
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
566
  msgstr ""
567
 
568
- #: ../../admin/config/index.php:142
569
- msgid "Reports"
570
- msgstr ""
571
-
572
- #: ../../admin/config/index.php:143
573
  msgid "Restrict Authors"
574
  msgstr ""
575
 
576
- #: ../../admin/config/index.php:143
577
  msgid ""
578
  "Enable this option if you want your authors to only see stats related to "
579
  "their own content."
580
  msgstr ""
581
 
582
- #: ../../admin/config/index.php:144 ../../admin/config/index.php:148
583
  msgid "Capability"
584
  msgstr ""
585
 
586
- #: ../../admin/config/index.php:144
587
  msgid ""
588
  "Specify the minimum <a href='http://codex.wordpress.org/"
589
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
@@ -593,18 +634,18 @@ msgid ""
593
  "In this case, the list has precedence over the capability."
594
  msgstr ""
595
 
596
- #: ../../admin/config/index.php:145 ../../admin/config/index.php:149
597
  msgid "Whitelist"
598
  msgstr ""
599
 
600
- #: ../../admin/config/index.php:145
601
  msgid ""
602
  "List all the users who should have access to the reports, separated by "
603
  "commas. Administrators are implicitly allowed, so you don't need to list "
604
  "them in here. Usernames are case sensitive."
605
  msgstr ""
606
 
607
- #: ../../admin/config/index.php:148
608
  msgid ""
609
  "Specify the minimum <a href='http://codex.wordpress.org/"
610
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
@@ -612,72 +653,72 @@ msgid ""
612
  "can be used to override this option for specific users."
613
  msgstr ""
614
 
615
- #: ../../admin/config/index.php:149
616
  msgid ""
617
  "List all the users who can edit these options, separated by commas. Please "
618
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
619
  "not forget to include yourself! Usernames are case sensitive."
620
  msgstr ""
621
 
622
- #: ../../admin/config/index.php:165
623
  msgid "Read access: username not found"
624
  msgstr ""
625
 
626
- #: ../../admin/config/index.php:178 ../../admin/config/index.php:209
627
  msgid ""
628
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
629
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
630
  "information"
631
  msgstr ""
632
 
633
- #: ../../admin/config/index.php:196
634
  msgid "Config access: username not found"
635
  msgstr ""
636
 
637
- #: ../../admin/config/index.php:224
638
  msgid "Detect Smoothing"
639
  msgstr ""
640
 
641
- #: ../../admin/config/index.php:224
642
  msgid ""
643
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
644
  "This option required Spy Mode to be enabled."
645
  msgstr ""
646
 
647
- #: ../../admin/config/index.php:225
648
  msgid "Session Duration"
649
  msgstr ""
650
 
651
- #: ../../admin/config/index.php:225
652
  msgid ""
653
  "How many seconds should a human session last? Google Analytics sets it to "
654
  "1800 seconds."
655
  msgstr ""
656
 
657
- #: ../../admin/config/index.php:226
658
  msgid "Extend Session"
659
  msgstr ""
660
 
661
- #: ../../admin/config/index.php:226
662
  msgid "Extend the duration of a session each time the user visits a new page."
663
  msgstr ""
664
 
665
- #: ../../admin/config/index.php:227
666
  msgid "Enable CDN"
667
  msgstr ""
668
 
669
- #: ../../admin/config/index.php:227
670
  msgid ""
671
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
672
  "by serving our tracking code from their fast and reliable network (free "
673
  "service)."
674
  msgstr ""
675
 
676
- #: ../../admin/config/index.php:228
677
  msgid "Extensions to Track"
678
  msgstr ""
679
 
680
- #: ../../admin/config/index.php:228
681
  msgid ""
682
  "List all the file extensions that you want to be treated as Downloads. "
683
  "Please note that links pointing to external resources (i.e. PDFs on a "
@@ -686,47 +727,65 @@ msgid ""
686
  "below."
687
  msgstr ""
688
 
689
- #: ../../admin/config/index.php:230
690
  msgid "External Pages"
691
  msgstr ""
692
 
693
- #: ../../admin/config/index.php:231
694
- msgid "Add the following code to all the non-WP pages you want to track"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
695
  msgstr ""
696
 
697
- #: ../../admin/config/index.php:243
698
  msgid "Debug Mode"
699
  msgstr ""
700
 
701
- #: ../../admin/config/index.php:243
702
  msgid "Display the SQL queries used to retrieve the data."
703
  msgstr ""
704
 
705
- #: ../../admin/config/index.php:244
706
  msgid "IP Lookup"
707
  msgstr ""
708
 
709
- #: ../../admin/config/index.php:244
710
  msgid "Customize the Geolocation service to be used in the reports."
711
  msgstr ""
712
 
713
- #: ../../admin/config/index.php:245
714
  msgid "Custom CSS"
715
  msgstr ""
716
 
717
- #: ../../admin/config/index.php:245
718
  msgid ""
719
  "Paste here your custom stylesheet to personalize the way your reports look. "
720
- "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
721
- "target='_blank'>Check the FAQ</a> for more information on how to use this "
722
- "setting."
 
723
  msgstr ""
724
 
725
- #: ../../admin/config/index.php:246
726
  msgid "Enable UAN"
727
  msgstr ""
728
 
729
- #: ../../admin/config/index.php:246
730
  msgid ""
731
  "Send anonymous data about user agents to our server for analysis. This "
732
  "allows us to contribute to the <a href='http://browscap.org/' "
@@ -735,247 +794,345 @@ msgid ""
735
  "ads network. No worries, your site will not be affected in any way."
736
  msgstr ""
737
 
738
- #: ../../admin/config/maintenance.php:20
739
- msgid "Your Slimstat tables have been successfully converted to InnoDB."
 
 
740
  msgstr ""
741
 
742
- #: ../../admin/config/maintenance.php:30
743
- msgid "records deleted from your database."
744
  msgstr ""
745
 
746
- #: ../../admin/config/maintenance.php:37
747
- msgid "All the records were successfully deleted."
748
  msgstr ""
749
 
750
- #: ../../admin/config/maintenance.php:42
751
- msgid "All the archived records were successfully deleted."
752
  msgstr ""
753
 
754
  #: ../../admin/config/maintenance.php:51
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  msgid "All the archived records were successfully restored."
756
  msgstr ""
757
 
758
- #: ../../admin/config/maintenance.php:55
759
  msgid "Your reports were successfully restored to their default arrangement."
760
  msgstr ""
761
 
762
- #: ../../admin/config/maintenance.php:62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
763
  msgid ""
764
- "Congrats! Slimstat is now optimized for <a href=\"http://www.youtube.com/"
765
- "watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
 
 
 
 
 
 
 
 
 
 
 
 
766
  msgstr ""
767
 
768
- #: ../../admin/config/maintenance.php:69
769
  msgid ""
770
- "Indexing has been successfully disabled. Enjoy the extra database space you "
771
- "just gained!"
 
 
 
 
772
  msgstr ""
773
 
774
- #: ../../admin/config/maintenance.php:101
775
  msgid "Database Information"
776
  msgstr ""
777
 
778
- #: ../../admin/config/maintenance.php:104
779
  msgid "Engine"
780
  msgstr ""
781
 
782
- #: ../../admin/config/maintenance.php:108
783
  msgid "switch to InnoDB"
784
  msgstr ""
785
 
786
- #: ../../admin/config/maintenance.php:119
787
  msgid "records"
788
  msgstr ""
789
 
790
- #: ../../admin/config/maintenance.php:124
791
  msgid "Data Maintenance"
792
  msgstr ""
793
 
794
- #: ../../admin/config/maintenance.php:127
795
  msgid "Delete pageviews where"
796
  msgstr ""
797
 
798
- #: ../../admin/config/maintenance.php:141 ../../admin/view/index.php:15
799
  msgid "equals"
800
  msgstr ""
801
 
802
- #: ../../admin/config/maintenance.php:142 ../../admin/view/index.php:16
803
  msgid "is not equal to"
804
  msgstr ""
805
 
806
- #: ../../admin/config/maintenance.php:143 ../../admin/view/index.php:17
807
  msgid "contains"
808
  msgstr ""
809
 
810
- #: ../../admin/config/maintenance.php:144 ../../admin/view/index.php:18
 
 
 
 
811
  msgid "does not contain"
812
  msgstr ""
813
 
814
- #: ../../admin/config/maintenance.php:145 ../../admin/view/index.php:19
815
  msgid "starts with"
816
  msgstr ""
817
 
818
- #: ../../admin/config/maintenance.php:146 ../../admin/view/index.php:20
819
  msgid "ends with"
820
  msgstr ""
821
 
822
- #: ../../admin/config/maintenance.php:147 ../../admin/view/index.php:21
823
  msgid "sounds like"
824
  msgstr ""
825
 
826
- #: ../../admin/config/maintenance.php:148 ../../admin/view/index.php:22
827
  msgid "is greater than"
828
  msgstr ""
829
 
830
- #: ../../admin/config/maintenance.php:149 ../../admin/view/index.php:23
831
  msgid "is less than"
832
  msgstr ""
833
 
834
- #: ../../admin/config/maintenance.php:150 ../../admin/view/index.php:25
835
  msgid "matches"
836
  msgstr ""
837
 
838
- #: ../../admin/config/maintenance.php:151 ../../admin/view/index.php:26
839
  msgid "does not match"
840
  msgstr ""
841
 
842
- #: ../../admin/config/maintenance.php:152 ../../admin/view/index.php:27
843
  msgid "is empty"
844
  msgstr ""
845
 
846
- #: ../../admin/config/maintenance.php:153 ../../admin/view/index.php:28
847
  msgid "is not empty"
848
  msgstr ""
849
 
850
- #: ../../admin/config/maintenance.php:156 ../../admin/view/index.php:40
851
- #: ../../admin/view/index.php:103
852
  msgid "Apply"
853
  msgstr ""
854
 
855
- #: ../../admin/config/maintenance.php:157
856
  msgid ""
857
  "Are you sure you want to PERMANENTLY delete these records from your database?"
858
  msgstr ""
859
 
860
- #: ../../admin/config/maintenance.php:162
861
- msgid "Truncate Tables"
862
- msgstr ""
863
-
864
- #: ../../admin/config/maintenance.php:165
865
  msgid ""
866
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
867
  "database?"
868
  msgstr ""
869
 
870
- #: ../../admin/config/maintenance.php:165
871
  msgid "Delete All Records"
872
  msgstr ""
873
 
874
- #: ../../admin/config/maintenance.php:166
875
  msgid ""
876
  "Erase all the information collected so far by Slimstat, including the "
877
  "archive. This operation <strong>does not</strong> reset your settings."
878
  msgstr ""
879
 
880
- #: ../../admin/config/maintenance.php:170
881
- msgid "Restore archive"
882
- msgstr ""
883
-
884
- #: ../../admin/config/maintenance.php:173
885
  msgid "Are you sure you want to restore all the archived pageviews?"
886
  msgstr ""
887
 
888
- #: ../../admin/config/maintenance.php:173
889
- msgid "Get 'em back"
890
  msgstr ""
891
 
892
- #: ../../admin/config/maintenance.php:174
893
  msgid ""
894
  "Move all the archived pageviews back to the main Slimstat table. Please note "
895
  "that, unless you disabled the daily purge, this data will be archived again "
896
  "at the next scheduled clean-up."
897
  msgstr ""
898
 
899
- #: ../../admin/config/maintenance.php:178
900
- msgid "Empty Archive"
901
- msgstr ""
902
-
903
- #: ../../admin/config/maintenance.php:181
904
  msgid ""
905
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
906
  "archive?"
907
  msgstr ""
908
 
909
- #: ../../admin/config/maintenance.php:181
910
  msgid "Delete Archive"
911
  msgstr ""
912
 
913
- #: ../../admin/config/maintenance.php:182
914
  msgid "Erase all the archived records. This operation cannot be undone."
915
  msgstr ""
916
 
917
- #: ../../admin/config/maintenance.php:186
918
- msgid "Performance"
919
- msgstr ""
920
-
921
- #: ../../admin/config/maintenance.php:189
922
  msgid "Improve Performance"
923
  msgstr ""
924
 
925
- #: ../../admin/config/maintenance.php:190
926
  msgid ""
927
  "Please note that you will need about 30% more DB space to store the extra "
928
  "information required."
929
  msgstr ""
930
 
931
- #: ../../admin/config/maintenance.php:194
932
  msgid "Save DB Space"
933
  msgstr ""
934
 
935
- #: ../../admin/config/maintenance.php:195
936
  msgid ""
937
  "Please note that by removing table indexes, Slimstat's performance will be "
938
  "affected."
939
  msgstr ""
940
 
941
- #: ../../admin/config/maintenance.php:200
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
942
  msgid "Import and Export"
943
  msgstr ""
944
 
945
- #: ../../admin/config/maintenance.php:204
946
  msgid ""
947
  "Here below you can find the current configuration string for Slimstat. You "
948
- "can update your settings by pasting a new string here below and clicking on "
949
- "Import."
950
  msgstr ""
951
 
952
- #: ../../admin/config/maintenance.php:209
953
  msgid "Import"
954
  msgstr ""
955
 
956
- #: ../../admin/config/maintenance.php:210
957
  msgid "Are you sure you want to OVERWRITE your current settings?"
958
  msgstr ""
959
 
960
- #: ../../admin/lang/dynamic_strings.php:3
961
- msgid "xx"
962
- msgstr "Unknown"
963
 
964
- #: ../../admin/lang/dynamic_strings.php:4
965
- msgid "unknown"
966
- msgstr "Unknown"
967
 
968
- #: ../../admin/lang/dynamic_strings.php:5
969
- msgid "win8.1"
970
- msgstr "Windows 8.1"
971
 
972
- #: ../../admin/lang/dynamic_strings.php:6
973
- msgid "win8"
974
- msgstr "Windows 8"
 
975
 
976
- #: ../../admin/lang/dynamic_strings.php:7
977
- msgid "win7"
978
- msgstr "Windows 7"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
979
 
980
  #: ../../admin/lang/dynamic_strings.php:8
981
  msgid "winvista"
@@ -1142,1313 +1299,1337 @@ msgid "winphone7"
1142
  msgstr "Windows Phone"
1143
 
1144
  #: ../../admin/lang/dynamic_strings.php:49
 
 
 
 
 
 
 
 
 
 
 
 
1145
  msgid "wince"
1146
  msgstr "Windows CE"
1147
 
1148
- #: ../../admin/lang/dynamic_strings.php:50
1149
  msgid "symbianos"
1150
  msgstr "Symbian OS"
1151
 
1152
- #: ../../admin/lang/dynamic_strings.php:51
1153
  msgid "blackberry os"
1154
  msgstr "BlackBerry OS"
1155
 
1156
- #: ../../admin/lang/dynamic_strings.php:52
1157
  msgid "webos"
1158
  msgstr "WebOS"
1159
 
1160
- #: ../../admin/lang/dynamic_strings.php:53
1161
  msgid "p-and"
1162
  msgstr "Android"
1163
 
1164
- #: ../../admin/lang/dynamic_strings.php:54
1165
  msgid "p-bla"
1166
  msgstr "BlackBerry"
1167
 
1168
- #: ../../admin/lang/dynamic_strings.php:55
1169
  msgid "p-chr"
1170
  msgstr "Chrome OS"
1171
 
1172
- #: ../../admin/lang/dynamic_strings.php:56
1173
  msgid "p-fre"
1174
  msgstr "Linux FreeBSD"
1175
 
1176
- #: ../../admin/lang/dynamic_strings.php:57
1177
  msgid "p-ios"
1178
  msgstr "Apple iOS"
1179
 
1180
- #: ../../admin/lang/dynamic_strings.php:58
1181
  msgid "p-jav"
1182
  msgstr "Java-based OS"
1183
 
1184
- #: ../../admin/lang/dynamic_strings.php:59
1185
  msgid "p-lin"
1186
  msgstr "Linux"
1187
 
1188
- #: ../../admin/lang/dynamic_strings.php:60
1189
  msgid "p-mac"
1190
  msgstr "Apple"
1191
 
1192
- #: ../../admin/lang/dynamic_strings.php:61
1193
  msgid "p-sym"
1194
  msgstr "Symbian OS"
1195
 
1196
- #: ../../admin/lang/dynamic_strings.php:62
1197
  msgid "p-unk"
1198
  msgstr "Unknown"
1199
 
1200
- #: ../../admin/lang/dynamic_strings.php:63
1201
  msgid "p-win"
1202
  msgstr "Microsoft"
1203
 
1204
- #: ../../admin/lang/dynamic_strings.php:64
1205
  msgid "powertv"
1206
  msgstr "PowerTV"
1207
 
1208
- #: ../../admin/lang/dynamic_strings.php:65
1209
  msgid "acrobat"
1210
  msgstr "Acrobat Reader"
1211
 
1212
- #: ../../admin/lang/dynamic_strings.php:66
1213
  msgid "director"
1214
  msgstr "Macromedia Director"
1215
 
1216
- #: ../../admin/lang/dynamic_strings.php:67
1217
  msgid "flash"
1218
  msgstr "Adobe Flash Player"
1219
 
1220
- #: ../../admin/lang/dynamic_strings.php:68
1221
  msgid "mediaplayer"
1222
  msgstr "Microsoft Media Player"
1223
 
1224
- #: ../../admin/lang/dynamic_strings.php:69
1225
  msgid "quicktime"
1226
  msgstr "QuickTime"
1227
 
1228
- #: ../../admin/lang/dynamic_strings.php:70
1229
  msgid "real"
1230
  msgstr "Real Player"
1231
 
1232
- #: ../../admin/lang/dynamic_strings.php:71
1233
  msgid "silverlight"
1234
  msgstr "Microsoft Silverlight"
1235
 
1236
  # Afrikaans
1237
- #: ../../admin/lang/dynamic_strings.php:72
1238
  msgid "l-af"
1239
  msgstr "Afrikaans"
1240
 
1241
  # Afrikaans
1242
- #: ../../admin/lang/dynamic_strings.php:73
1243
  msgid "l-af-za"
1244
  msgstr "Afrikaans (South Africa)"
1245
 
1246
  # Arabic
1247
- #: ../../admin/lang/dynamic_strings.php:74
1248
  msgid "l-ar"
1249
  msgstr "Arabic"
1250
 
1251
  # Arabic
1252
- #: ../../admin/lang/dynamic_strings.php:75
1253
  msgid "l-ar-ae"
1254
  msgstr "Arabic (U.A.E.)"
1255
 
1256
  # Arabic
1257
- #: ../../admin/lang/dynamic_strings.php:76
1258
  msgid "l-ar-bh"
1259
  msgstr "Arabic (Bahrain)"
1260
 
1261
  # Arabic
1262
- #: ../../admin/lang/dynamic_strings.php:77
1263
  msgid "l-ar-dz"
1264
  msgstr "Arabic (Algeria)"
1265
 
1266
  # Arabic
1267
- #: ../../admin/lang/dynamic_strings.php:78
1268
  msgid "l-ar-eg"
1269
  msgstr "Arabic (Egypt)"
1270
 
1271
  # Arabic
1272
- #: ../../admin/lang/dynamic_strings.php:79
1273
  msgid "l-ar-iq"
1274
  msgstr "Arabic (Iraq)"
1275
 
1276
  # Arabic
1277
- #: ../../admin/lang/dynamic_strings.php:80
1278
  msgid "l-ar-jo"
1279
  msgstr "Arabic (Jordan)"
1280
 
1281
  # Arabic
1282
- #: ../../admin/lang/dynamic_strings.php:81
1283
  msgid "l-ar-kw"
1284
  msgstr "Arabic (Kuwait)"
1285
 
1286
  # Arabic
1287
- #: ../../admin/lang/dynamic_strings.php:82
1288
  msgid "l-ar-lb"
1289
  msgstr "Arabic (Lebanon)"
1290
 
1291
  # Arabic
1292
- #: ../../admin/lang/dynamic_strings.php:83
1293
  msgid "l-ar-ly"
1294
  msgstr "Arabic (Libya)"
1295
 
1296
  # Arabic
1297
- #: ../../admin/lang/dynamic_strings.php:84
1298
  msgid "l-ar-ma"
1299
  msgstr "Arabic (Morocco)"
1300
 
1301
  # Arabic
1302
- #: ../../admin/lang/dynamic_strings.php:85
1303
  msgid "l-ar-om"
1304
  msgstr "Arabic (Oman)"
1305
 
1306
  # Arabic
1307
- #: ../../admin/lang/dynamic_strings.php:86
1308
  msgid "l-ar-qa"
1309
  msgstr "Arabic (Qatar)"
1310
 
1311
  # Arabic
1312
- #: ../../admin/lang/dynamic_strings.php:87
1313
  msgid "l-ar-sa"
1314
  msgstr "Arabic (Saudi Arabia)"
1315
 
1316
  # Arabic
1317
- #: ../../admin/lang/dynamic_strings.php:88
1318
  msgid "l-ar-sy"
1319
  msgstr "Arabic (Syria)"
1320
 
1321
  # Arabic
1322
- #: ../../admin/lang/dynamic_strings.php:89
1323
  msgid "l-ar-tn"
1324
  msgstr "Arabic (Tunisia)"
1325
 
1326
  # Arabic
1327
- #: ../../admin/lang/dynamic_strings.php:90
1328
  msgid "l-ar-ye"
1329
  msgstr "Arabic (Yemen)"
1330
 
1331
  # Azerbaijani
1332
- #: ../../admin/lang/dynamic_strings.php:91
1333
  msgid "l-az"
1334
  msgstr "Azerbaijani"
1335
 
1336
  # Azerbaijani
1337
- #: ../../admin/lang/dynamic_strings.php:92
1338
  msgid "l-az-az"
1339
  msgstr "Azeri (Latin)"
1340
 
1341
  # Belarusian
1342
- #: ../../admin/lang/dynamic_strings.php:93
1343
  msgid "l-be"
1344
  msgstr "Belarusian"
1345
 
1346
  # Belarusian
1347
- #: ../../admin/lang/dynamic_strings.php:94
1348
  msgid "l-be-by"
1349
  msgstr "Belarusian (Belarus)"
1350
 
1351
  # Bulgarian
1352
- #: ../../admin/lang/dynamic_strings.php:95
1353
  msgid "l-bg"
1354
  msgstr "Bulgarian"
1355
 
1356
  # Bulgarian
1357
- #: ../../admin/lang/dynamic_strings.php:96
1358
  msgid "l-bg-bg"
1359
  msgstr "Bulgarian (Bulgaria)"
1360
 
1361
  # Bosnian
1362
- #: ../../admin/lang/dynamic_strings.php:97
1363
  msgid "l-bs-ba"
1364
  msgstr "Bosnian"
1365
 
1366
  # Catalan; Valencian
1367
- #: ../../admin/lang/dynamic_strings.php:98
1368
  msgid "l-ca"
1369
  msgstr "Catalan"
1370
 
1371
  # Catalan; Valencian
1372
- #: ../../admin/lang/dynamic_strings.php:99
1373
  msgid "l-ca-es"
1374
  msgstr "Catalan; Valencian"
1375
 
1376
  # Czech
1377
- #: ../../admin/lang/dynamic_strings.php:100
1378
  msgid "l-cs"
1379
  msgstr "Czech"
1380
 
1381
  # Czech
1382
- #: ../../admin/lang/dynamic_strings.php:101
1383
  msgid "l-cs-cz"
1384
  msgstr "Czech (Czech Republic)"
1385
 
1386
  # Welsh
1387
- #: ../../admin/lang/dynamic_strings.php:102
1388
  msgid "l-cy"
1389
  msgstr "Welsh"
1390
 
1391
  # Welsh
1392
- #: ../../admin/lang/dynamic_strings.php:103
1393
  msgid "l-cy-gb"
1394
  msgstr "Welsh (UK)"
1395
 
1396
  # Danish
1397
- #: ../../admin/lang/dynamic_strings.php:104
1398
  msgid "l-da"
1399
  msgstr "Danish"
1400
 
1401
  # Danish
1402
- #: ../../admin/lang/dynamic_strings.php:105
1403
  msgid "l-da-dk"
1404
  msgstr "Danish (Denmark)"
1405
 
1406
  # German
1407
- #: ../../admin/lang/dynamic_strings.php:106
1408
  msgid "l-de"
1409
  msgstr "German"
1410
 
1411
  # German
1412
- #: ../../admin/lang/dynamic_strings.php:107
1413
  msgid "l-de-at"
1414
  msgstr "German (Austria)"
1415
 
1416
  # German
1417
- #: ../../admin/lang/dynamic_strings.php:108
1418
  msgid "l-de-ch"
1419
  msgstr "German (Switzerland)"
1420
 
1421
  # German
1422
- #: ../../admin/lang/dynamic_strings.php:109
1423
  msgid "l-de-de"
1424
  msgstr "German (Germany)"
1425
 
1426
  # German
1427
- #: ../../admin/lang/dynamic_strings.php:110
1428
  msgid "l-de-li"
1429
  msgstr "German (Liechtenstein)"
1430
 
1431
  # German
1432
- #: ../../admin/lang/dynamic_strings.php:111
1433
  msgid "l-de-lu"
1434
  msgstr "German (Luxembourg)"
1435
 
1436
  # Dhivehi; Divehi; Maldivian
1437
- #: ../../admin/lang/dynamic_strings.php:112
1438
  msgid "l-dv"
1439
  msgstr "Dhivehi; Divehi; Maldivian"
1440
 
1441
  # Dhivehi; Divehi; Maldivian
1442
- #: ../../admin/lang/dynamic_strings.php:113
1443
  msgid "l-dv-mv"
1444
  msgstr "Maldivian"
1445
 
1446
  # Modern Greek (1453-)
1447
- #: ../../admin/lang/dynamic_strings.php:114
1448
  msgid "l-el"
1449
  msgstr "Greek"
1450
 
1451
  # Modern Greek (1453-)
1452
- #: ../../admin/lang/dynamic_strings.php:115
1453
  msgid "l-el-gr"
1454
  msgstr "Greek (Greece)"
1455
 
1456
  # English
1457
- #: ../../admin/lang/dynamic_strings.php:116
1458
  msgid "l-en"
1459
  msgstr "English"
1460
 
1461
  # English
1462
- #: ../../admin/lang/dynamic_strings.php:117
1463
  msgid "l-en-au"
1464
  msgstr "English (Australia)"
1465
 
1466
  # English
1467
- #: ../../admin/lang/dynamic_strings.php:118
1468
  msgid "l-en-bz"
1469
  msgstr "English (Belize)"
1470
 
1471
  # English
1472
- #: ../../admin/lang/dynamic_strings.php:119
1473
  msgid "l-en-ca"
1474
  msgstr "English (Canada)"
1475
 
1476
  # English
1477
- #: ../../admin/lang/dynamic_strings.php:120
1478
  msgid "l-en-cb"
1479
  msgstr "English (Caribbean)"
1480
 
1481
  # English
1482
- #: ../../admin/lang/dynamic_strings.php:121
1483
  msgid "l-en-gb"
1484
  msgstr "English (Great Britain)"
1485
 
1486
  # English
1487
- #: ../../admin/lang/dynamic_strings.php:122
1488
  msgid "l-en-ie"
1489
  msgstr "English (Ireland)"
1490
 
1491
  # English
1492
- #: ../../admin/lang/dynamic_strings.php:123
1493
  msgid "l-en-jm"
1494
  msgstr "English (Jamaica)"
1495
 
1496
  # English
1497
- #: ../../admin/lang/dynamic_strings.php:124
1498
  msgid "l-en-nz"
1499
  msgstr "English (New Zealand)"
1500
 
1501
  # English
1502
- #: ../../admin/lang/dynamic_strings.php:125
1503
  msgid "l-en-ph"
1504
  msgstr "English (Philippines)"
1505
 
1506
  # English
1507
- #: ../../admin/lang/dynamic_strings.php:126
1508
  msgid "l-en-tt"
1509
  msgstr "English (Trinidad and Tobago)"
1510
 
1511
  # English
1512
- #: ../../admin/lang/dynamic_strings.php:127
1513
  msgid "l-en-us"
1514
  msgstr "English (USA)"
1515
 
1516
  # English
1517
- #: ../../admin/lang/dynamic_strings.php:128
1518
  msgid "l-en-za"
1519
  msgstr "English (South Africa)"
1520
 
1521
  # English
1522
- #: ../../admin/lang/dynamic_strings.php:129
1523
  msgid "l-en-zw"
1524
  msgstr "English (Zimbabwe)"
1525
 
1526
  # Esperanto
1527
- #: ../../admin/lang/dynamic_strings.php:130
1528
  msgid "l-eo"
1529
  msgstr "Esperanto"
1530
 
1531
  # Spanish; Castilian
1532
- #: ../../admin/lang/dynamic_strings.php:131
1533
  msgid "l-es"
1534
  msgstr "Spanish"
1535
 
1536
  # Spanish; Castilian
1537
- #: ../../admin/lang/dynamic_strings.php:132
1538
  msgid "l-es-ar"
1539
  msgstr "Spanish (Argentina)"
1540
 
1541
  # Spanish; Castilian
1542
- #: ../../admin/lang/dynamic_strings.php:133
1543
  msgid "l-es-bo"
1544
  msgstr "Spanish (Bolivia)"
1545
 
1546
  # Spanish; Castilian
1547
- #: ../../admin/lang/dynamic_strings.php:134
1548
  msgid "l-es-cl"
1549
  msgstr "Spanish (Chile)"
1550
 
1551
  # Spanish; Castilian
1552
- #: ../../admin/lang/dynamic_strings.php:135
1553
  msgid "l-es-co"
1554
  msgstr "Spanish (Colombia)"
1555
 
1556
  # Spanish; Castilian
1557
- #: ../../admin/lang/dynamic_strings.php:136
1558
  msgid "l-es-cr"
1559
  msgstr "Spanish (Costa Rica)"
1560
 
1561
  # Spanish; Castilian
1562
- #: ../../admin/lang/dynamic_strings.php:137
1563
  msgid "l-es-do"
1564
  msgstr "Spanish (Dominican Republic)"
1565
 
1566
  # Spanish; Castilian
1567
- #: ../../admin/lang/dynamic_strings.php:138
1568
  msgid "l-es-ec"
1569
  msgstr "Spanish (Ecuador)"
1570
 
1571
  # Spanish; Castilian
1572
- #: ../../admin/lang/dynamic_strings.php:139
1573
  msgid "l-es-es"
1574
  msgstr "Spanish (Spain)"
1575
 
1576
  # Spanish; Castilian
1577
- #: ../../admin/lang/dynamic_strings.php:140
1578
  msgid "l-es-gt"
1579
  msgstr "Spanish (Guatemala)"
1580
 
1581
  # Spanish; Castilian
1582
- #: ../../admin/lang/dynamic_strings.php:141
1583
  msgid "l-es-hn"
1584
  msgstr "Spanish (Honduras)"
1585
 
1586
  # Spanish; Castilian
1587
- #: ../../admin/lang/dynamic_strings.php:142
1588
  msgid "l-es-mx"
1589
  msgstr "Spanish (Mexico)"
1590
 
1591
  # Spanish; Castilian
1592
- #: ../../admin/lang/dynamic_strings.php:143
1593
  msgid "l-es-ni"
1594
  msgstr "Spanish (Nicaragua)"
1595
 
1596
  # Spanish; Castilian
1597
- #: ../../admin/lang/dynamic_strings.php:144
1598
  msgid "l-es-pa"
1599
  msgstr "Spanish (Panama)"
1600
 
1601
  # Spanish; Castilian
1602
- #: ../../admin/lang/dynamic_strings.php:145
1603
  msgid "l-es-pe"
1604
  msgstr "Spanish (Peru)"
1605
 
1606
  # Spanish; Castilian
1607
- #: ../../admin/lang/dynamic_strings.php:146
1608
  msgid "l-es-pr"
1609
  msgstr "Spanish (Puerto Rico)"
1610
 
1611
  # Spanish; Castilian
1612
- #: ../../admin/lang/dynamic_strings.php:147
1613
  msgid "l-es-py"
1614
  msgstr "Spanish (Paraguay)"
1615
 
1616
  # Spanish; Castilian
1617
- #: ../../admin/lang/dynamic_strings.php:148
1618
  msgid "l-es-sv"
1619
  msgstr "Spanish (El Salvador)"
1620
 
1621
  # Spanish; Castilian
1622
- #: ../../admin/lang/dynamic_strings.php:149
1623
  msgid "l-es-uy"
1624
  msgstr "Spanish (Uruguay)"
1625
 
1626
  # Spanish; Castilian
1627
- #: ../../admin/lang/dynamic_strings.php:150
1628
  msgid "l-es-ve"
1629
  msgstr "Spanish (Venezuela)"
1630
 
1631
  # Estonian
1632
- #: ../../admin/lang/dynamic_strings.php:151
1633
  msgid "l-et"
1634
  msgstr "Estonian"
1635
 
1636
  # Estonian
1637
- #: ../../admin/lang/dynamic_strings.php:152
1638
  msgid "l-et-ee"
1639
  msgstr "Estonian (Estonia)"
1640
 
1641
  # Basque
1642
- #: ../../admin/lang/dynamic_strings.php:153
1643
  msgid "l-eu"
1644
  msgstr "Basque"
1645
 
1646
  # Basque
1647
- #: ../../admin/lang/dynamic_strings.php:154
1648
  msgid "l-eu-es"
1649
  msgstr "Basque (Spain)"
1650
 
1651
  # Persian
1652
- #: ../../admin/lang/dynamic_strings.php:155
1653
  msgid "l-fa"
1654
  msgstr "Persian"
1655
 
1656
  # Persian
1657
- #: ../../admin/lang/dynamic_strings.php:156
1658
  msgid "l-fa-ir"
1659
  msgstr "Persian (Iran)"
1660
 
1661
  # Finnish
1662
- #: ../../admin/lang/dynamic_strings.php:157
1663
  msgid "l-fi"
1664
  msgstr "Finnish"
1665
 
1666
  # Finnish
1667
- #: ../../admin/lang/dynamic_strings.php:158
1668
  msgid "l-fi-fi"
1669
  msgstr "Finnish (Finland)"
1670
 
1671
  # Faroese
1672
- #: ../../admin/lang/dynamic_strings.php:159
1673
  msgid "l-fo"
1674
  msgstr "Faroese"
1675
 
1676
  # Faroese
1677
- #: ../../admin/lang/dynamic_strings.php:160
1678
  msgid "l-fo-fo"
1679
  msgstr "Faroese (Faroe Islands)"
1680
 
1681
  # French
1682
- #: ../../admin/lang/dynamic_strings.php:161
1683
  msgid "l-fr"
1684
  msgstr "French"
1685
 
1686
  # French
1687
- #: ../../admin/lang/dynamic_strings.php:162
1688
  msgid "l-fr-be"
1689
  msgstr "French (Belgium)"
1690
 
1691
  # French
1692
- #: ../../admin/lang/dynamic_strings.php:163
1693
  msgid "l-fr-ca"
1694
  msgstr "French (Canada)"
1695
 
1696
  # French
1697
- #: ../../admin/lang/dynamic_strings.php:164
1698
  msgid "l-fr-ch"
1699
  msgstr "French (Switzerland)"
1700
 
1701
  # French
1702
- #: ../../admin/lang/dynamic_strings.php:165
1703
  msgid "l-fr-fr"
1704
  msgstr "French (France)"
1705
 
1706
  # French
1707
- #: ../../admin/lang/dynamic_strings.php:166
1708
  msgid "l-fr-lu"
1709
  msgstr "French (Luxembourg)"
1710
 
1711
  # French
1712
- #: ../../admin/lang/dynamic_strings.php:167
1713
  msgid "l-fr-mc"
1714
  msgstr "French (Monaco)"
1715
 
1716
  # Galician
1717
- #: ../../admin/lang/dynamic_strings.php:168
1718
  msgid "l-gl"
1719
  msgstr "Galician"
1720
 
1721
  # Spanish; Castilian
1722
- #: ../../admin/lang/dynamic_strings.php:169
1723
  msgid "l-gl-es"
1724
  msgstr "Galician (Spain)"
1725
 
1726
  # Gujarati
1727
- #: ../../admin/lang/dynamic_strings.php:170
1728
  msgid "l-gu"
1729
  msgstr "Gujarati"
1730
 
1731
  # Gujarati
1732
- #: ../../admin/lang/dynamic_strings.php:171
1733
  msgid "l-gu-in"
1734
  msgstr "Gujarati (India)"
1735
 
1736
  # Hebrew
1737
- #: ../../admin/lang/dynamic_strings.php:172
1738
  msgid "l-he"
1739
  msgstr "Hebrew"
1740
 
1741
  # Hebrew
1742
- #: ../../admin/lang/dynamic_strings.php:173
1743
  msgid "l-he-il"
1744
  msgstr "Hebrew (Israel)"
1745
 
1746
  # Hindi
1747
- #: ../../admin/lang/dynamic_strings.php:174
1748
  msgid "l-hi"
1749
  msgstr "Hindi"
1750
 
1751
  # Hindi
1752
- #: ../../admin/lang/dynamic_strings.php:175
1753
  msgid "l-hi-in"
1754
  msgstr "Hindi (India)"
1755
 
1756
  # Croatian
1757
- #: ../../admin/lang/dynamic_strings.php:176
1758
  msgid "l-hr"
1759
  msgstr "Croatian"
1760
 
1761
  # Croatian
1762
- #: ../../admin/lang/dynamic_strings.php:177
1763
  msgid "l-hr-ba"
1764
  msgstr "Croatian (Bosnia)"
1765
 
1766
  # Croatian
1767
- #: ../../admin/lang/dynamic_strings.php:178
1768
  msgid "l-hr-hr"
1769
  msgstr "Croatian (Croatia)"
1770
 
1771
  # Hungarian
1772
- #: ../../admin/lang/dynamic_strings.php:179
1773
  msgid "l-hu"
1774
  msgstr "Hungarian"
1775
 
1776
  # Hungarian
1777
- #: ../../admin/lang/dynamic_strings.php:180
1778
  msgid "l-hu-hu"
1779
  msgstr "Hungarian (Hungary)"
1780
 
1781
  # Armenian
1782
- #: ../../admin/lang/dynamic_strings.php:181
1783
  msgid "l-hy"
1784
  msgstr "Armenian"
1785
 
1786
  # Armenian
1787
- #: ../../admin/lang/dynamic_strings.php:182
1788
  msgid "l-hy-am"
1789
  msgstr "Armenian (Armenia)"
1790
 
1791
- #: ../../admin/lang/dynamic_strings.php:183
1792
  msgid "l-id"
1793
  msgstr ""
1794
 
1795
- #: ../../admin/lang/dynamic_strings.php:184
1796
  msgid "l-id-id"
1797
  msgstr ""
1798
 
1799
  # Icelandic
1800
- #: ../../admin/lang/dynamic_strings.php:185
1801
  msgid "l-is"
1802
  msgstr "Icelandic"
1803
 
1804
  # Icelandic
1805
- #: ../../admin/lang/dynamic_strings.php:186
1806
  msgid "l-is-is"
1807
  msgstr "Icelandic (Iceland)"
1808
 
1809
  # Italian
1810
- #: ../../admin/lang/dynamic_strings.php:187
1811
  msgid "l-it"
1812
  msgstr "Italian"
1813
 
1814
  # Italian
1815
- #: ../../admin/lang/dynamic_strings.php:188
1816
  msgid "l-it-ch"
1817
  msgstr "Italian (Switzerland)"
1818
 
1819
  # Italian
1820
- #: ../../admin/lang/dynamic_strings.php:189
1821
  msgid "l-it-it"
1822
  msgstr "Italian (Italy)"
1823
 
1824
  # Japanese
1825
- #: ../../admin/lang/dynamic_strings.php:190
1826
  msgid "l-ja"
1827
  msgstr "Japanese"
1828
 
1829
  # Japanese
1830
- #: ../../admin/lang/dynamic_strings.php:191
1831
  msgid "l-ja-jp"
1832
  msgstr "Japanese (Japan)"
1833
 
1834
  # Georgian
1835
- #: ../../admin/lang/dynamic_strings.php:192
1836
  msgid "l-ka"
1837
  msgstr "Georgian"
1838
 
1839
  # Georgian
1840
- #: ../../admin/lang/dynamic_strings.php:193
1841
  msgid "l-ka-ge"
1842
  msgstr "Georgian (Georgia)"
1843
 
1844
  # Kazakh
1845
- #: ../../admin/lang/dynamic_strings.php:194
1846
  msgid "l-kk"
1847
  msgstr "Kazakh"
1848
 
1849
  # Kazakh
1850
- #: ../../admin/lang/dynamic_strings.php:195
1851
  msgid "l-kk-kz"
1852
  msgstr "Kazakh (Kazakhstan)"
1853
 
1854
  # Kannada
1855
- #: ../../admin/lang/dynamic_strings.php:196
1856
  msgid "l-kn"
1857
  msgstr "Kannada"
1858
 
1859
  # Kannada
1860
- #: ../../admin/lang/dynamic_strings.php:197
1861
  msgid "l-kn-in"
1862
  msgstr "Kannada (India)"
1863
 
1864
  # Korean
1865
- #: ../../admin/lang/dynamic_strings.php:198
1866
  msgid "l-ko"
1867
  msgstr "Korean"
1868
 
1869
  # Korean
1870
- #: ../../admin/lang/dynamic_strings.php:199
1871
  msgid "l-ko-kr"
1872
  msgstr "Korean (Korea)"
1873
 
1874
  # Korean
1875
- #: ../../admin/lang/dynamic_strings.php:200
1876
  msgid "l-kok"
1877
  msgstr "Konkani"
1878
 
1879
  # Korean
1880
- #: ../../admin/lang/dynamic_strings.php:201
1881
  msgid "l-kok-in"
1882
  msgstr "Konkani (India)"
1883
 
1884
  # Kirghiz; Kyrgyz
1885
- #: ../../admin/lang/dynamic_strings.php:202
1886
  msgid "l-ky"
1887
  msgstr "Kirghiz"
1888
 
1889
  # Kirghiz; Kyrgyz
1890
- #: ../../admin/lang/dynamic_strings.php:203
1891
  msgid "l-ky-kg"
1892
  msgstr "Kirghiz (Kazakhstan)"
1893
 
1894
  # Lithuanian
1895
- #: ../../admin/lang/dynamic_strings.php:204
1896
  msgid "l-lt"
1897
  msgstr "Lithuanian"
1898
 
1899
  # Lithuanian
1900
- #: ../../admin/lang/dynamic_strings.php:205
1901
  msgid "l-lt-lt"
1902
  msgstr "Lithuanian (Lithuania)"
1903
 
1904
  # Latvian
1905
- #: ../../admin/lang/dynamic_strings.php:206
1906
  msgid "l-lv"
1907
  msgstr "Latvian"
1908
 
1909
  # Latvian
1910
- #: ../../admin/lang/dynamic_strings.php:207
1911
  msgid "l-lv-lv"
1912
  msgstr "Latvian (Latvia)"
1913
 
1914
  # Maori
1915
- #: ../../admin/lang/dynamic_strings.php:208
1916
  msgid "l-mi"
1917
  msgstr "Maori"
1918
 
1919
  # Maori
1920
- #: ../../admin/lang/dynamic_strings.php:209
1921
  msgid "l-mi-nz"
1922
  msgstr "Maori (New Zealand)"
1923
 
1924
  # Macedonian
1925
- #: ../../admin/lang/dynamic_strings.php:210
1926
  msgid "l-mk"
1927
  msgstr "Macedonian"
1928
 
1929
  # Macedonian
1930
- #: ../../admin/lang/dynamic_strings.php:211
1931
  msgid "l-mk-ml"
1932
  msgstr "Macedonian (FYROM)"
1933
 
1934
  # Mongolian
1935
- #: ../../admin/lang/dynamic_strings.php:212
1936
  msgid "l-mn"
1937
  msgstr "Mongolian"
1938
 
1939
  # Mongolian
1940
- #: ../../admin/lang/dynamic_strings.php:213
1941
  msgid "l-mn-mn"
1942
  msgstr "Mongolian (Mongolia)"
1943
 
1944
  # Marathi
1945
- #: ../../admin/lang/dynamic_strings.php:214
1946
  msgid "l-mr"
1947
  msgstr "Marathi"
1948
 
1949
  # Marathi
1950
- #: ../../admin/lang/dynamic_strings.php:215
1951
  msgid "l-mr-in"
1952
  msgstr "Marathi (India)"
1953
 
1954
  # Malay
1955
- #: ../../admin/lang/dynamic_strings.php:216
1956
  msgid "l-ms"
1957
  msgstr "Malay"
1958
 
1959
  # Malay
1960
- #: ../../admin/lang/dynamic_strings.php:217
1961
  msgid "l-ms-bn"
1962
  msgstr "Malay (Brunei)"
1963
 
1964
  # Malay
1965
- #: ../../admin/lang/dynamic_strings.php:218
1966
  msgid "l-ms-my"
1967
  msgstr "Malay (Malaysia)"
1968
 
1969
  # Maltese
1970
- #: ../../admin/lang/dynamic_strings.php:219
1971
  msgid "l-mt"
1972
  msgstr "Maltese"
1973
 
1974
  # Maltese
1975
- #: ../../admin/lang/dynamic_strings.php:220
1976
  msgid "l-mt-mt"
1977
  msgstr "Maltese (Malta)"
1978
 
1979
  # Norwegian Bokmål
1980
- #: ../../admin/lang/dynamic_strings.php:221
1981
  msgid "l-nb"
1982
  msgstr "Norwegian; Bokmål"
1983
 
1984
  # Norwegian Bokmål
1985
- #: ../../admin/lang/dynamic_strings.php:222
1986
  msgid "l-nb-no"
1987
  msgstr "Norwegian (Norway)"
1988
 
1989
  # Dutch; Flemish
1990
- #: ../../admin/lang/dynamic_strings.php:223
1991
  msgid "l-nl"
1992
  msgstr "Dutch; Flemish"
1993
 
1994
  # Belarusian
1995
- #: ../../admin/lang/dynamic_strings.php:224
1996
  msgid "l-nl-be"
1997
  msgstr "Dutch (Belgium)"
1998
 
1999
  # Dutch; Flemish
2000
- #: ../../admin/lang/dynamic_strings.php:225
2001
  msgid "l-nl-nl"
2002
  msgstr "Dutch (The Netherlands)"
2003
 
2004
  # Norwegian Nynorsk
2005
- #: ../../admin/lang/dynamic_strings.php:226
2006
  msgid "l-nn-no"
2007
  msgstr "Norwegian; Nynorsk (Norway)"
2008
 
2009
- #: ../../admin/lang/dynamic_strings.php:227
2010
  msgid "l-ns"
2011
  msgstr ""
2012
 
2013
- #: ../../admin/lang/dynamic_strings.php:228
2014
  msgid "l-ns-za"
2015
  msgstr ""
2016
 
2017
  # Panjabi; Punjabi
2018
- #: ../../admin/lang/dynamic_strings.php:229
2019
  msgid "l-pa"
2020
  msgstr "Panjabi; Punjabi"
2021
 
2022
  # Panjabi; Punjabi
2023
- #: ../../admin/lang/dynamic_strings.php:230
2024
  msgid "l-pa-in"
2025
  msgstr "Panjabi (India)"
2026
 
2027
  # Polish
2028
- #: ../../admin/lang/dynamic_strings.php:231
2029
  msgid "l-pl"
2030
  msgstr "Polish"
2031
 
2032
  # Polish
2033
- #: ../../admin/lang/dynamic_strings.php:232
2034
  msgid "l-pl-pl"
2035
  msgstr "Polish (Poland)"
2036
 
2037
  # Pushto; Pashto
2038
- #: ../../admin/lang/dynamic_strings.php:233
2039
  msgid "l-ps"
2040
  msgstr "Pushto; Pashto"
2041
 
2042
  # Pushto; Pashto
2043
- #: ../../admin/lang/dynamic_strings.php:234
2044
  msgid "l-ps-ar"
2045
  msgstr "Pashto (Afghanistan)"
2046
 
2047
  # Portuguese
2048
- #: ../../admin/lang/dynamic_strings.php:235
2049
  msgid "l-pt"
2050
  msgstr "Portuguese"
2051
 
2052
  # Portuguese
2053
- #: ../../admin/lang/dynamic_strings.php:236
2054
  msgid "l-pt-br"
2055
  msgstr "Portuguese (Brazil)"
2056
 
2057
  # Portuguese
2058
- #: ../../admin/lang/dynamic_strings.php:237
2059
  msgid "l-pt-pt"
2060
  msgstr "Portuguese (Portugal)"
2061
 
2062
  # Quechua
2063
- #: ../../admin/lang/dynamic_strings.php:238
2064
  msgid "l-qu"
2065
  msgstr "Quechua"
2066
 
2067
  # Quechua
2068
- #: ../../admin/lang/dynamic_strings.php:239
2069
  msgid "l-qu-bo"
2070
  msgstr "Quechua (Bolivia)"
2071
 
2072
  # Quechua
2073
- #: ../../admin/lang/dynamic_strings.php:240
2074
  msgid "l-qu-ec"
2075
  msgstr "Quechua (Ecuador)"
2076
 
2077
  # Quechua
2078
- #: ../../admin/lang/dynamic_strings.php:241
2079
  msgid "l-qu-pe"
2080
  msgstr "Quechua (Peru)"
2081
 
2082
  # Romanian; Moldavian; Moldovan
2083
- #: ../../admin/lang/dynamic_strings.php:242
2084
  msgid "l-ro"
2085
  msgstr "Romanian"
2086
 
2087
  # Romanian; Moldavian; Moldovan
2088
- #: ../../admin/lang/dynamic_strings.php:243
2089
  msgid "l-ro-ro"
2090
  msgstr "Romanian (Romania)"
2091
 
2092
  # Russian
2093
- #: ../../admin/lang/dynamic_strings.php:244
2094
  msgid "l-ru"
2095
  msgstr "Russian"
2096
 
2097
  # Russian
2098
- #: ../../admin/lang/dynamic_strings.php:245
2099
  msgid "l-ru-ru"
2100
  msgstr "Russian (Russia)"
2101
 
2102
- #: ../../admin/lang/dynamic_strings.php:246
2103
  msgid "l-sa"
2104
  msgstr ""
2105
 
2106
- #: ../../admin/lang/dynamic_strings.php:247
2107
  msgid "l-sa-in"
2108
  msgstr ""
2109
 
2110
  # Northern Sami
2111
- #: ../../admin/lang/dynamic_strings.php:248
2112
  msgid "l-se"
2113
  msgstr "Northern Sami"
2114
 
2115
  # Northern Sami
2116
- #: ../../admin/lang/dynamic_strings.php:249
2117
  msgid "l-se-fi"
2118
  msgstr "Northern Sami (Finland)"
2119
 
2120
  # Northern Sami
2121
- #: ../../admin/lang/dynamic_strings.php:250
2122
  msgid "l-se-no"
2123
  msgstr "Northern Sami (Norway)"
2124
 
2125
  # Northern Sami
2126
- #: ../../admin/lang/dynamic_strings.php:251
2127
  msgid "l-se-se"
2128
  msgstr "Northern Sami (Sweden)"
2129
 
2130
  # Slovak
2131
- #: ../../admin/lang/dynamic_strings.php:252
2132
  msgid "l-sk"
2133
  msgstr "Slovak"
2134
 
2135
  # Slovak
2136
- #: ../../admin/lang/dynamic_strings.php:253
2137
  msgid "l-sk-sk"
2138
  msgstr "Slovak (Slovakia)"
2139
 
2140
  # Slovenian
2141
- #: ../../admin/lang/dynamic_strings.php:254
2142
  msgid "l-sl"
2143
  msgstr "Slovenian"
2144
 
2145
  # Slovenian
2146
- #: ../../admin/lang/dynamic_strings.php:255
2147
  msgid "l-sl-si"
2148
  msgstr "Slovenian (Slovenia)"
2149
 
2150
  # Albanian
2151
- #: ../../admin/lang/dynamic_strings.php:256
2152
  msgid "l-sq"
2153
  msgstr "Albanian"
2154
 
2155
  # Albanian
2156
- #: ../../admin/lang/dynamic_strings.php:257
2157
  msgid "l-sq-al"
2158
  msgstr "Albanian (Albania)"
2159
 
2160
  # Serbian
2161
- #: ../../admin/lang/dynamic_strings.php:258
2162
  msgid "l-sr-ba"
2163
  msgstr "Serbian (Bosnia and Herzegovina)"
2164
 
2165
  # Serbian
2166
- #: ../../admin/lang/dynamic_strings.php:259
2167
  msgid "l-sr-sp"
2168
  msgstr "Serbian (Serbia and Montenegro)"
2169
 
2170
  # Swedish
2171
- #: ../../admin/lang/dynamic_strings.php:260
2172
  msgid "l-sv"
2173
  msgstr "Swedish"
2174
 
2175
  # Swedish
2176
- #: ../../admin/lang/dynamic_strings.php:261
2177
  msgid "l-sv-fi"
2178
  msgstr "Swedish (Finland)"
2179
 
2180
  # Swedish
2181
- #: ../../admin/lang/dynamic_strings.php:262
2182
  msgid "l-sv-se"
2183
  msgstr "Swedish (Sweden)"
2184
 
2185
  # Swahili
2186
- #: ../../admin/lang/dynamic_strings.php:263
2187
  msgid "l-sw"
2188
  msgstr "Swahili"
2189
 
2190
  # Swahili
2191
- #: ../../admin/lang/dynamic_strings.php:264
2192
  msgid "l-sw-ke"
2193
  msgstr "Swahili (Kenya)"
2194
 
2195
  # Tamil
2196
- #: ../../admin/lang/dynamic_strings.php:265
2197
  msgid "l-ta"
2198
  msgstr "Tamil"
2199
 
2200
  # Tamil
2201
- #: ../../admin/lang/dynamic_strings.php:266
2202
  msgid "l-ta-in"
2203
  msgstr "Tamil (India)"
2204
 
2205
  # Telugu
2206
- #: ../../admin/lang/dynamic_strings.php:267
2207
  msgid "l-te"
2208
  msgstr "Telugu"
2209
 
2210
  # Telugu
2211
- #: ../../admin/lang/dynamic_strings.php:268
2212
  msgid "l-te-in"
2213
  msgstr "Telugu (India)"
2214
 
2215
  # Thai
2216
- #: ../../admin/lang/dynamic_strings.php:269
2217
  msgid "l-th"
2218
  msgstr "Thai"
2219
 
2220
  # Thai
2221
- #: ../../admin/lang/dynamic_strings.php:270
2222
  msgid "l-th-th"
2223
  msgstr "Thai (Thailand)"
2224
 
2225
  # Tagalog
2226
- #: ../../admin/lang/dynamic_strings.php:271
2227
  msgid "l-tl"
2228
  msgstr "Tagalog"
2229
 
2230
  # Tagalog
2231
- #: ../../admin/lang/dynamic_strings.php:272
2232
  msgid "l-tl-ph"
2233
  msgstr "Tagalog (Philippines)"
2234
 
2235
  # Tswana
2236
- #: ../../admin/lang/dynamic_strings.php:273
2237
  msgid "l-tn"
2238
  msgstr "Tswana"
2239
 
2240
  # Tswana
2241
- #: ../../admin/lang/dynamic_strings.php:274
2242
  msgid "l-tn-za"
2243
  msgstr "Tswana (South Africa)"
2244
 
2245
  # Turkish
2246
- #: ../../admin/lang/dynamic_strings.php:275
2247
  msgid "l-tr"
2248
  msgstr "Turkish"
2249
 
2250
  # Turkish
2251
- #: ../../admin/lang/dynamic_strings.php:276
2252
  msgid "l-tr-tr"
2253
  msgstr "Turkish (Turkey)"
2254
 
2255
  # Tatar
2256
- #: ../../admin/lang/dynamic_strings.php:277
2257
  msgid "l-tt"
2258
  msgstr "Tatar"
2259
 
2260
  # Tatar
2261
- #: ../../admin/lang/dynamic_strings.php:278
2262
  msgid "l-tt-ru"
2263
  msgstr "Tatar (Russia)"
2264
 
2265
  # Tsonga
2266
- #: ../../admin/lang/dynamic_strings.php:279
2267
  msgid "l-ts"
2268
  msgstr "Tsonga"
2269
 
2270
  # Ukrainian
2271
- #: ../../admin/lang/dynamic_strings.php:280
2272
  msgid "l-uk"
2273
  msgstr "Ukrainian"
2274
 
2275
  # Ukrainian
2276
- #: ../../admin/lang/dynamic_strings.php:281
2277
  msgid "l-uk-ua"
2278
  msgstr "Ukrainian (Ukraine)"
2279
 
2280
  # Urdu
2281
- #: ../../admin/lang/dynamic_strings.php:282
2282
  msgid "l-ur"
2283
  msgstr "Urdu"
2284
 
2285
  # Urdu
2286
- #: ../../admin/lang/dynamic_strings.php:283
2287
  msgid "l-ur-pk"
2288
  msgstr "Urdu (Pakistan)"
2289
 
2290
  # Uzbek
2291
- #: ../../admin/lang/dynamic_strings.php:284
2292
  msgid "l-uz"
2293
  msgstr "Uzbek"
2294
 
2295
  # Uzbek
2296
- #: ../../admin/lang/dynamic_strings.php:285
2297
  msgid "l-uz-uz"
2298
  msgstr "Uzbek (Uzbekistan)"
2299
 
2300
  # Vietnamese
2301
- #: ../../admin/lang/dynamic_strings.php:286
2302
  msgid "l-vi"
2303
  msgstr "Vietnamese"
2304
 
2305
  # Vietnamese
2306
- #: ../../admin/lang/dynamic_strings.php:287
2307
  msgid "l-vi-vn"
2308
  msgstr "Vietnamese (Viet Nam)"
2309
 
2310
  # Xhosa
2311
- #: ../../admin/lang/dynamic_strings.php:288
2312
  msgid "l-xh"
2313
  msgstr "Xhosa"
2314
 
2315
  # Xhosa
2316
- #: ../../admin/lang/dynamic_strings.php:289
2317
  msgid "l-xh-za"
2318
  msgstr "Xhosa (South Africa)"
2319
 
2320
  # Chinese
2321
- #: ../../admin/lang/dynamic_strings.php:290
2322
  msgid "l-zh"
2323
  msgstr "Chinese"
2324
 
2325
  # Chinese
2326
- #: ../../admin/lang/dynamic_strings.php:291
2327
  msgid "l-zh-cn"
2328
  msgstr "Chinese (S)"
2329
 
2330
  # Chinese
2331
- #: ../../admin/lang/dynamic_strings.php:292
2332
  msgid "l-zh-hk"
2333
  msgstr "Chinese (Hong Kong)"
2334
 
2335
  # Chinese
2336
- #: ../../admin/lang/dynamic_strings.php:293
2337
  msgid "l-zh-mo"
2338
  msgstr "Chinese (Macau)"
2339
 
2340
  # Chinese
2341
- #: ../../admin/lang/dynamic_strings.php:294
2342
  msgid "l-zh-sg"
2343
  msgstr "Chinese (Singapore)"
2344
 
2345
  # Chinese
2346
- #: ../../admin/lang/dynamic_strings.php:295
2347
  msgid "l-zh-tw"
2348
  msgstr "Chinese (T)"
2349
 
2350
  # Zulu
2351
- #: ../../admin/lang/dynamic_strings.php:296
2352
  msgid "l-zu"
2353
  msgstr "Zulu"
2354
 
2355
  # Zulu
2356
- #: ../../admin/lang/dynamic_strings.php:297
2357
  msgid "l-zu-za"
2358
  msgstr "Zulu (South Africa)"
2359
 
2360
- #: ../../admin/lang/dynamic_strings.php:298
2361
- #: ../../admin/view/wp-slimstat-reports.php:505
2362
  msgid "l-"
2363
  msgstr "Unknown"
2364
 
2365
  # Unknown
2366
- #: ../../admin/lang/dynamic_strings.php:299
2367
  msgid "l-empty"
2368
  msgstr "Unknown"
2369
 
2370
  # Unknown
2371
- #: ../../admin/lang/dynamic_strings.php:300
2372
  msgid "l-xx"
2373
  msgstr "Unknown"
2374
 
2375
- #: ../../admin/lang/dynamic_strings.php:301
2376
  msgid "c-xy"
2377
  msgstr "Local IP"
2378
 
2379
- #: ../../admin/view/index.php:24
2380
  msgid "is between (x,y)"
2381
  msgstr ""
2382
 
2383
- #: ../../admin/view/index.php:44
2384
  msgid "Load"
2385
  msgstr ""
2386
 
2387
- #: ../../admin/view/index.php:64 ../../admin/view/wp-slimstat-reports.php:821
2388
  msgid "Today"
2389
  msgstr ""
2390
 
2391
- #: ../../admin/view/index.php:65 ../../admin/view/wp-slimstat-reports.php:822
2392
  msgid "Yesterday"
2393
  msgstr ""
2394
 
2395
- #: ../../admin/view/index.php:66
2396
  msgid "Last 7 Days"
2397
  msgstr ""
2398
 
2399
- #: ../../admin/view/index.php:67
2400
  msgid "Last 60 Days"
2401
  msgstr ""
2402
 
2403
- #: ../../admin/view/index.php:68
2404
  msgid "Last 90 Days"
2405
  msgstr ""
2406
 
2407
- #: ../../admin/view/index.php:69
2408
  msgid "This Year So Far"
2409
  msgstr ""
2410
 
2411
- #: ../../admin/view/index.php:70
2412
  msgid "Date Range"
2413
  msgstr ""
2414
 
2415
- #: ../../admin/view/index.php:72 ../../admin/view/wp-slimstat-db.php:70
 
2416
  msgid "Day"
2417
  msgstr ""
2418
 
2419
- #: ../../admin/view/index.php:82 ../../admin/view/wp-slimstat-db.php:71
 
2420
  msgid "Month"
2421
  msgstr ""
2422
 
2423
- #: ../../admin/view/index.php:91 ../../admin/view/wp-slimstat-db.php:72
 
2424
  msgid "Year"
2425
  msgstr ""
2426
 
2427
- #: ../../admin/view/index.php:92 ../../admin/view/wp-slimstat-db.php:69
 
2428
  msgid "Hour"
2429
  msgstr ""
2430
 
2431
- #: ../../admin/view/index.php:93
2432
  msgid "Min"
2433
  msgstr ""
2434
 
2435
- #: ../../admin/view/index.php:101 ../../admin/view/wp-slimstat-db.php:75
 
2436
  msgid "hours"
2437
  msgstr ""
2438
 
2439
- #: ../../admin/view/index.php:102
2440
  msgid "mins"
2441
  msgstr ""
2442
 
2443
- #: ../../admin/view/index.php:110
2444
  msgid "Reset Filters"
2445
  msgstr ""
2446
 
2447
- #: ../../admin/view/index.php:151
 
 
 
 
 
 
 
2448
  msgid "Your report here"
2449
  msgstr ""
2450
 
2451
- #: ../../admin/view/index.php:153
2452
  msgid ""
2453
  "Yes, you can! Create and view your personalized analytics for Slimstat. Just "
2454
  "write a new plugin that retrieves the desired information from the database "
@@ -2457,63 +2638,63 @@ msgid ""
2457
  "forum_id=10\" target=\"_blank\">support forum</a>."
2458
  msgstr ""
2459
 
2460
- #: ../../admin/view/index.php:167 ../../admin/view/wp-slimstat-reports.php:812
2461
- #: ../../admin/view/wp-slimstat-reports.php:914
2462
- #: ../../admin/view/wp-slimstat-reports.php:1137
2463
- msgid "Pageviews"
2464
- msgstr ""
2465
-
2466
- #: ../../admin/view/index.php:170
2467
  msgid ""
2468
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2469
  "Slimstat leverages this information to identify returning visitors. Please "
2470
  "note that visitors also include registered users."
2471
  msgstr ""
2472
 
2473
- #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2474
- #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2475
  msgid "Color codes"
2476
  msgstr ""
2477
 
2478
- #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2479
  msgid "From search result page"
2480
  msgstr ""
2481
 
2482
- #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2483
- #: ../../admin/wp-slimstat-admin.php:806
2484
  msgid "Known Visitor"
2485
  msgstr ""
2486
 
2487
- #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2488
- #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2489
  msgid "Known Users"
2490
  msgstr ""
2491
 
2492
- #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2493
- #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2494
  msgid "Other Humans"
2495
  msgstr ""
2496
 
2497
- #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2498
  msgid "Bot or Crawler"
2499
  msgstr ""
2500
 
2501
- #: ../../admin/view/index.php:178
2502
  msgid "Keywords used by your visitors to find your website on a search engine."
2503
  msgstr ""
2504
 
2505
- #: ../../admin/view/index.php:181
2506
  msgid ""
2507
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
2508
  "measures your site's rankings. Values are updated every 12 hours. Filters "
2509
  "set above don't apply to this report."
2510
  msgstr ""
2511
 
2512
- #: ../../admin/view/index.php:184
2513
  msgid "Human Visits"
2514
  msgstr ""
2515
 
2516
- #: ../../admin/view/index.php:187
 
 
 
 
 
 
2517
  msgid ""
2518
  "Internet Service Provider: a company which provides other companies or "
2519
  "individuals with access to the Internet. Your DSL or cable internet service "
@@ -2521,58 +2702,58 @@ msgid ""
2521
  "by setting the corresponding filter under Settings > Slimstat > Filters."
2522
  msgstr ""
2523
 
2524
- #: ../../admin/view/index.php:190
2525
  msgid ""
2526
  "You can configure Slimstat to ignore a specific Country by setting the "
2527
  "corresponding filter under Settings > Slimstat > Filters."
2528
  msgstr ""
2529
 
2530
- #: ../../admin/view/index.php:193
2531
  msgid ""
2532
  "This report shows you what user agent families (no version considered) are "
2533
  "popular among your visitors."
2534
  msgstr ""
2535
 
2536
- #: ../../admin/view/index.php:196
2537
  msgid ""
2538
  "This report shows you what operating system families (no version considered) "
2539
  "are popular among your visitors."
2540
  msgstr ""
2541
 
2542
- #: ../../admin/view/index.php:199 ../../admin/view/wp-slimstat-reports.php:38
2543
- #: ../../admin/wp-slimstat-admin.php:509 ../../admin/wp-slimstat-admin.php:526
2544
- #: ../../wp-slimstat.php:1348
2545
  msgid "Traffic Sources"
2546
  msgstr ""
2547
 
2548
- #: ../../admin/view/index.php:202
2549
  msgid "Average Pageviews per Visit"
2550
  msgstr ""
2551
 
2552
- #: ../../admin/view/index.php:205
2553
  msgid ""
2554
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
2555
  "left your site from the entrance (landing) page."
2556
  msgstr ""
2557
 
2558
- #: ../../admin/view/index.php:208
2559
  msgid "Searches performed using Wordpress' built-in search functionality."
2560
  msgstr ""
2561
 
2562
- #: ../../admin/view/index.php:212
2563
  msgid ""
2564
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
2565
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
2566
  "link has an ID attribute associated to it."
2567
  msgstr ""
2568
 
2569
- #: ../../admin/view/index.php:215
2570
  msgid ""
2571
  "This report lists any <em>event</em> occurred on your website. Please refer "
2572
  "to the FAQ for more information on how to leverage this functionality."
2573
  msgstr ""
2574
 
2575
- #: ../../admin/view/index.php:218
2576
  msgid ""
2577
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2578
  "this report is not affected by the filters set here above."
@@ -2594,51 +2775,55 @@ msgstr ""
2594
  msgid "Syndication Reader"
2595
  msgstr ""
2596
 
2597
- #: ../../admin/view/right-now.php:30
2598
- #: ../../admin/view/wp-slimstat-reports.php:440
2599
- #: ../../admin/view/wp-slimstat-reports.php:703
2600
  msgid "No data to display"
2601
  msgstr ""
2602
 
2603
  # Unknown
2604
- #: ../../admin/view/right-now.php:56
2605
- #: ../../admin/view/wp-slimstat-reports.php:493
2606
- #: ../../admin/view/wp-slimstat-reports.php:746
2607
- #: ../../admin/view/wp-slimstat-reports.php:1025
2608
  msgid "c-"
2609
  msgstr "Unknown"
2610
 
2611
- #: ../../admin/view/right-now.php:109 ../../admin/view/wp-slimstat-db.php:61
2612
- #: ../../admin/wp-slimstat-admin.php:808 ../../admin/wp-slimstat-admin.php:850
 
 
2613
  msgid "Originating IP"
2614
  msgstr ""
2615
 
2616
- #: ../../admin/view/right-now.php:130
2617
  msgid "Server Latency and Page Speed in milliseconds"
2618
  msgstr ""
2619
 
2620
- #: ../../admin/view/right-now.php:130
2621
  msgid "SL"
2622
  msgstr ""
2623
 
2624
- #: ../../admin/view/right-now.php:130
2625
  msgid "PS"
2626
  msgstr ""
2627
 
2628
- #: ../../admin/view/right-now.php:142
2629
- #: ../../admin/view/wp-slimstat-reports.php:552
2630
- #: ../../admin/view/wp-slimstat-reports.php:556
2631
- #: ../../admin/view/wp-slimstat-reports.php:728
2632
- #: ../../admin/view/wp-slimstat-reports.php:781
2633
  msgid "Open this URL in a new window"
2634
  msgstr ""
2635
 
2636
- #: ../../admin/view/right-now.php:145
2637
  msgid "Local search results page"
2638
  msgstr ""
2639
 
2640
- #: ../../admin/view/right-now.php:150 ../../admin/view/wp-slimstat-db.php:40
2641
- #: ../../admin/wp-slimstat-admin.php:811 ../../admin/wp-slimstat-admin.php:827
 
 
2642
  msgid "Search Terms"
2643
  msgstr ""
2644
 
@@ -2646,10 +2831,6 @@ msgstr ""
2646
  msgid "Open this referrer in a new window"
2647
  msgstr ""
2648
 
2649
- #: ../../admin/view/right-now.php:154
2650
- msgid "Open this outbound link in a new window"
2651
- msgstr ""
2652
-
2653
  #: ../../admin/view/right-now.php:155
2654
  msgid "Date and Time"
2655
  msgstr ""
@@ -2658,733 +2839,784 @@ msgstr ""
2658
  msgid "Content Type"
2659
  msgstr ""
2660
 
2661
- #: ../../admin/view/wp-slimstat-db.php:37
2662
- #: ../../admin/wp-slimstat-admin.php:824
 
 
 
 
 
2663
  msgid "Browser"
2664
  msgstr ""
2665
 
2666
- #: ../../admin/view/wp-slimstat-db.php:38
2667
- #: ../../admin/view/wp-slimstat-reports.php:492
2668
- #: ../../admin/wp-slimstat-admin.php:825
 
2669
  msgid "Country Code"
2670
  msgstr ""
2671
 
2672
- #: ../../admin/view/wp-slimstat-db.php:39
 
2673
  msgid "IP Address"
2674
  msgstr ""
2675
 
2676
- #: ../../admin/view/wp-slimstat-db.php:41
2677
- #: ../../admin/view/wp-slimstat-reports.php:504
2678
- #: ../../admin/wp-slimstat-admin.php:828
 
2679
  msgid "Language Code"
2680
  msgstr ""
2681
 
2682
- #: ../../admin/view/wp-slimstat-db.php:42
2683
- #: ../../admin/wp-slimstat-admin.php:829
 
2684
  msgid "Operating System"
2685
  msgstr ""
2686
 
2687
- #: ../../admin/view/wp-slimstat-db.php:43
2688
- #: ../../admin/wp-slimstat-admin.php:830
 
2689
  msgid "Permalink"
2690
  msgstr ""
2691
 
2692
- #: ../../admin/view/wp-slimstat-db.php:44
2693
  msgid "Domain"
2694
  msgstr ""
2695
 
2696
- #: ../../admin/view/wp-slimstat-db.php:45
2697
- #: ../../admin/wp-slimstat-admin.php:831
 
2698
  msgid "Referer"
2699
  msgstr ""
2700
 
2701
- #: ../../admin/view/wp-slimstat-db.php:46
2702
- #: ../../admin/wp-slimstat-admin.php:832
 
2703
  msgid "Visitor's Name"
2704
  msgstr ""
2705
 
2706
- #: ../../admin/view/wp-slimstat-db.php:47
 
2707
  msgid "Page Speed"
2708
  msgstr ""
2709
 
2710
- #: ../../admin/view/wp-slimstat-db.php:49
 
2711
  msgid "-- Advanced filters --"
2712
  msgstr ""
2713
 
2714
- #: ../../admin/view/wp-slimstat-db.php:50
2715
- #: ../../admin/view/wp-slimstat-reports.php:64
 
2716
  msgid "Browser Capabilities"
2717
  msgstr ""
2718
 
2719
- #: ../../admin/view/wp-slimstat-db.php:51
2720
- #: ../../admin/wp-slimstat-admin.php:843
 
2721
  msgid "Browser Version"
2722
  msgstr ""
2723
 
2724
- #: ../../admin/view/wp-slimstat-db.php:52
2725
- #: ../../admin/wp-slimstat-admin.php:844
 
2726
  msgid "Browser Type"
2727
  msgstr ""
2728
 
2729
- #: ../../admin/view/wp-slimstat-db.php:53
2730
- #: ../../admin/wp-slimstat-admin.php:813
 
2731
  msgid "User Agent"
2732
  msgstr ""
2733
 
2734
- #: ../../admin/view/wp-slimstat-db.php:54
2735
- #: ../../admin/wp-slimstat-admin.php:845
 
2736
  msgid "Color Depth"
2737
  msgstr ""
2738
 
2739
- #: ../../admin/view/wp-slimstat-db.php:55
2740
- #: ../../admin/wp-slimstat-admin.php:846
 
2741
  msgid "CSS Version"
2742
  msgstr ""
2743
 
2744
- #: ../../admin/view/wp-slimstat-db.php:56
2745
- #: ../../admin/wp-slimstat-admin.php:847
 
2746
  msgid "Pageview Attributes"
2747
  msgstr ""
2748
 
2749
- #: ../../admin/view/wp-slimstat-db.php:57
 
2750
  msgid "Server Latency"
2751
  msgstr ""
2752
 
2753
- #: ../../admin/view/wp-slimstat-db.php:58
2754
- #: ../../admin/wp-slimstat-admin.php:814
2755
  msgid "Outbound Link"
2756
  msgstr ""
2757
 
2758
- #: ../../admin/view/wp-slimstat-db.php:59
2759
- #: ../../admin/wp-slimstat-admin.php:848
 
2760
  msgid "Post Author"
2761
  msgstr ""
2762
 
2763
- #: ../../admin/view/wp-slimstat-db.php:60
2764
- #: ../../admin/wp-slimstat-admin.php:849
 
2765
  msgid "Post Category ID"
2766
  msgstr ""
2767
 
2768
- #: ../../admin/view/wp-slimstat-db.php:62
2769
- #: ../../admin/wp-slimstat-admin.php:851
 
2770
  msgid "Resource Content Type"
2771
  msgstr ""
2772
 
2773
- #: ../../admin/view/wp-slimstat-db.php:63
 
2774
  msgid "Resource ID"
2775
  msgstr ""
2776
 
2777
- #: ../../admin/view/wp-slimstat-db.php:64
2778
- #: ../../admin/wp-slimstat-admin.php:852
2779
  msgid "Screen Resolution"
2780
  msgstr ""
2781
 
2782
- #: ../../admin/view/wp-slimstat-db.php:65
2783
- #: ../../admin/wp-slimstat-admin.php:853
 
2784
  msgid "Visit ID"
2785
  msgstr ""
2786
 
2787
- #: ../../admin/view/wp-slimstat-db.php:68
 
2788
  msgid "Minute"
2789
  msgstr ""
2790
 
2791
- #: ../../admin/view/wp-slimstat-db.php:73
 
2792
  msgid "+/-"
2793
  msgstr ""
2794
 
2795
- #: ../../admin/view/wp-slimstat-db.php:76
 
2796
  msgid "minutes"
2797
  msgstr ""
2798
 
2799
- #: ../../admin/view/wp-slimstat-db.php:78
 
2800
  msgid "Order Direction"
2801
- msgstr ""
2802
 
2803
- #: ../../admin/view/wp-slimstat-db.php:79
 
2804
  msgid "Limit Results"
2805
  msgstr ""
2806
 
2807
- #: ../../admin/view/wp-slimstat-db.php:80
 
2808
  msgid "Start From"
2809
  msgstr ""
2810
 
2811
- #: ../../admin/view/wp-slimstat-reports.php:34
2812
- #: ../../admin/wp-slimstat-admin.php:505 ../../wp-slimstat.php:1344
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2813
  msgid "Real-Time Log"
2814
  msgstr ""
2815
 
2816
- #: ../../admin/view/wp-slimstat-reports.php:35
2817
- #: ../../admin/wp-slimstat-admin.php:506 ../../admin/wp-slimstat-admin.php:523
2818
- #: ../../wp-slimstat.php:1345
2819
  msgid "Overview"
2820
  msgstr ""
2821
 
2822
- #: ../../admin/view/wp-slimstat-reports.php:36
2823
- #: ../../admin/wp-slimstat-admin.php:507 ../../admin/wp-slimstat-admin.php:524
2824
- #: ../../wp-slimstat.php:1346
2825
  msgid "Audience"
2826
  msgstr ""
2827
 
2828
- #: ../../admin/view/wp-slimstat-reports.php:37
2829
- #: ../../admin/wp-slimstat-admin.php:508 ../../admin/wp-slimstat-admin.php:525
2830
- #: ../../wp-slimstat.php:1347
2831
  msgid "Site Analysis"
2832
  msgstr ""
2833
 
2834
- #: ../../admin/view/wp-slimstat-reports.php:39
2835
- #: ../../admin/wp-slimstat-admin.php:510 ../../admin/wp-slimstat-admin.php:527
2836
- #: ../../wp-slimstat.php:1349
2837
  msgid "Map Overlay"
2838
  msgstr ""
2839
 
2840
- #: ../../admin/view/wp-slimstat-reports.php:40
2841
- #: ../../admin/wp-slimstat-admin.php:511 ../../admin/wp-slimstat-admin.php:528
2842
- #: ../../wp-slimstat.php:1350
2843
  msgid "Custom Reports"
2844
  msgstr ""
2845
 
2846
- #: ../../admin/view/wp-slimstat-reports.php:44
2847
  msgid "Pageviews (chart)"
2848
  msgstr ""
2849
 
2850
- #: ../../admin/view/wp-slimstat-reports.php:45
2851
  msgid "About Slimstat"
2852
  msgstr ""
2853
 
2854
- #: ../../admin/view/wp-slimstat-reports.php:46
2855
  msgid "At a Glance"
2856
  msgstr ""
2857
 
2858
- #: ../../admin/view/wp-slimstat-reports.php:47
2859
  msgid "Currently Online"
2860
  msgstr ""
2861
 
2862
- #: ../../admin/view/wp-slimstat-reports.php:48
2863
  #: ../../admin/view/wp-slimstat-reports.php:82
2864
- msgid "Spy View"
2865
- msgstr ""
2866
-
2867
- #: ../../admin/view/wp-slimstat-reports.php:49
2868
- #: ../../admin/view/wp-slimstat-reports.php:83
2869
  msgid "Recent Search Terms"
2870
  msgstr ""
2871
 
2872
- #: ../../admin/view/wp-slimstat-reports.php:50
2873
  msgid "Top Pages"
2874
  msgstr ""
2875
 
2876
- #: ../../admin/view/wp-slimstat-reports.php:51
2877
- #: ../../admin/view/wp-slimstat-reports.php:80
2878
  msgid "Top Traffic Sources"
2879
  msgstr ""
2880
 
2881
- #: ../../admin/view/wp-slimstat-reports.php:52
2882
  msgid "Top Known Visitors"
2883
  msgstr ""
2884
 
2885
- #: ../../admin/view/wp-slimstat-reports.php:53
2886
- #: ../../admin/view/wp-slimstat-reports.php:78
2887
- #: ../../admin/view/wp-slimstat-reports.php:98
2888
  msgid "Top Search Terms"
2889
  msgstr ""
2890
 
2891
- #: ../../admin/view/wp-slimstat-reports.php:54
2892
- #: ../../admin/view/wp-slimstat-reports.php:65
2893
- #: ../../admin/view/wp-slimstat-reports.php:79
2894
  msgid "Top Countries"
2895
  msgstr ""
2896
 
2897
- #: ../../admin/view/wp-slimstat-reports.php:55
2898
  msgid "Rankings"
2899
  msgstr ""
2900
 
2901
- #: ../../admin/view/wp-slimstat-reports.php:56
2902
  msgid "Top Language Families"
2903
  msgstr ""
2904
 
2905
- #: ../../admin/view/wp-slimstat-reports.php:57
 
 
 
 
2906
  msgid "Human Visits (chart)"
2907
  msgstr ""
2908
 
2909
- #: ../../admin/view/wp-slimstat-reports.php:58
2910
  msgid "Audience Overview"
2911
  msgstr ""
2912
 
2913
- #: ../../admin/view/wp-slimstat-reports.php:59
2914
  msgid "Top Languages"
2915
  msgstr ""
2916
 
2917
- #: ../../admin/view/wp-slimstat-reports.php:60
2918
  msgid "Top Browsers"
2919
  msgstr ""
2920
 
2921
- #: ../../admin/view/wp-slimstat-reports.php:61
2922
  msgid "Top Service Providers"
2923
  msgstr ""
2924
 
2925
- #: ../../admin/view/wp-slimstat-reports.php:62
2926
  msgid "Top Operating Systems"
2927
  msgstr ""
2928
 
2929
- #: ../../admin/view/wp-slimstat-reports.php:63
2930
  msgid "Top Screen Resolutions"
2931
  msgstr ""
2932
 
2933
- #: ../../admin/view/wp-slimstat-reports.php:66
2934
  msgid "Visit Duration"
2935
  msgstr ""
2936
 
2937
- #: ../../admin/view/wp-slimstat-reports.php:67
2938
- #: ../../admin/view/wp-slimstat-reports.php:84
2939
  msgid "Recent Countries"
2940
  msgstr ""
2941
 
2942
- #: ../../admin/view/wp-slimstat-reports.php:68
2943
  msgid "Recent Screen Resolutions"
2944
  msgstr ""
2945
 
2946
- #: ../../admin/view/wp-slimstat-reports.php:69
2947
  msgid "Recent Operating Systems"
2948
  msgstr ""
2949
 
2950
- #: ../../admin/view/wp-slimstat-reports.php:70
2951
  msgid "Recent Browsers"
2952
  msgstr ""
2953
 
2954
- #: ../../admin/view/wp-slimstat-reports.php:71
2955
  msgid "Recent Languages"
2956
  msgstr ""
2957
 
2958
- #: ../../admin/view/wp-slimstat-reports.php:72
2959
  msgid "Top Browser Families"
2960
  msgstr ""
2961
 
2962
- #: ../../admin/view/wp-slimstat-reports.php:73
2963
  msgid "Top OS Families"
2964
  msgstr ""
2965
 
2966
- #: ../../admin/view/wp-slimstat-reports.php:74
2967
  msgid "Recent Users"
2968
  msgstr ""
2969
 
2970
- #: ../../admin/view/wp-slimstat-reports.php:75
2971
  msgid "Top Users"
2972
  msgstr ""
2973
 
2974
- #: ../../admin/view/wp-slimstat-reports.php:76
2975
  msgid "Traffic Sources (chart)"
2976
  msgstr ""
2977
 
2978
- #: ../../admin/view/wp-slimstat-reports.php:77
2979
  msgid "Summary"
2980
  msgstr ""
2981
 
2982
- #: ../../admin/view/wp-slimstat-reports.php:81
2983
  msgid "Top Referring Search Engines"
2984
  msgstr ""
2985
 
2986
- #: ../../admin/view/wp-slimstat-reports.php:85
2987
- #: ../../admin/view/wp-slimstat-reports.php:101
2988
- msgid "Top Landing Pages"
2989
  msgstr ""
2990
 
2991
- #: ../../admin/view/wp-slimstat-reports.php:86
2992
- msgid "Average Pageviews per Visit (chart)"
2993
  msgstr ""
2994
 
2995
- #: ../../admin/view/wp-slimstat-reports.php:87
2996
  msgid "Recent Posts"
2997
  msgstr ""
2998
 
2999
- #: ../../admin/view/wp-slimstat-reports.php:88
3000
  msgid "Recent Bounce Pages"
3001
  msgstr ""
3002
 
3003
- #: ../../admin/view/wp-slimstat-reports.php:89
3004
  msgid "Recent Feeds"
3005
  msgstr ""
3006
 
3007
- #: ../../admin/view/wp-slimstat-reports.php:90
3008
  msgid "Recent Pages Not Found"
3009
  msgstr ""
3010
 
3011
- #: ../../admin/view/wp-slimstat-reports.php:91
3012
  msgid "Recent Internal Searches"
3013
  msgstr ""
3014
 
3015
- #: ../../admin/view/wp-slimstat-reports.php:92
3016
  msgid "Top Categories"
3017
  msgstr ""
3018
 
3019
- #: ../../admin/view/wp-slimstat-reports.php:93
3020
  msgid "Recent Outbound Links"
3021
  msgstr ""
3022
 
3023
- #: ../../admin/view/wp-slimstat-reports.php:94
3024
  msgid "Recent Events"
3025
  msgstr ""
3026
 
3027
- #: ../../admin/view/wp-slimstat-reports.php:95
3028
  msgid "Top Posts"
3029
  msgstr ""
3030
 
3031
- #: ../../admin/view/wp-slimstat-reports.php:96
3032
  msgid "Top Feeds"
3033
  msgstr ""
3034
 
3035
- #: ../../admin/view/wp-slimstat-reports.php:97
3036
  msgid "Top Internal Searches"
3037
  msgstr ""
3038
 
3039
- #: ../../admin/view/wp-slimstat-reports.php:99
3040
  msgid "Recent Categories"
3041
  msgstr ""
3042
 
3043
- #: ../../admin/view/wp-slimstat-reports.php:100
3044
  msgid "Top Pages Not Found"
3045
  msgstr ""
3046
 
3047
- #: ../../admin/view/wp-slimstat-reports.php:102
 
 
 
 
3048
  msgid "Top Authors"
3049
  msgstr ""
3050
 
3051
- #: ../../admin/view/wp-slimstat-reports.php:103
3052
  msgid "Top Tags"
3053
  msgstr ""
3054
 
3055
- #: ../../admin/view/wp-slimstat-reports.php:104
3056
  msgid "Recent Downloads"
3057
  msgstr ""
3058
 
3059
- #: ../../admin/view/wp-slimstat-reports.php:105
3060
  msgid "Top OutLinks and Downloads"
3061
  msgstr ""
3062
 
3063
- #: ../../admin/view/wp-slimstat-reports.php:106
3064
  msgid "Your Website"
3065
  msgstr ""
3066
 
 
 
 
 
3067
  #: ../../admin/view/wp-slimstat-reports.php:107
3068
- msgid "World Map"
3069
  msgstr ""
3070
 
3071
  #: ../../admin/view/wp-slimstat-reports.php:108
 
 
 
 
 
 
 
 
3072
  msgid "Activity"
3073
  msgstr ""
3074
 
3075
- #: ../../admin/view/wp-slimstat-reports.php:215
3076
  msgid "Chart controls"
3077
  msgstr ""
3078
 
3079
- #: ../../admin/view/wp-slimstat-reports.php:215
3080
  msgid "Use your mouse wheel to zoom in and out"
3081
  msgstr ""
3082
 
3083
- #: ../../admin/view/wp-slimstat-reports.php:215
3084
  msgid "While zooming in, drag the chart to move to a different area"
3085
  msgstr ""
3086
 
3087
- #: ../../admin/view/wp-slimstat-reports.php:215
3088
  msgid "Double click on an empty region to reset the zoom level"
3089
  msgstr ""
3090
 
3091
- #: ../../admin/view/wp-slimstat-reports.php:228
3092
  msgid "src"
3093
  msgstr ""
3094
 
3095
- #: ../../admin/view/wp-slimstat-reports.php:229
3096
  msgid "serp"
3097
  msgstr ""
3098
 
3099
- #: ../../admin/view/wp-slimstat-reports.php:234
3100
- msgid "Go to the corresponding search engine result page"
3101
- msgstr ""
3102
-
3103
- #: ../../admin/view/wp-slimstat-reports.php:237
3104
  msgid "Go to the referring page"
3105
  msgstr ""
3106
 
3107
- #: ../../admin/view/wp-slimstat-reports.php:260
3108
  msgid "Remove filter for"
3109
  msgstr ""
3110
 
3111
- #: ../../admin/view/wp-slimstat-reports.php:264
3112
  msgid "Save"
3113
  msgstr ""
3114
 
3115
- #: ../../admin/view/wp-slimstat-reports.php:267
3116
  msgid "Reset All"
3117
  msgstr ""
3118
 
3119
- #: ../../admin/view/wp-slimstat-reports.php:271
3120
  msgid "Current filters:"
3121
  msgstr ""
3122
 
3123
- #: ../../admin/view/wp-slimstat-reports.php:275
3124
  msgid "Refresh"
3125
  msgstr ""
3126
 
3127
- #: ../../admin/view/wp-slimstat-reports.php:354
3128
  #, php-format
3129
  msgid "Results %s - %s of %s"
3130
  msgstr ""
3131
 
3132
- #: ../../admin/view/wp-slimstat-reports.php:356
3133
  msgid "Refresh in"
3134
  msgstr ""
3135
 
3136
- #: ../../admin/view/wp-slimstat-reports.php:378
3137
- #: ../../admin/view/wp-slimstat-reports.php:390
3138
  #, php-format
3139
  msgid "Daily %s"
3140
  msgstr ""
3141
 
3142
- #: ../../admin/view/wp-slimstat-reports.php:381
3143
  #, php-format
3144
  msgid "%s Minute by Minute"
3145
  msgstr ""
3146
 
3147
- #: ../../admin/view/wp-slimstat-reports.php:384
3148
  #, php-format
3149
  msgid "Hourly %s"
3150
  msgstr ""
3151
 
3152
- #: ../../admin/view/wp-slimstat-reports.php:387
3153
  #, php-format
3154
  msgid "Monthly %s"
3155
  msgstr ""
3156
 
3157
- #: ../../admin/view/wp-slimstat-reports.php:475
3158
  msgid "Category ID"
3159
  msgstr ""
3160
 
3161
- #: ../../admin/view/wp-slimstat-reports.php:508
3162
  msgid "OS Code"
3163
  msgstr ""
3164
 
3165
- #: ../../admin/view/wp-slimstat-reports.php:518
3166
  msgid "Referrer"
3167
  msgstr ""
3168
 
3169
- #: ../../admin/view/wp-slimstat-reports.php:542
3170
- #: ../../admin/view/wp-slimstat-reports.php:849
3171
- #: ../../admin/view/wp-slimstat-reports.php:858
3172
- #: ../../admin/view/wp-slimstat-reports.php:864
3173
- #: ../../admin/view/wp-slimstat-reports.php:870
3174
- #: ../../admin/view/wp-slimstat-reports.php:876
3175
- #: ../../admin/view/wp-slimstat-reports.php:882
3176
- #: ../../admin/view/wp-slimstat-reports.php:888
3177
- #: ../../admin/view/wp-slimstat-reports.php:894
3178
  msgid "Hits"
3179
  msgstr ""
3180
 
3181
- #: ../../admin/view/wp-slimstat-reports.php:720
3182
  msgid "Search for"
3183
  msgstr ""
3184
 
3185
- #: ../../admin/view/wp-slimstat-reports.php:771
3186
- #: ../../admin/view/wp-slimstat-reports.php:781
3187
  msgid "Source"
3188
  msgstr ""
3189
 
3190
- #: ../../admin/view/wp-slimstat-reports.php:773
3191
  msgid "Keywords"
3192
  msgstr ""
3193
 
3194
- #: ../../admin/view/wp-slimstat-reports.php:781
3195
  #, php-format
3196
  msgid "Filter results where resource equals %s"
3197
  msgstr ""
3198
 
3199
- #: ../../admin/view/wp-slimstat-reports.php:782
3200
  msgid "Link Details"
3201
  msgstr ""
3202
 
3203
- #: ../../admin/view/wp-slimstat-reports.php:795
3204
  msgid "Total Pageviews"
3205
  msgstr ""
3206
 
3207
- #: ../../admin/view/wp-slimstat-reports.php:796
3208
  msgid "DB Size"
3209
  msgstr ""
3210
 
3211
- #: ../../admin/view/wp-slimstat-reports.php:797
3212
  msgid "Tracking Active"
3213
  msgstr ""
3214
 
3215
- #: ../../admin/view/wp-slimstat-reports.php:798
3216
  msgid "Javascript Mode"
3217
  msgstr ""
3218
 
3219
- #: ../../admin/view/wp-slimstat-reports.php:799
3220
  msgid "Tracking Browser Caps"
3221
  msgstr ""
3222
 
3223
- #: ../../admin/view/wp-slimstat-reports.php:800
3224
  msgid "Auto purge"
3225
  msgstr ""
3226
 
3227
- #: ../../admin/view/wp-slimstat-reports.php:800
3228
- #: ../../admin/wp-slimstat-admin.php:883
3229
  msgid "No"
3230
  msgstr ""
3231
 
3232
- #: ../../admin/view/wp-slimstat-reports.php:801
3233
  msgid "Oldest pageview"
3234
  msgstr ""
3235
 
3236
- #: ../../admin/view/wp-slimstat-reports.php:801
3237
  msgid "No visits"
3238
  msgstr ""
3239
 
3240
- #: ../../admin/view/wp-slimstat-reports.php:811
3241
- #: ../../admin/view/wp-slimstat-reports.php:913
3242
  msgid ""
3243
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
3244
  "the tracking code is executed."
3245
  msgstr ""
3246
 
3247
- #: ../../admin/view/wp-slimstat-reports.php:813
3248
  msgid "How many pages have been visited on average during the current period."
3249
  msgstr ""
3250
 
3251
- #: ../../admin/view/wp-slimstat-reports.php:814
3252
  msgid "Average Pageviews"
3253
  msgstr ""
3254
 
3255
- #: ../../admin/view/wp-slimstat-reports.php:815
3256
  msgid ""
3257
  "Visitors who landed on your site after searching for a keyword on Google, "
3258
  "Yahoo, etc."
3259
  msgstr ""
3260
 
3261
- #: ../../admin/view/wp-slimstat-reports.php:816
3262
  msgid "From Search Results"
3263
  msgstr ""
3264
 
3265
- #: ../../admin/view/wp-slimstat-reports.php:817
3266
  msgid ""
3267
  "Used to differentiate between multiple requests to download a file from one "
3268
  "internet address (IP) and requests originating from many distinct addresses"
3269
  msgstr ""
3270
 
3271
- #: ../../admin/view/wp-slimstat-reports.php:818
3272
- #: ../../admin/view/wp-slimstat-reports.php:833
3273
- #: ../../admin/view/wp-slimstat-reports.php:1137
3274
- #: ../../admin/view/wp-slimstat-reports.php:1141
3275
- #: ../../admin/view/wp-slimstat-reports.php:1145
3276
- msgid "Unique IPs"
3277
- msgstr ""
3278
-
3279
- #: ../../admin/view/wp-slimstat-reports.php:819
3280
  msgid "Last 5 minutes"
3281
  msgstr ""
3282
 
3283
- #: ../../admin/view/wp-slimstat-reports.php:820
3284
  msgid "Last 30 minutes"
3285
  msgstr ""
3286
 
3287
- #: ../../admin/view/wp-slimstat-reports.php:830
3288
  msgid ""
3289
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3290
  "multiple times if they perform multiple visits."
3291
  msgstr ""
3292
 
3293
- #: ../../admin/view/wp-slimstat-reports.php:831
3294
- msgid "Human visits"
 
3295
  msgstr ""
3296
 
3297
- #: ../../admin/view/wp-slimstat-reports.php:832
3298
  msgid "It includes only traffic generated by human visitors."
3299
  msgstr ""
3300
 
3301
- #: ../../admin/view/wp-slimstat-reports.php:834
3302
- #: ../../admin/view/wp-slimstat-reports.php:925
3303
  msgid ""
3304
  "Percentage of single-page visits, i.e. visits in which the person left your "
3305
  "site from the entrance page."
3306
  msgstr ""
3307
 
3308
- #: ../../admin/view/wp-slimstat-reports.php:835
3309
  msgid "Bounce rate"
3310
  msgstr ""
3311
 
3312
- #: ../../admin/view/wp-slimstat-reports.php:836
3313
  msgid "Visitors who had previously left a comment on your blog."
3314
  msgstr ""
3315
 
3316
- #: ../../admin/view/wp-slimstat-reports.php:837
3317
  msgid "Known visitors"
3318
  msgstr ""
3319
 
3320
- #: ../../admin/view/wp-slimstat-reports.php:838
3321
  msgid "Human users who visited your site only once."
3322
  msgstr ""
3323
 
3324
- #: ../../admin/view/wp-slimstat-reports.php:839
3325
  msgid "New visitors"
3326
  msgstr ""
3327
 
3328
- #: ../../admin/view/wp-slimstat-reports.php:840
3329
  msgid "Bots"
3330
  msgstr ""
3331
 
3332
- #: ../../admin/view/wp-slimstat-reports.php:841
3333
  msgid "Pages per visit"
3334
  msgstr ""
3335
 
3336
- #: ../../admin/view/wp-slimstat-reports.php:842
3337
- #: ../../admin/view/wp-slimstat-reports.php:1150
3338
  msgid "Longest visit"
3339
  msgstr ""
3340
 
3341
- #: ../../admin/view/wp-slimstat-reports.php:842
3342
  msgid "hits"
3343
  msgstr ""
3344
 
3345
- #: ../../admin/view/wp-slimstat-reports.php:860
3346
  msgid "0 - 30 seconds"
3347
  msgstr ""
3348
 
3349
- #: ../../admin/view/wp-slimstat-reports.php:866
3350
  msgid "31 - 60 seconds"
3351
  msgstr ""
3352
 
3353
- #: ../../admin/view/wp-slimstat-reports.php:872
3354
  msgid "1 - 3 minutes"
3355
  msgstr ""
3356
 
3357
- #: ../../admin/view/wp-slimstat-reports.php:878
3358
  msgid "3 - 5 minutes"
3359
  msgstr ""
3360
 
3361
- #: ../../admin/view/wp-slimstat-reports.php:884
3362
  msgid "5 - 7 minutes"
3363
  msgstr ""
3364
 
3365
- #: ../../admin/view/wp-slimstat-reports.php:890
3366
  msgid "7 - 10 minutes"
3367
  msgstr ""
3368
 
3369
- #: ../../admin/view/wp-slimstat-reports.php:896
3370
  msgid "More than 10 minutes"
3371
  msgstr ""
3372
 
3373
- #: ../../admin/view/wp-slimstat-reports.php:905
3374
  msgid "Average time on site"
3375
  msgstr ""
3376
 
3377
- #: ../../admin/view/wp-slimstat-reports.php:915
3378
  msgid ""
3379
  "A referrer (or referring site) is the site that a visitor previously visited "
3380
  "before following a link to your site."
3381
  msgstr ""
3382
 
3383
- #: ../../admin/view/wp-slimstat-reports.php:916
3384
  msgid "Unique Referrers"
3385
  msgstr ""
3386
 
3387
- #: ../../admin/view/wp-slimstat-reports.php:917
3388
  msgid ""
3389
  "Visitors who visited the site by typing the URL directly into their browser. "
3390
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -3392,21 +3624,21 @@ msgid ""
3392
  "documents that don't include tracking variables."
3393
  msgstr ""
3394
 
3395
- #: ../../admin/view/wp-slimstat-reports.php:918
3396
  msgid "Direct Pageviews"
3397
  msgstr ""
3398
 
3399
- #: ../../admin/view/wp-slimstat-reports.php:919
3400
  msgid ""
3401
  "Visitors who came to your site via searches on Google or some other search "
3402
  "engine."
3403
  msgstr ""
3404
 
3405
- #: ../../admin/view/wp-slimstat-reports.php:920
3406
  msgid "From a search result"
3407
  msgstr ""
3408
 
3409
- #: ../../admin/view/wp-slimstat-reports.php:921
3410
  msgid ""
3411
  "The first page that a user views during a session. This is also known as the "
3412
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -3414,1307 +3646,1299 @@ msgid ""
3414
  "a landing page."
3415
  msgstr ""
3416
 
3417
- #: ../../admin/view/wp-slimstat-reports.php:922
3418
  msgid "Unique Landing Pages"
3419
  msgstr ""
3420
 
3421
- #: ../../admin/view/wp-slimstat-reports.php:923
3422
  msgid "Number of single-page visits to your site over the selected period."
3423
  msgstr ""
3424
 
3425
- #: ../../admin/view/wp-slimstat-reports.php:924
3426
  msgid "Bounce Pages"
3427
  msgstr ""
3428
 
3429
- #: ../../admin/view/wp-slimstat-reports.php:926
3430
  msgid "New Visitors Rate"
3431
  msgstr ""
3432
 
3433
- #: ../../admin/view/wp-slimstat-reports.php:927
3434
  msgid ""
3435
  "Visitors who visited the site in the last 5 minutes coming from a search "
3436
  "engine."
3437
  msgstr ""
3438
 
3439
- #: ../../admin/view/wp-slimstat-reports.php:928
3440
  msgid "Currently from search engines"
3441
  msgstr ""
3442
 
3443
- #: ../../admin/view/wp-slimstat-reports.php:996
3444
  msgid "Number of pages in your site included in Google's index."
3445
  msgstr ""
3446
 
3447
- #: ../../admin/view/wp-slimstat-reports.php:997
3448
  msgid "Google Index"
3449
  msgstr ""
3450
 
3451
- #: ../../admin/view/wp-slimstat-reports.php:998
3452
  msgid "Number of pages, according to Google, that link back to your site."
3453
  msgstr ""
3454
 
3455
- #: ../../admin/view/wp-slimstat-reports.php:999
3456
  msgid "Google Backlinks"
3457
  msgstr ""
3458
 
3459
- #: ../../admin/view/wp-slimstat-reports.php:1000
3460
  msgid ""
3461
  "How many times the Facebook Like button has been approximately clicked on "
3462
  "your site."
3463
  msgstr ""
3464
 
3465
- #: ../../admin/view/wp-slimstat-reports.php:1001
3466
  msgid "Facebook Likes"
3467
  msgstr ""
3468
 
3469
- #: ../../admin/view/wp-slimstat-reports.php:1002
3470
  msgid ""
3471
  "How many times your site has been shared by someone on the social network."
3472
  msgstr ""
3473
 
3474
- #: ../../admin/view/wp-slimstat-reports.php:1003
3475
  msgid "Facebook Shares"
3476
  msgstr ""
3477
 
3478
- #: ../../admin/view/wp-slimstat-reports.php:1004
3479
  msgid "How many times links to your website have been clicked on Facebook."
3480
  msgstr ""
3481
 
3482
- #: ../../admin/view/wp-slimstat-reports.php:1005
3483
  msgid "Facebook Clicks"
3484
  msgstr ""
3485
 
3486
- #: ../../admin/view/wp-slimstat-reports.php:1006
3487
  msgid ""
3488
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3489
  "traffic data."
3490
  msgstr ""
3491
 
3492
- #: ../../admin/view/wp-slimstat-reports.php:1007
3493
  msgid "Alexa World Rank"
3494
  msgstr ""
3495
 
3496
- #: ../../admin/view/wp-slimstat-reports.php:1008
3497
  msgid "Alexa Country Rank"
3498
  msgstr ""
3499
 
3500
- #: ../../admin/view/wp-slimstat-reports.php:1009
3501
  msgid "Alexa Popularity"
3502
  msgstr ""
3503
 
3504
  # Unknown
3505
- #: ../../admin/view/wp-slimstat-reports.php:1016
3506
  msgid "c-xx"
3507
  msgstr "Unknown"
3508
 
3509
  # Afghanistan
3510
- #: ../../admin/view/wp-slimstat-reports.php:1016
3511
  msgid "c-af"
3512
  msgstr "Afghanistan"
3513
 
3514
  # Åland Islands
3515
- #: ../../admin/view/wp-slimstat-reports.php:1016
3516
  msgid "c-ax"
3517
  msgstr "Aland Islands"
3518
 
3519
  # Albania
3520
- #: ../../admin/view/wp-slimstat-reports.php:1016
3521
  msgid "c-al"
3522
  msgstr "Albania"
3523
 
3524
  # Algeria
3525
- #: ../../admin/view/wp-slimstat-reports.php:1016
3526
  msgid "c-dz"
3527
  msgstr "Algeria"
3528
 
3529
  # Andorra
3530
- #: ../../admin/view/wp-slimstat-reports.php:1016
3531
  msgid "c-ad"
3532
  msgstr "Andorra"
3533
 
3534
  # Angola
3535
- #: ../../admin/view/wp-slimstat-reports.php:1016
3536
  msgid "c-ao"
3537
  msgstr "Angola"
3538
 
3539
  # Anguilla
3540
- #: ../../admin/view/wp-slimstat-reports.php:1016
3541
  msgid "c-ai"
3542
  msgstr "Anguilla"
3543
 
3544
  # Antigua and Barbuda
3545
- #: ../../admin/view/wp-slimstat-reports.php:1016
3546
  msgid "c-ag"
3547
  msgstr "Antigua and Barbuda"
3548
 
3549
  # Argentina
3550
- #: ../../admin/view/wp-slimstat-reports.php:1016
3551
  msgid "c-ar"
3552
  msgstr "Argentina"
3553
 
3554
  # Armenia
3555
- #: ../../admin/view/wp-slimstat-reports.php:1016
3556
  msgid "c-am"
3557
  msgstr "Armenia"
3558
 
3559
  # Aruba
3560
- #: ../../admin/view/wp-slimstat-reports.php:1016
3561
  msgid "c-aw"
3562
  msgstr "Aruba"
3563
 
3564
  # Australia
3565
- #: ../../admin/view/wp-slimstat-reports.php:1016
3566
  msgid "c-au"
3567
  msgstr "Australia"
3568
 
3569
  # Austria
3570
- #: ../../admin/view/wp-slimstat-reports.php:1016
3571
  msgid "c-at"
3572
  msgstr "Austria"
3573
 
3574
  # Azerbaijan
3575
- #: ../../admin/view/wp-slimstat-reports.php:1016
3576
  msgid "c-az"
3577
  msgstr "Azerbaijan"
3578
 
3579
  # Bahamas
3580
- #: ../../admin/view/wp-slimstat-reports.php:1016
3581
  msgid "c-bs"
3582
  msgstr "Bahamas"
3583
 
3584
  # Bahrain
3585
- #: ../../admin/view/wp-slimstat-reports.php:1016
3586
  msgid "c-bh"
3587
  msgstr "Bahrain"
3588
 
3589
  # Bangladesh
3590
- #: ../../admin/view/wp-slimstat-reports.php:1016
3591
  msgid "c-bd"
3592
  msgstr "Bangladesh"
3593
 
3594
  # Barbados
3595
- #: ../../admin/view/wp-slimstat-reports.php:1016
3596
  msgid "c-bb"
3597
  msgstr "Barbados"
3598
 
3599
  # Belarus
3600
- #: ../../admin/view/wp-slimstat-reports.php:1016
3601
  msgid "c-by"
3602
  msgstr "Belarus"
3603
 
3604
  # Belgium
3605
- #: ../../admin/view/wp-slimstat-reports.php:1016
3606
  msgid "c-be"
3607
  msgstr "Belgium"
3608
 
3609
  # Belize
3610
- #: ../../admin/view/wp-slimstat-reports.php:1016
3611
  msgid "c-bz"
3612
  msgstr "Belize"
3613
 
3614
  # Benin
3615
- #: ../../admin/view/wp-slimstat-reports.php:1016
3616
  msgid "c-bj"
3617
  msgstr "Benin"
3618
 
3619
  # Bermuda
3620
- #: ../../admin/view/wp-slimstat-reports.php:1016
3621
  msgid "c-bm"
3622
  msgstr "Bermuda"
3623
 
3624
  # Bhutan
3625
- #: ../../admin/view/wp-slimstat-reports.php:1016
3626
  msgid "c-bt"
3627
  msgstr "Bhutan"
3628
 
3629
  # Bolivia
3630
- #: ../../admin/view/wp-slimstat-reports.php:1016
3631
  msgid "c-bo"
3632
  msgstr "Bolivia"
3633
 
3634
  # Bosnia and Herzegovina
3635
- #: ../../admin/view/wp-slimstat-reports.php:1016
3636
  msgid "c-ba"
3637
  msgstr "Bosnia and Herzegovina"
3638
 
3639
  # Botswana
3640
- #: ../../admin/view/wp-slimstat-reports.php:1016
3641
  msgid "c-bw"
3642
  msgstr "Botswana"
3643
 
3644
  # Brazil
3645
- #: ../../admin/view/wp-slimstat-reports.php:1016
3646
  msgid "c-br"
3647
  msgstr "Brazil"
3648
 
3649
  # Brunei Darussalam
3650
- #: ../../admin/view/wp-slimstat-reports.php:1016
3651
  msgid "c-bn"
3652
  msgstr "Brunei Darussalam"
3653
 
3654
  # Bulgaria
3655
- #: ../../admin/view/wp-slimstat-reports.php:1016
3656
  msgid "c-bg"
3657
  msgstr "Bulgaria"
3658
 
3659
  # Burkina Faso
3660
- #: ../../admin/view/wp-slimstat-reports.php:1016
3661
  msgid "c-bf"
3662
  msgstr "Burkina Faso"
3663
 
3664
  # Burundi
3665
- #: ../../admin/view/wp-slimstat-reports.php:1016
3666
  msgid "c-bi"
3667
  msgstr "Burundi"
3668
 
3669
  # Cambodia
3670
- #: ../../admin/view/wp-slimstat-reports.php:1016
3671
  msgid "c-kh"
3672
  msgstr "Cambodia"
3673
 
3674
  # Cameroon
3675
- #: ../../admin/view/wp-slimstat-reports.php:1016
3676
  msgid "c-cm"
3677
  msgstr "Cameroon"
3678
 
3679
  # Canada
3680
- #: ../../admin/view/wp-slimstat-reports.php:1016
3681
  msgid "c-ca"
3682
  msgstr "Canada"
3683
 
3684
  # Cape Verde
3685
- #: ../../admin/view/wp-slimstat-reports.php:1016
3686
  msgid "c-cv"
3687
  msgstr "Cape Verde"
3688
 
3689
  # Cayman Islands
3690
- #: ../../admin/view/wp-slimstat-reports.php:1016
3691
  msgid "c-ky"
3692
  msgstr "Cayman Islands"
3693
 
3694
  # Central African Republic
3695
- #: ../../admin/view/wp-slimstat-reports.php:1016
3696
  msgid "c-cf"
3697
  msgstr "Central African Republic"
3698
 
3699
  # Chad
3700
- #: ../../admin/view/wp-slimstat-reports.php:1016
3701
  msgid "c-td"
3702
  msgstr "Chad"
3703
 
3704
  # Chile
3705
- #: ../../admin/view/wp-slimstat-reports.php:1016
3706
  msgid "c-cl"
3707
  msgstr "Chile"
3708
 
3709
  # China
3710
- #: ../../admin/view/wp-slimstat-reports.php:1016
3711
  msgid "c-cn"
3712
  msgstr "China"
3713
 
3714
  # Colombia
3715
- #: ../../admin/view/wp-slimstat-reports.php:1016
3716
  msgid "c-co"
3717
  msgstr "Colombia"
3718
 
3719
  # Comoros
3720
- #: ../../admin/view/wp-slimstat-reports.php:1016
3721
  msgid "c-km"
3722
  msgstr "Comoros"
3723
 
3724
  # Congo
3725
- #: ../../admin/view/wp-slimstat-reports.php:1016
3726
  msgid "c-cg"
3727
  msgstr "Congo"
3728
 
3729
  # The Democratic Republic of the Congo
3730
- #: ../../admin/view/wp-slimstat-reports.php:1016
3731
  msgid "c-cd"
3732
  msgstr "The Democratic Republic of the Congo"
3733
 
3734
  # Costa Rica
3735
- #: ../../admin/view/wp-slimstat-reports.php:1016
3736
  msgid "c-cr"
3737
  msgstr "Costa Rica"
3738
 
3739
  # Côte d'Ivoire
3740
- #: ../../admin/view/wp-slimstat-reports.php:1016
3741
  msgid "c-ci"
3742
  msgstr "Côte d'Ivoire"
3743
 
3744
  # Croatia
3745
- #: ../../admin/view/wp-slimstat-reports.php:1016
3746
  msgid "c-hr"
3747
  msgstr "Croatia"
3748
 
3749
  # Cuba
3750
- #: ../../admin/view/wp-slimstat-reports.php:1016
3751
  msgid "c-cu"
3752
  msgstr "Cuba"
3753
 
3754
  # Cyprus
3755
- #: ../../admin/view/wp-slimstat-reports.php:1016
3756
  msgid "c-cy"
3757
  msgstr "Cyprus"
3758
 
3759
  # Czech Republic
3760
- #: ../../admin/view/wp-slimstat-reports.php:1016
3761
  msgid "c-cz"
3762
  msgstr "Czech Republic"
3763
 
3764
  # Denmark
3765
- #: ../../admin/view/wp-slimstat-reports.php:1016
3766
  msgid "c-dk"
3767
  msgstr "Denmark"
3768
 
3769
  # Djibouti
3770
- #: ../../admin/view/wp-slimstat-reports.php:1016
3771
  msgid "c-dj"
3772
  msgstr "Djibouti"
3773
 
3774
  # Dominica
3775
- #: ../../admin/view/wp-slimstat-reports.php:1016
3776
  msgid "c-dm"
3777
  msgstr "Dominica"
3778
 
3779
  # Dominican Republic
3780
- #: ../../admin/view/wp-slimstat-reports.php:1016
3781
  msgid "c-do"
3782
  msgstr "Dominican Republic"
3783
 
3784
  # Ecuador
3785
- #: ../../admin/view/wp-slimstat-reports.php:1016
3786
  msgid "c-ec"
3787
  msgstr "Ecuador"
3788
 
3789
  # Egypt
3790
- #: ../../admin/view/wp-slimstat-reports.php:1016
3791
  msgid "c-eg"
3792
  msgstr "Egypt"
3793
 
3794
  # El Salvador
3795
- #: ../../admin/view/wp-slimstat-reports.php:1016
3796
  msgid "c-sv"
3797
  msgstr "El Salvador"
3798
 
3799
  # Equatorial Guinea
3800
- #: ../../admin/view/wp-slimstat-reports.php:1016
3801
  msgid "c-gq"
3802
  msgstr "Equatorial Guinea"
3803
 
3804
  # Eritrea
3805
- #: ../../admin/view/wp-slimstat-reports.php:1016
3806
  msgid "c-er"
3807
  msgstr "Eritrea"
3808
 
3809
  # Estonia
3810
- #: ../../admin/view/wp-slimstat-reports.php:1016
3811
  msgid "c-ee"
3812
  msgstr "Estonia"
3813
 
3814
  # Ethiopia
3815
- #: ../../admin/view/wp-slimstat-reports.php:1016
3816
  msgid "c-et"
3817
  msgstr "Ethiopia"
3818
 
3819
  # Faroe Islands
3820
- #: ../../admin/view/wp-slimstat-reports.php:1016
3821
  msgid "c-fo"
3822
  msgstr "Faroe Islands"
3823
 
3824
  # Falkland Islands (Malvinas)
3825
- #: ../../admin/view/wp-slimstat-reports.php:1016
3826
  msgid "c-fk"
3827
  msgstr "Falkland Islands (Malvinas)"
3828
 
3829
  # Fiji
3830
- #: ../../admin/view/wp-slimstat-reports.php:1016
3831
  msgid "c-fj"
3832
  msgstr "Fiji"
3833
 
3834
  # Finland
3835
- #: ../../admin/view/wp-slimstat-reports.php:1016
3836
  msgid "c-fi"
3837
  msgstr "Finland"
3838
 
3839
  # France
3840
- #: ../../admin/view/wp-slimstat-reports.php:1016
3841
  msgid "c-fr"
3842
  msgstr "France"
3843
 
3844
  # French Guiana
3845
- #: ../../admin/view/wp-slimstat-reports.php:1016
3846
  msgid "c-gf"
3847
  msgstr "French Guiana"
3848
 
3849
  # Gabon
3850
- #: ../../admin/view/wp-slimstat-reports.php:1016
3851
  msgid "c-ga"
3852
  msgstr "Gabon"
3853
 
3854
  # Gambia
3855
- #: ../../admin/view/wp-slimstat-reports.php:1016
3856
  msgid "c-gm"
3857
  msgstr "Gambia"
3858
 
3859
  # Georgia
3860
- #: ../../admin/view/wp-slimstat-reports.php:1016
3861
  msgid "c-ge"
3862
  msgstr "Georgia"
3863
 
3864
  # Germany
3865
- #: ../../admin/view/wp-slimstat-reports.php:1016
3866
  msgid "c-de"
3867
  msgstr "Germany"
3868
 
3869
  # Ghana
3870
- #: ../../admin/view/wp-slimstat-reports.php:1016
3871
  msgid "c-gh"
3872
  msgstr "Ghana"
3873
 
3874
  # Greece
3875
- #: ../../admin/view/wp-slimstat-reports.php:1016
3876
  msgid "c-gr"
3877
  msgstr "Greece"
3878
 
3879
  # Greenland
3880
- #: ../../admin/view/wp-slimstat-reports.php:1016
3881
  msgid "c-gl"
3882
  msgstr "Greenland"
3883
 
3884
  # Grenada
3885
- #: ../../admin/view/wp-slimstat-reports.php:1016
3886
  msgid "c-gd"
3887
  msgstr "Grenada"
3888
 
3889
  # Guadeloupe
3890
- #: ../../admin/view/wp-slimstat-reports.php:1016
3891
  msgid "c-gp"
3892
  msgstr "Guadeloupe"
3893
 
3894
  # Guatemala
3895
- #: ../../admin/view/wp-slimstat-reports.php:1016
3896
  msgid "c-gt"
3897
  msgstr "Guatemala"
3898
 
3899
  # Guinea
3900
- #: ../../admin/view/wp-slimstat-reports.php:1016
3901
  msgid "c-gn"
3902
  msgstr "Guinea"
3903
 
3904
  # Guinea-Bissau
3905
- #: ../../admin/view/wp-slimstat-reports.php:1016
3906
  msgid "c-gw"
3907
  msgstr "Guinea-Bissau"
3908
 
3909
  # Guyana
3910
- #: ../../admin/view/wp-slimstat-reports.php:1016
3911
  msgid "c-gy"
3912
  msgstr "Guyana"
3913
 
3914
  # Haiti
3915
- #: ../../admin/view/wp-slimstat-reports.php:1016
3916
  msgid "c-ht"
3917
  msgstr "Haiti"
3918
 
3919
  # Honduras
3920
- #: ../../admin/view/wp-slimstat-reports.php:1016
3921
  msgid "c-hn"
3922
  msgstr "Honduras"
3923
 
3924
  # Hong Kong
3925
- #: ../../admin/view/wp-slimstat-reports.php:1016
3926
  msgid "c-hk"
3927
  msgstr "Hong Kong"
3928
 
3929
  # Hungary
3930
- #: ../../admin/view/wp-slimstat-reports.php:1016
3931
  msgid "c-hu"
3932
  msgstr "Hungary"
3933
 
3934
  # Iceland
3935
- #: ../../admin/view/wp-slimstat-reports.php:1016
3936
  msgid "c-is"
3937
  msgstr "Iceland"
3938
 
3939
  # India
3940
- #: ../../admin/view/wp-slimstat-reports.php:1016
3941
  msgid "c-in"
3942
  msgstr "India"
3943
 
3944
  # Indonesia
3945
- #: ../../admin/view/wp-slimstat-reports.php:1016
3946
  msgid "c-id"
3947
  msgstr "Indonesia"
3948
 
3949
  # Islamic Republic of Iran
3950
- #: ../../admin/view/wp-slimstat-reports.php:1016
3951
  msgid "c-ir"
3952
  msgstr "Islamic Republic of Iran"
3953
 
3954
  # Iraq
3955
- #: ../../admin/view/wp-slimstat-reports.php:1016
3956
  msgid "c-iq"
3957
  msgstr "Iraq"
3958
 
3959
  # Ireland
3960
- #: ../../admin/view/wp-slimstat-reports.php:1016
3961
  msgid "c-ie"
3962
  msgstr "Ireland"
3963
 
3964
  # Israel
3965
- #: ../../admin/view/wp-slimstat-reports.php:1016
3966
  msgid "c-il"
3967
  msgstr "Israel"
3968
 
3969
  # Italy
3970
- #: ../../admin/view/wp-slimstat-reports.php:1016
3971
  msgid "c-it"
3972
  msgstr "Italy"
3973
 
3974
  # Jamaica
3975
- #: ../../admin/view/wp-slimstat-reports.php:1016
3976
  msgid "c-jm"
3977
  msgstr "Jamaica"
3978
 
3979
  # Japan
3980
- #: ../../admin/view/wp-slimstat-reports.php:1016
3981
  msgid "c-jp"
3982
  msgstr "Japan"
3983
 
3984
  # Jordan
3985
- #: ../../admin/view/wp-slimstat-reports.php:1016
3986
  msgid "c-jo"
3987
  msgstr "Jordan"
3988
 
3989
  # Kazakhstan
3990
- #: ../../admin/view/wp-slimstat-reports.php:1016
3991
  msgid "c-kz"
3992
  msgstr "Kazakhstan"
3993
 
3994
  # Kenya
3995
- #: ../../admin/view/wp-slimstat-reports.php:1016
3996
  msgid "c-ke"
3997
  msgstr "Kenya"
3998
 
3999
  # Nauru
4000
- #: ../../admin/view/wp-slimstat-reports.php:1016
4001
  msgid "c-nr"
4002
  msgstr "Nauru"
4003
 
4004
  # Democratic People's Republic of Korea
4005
- #: ../../admin/view/wp-slimstat-reports.php:1016
4006
  msgid "c-kp"
4007
  msgstr "Democratic People's Republic of Korea"
4008
 
4009
  # Republic of Korea
4010
- #: ../../admin/view/wp-slimstat-reports.php:1016
4011
  msgid "c-kr"
4012
  msgstr "Republic of Korea"
4013
 
4014
- #: ../../admin/view/wp-slimstat-reports.php:1016
4015
  msgid "c-kv"
4016
  msgstr "Kosovo"
4017
 
4018
  # Kuwait
4019
- #: ../../admin/view/wp-slimstat-reports.php:1016
4020
  msgid "c-kw"
4021
  msgstr "Kuwait"
4022
 
4023
  # Kyrgyzstan
4024
- #: ../../admin/view/wp-slimstat-reports.php:1016
4025
  msgid "c-kg"
4026
  msgstr "Kyrgyzstan"
4027
 
4028
  # Lao People's Democratic Republic
4029
- #: ../../admin/view/wp-slimstat-reports.php:1016
4030
  msgid "c-la"
4031
  msgstr "Lao People's Democratic Republic"
4032
 
4033
  # Latvia
4034
- #: ../../admin/view/wp-slimstat-reports.php:1016
4035
  msgid "c-lv"
4036
  msgstr "Latvia"
4037
 
4038
  # Lebanon
4039
- #: ../../admin/view/wp-slimstat-reports.php:1016
4040
  msgid "c-lb"
4041
  msgstr "Lebanon"
4042
 
4043
  # Lesotho
4044
- #: ../../admin/view/wp-slimstat-reports.php:1016
4045
  msgid "c-ls"
4046
  msgstr "Lesotho"
4047
 
4048
  # Liberia
4049
- #: ../../admin/view/wp-slimstat-reports.php:1016
4050
  msgid "c-lr"
4051
  msgstr "Liberia"
4052
 
4053
  # Libyan Arab Jamahiriya
4054
- #: ../../admin/view/wp-slimstat-reports.php:1016
4055
  msgid "c-ly"
4056
  msgstr "Libyan Arab Jamahiriya"
4057
 
4058
  # Liechtenstein
4059
- #: ../../admin/view/wp-slimstat-reports.php:1016
4060
  msgid "c-li"
4061
  msgstr "Liechtenstein"
4062
 
4063
  # Lithuania
4064
- #: ../../admin/view/wp-slimstat-reports.php:1016
4065
  msgid "c-lt"
4066
  msgstr "Lithuania"
4067
 
4068
  # Luxembourg
4069
- #: ../../admin/view/wp-slimstat-reports.php:1016
4070
  msgid "c-lu"
4071
  msgstr "Luxembourg"
4072
 
4073
  # The Former Yugoslav Republic of Macedonia
4074
- #: ../../admin/view/wp-slimstat-reports.php:1016
4075
  msgid "c-mk"
4076
  msgstr "The Former Yugoslav Republic of Macedonia"
4077
 
4078
  # Madagascar
4079
- #: ../../admin/view/wp-slimstat-reports.php:1016
4080
  msgid "c-mg"
4081
  msgstr "Madagascar"
4082
 
4083
  # Malawi
4084
- #: ../../admin/view/wp-slimstat-reports.php:1016
4085
  msgid "c-mw"
4086
  msgstr "Malawi"
4087
 
4088
  # Malaysia
4089
- #: ../../admin/view/wp-slimstat-reports.php:1016
4090
  msgid "c-my"
4091
  msgstr "Malaysia"
4092
 
4093
  # Mali
4094
- #: ../../admin/view/wp-slimstat-reports.php:1016
4095
  msgid "c-ml"
4096
  msgstr "Mali"
4097
 
4098
  # Malta
4099
- #: ../../admin/view/wp-slimstat-reports.php:1016
4100
  msgid "c-mt"
4101
  msgstr "Malta"
4102
 
4103
  # Martinique
4104
- #: ../../admin/view/wp-slimstat-reports.php:1016
4105
  msgid "c-mq"
4106
  msgstr "Martinique"
4107
 
4108
  # Mauritania
4109
- #: ../../admin/view/wp-slimstat-reports.php:1016
4110
  msgid "c-mr"
4111
  msgstr "Mauritania"
4112
 
4113
  # Mauritius
4114
- #: ../../admin/view/wp-slimstat-reports.php:1016
4115
  msgid "c-mu"
4116
  msgstr "Mauritius"
4117
 
4118
  # Mexico
4119
- #: ../../admin/view/wp-slimstat-reports.php:1016
4120
  msgid "c-mx"
4121
  msgstr "Mexico"
4122
 
4123
  # Moldova
4124
- #: ../../admin/view/wp-slimstat-reports.php:1016
4125
  msgid "c-md"
4126
  msgstr "Moldova"
4127
 
4128
  # Mongolia
4129
- #: ../../admin/view/wp-slimstat-reports.php:1016
4130
  msgid "c-mn"
4131
  msgstr "Mongolia"
4132
 
4133
  # Montenegro
4134
- #: ../../admin/view/wp-slimstat-reports.php:1016
4135
  msgid "c-me"
4136
  msgstr "Montenegro"
4137
 
4138
  # Montserrat
4139
- #: ../../admin/view/wp-slimstat-reports.php:1016
4140
  msgid "c-ms"
4141
  msgstr "Montserrat"
4142
 
4143
  # Morocco
4144
- #: ../../admin/view/wp-slimstat-reports.php:1016
4145
  msgid "c-ma"
4146
  msgstr "Morocco"
4147
 
4148
  # Mozambique
4149
- #: ../../admin/view/wp-slimstat-reports.php:1016
4150
  msgid "c-mz"
4151
  msgstr "Mozambique"
4152
 
4153
  # Myanmar
4154
- #: ../../admin/view/wp-slimstat-reports.php:1016
4155
  msgid "c-mm"
4156
  msgstr "Myanmar"
4157
 
4158
  # Namibia
4159
- #: ../../admin/view/wp-slimstat-reports.php:1016
4160
  msgid "c-na"
4161
  msgstr "Namibia"
4162
 
4163
  # Nepal
4164
- #: ../../admin/view/wp-slimstat-reports.php:1016
4165
  msgid "c-np"
4166
  msgstr "Nepal"
4167
 
4168
  # Netherlands
4169
- #: ../../admin/view/wp-slimstat-reports.php:1016
4170
  msgid "c-nl"
4171
  msgstr "Netherlands"
4172
 
4173
  # New Caledonia
4174
- #: ../../admin/view/wp-slimstat-reports.php:1016
4175
  msgid "c-nc"
4176
  msgstr "New Caledonia"
4177
 
4178
  # New Zealand
4179
- #: ../../admin/view/wp-slimstat-reports.php:1016
4180
  msgid "c-nz"
4181
  msgstr "New Zealand"
4182
 
4183
  # Nicaragua
4184
- #: ../../admin/view/wp-slimstat-reports.php:1016
4185
  msgid "c-ni"
4186
  msgstr "Nicaragua"
4187
 
4188
  # Niger
4189
- #: ../../admin/view/wp-slimstat-reports.php:1016
4190
  msgid "c-ne"
4191
  msgstr "Niger"
4192
 
4193
  # Nigeria
4194
- #: ../../admin/view/wp-slimstat-reports.php:1016
4195
  msgid "c-ng"
4196
  msgstr "Nigeria"
4197
 
4198
  # Norway
4199
- #: ../../admin/view/wp-slimstat-reports.php:1016
4200
  msgid "c-no"
4201
  msgstr "Norway"
4202
 
4203
  # Oman
4204
- #: ../../admin/view/wp-slimstat-reports.php:1016
4205
  msgid "c-om"
4206
  msgstr "Oman"
4207
 
4208
  # Pakistan
4209
- #: ../../admin/view/wp-slimstat-reports.php:1016
4210
  msgid "c-pk"
4211
  msgstr "Pakistan"
4212
 
4213
  # Palau
4214
- #: ../../admin/view/wp-slimstat-reports.php:1016
4215
  msgid "c-pw"
4216
  msgstr "Palau"
4217
 
4218
  # Occupied Palestinian Territory
4219
- #: ../../admin/view/wp-slimstat-reports.php:1016
4220
  msgid "c-ps"
4221
  msgstr "Occupied Palestinian Territory"
4222
 
4223
  # Panama
4224
- #: ../../admin/view/wp-slimstat-reports.php:1016
4225
  msgid "c-pa"
4226
  msgstr "Panama"
4227
 
4228
  # Papua New Guinea
4229
- #: ../../admin/view/wp-slimstat-reports.php:1016
4230
  msgid "c-pg"
4231
  msgstr "Papua New Guinea"
4232
 
4233
  # Paraguay
4234
- #: ../../admin/view/wp-slimstat-reports.php:1016
4235
  msgid "c-py"
4236
  msgstr "Paraguay"
4237
 
4238
  # Peru
4239
- #: ../../admin/view/wp-slimstat-reports.php:1016
4240
  msgid "c-pe"
4241
  msgstr "Peru"
4242
 
4243
  # Philippines
4244
- #: ../../admin/view/wp-slimstat-reports.php:1016
4245
  msgid "c-ph"
4246
  msgstr "Philippines"
4247
 
4248
  # Poland
4249
- #: ../../admin/view/wp-slimstat-reports.php:1016
4250
  msgid "c-pl"
4251
  msgstr "Poland"
4252
 
4253
  # Portugal
4254
- #: ../../admin/view/wp-slimstat-reports.php:1016
4255
  msgid "c-pt"
4256
  msgstr "Portugal"
4257
 
4258
  # Puerto Rico
4259
- #: ../../admin/view/wp-slimstat-reports.php:1016
4260
  msgid "c-pr"
4261
  msgstr "Puerto Rico"
4262
 
4263
  # Qatar
4264
- #: ../../admin/view/wp-slimstat-reports.php:1016
4265
  msgid "c-qa"
4266
  msgstr "Qatar"
4267
 
4268
  # Réunion
4269
- #: ../../admin/view/wp-slimstat-reports.php:1016
4270
  msgid "c-re"
4271
  msgstr "Réunion"
4272
 
4273
  # Romania
4274
- #: ../../admin/view/wp-slimstat-reports.php:1016
4275
  msgid "c-ro"
4276
  msgstr "Romania"
4277
 
4278
  # Russian Federation
4279
- #: ../../admin/view/wp-slimstat-reports.php:1016
4280
  msgid "c-ru"
4281
  msgstr "Russian Federation"
4282
 
4283
  # Rwanda
4284
- #: ../../admin/view/wp-slimstat-reports.php:1016
4285
  msgid "c-rw"
4286
  msgstr "Rwanda"
4287
 
4288
  # Saint Kitts and Nevis
4289
- #: ../../admin/view/wp-slimstat-reports.php:1016
4290
  msgid "c-kn"
4291
  msgstr "Saint Kitts and Nevis"
4292
 
4293
  # Saint Lucia
4294
- #: ../../admin/view/wp-slimstat-reports.php:1016
4295
  msgid "c-lc"
4296
  msgstr "Saint Lucia"
4297
 
4298
  # Saint Martin
4299
- #: ../../admin/view/wp-slimstat-reports.php:1016
4300
  msgid "c-mf"
4301
  msgstr "Saint Martin"
4302
 
4303
  # Saint Vincent and the Grenadines
4304
- #: ../../admin/view/wp-slimstat-reports.php:1016
4305
  msgid "c-vc"
4306
  msgstr "Saint Vincent and the Grenadines"
4307
 
4308
  # Samoa
4309
- #: ../../admin/view/wp-slimstat-reports.php:1016
4310
  msgid "c-ws"
4311
  msgstr "Samoa"
4312
 
4313
  # Sao Tome and Principe
4314
- #: ../../admin/view/wp-slimstat-reports.php:1016
4315
  msgid "c-st"
4316
  msgstr "Sao Tome and Principe"
4317
 
4318
  # Saudi Arabia
4319
- #: ../../admin/view/wp-slimstat-reports.php:1016
4320
  msgid "c-sa"
4321
  msgstr "Saudi Arabia"
4322
 
4323
  # Senegal
4324
- #: ../../admin/view/wp-slimstat-reports.php:1016
4325
  msgid "c-sn"
4326
  msgstr "Senegal"
4327
 
4328
  # Serbia
4329
- #: ../../admin/view/wp-slimstat-reports.php:1016
4330
  msgid "c-rs"
4331
  msgstr "Serbia"
4332
 
4333
  # Sierra Leone
4334
- #: ../../admin/view/wp-slimstat-reports.php:1016
4335
  msgid "c-sl"
4336
  msgstr "Sierra Leone"
4337
 
4338
  # Singapore
4339
- #: ../../admin/view/wp-slimstat-reports.php:1016
4340
  msgid "c-sg"
4341
  msgstr "Singapore"
4342
 
4343
  # Slovakia
4344
- #: ../../admin/view/wp-slimstat-reports.php:1016
4345
  msgid "c-sk"
4346
  msgstr "Slovakia"
4347
 
4348
  # Slovenia
4349
- #: ../../admin/view/wp-slimstat-reports.php:1016
4350
  msgid "c-si"
4351
  msgstr "Slovenia"
4352
 
4353
  # Solomon Islands
4354
- #: ../../admin/view/wp-slimstat-reports.php:1016
4355
  msgid "c-sb"
4356
  msgstr "Solomon Islands"
4357
 
4358
  # Somalia
4359
- #: ../../admin/view/wp-slimstat-reports.php:1016
4360
  msgid "c-so"
4361
  msgstr "Somalia"
4362
 
4363
  # South Africa
4364
- #: ../../admin/view/wp-slimstat-reports.php:1016
4365
  msgid "c-za"
4366
  msgstr "South Africa"
4367
 
4368
  # South Georgia and the South Sandwich Islands
4369
- #: ../../admin/view/wp-slimstat-reports.php:1016
4370
  msgid "c-gs"
4371
  msgstr "South Georgia and the South Sandwich Islands"
4372
 
4373
  # Spain
4374
- #: ../../admin/view/wp-slimstat-reports.php:1016
4375
  msgid "c-es"
4376
  msgstr "Spain"
4377
 
4378
  # Sri Lanka
4379
- #: ../../admin/view/wp-slimstat-reports.php:1016
4380
  msgid "c-lk"
4381
  msgstr "Sri Lanka"
4382
 
4383
- #: ../../admin/view/wp-slimstat-reports.php:1016
4384
  msgid "c-sc"
4385
  msgstr "Seychelles"
4386
 
4387
  # Sudan
4388
- #: ../../admin/view/wp-slimstat-reports.php:1016
4389
  msgid "c-sd"
4390
  msgstr "Sudan"
4391
 
4392
- #: ../../admin/view/wp-slimstat-reports.php:1016
4393
  msgid "c-ss"
4394
  msgstr "South Sudan"
4395
 
4396
  # Suriname
4397
- #: ../../admin/view/wp-slimstat-reports.php:1016
4398
  msgid "c-sr"
4399
  msgstr "Suriname"
4400
 
4401
  # Svalbard and Jan Mayen
4402
- #: ../../admin/view/wp-slimstat-reports.php:1016
4403
  msgid "c-sj"
4404
  msgstr "Svalbard and Jan Mayen"
4405
 
4406
  # Swaziland
4407
- #: ../../admin/view/wp-slimstat-reports.php:1016
4408
  msgid "c-sz"
4409
  msgstr "Swaziland"
4410
 
4411
  # Sweden
4412
- #: ../../admin/view/wp-slimstat-reports.php:1016
4413
  msgid "c-se"
4414
  msgstr "Sweden"
4415
 
4416
  # Switzerland
4417
- #: ../../admin/view/wp-slimstat-reports.php:1016
4418
  msgid "c-ch"
4419
  msgstr "Switzerland"
4420
 
4421
  # Syrian Arab Republic
4422
- #: ../../admin/view/wp-slimstat-reports.php:1016
4423
  msgid "c-sy"
4424
  msgstr "Syrian Arab Republic"
4425
 
4426
  # Taiwan, Province of China
4427
- #: ../../admin/view/wp-slimstat-reports.php:1016
4428
  msgid "c-tw"
4429
  msgstr "Taiwan"
4430
 
4431
  # Tajikistan
4432
- #: ../../admin/view/wp-slimstat-reports.php:1016
4433
  msgid "c-tj"
4434
  msgstr "Tajikistan"
4435
 
4436
  # United Republic of Tanzania
4437
- #: ../../admin/view/wp-slimstat-reports.php:1016
4438
  msgid "c-tz"
4439
  msgstr "United Republic of Tanzania"
4440
 
4441
  # Thailand
4442
- #: ../../admin/view/wp-slimstat-reports.php:1016
4443
  msgid "c-th"
4444
  msgstr "Thailand"
4445
 
4446
  # Timor-Leste
4447
- #: ../../admin/view/wp-slimstat-reports.php:1016
4448
  msgid "c-tl"
4449
  msgstr "Timor-Leste"
4450
 
4451
  # Togo
4452
- #: ../../admin/view/wp-slimstat-reports.php:1016
4453
  msgid "c-tg"
4454
  msgstr "Togo"
4455
 
4456
  # Tonga
4457
- #: ../../admin/view/wp-slimstat-reports.php:1016
4458
  msgid "c-to"
4459
  msgstr "Tonga"
4460
 
4461
  # Trinidad and Tobago
4462
- #: ../../admin/view/wp-slimstat-reports.php:1016
4463
  msgid "c-tt"
4464
  msgstr "Trinidad and Tobago"
4465
 
4466
  # Tunisia
4467
- #: ../../admin/view/wp-slimstat-reports.php:1016
4468
  msgid "c-tn"
4469
  msgstr "Tunisia"
4470
 
4471
  # Turkey
4472
- #: ../../admin/view/wp-slimstat-reports.php:1016
4473
  msgid "c-tr"
4474
  msgstr "Turkey"
4475
 
4476
  # Turkmenistan
4477
- #: ../../admin/view/wp-slimstat-reports.php:1016
4478
  msgid "c-tm"
4479
  msgstr "Turkmenistan"
4480
 
4481
  # Turks and Caicos Islands
4482
- #: ../../admin/view/wp-slimstat-reports.php:1016
4483
  msgid "c-tc"
4484
  msgstr "Turks and Caicos Islands"
4485
 
4486
  # Uganda
4487
- #: ../../admin/view/wp-slimstat-reports.php:1016
4488
  msgid "c-ug"
4489
  msgstr "Uganda"
4490
 
4491
  # Ukraine
4492
- #: ../../admin/view/wp-slimstat-reports.php:1016
4493
  msgid "c-ua"
4494
  msgstr "Ukraine"
4495
 
4496
  # United Arab Emirates
4497
- #: ../../admin/view/wp-slimstat-reports.php:1016
4498
  msgid "c-ae"
4499
  msgstr "United Arab Emirates"
4500
 
4501
  # United Kingdom
4502
- #: ../../admin/view/wp-slimstat-reports.php:1016
4503
  msgid "c-gb"
4504
  msgstr "United Kingdom"
4505
 
4506
  # United States
4507
- #: ../../admin/view/wp-slimstat-reports.php:1016
4508
  msgid "c-us"
4509
  msgstr "United States"
4510
 
4511
  # Uruguay
4512
- #: ../../admin/view/wp-slimstat-reports.php:1016
4513
  msgid "c-uy"
4514
  msgstr "Uruguay"
4515
 
4516
  # Uzbekistan
4517
- #: ../../admin/view/wp-slimstat-reports.php:1016
4518
  msgid "c-uz"
4519
  msgstr "Uzbekistan"
4520
 
4521
  # Vanuatu
4522
- #: ../../admin/view/wp-slimstat-reports.php:1016
4523
  msgid "c-vu"
4524
  msgstr "Vanuatu"
4525
 
4526
  # Venezuela
4527
- #: ../../admin/view/wp-slimstat-reports.php:1016
4528
  msgid "c-ve"
4529
  msgstr "Venezuela"
4530
 
4531
  # Viet Nam
4532
- #: ../../admin/view/wp-slimstat-reports.php:1016
4533
  msgid "c-vn"
4534
  msgstr "Viet Nam"
4535
 
4536
  # British Virgin Islands
4537
- #: ../../admin/view/wp-slimstat-reports.php:1016
4538
  msgid "c-vg"
4539
  msgstr "British Virgin Islands"
4540
 
4541
  # U.S. Virgin Islands
4542
- #: ../../admin/view/wp-slimstat-reports.php:1016
4543
  msgid "c-vi"
4544
  msgstr "U.S. Virgin Islands"
4545
 
4546
  # Western Sahara
4547
- #: ../../admin/view/wp-slimstat-reports.php:1016
4548
  msgid "c-eh"
4549
  msgstr "Western Sahara"
4550
 
4551
  # Yemen
4552
- #: ../../admin/view/wp-slimstat-reports.php:1016
4553
  msgid "c-ye"
4554
  msgstr "Yemen"
4555
 
4556
  # Zambia
4557
- #: ../../admin/view/wp-slimstat-reports.php:1016
4558
  msgid "c-zm"
4559
  msgstr "Zambia"
4560
 
4561
  # Zimbabwe
4562
- #: ../../admin/view/wp-slimstat-reports.php:1016
4563
  msgid "c-zw"
4564
  msgstr "Zimbabwe"
4565
 
4566
  # Guernsey
4567
- #: ../../admin/view/wp-slimstat-reports.php:1016
4568
  msgid "c-gg"
4569
  msgstr "Guernsey"
4570
 
4571
  # Jersey
4572
- #: ../../admin/view/wp-slimstat-reports.php:1016
4573
  msgid "c-je"
4574
  msgstr "Jersey"
4575
 
4576
  # Isle of Man
4577
- #: ../../admin/view/wp-slimstat-reports.php:1016
4578
  msgid "c-im"
4579
  msgstr "Isle of Man"
4580
 
4581
  # Maldives
4582
- #: ../../admin/view/wp-slimstat-reports.php:1016
4583
  msgid "c-mv"
4584
  msgstr "Maldives"
4585
 
4586
- #: ../../admin/view/wp-slimstat-reports.php:1017
4587
  msgid "c-eu"
4588
  msgstr ""
4589
 
4590
- #: ../../admin/view/wp-slimstat-reports.php:1106
4591
  msgid ""
4592
  "This value includes not only posts, but also custom post types, regardless "
4593
  "of their status"
4594
  msgstr ""
4595
 
4596
- #: ../../admin/view/wp-slimstat-reports.php:1107
4597
  msgid "Content Items"
4598
  msgstr ""
4599
 
4600
- #: ../../admin/view/wp-slimstat-reports.php:1108
4601
  msgid "Total Comments"
4602
  msgstr ""
4603
 
4604
- #: ../../admin/view/wp-slimstat-reports.php:1109
4605
  msgid "Pingbacks"
4606
  msgstr ""
4607
 
4608
- #: ../../admin/view/wp-slimstat-reports.php:1110
4609
  msgid "Trackbacks"
4610
  msgstr ""
4611
 
4612
- #: ../../admin/view/wp-slimstat-reports.php:1111
4613
  msgid "Avg Comments Per Post"
4614
  msgstr ""
4615
 
4616
- #: ../../admin/view/wp-slimstat-reports.php:1112
4617
  msgid "Avg Posts Per Day"
4618
  msgstr ""
4619
 
4620
- #: ../../admin/view/wp-slimstat-reports.php:1113
4621
  msgid "Avg Server Latency"
4622
  msgstr ""
4623
 
4624
- #: ../../admin/view/wp-slimstat-reports.php:1114
4625
  msgid "Avg Page Load Time"
4626
  msgstr ""
4627
 
4628
- #: ../../admin/view/wp-slimstat-reports.php:1141
4629
- msgid "Visits"
4630
- msgstr ""
4631
-
4632
- #: ../../admin/view/wp-slimstat-reports.php:1145
4633
  msgid "Domains"
4634
  msgstr ""
4635
 
4636
- #: ../../admin/view/wp-slimstat-reports.php:1150
4637
- msgid "Avg Pageviews"
4638
- msgstr ""
4639
-
4640
- #: ../../admin/wp-slimstat-admin.php:504 ../../admin/wp-slimstat-admin.php:516
4641
- #: ../../admin/wp-slimstat-admin.php:519
4642
  msgid "SlimStat"
4643
  msgstr ""
4644
 
4645
- #: ../../admin/wp-slimstat-admin.php:600
4646
- msgid "Pageviews in the last 365 days"
4647
  msgstr ""
4648
 
4649
- #: ../../admin/wp-slimstat-admin.php:628
4650
- msgid "Show on screen"
4651
  msgstr ""
4652
 
4653
- #: ../../admin/wp-slimstat-admin.php:656
4654
- msgid "Hide this notice"
4655
  msgstr ""
4656
 
4657
- #: ../../admin/wp-slimstat-admin.php:698
4658
  msgid "Already saved"
4659
  msgstr ""
4660
 
4661
- #: ../../admin/wp-slimstat-admin.php:706
4662
  msgid "Saved"
4663
  msgstr ""
4664
 
4665
- #: ../../admin/wp-slimstat-admin.php:725
4666
  msgid "Delete this filter"
4667
  msgstr ""
4668
 
4669
- #: ../../admin/wp-slimstat-admin.php:759
4670
  msgid "There was an error updating the following options:"
4671
  msgstr ""
4672
 
4673
- #: ../../admin/wp-slimstat-admin.php:762
4674
  msgid "Your changes have been saved."
4675
  msgstr ""
4676
 
4677
- #: ../../admin/wp-slimstat-admin.php:785
4678
  msgid "Save Changes"
4679
  msgstr ""
4680
 
4681
- #: ../../admin/wp-slimstat-admin.php:801
4682
  msgid "Definitions"
4683
  msgstr ""
4684
 
4685
- #: ../../admin/wp-slimstat-admin.php:804
4686
  msgid "Pageview"
4687
  msgstr ""
4688
 
4689
- #: ../../admin/wp-slimstat-admin.php:804
4690
  msgid ""
4691
  "A request to load a single HTML file (\"page\"). This should be contrasted "
4692
  "with a \"hit\", which refers to a request for any file from a web server. "
4693
  "Slimstat logs a pageview each time the tracking code is executed"
4694
  msgstr ""
4695
 
4696
- #: ../../admin/wp-slimstat-admin.php:805
4697
  msgid "(Human) Visit"
4698
  msgstr ""
4699
 
4700
- #: ../../admin/wp-slimstat-admin.php:805
4701
  msgid ""
4702
  "A period of interaction between a visitor's browser and your website, ending "
4703
  "when the browser is closed or when the user has been inactive on that site "
4704
  "for 30 minutes"
4705
  msgstr ""
4706
 
4707
- #: ../../admin/wp-slimstat-admin.php:806
4708
  msgid ""
4709
  "Any user who has left a comment on your blog, and is thus identified by "
4710
  "Wordpress as a returning visitor"
4711
  msgstr ""
4712
 
4713
- #: ../../admin/wp-slimstat-admin.php:807
4714
  msgid "Unique IP"
4715
  msgstr ""
4716
 
4717
- #: ../../admin/wp-slimstat-admin.php:807
4718
  msgid ""
4719
  "Used to differentiate between multiple requests to download a file from one "
4720
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -4722,154 +4946,154 @@ msgid ""
4722
  "from, it is useful, but not perfect"
4723
  msgstr ""
4724
 
4725
- #: ../../admin/wp-slimstat-admin.php:808
4726
  msgid ""
4727
  "the originating IP address of a client connecting to a web server through an "
4728
  "HTTP proxy or load balancer"
4729
  msgstr ""
4730
 
4731
- #: ../../admin/wp-slimstat-admin.php:809
4732
  msgid "Direct Traffic"
4733
  msgstr ""
4734
 
4735
- #: ../../admin/wp-slimstat-admin.php:809
4736
  msgid ""
4737
  "All those people showing up to your Web site by typing in the URL of your "
4738
  "Web site coming or from a bookmark; some people also call this \"default "
4739
  "traffic\" or \"ambient traffic\""
4740
  msgstr ""
4741
 
4742
- #: ../../admin/wp-slimstat-admin.php:810
4743
  msgid "Search Engine"
4744
  msgstr ""
4745
 
4746
- #: ../../admin/wp-slimstat-admin.php:810
4747
  msgid ""
4748
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
4749
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
4750
  msgstr ""
4751
 
4752
- #: ../../admin/wp-slimstat-admin.php:811 ../../admin/wp-slimstat-admin.php:827
4753
  msgid "Keywords used by your visitors to find your website on a search engine"
4754
  msgstr ""
4755
 
4756
- #: ../../admin/wp-slimstat-admin.php:812
4757
  msgid "SERP"
4758
  msgstr ""
4759
 
4760
- #: ../../admin/wp-slimstat-admin.php:812
4761
  msgid ""
4762
  "Short for search engine results page, the Web page that a search engine "
4763
  "returns with the results of its search. The value shown represents your rank "
4764
  "(or position) within that list of results"
4765
  msgstr ""
4766
 
4767
- #: ../../admin/wp-slimstat-admin.php:813
4768
  msgid ""
4769
  "Any program used for accessing a website; this includes browsers, robots, "
4770
  "spiders and any other program that was used to retrieve information from the "
4771
  "site"
4772
  msgstr ""
4773
 
4774
- #: ../../admin/wp-slimstat-admin.php:814
4775
  msgid ""
4776
  "A link from one domain to another is said to be outbound from its source "
4777
  "anchor and inbound to its target. This report lists all the links to other "
4778
  "websites followed by your visitors."
4779
  msgstr ""
4780
 
4781
- #: ../../admin/wp-slimstat-admin.php:821
4782
  msgid "Basic Filters"
4783
  msgstr ""
4784
 
4785
- #: ../../admin/wp-slimstat-admin.php:824
4786
  msgid "User agent (Firefox, Chrome, ...)"
4787
  msgstr ""
4788
 
4789
- #: ../../admin/wp-slimstat-admin.php:825
4790
  msgid "2-letter code (us, ru, de, it, ...)"
4791
  msgstr ""
4792
 
4793
- #: ../../admin/wp-slimstat-admin.php:826
4794
  msgid "IP"
4795
  msgstr ""
4796
 
4797
- #: ../../admin/wp-slimstat-admin.php:826
4798
  msgid "Visitor's public IP address"
4799
  msgstr ""
4800
 
4801
- #: ../../admin/wp-slimstat-admin.php:828
4802
  msgid ""
4803
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
4804
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
4805
  "column) for more information"
4806
  msgstr ""
4807
 
4808
- #: ../../admin/wp-slimstat-admin.php:829
4809
  msgid ""
4810
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
4811
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
4812
  "manual page</a> for more information"
4813
  msgstr ""
4814
 
4815
- #: ../../admin/wp-slimstat-admin.php:830
4816
  msgid "URL accessed on your site"
4817
  msgstr ""
4818
 
4819
- #: ../../admin/wp-slimstat-admin.php:831
4820
  msgid "Complete address of the referrer page"
4821
  msgstr ""
4822
 
4823
- #: ../../admin/wp-slimstat-admin.php:832
4824
  msgid ""
4825
  "Visitors' names according to the cookie set by Wordpress after they leave a "
4826
  "comment"
4827
  msgstr ""
4828
 
4829
- #: ../../admin/wp-slimstat-admin.php:840
4830
  msgid "Advanced Filters"
4831
  msgstr ""
4832
 
4833
- #: ../../admin/wp-slimstat-admin.php:843
4834
  msgid "user agent version (9.0, 11, ...)"
4835
  msgstr ""
4836
 
4837
- #: ../../admin/wp-slimstat-admin.php:844
4838
  msgid ""
4839
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
4840
  "all others"
4841
  msgstr ""
4842
 
4843
- #: ../../admin/wp-slimstat-admin.php:845
4844
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
4845
  msgstr ""
4846
 
4847
- #: ../../admin/wp-slimstat-admin.php:846
4848
  msgid ""
4849
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
4850
  "values)"
4851
  msgstr ""
4852
 
4853
- #: ../../admin/wp-slimstat-admin.php:847
4854
  msgid ""
4855
  "this field is set to <em>[pre]</em> if the resource has been accessed "
4856
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4857
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
4858
  msgstr ""
4859
 
4860
- #: ../../admin/wp-slimstat-admin.php:848
4861
  msgid "author associated to that post/page when the resource was accessed"
4862
  msgstr ""
4863
 
4864
- #: ../../admin/wp-slimstat-admin.php:849
4865
  msgid "ID of the category/term associated to the resource, when available"
4866
  msgstr ""
4867
 
4868
- #: ../../admin/wp-slimstat-admin.php:850
4869
  msgid "visitor's originating IP address, if available"
4870
  msgstr ""
4871
 
4872
- #: ../../admin/wp-slimstat-admin.php:851
4873
  msgid ""
4874
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4875
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -4878,41 +5102,129 @@ msgid ""
4878
  "information"
4879
  msgstr ""
4880
 
4881
- #: ../../admin/wp-slimstat-admin.php:852
4882
  msgid "viewport width and height (1024x768, 800x600, ...)"
4883
  msgstr ""
4884
 
4885
- #: ../../admin/wp-slimstat-admin.php:853
4886
  msgid ""
4887
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4888
  "visitors"
4889
  msgstr ""
4890
 
4891
- #: ../../admin/wp-slimstat-admin.php:854
4892
  msgid "Date Filters"
4893
  msgstr ""
4894
 
4895
- #: ../../admin/wp-slimstat-admin.php:854
4896
  msgid ""
4897
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4898
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
4899
  "year=blank, interval=-1 will set a year-to-date filter)"
4900
  msgstr ""
4901
 
4902
- #: ../../admin/wp-slimstat-admin.php:855
4903
  msgid "SERP Position"
4904
  msgstr ""
4905
 
4906
- #: ../../admin/wp-slimstat-admin.php:855
4907
  msgid ""
4908
  "set the filter to Referer contains cd=N&, where N is the position you are "
4909
  "looking for"
4910
  msgstr ""
4911
 
4912
- #: ../../admin/wp-slimstat-admin.php:882
4913
  msgid "Yes"
4914
  msgstr ""
4915
 
4916
- #: ../../admin/wp-slimstat-admin.php:884
4917
  msgid "Site Specific"
4918
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
+ "POT-Creation-Date: 2015-04-17 20:30-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: Get Used To IT <support@getused.to.it>\n"
7
  "Language-Team: camu <info@duechiacchiere.it>\n"
15
  "X-Poedit-Bookmarks: 332,-1,-1,-1,-1,-1,-1,-1,-1,-1\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:31 ../../admin/config/index.php:9
31
+ #: ../../admin/wp-slimstat-admin.php:592 ../../admin/wp-slimstat-admin.php:607
32
+ #: ../../wp-slimstat.php:1476
33
  msgid "Add-ons"
34
  msgstr ""
35
 
36
+ #: ../../admin/config/addons.php:32
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 "
44
  msgstr ""
45
 
46
  #: ../../admin/config/addons.php:36
47
+ #, php-format
48
+ msgid ""
49
+ "This list is cached daily on your server: <a href=\"%s&amp;force_refresh=true"
50
+ "\">click here</a> to clear the cache."
51
+ msgstr ""
52
+
53
+ #: ../../admin/config/addons.php:45
54
  msgid "Add-on"
55
  msgstr ""
56
 
57
+ #: ../../admin/config/addons.php:45
58
  msgid "Description"
59
  msgstr ""
60
 
62
  msgid "General"
63
  msgstr ""
64
 
65
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:47
66
+ #: ../../admin/config/index.php:146
67
+ msgid "Reports"
68
  msgstr ""
69
 
70
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:73
71
  msgid "Filters"
72
  msgstr ""
73
 
74
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:144
75
  msgid "Permissions"
76
  msgstr ""
77
 
78
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:221
79
  msgid "Advanced"
80
  msgstr ""
81
 
82
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:252
83
  msgid "Maintenance"
84
  msgstr ""
85
 
86
+ #: ../../admin/config/index.php:14 ../../admin/config/index.php:151
87
+ #: ../../admin/wp-slimstat-admin.php:633 ../../admin/wp-slimstat-admin.php:635
88
+ #: ../../wp-slimstat.php:1479
89
  msgid "Settings"
90
  msgstr ""
91
 
92
+ #: ../../admin/config/index.php:20 ../../admin/config/index.php:226
93
  msgid "Tracker"
94
  msgstr ""
95
 
170
  #: ../../admin/config/index.php:28
171
  msgid ""
172
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
173
+ "per post in the last 365 days."
174
  msgstr ""
175
 
176
+ #: ../../admin/config/index.php:29
177
+ msgid "Interval"
178
  msgstr ""
179
 
180
+ #: ../../admin/config/index.php:29
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:30
187
+ msgid "Report Type"
188
  msgstr ""
189
 
190
+ #: ../../admin/config/index.php:30
191
  msgid ""
192
+ "Select what kind of information you would like to see displayed on the Posts "
193
+ "admin screen. Pageviews include all the hits regardless of the user, Unique "
194
+ "IPs consider only one hit per user in the given time range."
195
+ msgstr ""
196
+
197
+ #: ../../admin/config/index.php:30 ../../admin/view/index.php:173
198
+ #: ../../admin/view/wp-slimstat-reports.php:850
199
+ #: ../../admin/view/wp-slimstat-reports.php:952
200
+ #: ../../admin/view/wp-slimstat-reports.php:1175
201
+ msgid "Pageviews"
202
+ msgstr ""
203
+
204
+ #: ../../admin/config/index.php:30
205
+ #: ../../admin/view/wp-slimstat-reports.php:856
206
+ #: ../../admin/view/wp-slimstat-reports.php:871
207
+ #: ../../admin/view/wp-slimstat-reports.php:1175
208
+ #: ../../admin/view/wp-slimstat-reports.php:1179
209
+ #: ../../admin/view/wp-slimstat-reports.php:1183
210
+ msgid "Unique IPs"
211
  msgstr ""
212
 
213
  #: ../../admin/config/index.php:32
214
+ msgid "Database"
215
+ msgstr ""
216
+
217
+ #: ../../admin/config/index.php:33
218
  msgid "Retain data for"
219
  msgstr ""
220
 
221
+ #: ../../admin/config/index.php:33
222
  msgid ""
223
  "Clean-up log entries older than the number of days specified here above. "
224
  "Enter <strong>0</strong> (number zero) if you want to preserve your data "
225
  "regardless of its age."
226
  msgstr ""
227
 
228
+ #: ../../admin/config/index.php:33
229
  msgid "Next clean-up on"
230
  msgstr ""
231
 
232
+ #: ../../admin/config/index.php:33
233
  #, php-format
234
+ msgid ""
235
+ "Entries logged on or before %s will be archived or deleted according to the "
236
+ "option here below."
237
  msgstr ""
238
 
239
+ #: ../../admin/config/index.php:33 ../../admin/view/index.php:102
240
+ #: ../../admin/view/wp-slimstat-db-new.php:70
241
+ #: ../../admin/view/wp-slimstat-db.php:75
242
+ #: ../../admin/view/wp-slimstat-reports.php:838
243
  msgid "days"
244
  msgstr ""
245
 
246
+ #: ../../admin/config/index.php:34
247
+ msgid "Delete records"
 
 
 
 
 
 
 
 
248
  msgstr ""
249
 
250
+ #: ../../admin/config/index.php:34
251
+ msgid ""
252
+ "If DB space is not an issue, you can decide to archive older records in "
253
+ "another table, instead of deleting them. This way performance is preserved, "
254
+ "but you will still be able to access your data at a later time, if needed. "
255
+ "Please note that the archive table (<code>wp_slim_stats_archive</code>) will "
256
+ "be <strong>deleted</strong> along with all the other tables, when Slimstat "
257
+ "is uninstalled. Make sure to backup your data before you proceed."
258
  msgstr ""
259
 
260
  #: ../../admin/config/index.php:49
261
+ msgid "Formats and Conversions"
262
  msgstr ""
263
 
264
  #: ../../admin/config/index.php:50
265
+ msgid "Number Format"
266
  msgstr ""
267
 
268
  #: ../../admin/config/index.php:50
269
+ msgid "Choose the number format you want to use for your reports."
 
 
 
270
  msgstr ""
271
 
272
  #: ../../admin/config/index.php:51
273
+ msgid "Date Format"
274
  msgstr ""
275
 
276
  #: ../../admin/config/index.php:51
277
  msgid ""
278
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
279
+ "Format</a> to use when displaying a pageview's date."
280
  msgstr ""
281
 
282
  #: ../../admin/config/index.php:52
283
+ msgid "Time Format"
284
  msgstr ""
285
 
286
  #: ../../admin/config/index.php:52
287
  msgid ""
288
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
289
+ "Format</a> to use when displaying a pageview's time."
290
  msgstr ""
291
 
292
  #: ../../admin/config/index.php:53
293
+ msgid "Use Display Name"
294
  msgstr ""
295
 
296
  #: ../../admin/config/index.php:53
297
  msgid ""
298
+ "By default, users are listed by their usernames. Use this option to "
299
+ "visualize their display names instead."
300
  msgstr ""
301
 
302
  #: ../../admin/config/index.php:54
303
+ msgid "Use Post Titles"
304
  msgstr ""
305
 
306
  #: ../../admin/config/index.php:54
307
  msgid ""
308
+ "Slimstat converts your permalinks into post and page titles. Disable this "
309
+ "feature if you need to see the URL in your reports."
310
  msgstr ""
311
 
312
  #: ../../admin/config/index.php:55
313
+ msgid "Convert IP Addresses"
314
  msgstr ""
315
 
316
  #: ../../admin/config/index.php:55
317
+ msgid "Display provider names instead of IP addresses."
 
 
318
  msgstr ""
319
 
320
  #: ../../admin/config/index.php:57
371
  "Enter <strong>0</strong> (number zero) to deactivate this feature."
372
  msgstr ""
373
 
374
+ #: ../../admin/config/index.php:64 ../../admin/config/index.php:228
375
  msgid "seconds"
376
  msgstr ""
377
 
379
  msgid "Specify the number of items in the Activity Log."
380
  msgstr ""
381
 
382
+ #: ../../admin/config/index.php:68 ../../admin/config/index.php:95
383
+ #: ../../admin/config/index.php:245 ../../admin/config/maintenance.php:385
384
+ msgid "Miscellaneous"
385
+ msgstr ""
386
+
387
+ #: ../../admin/config/index.php:69
388
+ msgid "Show User Agent"
389
+ msgstr ""
390
+
391
+ #: ../../admin/config/index.php:69
392
+ msgid ""
393
+ "Choose if you want to see the browser name or a complete user agent string "
394
+ "when hovering on browser icons."
395
+ msgstr ""
396
+
397
+ #: ../../admin/config/index.php:70
398
+ msgid "Enable SOV"
399
  msgstr ""
400
 
401
+ #: ../../admin/config/index.php:70
402
  msgid ""
403
+ "In linguistic typology, a subject-object-verb (SOV) language is one in which "
404
+ "the subject, object, and verb of a sentence appear in that order, like in "
405
+ "Japanese."
406
  msgstr ""
407
 
408
+ #: ../../admin/config/index.php:75
409
  msgid "Visitors and Known Users"
410
  msgstr ""
411
 
412
+ #: ../../admin/config/index.php:76
413
  msgid "Track Registered Users"
414
  msgstr ""
415
 
416
+ #: ../../admin/config/index.php:76
417
  msgid "Enable this option to track logged in users."
418
  msgstr ""
419
 
420
+ #: ../../admin/config/index.php:77
421
  msgid "Blacklist by Username"
422
  msgstr ""
423
 
424
+ #: ../../admin/config/index.php:77
425
  msgid ""
426
  "List all the usernames you don't want to track, separated by commas. Please "
427
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
428
  "sensitive."
429
  msgstr ""
430
 
431
+ #: ../../admin/config/index.php:78
432
  msgid "Blacklist by IP Address"
433
  msgstr ""
434
 
435
+ #: ../../admin/config/index.php:78
436
  msgid ""
437
  "List all the IP addresses you don't want to track, separated by commas. Each "
438
  "network <strong>must</strong> be defined using the <a href='http://en."
441
  "public IP and the originating IP, if available."
442
  msgstr ""
443
 
444
+ #: ../../admin/config/index.php:79
445
  msgid "Blacklist by Capability"
446
  msgstr ""
447
 
448
+ #: ../../admin/config/index.php:79
449
  msgid ""
450
  "Users having at least one of the <a href='http://codex.wordpress.org/"
451
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
452
  "will not be tracked. Capabilities are case-insensitive."
453
  msgstr ""
454
 
455
+ #: ../../admin/config/index.php:81
456
  msgid "Profiling"
457
  msgstr ""
458
 
459
+ #: ../../admin/config/index.php:82
460
  msgid "Ignore Spammers"
461
  msgstr ""
462
 
463
+ #: ../../admin/config/index.php:82
464
  msgid ""
465
  "Enable this option if you don't want to track visits from users identified "
466
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
468
  "database."
469
  msgstr ""
470
 
471
+ #: ../../admin/config/index.php:83
472
+ msgid "Ignore Bots"
473
+ msgstr ""
474
+
475
+ #: ../../admin/config/index.php:83
476
+ msgid ""
477
+ "Turn on this feature if you want to have the accuracy level of server-side "
478
+ "tracking, but not the inconvenience of getting your database clogged with "
479
+ "pageviews generated by crawlers, spiders, search engine bots, etc. Please "
480
+ "note that in Javascript Mode, bots are ignored regardless of this setting."
481
+ msgstr ""
482
+
483
+ #: ../../admin/config/index.php:84
484
  msgid "Permalinks"
485
  msgstr ""
486
 
487
+ #: ../../admin/config/index.php:84
488
  msgid ""
489
  "List all the URLs on your website that you don't want to track, separated by "
490
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
495
  "case-insensitive."
496
  msgstr ""
497
 
498
+ #: ../../admin/config/index.php:85
499
  msgid "Countries"
500
  msgstr ""
501
 
502
+ #: ../../admin/config/index.php:85
503
  msgid ""
504
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
505
  "track, separated by commas."
506
  msgstr ""
507
 
508
+ #: ../../admin/config/index.php:86
509
  msgid "User Agents"
510
  msgstr ""
511
 
512
+ #: ../../admin/config/index.php:86
513
  msgid ""
514
  "Browsers (user agents) you don't want to track, separated by commas. You can "
515
  "specify the browser's version adding a slash after the name (i.e. "
519
  "code> will match IE/7.0 and IE/8.0. Strings are case-insensitive."
520
  msgstr ""
521
 
522
+ #: ../../admin/config/index.php:87
523
  msgid "Referring Sites"
524
  msgstr ""
525
 
526
+ #: ../../admin/config/index.php:87
527
  msgid ""
528
  "Referring URLs that you don't want to track, separated by commas: "
529
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
533
  "https://)."
534
  msgstr ""
535
 
536
+ #: ../../admin/config/index.php:89
537
  msgid "Internal and Outbound Links"
538
  msgstr ""
539
 
540
+ #: ../../admin/config/index.php:90
541
  msgid "Track Outbound Clicks"
542
  msgstr ""
543
 
544
+ #: ../../admin/config/index.php:90
545
  msgid ""
546
  "Track when your visitors click on link to external websites. This option "
547
  "required Spy Mode to be enabled."
548
  msgstr ""
549
 
550
+ #: ../../admin/config/index.php:91
551
  msgid "Track Coordinates"
552
  msgstr ""
553
 
554
+ #: ../../admin/config/index.php:91
555
  msgid ""
556
  "Collect mouse coordinates and other information for clicks on internal "
557
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
558
  "this information is only collected for external links."
559
  msgstr ""
560
 
561
+ #: ../../admin/config/index.php:92
562
+ msgid "No Callback"
563
  msgstr ""
564
 
565
+ #: ../../admin/config/index.php:92
566
  msgid ""
567
  "Track the event but do not invoke the callback function on links marked with "
568
+ "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
569
+ "attribute contains one of these strings (separated by comma). Useful to "
570
+ "prevent conflicts with lightbox and similar libraries."
 
 
 
 
 
 
 
 
 
571
  msgstr ""
572
 
573
+ #: ../../admin/config/index.php:93
574
+ msgid "Do Not Track"
575
  msgstr ""
576
 
577
+ #: ../../admin/config/index.php:93
578
  msgid ""
579
+ "Do not track links marked with one of these class names, <em>rel</em> "
580
+ "attributes or whose <em>href</em> attribute contains one of these strings "
581
+ "(separated by comma)."
 
 
 
582
  msgstr ""
583
 
584
+ #: ../../admin/config/index.php:96
585
  msgid "Enable Privacy Mode"
586
  msgstr ""
587
 
588
+ #: ../../admin/config/index.php:96
589
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
590
  msgstr ""
591
 
592
+ #: ../../admin/config/index.php:97
593
  msgid "Ignore Prefetch Requests"
594
  msgstr ""
595
 
596
+ #: ../../admin/config/index.php:97
597
  msgid ""
598
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
599
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
600
  "target='_blank'>Link Prefetching functionality</a>."
601
  msgstr ""
602
 
603
+ #: ../../admin/config/index.php:113
604
  msgid "Ignore users (username not found)"
605
  msgstr ""
606
 
607
+ #: ../../admin/config/index.php:136
608
  msgid ""
609
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
610
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
611
  msgstr ""
612
 
613
+ #: ../../admin/config/index.php:147
 
 
 
 
614
  msgid "Restrict Authors"
615
  msgstr ""
616
 
617
+ #: ../../admin/config/index.php:147
618
  msgid ""
619
  "Enable this option if you want your authors to only see stats related to "
620
  "their own content."
621
  msgstr ""
622
 
623
+ #: ../../admin/config/index.php:148 ../../admin/config/index.php:152
624
  msgid "Capability"
625
  msgstr ""
626
 
627
+ #: ../../admin/config/index.php:148
628
  msgid ""
629
  "Specify the minimum <a href='http://codex.wordpress.org/"
630
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
634
  "In this case, the list has precedence over the capability."
635
  msgstr ""
636
 
637
+ #: ../../admin/config/index.php:149 ../../admin/config/index.php:153
638
  msgid "Whitelist"
639
  msgstr ""
640
 
641
+ #: ../../admin/config/index.php:149
642
  msgid ""
643
  "List all the users who should have access to the reports, separated by "
644
  "commas. Administrators are implicitly allowed, so you don't need to list "
645
  "them in here. Usernames are case sensitive."
646
  msgstr ""
647
 
648
+ #: ../../admin/config/index.php:152
649
  msgid ""
650
  "Specify the minimum <a href='http://codex.wordpress.org/"
651
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
653
  "can be used to override this option for specific users."
654
  msgstr ""
655
 
656
+ #: ../../admin/config/index.php:153
657
  msgid ""
658
  "List all the users who can edit these options, separated by commas. Please "
659
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
660
  "not forget to include yourself! Usernames are case sensitive."
661
  msgstr ""
662
 
663
+ #: ../../admin/config/index.php:169
664
  msgid "Read access: username not found"
665
  msgstr ""
666
 
667
+ #: ../../admin/config/index.php:182 ../../admin/config/index.php:213
668
  msgid ""
669
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
670
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
671
  "information"
672
  msgstr ""
673
 
674
+ #: ../../admin/config/index.php:200
675
  msgid "Config access: username not found"
676
  msgstr ""
677
 
678
+ #: ../../admin/config/index.php:227
679
  msgid "Detect Smoothing"
680
  msgstr ""
681
 
682
+ #: ../../admin/config/index.php:227
683
  msgid ""
684
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
685
  "This option required Spy Mode to be enabled."
686
  msgstr ""
687
 
688
+ #: ../../admin/config/index.php:228
689
  msgid "Session Duration"
690
  msgstr ""
691
 
692
+ #: ../../admin/config/index.php:228
693
  msgid ""
694
  "How many seconds should a human session last? Google Analytics sets it to "
695
  "1800 seconds."
696
  msgstr ""
697
 
698
+ #: ../../admin/config/index.php:229
699
  msgid "Extend Session"
700
  msgstr ""
701
 
702
+ #: ../../admin/config/index.php:229
703
  msgid "Extend the duration of a session each time the user visits a new page."
704
  msgstr ""
705
 
706
+ #: ../../admin/config/index.php:230
707
  msgid "Enable CDN"
708
  msgstr ""
709
 
710
+ #: ../../admin/config/index.php:230
711
  msgid ""
712
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
713
  "by serving our tracking code from their fast and reliable network (free "
714
  "service)."
715
  msgstr ""
716
 
717
+ #: ../../admin/config/index.php:231
718
  msgid "Extensions to Track"
719
  msgstr ""
720
 
721
+ #: ../../admin/config/index.php:231
722
  msgid ""
723
  "List all the file extensions that you want to be treated as Downloads. "
724
  "Please note that links pointing to external resources (i.e. PDFs on a "
727
  "below."
728
  msgstr ""
729
 
730
+ #: ../../admin/config/index.php:233
731
  msgid "External Pages"
732
  msgstr ""
733
 
734
+ #: ../../admin/config/index.php:234
735
+ msgid ""
736
+ "Add the following code to all the non-WP pages you want to track, right "
737
+ "before the closing BODY tag"
738
+ msgstr ""
739
+
740
+ #: ../../admin/config/index.php:244
741
+ msgid "Allow External Domains"
742
+ msgstr ""
743
+
744
+ #: ../../admin/config/index.php:244
745
+ msgid ""
746
+ "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
747
+ "header is present on the requested resource, when using the external "
748
+ "tracking code here above, list the domains (complete with scheme, separated "
749
+ "by commas) you would like to allow. For example: <code>http://my.domain.ext</"
750
+ "code> (no trailing slash). Please see <a href='http://www.w3.org/TR/cors/"
751
+ "#security' target='_blank'>this W3 resource</a> for more information on the "
752
+ "security implications of allowing CORS requests."
753
  msgstr ""
754
 
755
+ #: ../../admin/config/index.php:246
756
  msgid "Debug Mode"
757
  msgstr ""
758
 
759
+ #: ../../admin/config/index.php:246
760
  msgid "Display the SQL queries used to retrieve the data."
761
  msgstr ""
762
 
763
+ #: ../../admin/config/index.php:247
764
  msgid "IP Lookup"
765
  msgstr ""
766
 
767
+ #: ../../admin/config/index.php:247
768
  msgid "Customize the Geolocation service to be used in the reports."
769
  msgstr ""
770
 
771
+ #: ../../admin/config/index.php:248
772
  msgid "Custom CSS"
773
  msgstr ""
774
 
775
+ #: ../../admin/config/index.php:248
776
  msgid ""
777
  "Paste here your custom stylesheet to personalize the way your reports look. "
778
+ "<a href='https://slimstat.freshdesk.com/support/solutions/"
779
+ "articles/5000528528-how-can-i-change-the-colors-associated-to-color-coded-"
780
+ "pageviews-known-user-known-visitors-search-e' target='_blank'>Check the FAQ</"
781
+ "a> for more information on how to use this setting."
782
  msgstr ""
783
 
784
+ #: ../../admin/config/index.php:249
785
  msgid "Enable UAN"
786
  msgstr ""
787
 
788
+ #: ../../admin/config/index.php:249
789
  msgid ""
790
  "Send anonymous data about user agents to our server for analysis. This "
791
  "allows us to contribute to the <a href='http://browscap.org/' "
794
  "ads network. No worries, your site will not be affected in any way."
795
  msgstr ""
796
 
797
+ #: ../../admin/config/maintenance.php:17
798
+ msgid ""
799
+ "Congrats! Slimstat is now optimized for <a href=\"http://www.youtube.com/"
800
+ "watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
801
  msgstr ""
802
 
803
+ #: ../../admin/config/maintenance.php:25
804
+ msgid "Indexing has been disabled. Enjoy the extra database space!"
805
  msgstr ""
806
 
807
+ #: ../../admin/config/maintenance.php:36
808
+ msgid "records deleted from your database."
809
  msgstr ""
810
 
811
+ #: ../../admin/config/maintenance.php:41
812
+ msgid "The geolocation database has been uninstalled from your server."
813
  msgstr ""
814
 
815
  #: ../../admin/config/maintenance.php:51
816
+ msgid "The geolocation database has been installed on your server."
817
+ msgstr ""
818
+
819
+ #: ../../admin/config/maintenance.php:159
820
+ msgid ""
821
+ "Your data was successfully imported. You may now drop the old tables: "
822
+ "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
823
+ "wp_slim_outbound. Please note: if you are using Slimstat in a MU network, "
824
+ "you will need to run the import script on all your sites before you can "
825
+ "delete the old tables."
826
+ msgstr ""
827
+
828
+ #: ../../admin/config/maintenance.php:169
829
  msgid "All the archived records were successfully restored."
830
  msgstr ""
831
 
832
+ #: ../../admin/config/maintenance.php:174
833
  msgid "Your reports were successfully restored to their default arrangement."
834
  msgstr ""
835
 
836
+ #: ../../admin/config/maintenance.php:187
837
+ msgid "Your Slimstat tables have been successfully converted to InnoDB."
838
+ msgstr ""
839
+
840
+ #: ../../admin/config/maintenance.php:193
841
+ msgid "All the archived records were successfully deleted."
842
+ msgstr ""
843
+
844
+ #: ../../admin/config/maintenance.php:201
845
+ msgid "All the records were successfully deleted."
846
+ msgstr ""
847
+
848
+ #: ../../admin/config/maintenance.php:226
849
+ msgid "MaxMind IP to Country"
850
+ msgstr ""
851
+
852
+ #: ../../admin/config/maintenance.php:232
853
  msgid ""
854
+ "Do you want to download and install the geolocation database from MaxMind's "
855
+ "server?"
856
+ msgstr ""
857
+
858
+ #: ../../admin/config/maintenance.php:232
859
+ msgid "Install GeoLite DB"
860
+ msgstr ""
861
+
862
+ #: ../../admin/config/maintenance.php:235
863
+ msgid "Do you want to uninstall the geolocation database?"
864
+ msgstr ""
865
+
866
+ #: ../../admin/config/maintenance.php:235
867
+ msgid "Uninstall GeoLite DB"
868
  msgstr ""
869
 
870
+ #: ../../admin/config/maintenance.php:239
871
  msgid ""
872
+ "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
873
+ "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
874
+ "released under the Creative Commons BY-SA 3.0 license, and cannot be "
875
+ "directly bundled with the plugin because of license incompatibility issues. "
876
+ "We are mandated to have the user take an affirmative action in order to "
877
+ "enable this functionality."
878
  msgstr ""
879
 
880
+ #: ../../admin/config/maintenance.php:244
881
  msgid "Database Information"
882
  msgstr ""
883
 
884
+ #: ../../admin/config/maintenance.php:247
885
  msgid "Engine"
886
  msgstr ""
887
 
888
+ #: ../../admin/config/maintenance.php:251
889
  msgid "switch to InnoDB"
890
  msgstr ""
891
 
892
+ #: ../../admin/config/maintenance.php:262
893
  msgid "records"
894
  msgstr ""
895
 
896
+ #: ../../admin/config/maintenance.php:267
897
  msgid "Data Maintenance"
898
  msgstr ""
899
 
900
+ #: ../../admin/config/maintenance.php:270
901
  msgid "Delete pageviews where"
902
  msgstr ""
903
 
904
+ #: ../../admin/config/maintenance.php:284 ../../admin/view/index.php:16
905
  msgid "equals"
906
  msgstr ""
907
 
908
+ #: ../../admin/config/maintenance.php:285 ../../admin/view/index.php:17
909
  msgid "is not equal to"
910
  msgstr ""
911
 
912
+ #: ../../admin/config/maintenance.php:286 ../../admin/view/index.php:18
913
  msgid "contains"
914
  msgstr ""
915
 
916
+ #: ../../admin/config/maintenance.php:287 ../../admin/view/index.php:19
917
+ msgid "is included in"
918
+ msgstr ""
919
+
920
+ #: ../../admin/config/maintenance.php:288 ../../admin/view/index.php:20
921
  msgid "does not contain"
922
  msgstr ""
923
 
924
+ #: ../../admin/config/maintenance.php:289 ../../admin/view/index.php:21
925
  msgid "starts with"
926
  msgstr ""
927
 
928
+ #: ../../admin/config/maintenance.php:290 ../../admin/view/index.php:22
929
  msgid "ends with"
930
  msgstr ""
931
 
932
+ #: ../../admin/config/maintenance.php:291 ../../admin/view/index.php:23
933
  msgid "sounds like"
934
  msgstr ""
935
 
936
+ #: ../../admin/config/maintenance.php:292 ../../admin/view/index.php:24
937
  msgid "is greater than"
938
  msgstr ""
939
 
940
+ #: ../../admin/config/maintenance.php:293 ../../admin/view/index.php:25
941
  msgid "is less than"
942
  msgstr ""
943
 
944
+ #: ../../admin/config/maintenance.php:294 ../../admin/view/index.php:27
945
  msgid "matches"
946
  msgstr ""
947
 
948
+ #: ../../admin/config/maintenance.php:295 ../../admin/view/index.php:28
949
  msgid "does not match"
950
  msgstr ""
951
 
952
+ #: ../../admin/config/maintenance.php:296 ../../admin/view/index.php:29
953
  msgid "is empty"
954
  msgstr ""
955
 
956
+ #: ../../admin/config/maintenance.php:297 ../../admin/view/index.php:30
957
  msgid "is not empty"
958
  msgstr ""
959
 
960
+ #: ../../admin/config/maintenance.php:300 ../../admin/view/index.php:42
961
+ #: ../../admin/view/index.php:105
962
  msgid "Apply"
963
  msgstr ""
964
 
965
+ #: ../../admin/config/maintenance.php:301
966
  msgid ""
967
  "Are you sure you want to PERMANENTLY delete these records from your database?"
968
  msgstr ""
969
 
970
+ #: ../../admin/config/maintenance.php:308
 
 
 
 
971
  msgid ""
972
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
973
  "database?"
974
  msgstr ""
975
 
976
+ #: ../../admin/config/maintenance.php:308
977
  msgid "Delete All Records"
978
  msgstr ""
979
 
980
+ #: ../../admin/config/maintenance.php:311
981
  msgid ""
982
  "Erase all the information collected so far by Slimstat, including the "
983
  "archive. This operation <strong>does not</strong> reset your settings."
984
  msgstr ""
985
 
986
+ #: ../../admin/config/maintenance.php:317
 
 
 
 
987
  msgid "Are you sure you want to restore all the archived pageviews?"
988
  msgstr ""
989
 
990
+ #: ../../admin/config/maintenance.php:317
991
+ msgid "Restore Archive"
992
  msgstr ""
993
 
994
+ #: ../../admin/config/maintenance.php:320
995
  msgid ""
996
  "Move all the archived pageviews back to the main Slimstat table. Please note "
997
  "that, unless you disabled the daily purge, this data will be archived again "
998
  "at the next scheduled clean-up."
999
  msgstr ""
1000
 
1001
+ #: ../../admin/config/maintenance.php:326
 
 
 
 
1002
  msgid ""
1003
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1004
  "archive?"
1005
  msgstr ""
1006
 
1007
+ #: ../../admin/config/maintenance.php:326
1008
  msgid "Delete Archive"
1009
  msgstr ""
1010
 
1011
+ #: ../../admin/config/maintenance.php:329
1012
  msgid "Erase all the archived records. This operation cannot be undone."
1013
  msgstr ""
1014
 
1015
+ #: ../../admin/config/maintenance.php:335
 
 
 
 
1016
  msgid "Improve Performance"
1017
  msgstr ""
1018
 
1019
+ #: ../../admin/config/maintenance.php:339
1020
  msgid ""
1021
  "Please note that you will need about 30% more DB space to store the extra "
1022
  "information required."
1023
  msgstr ""
1024
 
1025
+ #: ../../admin/config/maintenance.php:343
1026
  msgid "Save DB Space"
1027
  msgstr ""
1028
 
1029
+ #: ../../admin/config/maintenance.php:346
1030
  msgid ""
1031
  "Please note that by removing table indexes, Slimstat's performance will be "
1032
  "affected."
1033
  msgstr ""
1034
 
1035
+ #: ../../admin/config/maintenance.php:353
1036
+ msgid ""
1037
+ "Hold on tight, we are about to import all your old data. Are you sure you "
1038
+ "want to proceed?"
1039
+ msgstr ""
1040
+
1041
+ #: ../../admin/config/maintenance.php:353
1042
+ msgid "Import old data"
1043
+ msgstr ""
1044
+
1045
+ #: ../../admin/config/maintenance.php:356
1046
+ msgid ""
1047
+ "Import all the records from the old table structure. No data will be deleted "
1048
+ "from your database."
1049
+ msgstr ""
1050
+
1051
+ #: ../../admin/config/maintenance.php:360
1052
  msgid "Import and Export"
1053
  msgstr ""
1054
 
1055
+ #: ../../admin/config/maintenance.php:364
1056
  msgid ""
1057
  "Here below you can find the current configuration string for Slimstat. You "
1058
+ "can update your settings by pasting a new string inside the text area and "
1059
+ "clicking the Import button."
1060
  msgstr ""
1061
 
1062
+ #: ../../admin/config/maintenance.php:369
1063
  msgid "Import"
1064
  msgstr ""
1065
 
1066
+ #: ../../admin/config/maintenance.php:370
1067
  msgid "Are you sure you want to OVERWRITE your current settings?"
1068
  msgstr ""
1069
 
1070
+ #: ../../admin/config/maintenance.php:375
1071
+ msgid "Debugging"
1072
+ msgstr ""
1073
 
1074
+ #: ../../admin/config/maintenance.php:378
1075
+ msgid "Tracker Error Code"
1076
+ msgstr ""
1077
 
1078
+ #: ../../admin/config/maintenance.php:380
1079
+ msgid "recorded on"
1080
+ msgstr ""
1081
 
1082
+ # Austria
1083
+ #: ../../admin/config/maintenance.php:380
1084
+ msgid "at"
1085
+ msgstr "Austria"
1086
 
1087
+ #: ../../admin/config/maintenance.php:380
1088
+ msgid "No Errors so far"
1089
+ msgstr ""
1090
+
1091
+ #: ../../admin/config/maintenance.php:381
1092
+ msgid ""
1093
+ "The information here above is useful to troubleshoot issues with the "
1094
+ "tracker. Please include this code when sending a support request."
1095
+ msgstr ""
1096
+
1097
+ #: ../../admin/config/maintenance.php:388
1098
+ msgid "Reset Reports"
1099
+ msgstr ""
1100
+
1101
+ #: ../../admin/config/maintenance.php:391
1102
+ msgid ""
1103
+ "Are you sure you want to restore the default arrangement of your reports?"
1104
+ msgstr ""
1105
+
1106
+ #: ../../admin/config/maintenance.php:391
1107
+ msgid "No Panic Button"
1108
+ msgstr ""
1109
+
1110
+ #: ../../admin/config/maintenance.php:392
1111
+ msgid ""
1112
+ "Reset the default arrangement of your reports. Helpful when, for some "
1113
+ "reason, reports disappear from your panels or something doesn't look right "
1114
+ "in your views."
1115
+ msgstr ""
1116
+
1117
+ #: ../../admin/lang/dynamic_strings.php:3
1118
+ msgid "xx"
1119
+ msgstr "Unknown"
1120
+
1121
+ #: ../../admin/lang/dynamic_strings.php:4
1122
+ msgid "unknown"
1123
+ msgstr "Unknown"
1124
+
1125
+ #: ../../admin/lang/dynamic_strings.php:5
1126
+ msgid "win8.1"
1127
+ msgstr "Windows 8.1"
1128
+
1129
+ #: ../../admin/lang/dynamic_strings.php:6
1130
+ msgid "win8"
1131
+ msgstr "Windows 8"
1132
+
1133
+ #: ../../admin/lang/dynamic_strings.php:7
1134
+ msgid "win7"
1135
+ msgstr "Windows 7"
1136
 
1137
  #: ../../admin/lang/dynamic_strings.php:8
1138
  msgid "winvista"
1299
  msgstr "Windows Phone"
1300
 
1301
  #: ../../admin/lang/dynamic_strings.php:49
1302
+ msgid "winphone7.5"
1303
+ msgstr "Windows Phone 7.5"
1304
+
1305
+ #: ../../admin/lang/dynamic_strings.php:50
1306
+ msgid "winphone8"
1307
+ msgstr "Windows Phone 8"
1308
+
1309
+ #: ../../admin/lang/dynamic_strings.php:51
1310
+ msgid "winphone8.1"
1311
+ msgstr "Windows Phone 8.1"
1312
+
1313
+ #: ../../admin/lang/dynamic_strings.php:52
1314
  msgid "wince"
1315
  msgstr "Windows CE"
1316
 
1317
+ #: ../../admin/lang/dynamic_strings.php:53
1318
  msgid "symbianos"
1319
  msgstr "Symbian OS"
1320
 
1321
+ #: ../../admin/lang/dynamic_strings.php:54
1322
  msgid "blackberry os"
1323
  msgstr "BlackBerry OS"
1324
 
1325
+ #: ../../admin/lang/dynamic_strings.php:55
1326
  msgid "webos"
1327
  msgstr "WebOS"
1328
 
1329
+ #: ../../admin/lang/dynamic_strings.php:56
1330
  msgid "p-and"
1331
  msgstr "Android"
1332
 
1333
+ #: ../../admin/lang/dynamic_strings.php:57
1334
  msgid "p-bla"
1335
  msgstr "BlackBerry"
1336
 
1337
+ #: ../../admin/lang/dynamic_strings.php:58
1338
  msgid "p-chr"
1339
  msgstr "Chrome OS"
1340
 
1341
+ #: ../../admin/lang/dynamic_strings.php:59
1342
  msgid "p-fre"
1343
  msgstr "Linux FreeBSD"
1344
 
1345
+ #: ../../admin/lang/dynamic_strings.php:60
1346
  msgid "p-ios"
1347
  msgstr "Apple iOS"
1348
 
1349
+ #: ../../admin/lang/dynamic_strings.php:61
1350
  msgid "p-jav"
1351
  msgstr "Java-based OS"
1352
 
1353
+ #: ../../admin/lang/dynamic_strings.php:62
1354
  msgid "p-lin"
1355
  msgstr "Linux"
1356
 
1357
+ #: ../../admin/lang/dynamic_strings.php:63
1358
  msgid "p-mac"
1359
  msgstr "Apple"
1360
 
1361
+ #: ../../admin/lang/dynamic_strings.php:64
1362
  msgid "p-sym"
1363
  msgstr "Symbian OS"
1364
 
1365
+ #: ../../admin/lang/dynamic_strings.php:65
1366
  msgid "p-unk"
1367
  msgstr "Unknown"
1368
 
1369
+ #: ../../admin/lang/dynamic_strings.php:66
1370
  msgid "p-win"
1371
  msgstr "Microsoft"
1372
 
1373
+ #: ../../admin/lang/dynamic_strings.php:67
1374
  msgid "powertv"
1375
  msgstr "PowerTV"
1376
 
1377
+ #: ../../admin/lang/dynamic_strings.php:68
1378
  msgid "acrobat"
1379
  msgstr "Acrobat Reader"
1380
 
1381
+ #: ../../admin/lang/dynamic_strings.php:69
1382
  msgid "director"
1383
  msgstr "Macromedia Director"
1384
 
1385
+ #: ../../admin/lang/dynamic_strings.php:70
1386
  msgid "flash"
1387
  msgstr "Adobe Flash Player"
1388
 
1389
+ #: ../../admin/lang/dynamic_strings.php:71
1390
  msgid "mediaplayer"
1391
  msgstr "Microsoft Media Player"
1392
 
1393
+ #: ../../admin/lang/dynamic_strings.php:72
1394
  msgid "quicktime"
1395
  msgstr "QuickTime"
1396
 
1397
+ #: ../../admin/lang/dynamic_strings.php:73
1398
  msgid "real"
1399
  msgstr "Real Player"
1400
 
1401
+ #: ../../admin/lang/dynamic_strings.php:74
1402
  msgid "silverlight"
1403
  msgstr "Microsoft Silverlight"
1404
 
1405
  # Afrikaans
1406
+ #: ../../admin/lang/dynamic_strings.php:75
1407
  msgid "l-af"
1408
  msgstr "Afrikaans"
1409
 
1410
  # Afrikaans
1411
+ #: ../../admin/lang/dynamic_strings.php:76
1412
  msgid "l-af-za"
1413
  msgstr "Afrikaans (South Africa)"
1414
 
1415
  # Arabic
1416
+ #: ../../admin/lang/dynamic_strings.php:77
1417
  msgid "l-ar"
1418
  msgstr "Arabic"
1419
 
1420
  # Arabic
1421
+ #: ../../admin/lang/dynamic_strings.php:78
1422
  msgid "l-ar-ae"
1423
  msgstr "Arabic (U.A.E.)"
1424
 
1425
  # Arabic
1426
+ #: ../../admin/lang/dynamic_strings.php:79
1427
  msgid "l-ar-bh"
1428
  msgstr "Arabic (Bahrain)"
1429
 
1430
  # Arabic
1431
+ #: ../../admin/lang/dynamic_strings.php:80
1432
  msgid "l-ar-dz"
1433
  msgstr "Arabic (Algeria)"
1434
 
1435
  # Arabic
1436
+ #: ../../admin/lang/dynamic_strings.php:81
1437
  msgid "l-ar-eg"
1438
  msgstr "Arabic (Egypt)"
1439
 
1440
  # Arabic
1441
+ #: ../../admin/lang/dynamic_strings.php:82
1442
  msgid "l-ar-iq"
1443
  msgstr "Arabic (Iraq)"
1444
 
1445
  # Arabic
1446
+ #: ../../admin/lang/dynamic_strings.php:83
1447
  msgid "l-ar-jo"
1448
  msgstr "Arabic (Jordan)"
1449
 
1450
  # Arabic
1451
+ #: ../../admin/lang/dynamic_strings.php:84
1452
  msgid "l-ar-kw"
1453
  msgstr "Arabic (Kuwait)"
1454
 
1455
  # Arabic
1456
+ #: ../../admin/lang/dynamic_strings.php:85
1457
  msgid "l-ar-lb"
1458
  msgstr "Arabic (Lebanon)"
1459
 
1460
  # Arabic
1461
+ #: ../../admin/lang/dynamic_strings.php:86
1462
  msgid "l-ar-ly"
1463
  msgstr "Arabic (Libya)"
1464
 
1465
  # Arabic
1466
+ #: ../../admin/lang/dynamic_strings.php:87
1467
  msgid "l-ar-ma"
1468
  msgstr "Arabic (Morocco)"
1469
 
1470
  # Arabic
1471
+ #: ../../admin/lang/dynamic_strings.php:88
1472
  msgid "l-ar-om"
1473
  msgstr "Arabic (Oman)"
1474
 
1475
  # Arabic
1476
+ #: ../../admin/lang/dynamic_strings.php:89
1477
  msgid "l-ar-qa"
1478
  msgstr "Arabic (Qatar)"
1479
 
1480
  # Arabic
1481
+ #: ../../admin/lang/dynamic_strings.php:90
1482
  msgid "l-ar-sa"
1483
  msgstr "Arabic (Saudi Arabia)"
1484
 
1485
  # Arabic
1486
+ #: ../../admin/lang/dynamic_strings.php:91
1487
  msgid "l-ar-sy"
1488
  msgstr "Arabic (Syria)"
1489
 
1490
  # Arabic
1491
+ #: ../../admin/lang/dynamic_strings.php:92
1492
  msgid "l-ar-tn"
1493
  msgstr "Arabic (Tunisia)"
1494
 
1495
  # Arabic
1496
+ #: ../../admin/lang/dynamic_strings.php:93
1497
  msgid "l-ar-ye"
1498
  msgstr "Arabic (Yemen)"
1499
 
1500
  # Azerbaijani
1501
+ #: ../../admin/lang/dynamic_strings.php:94
1502
  msgid "l-az"
1503
  msgstr "Azerbaijani"
1504
 
1505
  # Azerbaijani
1506
+ #: ../../admin/lang/dynamic_strings.php:95
1507
  msgid "l-az-az"
1508
  msgstr "Azeri (Latin)"
1509
 
1510
  # Belarusian
1511
+ #: ../../admin/lang/dynamic_strings.php:96
1512
  msgid "l-be"
1513
  msgstr "Belarusian"
1514
 
1515
  # Belarusian
1516
+ #: ../../admin/lang/dynamic_strings.php:97
1517
  msgid "l-be-by"
1518
  msgstr "Belarusian (Belarus)"
1519
 
1520
  # Bulgarian
1521
+ #: ../../admin/lang/dynamic_strings.php:98
1522
  msgid "l-bg"
1523
  msgstr "Bulgarian"
1524
 
1525
  # Bulgarian
1526
+ #: ../../admin/lang/dynamic_strings.php:99
1527
  msgid "l-bg-bg"
1528
  msgstr "Bulgarian (Bulgaria)"
1529
 
1530
  # Bosnian
1531
+ #: ../../admin/lang/dynamic_strings.php:100
1532
  msgid "l-bs-ba"
1533
  msgstr "Bosnian"
1534
 
1535
  # Catalan; Valencian
1536
+ #: ../../admin/lang/dynamic_strings.php:101
1537
  msgid "l-ca"
1538
  msgstr "Catalan"
1539
 
1540
  # Catalan; Valencian
1541
+ #: ../../admin/lang/dynamic_strings.php:102
1542
  msgid "l-ca-es"
1543
  msgstr "Catalan; Valencian"
1544
 
1545
  # Czech
1546
+ #: ../../admin/lang/dynamic_strings.php:103
1547
  msgid "l-cs"
1548
  msgstr "Czech"
1549
 
1550
  # Czech
1551
+ #: ../../admin/lang/dynamic_strings.php:104
1552
  msgid "l-cs-cz"
1553
  msgstr "Czech (Czech Republic)"
1554
 
1555
  # Welsh
1556
+ #: ../../admin/lang/dynamic_strings.php:105
1557
  msgid "l-cy"
1558
  msgstr "Welsh"
1559
 
1560
  # Welsh
1561
+ #: ../../admin/lang/dynamic_strings.php:106
1562
  msgid "l-cy-gb"
1563
  msgstr "Welsh (UK)"
1564
 
1565
  # Danish
1566
+ #: ../../admin/lang/dynamic_strings.php:107
1567
  msgid "l-da"
1568
  msgstr "Danish"
1569
 
1570
  # Danish
1571
+ #: ../../admin/lang/dynamic_strings.php:108
1572
  msgid "l-da-dk"
1573
  msgstr "Danish (Denmark)"
1574
 
1575
  # German
1576
+ #: ../../admin/lang/dynamic_strings.php:109
1577
  msgid "l-de"
1578
  msgstr "German"
1579
 
1580
  # German
1581
+ #: ../../admin/lang/dynamic_strings.php:110
1582
  msgid "l-de-at"
1583
  msgstr "German (Austria)"
1584
 
1585
  # German
1586
+ #: ../../admin/lang/dynamic_strings.php:111
1587
  msgid "l-de-ch"
1588
  msgstr "German (Switzerland)"
1589
 
1590
  # German
1591
+ #: ../../admin/lang/dynamic_strings.php:112
1592
  msgid "l-de-de"
1593
  msgstr "German (Germany)"
1594
 
1595
  # German
1596
+ #: ../../admin/lang/dynamic_strings.php:113
1597
  msgid "l-de-li"
1598
  msgstr "German (Liechtenstein)"
1599
 
1600
  # German
1601
+ #: ../../admin/lang/dynamic_strings.php:114
1602
  msgid "l-de-lu"
1603
  msgstr "German (Luxembourg)"
1604
 
1605
  # Dhivehi; Divehi; Maldivian
1606
+ #: ../../admin/lang/dynamic_strings.php:115
1607
  msgid "l-dv"
1608
  msgstr "Dhivehi; Divehi; Maldivian"
1609
 
1610
  # Dhivehi; Divehi; Maldivian
1611
+ #: ../../admin/lang/dynamic_strings.php:116
1612
  msgid "l-dv-mv"
1613
  msgstr "Maldivian"
1614
 
1615
  # Modern Greek (1453-)
1616
+ #: ../../admin/lang/dynamic_strings.php:117
1617
  msgid "l-el"
1618
  msgstr "Greek"
1619
 
1620
  # Modern Greek (1453-)
1621
+ #: ../../admin/lang/dynamic_strings.php:118
1622
  msgid "l-el-gr"
1623
  msgstr "Greek (Greece)"
1624
 
1625
  # English
1626
+ #: ../../admin/lang/dynamic_strings.php:119
1627
  msgid "l-en"
1628
  msgstr "English"
1629
 
1630
  # English
1631
+ #: ../../admin/lang/dynamic_strings.php:120
1632
  msgid "l-en-au"
1633
  msgstr "English (Australia)"
1634
 
1635
  # English
1636
+ #: ../../admin/lang/dynamic_strings.php:121
1637
  msgid "l-en-bz"
1638
  msgstr "English (Belize)"
1639
 
1640
  # English
1641
+ #: ../../admin/lang/dynamic_strings.php:122
1642
  msgid "l-en-ca"
1643
  msgstr "English (Canada)"
1644
 
1645
  # English
1646
+ #: ../../admin/lang/dynamic_strings.php:123
1647
  msgid "l-en-cb"
1648
  msgstr "English (Caribbean)"
1649
 
1650
  # English
1651
+ #: ../../admin/lang/dynamic_strings.php:124
1652
  msgid "l-en-gb"
1653
  msgstr "English (Great Britain)"
1654
 
1655
  # English
1656
+ #: ../../admin/lang/dynamic_strings.php:125
1657
  msgid "l-en-ie"
1658
  msgstr "English (Ireland)"
1659
 
1660
  # English
1661
+ #: ../../admin/lang/dynamic_strings.php:126
1662
  msgid "l-en-jm"
1663
  msgstr "English (Jamaica)"
1664
 
1665
  # English
1666
+ #: ../../admin/lang/dynamic_strings.php:127
1667
  msgid "l-en-nz"
1668
  msgstr "English (New Zealand)"
1669
 
1670
  # English
1671
+ #: ../../admin/lang/dynamic_strings.php:128
1672
  msgid "l-en-ph"
1673
  msgstr "English (Philippines)"
1674
 
1675
  # English
1676
+ #: ../../admin/lang/dynamic_strings.php:129
1677
  msgid "l-en-tt"
1678
  msgstr "English (Trinidad and Tobago)"
1679
 
1680
  # English
1681
+ #: ../../admin/lang/dynamic_strings.php:130
1682
  msgid "l-en-us"
1683
  msgstr "English (USA)"
1684
 
1685
  # English
1686
+ #: ../../admin/lang/dynamic_strings.php:131
1687
  msgid "l-en-za"
1688
  msgstr "English (South Africa)"
1689
 
1690
  # English
1691
+ #: ../../admin/lang/dynamic_strings.php:132
1692
  msgid "l-en-zw"
1693
  msgstr "English (Zimbabwe)"
1694
 
1695
  # Esperanto
1696
+ #: ../../admin/lang/dynamic_strings.php:133
1697
  msgid "l-eo"
1698
  msgstr "Esperanto"
1699
 
1700
  # Spanish; Castilian
1701
+ #: ../../admin/lang/dynamic_strings.php:134
1702
  msgid "l-es"
1703
  msgstr "Spanish"
1704
 
1705
  # Spanish; Castilian
1706
+ #: ../../admin/lang/dynamic_strings.php:135
1707
  msgid "l-es-ar"
1708
  msgstr "Spanish (Argentina)"
1709
 
1710
  # Spanish; Castilian
1711
+ #: ../../admin/lang/dynamic_strings.php:136
1712
  msgid "l-es-bo"
1713
  msgstr "Spanish (Bolivia)"
1714
 
1715
  # Spanish; Castilian
1716
+ #: ../../admin/lang/dynamic_strings.php:137
1717
  msgid "l-es-cl"
1718
  msgstr "Spanish (Chile)"
1719
 
1720
  # Spanish; Castilian
1721
+ #: ../../admin/lang/dynamic_strings.php:138
1722
  msgid "l-es-co"
1723
  msgstr "Spanish (Colombia)"
1724
 
1725
  # Spanish; Castilian
1726
+ #: ../../admin/lang/dynamic_strings.php:139
1727
  msgid "l-es-cr"
1728
  msgstr "Spanish (Costa Rica)"
1729
 
1730
  # Spanish; Castilian
1731
+ #: ../../admin/lang/dynamic_strings.php:140
1732
  msgid "l-es-do"
1733
  msgstr "Spanish (Dominican Republic)"
1734
 
1735
  # Spanish; Castilian
1736
+ #: ../../admin/lang/dynamic_strings.php:141
1737
  msgid "l-es-ec"
1738
  msgstr "Spanish (Ecuador)"
1739
 
1740
  # Spanish; Castilian
1741
+ #: ../../admin/lang/dynamic_strings.php:142
1742
  msgid "l-es-es"
1743
  msgstr "Spanish (Spain)"
1744
 
1745
  # Spanish; Castilian
1746
+ #: ../../admin/lang/dynamic_strings.php:143
1747
  msgid "l-es-gt"
1748
  msgstr "Spanish (Guatemala)"
1749
 
1750
  # Spanish; Castilian
1751
+ #: ../../admin/lang/dynamic_strings.php:144
1752
  msgid "l-es-hn"
1753
  msgstr "Spanish (Honduras)"
1754
 
1755
  # Spanish; Castilian
1756
+ #: ../../admin/lang/dynamic_strings.php:145
1757
  msgid "l-es-mx"
1758
  msgstr "Spanish (Mexico)"
1759
 
1760
  # Spanish; Castilian
1761
+ #: ../../admin/lang/dynamic_strings.php:146
1762
  msgid "l-es-ni"
1763
  msgstr "Spanish (Nicaragua)"
1764
 
1765
  # Spanish; Castilian
1766
+ #: ../../admin/lang/dynamic_strings.php:147
1767
  msgid "l-es-pa"
1768
  msgstr "Spanish (Panama)"
1769
 
1770
  # Spanish; Castilian
1771
+ #: ../../admin/lang/dynamic_strings.php:148
1772
  msgid "l-es-pe"
1773
  msgstr "Spanish (Peru)"
1774
 
1775
  # Spanish; Castilian
1776
+ #: ../../admin/lang/dynamic_strings.php:149
1777
  msgid "l-es-pr"
1778
  msgstr "Spanish (Puerto Rico)"
1779
 
1780
  # Spanish; Castilian
1781
+ #: ../../admin/lang/dynamic_strings.php:150
1782
  msgid "l-es-py"
1783
  msgstr "Spanish (Paraguay)"
1784
 
1785
  # Spanish; Castilian
1786
+ #: ../../admin/lang/dynamic_strings.php:151
1787
  msgid "l-es-sv"
1788
  msgstr "Spanish (El Salvador)"
1789
 
1790
  # Spanish; Castilian
1791
+ #: ../../admin/lang/dynamic_strings.php:152
1792
  msgid "l-es-uy"
1793
  msgstr "Spanish (Uruguay)"
1794
 
1795
  # Spanish; Castilian
1796
+ #: ../../admin/lang/dynamic_strings.php:153
1797
  msgid "l-es-ve"
1798
  msgstr "Spanish (Venezuela)"
1799
 
1800
  # Estonian
1801
+ #: ../../admin/lang/dynamic_strings.php:154
1802
  msgid "l-et"
1803
  msgstr "Estonian"
1804
 
1805
  # Estonian
1806
+ #: ../../admin/lang/dynamic_strings.php:155
1807
  msgid "l-et-ee"
1808
  msgstr "Estonian (Estonia)"
1809
 
1810
  # Basque
1811
+ #: ../../admin/lang/dynamic_strings.php:156
1812
  msgid "l-eu"
1813
  msgstr "Basque"
1814
 
1815
  # Basque
1816
+ #: ../../admin/lang/dynamic_strings.php:157
1817
  msgid "l-eu-es"
1818
  msgstr "Basque (Spain)"
1819
 
1820
  # Persian
1821
+ #: ../../admin/lang/dynamic_strings.php:158
1822
  msgid "l-fa"
1823
  msgstr "Persian"
1824
 
1825
  # Persian
1826
+ #: ../../admin/lang/dynamic_strings.php:159
1827
  msgid "l-fa-ir"
1828
  msgstr "Persian (Iran)"
1829
 
1830
  # Finnish
1831
+ #: ../../admin/lang/dynamic_strings.php:160
1832
  msgid "l-fi"
1833
  msgstr "Finnish"
1834
 
1835
  # Finnish
1836
+ #: ../../admin/lang/dynamic_strings.php:161
1837
  msgid "l-fi-fi"
1838
  msgstr "Finnish (Finland)"
1839
 
1840
  # Faroese
1841
+ #: ../../admin/lang/dynamic_strings.php:162
1842
  msgid "l-fo"
1843
  msgstr "Faroese"
1844
 
1845
  # Faroese
1846
+ #: ../../admin/lang/dynamic_strings.php:163
1847
  msgid "l-fo-fo"
1848
  msgstr "Faroese (Faroe Islands)"
1849
 
1850
  # French
1851
+ #: ../../admin/lang/dynamic_strings.php:164
1852
  msgid "l-fr"
1853
  msgstr "French"
1854
 
1855
  # French
1856
+ #: ../../admin/lang/dynamic_strings.php:165
1857
  msgid "l-fr-be"
1858
  msgstr "French (Belgium)"
1859
 
1860
  # French
1861
+ #: ../../admin/lang/dynamic_strings.php:166
1862
  msgid "l-fr-ca"
1863
  msgstr "French (Canada)"
1864
 
1865
  # French
1866
+ #: ../../admin/lang/dynamic_strings.php:167
1867
  msgid "l-fr-ch"
1868
  msgstr "French (Switzerland)"
1869
 
1870
  # French
1871
+ #: ../../admin/lang/dynamic_strings.php:168
1872
  msgid "l-fr-fr"
1873
  msgstr "French (France)"
1874
 
1875
  # French
1876
+ #: ../../admin/lang/dynamic_strings.php:169
1877
  msgid "l-fr-lu"
1878
  msgstr "French (Luxembourg)"
1879
 
1880
  # French
1881
+ #: ../../admin/lang/dynamic_strings.php:170
1882
  msgid "l-fr-mc"
1883
  msgstr "French (Monaco)"
1884
 
1885
  # Galician
1886
+ #: ../../admin/lang/dynamic_strings.php:171
1887
  msgid "l-gl"
1888
  msgstr "Galician"
1889
 
1890
  # Spanish; Castilian
1891
+ #: ../../admin/lang/dynamic_strings.php:172
1892
  msgid "l-gl-es"
1893
  msgstr "Galician (Spain)"
1894
 
1895
  # Gujarati
1896
+ #: ../../admin/lang/dynamic_strings.php:173
1897
  msgid "l-gu"
1898
  msgstr "Gujarati"
1899
 
1900
  # Gujarati
1901
+ #: ../../admin/lang/dynamic_strings.php:174
1902
  msgid "l-gu-in"
1903
  msgstr "Gujarati (India)"
1904
 
1905
  # Hebrew
1906
+ #: ../../admin/lang/dynamic_strings.php:175
1907
  msgid "l-he"
1908
  msgstr "Hebrew"
1909
 
1910
  # Hebrew
1911
+ #: ../../admin/lang/dynamic_strings.php:176
1912
  msgid "l-he-il"
1913
  msgstr "Hebrew (Israel)"
1914
 
1915
  # Hindi
1916
+ #: ../../admin/lang/dynamic_strings.php:177
1917
  msgid "l-hi"
1918
  msgstr "Hindi"
1919
 
1920
  # Hindi
1921
+ #: ../../admin/lang/dynamic_strings.php:178
1922
  msgid "l-hi-in"
1923
  msgstr "Hindi (India)"
1924
 
1925
  # Croatian
1926
+ #: ../../admin/lang/dynamic_strings.php:179
1927
  msgid "l-hr"
1928
  msgstr "Croatian"
1929
 
1930
  # Croatian
1931
+ #: ../../admin/lang/dynamic_strings.php:180
1932
  msgid "l-hr-ba"
1933
  msgstr "Croatian (Bosnia)"
1934
 
1935
  # Croatian
1936
+ #: ../../admin/lang/dynamic_strings.php:181
1937
  msgid "l-hr-hr"
1938
  msgstr "Croatian (Croatia)"
1939
 
1940
  # Hungarian
1941
+ #: ../../admin/lang/dynamic_strings.php:182
1942
  msgid "l-hu"
1943
  msgstr "Hungarian"
1944
 
1945
  # Hungarian
1946
+ #: ../../admin/lang/dynamic_strings.php:183
1947
  msgid "l-hu-hu"
1948
  msgstr "Hungarian (Hungary)"
1949
 
1950
  # Armenian
1951
+ #: ../../admin/lang/dynamic_strings.php:184
1952
  msgid "l-hy"
1953
  msgstr "Armenian"
1954
 
1955
  # Armenian
1956
+ #: ../../admin/lang/dynamic_strings.php:185
1957
  msgid "l-hy-am"
1958
  msgstr "Armenian (Armenia)"
1959
 
1960
+ #: ../../admin/lang/dynamic_strings.php:186
1961
  msgid "l-id"
1962
  msgstr ""
1963
 
1964
+ #: ../../admin/lang/dynamic_strings.php:187
1965
  msgid "l-id-id"
1966
  msgstr ""
1967
 
1968
  # Icelandic
1969
+ #: ../../admin/lang/dynamic_strings.php:188
1970
  msgid "l-is"
1971
  msgstr "Icelandic"
1972
 
1973
  # Icelandic
1974
+ #: ../../admin/lang/dynamic_strings.php:189
1975
  msgid "l-is-is"
1976
  msgstr "Icelandic (Iceland)"
1977
 
1978
  # Italian
1979
+ #: ../../admin/lang/dynamic_strings.php:190
1980
  msgid "l-it"
1981
  msgstr "Italian"
1982
 
1983
  # Italian
1984
+ #: ../../admin/lang/dynamic_strings.php:191
1985
  msgid "l-it-ch"
1986
  msgstr "Italian (Switzerland)"
1987
 
1988
  # Italian
1989
+ #: ../../admin/lang/dynamic_strings.php:192
1990
  msgid "l-it-it"
1991
  msgstr "Italian (Italy)"
1992
 
1993
  # Japanese
1994
+ #: ../../admin/lang/dynamic_strings.php:193
1995
  msgid "l-ja"
1996
  msgstr "Japanese"
1997
 
1998
  # Japanese
1999
+ #: ../../admin/lang/dynamic_strings.php:194
2000
  msgid "l-ja-jp"
2001
  msgstr "Japanese (Japan)"
2002
 
2003
  # Georgian
2004
+ #: ../../admin/lang/dynamic_strings.php:195
2005
  msgid "l-ka"
2006
  msgstr "Georgian"
2007
 
2008
  # Georgian
2009
+ #: ../../admin/lang/dynamic_strings.php:196
2010
  msgid "l-ka-ge"
2011
  msgstr "Georgian (Georgia)"
2012
 
2013
  # Kazakh
2014
+ #: ../../admin/lang/dynamic_strings.php:197
2015
  msgid "l-kk"
2016
  msgstr "Kazakh"
2017
 
2018
  # Kazakh
2019
+ #: ../../admin/lang/dynamic_strings.php:198
2020
  msgid "l-kk-kz"
2021
  msgstr "Kazakh (Kazakhstan)"
2022
 
2023
  # Kannada
2024
+ #: ../../admin/lang/dynamic_strings.php:199
2025
  msgid "l-kn"
2026
  msgstr "Kannada"
2027
 
2028
  # Kannada
2029
+ #: ../../admin/lang/dynamic_strings.php:200
2030
  msgid "l-kn-in"
2031
  msgstr "Kannada (India)"
2032
 
2033
  # Korean
2034
+ #: ../../admin/lang/dynamic_strings.php:201
2035
  msgid "l-ko"
2036
  msgstr "Korean"
2037
 
2038
  # Korean
2039
+ #: ../../admin/lang/dynamic_strings.php:202
2040
  msgid "l-ko-kr"
2041
  msgstr "Korean (Korea)"
2042
 
2043
  # Korean
2044
+ #: ../../admin/lang/dynamic_strings.php:203
2045
  msgid "l-kok"
2046
  msgstr "Konkani"
2047
 
2048
  # Korean
2049
+ #: ../../admin/lang/dynamic_strings.php:204
2050
  msgid "l-kok-in"
2051
  msgstr "Konkani (India)"
2052
 
2053
  # Kirghiz; Kyrgyz
2054
+ #: ../../admin/lang/dynamic_strings.php:205
2055
  msgid "l-ky"
2056
  msgstr "Kirghiz"
2057
 
2058
  # Kirghiz; Kyrgyz
2059
+ #: ../../admin/lang/dynamic_strings.php:206
2060
  msgid "l-ky-kg"
2061
  msgstr "Kirghiz (Kazakhstan)"
2062
 
2063
  # Lithuanian
2064
+ #: ../../admin/lang/dynamic_strings.php:207
2065
  msgid "l-lt"
2066
  msgstr "Lithuanian"
2067
 
2068
  # Lithuanian
2069
+ #: ../../admin/lang/dynamic_strings.php:208
2070
  msgid "l-lt-lt"
2071
  msgstr "Lithuanian (Lithuania)"
2072
 
2073
  # Latvian
2074
+ #: ../../admin/lang/dynamic_strings.php:209
2075
  msgid "l-lv"
2076
  msgstr "Latvian"
2077
 
2078
  # Latvian
2079
+ #: ../../admin/lang/dynamic_strings.php:210
2080
  msgid "l-lv-lv"
2081
  msgstr "Latvian (Latvia)"
2082
 
2083
  # Maori
2084
+ #: ../../admin/lang/dynamic_strings.php:211
2085
  msgid "l-mi"
2086
  msgstr "Maori"
2087
 
2088
  # Maori
2089
+ #: ../../admin/lang/dynamic_strings.php:212
2090
  msgid "l-mi-nz"
2091
  msgstr "Maori (New Zealand)"
2092
 
2093
  # Macedonian
2094
+ #: ../../admin/lang/dynamic_strings.php:213
2095
  msgid "l-mk"
2096
  msgstr "Macedonian"
2097
 
2098
  # Macedonian
2099
+ #: ../../admin/lang/dynamic_strings.php:214
2100
  msgid "l-mk-ml"
2101
  msgstr "Macedonian (FYROM)"
2102
 
2103
  # Mongolian
2104
+ #: ../../admin/lang/dynamic_strings.php:215
2105
  msgid "l-mn"
2106
  msgstr "Mongolian"
2107
 
2108
  # Mongolian
2109
+ #: ../../admin/lang/dynamic_strings.php:216
2110
  msgid "l-mn-mn"
2111
  msgstr "Mongolian (Mongolia)"
2112
 
2113
  # Marathi
2114
+ #: ../../admin/lang/dynamic_strings.php:217
2115
  msgid "l-mr"
2116
  msgstr "Marathi"
2117
 
2118
  # Marathi
2119
+ #: ../../admin/lang/dynamic_strings.php:218
2120
  msgid "l-mr-in"
2121
  msgstr "Marathi (India)"
2122
 
2123
  # Malay
2124
+ #: ../../admin/lang/dynamic_strings.php:219
2125
  msgid "l-ms"
2126
  msgstr "Malay"
2127
 
2128
  # Malay
2129
+ #: ../../admin/lang/dynamic_strings.php:220
2130
  msgid "l-ms-bn"
2131
  msgstr "Malay (Brunei)"
2132
 
2133
  # Malay
2134
+ #: ../../admin/lang/dynamic_strings.php:221
2135
  msgid "l-ms-my"
2136
  msgstr "Malay (Malaysia)"
2137
 
2138
  # Maltese
2139
+ #: ../../admin/lang/dynamic_strings.php:222
2140
  msgid "l-mt"
2141
  msgstr "Maltese"
2142
 
2143
  # Maltese
2144
+ #: ../../admin/lang/dynamic_strings.php:223
2145
  msgid "l-mt-mt"
2146
  msgstr "Maltese (Malta)"
2147
 
2148
  # Norwegian Bokmål
2149
+ #: ../../admin/lang/dynamic_strings.php:224
2150
  msgid "l-nb"
2151
  msgstr "Norwegian; Bokmål"
2152
 
2153
  # Norwegian Bokmål
2154
+ #: ../../admin/lang/dynamic_strings.php:225
2155
  msgid "l-nb-no"
2156
  msgstr "Norwegian (Norway)"
2157
 
2158
  # Dutch; Flemish
2159
+ #: ../../admin/lang/dynamic_strings.php:226
2160
  msgid "l-nl"
2161
  msgstr "Dutch; Flemish"
2162
 
2163
  # Belarusian
2164
+ #: ../../admin/lang/dynamic_strings.php:227
2165
  msgid "l-nl-be"
2166
  msgstr "Dutch (Belgium)"
2167
 
2168
  # Dutch; Flemish
2169
+ #: ../../admin/lang/dynamic_strings.php:228
2170
  msgid "l-nl-nl"
2171
  msgstr "Dutch (The Netherlands)"
2172
 
2173
  # Norwegian Nynorsk
2174
+ #: ../../admin/lang/dynamic_strings.php:229
2175
  msgid "l-nn-no"
2176
  msgstr "Norwegian; Nynorsk (Norway)"
2177
 
2178
+ #: ../../admin/lang/dynamic_strings.php:230
2179
  msgid "l-ns"
2180
  msgstr ""
2181
 
2182
+ #: ../../admin/lang/dynamic_strings.php:231
2183
  msgid "l-ns-za"
2184
  msgstr ""
2185
 
2186
  # Panjabi; Punjabi
2187
+ #: ../../admin/lang/dynamic_strings.php:232
2188
  msgid "l-pa"
2189
  msgstr "Panjabi; Punjabi"
2190
 
2191
  # Panjabi; Punjabi
2192
+ #: ../../admin/lang/dynamic_strings.php:233
2193
  msgid "l-pa-in"
2194
  msgstr "Panjabi (India)"
2195
 
2196
  # Polish
2197
+ #: ../../admin/lang/dynamic_strings.php:234
2198
  msgid "l-pl"
2199
  msgstr "Polish"
2200
 
2201
  # Polish
2202
+ #: ../../admin/lang/dynamic_strings.php:235
2203
  msgid "l-pl-pl"
2204
  msgstr "Polish (Poland)"
2205
 
2206
  # Pushto; Pashto
2207
+ #: ../../admin/lang/dynamic_strings.php:236
2208
  msgid "l-ps"
2209
  msgstr "Pushto; Pashto"
2210
 
2211
  # Pushto; Pashto
2212
+ #: ../../admin/lang/dynamic_strings.php:237
2213
  msgid "l-ps-ar"
2214
  msgstr "Pashto (Afghanistan)"
2215
 
2216
  # Portuguese
2217
+ #: ../../admin/lang/dynamic_strings.php:238
2218
  msgid "l-pt"
2219
  msgstr "Portuguese"
2220
 
2221
  # Portuguese
2222
+ #: ../../admin/lang/dynamic_strings.php:239
2223
  msgid "l-pt-br"
2224
  msgstr "Portuguese (Brazil)"
2225
 
2226
  # Portuguese
2227
+ #: ../../admin/lang/dynamic_strings.php:240
2228
  msgid "l-pt-pt"
2229
  msgstr "Portuguese (Portugal)"
2230
 
2231
  # Quechua
2232
+ #: ../../admin/lang/dynamic_strings.php:241
2233
  msgid "l-qu"
2234
  msgstr "Quechua"
2235
 
2236
  # Quechua
2237
+ #: ../../admin/lang/dynamic_strings.php:242
2238
  msgid "l-qu-bo"
2239
  msgstr "Quechua (Bolivia)"
2240
 
2241
  # Quechua
2242
+ #: ../../admin/lang/dynamic_strings.php:243
2243
  msgid "l-qu-ec"
2244
  msgstr "Quechua (Ecuador)"
2245
 
2246
  # Quechua
2247
+ #: ../../admin/lang/dynamic_strings.php:244
2248
  msgid "l-qu-pe"
2249
  msgstr "Quechua (Peru)"
2250
 
2251
  # Romanian; Moldavian; Moldovan
2252
+ #: ../../admin/lang/dynamic_strings.php:245
2253
  msgid "l-ro"
2254
  msgstr "Romanian"
2255
 
2256
  # Romanian; Moldavian; Moldovan
2257
+ #: ../../admin/lang/dynamic_strings.php:246
2258
  msgid "l-ro-ro"
2259
  msgstr "Romanian (Romania)"
2260
 
2261
  # Russian
2262
+ #: ../../admin/lang/dynamic_strings.php:247
2263
  msgid "l-ru"
2264
  msgstr "Russian"
2265
 
2266
  # Russian
2267
+ #: ../../admin/lang/dynamic_strings.php:248
2268
  msgid "l-ru-ru"
2269
  msgstr "Russian (Russia)"
2270
 
2271
+ #: ../../admin/lang/dynamic_strings.php:249
2272
  msgid "l-sa"
2273
  msgstr ""
2274
 
2275
+ #: ../../admin/lang/dynamic_strings.php:250
2276
  msgid "l-sa-in"
2277
  msgstr ""
2278
 
2279
  # Northern Sami
2280
+ #: ../../admin/lang/dynamic_strings.php:251
2281
  msgid "l-se"
2282
  msgstr "Northern Sami"
2283
 
2284
  # Northern Sami
2285
+ #: ../../admin/lang/dynamic_strings.php:252
2286
  msgid "l-se-fi"
2287
  msgstr "Northern Sami (Finland)"
2288
 
2289
  # Northern Sami
2290
+ #: ../../admin/lang/dynamic_strings.php:253
2291
  msgid "l-se-no"
2292
  msgstr "Northern Sami (Norway)"
2293
 
2294
  # Northern Sami
2295
+ #: ../../admin/lang/dynamic_strings.php:254
2296
  msgid "l-se-se"
2297
  msgstr "Northern Sami (Sweden)"
2298
 
2299
  # Slovak
2300
+ #: ../../admin/lang/dynamic_strings.php:255
2301
  msgid "l-sk"
2302
  msgstr "Slovak"
2303
 
2304
  # Slovak
2305
+ #: ../../admin/lang/dynamic_strings.php:256
2306
  msgid "l-sk-sk"
2307
  msgstr "Slovak (Slovakia)"
2308
 
2309
  # Slovenian
2310
+ #: ../../admin/lang/dynamic_strings.php:257
2311
  msgid "l-sl"
2312
  msgstr "Slovenian"
2313
 
2314
  # Slovenian
2315
+ #: ../../admin/lang/dynamic_strings.php:258
2316
  msgid "l-sl-si"
2317
  msgstr "Slovenian (Slovenia)"
2318
 
2319
  # Albanian
2320
+ #: ../../admin/lang/dynamic_strings.php:259
2321
  msgid "l-sq"
2322
  msgstr "Albanian"
2323
 
2324
  # Albanian
2325
+ #: ../../admin/lang/dynamic_strings.php:260
2326
  msgid "l-sq-al"
2327
  msgstr "Albanian (Albania)"
2328
 
2329
  # Serbian
2330
+ #: ../../admin/lang/dynamic_strings.php:261
2331
  msgid "l-sr-ba"
2332
  msgstr "Serbian (Bosnia and Herzegovina)"
2333
 
2334
  # Serbian
2335
+ #: ../../admin/lang/dynamic_strings.php:262
2336
  msgid "l-sr-sp"
2337
  msgstr "Serbian (Serbia and Montenegro)"
2338
 
2339
  # Swedish
2340
+ #: ../../admin/lang/dynamic_strings.php:263
2341
  msgid "l-sv"
2342
  msgstr "Swedish"
2343
 
2344
  # Swedish
2345
+ #: ../../admin/lang/dynamic_strings.php:264
2346
  msgid "l-sv-fi"
2347
  msgstr "Swedish (Finland)"
2348
 
2349
  # Swedish
2350
+ #: ../../admin/lang/dynamic_strings.php:265
2351
  msgid "l-sv-se"
2352
  msgstr "Swedish (Sweden)"
2353
 
2354
  # Swahili
2355
+ #: ../../admin/lang/dynamic_strings.php:266
2356
  msgid "l-sw"
2357
  msgstr "Swahili"
2358
 
2359
  # Swahili
2360
+ #: ../../admin/lang/dynamic_strings.php:267
2361
  msgid "l-sw-ke"
2362
  msgstr "Swahili (Kenya)"
2363
 
2364
  # Tamil
2365
+ #: ../../admin/lang/dynamic_strings.php:268
2366
  msgid "l-ta"
2367
  msgstr "Tamil"
2368
 
2369
  # Tamil
2370
+ #: ../../admin/lang/dynamic_strings.php:269
2371
  msgid "l-ta-in"
2372
  msgstr "Tamil (India)"
2373
 
2374
  # Telugu
2375
+ #: ../../admin/lang/dynamic_strings.php:270
2376
  msgid "l-te"
2377
  msgstr "Telugu"
2378
 
2379
  # Telugu
2380
+ #: ../../admin/lang/dynamic_strings.php:271
2381
  msgid "l-te-in"
2382
  msgstr "Telugu (India)"
2383
 
2384
  # Thai
2385
+ #: ../../admin/lang/dynamic_strings.php:272
2386
  msgid "l-th"
2387
  msgstr "Thai"
2388
 
2389
  # Thai
2390
+ #: ../../admin/lang/dynamic_strings.php:273
2391
  msgid "l-th-th"
2392
  msgstr "Thai (Thailand)"
2393
 
2394
  # Tagalog
2395
+ #: ../../admin/lang/dynamic_strings.php:274
2396
  msgid "l-tl"
2397
  msgstr "Tagalog"
2398
 
2399
  # Tagalog
2400
+ #: ../../admin/lang/dynamic_strings.php:275
2401
  msgid "l-tl-ph"
2402
  msgstr "Tagalog (Philippines)"
2403
 
2404
  # Tswana
2405
+ #: ../../admin/lang/dynamic_strings.php:276
2406
  msgid "l-tn"
2407
  msgstr "Tswana"
2408
 
2409
  # Tswana
2410
+ #: ../../admin/lang/dynamic_strings.php:277
2411
  msgid "l-tn-za"
2412
  msgstr "Tswana (South Africa)"
2413
 
2414
  # Turkish
2415
+ #: ../../admin/lang/dynamic_strings.php:278
2416
  msgid "l-tr"
2417
  msgstr "Turkish"
2418
 
2419
  # Turkish
2420
+ #: ../../admin/lang/dynamic_strings.php:279
2421
  msgid "l-tr-tr"
2422
  msgstr "Turkish (Turkey)"
2423
 
2424
  # Tatar
2425
+ #: ../../admin/lang/dynamic_strings.php:280
2426
  msgid "l-tt"
2427
  msgstr "Tatar"
2428
 
2429
  # Tatar
2430
+ #: ../../admin/lang/dynamic_strings.php:281
2431
  msgid "l-tt-ru"
2432
  msgstr "Tatar (Russia)"
2433
 
2434
  # Tsonga
2435
+ #: ../../admin/lang/dynamic_strings.php:282
2436
  msgid "l-ts"
2437
  msgstr "Tsonga"
2438
 
2439
  # Ukrainian
2440
+ #: ../../admin/lang/dynamic_strings.php:283
2441
  msgid "l-uk"
2442
  msgstr "Ukrainian"
2443
 
2444
  # Ukrainian
2445
+ #: ../../admin/lang/dynamic_strings.php:284
2446
  msgid "l-uk-ua"
2447
  msgstr "Ukrainian (Ukraine)"
2448
 
2449
  # Urdu
2450
+ #: ../../admin/lang/dynamic_strings.php:285
2451
  msgid "l-ur"
2452
  msgstr "Urdu"
2453
 
2454
  # Urdu
2455
+ #: ../../admin/lang/dynamic_strings.php:286
2456
  msgid "l-ur-pk"
2457
  msgstr "Urdu (Pakistan)"
2458
 
2459
  # Uzbek
2460
+ #: ../../admin/lang/dynamic_strings.php:287
2461
  msgid "l-uz"
2462
  msgstr "Uzbek"
2463
 
2464
  # Uzbek
2465
+ #: ../../admin/lang/dynamic_strings.php:288
2466
  msgid "l-uz-uz"
2467
  msgstr "Uzbek (Uzbekistan)"
2468
 
2469
  # Vietnamese
2470
+ #: ../../admin/lang/dynamic_strings.php:289
2471
  msgid "l-vi"
2472
  msgstr "Vietnamese"
2473
 
2474
  # Vietnamese
2475
+ #: ../../admin/lang/dynamic_strings.php:290
2476
  msgid "l-vi-vn"
2477
  msgstr "Vietnamese (Viet Nam)"
2478
 
2479
  # Xhosa
2480
+ #: ../../admin/lang/dynamic_strings.php:291
2481
  msgid "l-xh"
2482
  msgstr "Xhosa"
2483
 
2484
  # Xhosa
2485
+ #: ../../admin/lang/dynamic_strings.php:292
2486
  msgid "l-xh-za"
2487
  msgstr "Xhosa (South Africa)"
2488
 
2489
  # Chinese
2490
+ #: ../../admin/lang/dynamic_strings.php:293
2491
  msgid "l-zh"
2492
  msgstr "Chinese"
2493
 
2494
  # Chinese
2495
+ #: ../../admin/lang/dynamic_strings.php:294
2496
  msgid "l-zh-cn"
2497
  msgstr "Chinese (S)"
2498
 
2499
  # Chinese
2500
+ #: ../../admin/lang/dynamic_strings.php:295
2501
  msgid "l-zh-hk"
2502
  msgstr "Chinese (Hong Kong)"
2503
 
2504
  # Chinese
2505
+ #: ../../admin/lang/dynamic_strings.php:296
2506
  msgid "l-zh-mo"
2507
  msgstr "Chinese (Macau)"
2508
 
2509
  # Chinese
2510
+ #: ../../admin/lang/dynamic_strings.php:297
2511
  msgid "l-zh-sg"
2512
  msgstr "Chinese (Singapore)"
2513
 
2514
  # Chinese
2515
+ #: ../../admin/lang/dynamic_strings.php:298
2516
  msgid "l-zh-tw"
2517
  msgstr "Chinese (T)"
2518
 
2519
  # Zulu
2520
+ #: ../../admin/lang/dynamic_strings.php:299
2521
  msgid "l-zu"
2522
  msgstr "Zulu"
2523
 
2524
  # Zulu
2525
+ #: ../../admin/lang/dynamic_strings.php:300
2526
  msgid "l-zu-za"
2527
  msgstr "Zulu (South Africa)"
2528
 
2529
+ #: ../../admin/lang/dynamic_strings.php:301
2530
+ #: ../../admin/view/wp-slimstat-reports.php:536
2531
  msgid "l-"
2532
  msgstr "Unknown"
2533
 
2534
  # Unknown
2535
+ #: ../../admin/lang/dynamic_strings.php:302
2536
  msgid "l-empty"
2537
  msgstr "Unknown"
2538
 
2539
  # Unknown
2540
+ #: ../../admin/lang/dynamic_strings.php:303
2541
  msgid "l-xx"
2542
  msgstr "Unknown"
2543
 
2544
+ #: ../../admin/lang/dynamic_strings.php:304
2545
  msgid "c-xy"
2546
  msgstr "Local IP"
2547
 
2548
+ #: ../../admin/view/index.php:26
2549
  msgid "is between (x,y)"
2550
  msgstr ""
2551
 
2552
+ #: ../../admin/view/index.php:46
2553
  msgid "Load"
2554
  msgstr ""
2555
 
2556
+ #: ../../admin/view/index.php:66 ../../admin/view/wp-slimstat-reports.php:859
2557
  msgid "Today"
2558
  msgstr ""
2559
 
2560
+ #: ../../admin/view/index.php:67 ../../admin/view/wp-slimstat-reports.php:860
2561
  msgid "Yesterday"
2562
  msgstr ""
2563
 
2564
+ #: ../../admin/view/index.php:68
2565
  msgid "Last 7 Days"
2566
  msgstr ""
2567
 
2568
+ #: ../../admin/view/index.php:69
2569
  msgid "Last 60 Days"
2570
  msgstr ""
2571
 
2572
+ #: ../../admin/view/index.php:70
2573
  msgid "Last 90 Days"
2574
  msgstr ""
2575
 
2576
+ #: ../../admin/view/index.php:71
2577
  msgid "This Year So Far"
2578
  msgstr ""
2579
 
2580
+ #: ../../admin/view/index.php:72
2581
  msgid "Date Range"
2582
  msgstr ""
2583
 
2584
+ #: ../../admin/view/index.php:74 ../../admin/view/wp-slimstat-db-new.php:66
2585
+ #: ../../admin/view/wp-slimstat-db.php:71
2586
  msgid "Day"
2587
  msgstr ""
2588
 
2589
+ #: ../../admin/view/index.php:84 ../../admin/view/wp-slimstat-db-new.php:67
2590
+ #: ../../admin/view/wp-slimstat-db.php:72
2591
  msgid "Month"
2592
  msgstr ""
2593
 
2594
+ #: ../../admin/view/index.php:93 ../../admin/view/wp-slimstat-db-new.php:68
2595
+ #: ../../admin/view/wp-slimstat-db.php:73
2596
  msgid "Year"
2597
  msgstr ""
2598
 
2599
+ #: ../../admin/view/index.php:94 ../../admin/view/wp-slimstat-db-new.php:65
2600
+ #: ../../admin/view/wp-slimstat-db.php:70
2601
  msgid "Hour"
2602
  msgstr ""
2603
 
2604
+ #: ../../admin/view/index.php:95
2605
  msgid "Min"
2606
  msgstr ""
2607
 
2608
+ #: ../../admin/view/index.php:103 ../../admin/view/wp-slimstat-db-new.php:71
2609
+ #: ../../admin/view/wp-slimstat-db.php:76
2610
  msgid "hours"
2611
  msgstr ""
2612
 
2613
+ #: ../../admin/view/index.php:104
2614
  msgid "mins"
2615
  msgstr ""
2616
 
2617
+ #: ../../admin/view/index.php:113
2618
  msgid "Reset Filters"
2619
  msgstr ""
2620
 
2621
+ #: ../../admin/view/index.php:132
2622
+ #, php-format
2623
+ msgid ""
2624
+ "Install MaxMind's <a href='%s'>GeoLite DB</a> to determine your visitors' "
2625
+ "country of origin."
2626
+ msgstr ""
2627
+
2628
+ #: ../../admin/view/index.php:157
2629
  msgid "Your report here"
2630
  msgstr ""
2631
 
2632
+ #: ../../admin/view/index.php:159
2633
  msgid ""
2634
  "Yes, you can! Create and view your personalized analytics for Slimstat. Just "
2635
  "write a new plugin that retrieves the desired information from the database "
2638
  "forum_id=10\" target=\"_blank\">support forum</a>."
2639
  msgstr ""
2640
 
2641
+ #: ../../admin/view/index.php:176
 
 
 
 
 
 
2642
  msgid ""
2643
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2644
  "Slimstat leverages this information to identify returning visitors. Please "
2645
  "note that visitors also include registered users."
2646
  msgstr ""
2647
 
2648
+ #: ../../admin/view/index.php:180 ../../admin/view/index.php:224
2649
+ #: ../../admin/view/index.php:227 ../../admin/view/right-now.php:17
2650
  msgid "Color codes"
2651
  msgstr ""
2652
 
2653
+ #: ../../admin/view/index.php:180 ../../admin/view/right-now.php:17
2654
  msgid "From search result page"
2655
  msgstr ""
2656
 
2657
+ #: ../../admin/view/index.php:180 ../../admin/view/right-now.php:17
2658
+ #: ../../admin/wp-slimstat-admin.php:917
2659
  msgid "Known Visitor"
2660
  msgstr ""
2661
 
2662
+ #: ../../admin/view/index.php:180 ../../admin/view/index.php:224
2663
+ #: ../../admin/view/index.php:227 ../../admin/view/right-now.php:17
2664
  msgid "Known Users"
2665
  msgstr ""
2666
 
2667
+ #: ../../admin/view/index.php:180 ../../admin/view/index.php:224
2668
+ #: ../../admin/view/index.php:227 ../../admin/view/right-now.php:17
2669
  msgid "Other Humans"
2670
  msgstr ""
2671
 
2672
+ #: ../../admin/view/index.php:180 ../../admin/view/right-now.php:17
2673
  msgid "Bot or Crawler"
2674
  msgstr ""
2675
 
2676
+ #: ../../admin/view/index.php:184
2677
  msgid "Keywords used by your visitors to find your website on a search engine."
2678
  msgstr ""
2679
 
2680
+ #: ../../admin/view/index.php:187
2681
  msgid ""
2682
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
2683
  "measures your site's rankings. Values are updated every 12 hours. Filters "
2684
  "set above don't apply to this report."
2685
  msgstr ""
2686
 
2687
+ #: ../../admin/view/index.php:193
2688
  msgid "Human Visits"
2689
  msgstr ""
2690
 
2691
+ #: ../../admin/view/index.php:196
2692
+ msgid ""
2693
+ "Where not otherwise specified, the metrics in this report are referred to "
2694
+ "human visitors."
2695
+ msgstr ""
2696
+
2697
+ #: ../../admin/view/index.php:199
2698
  msgid ""
2699
  "Internet Service Provider: a company which provides other companies or "
2700
  "individuals with access to the Internet. Your DSL or cable internet service "
2702
  "by setting the corresponding filter under Settings > Slimstat > Filters."
2703
  msgstr ""
2704
 
2705
+ #: ../../admin/view/index.php:202
2706
  msgid ""
2707
  "You can configure Slimstat to ignore a specific Country by setting the "
2708
  "corresponding filter under Settings > Slimstat > Filters."
2709
  msgstr ""
2710
 
2711
+ #: ../../admin/view/index.php:205
2712
  msgid ""
2713
  "This report shows you what user agent families (no version considered) are "
2714
  "popular among your visitors."
2715
  msgstr ""
2716
 
2717
+ #: ../../admin/view/index.php:208
2718
  msgid ""
2719
  "This report shows you what operating system families (no version considered) "
2720
  "are popular among your visitors."
2721
  msgstr ""
2722
 
2723
+ #: ../../admin/view/index.php:211 ../../admin/view/wp-slimstat-reports.php:36
2724
+ #: ../../admin/wp-slimstat-admin.php:589 ../../admin/wp-slimstat-admin.php:604
2725
+ #: ../../wp-slimstat.php:1473
2726
  msgid "Traffic Sources"
2727
  msgstr ""
2728
 
2729
+ #: ../../admin/view/index.php:214
2730
  msgid "Average Pageviews per Visit"
2731
  msgstr ""
2732
 
2733
+ #: ../../admin/view/index.php:217
2734
  msgid ""
2735
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
2736
  "left your site from the entrance (landing) page."
2737
  msgstr ""
2738
 
2739
+ #: ../../admin/view/index.php:220
2740
  msgid "Searches performed using Wordpress' built-in search functionality."
2741
  msgstr ""
2742
 
2743
+ #: ../../admin/view/index.php:224
2744
  msgid ""
2745
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
2746
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
2747
  "link has an ID attribute associated to it."
2748
  msgstr ""
2749
 
2750
+ #: ../../admin/view/index.php:227
2751
  msgid ""
2752
  "This report lists any <em>event</em> occurred on your website. Please refer "
2753
  "to the FAQ for more information on how to leverage this functionality."
2754
  msgstr ""
2755
 
2756
+ #: ../../admin/view/index.php:230
2757
  msgid ""
2758
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2759
  "this report is not affected by the filters set here above."
2775
  msgid "Syndication Reader"
2776
  msgstr ""
2777
 
2778
+ #: ../../admin/view/right-now.php:27
2779
+ #: ../../admin/view/wp-slimstat-reports.php:458
2780
+ #: ../../admin/view/wp-slimstat-reports.php:741
2781
  msgid "No data to display"
2782
  msgstr ""
2783
 
2784
  # Unknown
2785
+ #: ../../admin/view/right-now.php:57
2786
+ #: ../../admin/view/wp-slimstat-reports.php:524
2787
+ #: ../../admin/view/wp-slimstat-reports.php:784
2788
+ #: ../../admin/view/wp-slimstat-reports.php:1063
2789
  msgid "c-"
2790
  msgstr "Unknown"
2791
 
2792
+ #: ../../admin/view/right-now.php:110
2793
+ #: ../../admin/view/wp-slimstat-db-new.php:57
2794
+ #: ../../admin/view/wp-slimstat-db.php:58
2795
+ #: ../../admin/wp-slimstat-admin.php:919 ../../admin/wp-slimstat-admin.php:961
2796
  msgid "Originating IP"
2797
  msgstr ""
2798
 
2799
+ #: ../../admin/view/right-now.php:128
2800
  msgid "Server Latency and Page Speed in milliseconds"
2801
  msgstr ""
2802
 
2803
+ #: ../../admin/view/right-now.php:128
2804
  msgid "SL"
2805
  msgstr ""
2806
 
2807
+ #: ../../admin/view/right-now.php:128
2808
  msgid "PS"
2809
  msgstr ""
2810
 
2811
+ #: ../../admin/view/right-now.php:140
2812
+ #: ../../admin/view/wp-slimstat-reports.php:588
2813
+ #: ../../admin/view/wp-slimstat-reports.php:592
2814
+ #: ../../admin/view/wp-slimstat-reports.php:766
2815
+ #: ../../admin/view/wp-slimstat-reports.php:819
2816
  msgid "Open this URL in a new window"
2817
  msgstr ""
2818
 
2819
+ #: ../../admin/view/right-now.php:143
2820
  msgid "Local search results page"
2821
  msgstr ""
2822
 
2823
+ #: ../../admin/view/right-now.php:148
2824
+ #: ../../admin/view/wp-slimstat-db-new.php:36
2825
+ #: ../../admin/view/wp-slimstat-db.php:39
2826
+ #: ../../admin/wp-slimstat-admin.php:922 ../../admin/wp-slimstat-admin.php:938
2827
  msgid "Search Terms"
2828
  msgstr ""
2829
 
2831
  msgid "Open this referrer in a new window"
2832
  msgstr ""
2833
 
 
 
 
 
2834
  #: ../../admin/view/right-now.php:155
2835
  msgid "Date and Time"
2836
  msgstr ""
2839
  msgid "Content Type"
2840
  msgstr ""
2841
 
2842
+ #: ../../admin/view/right-now.php:159
2843
+ msgid "Delete this pageview"
2844
+ msgstr ""
2845
+
2846
+ #: ../../admin/view/wp-slimstat-db-new.php:33
2847
+ #: ../../admin/view/wp-slimstat-db.php:36
2848
+ #: ../../admin/wp-slimstat-admin.php:935
2849
  msgid "Browser"
2850
  msgstr ""
2851
 
2852
+ #: ../../admin/view/wp-slimstat-db-new.php:34
2853
+ #: ../../admin/view/wp-slimstat-db.php:37
2854
+ #: ../../admin/view/wp-slimstat-reports.php:523
2855
+ #: ../../admin/wp-slimstat-admin.php:936
2856
  msgid "Country Code"
2857
  msgstr ""
2858
 
2859
+ #: ../../admin/view/wp-slimstat-db-new.php:35
2860
+ #: ../../admin/view/wp-slimstat-db.php:38
2861
  msgid "IP Address"
2862
  msgstr ""
2863
 
2864
+ #: ../../admin/view/wp-slimstat-db-new.php:37
2865
+ #: ../../admin/view/wp-slimstat-db.php:40
2866
+ #: ../../admin/view/wp-slimstat-reports.php:535
2867
+ #: ../../admin/wp-slimstat-admin.php:939
2868
  msgid "Language Code"
2869
  msgstr ""
2870
 
2871
+ #: ../../admin/view/wp-slimstat-db-new.php:38
2872
+ #: ../../admin/view/wp-slimstat-db.php:41
2873
+ #: ../../admin/wp-slimstat-admin.php:940
2874
  msgid "Operating System"
2875
  msgstr ""
2876
 
2877
+ #: ../../admin/view/wp-slimstat-db-new.php:39
2878
+ #: ../../admin/view/wp-slimstat-db.php:42
2879
+ #: ../../admin/wp-slimstat-admin.php:941
2880
  msgid "Permalink"
2881
  msgstr ""
2882
 
2883
+ #: ../../admin/view/wp-slimstat-db-new.php:40
2884
  msgid "Domain"
2885
  msgstr ""
2886
 
2887
+ #: ../../admin/view/wp-slimstat-db-new.php:41
2888
+ #: ../../admin/view/wp-slimstat-db.php:43
2889
+ #: ../../admin/wp-slimstat-admin.php:942
2890
  msgid "Referer"
2891
  msgstr ""
2892
 
2893
+ #: ../../admin/view/wp-slimstat-db-new.php:42
2894
+ #: ../../admin/view/wp-slimstat-db.php:44
2895
+ #: ../../admin/wp-slimstat-admin.php:943
2896
  msgid "Visitor's Name"
2897
  msgstr ""
2898
 
2899
+ #: ../../admin/view/wp-slimstat-db-new.php:43
2900
+ #: ../../admin/view/wp-slimstat-db.php:45
2901
  msgid "Page Speed"
2902
  msgstr ""
2903
 
2904
+ #: ../../admin/view/wp-slimstat-db-new.php:45
2905
+ #: ../../admin/view/wp-slimstat-db.php:47
2906
  msgid "-- Advanced filters --"
2907
  msgstr ""
2908
 
2909
+ #: ../../admin/view/wp-slimstat-db-new.php:46
2910
+ #: ../../admin/view/wp-slimstat-db.php:48
2911
+ #: ../../admin/view/wp-slimstat-reports.php:63
2912
  msgid "Browser Capabilities"
2913
  msgstr ""
2914
 
2915
+ #: ../../admin/view/wp-slimstat-db-new.php:47
2916
+ #: ../../admin/view/wp-slimstat-db.php:49
2917
+ #: ../../admin/wp-slimstat-admin.php:954
2918
  msgid "Browser Version"
2919
  msgstr ""
2920
 
2921
+ #: ../../admin/view/wp-slimstat-db-new.php:48
2922
+ #: ../../admin/view/wp-slimstat-db.php:50
2923
+ #: ../../admin/wp-slimstat-admin.php:955
2924
  msgid "Browser Type"
2925
  msgstr ""
2926
 
2927
+ #: ../../admin/view/wp-slimstat-db-new.php:49
2928
+ #: ../../admin/view/wp-slimstat-db.php:51
2929
+ #: ../../admin/wp-slimstat-admin.php:924
2930
  msgid "User Agent"
2931
  msgstr ""
2932
 
2933
+ #: ../../admin/view/wp-slimstat-db-new.php:50
2934
+ #: ../../admin/view/wp-slimstat-db.php:52
2935
+ #: ../../admin/wp-slimstat-admin.php:956
2936
  msgid "Color Depth"
2937
  msgstr ""
2938
 
2939
+ #: ../../admin/view/wp-slimstat-db-new.php:51
2940
+ #: ../../admin/view/wp-slimstat-db.php:53
2941
+ #: ../../admin/wp-slimstat-admin.php:957
2942
  msgid "CSS Version"
2943
  msgstr ""
2944
 
2945
+ #: ../../admin/view/wp-slimstat-db-new.php:52
2946
+ #: ../../admin/view/wp-slimstat-db.php:54
2947
+ #: ../../admin/wp-slimstat-admin.php:958
2948
  msgid "Pageview Attributes"
2949
  msgstr ""
2950
 
2951
+ #: ../../admin/view/wp-slimstat-db-new.php:53
2952
+ #: ../../admin/view/wp-slimstat-db.php:55
2953
  msgid "Server Latency"
2954
  msgstr ""
2955
 
2956
+ #: ../../admin/view/wp-slimstat-db-new.php:54
2957
+ #: ../../admin/wp-slimstat-admin.php:925
2958
  msgid "Outbound Link"
2959
  msgstr ""
2960
 
2961
+ #: ../../admin/view/wp-slimstat-db-new.php:55
2962
+ #: ../../admin/view/wp-slimstat-db.php:56
2963
+ #: ../../admin/wp-slimstat-admin.php:959
2964
  msgid "Post Author"
2965
  msgstr ""
2966
 
2967
+ #: ../../admin/view/wp-slimstat-db-new.php:56
2968
+ #: ../../admin/view/wp-slimstat-db.php:57
2969
+ #: ../../admin/wp-slimstat-admin.php:960
2970
  msgid "Post Category ID"
2971
  msgstr ""
2972
 
2973
+ #: ../../admin/view/wp-slimstat-db-new.php:58
2974
+ #: ../../admin/view/wp-slimstat-db.php:59
2975
+ #: ../../admin/wp-slimstat-admin.php:962
2976
  msgid "Resource Content Type"
2977
  msgstr ""
2978
 
2979
+ #: ../../admin/view/wp-slimstat-db-new.php:59
2980
+ #: ../../admin/view/wp-slimstat-db.php:60
2981
  msgid "Resource ID"
2982
  msgstr ""
2983
 
2984
+ #: ../../admin/view/wp-slimstat-db-new.php:60
2985
+ #: ../../admin/wp-slimstat-admin.php:963
2986
  msgid "Screen Resolution"
2987
  msgstr ""
2988
 
2989
+ #: ../../admin/view/wp-slimstat-db-new.php:61
2990
+ #: ../../admin/view/wp-slimstat-db.php:64
2991
+ #: ../../admin/wp-slimstat-admin.php:964
2992
  msgid "Visit ID"
2993
  msgstr ""
2994
 
2995
+ #: ../../admin/view/wp-slimstat-db-new.php:64
2996
+ #: ../../admin/view/wp-slimstat-db.php:69
2997
  msgid "Minute"
2998
  msgstr ""
2999
 
3000
+ #: ../../admin/view/wp-slimstat-db-new.php:69
3001
+ #: ../../admin/view/wp-slimstat-db.php:74
3002
  msgid "+/-"
3003
  msgstr ""
3004
 
3005
+ #: ../../admin/view/wp-slimstat-db-new.php:72
3006
+ #: ../../admin/view/wp-slimstat-db.php:77
3007
  msgid "minutes"
3008
  msgstr ""
3009
 
3010
+ #: ../../admin/view/wp-slimstat-db-new.php:74
3011
+ #, fuzzy
3012
  msgid "Order Direction"
3013
+ msgstr "Macromedia Director"
3014
 
3015
+ #: ../../admin/view/wp-slimstat-db-new.php:75
3016
+ #: ../../admin/view/wp-slimstat-db.php:80
3017
  msgid "Limit Results"
3018
  msgstr ""
3019
 
3020
+ #: ../../admin/view/wp-slimstat-db-new.php:76
3021
+ #: ../../admin/view/wp-slimstat-db.php:81
3022
  msgid "Start From"
3023
  msgstr ""
3024
 
3025
+ #: ../../admin/view/wp-slimstat-db.php:61
3026
+ msgid "Screen Width"
3027
+ msgstr ""
3028
+
3029
+ #: ../../admin/view/wp-slimstat-db.php:62
3030
+ msgid "Screen Height"
3031
+ msgstr ""
3032
+
3033
+ #: ../../admin/view/wp-slimstat-db.php:63
3034
+ msgid "Viewport Size"
3035
+ msgstr ""
3036
+
3037
+ #: ../../admin/view/wp-slimstat-db.php:78
3038
+ msgid "Unix Timestamp"
3039
+ msgstr ""
3040
+
3041
+ #: ../../admin/view/wp-slimstat-reports.php:32
3042
+ #: ../../admin/wp-slimstat-admin.php:585 ../../wp-slimstat.php:1469
3043
  msgid "Real-Time Log"
3044
  msgstr ""
3045
 
3046
+ #: ../../admin/view/wp-slimstat-reports.php:33
3047
+ #: ../../admin/wp-slimstat-admin.php:586 ../../admin/wp-slimstat-admin.php:601
3048
+ #: ../../wp-slimstat.php:1470
3049
  msgid "Overview"
3050
  msgstr ""
3051
 
3052
+ #: ../../admin/view/wp-slimstat-reports.php:34
3053
+ #: ../../admin/wp-slimstat-admin.php:587 ../../admin/wp-slimstat-admin.php:602
3054
+ #: ../../wp-slimstat.php:1471
3055
  msgid "Audience"
3056
  msgstr ""
3057
 
3058
+ #: ../../admin/view/wp-slimstat-reports.php:35
3059
+ #: ../../admin/wp-slimstat-admin.php:588 ../../admin/wp-slimstat-admin.php:603
3060
+ #: ../../wp-slimstat.php:1472
3061
  msgid "Site Analysis"
3062
  msgstr ""
3063
 
3064
+ #: ../../admin/view/wp-slimstat-reports.php:37
3065
+ #: ../../admin/wp-slimstat-admin.php:590 ../../admin/wp-slimstat-admin.php:605
3066
+ #: ../../wp-slimstat.php:1474
3067
  msgid "Map Overlay"
3068
  msgstr ""
3069
 
3070
+ #: ../../admin/view/wp-slimstat-reports.php:38
3071
+ #: ../../admin/wp-slimstat-admin.php:591 ../../admin/wp-slimstat-admin.php:606
3072
+ #: ../../wp-slimstat.php:1475
3073
  msgid "Custom Reports"
3074
  msgstr ""
3075
 
3076
+ #: ../../admin/view/wp-slimstat-reports.php:42
3077
  msgid "Pageviews (chart)"
3078
  msgstr ""
3079
 
3080
+ #: ../../admin/view/wp-slimstat-reports.php:43
3081
  msgid "About Slimstat"
3082
  msgstr ""
3083
 
3084
+ #: ../../admin/view/wp-slimstat-reports.php:44
3085
  msgid "At a Glance"
3086
  msgstr ""
3087
 
3088
+ #: ../../admin/view/wp-slimstat-reports.php:45
3089
  msgid "Currently Online"
3090
  msgstr ""
3091
 
3092
+ #: ../../admin/view/wp-slimstat-reports.php:47
3093
  #: ../../admin/view/wp-slimstat-reports.php:82
 
 
 
 
 
3094
  msgid "Recent Search Terms"
3095
  msgstr ""
3096
 
3097
+ #: ../../admin/view/wp-slimstat-reports.php:48
3098
  msgid "Top Pages"
3099
  msgstr ""
3100
 
3101
+ #: ../../admin/view/wp-slimstat-reports.php:49
3102
+ #: ../../admin/view/wp-slimstat-reports.php:79
3103
  msgid "Top Traffic Sources"
3104
  msgstr ""
3105
 
3106
+ #: ../../admin/view/wp-slimstat-reports.php:50
3107
  msgid "Top Known Visitors"
3108
  msgstr ""
3109
 
3110
+ #: ../../admin/view/wp-slimstat-reports.php:51
3111
+ #: ../../admin/view/wp-slimstat-reports.php:77
3112
+ #: ../../admin/view/wp-slimstat-reports.php:97
3113
  msgid "Top Search Terms"
3114
  msgstr ""
3115
 
3116
+ #: ../../admin/view/wp-slimstat-reports.php:52
3117
+ #: ../../admin/view/wp-slimstat-reports.php:64
3118
+ #: ../../admin/view/wp-slimstat-reports.php:78
3119
  msgid "Top Countries"
3120
  msgstr ""
3121
 
3122
+ #: ../../admin/view/wp-slimstat-reports.php:53
3123
  msgid "Rankings"
3124
  msgstr ""
3125
 
3126
+ #: ../../admin/view/wp-slimstat-reports.php:54
3127
  msgid "Top Language Families"
3128
  msgstr ""
3129
 
3130
+ #: ../../admin/view/wp-slimstat-reports.php:55
3131
+ msgid "Our Team Recommends"
3132
+ msgstr ""
3133
+
3134
+ #: ../../admin/view/wp-slimstat-reports.php:56
3135
  msgid "Human Visits (chart)"
3136
  msgstr ""
3137
 
3138
+ #: ../../admin/view/wp-slimstat-reports.php:57
3139
  msgid "Audience Overview"
3140
  msgstr ""
3141
 
3142
+ #: ../../admin/view/wp-slimstat-reports.php:58
3143
  msgid "Top Languages"
3144
  msgstr ""
3145
 
3146
+ #: ../../admin/view/wp-slimstat-reports.php:59
3147
  msgid "Top Browsers"
3148
  msgstr ""
3149
 
3150
+ #: ../../admin/view/wp-slimstat-reports.php:60
3151
  msgid "Top Service Providers"
3152
  msgstr ""
3153
 
3154
+ #: ../../admin/view/wp-slimstat-reports.php:61
3155
  msgid "Top Operating Systems"
3156
  msgstr ""
3157
 
3158
+ #: ../../admin/view/wp-slimstat-reports.php:62
3159
  msgid "Top Screen Resolutions"
3160
  msgstr ""
3161
 
3162
+ #: ../../admin/view/wp-slimstat-reports.php:65
3163
  msgid "Visit Duration"
3164
  msgstr ""
3165
 
3166
+ #: ../../admin/view/wp-slimstat-reports.php:66
3167
+ #: ../../admin/view/wp-slimstat-reports.php:83
3168
  msgid "Recent Countries"
3169
  msgstr ""
3170
 
3171
+ #: ../../admin/view/wp-slimstat-reports.php:67
3172
  msgid "Recent Screen Resolutions"
3173
  msgstr ""
3174
 
3175
+ #: ../../admin/view/wp-slimstat-reports.php:68
3176
  msgid "Recent Operating Systems"
3177
  msgstr ""
3178
 
3179
+ #: ../../admin/view/wp-slimstat-reports.php:69
3180
  msgid "Recent Browsers"
3181
  msgstr ""
3182
 
3183
+ #: ../../admin/view/wp-slimstat-reports.php:70
3184
  msgid "Recent Languages"
3185
  msgstr ""
3186
 
3187
+ #: ../../admin/view/wp-slimstat-reports.php:71
3188
  msgid "Top Browser Families"
3189
  msgstr ""
3190
 
3191
+ #: ../../admin/view/wp-slimstat-reports.php:72
3192
  msgid "Top OS Families"
3193
  msgstr ""
3194
 
3195
+ #: ../../admin/view/wp-slimstat-reports.php:73
3196
  msgid "Recent Users"
3197
  msgstr ""
3198
 
3199
+ #: ../../admin/view/wp-slimstat-reports.php:74
3200
  msgid "Top Users"
3201
  msgstr ""
3202
 
3203
+ #: ../../admin/view/wp-slimstat-reports.php:75
3204
  msgid "Traffic Sources (chart)"
3205
  msgstr ""
3206
 
3207
+ #: ../../admin/view/wp-slimstat-reports.php:76
3208
  msgid "Summary"
3209
  msgstr ""
3210
 
3211
+ #: ../../admin/view/wp-slimstat-reports.php:80
3212
  msgid "Top Referring Search Engines"
3213
  msgstr ""
3214
 
3215
+ #: ../../admin/view/wp-slimstat-reports.php:81
3216
+ msgid "Spy View"
 
3217
  msgstr ""
3218
 
3219
+ #: ../../admin/view/wp-slimstat-reports.php:84
3220
+ msgid "Recent Exit Pages"
3221
  msgstr ""
3222
 
3223
+ #: ../../admin/view/wp-slimstat-reports.php:86
3224
  msgid "Recent Posts"
3225
  msgstr ""
3226
 
3227
+ #: ../../admin/view/wp-slimstat-reports.php:87
3228
  msgid "Recent Bounce Pages"
3229
  msgstr ""
3230
 
3231
+ #: ../../admin/view/wp-slimstat-reports.php:88
3232
  msgid "Recent Feeds"
3233
  msgstr ""
3234
 
3235
+ #: ../../admin/view/wp-slimstat-reports.php:89
3236
  msgid "Recent Pages Not Found"
3237
  msgstr ""
3238
 
3239
+ #: ../../admin/view/wp-slimstat-reports.php:90
3240
  msgid "Recent Internal Searches"
3241
  msgstr ""
3242
 
3243
+ #: ../../admin/view/wp-slimstat-reports.php:91
3244
  msgid "Top Categories"
3245
  msgstr ""
3246
 
3247
+ #: ../../admin/view/wp-slimstat-reports.php:92
3248
  msgid "Recent Outbound Links"
3249
  msgstr ""
3250
 
3251
+ #: ../../admin/view/wp-slimstat-reports.php:93
3252
  msgid "Recent Events"
3253
  msgstr ""
3254
 
3255
+ #: ../../admin/view/wp-slimstat-reports.php:94
3256
  msgid "Top Posts"
3257
  msgstr ""
3258
 
3259
+ #: ../../admin/view/wp-slimstat-reports.php:95
3260
  msgid "Top Feeds"
3261
  msgstr ""
3262
 
3263
+ #: ../../admin/view/wp-slimstat-reports.php:96
3264
  msgid "Top Internal Searches"
3265
  msgstr ""
3266
 
3267
+ #: ../../admin/view/wp-slimstat-reports.php:98
3268
  msgid "Recent Categories"
3269
  msgstr ""
3270
 
3271
+ #: ../../admin/view/wp-slimstat-reports.php:99
3272
  msgid "Top Pages Not Found"
3273
  msgstr ""
3274
 
3275
+ #: ../../admin/view/wp-slimstat-reports.php:100
3276
+ msgid "Rcent Exit Pages"
3277
+ msgstr ""
3278
+
3279
+ #: ../../admin/view/wp-slimstat-reports.php:101
3280
  msgid "Top Authors"
3281
  msgstr ""
3282
 
3283
+ #: ../../admin/view/wp-slimstat-reports.php:102
3284
  msgid "Top Tags"
3285
  msgstr ""
3286
 
3287
+ #: ../../admin/view/wp-slimstat-reports.php:103
3288
  msgid "Recent Downloads"
3289
  msgstr ""
3290
 
3291
+ #: ../../admin/view/wp-slimstat-reports.php:104
3292
  msgid "Top OutLinks and Downloads"
3293
  msgstr ""
3294
 
3295
+ #: ../../admin/view/wp-slimstat-reports.php:105
3296
  msgid "Your Website"
3297
  msgstr ""
3298
 
3299
+ #: ../../admin/view/wp-slimstat-reports.php:106
3300
+ msgid "Top Bounce Pages"
3301
+ msgstr ""
3302
+
3303
  #: ../../admin/view/wp-slimstat-reports.php:107
3304
+ msgid "Top Exit Pages"
3305
  msgstr ""
3306
 
3307
  #: ../../admin/view/wp-slimstat-reports.php:108
3308
+ msgid "Top Entry Pages"
3309
+ msgstr ""
3310
+
3311
+ #: ../../admin/view/wp-slimstat-reports.php:109
3312
+ msgid "World Map"
3313
+ msgstr ""
3314
+
3315
+ #: ../../admin/view/wp-slimstat-reports.php:110
3316
  msgid "Activity"
3317
  msgstr ""
3318
 
3319
+ #: ../../admin/view/wp-slimstat-reports.php:217
3320
  msgid "Chart controls"
3321
  msgstr ""
3322
 
3323
+ #: ../../admin/view/wp-slimstat-reports.php:217
3324
  msgid "Use your mouse wheel to zoom in and out"
3325
  msgstr ""
3326
 
3327
+ #: ../../admin/view/wp-slimstat-reports.php:217
3328
  msgid "While zooming in, drag the chart to move to a different area"
3329
  msgstr ""
3330
 
3331
+ #: ../../admin/view/wp-slimstat-reports.php:217
3332
  msgid "Double click on an empty region to reset the zoom level"
3333
  msgstr ""
3334
 
3335
+ #: ../../admin/view/wp-slimstat-reports.php:233
3336
  msgid "src"
3337
  msgstr ""
3338
 
3339
+ #: ../../admin/view/wp-slimstat-reports.php:236
3340
  msgid "serp"
3341
  msgstr ""
3342
 
3343
+ #: ../../admin/view/wp-slimstat-reports.php:243
 
 
 
 
3344
  msgid "Go to the referring page"
3345
  msgstr ""
3346
 
3347
+ #: ../../admin/view/wp-slimstat-reports.php:265
3348
  msgid "Remove filter for"
3349
  msgstr ""
3350
 
3351
+ #: ../../admin/view/wp-slimstat-reports.php:269
3352
  msgid "Save"
3353
  msgstr ""
3354
 
3355
+ #: ../../admin/view/wp-slimstat-reports.php:272
3356
  msgid "Reset All"
3357
  msgstr ""
3358
 
3359
+ #: ../../admin/view/wp-slimstat-reports.php:276
3360
  msgid "Current filters:"
3361
  msgstr ""
3362
 
3363
+ #: ../../admin/view/wp-slimstat-reports.php:280
3364
  msgid "Refresh"
3365
  msgstr ""
3366
 
3367
+ #: ../../admin/view/wp-slimstat-reports.php:361
3368
  #, php-format
3369
  msgid "Results %s - %s of %s"
3370
  msgstr ""
3371
 
3372
+ #: ../../admin/view/wp-slimstat-reports.php:363
3373
  msgid "Refresh in"
3374
  msgstr ""
3375
 
3376
+ #: ../../admin/view/wp-slimstat-reports.php:385
3377
+ #: ../../admin/view/wp-slimstat-reports.php:397
3378
  #, php-format
3379
  msgid "Daily %s"
3380
  msgstr ""
3381
 
3382
+ #: ../../admin/view/wp-slimstat-reports.php:388
3383
  #, php-format
3384
  msgid "%s Minute by Minute"
3385
  msgstr ""
3386
 
3387
+ #: ../../admin/view/wp-slimstat-reports.php:391
3388
  #, php-format
3389
  msgid "Hourly %s"
3390
  msgstr ""
3391
 
3392
+ #: ../../admin/view/wp-slimstat-reports.php:394
3393
  #, php-format
3394
  msgid "Monthly %s"
3395
  msgstr ""
3396
 
3397
+ #: ../../admin/view/wp-slimstat-reports.php:506
3398
  msgid "Category ID"
3399
  msgstr ""
3400
 
3401
+ #: ../../admin/view/wp-slimstat-reports.php:539
3402
  msgid "OS Code"
3403
  msgstr ""
3404
 
3405
+ #: ../../admin/view/wp-slimstat-reports.php:551
3406
  msgid "Referrer"
3407
  msgstr ""
3408
 
3409
+ #: ../../admin/view/wp-slimstat-reports.php:578
3410
+ #: ../../admin/view/wp-slimstat-reports.php:887
3411
+ #: ../../admin/view/wp-slimstat-reports.php:896
3412
+ #: ../../admin/view/wp-slimstat-reports.php:902
3413
+ #: ../../admin/view/wp-slimstat-reports.php:908
3414
+ #: ../../admin/view/wp-slimstat-reports.php:914
3415
+ #: ../../admin/view/wp-slimstat-reports.php:920
3416
+ #: ../../admin/view/wp-slimstat-reports.php:926
3417
+ #: ../../admin/view/wp-slimstat-reports.php:932
3418
  msgid "Hits"
3419
  msgstr ""
3420
 
3421
+ #: ../../admin/view/wp-slimstat-reports.php:758
3422
  msgid "Search for"
3423
  msgstr ""
3424
 
3425
+ #: ../../admin/view/wp-slimstat-reports.php:809
3426
+ #: ../../admin/view/wp-slimstat-reports.php:819
3427
  msgid "Source"
3428
  msgstr ""
3429
 
3430
+ #: ../../admin/view/wp-slimstat-reports.php:811
3431
  msgid "Keywords"
3432
  msgstr ""
3433
 
3434
+ #: ../../admin/view/wp-slimstat-reports.php:819
3435
  #, php-format
3436
  msgid "Filter results where resource equals %s"
3437
  msgstr ""
3438
 
3439
+ #: ../../admin/view/wp-slimstat-reports.php:820
3440
  msgid "Link Details"
3441
  msgstr ""
3442
 
3443
+ #: ../../admin/view/wp-slimstat-reports.php:833
3444
  msgid "Total Pageviews"
3445
  msgstr ""
3446
 
3447
+ #: ../../admin/view/wp-slimstat-reports.php:834
3448
  msgid "DB Size"
3449
  msgstr ""
3450
 
3451
+ #: ../../admin/view/wp-slimstat-reports.php:835
3452
  msgid "Tracking Active"
3453
  msgstr ""
3454
 
3455
+ #: ../../admin/view/wp-slimstat-reports.php:836
3456
  msgid "Javascript Mode"
3457
  msgstr ""
3458
 
3459
+ #: ../../admin/view/wp-slimstat-reports.php:837
3460
  msgid "Tracking Browser Caps"
3461
  msgstr ""
3462
 
3463
+ #: ../../admin/view/wp-slimstat-reports.php:838
3464
  msgid "Auto purge"
3465
  msgstr ""
3466
 
3467
+ #: ../../admin/view/wp-slimstat-reports.php:838
3468
+ #: ../../admin/wp-slimstat-admin.php:994
3469
  msgid "No"
3470
  msgstr ""
3471
 
3472
+ #: ../../admin/view/wp-slimstat-reports.php:839
3473
  msgid "Oldest pageview"
3474
  msgstr ""
3475
 
3476
+ #: ../../admin/view/wp-slimstat-reports.php:839
3477
  msgid "No visits"
3478
  msgstr ""
3479
 
3480
+ #: ../../admin/view/wp-slimstat-reports.php:849
3481
+ #: ../../admin/view/wp-slimstat-reports.php:951
3482
  msgid ""
3483
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
3484
  "the tracking code is executed."
3485
  msgstr ""
3486
 
3487
+ #: ../../admin/view/wp-slimstat-reports.php:851
3488
  msgid "How many pages have been visited on average during the current period."
3489
  msgstr ""
3490
 
3491
+ #: ../../admin/view/wp-slimstat-reports.php:852
3492
  msgid "Average Pageviews"
3493
  msgstr ""
3494
 
3495
+ #: ../../admin/view/wp-slimstat-reports.php:853
3496
  msgid ""
3497
  "Visitors who landed on your site after searching for a keyword on Google, "
3498
  "Yahoo, etc."
3499
  msgstr ""
3500
 
3501
+ #: ../../admin/view/wp-slimstat-reports.php:854
3502
  msgid "From Search Results"
3503
  msgstr ""
3504
 
3505
+ #: ../../admin/view/wp-slimstat-reports.php:855
3506
  msgid ""
3507
  "Used to differentiate between multiple requests to download a file from one "
3508
  "internet address (IP) and requests originating from many distinct addresses"
3509
  msgstr ""
3510
 
3511
+ #: ../../admin/view/wp-slimstat-reports.php:857
 
 
 
 
 
 
 
 
3512
  msgid "Last 5 minutes"
3513
  msgstr ""
3514
 
3515
+ #: ../../admin/view/wp-slimstat-reports.php:858
3516
  msgid "Last 30 minutes"
3517
  msgstr ""
3518
 
3519
+ #: ../../admin/view/wp-slimstat-reports.php:868
3520
  msgid ""
3521
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3522
  "multiple times if they perform multiple visits."
3523
  msgstr ""
3524
 
3525
+ #: ../../admin/view/wp-slimstat-reports.php:869
3526
+ #: ../../admin/view/wp-slimstat-reports.php:1179
3527
+ msgid "Visits"
3528
  msgstr ""
3529
 
3530
+ #: ../../admin/view/wp-slimstat-reports.php:870
3531
  msgid "It includes only traffic generated by human visitors."
3532
  msgstr ""
3533
 
3534
+ #: ../../admin/view/wp-slimstat-reports.php:872
3535
+ #: ../../admin/view/wp-slimstat-reports.php:963
3536
  msgid ""
3537
  "Percentage of single-page visits, i.e. visits in which the person left your "
3538
  "site from the entrance page."
3539
  msgstr ""
3540
 
3541
+ #: ../../admin/view/wp-slimstat-reports.php:873
3542
  msgid "Bounce rate"
3543
  msgstr ""
3544
 
3545
+ #: ../../admin/view/wp-slimstat-reports.php:874
3546
  msgid "Visitors who had previously left a comment on your blog."
3547
  msgstr ""
3548
 
3549
+ #: ../../admin/view/wp-slimstat-reports.php:875
3550
  msgid "Known visitors"
3551
  msgstr ""
3552
 
3553
+ #: ../../admin/view/wp-slimstat-reports.php:876
3554
  msgid "Human users who visited your site only once."
3555
  msgstr ""
3556
 
3557
+ #: ../../admin/view/wp-slimstat-reports.php:877
3558
  msgid "New visitors"
3559
  msgstr ""
3560
 
3561
+ #: ../../admin/view/wp-slimstat-reports.php:878
3562
  msgid "Bots"
3563
  msgstr ""
3564
 
3565
+ #: ../../admin/view/wp-slimstat-reports.php:879
3566
  msgid "Pages per visit"
3567
  msgstr ""
3568
 
3569
+ #: ../../admin/view/wp-slimstat-reports.php:880
 
3570
  msgid "Longest visit"
3571
  msgstr ""
3572
 
3573
+ #: ../../admin/view/wp-slimstat-reports.php:880
3574
  msgid "hits"
3575
  msgstr ""
3576
 
3577
+ #: ../../admin/view/wp-slimstat-reports.php:898
3578
  msgid "0 - 30 seconds"
3579
  msgstr ""
3580
 
3581
+ #: ../../admin/view/wp-slimstat-reports.php:904
3582
  msgid "31 - 60 seconds"
3583
  msgstr ""
3584
 
3585
+ #: ../../admin/view/wp-slimstat-reports.php:910
3586
  msgid "1 - 3 minutes"
3587
  msgstr ""
3588
 
3589
+ #: ../../admin/view/wp-slimstat-reports.php:916
3590
  msgid "3 - 5 minutes"
3591
  msgstr ""
3592
 
3593
+ #: ../../admin/view/wp-slimstat-reports.php:922
3594
  msgid "5 - 7 minutes"
3595
  msgstr ""
3596
 
3597
+ #: ../../admin/view/wp-slimstat-reports.php:928
3598
  msgid "7 - 10 minutes"
3599
  msgstr ""
3600
 
3601
+ #: ../../admin/view/wp-slimstat-reports.php:934
3602
  msgid "More than 10 minutes"
3603
  msgstr ""
3604
 
3605
+ #: ../../admin/view/wp-slimstat-reports.php:943
3606
  msgid "Average time on site"
3607
  msgstr ""
3608
 
3609
+ #: ../../admin/view/wp-slimstat-reports.php:953
3610
  msgid ""
3611
  "A referrer (or referring site) is the site that a visitor previously visited "
3612
  "before following a link to your site."
3613
  msgstr ""
3614
 
3615
+ #: ../../admin/view/wp-slimstat-reports.php:954
3616
  msgid "Unique Referrers"
3617
  msgstr ""
3618
 
3619
+ #: ../../admin/view/wp-slimstat-reports.php:955
3620
  msgid ""
3621
  "Visitors who visited the site by typing the URL directly into their browser. "
3622
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
3624
  "documents that don't include tracking variables."
3625
  msgstr ""
3626
 
3627
+ #: ../../admin/view/wp-slimstat-reports.php:956
3628
  msgid "Direct Pageviews"
3629
  msgstr ""
3630
 
3631
+ #: ../../admin/view/wp-slimstat-reports.php:957
3632
  msgid ""
3633
  "Visitors who came to your site via searches on Google or some other search "
3634
  "engine."
3635
  msgstr ""
3636
 
3637
+ #: ../../admin/view/wp-slimstat-reports.php:958
3638
  msgid "From a search result"
3639
  msgstr ""
3640
 
3641
+ #: ../../admin/view/wp-slimstat-reports.php:959
3642
  msgid ""
3643
  "The first page that a user views during a session. This is also known as the "
3644
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
3646
  "a landing page."
3647
  msgstr ""
3648
 
3649
+ #: ../../admin/view/wp-slimstat-reports.php:960
3650
  msgid "Unique Landing Pages"
3651
  msgstr ""
3652
 
3653
+ #: ../../admin/view/wp-slimstat-reports.php:961
3654
  msgid "Number of single-page visits to your site over the selected period."
3655
  msgstr ""
3656
 
3657
+ #: ../../admin/view/wp-slimstat-reports.php:962
3658
  msgid "Bounce Pages"
3659
  msgstr ""
3660
 
3661
+ #: ../../admin/view/wp-slimstat-reports.php:964
3662
  msgid "New Visitors Rate"
3663
  msgstr ""
3664
 
3665
+ #: ../../admin/view/wp-slimstat-reports.php:965
3666
  msgid ""
3667
  "Visitors who visited the site in the last 5 minutes coming from a search "
3668
  "engine."
3669
  msgstr ""
3670
 
3671
+ #: ../../admin/view/wp-slimstat-reports.php:966
3672
  msgid "Currently from search engines"
3673
  msgstr ""
3674
 
3675
+ #: ../../admin/view/wp-slimstat-reports.php:1034
3676
  msgid "Number of pages in your site included in Google's index."
3677
  msgstr ""
3678
 
3679
+ #: ../../admin/view/wp-slimstat-reports.php:1035
3680
  msgid "Google Index"
3681
  msgstr ""
3682
 
3683
+ #: ../../admin/view/wp-slimstat-reports.php:1036
3684
  msgid "Number of pages, according to Google, that link back to your site."
3685
  msgstr ""
3686
 
3687
+ #: ../../admin/view/wp-slimstat-reports.php:1037
3688
  msgid "Google Backlinks"
3689
  msgstr ""
3690
 
3691
+ #: ../../admin/view/wp-slimstat-reports.php:1038
3692
  msgid ""
3693
  "How many times the Facebook Like button has been approximately clicked on "
3694
  "your site."
3695
  msgstr ""
3696
 
3697
+ #: ../../admin/view/wp-slimstat-reports.php:1039
3698
  msgid "Facebook Likes"
3699
  msgstr ""
3700
 
3701
+ #: ../../admin/view/wp-slimstat-reports.php:1040
3702
  msgid ""
3703
  "How many times your site has been shared by someone on the social network."
3704
  msgstr ""
3705
 
3706
+ #: ../../admin/view/wp-slimstat-reports.php:1041
3707
  msgid "Facebook Shares"
3708
  msgstr ""
3709
 
3710
+ #: ../../admin/view/wp-slimstat-reports.php:1042
3711
  msgid "How many times links to your website have been clicked on Facebook."
3712
  msgstr ""
3713
 
3714
+ #: ../../admin/view/wp-slimstat-reports.php:1043
3715
  msgid "Facebook Clicks"
3716
  msgstr ""
3717
 
3718
+ #: ../../admin/view/wp-slimstat-reports.php:1044
3719
  msgid ""
3720
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3721
  "traffic data."
3722
  msgstr ""
3723
 
3724
+ #: ../../admin/view/wp-slimstat-reports.php:1045
3725
  msgid "Alexa World Rank"
3726
  msgstr ""
3727
 
3728
+ #: ../../admin/view/wp-slimstat-reports.php:1046
3729
  msgid "Alexa Country Rank"
3730
  msgstr ""
3731
 
3732
+ #: ../../admin/view/wp-slimstat-reports.php:1047
3733
  msgid "Alexa Popularity"
3734
  msgstr ""
3735
 
3736
  # Unknown
3737
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3738
  msgid "c-xx"
3739
  msgstr "Unknown"
3740
 
3741
  # Afghanistan
3742
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3743
  msgid "c-af"
3744
  msgstr "Afghanistan"
3745
 
3746
  # Åland Islands
3747
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3748
  msgid "c-ax"
3749
  msgstr "Aland Islands"
3750
 
3751
  # Albania
3752
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3753
  msgid "c-al"
3754
  msgstr "Albania"
3755
 
3756
  # Algeria
3757
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3758
  msgid "c-dz"
3759
  msgstr "Algeria"
3760
 
3761
  # Andorra
3762
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3763
  msgid "c-ad"
3764
  msgstr "Andorra"
3765
 
3766
  # Angola
3767
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3768
  msgid "c-ao"
3769
  msgstr "Angola"
3770
 
3771
  # Anguilla
3772
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3773
  msgid "c-ai"
3774
  msgstr "Anguilla"
3775
 
3776
  # Antigua and Barbuda
3777
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3778
  msgid "c-ag"
3779
  msgstr "Antigua and Barbuda"
3780
 
3781
  # Argentina
3782
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3783
  msgid "c-ar"
3784
  msgstr "Argentina"
3785
 
3786
  # Armenia
3787
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3788
  msgid "c-am"
3789
  msgstr "Armenia"
3790
 
3791
  # Aruba
3792
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3793
  msgid "c-aw"
3794
  msgstr "Aruba"
3795
 
3796
  # Australia
3797
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3798
  msgid "c-au"
3799
  msgstr "Australia"
3800
 
3801
  # Austria
3802
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3803
  msgid "c-at"
3804
  msgstr "Austria"
3805
 
3806
  # Azerbaijan
3807
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3808
  msgid "c-az"
3809
  msgstr "Azerbaijan"
3810
 
3811
  # Bahamas
3812
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3813
  msgid "c-bs"
3814
  msgstr "Bahamas"
3815
 
3816
  # Bahrain
3817
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3818
  msgid "c-bh"
3819
  msgstr "Bahrain"
3820
 
3821
  # Bangladesh
3822
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3823
  msgid "c-bd"
3824
  msgstr "Bangladesh"
3825
 
3826
  # Barbados
3827
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3828
  msgid "c-bb"
3829
  msgstr "Barbados"
3830
 
3831
  # Belarus
3832
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3833
  msgid "c-by"
3834
  msgstr "Belarus"
3835
 
3836
  # Belgium
3837
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3838
  msgid "c-be"
3839
  msgstr "Belgium"
3840
 
3841
  # Belize
3842
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3843
  msgid "c-bz"
3844
  msgstr "Belize"
3845
 
3846
  # Benin
3847
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3848
  msgid "c-bj"
3849
  msgstr "Benin"
3850
 
3851
  # Bermuda
3852
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3853
  msgid "c-bm"
3854
  msgstr "Bermuda"
3855
 
3856
  # Bhutan
3857
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3858
  msgid "c-bt"
3859
  msgstr "Bhutan"
3860
 
3861
  # Bolivia
3862
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3863
  msgid "c-bo"
3864
  msgstr "Bolivia"
3865
 
3866
  # Bosnia and Herzegovina
3867
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3868
  msgid "c-ba"
3869
  msgstr "Bosnia and Herzegovina"
3870
 
3871
  # Botswana
3872
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3873
  msgid "c-bw"
3874
  msgstr "Botswana"
3875
 
3876
  # Brazil
3877
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3878
  msgid "c-br"
3879
  msgstr "Brazil"
3880
 
3881
  # Brunei Darussalam
3882
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3883
  msgid "c-bn"
3884
  msgstr "Brunei Darussalam"
3885
 
3886
  # Bulgaria
3887
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3888
  msgid "c-bg"
3889
  msgstr "Bulgaria"
3890
 
3891
  # Burkina Faso
3892
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3893
  msgid "c-bf"
3894
  msgstr "Burkina Faso"
3895
 
3896
  # Burundi
3897
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3898
  msgid "c-bi"
3899
  msgstr "Burundi"
3900
 
3901
  # Cambodia
3902
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3903
  msgid "c-kh"
3904
  msgstr "Cambodia"
3905
 
3906
  # Cameroon
3907
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3908
  msgid "c-cm"
3909
  msgstr "Cameroon"
3910
 
3911
  # Canada
3912
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3913
  msgid "c-ca"
3914
  msgstr "Canada"
3915
 
3916
  # Cape Verde
3917
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3918
  msgid "c-cv"
3919
  msgstr "Cape Verde"
3920
 
3921
  # Cayman Islands
3922
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3923
  msgid "c-ky"
3924
  msgstr "Cayman Islands"
3925
 
3926
  # Central African Republic
3927
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3928
  msgid "c-cf"
3929
  msgstr "Central African Republic"
3930
 
3931
  # Chad
3932
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3933
  msgid "c-td"
3934
  msgstr "Chad"
3935
 
3936
  # Chile
3937
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3938
  msgid "c-cl"
3939
  msgstr "Chile"
3940
 
3941
  # China
3942
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3943
  msgid "c-cn"
3944
  msgstr "China"
3945
 
3946
  # Colombia
3947
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3948
  msgid "c-co"
3949
  msgstr "Colombia"
3950
 
3951
  # Comoros
3952
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3953
  msgid "c-km"
3954
  msgstr "Comoros"
3955
 
3956
  # Congo
3957
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3958
  msgid "c-cg"
3959
  msgstr "Congo"
3960
 
3961
  # The Democratic Republic of the Congo
3962
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3963
  msgid "c-cd"
3964
  msgstr "The Democratic Republic of the Congo"
3965
 
3966
  # Costa Rica
3967
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3968
  msgid "c-cr"
3969
  msgstr "Costa Rica"
3970
 
3971
  # Côte d'Ivoire
3972
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3973
  msgid "c-ci"
3974
  msgstr "Côte d'Ivoire"
3975
 
3976
  # Croatia
3977
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3978
  msgid "c-hr"
3979
  msgstr "Croatia"
3980
 
3981
  # Cuba
3982
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3983
  msgid "c-cu"
3984
  msgstr "Cuba"
3985
 
3986
  # Cyprus
3987
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3988
  msgid "c-cy"
3989
  msgstr "Cyprus"
3990
 
3991
  # Czech Republic
3992
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3993
  msgid "c-cz"
3994
  msgstr "Czech Republic"
3995
 
3996
  # Denmark
3997
+ #: ../../admin/view/wp-slimstat-reports.php:1054
3998
  msgid "c-dk"
3999
  msgstr "Denmark"
4000
 
4001
  # Djibouti
4002
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4003
  msgid "c-dj"
4004
  msgstr "Djibouti"
4005
 
4006
  # Dominica
4007
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4008
  msgid "c-dm"
4009
  msgstr "Dominica"
4010
 
4011
  # Dominican Republic
4012
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4013
  msgid "c-do"
4014
  msgstr "Dominican Republic"
4015
 
4016
  # Ecuador
4017
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4018
  msgid "c-ec"
4019
  msgstr "Ecuador"
4020
 
4021
  # Egypt
4022
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4023
  msgid "c-eg"
4024
  msgstr "Egypt"
4025
 
4026
  # El Salvador
4027
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4028
  msgid "c-sv"
4029
  msgstr "El Salvador"
4030
 
4031
  # Equatorial Guinea
4032
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4033
  msgid "c-gq"
4034
  msgstr "Equatorial Guinea"
4035
 
4036
  # Eritrea
4037
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4038
  msgid "c-er"
4039
  msgstr "Eritrea"
4040
 
4041
  # Estonia
4042
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4043
  msgid "c-ee"
4044
  msgstr "Estonia"
4045
 
4046
  # Ethiopia
4047
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4048
  msgid "c-et"
4049
  msgstr "Ethiopia"
4050
 
4051
  # Faroe Islands
4052
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4053
  msgid "c-fo"
4054
  msgstr "Faroe Islands"
4055
 
4056
  # Falkland Islands (Malvinas)
4057
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4058
  msgid "c-fk"
4059
  msgstr "Falkland Islands (Malvinas)"
4060
 
4061
  # Fiji
4062
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4063
  msgid "c-fj"
4064
  msgstr "Fiji"
4065
 
4066
  # Finland
4067
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4068
  msgid "c-fi"
4069
  msgstr "Finland"
4070
 
4071
  # France
4072
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4073
  msgid "c-fr"
4074
  msgstr "France"
4075
 
4076
  # French Guiana
4077
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4078
  msgid "c-gf"
4079
  msgstr "French Guiana"
4080
 
4081
  # Gabon
4082
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4083
  msgid "c-ga"
4084
  msgstr "Gabon"
4085
 
4086
  # Gambia
4087
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4088
  msgid "c-gm"
4089
  msgstr "Gambia"
4090
 
4091
  # Georgia
4092
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4093
  msgid "c-ge"
4094
  msgstr "Georgia"
4095
 
4096
  # Germany
4097
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4098
  msgid "c-de"
4099
  msgstr "Germany"
4100
 
4101
  # Ghana
4102
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4103
  msgid "c-gh"
4104
  msgstr "Ghana"
4105
 
4106
  # Greece
4107
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4108
  msgid "c-gr"
4109
  msgstr "Greece"
4110
 
4111
  # Greenland
4112
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4113
  msgid "c-gl"
4114
  msgstr "Greenland"
4115
 
4116
  # Grenada
4117
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4118
  msgid "c-gd"
4119
  msgstr "Grenada"
4120
 
4121
  # Guadeloupe
4122
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4123
  msgid "c-gp"
4124
  msgstr "Guadeloupe"
4125
 
4126
  # Guatemala
4127
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4128
  msgid "c-gt"
4129
  msgstr "Guatemala"
4130
 
4131
  # Guinea
4132
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4133
  msgid "c-gn"
4134
  msgstr "Guinea"
4135
 
4136
  # Guinea-Bissau
4137
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4138
  msgid "c-gw"
4139
  msgstr "Guinea-Bissau"
4140
 
4141
  # Guyana
4142
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4143
  msgid "c-gy"
4144
  msgstr "Guyana"
4145
 
4146
  # Haiti
4147
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4148
  msgid "c-ht"
4149
  msgstr "Haiti"
4150
 
4151
  # Honduras
4152
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4153
  msgid "c-hn"
4154
  msgstr "Honduras"
4155
 
4156
  # Hong Kong
4157
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4158
  msgid "c-hk"
4159
  msgstr "Hong Kong"
4160
 
4161
  # Hungary
4162
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4163
  msgid "c-hu"
4164
  msgstr "Hungary"
4165
 
4166
  # Iceland
4167
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4168
  msgid "c-is"
4169
  msgstr "Iceland"
4170
 
4171
  # India
4172
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4173
  msgid "c-in"
4174
  msgstr "India"
4175
 
4176
  # Indonesia
4177
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4178
  msgid "c-id"
4179
  msgstr "Indonesia"
4180
 
4181
  # Islamic Republic of Iran
4182
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4183
  msgid "c-ir"
4184
  msgstr "Islamic Republic of Iran"
4185
 
4186
  # Iraq
4187
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4188
  msgid "c-iq"
4189
  msgstr "Iraq"
4190
 
4191
  # Ireland
4192
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4193
  msgid "c-ie"
4194
  msgstr "Ireland"
4195
 
4196
  # Israel
4197
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4198
  msgid "c-il"
4199
  msgstr "Israel"
4200
 
4201
  # Italy
4202
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4203
  msgid "c-it"
4204
  msgstr "Italy"
4205
 
4206
  # Jamaica
4207
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4208
  msgid "c-jm"
4209
  msgstr "Jamaica"
4210
 
4211
  # Japan
4212
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4213
  msgid "c-jp"
4214
  msgstr "Japan"
4215
 
4216
  # Jordan
4217
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4218
  msgid "c-jo"
4219
  msgstr "Jordan"
4220
 
4221
  # Kazakhstan
4222
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4223
  msgid "c-kz"
4224
  msgstr "Kazakhstan"
4225
 
4226
  # Kenya
4227
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4228
  msgid "c-ke"
4229
  msgstr "Kenya"
4230
 
4231
  # Nauru
4232
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4233
  msgid "c-nr"
4234
  msgstr "Nauru"
4235
 
4236
  # Democratic People's Republic of Korea
4237
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4238
  msgid "c-kp"
4239
  msgstr "Democratic People's Republic of Korea"
4240
 
4241
  # Republic of Korea
4242
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4243
  msgid "c-kr"
4244
  msgstr "Republic of Korea"
4245
 
4246
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4247
  msgid "c-kv"
4248
  msgstr "Kosovo"
4249
 
4250
  # Kuwait
4251
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4252
  msgid "c-kw"
4253
  msgstr "Kuwait"
4254
 
4255
  # Kyrgyzstan
4256
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4257
  msgid "c-kg"
4258
  msgstr "Kyrgyzstan"
4259
 
4260
  # Lao People's Democratic Republic
4261
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4262
  msgid "c-la"
4263
  msgstr "Lao People's Democratic Republic"
4264
 
4265
  # Latvia
4266
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4267
  msgid "c-lv"
4268
  msgstr "Latvia"
4269
 
4270
  # Lebanon
4271
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4272
  msgid "c-lb"
4273
  msgstr "Lebanon"
4274
 
4275
  # Lesotho
4276
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4277
  msgid "c-ls"
4278
  msgstr "Lesotho"
4279
 
4280
  # Liberia
4281
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4282
  msgid "c-lr"
4283
  msgstr "Liberia"
4284
 
4285
  # Libyan Arab Jamahiriya
4286
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4287
  msgid "c-ly"
4288
  msgstr "Libyan Arab Jamahiriya"
4289
 
4290
  # Liechtenstein
4291
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4292
  msgid "c-li"
4293
  msgstr "Liechtenstein"
4294
 
4295
  # Lithuania
4296
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4297
  msgid "c-lt"
4298
  msgstr "Lithuania"
4299
 
4300
  # Luxembourg
4301
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4302
  msgid "c-lu"
4303
  msgstr "Luxembourg"
4304
 
4305
  # The Former Yugoslav Republic of Macedonia
4306
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4307
  msgid "c-mk"
4308
  msgstr "The Former Yugoslav Republic of Macedonia"
4309
 
4310
  # Madagascar
4311
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4312
  msgid "c-mg"
4313
  msgstr "Madagascar"
4314
 
4315
  # Malawi
4316
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4317
  msgid "c-mw"
4318
  msgstr "Malawi"
4319
 
4320
  # Malaysia
4321
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4322
  msgid "c-my"
4323
  msgstr "Malaysia"
4324
 
4325
  # Mali
4326
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4327
  msgid "c-ml"
4328
  msgstr "Mali"
4329
 
4330
  # Malta
4331
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4332
  msgid "c-mt"
4333
  msgstr "Malta"
4334
 
4335
  # Martinique
4336
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4337
  msgid "c-mq"
4338
  msgstr "Martinique"
4339
 
4340
  # Mauritania
4341
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4342
  msgid "c-mr"
4343
  msgstr "Mauritania"
4344
 
4345
  # Mauritius
4346
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4347
  msgid "c-mu"
4348
  msgstr "Mauritius"
4349
 
4350
  # Mexico
4351
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4352
  msgid "c-mx"
4353
  msgstr "Mexico"
4354
 
4355
  # Moldova
4356
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4357
  msgid "c-md"
4358
  msgstr "Moldova"
4359
 
4360
  # Mongolia
4361
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4362
  msgid "c-mn"
4363
  msgstr "Mongolia"
4364
 
4365
  # Montenegro
4366
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4367
  msgid "c-me"
4368
  msgstr "Montenegro"
4369
 
4370
  # Montserrat
4371
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4372
  msgid "c-ms"
4373
  msgstr "Montserrat"
4374
 
4375
  # Morocco
4376
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4377
  msgid "c-ma"
4378
  msgstr "Morocco"
4379
 
4380
  # Mozambique
4381
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4382
  msgid "c-mz"
4383
  msgstr "Mozambique"
4384
 
4385
  # Myanmar
4386
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4387
  msgid "c-mm"
4388
  msgstr "Myanmar"
4389
 
4390
  # Namibia
4391
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4392
  msgid "c-na"
4393
  msgstr "Namibia"
4394
 
4395
  # Nepal
4396
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4397
  msgid "c-np"
4398
  msgstr "Nepal"
4399
 
4400
  # Netherlands
4401
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4402
  msgid "c-nl"
4403
  msgstr "Netherlands"
4404
 
4405
  # New Caledonia
4406
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4407
  msgid "c-nc"
4408
  msgstr "New Caledonia"
4409
 
4410
  # New Zealand
4411
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4412
  msgid "c-nz"
4413
  msgstr "New Zealand"
4414
 
4415
  # Nicaragua
4416
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4417
  msgid "c-ni"
4418
  msgstr "Nicaragua"
4419
 
4420
  # Niger
4421
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4422
  msgid "c-ne"
4423
  msgstr "Niger"
4424
 
4425
  # Nigeria
4426
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4427
  msgid "c-ng"
4428
  msgstr "Nigeria"
4429
 
4430
  # Norway
4431
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4432
  msgid "c-no"
4433
  msgstr "Norway"
4434
 
4435
  # Oman
4436
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4437
  msgid "c-om"
4438
  msgstr "Oman"
4439
 
4440
  # Pakistan
4441
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4442
  msgid "c-pk"
4443
  msgstr "Pakistan"
4444
 
4445
  # Palau
4446
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4447
  msgid "c-pw"
4448
  msgstr "Palau"
4449
 
4450
  # Occupied Palestinian Territory
4451
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4452
  msgid "c-ps"
4453
  msgstr "Occupied Palestinian Territory"
4454
 
4455
  # Panama
4456
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4457
  msgid "c-pa"
4458
  msgstr "Panama"
4459
 
4460
  # Papua New Guinea
4461
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4462
  msgid "c-pg"
4463
  msgstr "Papua New Guinea"
4464
 
4465
  # Paraguay
4466
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4467
  msgid "c-py"
4468
  msgstr "Paraguay"
4469
 
4470
  # Peru
4471
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4472
  msgid "c-pe"
4473
  msgstr "Peru"
4474
 
4475
  # Philippines
4476
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4477
  msgid "c-ph"
4478
  msgstr "Philippines"
4479
 
4480
  # Poland
4481
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4482
  msgid "c-pl"
4483
  msgstr "Poland"
4484
 
4485
  # Portugal
4486
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4487
  msgid "c-pt"
4488
  msgstr "Portugal"
4489
 
4490
  # Puerto Rico
4491
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4492
  msgid "c-pr"
4493
  msgstr "Puerto Rico"
4494
 
4495
  # Qatar
4496
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4497
  msgid "c-qa"
4498
  msgstr "Qatar"
4499
 
4500
  # Réunion
4501
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4502
  msgid "c-re"
4503
  msgstr "Réunion"
4504
 
4505
  # Romania
4506
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4507
  msgid "c-ro"
4508
  msgstr "Romania"
4509
 
4510
  # Russian Federation
4511
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4512
  msgid "c-ru"
4513
  msgstr "Russian Federation"
4514
 
4515
  # Rwanda
4516
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4517
  msgid "c-rw"
4518
  msgstr "Rwanda"
4519
 
4520
  # Saint Kitts and Nevis
4521
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4522
  msgid "c-kn"
4523
  msgstr "Saint Kitts and Nevis"
4524
 
4525
  # Saint Lucia
4526
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4527
  msgid "c-lc"
4528
  msgstr "Saint Lucia"
4529
 
4530
  # Saint Martin
4531
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4532
  msgid "c-mf"
4533
  msgstr "Saint Martin"
4534
 
4535
  # Saint Vincent and the Grenadines
4536
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4537
  msgid "c-vc"
4538
  msgstr "Saint Vincent and the Grenadines"
4539
 
4540
  # Samoa
4541
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4542
  msgid "c-ws"
4543
  msgstr "Samoa"
4544
 
4545
  # Sao Tome and Principe
4546
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4547
  msgid "c-st"
4548
  msgstr "Sao Tome and Principe"
4549
 
4550
  # Saudi Arabia
4551
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4552
  msgid "c-sa"
4553
  msgstr "Saudi Arabia"
4554
 
4555
  # Senegal
4556
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4557
  msgid "c-sn"
4558
  msgstr "Senegal"
4559
 
4560
  # Serbia
4561
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4562
  msgid "c-rs"
4563
  msgstr "Serbia"
4564
 
4565
  # Sierra Leone
4566
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4567
  msgid "c-sl"
4568
  msgstr "Sierra Leone"
4569
 
4570
  # Singapore
4571
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4572
  msgid "c-sg"
4573
  msgstr "Singapore"
4574
 
4575
  # Slovakia
4576
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4577
  msgid "c-sk"
4578
  msgstr "Slovakia"
4579
 
4580
  # Slovenia
4581
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4582
  msgid "c-si"
4583
  msgstr "Slovenia"
4584
 
4585
  # Solomon Islands
4586
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4587
  msgid "c-sb"
4588
  msgstr "Solomon Islands"
4589
 
4590
  # Somalia
4591
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4592
  msgid "c-so"
4593
  msgstr "Somalia"
4594
 
4595
  # South Africa
4596
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4597
  msgid "c-za"
4598
  msgstr "South Africa"
4599
 
4600
  # South Georgia and the South Sandwich Islands
4601
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4602
  msgid "c-gs"
4603
  msgstr "South Georgia and the South Sandwich Islands"
4604
 
4605
  # Spain
4606
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4607
  msgid "c-es"
4608
  msgstr "Spain"
4609
 
4610
  # Sri Lanka
4611
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4612
  msgid "c-lk"
4613
  msgstr "Sri Lanka"
4614
 
4615
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4616
  msgid "c-sc"
4617
  msgstr "Seychelles"
4618
 
4619
  # Sudan
4620
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4621
  msgid "c-sd"
4622
  msgstr "Sudan"
4623
 
4624
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4625
  msgid "c-ss"
4626
  msgstr "South Sudan"
4627
 
4628
  # Suriname
4629
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4630
  msgid "c-sr"
4631
  msgstr "Suriname"
4632
 
4633
  # Svalbard and Jan Mayen
4634
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4635
  msgid "c-sj"
4636
  msgstr "Svalbard and Jan Mayen"
4637
 
4638
  # Swaziland
4639
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4640
  msgid "c-sz"
4641
  msgstr "Swaziland"
4642
 
4643
  # Sweden
4644
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4645
  msgid "c-se"
4646
  msgstr "Sweden"
4647
 
4648
  # Switzerland
4649
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4650
  msgid "c-ch"
4651
  msgstr "Switzerland"
4652
 
4653
  # Syrian Arab Republic
4654
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4655
  msgid "c-sy"
4656
  msgstr "Syrian Arab Republic"
4657
 
4658
  # Taiwan, Province of China
4659
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4660
  msgid "c-tw"
4661
  msgstr "Taiwan"
4662
 
4663
  # Tajikistan
4664
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4665
  msgid "c-tj"
4666
  msgstr "Tajikistan"
4667
 
4668
  # United Republic of Tanzania
4669
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4670
  msgid "c-tz"
4671
  msgstr "United Republic of Tanzania"
4672
 
4673
  # Thailand
4674
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4675
  msgid "c-th"
4676
  msgstr "Thailand"
4677
 
4678
  # Timor-Leste
4679
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4680
  msgid "c-tl"
4681
  msgstr "Timor-Leste"
4682
 
4683
  # Togo
4684
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4685
  msgid "c-tg"
4686
  msgstr "Togo"
4687
 
4688
  # Tonga
4689
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4690
  msgid "c-to"
4691
  msgstr "Tonga"
4692
 
4693
  # Trinidad and Tobago
4694
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4695
  msgid "c-tt"
4696
  msgstr "Trinidad and Tobago"
4697
 
4698
  # Tunisia
4699
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4700
  msgid "c-tn"
4701
  msgstr "Tunisia"
4702
 
4703
  # Turkey
4704
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4705
  msgid "c-tr"
4706
  msgstr "Turkey"
4707
 
4708
  # Turkmenistan
4709
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4710
  msgid "c-tm"
4711
  msgstr "Turkmenistan"
4712
 
4713
  # Turks and Caicos Islands
4714
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4715
  msgid "c-tc"
4716
  msgstr "Turks and Caicos Islands"
4717
 
4718
  # Uganda
4719
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4720
  msgid "c-ug"
4721
  msgstr "Uganda"
4722
 
4723
  # Ukraine
4724
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4725
  msgid "c-ua"
4726
  msgstr "Ukraine"
4727
 
4728
  # United Arab Emirates
4729
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4730
  msgid "c-ae"
4731
  msgstr "United Arab Emirates"
4732
 
4733
  # United Kingdom
4734
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4735
  msgid "c-gb"
4736
  msgstr "United Kingdom"
4737
 
4738
  # United States
4739
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4740
  msgid "c-us"
4741
  msgstr "United States"
4742
 
4743
  # Uruguay
4744
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4745
  msgid "c-uy"
4746
  msgstr "Uruguay"
4747
 
4748
  # Uzbekistan
4749
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4750
  msgid "c-uz"
4751
  msgstr "Uzbekistan"
4752
 
4753
  # Vanuatu
4754
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4755
  msgid "c-vu"
4756
  msgstr "Vanuatu"
4757
 
4758
  # Venezuela
4759
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4760
  msgid "c-ve"
4761
  msgstr "Venezuela"
4762
 
4763
  # Viet Nam
4764
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4765
  msgid "c-vn"
4766
  msgstr "Viet Nam"
4767
 
4768
  # British Virgin Islands
4769
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4770
  msgid "c-vg"
4771
  msgstr "British Virgin Islands"
4772
 
4773
  # U.S. Virgin Islands
4774
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4775
  msgid "c-vi"
4776
  msgstr "U.S. Virgin Islands"
4777
 
4778
  # Western Sahara
4779
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4780
  msgid "c-eh"
4781
  msgstr "Western Sahara"
4782
 
4783
  # Yemen
4784
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4785
  msgid "c-ye"
4786
  msgstr "Yemen"
4787
 
4788
  # Zambia
4789
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4790
  msgid "c-zm"
4791
  msgstr "Zambia"
4792
 
4793
  # Zimbabwe
4794
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4795
  msgid "c-zw"
4796
  msgstr "Zimbabwe"
4797
 
4798
  # Guernsey
4799
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4800
  msgid "c-gg"
4801
  msgstr "Guernsey"
4802
 
4803
  # Jersey
4804
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4805
  msgid "c-je"
4806
  msgstr "Jersey"
4807
 
4808
  # Isle of Man
4809
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4810
  msgid "c-im"
4811
  msgstr "Isle of Man"
4812
 
4813
  # Maldives
4814
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4815
  msgid "c-mv"
4816
  msgstr "Maldives"
4817
 
4818
+ #: ../../admin/view/wp-slimstat-reports.php:1055
4819
  msgid "c-eu"
4820
  msgstr ""
4821
 
4822
+ #: ../../admin/view/wp-slimstat-reports.php:1144
4823
  msgid ""
4824
  "This value includes not only posts, but also custom post types, regardless "
4825
  "of their status"
4826
  msgstr ""
4827
 
4828
+ #: ../../admin/view/wp-slimstat-reports.php:1145
4829
  msgid "Content Items"
4830
  msgstr ""
4831
 
4832
+ #: ../../admin/view/wp-slimstat-reports.php:1146
4833
  msgid "Total Comments"
4834
  msgstr ""
4835
 
4836
+ #: ../../admin/view/wp-slimstat-reports.php:1147
4837
  msgid "Pingbacks"
4838
  msgstr ""
4839
 
4840
+ #: ../../admin/view/wp-slimstat-reports.php:1148
4841
  msgid "Trackbacks"
4842
  msgstr ""
4843
 
4844
+ #: ../../admin/view/wp-slimstat-reports.php:1149
4845
  msgid "Avg Comments Per Post"
4846
  msgstr ""
4847
 
4848
+ #: ../../admin/view/wp-slimstat-reports.php:1150
4849
  msgid "Avg Posts Per Day"
4850
  msgstr ""
4851
 
4852
+ #: ../../admin/view/wp-slimstat-reports.php:1151
4853
  msgid "Avg Server Latency"
4854
  msgstr ""
4855
 
4856
+ #: ../../admin/view/wp-slimstat-reports.php:1152
4857
  msgid "Avg Page Load Time"
4858
  msgstr ""
4859
 
4860
+ #: ../../admin/view/wp-slimstat-reports.php:1183
 
 
 
 
4861
  msgid "Domains"
4862
  msgstr ""
4863
 
4864
+ #: ../../admin/wp-slimstat-admin.php:584 ../../admin/wp-slimstat-admin.php:595
4865
+ #: ../../admin/wp-slimstat-admin.php:597
 
 
 
 
4866
  msgid "SlimStat"
4867
  msgstr ""
4868
 
4869
+ #: ../../admin/wp-slimstat-admin.php:679
4870
+ msgid "Pageviews in the last "
4871
  msgstr ""
4872
 
4873
+ #: ../../admin/wp-slimstat-admin.php:682
4874
+ msgid "Unique IPs in the last "
4875
  msgstr ""
4876
 
4877
+ #: ../../admin/wp-slimstat-admin.php:721
4878
+ msgid "Show on screen"
4879
  msgstr ""
4880
 
4881
+ #: ../../admin/wp-slimstat-admin.php:799
4882
  msgid "Already saved"
4883
  msgstr ""
4884
 
4885
+ #: ../../admin/wp-slimstat-admin.php:807
4886
  msgid "Saved"
4887
  msgstr ""
4888
 
4889
+ #: ../../admin/wp-slimstat-admin.php:826
4890
  msgid "Delete this filter"
4891
  msgstr ""
4892
 
4893
+ #: ../../admin/wp-slimstat-admin.php:870
4894
  msgid "There was an error updating the following options:"
4895
  msgstr ""
4896
 
4897
+ #: ../../admin/wp-slimstat-admin.php:873
4898
  msgid "Your changes have been saved."
4899
  msgstr ""
4900
 
4901
+ #: ../../admin/wp-slimstat-admin.php:896
4902
  msgid "Save Changes"
4903
  msgstr ""
4904
 
4905
+ #: ../../admin/wp-slimstat-admin.php:912
4906
  msgid "Definitions"
4907
  msgstr ""
4908
 
4909
+ #: ../../admin/wp-slimstat-admin.php:915
4910
  msgid "Pageview"
4911
  msgstr ""
4912
 
4913
+ #: ../../admin/wp-slimstat-admin.php:915
4914
  msgid ""
4915
  "A request to load a single HTML file (\"page\"). This should be contrasted "
4916
  "with a \"hit\", which refers to a request for any file from a web server. "
4917
  "Slimstat logs a pageview each time the tracking code is executed"
4918
  msgstr ""
4919
 
4920
+ #: ../../admin/wp-slimstat-admin.php:916
4921
  msgid "(Human) Visit"
4922
  msgstr ""
4923
 
4924
+ #: ../../admin/wp-slimstat-admin.php:916
4925
  msgid ""
4926
  "A period of interaction between a visitor's browser and your website, ending "
4927
  "when the browser is closed or when the user has been inactive on that site "
4928
  "for 30 minutes"
4929
  msgstr ""
4930
 
4931
+ #: ../../admin/wp-slimstat-admin.php:917
4932
  msgid ""
4933
  "Any user who has left a comment on your blog, and is thus identified by "
4934
  "Wordpress as a returning visitor"
4935
  msgstr ""
4936
 
4937
+ #: ../../admin/wp-slimstat-admin.php:918
4938
  msgid "Unique IP"
4939
  msgstr ""
4940
 
4941
+ #: ../../admin/wp-slimstat-admin.php:918
4942
  msgid ""
4943
  "Used to differentiate between multiple requests to download a file from one "
4944
  "internet address (IP) and requests originating from many distinct addresses; "
4946
  "from, it is useful, but not perfect"
4947
  msgstr ""
4948
 
4949
+ #: ../../admin/wp-slimstat-admin.php:919
4950
  msgid ""
4951
  "the originating IP address of a client connecting to a web server through an "
4952
  "HTTP proxy or load balancer"
4953
  msgstr ""
4954
 
4955
+ #: ../../admin/wp-slimstat-admin.php:920
4956
  msgid "Direct Traffic"
4957
  msgstr ""
4958
 
4959
+ #: ../../admin/wp-slimstat-admin.php:920
4960
  msgid ""
4961
  "All those people showing up to your Web site by typing in the URL of your "
4962
  "Web site coming or from a bookmark; some people also call this \"default "
4963
  "traffic\" or \"ambient traffic\""
4964
  msgstr ""
4965
 
4966
+ #: ../../admin/wp-slimstat-admin.php:921
4967
  msgid "Search Engine"
4968
  msgstr ""
4969
 
4970
+ #: ../../admin/wp-slimstat-admin.php:921
4971
  msgid ""
4972
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
4973
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
4974
  msgstr ""
4975
 
4976
+ #: ../../admin/wp-slimstat-admin.php:922 ../../admin/wp-slimstat-admin.php:938
4977
  msgid "Keywords used by your visitors to find your website on a search engine"
4978
  msgstr ""
4979
 
4980
+ #: ../../admin/wp-slimstat-admin.php:923
4981
  msgid "SERP"
4982
  msgstr ""
4983
 
4984
+ #: ../../admin/wp-slimstat-admin.php:923
4985
  msgid ""
4986
  "Short for search engine results page, the Web page that a search engine "
4987
  "returns with the results of its search. The value shown represents your rank "
4988
  "(or position) within that list of results"
4989
  msgstr ""
4990
 
4991
+ #: ../../admin/wp-slimstat-admin.php:924
4992
  msgid ""
4993
  "Any program used for accessing a website; this includes browsers, robots, "
4994
  "spiders and any other program that was used to retrieve information from the "
4995
  "site"
4996
  msgstr ""
4997
 
4998
+ #: ../../admin/wp-slimstat-admin.php:925
4999
  msgid ""
5000
  "A link from one domain to another is said to be outbound from its source "
5001
  "anchor and inbound to its target. This report lists all the links to other "
5002
  "websites followed by your visitors."
5003
  msgstr ""
5004
 
5005
+ #: ../../admin/wp-slimstat-admin.php:932
5006
  msgid "Basic Filters"
5007
  msgstr ""
5008
 
5009
+ #: ../../admin/wp-slimstat-admin.php:935
5010
  msgid "User agent (Firefox, Chrome, ...)"
5011
  msgstr ""
5012
 
5013
+ #: ../../admin/wp-slimstat-admin.php:936
5014
  msgid "2-letter code (us, ru, de, it, ...)"
5015
  msgstr ""
5016
 
5017
+ #: ../../admin/wp-slimstat-admin.php:937
5018
  msgid "IP"
5019
  msgstr ""
5020
 
5021
+ #: ../../admin/wp-slimstat-admin.php:937
5022
  msgid "Visitor's public IP address"
5023
  msgstr ""
5024
 
5025
+ #: ../../admin/wp-slimstat-admin.php:939
5026
  msgid ""
5027
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
5028
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
5029
  "column) for more information"
5030
  msgstr ""
5031
 
5032
+ #: ../../admin/wp-slimstat-admin.php:940
5033
  msgid ""
5034
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
5035
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
5036
  "manual page</a> for more information"
5037
  msgstr ""
5038
 
5039
+ #: ../../admin/wp-slimstat-admin.php:941
5040
  msgid "URL accessed on your site"
5041
  msgstr ""
5042
 
5043
+ #: ../../admin/wp-slimstat-admin.php:942
5044
  msgid "Complete address of the referrer page"
5045
  msgstr ""
5046
 
5047
+ #: ../../admin/wp-slimstat-admin.php:943
5048
  msgid ""
5049
  "Visitors' names according to the cookie set by Wordpress after they leave a "
5050
  "comment"
5051
  msgstr ""
5052
 
5053
+ #: ../../admin/wp-slimstat-admin.php:951
5054
  msgid "Advanced Filters"
5055
  msgstr ""
5056
 
5057
+ #: ../../admin/wp-slimstat-admin.php:954
5058
  msgid "user agent version (9.0, 11, ...)"
5059
  msgstr ""
5060
 
5061
+ #: ../../admin/wp-slimstat-admin.php:955
5062
  msgid ""
5063
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
5064
  "all others"
5065
  msgstr ""
5066
 
5067
+ #: ../../admin/wp-slimstat-admin.php:956
5068
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
5069
  msgstr ""
5070
 
5071
+ #: ../../admin/wp-slimstat-admin.php:957
5072
  msgid ""
5073
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
5074
  "values)"
5075
  msgstr ""
5076
 
5077
+ #: ../../admin/wp-slimstat-admin.php:958
5078
  msgid ""
5079
  "this field is set to <em>[pre]</em> if the resource has been accessed "
5080
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
5081
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
5082
  msgstr ""
5083
 
5084
+ #: ../../admin/wp-slimstat-admin.php:959
5085
  msgid "author associated to that post/page when the resource was accessed"
5086
  msgstr ""
5087
 
5088
+ #: ../../admin/wp-slimstat-admin.php:960
5089
  msgid "ID of the category/term associated to the resource, when available"
5090
  msgstr ""
5091
 
5092
+ #: ../../admin/wp-slimstat-admin.php:961
5093
  msgid "visitor's originating IP address, if available"
5094
  msgstr ""
5095
 
5096
+ #: ../../admin/wp-slimstat-admin.php:962
5097
  msgid ""
5098
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
5099
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
5102
  "information"
5103
  msgstr ""
5104
 
5105
+ #: ../../admin/wp-slimstat-admin.php:963
5106
  msgid "viewport width and height (1024x768, 800x600, ...)"
5107
  msgstr ""
5108
 
5109
+ #: ../../admin/wp-slimstat-admin.php:964
5110
  msgid ""
5111
  "generally used in conjunction with <em>is not empty</em>, identifies human "
5112
  "visitors"
5113
  msgstr ""
5114
 
5115
+ #: ../../admin/wp-slimstat-admin.php:965
5116
  msgid "Date Filters"
5117
  msgstr ""
5118
 
5119
+ #: ../../admin/wp-slimstat-admin.php:965
5120
  msgid ""
5121
  "you can specify the timeframe by entering a number in the <em>interval</em> "
5122
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
5123
  "year=blank, interval=-1 will set a year-to-date filter)"
5124
  msgstr ""
5125
 
5126
+ #: ../../admin/wp-slimstat-admin.php:966
5127
  msgid "SERP Position"
5128
  msgstr ""
5129
 
5130
+ #: ../../admin/wp-slimstat-admin.php:966
5131
  msgid ""
5132
  "set the filter to Referer contains cd=N&, where N is the position you are "
5133
  "looking for"
5134
  msgstr ""
5135
 
5136
+ #: ../../admin/wp-slimstat-admin.php:993
5137
  msgid "Yes"
5138
  msgstr ""
5139
 
5140
+ #: ../../admin/wp-slimstat-admin.php:995
5141
  msgid "Site Specific"
5142
  msgstr ""
5143
+
5144
+ #: ../../wp-slimstat.php:102
5145
+ msgid "Event must be associated to existing pageview"
5146
+ msgstr ""
5147
+
5148
+ #: ../../wp-slimstat.php:187 ../../wp-slimstat.php:422
5149
+ msgid "Pageview filtered by third-party code"
5150
+ msgstr ""
5151
+
5152
+ #: ../../wp-slimstat.php:204
5153
+ msgid "Malformed URL"
5154
+ msgstr ""
5155
+
5156
+ #: ../../wp-slimstat.php:220
5157
+ msgid "Referrer is blacklisted"
5158
+ msgstr ""
5159
+
5160
+ #: ../../wp-slimstat.php:276
5161
+ msgid "Permalink is blacklisted"
5162
+ msgstr ""
5163
+
5164
+ #: ../../wp-slimstat.php:286
5165
+ msgid "Empty IP Address"
5166
+ msgstr ""
5167
+
5168
+ #: ../../wp-slimstat.php:295
5169
+ msgid "Logged in user not tracked"
5170
+ msgstr ""
5171
+
5172
+ #: ../../wp-slimstat.php:303
5173
+ msgid "User with given capability not tracked"
5174
+ msgstr ""
5175
+
5176
+ #: ../../wp-slimstat.php:310
5177
+ msgid "User is blacklisted"
5178
+ msgstr ""
5179
+
5180
+ #: ../../wp-slimstat.php:324
5181
+ msgid "Spammer not tracked"
5182
+ msgstr ""
5183
+
5184
+ #: ../../wp-slimstat.php:355
5185
+ msgid "IP Address is blacklisted"
5186
+ msgstr ""
5187
+
5188
+ #: ../../wp-slimstat.php:373
5189
+ msgid "Country is blacklisted"
5190
+ msgstr ""
5191
+
5192
+ #: ../../wp-slimstat.php:382
5193
+ msgid "Prefetch requests are ignored"
5194
+ msgstr ""
5195
+
5196
+ #: ../../wp-slimstat.php:396
5197
+ msgid "Bot not tracked"
5198
+ msgstr ""
5199
+
5200
+ #: ../../wp-slimstat.php:405
5201
+ msgid "Browser is blacklisted"
5202
+ msgstr ""
5203
+
5204
+ #: ../../wp-slimstat.php:438
5205
+ msgid "Database not ready"
5206
+ msgstr ""
5207
+
5208
+ #: ../../wp-slimstat.php:1046
5209
+ msgid "Missing payload string"
5210
+ msgstr ""
5211
+
5212
+ #: ../../wp-slimstat.php:1056
5213
+ msgid "Invalid data signature (ci)"
5214
+ msgstr ""
5215
+
5216
+ #: ../../wp-slimstat.php:1066
5217
+ msgid "Invalid data signature (id)"
5218
+ msgstr ""
5219
+
5220
+ #: ../../wp-slimstat.php:1157
5221
+ msgid "There was an error downloading the MaxMind Geolite DB:"
5222
+ msgstr ""
5223
+
5224
+ #: ../../wp-slimstat.php:1161
5225
+ msgid "There was an error opening the zipped MaxMind Geolite DB"
5226
+ msgstr ""
5227
+
5228
+ #: ../../wp-slimstat.php:1165
5229
+ msgid "There was an error opening the unzipped MaxMind Geolite DB"
5230
+ msgstr ""
admin/lang/wp-slimstat-es_ES.mo CHANGED
Binary file
admin/lang/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: 2014-12-12 10:24-0500\n"
6
- "PO-Revision-Date: 2014-12-12 10:24-0500\n"
7
  "Last-Translator: Get Used To IT <support@getused.to.it>\n"
8
  "Language-Team: \n"
9
  "Language: es_ES\n"
@@ -16,7 +16,7 @@ msgstr ""
16
  "X-Generator: Poedit 1.6.9\n"
17
  "X-Poedit-SearchPath-0: ../..\n"
18
 
19
- #: ../../admin/config/addons.php:14
20
  msgid ""
21
  "There was an error retrieving the add-ons list from the server. Please try "
22
  "again later. Error Message:"
@@ -24,7 +24,7 @@ msgstr ""
24
  "Hubo un error al recuperar la lista de complementos desde el servidor. Por "
25
  "favor, inténtelo de nuevo más tarde. Mensaje de error:"
26
 
27
- #: ../../admin/config/addons.php:23
28
  msgid ""
29
  "There was an error decoding the add-ons list from the server. Please try "
30
  "again later."
@@ -32,13 +32,13 @@ msgstr ""
32
  "Se produjo un error decodificando la lista de complementos desde el "
33
  "servidor. Por favor, inténtelo de nuevo más tarde."
34
 
35
- #: ../../admin/config/addons.php:29 ../../admin/config/index.php:9
36
- #: ../../admin/wp-slimstat-admin.php:512 ../../admin/wp-slimstat-admin.php:529
37
- #: ../../wp-slimstat.php:1351
38
  msgid "Add-ons"
39
  msgstr "Añadidos"
40
 
41
- #: ../../admin/config/addons.php:30
42
  #, fuzzy
43
  msgid ""
44
  "Add-ons extend the functionality of Slimstat in many interesting ways. We "
@@ -57,10 +57,17 @@ msgstr ""
57
  "recibió cuando compró."
58
 
59
  #: ../../admin/config/addons.php:36
 
 
 
 
 
 
 
60
  msgid "Add-on"
61
  msgstr "Añadido"
62
 
63
- #: ../../admin/config/addons.php:36
64
  msgid "Description"
65
  msgstr "Descripción"
66
 
@@ -68,35 +75,37 @@ msgstr "Descripción"
68
  msgid "General"
69
  msgstr "General"
70
 
71
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:45
72
- msgid "Views"
73
- msgstr "Vistas"
 
 
74
 
75
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:69
76
  msgid "Filters"
77
  msgstr "Filtros"
78
 
79
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:140
80
  #, fuzzy
81
  msgid "Permissions"
82
  msgstr "Enlace Permanente"
83
 
84
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:217
85
  msgid "Advanced"
86
  msgstr "Avanzados"
87
 
88
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:249
89
  msgid "Maintenance"
90
  msgstr "Mantenimiento"
91
 
92
- #: ../../admin/config/index.php:14 ../../admin/config/index.php:147
93
- #: ../../admin/wp-slimstat-admin.php:558 ../../admin/wp-slimstat-admin.php:561
94
- #: ../../wp-slimstat.php:1354
95
  #, fuzzy
96
  msgid "Settings"
97
  msgstr "Seleccionar orden"
98
 
99
- #: ../../admin/config/index.php:20 ../../admin/config/index.php:223
100
  msgid "Tracker"
101
  msgstr "Rastreador"
102
 
@@ -199,33 +208,59 @@ msgstr "Añadir columna a Publicaciones"
199
  #, fuzzy
200
  msgid ""
201
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
202
- "per post."
203
  msgstr ""
204
  "Añadir una nueva columna a la pantalla Editar publicaciones, con el número "
205
  "de visitas por publicación (pueden ralentizar la renderización de páginas)."
206
 
207
- #: ../../admin/config/index.php:30
208
- msgid "Database"
209
- msgstr "Base de datos"
 
210
 
211
- #: ../../admin/config/index.php:31
 
 
 
 
 
 
212
  #, fuzzy
213
- msgid "Delete records"
214
- msgstr "Palabras clave"
215
 
216
- #: ../../admin/config/index.php:31
217
  msgid ""
218
- "If database space is not an issue, you can decide to archive older records "
219
- "in another table, instead of deleting them. This way performance is "
220
- "preserved, but you will still be able to access your data at a later time, "
221
- "if needed."
222
  msgstr ""
223
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
224
  #: ../../admin/config/index.php:32
 
 
 
 
225
  msgid "Retain data for"
226
  msgstr "Conservar los datos durante"
227
 
228
- #: ../../admin/config/index.php:32
229
  #, fuzzy
230
  msgid ""
231
  "Clean-up log entries older than the number of days specified here above. "
@@ -236,119 +271,113 @@ msgstr ""
236
  "aquí arriba. Introduzca <strong> 0 </strong> (número cero) si desea "
237
  "conservar sus datos independientemente de su edad."
238
 
239
- #: ../../admin/config/index.php:32
240
  msgid "Next clean-up on"
241
  msgstr "Siguiente limpieza en"
242
 
243
- #: ../../admin/config/index.php:32
244
- #, php-format
245
- msgid "Entries logged on or before %s will be permanently deleted."
 
 
246
  msgstr ""
247
  "Los comentarios registrados en o antes del %s se eliminarán de forma "
248
  "permanente."
249
 
250
- #: ../../admin/config/index.php:32 ../../admin/view/index.php:100
251
- #: ../../admin/view/wp-slimstat-db.php:74
252
- #: ../../admin/view/wp-slimstat-reports.php:800
 
253
  msgid "days"
254
  msgstr "dias"
255
 
256
- #: ../../admin/config/index.php:47
257
  #, fuzzy
258
- msgid "Data and Formats"
259
- msgstr "Fecha y hora"
260
-
261
- #: ../../admin/config/index.php:48
262
- msgid "Convert IP Addresses"
263
- msgstr "Convertir Direcciones IP"
264
 
265
- #: ../../admin/config/index.php:48
266
- msgid "Display provider names instead of IP addresses."
267
- msgstr "Muestra los nombres de proveedores, en lugar de direcciones IP."
 
 
 
 
 
 
268
 
269
  #: ../../admin/config/index.php:49
 
 
 
 
270
  msgid "Number Format"
271
  msgstr "Formato de número"
272
 
273
- #: ../../admin/config/index.php:49
274
  #, fuzzy
275
  msgid "Choose the number format you want to use for your reports."
276
  msgstr ""
277
  "Seleccione el formato de número que desea utilizar para sus informes, "
278
  "europeos o americanos."
279
 
280
- #: ../../admin/config/index.php:50
281
- #, fuzzy
282
- msgid "Enable SOV"
283
- msgstr "Habilitar CDN"
284
-
285
- #: ../../admin/config/index.php:50
286
- msgid ""
287
- "In linguistic typology, a subject-object-verb (SOV) language is one in which "
288
- "the subject, object, and verb of a sentence appear in that order, like in "
289
- "Japanese."
290
- msgstr ""
291
-
292
  #: ../../admin/config/index.php:51
293
- msgid "Show Display Name"
294
- msgstr "Mostrar Nombre para mostrar"
 
295
 
296
  #: ../../admin/config/index.php:51
297
  msgid ""
298
- "By default, users are listed by their usernames. Use this option to "
299
- "visualize their display names instead."
300
  msgstr ""
301
- "De forma predeterminada, los usuarios se enumeran por sus nombres de "
302
- "usuario. Utilice esta opción para visualizar los nombres para mostrar en su "
303
- "lugar."
304
 
305
  #: ../../admin/config/index.php:52
306
  #, fuzzy
307
- msgid "Show User Agent"
308
- msgstr "Buscadores"
309
 
310
  #: ../../admin/config/index.php:52
311
  msgid ""
312
- "Choose if you want to see the browser name or a complete user agent string "
313
- "when hovering on browser icons."
314
  msgstr ""
315
- "Seleccione si desea ver el nombre del navegador o una cadena completa de "
316
- "agente de usuario al pasar el cursor sobre los iconos del navegador."
317
 
318
  #: ../../admin/config/index.php:53
319
- msgid "Show Titles"
320
- msgstr "Mostrar Títulos"
 
321
 
322
  #: ../../admin/config/index.php:53
323
- #, fuzzy
324
  msgid ""
325
- "Slimstat converts your permalinks into post and page titles. Disable this "
326
- "feature if you need to see the URL in your reports."
327
  msgstr ""
328
- "WP SLIMStat convierte tus enlaces permanentes en títulos de publicaciones y "
329
- "páginas. Desactive esta función si necesita ver la URL en sus informes."
 
330
 
331
  #: ../../admin/config/index.php:54
332
  #, fuzzy
333
- msgid "Date Format"
334
- msgstr "Fecha y hora"
335
 
336
  #: ../../admin/config/index.php:54
 
337
  msgid ""
338
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
339
- "Format</a> to use when displaying a pageview's date."
340
  msgstr ""
 
 
341
 
342
  #: ../../admin/config/index.php:55
343
- #, fuzzy
344
- msgid "Time Format"
345
- msgstr "Formato de número"
346
 
347
  #: ../../admin/config/index.php:55
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 time."
351
- msgstr ""
352
 
353
  #: ../../admin/config/index.php:57
354
  msgid "Functionality"
@@ -412,7 +441,7 @@ msgstr ""
412
  "segundos. Introduzca <strong> 0 </strong> (número cero) para deshabilitar "
413
  "esta funcionalidad."
414
 
415
- #: ../../admin/config/index.php:64 ../../admin/config/index.php:225
416
  msgid "seconds"
417
  msgstr "Segundos"
418
 
@@ -421,39 +450,55 @@ msgstr "Segundos"
421
  msgid "Specify the number of items in the Activity Log."
422
  msgstr "Especifica el número de elementos en Ahora."
423
 
424
- #: ../../admin/config/index.php:66
 
 
 
 
 
425
  #, fuzzy
426
- msgid "Activity Log Extended"
427
- msgstr "Bitácora de actividades"
 
 
 
 
 
 
 
 
428
 
429
- #: ../../admin/config/index.php:66
430
  #, fuzzy
 
 
 
 
431
  msgid ""
432
- "Choose if you want to see outbound links listed in the Activity Log. It "
433
- "might slow down the rendering of this report."
 
434
  msgstr ""
435
- "Elige si quieres ver los enlaces salientes que figuran en Ahora. Podría "
436
- "frenar la publicación de este informe."
437
 
438
- #: ../../admin/config/index.php:71
439
  #, fuzzy
440
  msgid "Visitors and Known Users"
441
  msgstr "Navegadores recientes"
442
 
443
- #: ../../admin/config/index.php:72
444
  msgid "Track Registered Users"
445
  msgstr "Seguimiento Usuarios Registrados"
446
 
447
- #: ../../admin/config/index.php:72
448
  msgid "Enable this option to track logged in users."
449
  msgstr "Active esta opción para rastrear usuarios registrados."
450
 
451
- #: ../../admin/config/index.php:73
452
  #, fuzzy
453
  msgid "Blacklist by Username"
454
  msgstr "Direcciones IP Blacklist"
455
 
456
- #: ../../admin/config/index.php:73
457
  msgid ""
458
  "List all the usernames you don't want to track, separated by commas. Please "
459
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
@@ -464,11 +509,11 @@ msgstr ""
464
  "no </em> ignorados y que los nombres de usuario distinguen entre mayúsculas "
465
  "y minúsculas."
466
 
467
- #: ../../admin/config/index.php:74
468
  msgid "Blacklist by IP Address"
469
  msgstr "Direcciones IP Blacklist"
470
 
471
- #: ../../admin/config/index.php:74
472
  #, fuzzy
473
  msgid ""
474
  "List all the IP addresses you don't want to track, separated by commas. Each "
@@ -483,12 +528,12 @@ msgstr ""
483
  "CIDR </a> (es decir, < em> 192.168.0.0/24 </em>). Si el formato no es "
484
  "correcto, WP SLIMStat no puede rastrear páginas vistas correctamente."
485
 
486
- #: ../../admin/config/index.php:75
487
  #, fuzzy
488
  msgid "Blacklist by Capability"
489
  msgstr "Navegador"
490
 
491
- #: ../../admin/config/index.php:75
492
  msgid ""
493
  "Users having at least one of the <a href='http://codex.wordpress.org/"
494
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
@@ -499,15 +544,15 @@ msgstr ""
499
  "no se les rastreará. Las Capacidades distinguen entre mayúsculas y "
500
  "minúsculas."
501
 
502
- #: ../../admin/config/index.php:77
503
  msgid "Profiling"
504
  msgstr "Haciendo perfil"
505
 
506
- #: ../../admin/config/index.php:78
507
  msgid "Ignore Spammers"
508
  msgstr "Ignorar Spammers"
509
 
510
- #: ../../admin/config/index.php:78
511
  msgid ""
512
  "Enable this option if you don't want to track visits from users identified "
513
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -520,12 +565,25 @@ msgstr ""
520
  "adelante se marcan como correo no deseado, también se eliminarán de la base "
521
  "de datos."
522
 
523
- #: ../../admin/config/index.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
524
  #, fuzzy
525
  msgid "Permalinks"
526
  msgstr "Enlace Permanente"
527
 
528
- #: ../../admin/config/index.php:79
529
  msgid ""
530
  "List all the URLs on your website that you don't want to track, separated by "
531
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -544,12 +602,12 @@ msgstr ""
544
  "<code> / abo! T </ code > coincidirá con /about and /abort. Las cadenas no "
545
  "se afectan por mayúsculas y minúsculas."
546
 
547
- #: ../../admin/config/index.php:80
548
  #, fuzzy
549
  msgid "Countries"
550
  msgstr "Paises que más visitan"
551
 
552
- #: ../../admin/config/index.php:80
553
  msgid ""
554
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
555
  "track, separated by commas."
@@ -557,12 +615,12 @@ msgstr ""
557
  "Los códigos de país (Es decir: <code> es-es, it, es </code>) a los que no "
558
  "desee realizar el seguimiento, separados por comas"
559
 
560
- #: ../../admin/config/index.php:81
561
  #, fuzzy
562
  msgid "User Agents"
563
  msgstr "Buscadores"
564
 
565
- #: ../../admin/config/index.php:81
566
  msgid ""
567
  "Browsers (user agents) you don't want to track, separated by commas. You can "
568
  "specify the browser's version adding a slash after the name (i.e. "
@@ -579,12 +637,12 @@ msgstr ""
579
  "code> coincidirá Chrome y cromo, <code> IE /! 0.0 </code> coincidirá IE/7.0 "
580
  "y IE/8.0. Las cadenas son de mayúsculas y minúsculas."
581
 
582
- #: ../../admin/config/index.php:82
583
  #, fuzzy
584
  msgid "Referring Sites"
585
  msgstr "Motores de Búsqueda"
586
 
587
- #: ../../admin/config/index.php:82
588
  msgid ""
589
  "Referring URLs that you don't want to track, separated by commas: "
590
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -599,17 +657,17 @@ msgstr ""
599
  "cadenas son mayúsculas y minúsculas. Por favor incluya ya sea un comodín o "
600
  "el protocolo que desea filtrar (http://, https://)."
601
 
602
- #: ../../admin/config/index.php:84
603
  #, fuzzy
604
  msgid "Internal and Outbound Links"
605
  msgstr "Enlaces Salientes Recientes"
606
 
607
- #: ../../admin/config/index.php:85
608
  #, fuzzy
609
  msgid "Track Outbound Clicks"
610
  msgstr "Enlaces Salientes Recientes"
611
 
612
- #: ../../admin/config/index.php:85
613
  msgid ""
614
  "Track when your visitors click on link to external websites. This option "
615
  "required Spy Mode to be enabled."
@@ -617,71 +675,56 @@ msgstr ""
617
  "Rastree cuando los usuarios hacen clic en el enlace a sitios web externos. "
618
  "Esta opción requere que el modo Espía esté habilitado."
619
 
620
- #: ../../admin/config/index.php:86
621
  #, fuzzy
622
  msgid "Track Coordinates"
623
  msgstr "Seguimiento Activo"
624
 
625
- #: ../../admin/config/index.php:86
626
  msgid ""
627
  "Collect mouse coordinates and other information for clicks on internal "
628
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
629
  "this information is only collected for external links."
630
  msgstr ""
631
 
632
- #: ../../admin/config/index.php:87
633
- #, fuzzy
634
- msgid "Ignore Classes"
635
- msgstr "Navegadores recientes"
636
 
637
- #: ../../admin/config/index.php:87
638
  msgid ""
639
  "Track the event but do not invoke the callback function on links marked with "
640
- "one of these classnames (separated by comma). Useful to prevent conflicts "
641
- "with lightbox and similar libraries."
 
642
  msgstr ""
643
 
644
- #: ../../admin/config/index.php:88
645
- #, fuzzy
646
- msgid "Ignore Rel"
647
- msgstr "Navegadores recientes"
648
-
649
- #: ../../admin/config/index.php:88
650
- msgid ""
651
- "Track the event but do not invoke the callback function on links having one "
652
- "of these values (separated by comma) as their <em>rel</em> attribute."
653
  msgstr ""
654
 
655
- #: ../../admin/config/index.php:89
656
- #, fuzzy
657
- msgid "Ignore URL"
658
- msgstr "Navegadores recientes"
659
-
660
- #: ../../admin/config/index.php:89
661
  msgid ""
662
- "Track the event but do not invoke the callback function on links whose "
663
- "<em>href</em> attribute contains one of these strings (separated by comma)."
 
664
  msgstr ""
665
 
666
- #: ../../admin/config/index.php:91 ../../admin/config/index.php:242
667
- msgid "Miscellaneous"
668
- msgstr "Varios"
669
-
670
- #: ../../admin/config/index.php:92
671
  msgid "Enable Privacy Mode"
672
  msgstr "Activar el modo de privacidad"
673
 
674
- #: ../../admin/config/index.php:92
675
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
676
  msgstr ""
677
  "Enmascarar direcciones IP de sus visitantes para cumplir con leyes de "
678
  "privacidad europeas."
679
 
680
- #: ../../admin/config/index.php:93
681
  msgid "Ignore Prefetch Requests"
682
  msgstr "Ignorar PPeticiones Prefetch"
683
 
684
- #: ../../admin/config/index.php:93
685
  #, fuzzy
686
  msgid ""
687
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
@@ -692,11 +735,11 @@ msgstr ""
692
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
693
  "target='_blank'> Función de Prellamado de enlaces de Firefox </a>."
694
 
695
- #: ../../admin/config/index.php:109
696
  msgid "Ignore users (username not found)"
697
  msgstr "Ignorar usuarios (nombre de usuario no encontrado)"
698
 
699
- #: ../../admin/config/index.php:132
700
  msgid ""
701
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
702
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
@@ -705,17 +748,12 @@ msgstr ""
705
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> esta página </a> "
706
  "para obtener más información"
707
 
708
- #: ../../admin/config/index.php:142
709
- #, fuzzy
710
- msgid "Reports"
711
- msgstr "Informes Personalizados"
712
-
713
- #: ../../admin/config/index.php:143
714
  #, fuzzy
715
  msgid "Restrict Authors"
716
  msgstr "Autor de la entrada(sección)"
717
 
718
- #: ../../admin/config/index.php:143
719
  #, fuzzy
720
  msgid ""
721
  "Enable this option if you want your authors to only see stats related to "
@@ -724,12 +762,12 @@ msgstr ""
724
  "Habilite esta opción si desea que sus autores sólo vean las estadísticas "
725
  "relacionadas con su propio contenido"
726
 
727
- #: ../../admin/config/index.php:144 ../../admin/config/index.php:148
728
  #, fuzzy
729
  msgid "Capability"
730
  msgstr "Navegador"
731
 
732
- #: ../../admin/config/index.php:144
733
  #, fuzzy
734
  msgid ""
735
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -747,11 +785,11 @@ msgstr ""
747
  "blanca 'Acceso de lectura' aquí abajo. En este caso, la lista tiene "
748
  "prioridad sobre la capacidad."
749
 
750
- #: ../../admin/config/index.php:145 ../../admin/config/index.php:149
751
  msgid "Whitelist"
752
  msgstr "Lista blanca"
753
 
754
- #: ../../admin/config/index.php:145
755
  msgid ""
756
  "List all the users who should have access to the reports, separated by "
757
  "commas. Administrators are implicitly allowed, so you don't need to list "
@@ -762,7 +800,7 @@ msgstr ""
762
  "es necesario enumerarlos aquí. Los nombres de usuario distinguen entre "
763
  "mayúsculas y minúsculasdefecto."
764
 
765
- #: ../../admin/config/index.php:148
766
  #, fuzzy
767
  msgid ""
768
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -776,7 +814,7 @@ msgstr ""
776
  "blanca de aquí abajo se puede utilizar para anular esta opción para usuarios "
777
  "específicos."
778
 
779
- #: ../../admin/config/index.php:149
780
  msgid ""
781
  "List all the users who can edit these options, separated by commas. Please "
782
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
@@ -787,11 +825,11 @@ msgstr ""
787
  "implícitamente permitidos, así que ¡no se olvide de incluirse a si mismo! "
788
  "Los nombres de usuario distinguen entre mayúsculas y minúsculas."
789
 
790
- #: ../../admin/config/index.php:165
791
  msgid "Read access: username not found"
792
  msgstr "Acceso de lectura: Nombre de usuario no se encuentra"
793
 
794
- #: ../../admin/config/index.php:178 ../../admin/config/index.php:209
795
  msgid ""
796
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
797
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
@@ -801,15 +839,15 @@ msgstr ""
801
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\">esta página</a> para "
802
  "obtener más información"
803
 
804
- #: ../../admin/config/index.php:196
805
  msgid "Config access: username not found"
806
  msgstr "Acceso de configuración: Nombre de usuario no encontrado"
807
 
808
- #: ../../admin/config/index.php:224
809
  msgid "Detect Smoothing"
810
  msgstr "Detectar Smoothing"
811
 
812
- #: ../../admin/config/index.php:224
813
  msgid ""
814
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
815
  "This option required Spy Mode to be enabled."
@@ -818,12 +856,12 @@ msgstr ""
818
  "(suavizado de fuentes). Esta opción requiere que el modo Espía esté "
819
  "habilitado."
820
 
821
- #: ../../admin/config/index.php:225
822
  #, fuzzy
823
  msgid "Session Duration"
824
  msgstr "Visitas"
825
 
826
- #: ../../admin/config/index.php:225
827
  #, fuzzy
828
  msgid ""
829
  "How many seconds should a human session last? Google Analytics sets it to "
@@ -832,21 +870,21 @@ msgstr ""
832
  "¿Cuántos segundos debe durar una sesión humana en su sitio? Google Analytics "
833
  "lo establece en 1.800 segundos."
834
 
835
- #: ../../admin/config/index.php:226
836
  msgid "Extend Session"
837
  msgstr "Extender Sesión"
838
 
839
- #: ../../admin/config/index.php:226
840
  msgid "Extend the duration of a session each time the user visits a new page."
841
  msgstr ""
842
  "Extender la duración de una sesión cada vez que el usuario visita una página "
843
  "nueva."
844
 
845
- #: ../../admin/config/index.php:227
846
  msgid "Enable CDN"
847
  msgstr "Habilitar CDN"
848
 
849
- #: ../../admin/config/index.php:227
850
  msgid ""
851
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
852
  "by serving our tracking code from their fast and reliable network (free "
@@ -856,11 +894,11 @@ msgstr ""
856
  "CDN, sirviendo nuestro código de seguimiento de su red rápida y confiable "
857
  "(servicio gratuito)."
858
 
859
- #: ../../admin/config/index.php:228
860
  msgid "Extensions to Track"
861
  msgstr "Extensiones a rastreo"
862
 
863
- #: ../../admin/config/index.php:228
864
  msgid ""
865
  "List all the file extensions that you want to be treated as Downloads. "
866
  "Please note that links pointing to external resources (i.e. PDFs on a "
@@ -874,54 +912,73 @@ msgstr ""
874
  "Descargas y no Vínculos salientes (y rastreado como tal), si su extensión "
875
  "coincide con uno de los que se enumeran a continuación."
876
 
877
- #: ../../admin/config/index.php:230
878
  #, fuzzy
879
  msgid "External Pages"
880
  msgstr "Paginas visitadas"
881
 
882
- #: ../../admin/config/index.php:231
883
- msgid "Add the following code to all the non-WP pages you want to track"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
884
  msgstr ""
885
 
886
- #: ../../admin/config/index.php:243
887
  msgid "Debug Mode"
888
  msgstr ""
889
 
890
- #: ../../admin/config/index.php:243
891
  msgid "Display the SQL queries used to retrieve the data."
892
  msgstr ""
893
 
894
- #: ../../admin/config/index.php:244
895
  msgid "IP Lookup"
896
  msgstr "Búsqueda de IP"
897
 
898
- #: ../../admin/config/index.php:244
899
  msgid "Customize the Geolocation service to be used in the reports."
900
  msgstr ""
901
  "Personalizar el servicio de Geolocalización de ser utilizado en los informes."
902
 
903
- #: ../../admin/config/index.php:245
904
  msgid "Custom CSS"
905
  msgstr "CSS personalizado"
906
 
907
- #: ../../admin/config/index.php:245
908
  #, fuzzy
909
  msgid ""
910
  "Paste here your custom stylesheet to personalize the way your reports look. "
911
- "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
912
- "target='_blank'>Check the FAQ</a> for more information on how to use this "
913
- "setting."
 
914
  msgstr ""
915
  "Pega aquí tu hoja de estilo personalizada para personalizar la forma en que "
916
  "sus informes se ven. <a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
917
  "target='_blank'> Compruebe la FAQ </a> para obtener más información sobre "
918
  "cómo utilizar esta funcionalidad."
919
 
920
- #: ../../admin/config/index.php:246
921
  msgid "Enable UAN"
922
  msgstr "Habilitar UAN"
923
 
924
- #: ../../admin/config/index.php:246
925
  #, fuzzy
926
  msgid ""
927
  "Send anonymous data about user agents to our server for analysis. This "
@@ -936,153 +993,201 @@ msgstr ""
936
  "opensource BrowsCap </a>, y mejorar la precisión de la funcionalidad de "
937
  "detección de navegador del SLIMStat."
938
 
939
- #: ../../admin/config/maintenance.php:20
940
  #, fuzzy
941
- msgid "Your Slimstat tables have been successfully converted to InnoDB."
942
- msgstr "Sus tablas WP SLIMStat han sido convertidas correctamente a. InnoDB"
 
 
 
 
 
 
 
 
 
 
 
943
 
944
- #: ../../admin/config/maintenance.php:30
945
  msgid "records deleted from your database."
946
  msgstr "Registros eliminados de la base de datos."
947
 
948
- #: ../../admin/config/maintenance.php:37
949
- msgid "All the records were successfully deleted."
950
- msgstr "Todos los registros se han eliminado con éxito."
951
-
952
- #: ../../admin/config/maintenance.php:42
953
- #, fuzzy
954
- msgid "All the archived records were successfully deleted."
955
- msgstr "Todos los registros se han eliminado con éxito."
956
 
957
  #: ../../admin/config/maintenance.php:51
 
 
 
 
 
 
 
 
 
 
 
 
 
958
  #, fuzzy
959
  msgid "All the archived records were successfully restored."
960
  msgstr "Todos los registros se han eliminado con éxito."
961
 
962
- #: ../../admin/config/maintenance.php:55
963
  msgid "Your reports were successfully restored to their default arrangement."
964
  msgstr ""
965
  "Sus informes fueron restaurados con éxito a su disposición de forma "
966
  "predeterminada."
967
 
968
- #: ../../admin/config/maintenance.php:62
 
 
 
 
 
969
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
970
  msgid ""
971
- "Congrats! Slimstat is now optimized for <a href=\"http://www.youtube.com/"
972
- "watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
 
 
 
 
 
 
 
 
973
  msgstr ""
974
- "¡Felicidades! WP SLIMStat está ahora optimizado para <a href=\"http://www."
975
- "youtube.com/watch?v=ygE01sOhzz0\" target=\"_blank\"> velocidad ridícula </a>."
976
 
977
- #: ../../admin/config/maintenance.php:69
 
 
 
 
978
  msgid ""
979
- "Indexing has been successfully disabled. Enjoy the extra database space you "
980
- "just gained!"
 
 
 
 
981
  msgstr ""
982
- "Indexación se ha desactivado con éxito. Disfrute del espacio de base de "
983
- "datos adicional ¡que acaba de ganar!"
984
 
985
- #: ../../admin/config/maintenance.php:101
986
  msgid "Database Information"
987
  msgstr "Información Base de datos"
988
 
989
- #: ../../admin/config/maintenance.php:104
990
  #, fuzzy
991
  msgid "Engine"
992
  msgstr "Motores de Búsqueda"
993
 
994
- #: ../../admin/config/maintenance.php:108
995
  msgid "switch to InnoDB"
996
  msgstr "cambiar a InnoDB"
997
 
998
- #: ../../admin/config/maintenance.php:119
999
  #, fuzzy
1000
  msgid "records"
1001
  msgstr "Palabras clave"
1002
 
1003
- #: ../../admin/config/maintenance.php:124
1004
  msgid "Data Maintenance"
1005
  msgstr "Mantenimiento de Datos"
1006
 
1007
- #: ../../admin/config/maintenance.php:127
1008
  #, fuzzy
1009
  msgid "Delete pageviews where"
1010
  msgstr "Filtrar páginas visitadas dondé:"
1011
 
1012
- #: ../../admin/config/maintenance.php:141 ../../admin/view/index.php:15
1013
  msgid "equals"
1014
  msgstr "es igual a"
1015
 
1016
- #: ../../admin/config/maintenance.php:142 ../../admin/view/index.php:16
1017
  msgid "is not equal to"
1018
  msgstr "no es igual a"
1019
 
1020
- #: ../../admin/config/maintenance.php:143 ../../admin/view/index.php:17
1021
  #, fuzzy
1022
  msgid "contains"
1023
  msgstr "Contiene"
1024
 
1025
- #: ../../admin/config/maintenance.php:144 ../../admin/view/index.php:18
 
 
 
 
1026
  #, fuzzy
1027
  msgid "does not contain"
1028
  msgstr "No contiene"
1029
 
1030
- #: ../../admin/config/maintenance.php:145 ../../admin/view/index.php:19
1031
  #, fuzzy
1032
  msgid "starts with"
1033
  msgstr "Empieza por"
1034
 
1035
- #: ../../admin/config/maintenance.php:146 ../../admin/view/index.php:20
1036
  #, fuzzy
1037
  msgid "ends with"
1038
  msgstr "Acaba en"
1039
 
1040
- #: ../../admin/config/maintenance.php:147 ../../admin/view/index.php:21
1041
  msgid "sounds like"
1042
  msgstr "suena como"
1043
 
1044
- #: ../../admin/config/maintenance.php:148 ../../admin/view/index.php:22
1045
  msgid "is greater than"
1046
  msgstr "es mayor que"
1047
 
1048
- #: ../../admin/config/maintenance.php:149 ../../admin/view/index.php:23
1049
  msgid "is less than"
1050
  msgstr "es menor que"
1051
 
1052
- #: ../../admin/config/maintenance.php:150 ../../admin/view/index.php:25
1053
  msgid "matches"
1054
  msgstr "coincide"
1055
 
1056
- #: ../../admin/config/maintenance.php:151 ../../admin/view/index.php:26
1057
  #, fuzzy
1058
  msgid "does not match"
1059
  msgstr "No contiene"
1060
 
1061
- #: ../../admin/config/maintenance.php:152 ../../admin/view/index.php:27
1062
  msgid "is empty"
1063
  msgstr "está vacío"
1064
 
1065
- #: ../../admin/config/maintenance.php:153 ../../admin/view/index.php:28
1066
  msgid "is not empty"
1067
  msgstr "no está vacío"
1068
 
1069
- #: ../../admin/config/maintenance.php:156 ../../admin/view/index.php:40
1070
- #: ../../admin/view/index.php:103
1071
  msgid "Apply"
1072
  msgstr "Aplicar"
1073
 
1074
- #: ../../admin/config/maintenance.php:157
1075
  msgid ""
1076
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1077
  msgstr ""
1078
  "¿Está seguro que desea eliminar PERMANENTEMENTE estos registros de su base "
1079
  "de datos?"
1080
 
1081
- #: ../../admin/config/maintenance.php:162
1082
- msgid "Truncate Tables"
1083
- msgstr ""
1084
-
1085
- #: ../../admin/config/maintenance.php:165
1086
  msgid ""
1087
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1088
  "database?"
@@ -1090,12 +1195,12 @@ msgstr ""
1090
  "¿Está seguro que quiere BORRAR PERMANENTEMENTE TODOS los registros de su "
1091
  "base de datos?"
1092
 
1093
- #: ../../admin/config/maintenance.php:165
1094
  #, fuzzy
1095
  msgid "Delete All Records"
1096
  msgstr "Paginas visitadas"
1097
 
1098
- #: ../../admin/config/maintenance.php:166
1099
  #, fuzzy
1100
  msgid ""
1101
  "Erase all the information collected so far by Slimstat, including the "
@@ -1104,33 +1209,26 @@ msgstr ""
1104
  "Borrar toda la información recopilada hasta el momento por WP SLIMStat. Esta "
1105
  "<strong> operación no </strong> restablece la configuración."
1106
 
1107
- #: ../../admin/config/maintenance.php:170
1108
- msgid "Restore archive"
1109
- msgstr ""
1110
-
1111
- #: ../../admin/config/maintenance.php:173
1112
  #, fuzzy
1113
  msgid "Are you sure you want to restore all the archived pageviews?"
1114
  msgstr ""
1115
  "¿Está seguro de que desea restaurar la disposición por defecto de sus "
1116
  "informes?"
1117
 
1118
- #: ../../admin/config/maintenance.php:173
1119
- msgid "Get 'em back"
1120
- msgstr ""
 
1121
 
1122
- #: ../../admin/config/maintenance.php:174
1123
  msgid ""
1124
  "Move all the archived pageviews back to the main Slimstat table. Please note "
1125
  "that, unless you disabled the daily purge, this data will be archived again "
1126
  "at the next scheduled clean-up."
1127
  msgstr ""
1128
 
1129
- #: ../../admin/config/maintenance.php:178
1130
- msgid "Empty Archive"
1131
- msgstr ""
1132
-
1133
- #: ../../admin/config/maintenance.php:181
1134
  #, fuzzy
1135
  msgid ""
1136
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
@@ -1139,24 +1237,20 @@ msgstr ""
1139
  "¿Está seguro que quiere BORRAR PERMANENTEMENTE TODOS los registros de su "
1140
  "base de datos?"
1141
 
1142
- #: ../../admin/config/maintenance.php:181
1143
  #, fuzzy
1144
  msgid "Delete Archive"
1145
  msgstr "Filtrar páginas visitadas dondé:"
1146
 
1147
- #: ../../admin/config/maintenance.php:182
1148
  msgid "Erase all the archived records. This operation cannot be undone."
1149
  msgstr ""
1150
 
1151
- #: ../../admin/config/maintenance.php:186
1152
- msgid "Performance"
1153
- msgstr "Rendimiento"
1154
-
1155
- #: ../../admin/config/maintenance.php:189
1156
  msgid "Improve Performance"
1157
  msgstr "Mejorar el rendimiento"
1158
 
1159
- #: ../../admin/config/maintenance.php:190
1160
  msgid ""
1161
  "Please note that you will need about 30% more DB space to store the extra "
1162
  "information required."
@@ -1164,11 +1258,11 @@ msgstr ""
1164
  "Por favor, tenga en cuenta que necesitará un 30% más de espacio BD para "
1165
  "almacenar la información adicional que se requiere."
1166
 
1167
- #: ../../admin/config/maintenance.php:194
1168
  msgid "Save DB Space"
1169
  msgstr "Guardar Espacio BD"
1170
 
1171
- #: ../../admin/config/maintenance.php:195
1172
  #, fuzzy
1173
  msgid ""
1174
  "Please note that by removing table indexes, Slimstat's performance will be "
@@ -1177,29 +1271,102 @@ msgstr ""
1177
  "Tenga en cuenta que al eliminar los índices de tabla, el rendimiento de WP "
1178
  "SLIMStat se verá afectado."
1179
 
1180
- #: ../../admin/config/maintenance.php:200
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1181
  msgid "Import and Export"
1182
  msgstr "Importar y Exportar"
1183
 
1184
- #: ../../admin/config/maintenance.php:204
1185
  #, fuzzy
1186
  msgid ""
1187
  "Here below you can find the current configuration string for Slimstat. You "
1188
- "can update your settings by pasting a new string here below and clicking on "
1189
- "Import."
1190
  msgstr ""
1191
  "Aquí abajo puede encontrar la cadena actual de configuración para WP "
1192
  "SlimStat. Puede actualizar su configuración pegando una nueva cadena aquí "
1193
  "abajo y haciendo clic en Importar."
1194
 
1195
- #: ../../admin/config/maintenance.php:209
1196
  msgid "Import"
1197
  msgstr "Importar"
1198
 
1199
- #: ../../admin/config/maintenance.php:210
1200
  msgid "Are you sure you want to OVERWRITE your current settings?"
1201
  msgstr "¿Seguro de que desea sobrescribir la configuración actual?"
1202
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1203
  #: ../../admin/lang/dynamic_strings.php:3
1204
  msgid "xx"
1205
  msgstr "xx"
@@ -1387,1402 +1554,1429 @@ msgid "winphone7"
1387
  msgstr "iPhone OS X"
1388
 
1389
  #: ../../admin/lang/dynamic_strings.php:49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1390
  msgid "wince"
1391
  msgstr "Windows CE"
1392
 
1393
- #: ../../admin/lang/dynamic_strings.php:50
1394
  msgid "symbianos"
1395
  msgstr "Symbian OS"
1396
 
1397
- #: ../../admin/lang/dynamic_strings.php:51
1398
  msgid "blackberry os"
1399
  msgstr "so blackberry"
1400
 
1401
- #: ../../admin/lang/dynamic_strings.php:52
1402
  msgid "webos"
1403
  msgstr "WebOS"
1404
 
1405
- #: ../../admin/lang/dynamic_strings.php:53
1406
  msgid "p-and"
1407
  msgstr "Android"
1408
 
1409
- #: ../../admin/lang/dynamic_strings.php:54
1410
  msgid "p-bla"
1411
  msgstr "BlackBerry"
1412
 
1413
- #: ../../admin/lang/dynamic_strings.php:55
1414
  msgid "p-chr"
1415
  msgstr "Chrome OS"
1416
 
1417
- #: ../../admin/lang/dynamic_strings.php:56
1418
  msgid "p-fre"
1419
  msgstr "Linux FreeBSD"
1420
 
1421
- #: ../../admin/lang/dynamic_strings.php:57
1422
  msgid "p-ios"
1423
  msgstr "Apple iOS"
1424
 
1425
- #: ../../admin/lang/dynamic_strings.php:58
1426
  msgid "p-jav"
1427
  msgstr "Java-based OS"
1428
 
1429
- #: ../../admin/lang/dynamic_strings.php:59
1430
  msgid "p-lin"
1431
  msgstr "Linux"
1432
 
1433
- #: ../../admin/lang/dynamic_strings.php:60
1434
  msgid "p-mac"
1435
  msgstr "Apple"
1436
 
1437
- #: ../../admin/lang/dynamic_strings.php:61
1438
  msgid "p-sym"
1439
  msgstr "Symbian OS"
1440
 
1441
- #: ../../admin/lang/dynamic_strings.php:62
1442
  msgid "p-unk"
1443
  msgstr "Unknown"
1444
 
1445
- #: ../../admin/lang/dynamic_strings.php:63
1446
  msgid "p-win"
1447
  msgstr "Microsoft"
1448
 
1449
- #: ../../admin/lang/dynamic_strings.php:64
1450
  msgid "powertv"
1451
  msgstr "PowerTV"
1452
 
1453
- #: ../../admin/lang/dynamic_strings.php:65
1454
  #, fuzzy
1455
  msgid "acrobat"
1456
  msgstr "Acrobat"
1457
 
1458
- #: ../../admin/lang/dynamic_strings.php:66
1459
  msgid "director"
1460
  msgstr "director"
1461
 
1462
- #: ../../admin/lang/dynamic_strings.php:67
1463
  #, fuzzy
1464
  msgid "flash"
1465
  msgstr "Flash"
1466
 
1467
- #: ../../admin/lang/dynamic_strings.php:68
1468
  #, fuzzy
1469
  msgid "mediaplayer"
1470
  msgstr "Media Player"
1471
 
1472
- #: ../../admin/lang/dynamic_strings.php:69
1473
  msgid "quicktime"
1474
  msgstr "quicktime"
1475
 
1476
- #: ../../admin/lang/dynamic_strings.php:70
1477
  msgid "real"
1478
  msgstr "real"
1479
 
1480
- #: ../../admin/lang/dynamic_strings.php:71
1481
  #, fuzzy
1482
  msgid "silverlight"
1483
  msgstr "Silverlight"
1484
 
1485
  # Afrikaans
1486
- #: ../../admin/lang/dynamic_strings.php:72
1487
  msgid "l-af"
1488
  msgstr "Afrikaans"
1489
 
1490
  # Afrikaans
1491
- #: ../../admin/lang/dynamic_strings.php:73
1492
  #, fuzzy
1493
  msgid "l-af-za"
1494
  msgstr "Afrikaans"
1495
 
1496
  # Arabic
1497
- #: ../../admin/lang/dynamic_strings.php:74
1498
  msgid "l-ar"
1499
  msgstr "Arabic"
1500
 
1501
  # Arabic (United Arab Emirates)
1502
- #: ../../admin/lang/dynamic_strings.php:75
1503
  msgid "l-ar-ae"
1504
  msgstr "Arabic (United Arab Emirates)"
1505
 
1506
  # Arabic (Bahrain)
1507
- #: ../../admin/lang/dynamic_strings.php:76
1508
  msgid "l-ar-bh"
1509
  msgstr "Arabic (Bahrain)"
1510
 
1511
  # Arabic (Algeria)
1512
- #: ../../admin/lang/dynamic_strings.php:77
1513
  msgid "l-ar-dz"
1514
  msgstr "Arabic (Algeria)"
1515
 
1516
  # Arabic (Egypt)
1517
- #: ../../admin/lang/dynamic_strings.php:78
1518
  msgid "l-ar-eg"
1519
  msgstr "Arabic (Egypt)"
1520
 
1521
  # Arabic (Iraq)
1522
- #: ../../admin/lang/dynamic_strings.php:79
1523
  msgid "l-ar-iq"
1524
  msgstr "Arabic (Iraq)"
1525
 
1526
  # Arabic (Jordan)
1527
- #: ../../admin/lang/dynamic_strings.php:80
1528
  msgid "l-ar-jo"
1529
  msgstr "Arabic (Jordan)"
1530
 
1531
  # Arabic (Kuwait)
1532
- #: ../../admin/lang/dynamic_strings.php:81
1533
  msgid "l-ar-kw"
1534
  msgstr "Arabic (Kuwait)"
1535
 
1536
  # Arabic (Lebanon)
1537
- #: ../../admin/lang/dynamic_strings.php:82
1538
  msgid "l-ar-lb"
1539
  msgstr "Arabic (Lebanon)"
1540
 
1541
  # Arabic (Libya)
1542
- #: ../../admin/lang/dynamic_strings.php:83
1543
  msgid "l-ar-ly"
1544
  msgstr "Arabic (Libya)"
1545
 
1546
  # Arabic (Morocco)
1547
- #: ../../admin/lang/dynamic_strings.php:84
1548
  msgid "l-ar-ma"
1549
  msgstr "Arabic (Morocco)"
1550
 
1551
  # Arabic (Oman)
1552
- #: ../../admin/lang/dynamic_strings.php:85
1553
  msgid "l-ar-om"
1554
  msgstr "Arabic (Oman)"
1555
 
1556
  # Arabic (Qatar)
1557
- #: ../../admin/lang/dynamic_strings.php:86
1558
  msgid "l-ar-qa"
1559
  msgstr "Arabic (Qatar)"
1560
 
1561
  # Arabic (Saudi Arabia)
1562
- #: ../../admin/lang/dynamic_strings.php:87
1563
  msgid "l-ar-sa"
1564
  msgstr "Arabic (Saudi Arabia)"
1565
 
1566
  # Arabic (Syria)
1567
- #: ../../admin/lang/dynamic_strings.php:88
1568
  msgid "l-ar-sy"
1569
  msgstr "Arabic (Syria)"
1570
 
1571
  # Arabic (Tunisia)
1572
- #: ../../admin/lang/dynamic_strings.php:89
1573
  msgid "l-ar-tn"
1574
  msgstr "Arabic (Tunisia)"
1575
 
1576
  # Arabic (Yemen)
1577
- #: ../../admin/lang/dynamic_strings.php:90
1578
  msgid "l-ar-ye"
1579
  msgstr "Arabic (Yemen)"
1580
 
1581
  # Azerbaijani
1582
- #: ../../admin/lang/dynamic_strings.php:91
1583
  msgid "l-az"
1584
  msgstr "Azerbaijani"
1585
 
1586
  # Azerbaijani
1587
- #: ../../admin/lang/dynamic_strings.php:92
1588
  #, fuzzy
1589
  msgid "l-az-az"
1590
  msgstr "Azerbaijani"
1591
 
1592
  # Belarusian
1593
- #: ../../admin/lang/dynamic_strings.php:93
1594
  msgid "l-be"
1595
  msgstr "Belarusian"
1596
 
1597
  # Belarusian
1598
- #: ../../admin/lang/dynamic_strings.php:94
1599
  #, fuzzy
1600
  msgid "l-be-by"
1601
  msgstr "Belarusian"
1602
 
1603
  # Bulgarian
1604
- #: ../../admin/lang/dynamic_strings.php:95
1605
  msgid "l-bg"
1606
  msgstr "Bulgarian"
1607
 
1608
  # Bulgarian
1609
- #: ../../admin/lang/dynamic_strings.php:96
1610
  #, fuzzy
1611
  msgid "l-bg-bg"
1612
  msgstr "Bulgarian"
1613
 
1614
  # Bosnian
1615
- #: ../../admin/lang/dynamic_strings.php:97
1616
  #, fuzzy
1617
  msgid "l-bs-ba"
1618
  msgstr "Bosnian"
1619
 
1620
  # Catalan; Valencian
1621
- #: ../../admin/lang/dynamic_strings.php:98
1622
  msgid "l-ca"
1623
  msgstr "Catalan; Valencian"
1624
 
1625
  # Catalan; Valencian
1626
- #: ../../admin/lang/dynamic_strings.php:99
1627
  #, fuzzy
1628
  msgid "l-ca-es"
1629
  msgstr "Catalan; Valencian"
1630
 
1631
  # Czech
1632
- #: ../../admin/lang/dynamic_strings.php:100
1633
  msgid "l-cs"
1634
  msgstr "Czech"
1635
 
1636
  # Czech
1637
- #: ../../admin/lang/dynamic_strings.php:101
1638
  #, fuzzy
1639
  msgid "l-cs-cz"
1640
  msgstr "Czech"
1641
 
1642
  # Welsh
1643
- #: ../../admin/lang/dynamic_strings.php:102
1644
  msgid "l-cy"
1645
  msgstr "Welsh"
1646
 
1647
  # Welsh
1648
- #: ../../admin/lang/dynamic_strings.php:103
1649
  #, fuzzy
1650
  msgid "l-cy-gb"
1651
  msgstr "Welsh"
1652
 
1653
  # Danish
1654
- #: ../../admin/lang/dynamic_strings.php:104
1655
  msgid "l-da"
1656
  msgstr "Danish"
1657
 
1658
  # Danish
1659
- #: ../../admin/lang/dynamic_strings.php:105
1660
  #, fuzzy
1661
  msgid "l-da-dk"
1662
  msgstr "Danish"
1663
 
1664
  # German
1665
- #: ../../admin/lang/dynamic_strings.php:106
1666
  msgid "l-de"
1667
  msgstr "German"
1668
 
1669
  # German (Austria)
1670
- #: ../../admin/lang/dynamic_strings.php:107
1671
  msgid "l-de-at"
1672
  msgstr "German (Austria)"
1673
 
1674
  # German (Switzerland)
1675
- #: ../../admin/lang/dynamic_strings.php:108
1676
  msgid "l-de-ch"
1677
  msgstr "German (Switzerland)"
1678
 
1679
  # German (Germany)
1680
- #: ../../admin/lang/dynamic_strings.php:109
1681
  msgid "l-de-de"
1682
  msgstr "German (Germany)"
1683
 
1684
  # German (Liechtenstein)
1685
- #: ../../admin/lang/dynamic_strings.php:110
1686
  msgid "l-de-li"
1687
  msgstr "German (Liechtenstein)"
1688
 
1689
  # German (Luxembourg)
1690
- #: ../../admin/lang/dynamic_strings.php:111
1691
  msgid "l-de-lu"
1692
  msgstr "German (Luxembourg)"
1693
 
1694
  # Dhivehi; Divehi; Maldivian
1695
- #: ../../admin/lang/dynamic_strings.php:112
1696
  msgid "l-dv"
1697
  msgstr "Dhivehi; Divehi; Maldivian"
1698
 
1699
  # Dhivehi; Divehi; Maldivian
1700
- #: ../../admin/lang/dynamic_strings.php:113
1701
  #, fuzzy
1702
  msgid "l-dv-mv"
1703
  msgstr "Dhivehi; Divehi; Maldivian"
1704
 
1705
  # Modern Greek (1453-)
1706
- #: ../../admin/lang/dynamic_strings.php:114
1707
  msgid "l-el"
1708
  msgstr "Modern Greek (1453-)"
1709
 
1710
  # Greek (Greece)
1711
- #: ../../admin/lang/dynamic_strings.php:115
1712
  msgid "l-el-gr"
1713
  msgstr "Greek (Greece)"
1714
 
1715
  # English
1716
- #: ../../admin/lang/dynamic_strings.php:116
1717
  msgid "l-en"
1718
  msgstr "English"
1719
 
1720
  # English (Australia)
1721
- #: ../../admin/lang/dynamic_strings.php:117
1722
  msgid "l-en-au"
1723
  msgstr "English (Australia)"
1724
 
1725
  # English (Belize)
1726
- #: ../../admin/lang/dynamic_strings.php:118
1727
  msgid "l-en-bz"
1728
  msgstr "English (Belize)"
1729
 
1730
  # English (Canada)
1731
- #: ../../admin/lang/dynamic_strings.php:119
1732
  msgid "l-en-ca"
1733
  msgstr "English (Canada)"
1734
 
1735
  # English (Canada)
1736
- #: ../../admin/lang/dynamic_strings.php:120
1737
  #, fuzzy
1738
  msgid "l-en-cb"
1739
  msgstr "English (Canada)"
1740
 
1741
  # English (United Kingdom)
1742
- #: ../../admin/lang/dynamic_strings.php:121
1743
  msgid "l-en-gb"
1744
  msgstr "English (United Kingdom)"
1745
 
1746
  # English (Ireland)
1747
- #: ../../admin/lang/dynamic_strings.php:122
1748
  msgid "l-en-ie"
1749
  msgstr "English (Ireland)"
1750
 
1751
  # English (Jamaica)
1752
- #: ../../admin/lang/dynamic_strings.php:123
1753
  msgid "l-en-jm"
1754
  msgstr "English (Jamaica)"
1755
 
1756
  # English (New Zealand)
1757
- #: ../../admin/lang/dynamic_strings.php:124
1758
  msgid "l-en-nz"
1759
  msgstr "English (New Zealand)"
1760
 
1761
  # English
1762
- #: ../../admin/lang/dynamic_strings.php:125
1763
  #, fuzzy
1764
  msgid "l-en-ph"
1765
  msgstr "English"
1766
 
1767
  # English (Trinidad)
1768
- #: ../../admin/lang/dynamic_strings.php:126
1769
  msgid "l-en-tt"
1770
  msgstr "English (Trinidad)"
1771
 
1772
  # English (United States)
1773
- #: ../../admin/lang/dynamic_strings.php:127
1774
  msgid "l-en-us"
1775
  msgstr "English (United States)"
1776
 
1777
  # English (South Africa)
1778
- #: ../../admin/lang/dynamic_strings.php:128
1779
  msgid "l-en-za"
1780
  msgstr "English (South Africa)"
1781
 
1782
  # English (South Africa)
1783
- #: ../../admin/lang/dynamic_strings.php:129
1784
  #, fuzzy
1785
  msgid "l-en-zw"
1786
  msgstr "English (South Africa)"
1787
 
1788
  # Esperanto
1789
- #: ../../admin/lang/dynamic_strings.php:130
1790
  msgid "l-eo"
1791
  msgstr "Esperanto"
1792
 
1793
  # Spanish; Castilian
1794
- #: ../../admin/lang/dynamic_strings.php:131
1795
  msgid "l-es"
1796
  msgstr "Spanish; Castilian"
1797
 
1798
  # Spanish (Argentina)
1799
- #: ../../admin/lang/dynamic_strings.php:132
1800
  msgid "l-es-ar"
1801
  msgstr "Spanish (Argentina)"
1802
 
1803
  # Spanish (Bolivia)
1804
- #: ../../admin/lang/dynamic_strings.php:133
1805
  msgid "l-es-bo"
1806
  msgstr "Spanish (Bolivia)"
1807
 
1808
  # Spanish (Chile)
1809
- #: ../../admin/lang/dynamic_strings.php:134
1810
  msgid "l-es-cl"
1811
  msgstr "Spanish (Chile)"
1812
 
1813
  # Spanish (Colombia)
1814
- #: ../../admin/lang/dynamic_strings.php:135
1815
  msgid "l-es-co"
1816
  msgstr "Spanish (Colombia)"
1817
 
1818
  # Spanish (Costa Rica)
1819
- #: ../../admin/lang/dynamic_strings.php:136
1820
  msgid "l-es-cr"
1821
  msgstr "Spanish (Costa Rica)"
1822
 
1823
  # Spanish (Dominican Republic)
1824
- #: ../../admin/lang/dynamic_strings.php:137
1825
  msgid "l-es-do"
1826
  msgstr "Spanish (Dominican Republic)"
1827
 
1828
  # Spanish (Ecuador)
1829
- #: ../../admin/lang/dynamic_strings.php:138
1830
  msgid "l-es-ec"
1831
  msgstr "Spanish (Ecuador)"
1832
 
1833
  # Spanish (Spain)
1834
- #: ../../admin/lang/dynamic_strings.php:139
1835
  msgid "l-es-es"
1836
  msgstr "Spanish (Spain)"
1837
 
1838
  # Spanish (Guatemala)
1839
- #: ../../admin/lang/dynamic_strings.php:140
1840
  msgid "l-es-gt"
1841
  msgstr "Spanish (Guatemala)"
1842
 
1843
  # Spanish (Honduras)
1844
- #: ../../admin/lang/dynamic_strings.php:141
1845
  msgid "l-es-hn"
1846
  msgstr "Spanish (Honduras)"
1847
 
1848
  # Spanish (Mexico)
1849
- #: ../../admin/lang/dynamic_strings.php:142
1850
  msgid "l-es-mx"
1851
  msgstr "Spanish (Mexico)"
1852
 
1853
  # Spanish (Nicaragua)
1854
- #: ../../admin/lang/dynamic_strings.php:143
1855
  msgid "l-es-ni"
1856
  msgstr "Spanish (Nicaragua)"
1857
 
1858
  # Spanish (Panama)
1859
- #: ../../admin/lang/dynamic_strings.php:144
1860
  msgid "l-es-pa"
1861
  msgstr "Spanish (Panama)"
1862
 
1863
  # Spanish (Peru)
1864
- #: ../../admin/lang/dynamic_strings.php:145
1865
  msgid "l-es-pe"
1866
  msgstr "Spanish (Peru)"
1867
 
1868
  # Spanish (Puerto Rico)
1869
- #: ../../admin/lang/dynamic_strings.php:146
1870
  msgid "l-es-pr"
1871
  msgstr "Spanish (Puerto Rico)"
1872
 
1873
  # Spanish (Paraguay)
1874
- #: ../../admin/lang/dynamic_strings.php:147
1875
  msgid "l-es-py"
1876
  msgstr "Spanish (Paraguay)"
1877
 
1878
  # Spanish (El Salvador)
1879
- #: ../../admin/lang/dynamic_strings.php:148
1880
  msgid "l-es-sv"
1881
  msgstr "Spanish (El Salvador)"
1882
 
1883
  # Spanish (Uruguay)
1884
- #: ../../admin/lang/dynamic_strings.php:149
1885
  msgid "l-es-uy"
1886
  msgstr "Spanish (Uruguay)"
1887
 
1888
  # Spanish (Venezuela)
1889
- #: ../../admin/lang/dynamic_strings.php:150
1890
  msgid "l-es-ve"
1891
  msgstr "Spanish (Venezuela)"
1892
 
1893
  # Estonian
1894
- #: ../../admin/lang/dynamic_strings.php:151
1895
  msgid "l-et"
1896
  msgstr "Estonian"
1897
 
1898
  # Estonian
1899
- #: ../../admin/lang/dynamic_strings.php:152
1900
  #, fuzzy
1901
  msgid "l-et-ee"
1902
  msgstr "Estonian"
1903
 
1904
  # Basque
1905
- #: ../../admin/lang/dynamic_strings.php:153
1906
  msgid "l-eu"
1907
  msgstr "Basque"
1908
 
1909
  # Basque
1910
- #: ../../admin/lang/dynamic_strings.php:154
1911
  #, fuzzy
1912
  msgid "l-eu-es"
1913
  msgstr "Basque"
1914
 
1915
  # Persian
1916
- #: ../../admin/lang/dynamic_strings.php:155
1917
  msgid "l-fa"
1918
  msgstr "Persian"
1919
 
1920
  # Persian
1921
- #: ../../admin/lang/dynamic_strings.php:156
1922
  #, fuzzy
1923
  msgid "l-fa-ir"
1924
  msgstr "Persian"
1925
 
1926
  # Finnish
1927
- #: ../../admin/lang/dynamic_strings.php:157
1928
  msgid "l-fi"
1929
  msgstr "Finnish"
1930
 
1931
  # Finnish
1932
- #: ../../admin/lang/dynamic_strings.php:158
1933
  #, fuzzy
1934
  msgid "l-fi-fi"
1935
  msgstr "Finnish"
1936
 
1937
  # Faroese
1938
- #: ../../admin/lang/dynamic_strings.php:159
1939
  msgid "l-fo"
1940
  msgstr "Faroese"
1941
 
1942
  # Faroese
1943
- #: ../../admin/lang/dynamic_strings.php:160
1944
  #, fuzzy
1945
  msgid "l-fo-fo"
1946
  msgstr "Faroese"
1947
 
1948
  # French
1949
- #: ../../admin/lang/dynamic_strings.php:161
1950
  msgid "l-fr"
1951
  msgstr "French"
1952
 
1953
  # French (Belgium)
1954
- #: ../../admin/lang/dynamic_strings.php:162
1955
  msgid "l-fr-be"
1956
  msgstr "French (Belgium)"
1957
 
1958
  # French (Canada)
1959
- #: ../../admin/lang/dynamic_strings.php:163
1960
  msgid "l-fr-ca"
1961
  msgstr "French (Canada)"
1962
 
1963
  # French (Switzerland)
1964
- #: ../../admin/lang/dynamic_strings.php:164
1965
  msgid "l-fr-ch"
1966
  msgstr "French (Switzerland)"
1967
 
1968
  # French (France)
1969
- #: ../../admin/lang/dynamic_strings.php:165
1970
  msgid "l-fr-fr"
1971
  msgstr "French (France)"
1972
 
1973
  # French (Luxembourg)
1974
- #: ../../admin/lang/dynamic_strings.php:166
1975
  msgid "l-fr-lu"
1976
  msgstr "French (Luxembourg)"
1977
 
1978
  # French (Switzerland)
1979
- #: ../../admin/lang/dynamic_strings.php:167
1980
  #, fuzzy
1981
  msgid "l-fr-mc"
1982
  msgstr "French (Switzerland)"
1983
 
1984
  # Galician
1985
- #: ../../admin/lang/dynamic_strings.php:168
1986
  msgid "l-gl"
1987
  msgstr "Galician"
1988
 
1989
  # Spanish; Castilian
1990
- #: ../../admin/lang/dynamic_strings.php:169
1991
  #, fuzzy
1992
  msgid "l-gl-es"
1993
  msgstr "Spanish; Castilian"
1994
 
1995
  # Gujarati
1996
- #: ../../admin/lang/dynamic_strings.php:170
1997
  msgid "l-gu"
1998
  msgstr "Gujarati"
1999
 
2000
  # Gujarati
2001
- #: ../../admin/lang/dynamic_strings.php:171
2002
  #, fuzzy
2003
  msgid "l-gu-in"
2004
  msgstr "Gujarati"
2005
 
2006
  # Hebrew
2007
- #: ../../admin/lang/dynamic_strings.php:172
2008
  msgid "l-he"
2009
  msgstr "Hebrew"
2010
 
2011
  # Hebrew (Israel)
2012
- #: ../../admin/lang/dynamic_strings.php:173
2013
  msgid "l-he-il"
2014
  msgstr "Hebrew (Israel)"
2015
 
2016
  # Hindi
2017
- #: ../../admin/lang/dynamic_strings.php:174
2018
  msgid "l-hi"
2019
  msgstr "Hindi"
2020
 
2021
  # Hindi
2022
- #: ../../admin/lang/dynamic_strings.php:175
2023
  #, fuzzy
2024
  msgid "l-hi-in"
2025
  msgstr "Hindi"
2026
 
2027
  # Croatian
2028
- #: ../../admin/lang/dynamic_strings.php:176
2029
  msgid "l-hr"
2030
  msgstr "Croatian"
2031
 
2032
  # Croatian
2033
- #: ../../admin/lang/dynamic_strings.php:177
2034
  #, fuzzy
2035
  msgid "l-hr-ba"
2036
  msgstr "Croatian"
2037
 
2038
  # Croatian
2039
- #: ../../admin/lang/dynamic_strings.php:178
2040
  #, fuzzy
2041
  msgid "l-hr-hr"
2042
  msgstr "Croatian"
2043
 
2044
  # Hungarian
2045
- #: ../../admin/lang/dynamic_strings.php:179
2046
  msgid "l-hu"
2047
  msgstr "Hungarian"
2048
 
2049
  # Hungarian (Hungary)
2050
- #: ../../admin/lang/dynamic_strings.php:180
2051
  msgid "l-hu-hu"
2052
  msgstr "Hungarian (Hungary)"
2053
 
2054
  # Armenian
2055
- #: ../../admin/lang/dynamic_strings.php:181
2056
  msgid "l-hy"
2057
  msgstr "Armenian"
2058
 
2059
  # Armenian
2060
- #: ../../admin/lang/dynamic_strings.php:182
2061
  #, fuzzy
2062
  msgid "l-hy-am"
2063
  msgstr "Armenian"
2064
 
2065
  # Indonesian
2066
- #: ../../admin/lang/dynamic_strings.php:183
2067
  msgid "l-id"
2068
  msgstr "Indonesian"
2069
 
2070
  # Indonesian
2071
- #: ../../admin/lang/dynamic_strings.php:184
2072
  #, fuzzy
2073
  msgid "l-id-id"
2074
  msgstr "Indonesian"
2075
 
2076
  # Icelandic
2077
- #: ../../admin/lang/dynamic_strings.php:185
2078
  msgid "l-is"
2079
  msgstr "Icelandic"
2080
 
2081
  # Icelandic
2082
- #: ../../admin/lang/dynamic_strings.php:186
2083
  #, fuzzy
2084
  msgid "l-is-is"
2085
  msgstr "Icelandic"
2086
 
2087
  # Italian
2088
- #: ../../admin/lang/dynamic_strings.php:187
2089
  msgid "l-it"
2090
  msgstr "Italian"
2091
 
2092
  # Italian (Switzerland)
2093
- #: ../../admin/lang/dynamic_strings.php:188
2094
  msgid "l-it-ch"
2095
  msgstr "Italian (Switzerland)"
2096
 
2097
  # Italian (Italia)
2098
- #: ../../admin/lang/dynamic_strings.php:189
2099
  msgid "l-it-it"
2100
  msgstr "Italian (Italia)"
2101
 
2102
  # Japanese
2103
- #: ../../admin/lang/dynamic_strings.php:190
2104
  msgid "l-ja"
2105
  msgstr "Japanese"
2106
 
2107
  # Japanese
2108
- #: ../../admin/lang/dynamic_strings.php:191
2109
  #, fuzzy
2110
  msgid "l-ja-jp"
2111
  msgstr "Japanese"
2112
 
2113
  # Georgian
2114
- #: ../../admin/lang/dynamic_strings.php:192
2115
  msgid "l-ka"
2116
  msgstr "Georgian"
2117
 
2118
  # Georgian
2119
- #: ../../admin/lang/dynamic_strings.php:193
2120
  #, fuzzy
2121
  msgid "l-ka-ge"
2122
  msgstr "Georgian"
2123
 
2124
  # Kazakh
2125
- #: ../../admin/lang/dynamic_strings.php:194
2126
  msgid "l-kk"
2127
  msgstr "Kazakh"
2128
 
2129
  # Kazakh
2130
- #: ../../admin/lang/dynamic_strings.php:195
2131
  #, fuzzy
2132
  msgid "l-kk-kz"
2133
  msgstr "Kazakh"
2134
 
2135
  # Kannada
2136
- #: ../../admin/lang/dynamic_strings.php:196
2137
  msgid "l-kn"
2138
  msgstr "Kannada"
2139
 
2140
  # Kannada
2141
- #: ../../admin/lang/dynamic_strings.php:197
2142
  #, fuzzy
2143
  msgid "l-kn-in"
2144
  msgstr "Kannada"
2145
 
2146
  # Korean
2147
- #: ../../admin/lang/dynamic_strings.php:198
2148
  msgid "l-ko"
2149
  msgstr "Korean"
2150
 
2151
  # Korean (Republic of Korea)
2152
- #: ../../admin/lang/dynamic_strings.php:199
2153
  msgid "l-ko-kr"
2154
  msgstr "Korean (Republic of Korea)"
2155
 
2156
  # Korean
2157
- #: ../../admin/lang/dynamic_strings.php:200
2158
  #, fuzzy
2159
  msgid "l-kok"
2160
  msgstr "Korean"
2161
 
2162
  # Korean
2163
- #: ../../admin/lang/dynamic_strings.php:201
2164
  #, fuzzy
2165
  msgid "l-kok-in"
2166
  msgstr "Korean"
2167
 
2168
  # Kirghiz; Kyrgyz
2169
- #: ../../admin/lang/dynamic_strings.php:202
2170
  msgid "l-ky"
2171
  msgstr "Kirghiz; Kyrgyz"
2172
 
2173
  # Kirghiz; Kyrgyz
2174
- #: ../../admin/lang/dynamic_strings.php:203
2175
  #, fuzzy
2176
  msgid "l-ky-kg"
2177
  msgstr "Kirghiz; Kyrgyz"
2178
 
2179
  # Lithuanian
2180
- #: ../../admin/lang/dynamic_strings.php:204
2181
  msgid "l-lt"
2182
  msgstr "Lithuanian"
2183
 
2184
  # Lithuanian
2185
- #: ../../admin/lang/dynamic_strings.php:205
2186
  #, fuzzy
2187
  msgid "l-lt-lt"
2188
  msgstr "Lithuanian"
2189
 
2190
  # Latvian
2191
- #: ../../admin/lang/dynamic_strings.php:206
2192
  msgid "l-lv"
2193
  msgstr "Latvian"
2194
 
2195
  # Latvian
2196
- #: ../../admin/lang/dynamic_strings.php:207
2197
  #, fuzzy
2198
  msgid "l-lv-lv"
2199
  msgstr "Latvian"
2200
 
2201
  # Maori
2202
- #: ../../admin/lang/dynamic_strings.php:208
2203
  msgid "l-mi"
2204
  msgstr "Maori"
2205
 
2206
  # Maori
2207
- #: ../../admin/lang/dynamic_strings.php:209
2208
  #, fuzzy
2209
  msgid "l-mi-nz"
2210
  msgstr "Maori"
2211
 
2212
  # Macedonian
2213
- #: ../../admin/lang/dynamic_strings.php:210
2214
  msgid "l-mk"
2215
  msgstr "Macedonian"
2216
 
2217
  # Macedonian
2218
- #: ../../admin/lang/dynamic_strings.php:211
2219
  #, fuzzy
2220
  msgid "l-mk-ml"
2221
  msgstr "Macedonian"
2222
 
2223
  # Mongolian
2224
- #: ../../admin/lang/dynamic_strings.php:212
2225
  msgid "l-mn"
2226
  msgstr "Mongolian"
2227
 
2228
  # Mongolian
2229
- #: ../../admin/lang/dynamic_strings.php:213
2230
  #, fuzzy
2231
  msgid "l-mn-mn"
2232
  msgstr "Mongolian"
2233
 
2234
  # Marathi
2235
- #: ../../admin/lang/dynamic_strings.php:214
2236
  msgid "l-mr"
2237
  msgstr "Marathi"
2238
 
2239
  # Marathi
2240
- #: ../../admin/lang/dynamic_strings.php:215
2241
  #, fuzzy
2242
  msgid "l-mr-in"
2243
  msgstr "Marathi"
2244
 
2245
  # Malay
2246
- #: ../../admin/lang/dynamic_strings.php:216
2247
  msgid "l-ms"
2248
  msgstr "Malay"
2249
 
2250
  # Malay
2251
- #: ../../admin/lang/dynamic_strings.php:217
2252
  #, fuzzy
2253
  msgid "l-ms-bn"
2254
  msgstr "Malay"
2255
 
2256
  # Malay
2257
- #: ../../admin/lang/dynamic_strings.php:218
2258
  #, fuzzy
2259
  msgid "l-ms-my"
2260
  msgstr "Malay"
2261
 
2262
  # Maltese
2263
- #: ../../admin/lang/dynamic_strings.php:219
2264
  msgid "l-mt"
2265
  msgstr "Maltese"
2266
 
2267
  # Maltese
2268
- #: ../../admin/lang/dynamic_strings.php:220
2269
  #, fuzzy
2270
  msgid "l-mt-mt"
2271
  msgstr "Maltese"
2272
 
2273
  # Norwegian Bokmål
2274
- #: ../../admin/lang/dynamic_strings.php:221
2275
  msgid "l-nb"
2276
  msgstr "Norwegian Bokmål"
2277
 
2278
  # Norwegian Bokmål
2279
- #: ../../admin/lang/dynamic_strings.php:222
2280
  #, fuzzy
2281
  msgid "l-nb-no"
2282
  msgstr "Norwegian Bokmål"
2283
 
2284
  # Dutch; Flemish
2285
- #: ../../admin/lang/dynamic_strings.php:223
2286
  msgid "l-nl"
2287
  msgstr "Dutch; Flemish"
2288
 
2289
  # Dutch (Belgium)
2290
- #: ../../admin/lang/dynamic_strings.php:224
2291
  msgid "l-nl-be"
2292
  msgstr "Dutch (Belgium)"
2293
 
2294
  # Dutch (Netherlands)
2295
- #: ../../admin/lang/dynamic_strings.php:225
2296
  msgid "l-nl-nl"
2297
  msgstr "Dutch (Netherlands)"
2298
 
2299
  # Norwegian Nynorsk
2300
- #: ../../admin/lang/dynamic_strings.php:226
2301
  #, fuzzy
2302
  msgid "l-nn-no"
2303
  msgstr "Norwegian Nynorsk"
2304
 
2305
- #: ../../admin/lang/dynamic_strings.php:227
2306
  msgid "l-ns"
2307
  msgstr "l-ns"
2308
 
2309
- #: ../../admin/lang/dynamic_strings.php:228
2310
  msgid "l-ns-za"
2311
  msgstr "l-ns-za"
2312
 
2313
  # Panjabi; Punjabi
2314
- #: ../../admin/lang/dynamic_strings.php:229
2315
  msgid "l-pa"
2316
  msgstr "Panjabi; Punjabi"
2317
 
2318
  # Panjabi; Punjabi
2319
- #: ../../admin/lang/dynamic_strings.php:230
2320
  #, fuzzy
2321
  msgid "l-pa-in"
2322
  msgstr "Panjabi; Punjabi"
2323
 
2324
  # Polish
2325
- #: ../../admin/lang/dynamic_strings.php:231
2326
  msgid "l-pl"
2327
  msgstr "Polish"
2328
 
2329
  # Polish
2330
- #: ../../admin/lang/dynamic_strings.php:232
2331
  #, fuzzy
2332
  msgid "l-pl-pl"
2333
  msgstr "Polish"
2334
 
2335
  # Pushto; Pashto
2336
- #: ../../admin/lang/dynamic_strings.php:233
2337
  msgid "l-ps"
2338
  msgstr "Pushto; Pashto"
2339
 
2340
  # Spanish (Argentina)
2341
- #: ../../admin/lang/dynamic_strings.php:234
2342
  #, fuzzy
2343
  msgid "l-ps-ar"
2344
  msgstr "Spanish (Argentina)"
2345
 
2346
  # Portuguese
2347
- #: ../../admin/lang/dynamic_strings.php:235
2348
  msgid "l-pt"
2349
  msgstr "Portuguese"
2350
 
2351
  # Portuguese (Brazil)
2352
- #: ../../admin/lang/dynamic_strings.php:236
2353
  msgid "l-pt-br"
2354
  msgstr "Portuguese (Brazil)"
2355
 
2356
  # Portuguese
2357
- #: ../../admin/lang/dynamic_strings.php:237
2358
  #, fuzzy
2359
  msgid "l-pt-pt"
2360
  msgstr "Portuguese"
2361
 
2362
  # Quechua
2363
- #: ../../admin/lang/dynamic_strings.php:238
2364
  msgid "l-qu"
2365
  msgstr "Quechua"
2366
 
2367
  # Quechua
2368
- #: ../../admin/lang/dynamic_strings.php:239
2369
  #, fuzzy
2370
  msgid "l-qu-bo"
2371
  msgstr "Quechua"
2372
 
2373
  # Quechua
2374
- #: ../../admin/lang/dynamic_strings.php:240
2375
  #, fuzzy
2376
  msgid "l-qu-ec"
2377
  msgstr "Quechua"
2378
 
2379
  # Quechua
2380
- #: ../../admin/lang/dynamic_strings.php:241
2381
  #, fuzzy
2382
  msgid "l-qu-pe"
2383
  msgstr "Quechua"
2384
 
2385
  # Romanian; Moldavian; Moldovan
2386
- #: ../../admin/lang/dynamic_strings.php:242
2387
  msgid "l-ro"
2388
  msgstr "Romanian; Moldavian; Moldovan"
2389
 
2390
  # Romanian; Moldavian; Moldovan
2391
- #: ../../admin/lang/dynamic_strings.php:243
2392
  #, fuzzy
2393
  msgid "l-ro-ro"
2394
  msgstr "Romanian; Moldavian; Moldovan"
2395
 
2396
  # Russian
2397
- #: ../../admin/lang/dynamic_strings.php:244
2398
  msgid "l-ru"
2399
  msgstr "Russian"
2400
 
2401
  # Russian (Russia)
2402
- #: ../../admin/lang/dynamic_strings.php:245
2403
  msgid "l-ru-ru"
2404
  msgstr "Russian (Russia)"
2405
 
2406
  # Sanskrit
2407
- #: ../../admin/lang/dynamic_strings.php:246
2408
  msgid "l-sa"
2409
  msgstr "Sanskrit"
2410
 
2411
  # Sanskrit
2412
- #: ../../admin/lang/dynamic_strings.php:247
2413
  #, fuzzy
2414
  msgid "l-sa-in"
2415
  msgstr "Sanskrit"
2416
 
2417
  # Northern Sami
2418
- #: ../../admin/lang/dynamic_strings.php:248
2419
  msgid "l-se"
2420
  msgstr "Northern Sami"
2421
 
2422
  # Northern Sami
2423
- #: ../../admin/lang/dynamic_strings.php:249
2424
  #, fuzzy
2425
  msgid "l-se-fi"
2426
  msgstr "Northern Sami"
2427
 
2428
  # Northern Sami
2429
- #: ../../admin/lang/dynamic_strings.php:250
2430
  #, fuzzy
2431
  msgid "l-se-no"
2432
  msgstr "Northern Sami"
2433
 
2434
  # Northern Sami
2435
- #: ../../admin/lang/dynamic_strings.php:251
2436
  #, fuzzy
2437
  msgid "l-se-se"
2438
  msgstr "Northern Sami"
2439
 
2440
  # Slovak
2441
- #: ../../admin/lang/dynamic_strings.php:252
2442
  msgid "l-sk"
2443
  msgstr "Slovak"
2444
 
2445
  # Slovak
2446
- #: ../../admin/lang/dynamic_strings.php:253
2447
  #, fuzzy
2448
  msgid "l-sk-sk"
2449
  msgstr "Slovak"
2450
 
2451
  # Slovenian
2452
- #: ../../admin/lang/dynamic_strings.php:254
2453
  msgid "l-sl"
2454
  msgstr "Slovenian"
2455
 
2456
  # Slovenian
2457
- #: ../../admin/lang/dynamic_strings.php:255
2458
  #, fuzzy
2459
  msgid "l-sl-si"
2460
  msgstr "Slovenian"
2461
 
2462
  # Albanian
2463
- #: ../../admin/lang/dynamic_strings.php:256
2464
  msgid "l-sq"
2465
  msgstr "Albanian"
2466
 
2467
  # Albanian
2468
- #: ../../admin/lang/dynamic_strings.php:257
2469
  #, fuzzy
2470
  msgid "l-sq-al"
2471
  msgstr "Albanian"
2472
 
2473
  # Serbian
2474
- #: ../../admin/lang/dynamic_strings.php:258
2475
  #, fuzzy
2476
  msgid "l-sr-ba"
2477
  msgstr "Serbian"
2478
 
2479
  # Serbian
2480
- #: ../../admin/lang/dynamic_strings.php:259
2481
  #, fuzzy
2482
  msgid "l-sr-sp"
2483
  msgstr "Serbian"
2484
 
2485
  # Swedish
2486
- #: ../../admin/lang/dynamic_strings.php:260
2487
  msgid "l-sv"
2488
  msgstr "Swedish"
2489
 
2490
  # Swedish (Finland)
2491
- #: ../../admin/lang/dynamic_strings.php:261
2492
  msgid "l-sv-fi"
2493
  msgstr "Swedish (Finland)"
2494
 
2495
  # Swedish (Sweden)
2496
- #: ../../admin/lang/dynamic_strings.php:262
2497
  msgid "l-sv-se"
2498
  msgstr "Swedish (Sweden)"
2499
 
2500
  # Swahili
2501
- #: ../../admin/lang/dynamic_strings.php:263
2502
  msgid "l-sw"
2503
  msgstr "Swahili"
2504
 
2505
  # Swahili
2506
- #: ../../admin/lang/dynamic_strings.php:264
2507
  #, fuzzy
2508
  msgid "l-sw-ke"
2509
  msgstr "Swahili"
2510
 
2511
  # Tamil
2512
- #: ../../admin/lang/dynamic_strings.php:265
2513
  msgid "l-ta"
2514
  msgstr "Tamil"
2515
 
2516
  # Tamil
2517
- #: ../../admin/lang/dynamic_strings.php:266
2518
  #, fuzzy
2519
  msgid "l-ta-in"
2520
  msgstr "Tamil"
2521
 
2522
  # Telugu
2523
- #: ../../admin/lang/dynamic_strings.php:267
2524
  msgid "l-te"
2525
  msgstr "Telugu"
2526
 
2527
  # Telugu
2528
- #: ../../admin/lang/dynamic_strings.php:268
2529
  #, fuzzy
2530
  msgid "l-te-in"
2531
  msgstr "Telugu"
2532
 
2533
  # Thai
2534
- #: ../../admin/lang/dynamic_strings.php:269
2535
  msgid "l-th"
2536
  msgstr "Thai"
2537
 
2538
  # Thai
2539
- #: ../../admin/lang/dynamic_strings.php:270
2540
  #, fuzzy
2541
  msgid "l-th-th"
2542
  msgstr "Thai"
2543
 
2544
  # Tagalog
2545
- #: ../../admin/lang/dynamic_strings.php:271
2546
  msgid "l-tl"
2547
  msgstr "Tagalog"
2548
 
2549
  # Tagalog
2550
- #: ../../admin/lang/dynamic_strings.php:272
2551
  #, fuzzy
2552
  msgid "l-tl-ph"
2553
  msgstr "Tagalog"
2554
 
2555
  # Tswana
2556
- #: ../../admin/lang/dynamic_strings.php:273
2557
  msgid "l-tn"
2558
  msgstr "Tswana"
2559
 
2560
  # English (South Africa)
2561
- #: ../../admin/lang/dynamic_strings.php:274
2562
  #, fuzzy
2563
  msgid "l-tn-za"
2564
  msgstr "English (South Africa)"
2565
 
2566
  # Turkish
2567
- #: ../../admin/lang/dynamic_strings.php:275
2568
  msgid "l-tr"
2569
  msgstr "Turkish"
2570
 
2571
  # Turkish
2572
- #: ../../admin/lang/dynamic_strings.php:276
2573
  #, fuzzy
2574
  msgid "l-tr-tr"
2575
  msgstr "Turkish"
2576
 
2577
  # Tatar
2578
- #: ../../admin/lang/dynamic_strings.php:277
2579
  msgid "l-tt"
2580
  msgstr "Tatar"
2581
 
2582
  # Tatar
2583
- #: ../../admin/lang/dynamic_strings.php:278
2584
  #, fuzzy
2585
  msgid "l-tt-ru"
2586
  msgstr "Tatar"
2587
 
2588
  # Tsonga
2589
- #: ../../admin/lang/dynamic_strings.php:279
2590
  msgid "l-ts"
2591
  msgstr "Tsonga"
2592
 
2593
  # Ukrainian
2594
- #: ../../admin/lang/dynamic_strings.php:280
2595
  msgid "l-uk"
2596
  msgstr "Ukrainian"
2597
 
2598
  # Ukrainian
2599
- #: ../../admin/lang/dynamic_strings.php:281
2600
  #, fuzzy
2601
  msgid "l-uk-ua"
2602
  msgstr "Ukrainian"
2603
 
2604
  # Urdu
2605
- #: ../../admin/lang/dynamic_strings.php:282
2606
  msgid "l-ur"
2607
  msgstr "Urdu"
2608
 
2609
  # Urdu
2610
- #: ../../admin/lang/dynamic_strings.php:283
2611
  #, fuzzy
2612
  msgid "l-ur-pk"
2613
  msgstr "Urdu"
2614
 
2615
  # Uzbek
2616
- #: ../../admin/lang/dynamic_strings.php:284
2617
  msgid "l-uz"
2618
  msgstr "Uzbek"
2619
 
2620
  # Uzbek
2621
- #: ../../admin/lang/dynamic_strings.php:285
2622
  #, fuzzy
2623
  msgid "l-uz-uz"
2624
  msgstr "Uzbek"
2625
 
2626
  # Vietnamese
2627
- #: ../../admin/lang/dynamic_strings.php:286
2628
  msgid "l-vi"
2629
  msgstr "Vietnamese"
2630
 
2631
  # Vietnamese
2632
- #: ../../admin/lang/dynamic_strings.php:287
2633
  #, fuzzy
2634
  msgid "l-vi-vn"
2635
  msgstr "Vietnamese"
2636
 
2637
  # Xhosa
2638
- #: ../../admin/lang/dynamic_strings.php:288
2639
  msgid "l-xh"
2640
  msgstr "Xhosa"
2641
 
2642
  # Xhosa
2643
- #: ../../admin/lang/dynamic_strings.php:289
2644
  #, fuzzy
2645
  msgid "l-xh-za"
2646
  msgstr "Xhosa"
2647
 
2648
  # Chinese
2649
- #: ../../admin/lang/dynamic_strings.php:290
2650
  msgid "l-zh"
2651
  msgstr "Chinese"
2652
 
2653
  # Chinese (China)
2654
- #: ../../admin/lang/dynamic_strings.php:291
2655
  msgid "l-zh-cn"
2656
  msgstr "Chinese (China)"
2657
 
2658
  # Chinese (Hong Kong)
2659
- #: ../../admin/lang/dynamic_strings.php:292
2660
  msgid "l-zh-hk"
2661
  msgstr "Chinese (Hong Kong)"
2662
 
2663
  # Chinese
2664
- #: ../../admin/lang/dynamic_strings.php:293
2665
  #, fuzzy
2666
  msgid "l-zh-mo"
2667
  msgstr "Chinese"
2668
 
2669
  # Chinese (Singapore)
2670
- #: ../../admin/lang/dynamic_strings.php:294
2671
  msgid "l-zh-sg"
2672
  msgstr "Chinese (Singapore)"
2673
 
2674
  # Chinese (Taiwan)
2675
- #: ../../admin/lang/dynamic_strings.php:295
2676
  msgid "l-zh-tw"
2677
  msgstr "Chinese (Taiwan)"
2678
 
2679
  # Zulu
2680
- #: ../../admin/lang/dynamic_strings.php:296
2681
  msgid "l-zu"
2682
  msgstr "Zulu"
2683
 
2684
  # Zulu
2685
- #: ../../admin/lang/dynamic_strings.php:297
2686
  #, fuzzy
2687
  msgid "l-zu-za"
2688
  msgstr "Zulu"
2689
 
2690
- #: ../../admin/lang/dynamic_strings.php:298
2691
- #: ../../admin/view/wp-slimstat-reports.php:505
2692
  msgid "l-"
2693
  msgstr "l-"
2694
 
2695
  # Unknown
2696
- #: ../../admin/lang/dynamic_strings.php:299
2697
  msgid "l-empty"
2698
  msgstr "Unknown"
2699
 
2700
  # Unknown
2701
- #: ../../admin/lang/dynamic_strings.php:300
2702
  msgid "l-xx"
2703
  msgstr "Unknown"
2704
 
2705
- #: ../../admin/lang/dynamic_strings.php:301
2706
  msgid "c-xy"
2707
  msgstr "Local IP"
2708
 
2709
- #: ../../admin/view/index.php:24
2710
  msgid "is between (x,y)"
2711
  msgstr ""
2712
 
2713
- #: ../../admin/view/index.php:44
2714
  msgid "Load"
2715
  msgstr ""
2716
 
2717
- #: ../../admin/view/index.php:64 ../../admin/view/wp-slimstat-reports.php:821
2718
  msgid "Today"
2719
  msgstr "Hoy"
2720
 
2721
- #: ../../admin/view/index.php:65 ../../admin/view/wp-slimstat-reports.php:822
2722
  msgid "Yesterday"
2723
  msgstr "Ayer"
2724
 
2725
- #: ../../admin/view/index.php:66
2726
  msgid "Last 7 Days"
2727
  msgstr "Últimos 7 días"
2728
 
2729
- #: ../../admin/view/index.php:67
2730
  msgid "Last 60 Days"
2731
  msgstr "Últimos 60 días"
2732
 
2733
- #: ../../admin/view/index.php:68
2734
  msgid "Last 90 Days"
2735
  msgstr "Últimos 90 días"
2736
 
2737
- #: ../../admin/view/index.php:69
2738
  #, fuzzy
2739
  msgid "This Year So Far"
2740
  msgstr "Año"
2741
 
2742
- #: ../../admin/view/index.php:70
2743
  #, fuzzy
2744
  msgid "Date Range"
2745
  msgstr "Fecha y hora"
2746
 
2747
- #: ../../admin/view/index.php:72 ../../admin/view/wp-slimstat-db.php:70
 
2748
  msgid "Day"
2749
  msgstr "Día"
2750
 
2751
- #: ../../admin/view/index.php:82 ../../admin/view/wp-slimstat-db.php:71
 
2752
  msgid "Month"
2753
  msgstr "Mes"
2754
 
2755
- #: ../../admin/view/index.php:91 ../../admin/view/wp-slimstat-db.php:72
 
2756
  msgid "Year"
2757
  msgstr "Año"
2758
 
2759
- #: ../../admin/view/index.php:92 ../../admin/view/wp-slimstat-db.php:69
 
2760
  #, fuzzy
2761
  msgid "Hour"
2762
  msgstr "Paginas visitadas"
2763
 
2764
- #: ../../admin/view/index.php:93
2765
  msgid "Min"
2766
  msgstr ""
2767
 
2768
- #: ../../admin/view/index.php:101 ../../admin/view/wp-slimstat-db.php:75
 
2769
  msgid "hours"
2770
  msgstr ""
2771
 
2772
- #: ../../admin/view/index.php:102
2773
  msgid "mins"
2774
  msgstr ""
2775
 
2776
- #: ../../admin/view/index.php:110
2777
  #, fuzzy
2778
  msgid "Reset Filters"
2779
  msgstr "Filtros de fecha"
2780
 
2781
- #: ../../admin/view/index.php:151
 
 
 
 
 
 
 
2782
  msgid "Your report here"
2783
  msgstr "Su informe aquí"
2784
 
2785
- #: ../../admin/view/index.php:153
2786
  #, fuzzy
2787
  msgid ""
2788
  "Yes, you can! Create and view your personalized analytics for Slimstat. Just "
@@ -2802,13 +2996,7 @@ msgstr ""
2802
  "información, visite mi <a href=\"http://lab.duechiacchiere.it/\" target="
2803
  "\"_blank\"> Foro de Soporte </ a>."
2804
 
2805
- #: ../../admin/view/index.php:167 ../../admin/view/wp-slimstat-reports.php:812
2806
- #: ../../admin/view/wp-slimstat-reports.php:914
2807
- #: ../../admin/view/wp-slimstat-reports.php:1137
2808
- msgid "Pageviews"
2809
- msgstr "Paginas visitadas"
2810
-
2811
- #: ../../admin/view/index.php:170
2812
  #, fuzzy
2813
  msgid ""
2814
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
@@ -2820,45 +3008,45 @@ msgstr ""
2820
  "visitantes que regresan. Por favor, tenga en cuenta que los visitantes "
2821
  "también incluyen a los usuarios registrados."
2822
 
2823
- #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2824
- #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2825
  #, fuzzy
2826
  msgid "Color codes"
2827
  msgstr "Código de Pais"
2828
 
2829
- #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2830
  #, fuzzy
2831
  msgid "From search result page"
2832
  msgstr "Desde una página con resultados de búsqueda"
2833
 
2834
- #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2835
- #: ../../admin/wp-slimstat-admin.php:806
2836
  #, fuzzy
2837
  msgid "Known Visitor"
2838
  msgstr "Palabras clave recientes"
2839
 
2840
- #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2841
- #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2842
  #, fuzzy
2843
  msgid "Known Users"
2844
  msgstr "Navegadores recientes"
2845
 
2846
- #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2847
- #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2848
  msgid "Other Humans"
2849
  msgstr "Otros seres humanos"
2850
 
2851
- #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2852
  msgid "Bot or Crawler"
2853
  msgstr "Bot o Crawler"
2854
 
2855
- #: ../../admin/view/index.php:178
2856
  msgid "Keywords used by your visitors to find your website on a search engine."
2857
  msgstr ""
2858
  "Palabras clave utilizadas por los visitantes para encontrar su sitio en un "
2859
  "motor de búsqueda."
2860
 
2861
- #: ../../admin/view/index.php:181
2862
  #, fuzzy
2863
  msgid ""
2864
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
@@ -2869,11 +3057,17 @@ msgstr ""
2869
  "para medir el ranking de su sitio. Los valores se actualizan cada 12 horas. "
2870
  "Filtros indicados anteriormente no se aplican a este informe."
2871
 
2872
- #: ../../admin/view/index.php:184
2873
  msgid "Human Visits"
2874
  msgstr "Visitas humanas"
2875
 
2876
- #: ../../admin/view/index.php:187
 
 
 
 
 
 
2877
  #, fuzzy
2878
  msgid ""
2879
  "Internet Service Provider: a company which provides other companies or "
@@ -2887,7 +3081,7 @@ msgstr ""
2887
  "IP específicas estableciendo el filtro correspondiente en Configuración> "
2888
  "SLIMStat> Filtros."
2889
 
2890
- #: ../../admin/view/index.php:190
2891
  #, fuzzy
2892
  msgid ""
2893
  "You can configure Slimstat to ignore a specific Country by setting the "
@@ -2897,7 +3091,7 @@ msgstr ""
2897
  "el establecimiento de el filtro correspondiente en Configuración> SLIMStat> "
2898
  "Filtros."
2899
 
2900
- #: ../../admin/view/index.php:193
2901
  msgid ""
2902
  "This report shows you what user agent families (no version considered) are "
2903
  "popular among your visitors."
@@ -2905,7 +3099,7 @@ msgstr ""
2905
  "Este informe muestra qué familias de agentes de usuarios son populares entre "
2906
  "los visitantes (no considerada la versión)."
2907
 
2908
- #: ../../admin/view/index.php:196
2909
  msgid ""
2910
  "This report shows you what operating system families (no version considered) "
2911
  "are popular among your visitors."
@@ -2913,18 +3107,18 @@ msgstr ""
2913
  "Este informe le muestra qué familias de sistema operativo (sin versión "
2914
  "considerado) son populares entre los visitantes."
2915
 
2916
- #: ../../admin/view/index.php:199 ../../admin/view/wp-slimstat-reports.php:38
2917
- #: ../../admin/wp-slimstat-admin.php:509 ../../admin/wp-slimstat-admin.php:526
2918
- #: ../../wp-slimstat.php:1348
2919
  msgid "Traffic Sources"
2920
  msgstr "Origen del Tráfico"
2921
 
2922
- #: ../../admin/view/index.php:202
2923
  #, fuzzy
2924
  msgid "Average Pageviews per Visit"
2925
  msgstr "Promedio de páginas vistas por horas"
2926
 
2927
- #: ../../admin/view/index.php:205
2928
  msgid ""
2929
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
2930
  "left your site from the entrance (landing) page."
@@ -2933,13 +3127,13 @@ msgstr ""
2933
  "la que el usuario ha abandonado su sitio desde la página de entrada (de "
2934
  "aterrizaje)."
2935
 
2936
- #: ../../admin/view/index.php:208
2937
  msgid "Searches performed using Wordpress' built-in search functionality."
2938
  msgstr ""
2939
  "Búsquedas realizadas utilizando la funcionalidad integrada de búsqueda de "
2940
  "Wordpress"
2941
 
2942
- #: ../../admin/view/index.php:212
2943
  msgid ""
2944
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
2945
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
@@ -2950,7 +3144,7 @@ msgstr ""
2950
  "muestra cuando el enlace correspondiente tiene un atributo ID asociado a la "
2951
  "misma."
2952
 
2953
- #: ../../admin/view/index.php:215
2954
  msgid ""
2955
  "This report lists any <em>event</em> occurred on your website. Please refer "
2956
  "to the FAQ for more information on how to leverage this functionality."
@@ -2959,7 +3153,7 @@ msgstr ""
2959
  "Por favor, consulte las preguntas frecuentes para más información sobre cómo "
2960
  "aprovechar esta funcionalidad."
2961
 
2962
- #: ../../admin/view/index.php:218
2963
  msgid ""
2964
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2965
  "this report is not affected by the filters set here above."
@@ -2984,52 +3178,56 @@ msgstr "Dispositivo Móvil"
2984
  msgid "Syndication Reader"
2985
  msgstr "Lector de Sindicación"
2986
 
2987
- #: ../../admin/view/right-now.php:30
2988
- #: ../../admin/view/wp-slimstat-reports.php:440
2989
- #: ../../admin/view/wp-slimstat-reports.php:703
2990
  msgid "No data to display"
2991
  msgstr "No hay datos que mostrar"
2992
 
2993
  # Unknown
2994
- #: ../../admin/view/right-now.php:56
2995
- #: ../../admin/view/wp-slimstat-reports.php:493
2996
- #: ../../admin/view/wp-slimstat-reports.php:746
2997
- #: ../../admin/view/wp-slimstat-reports.php:1025
2998
  msgid "c-"
2999
  msgstr "Unknown"
3000
 
3001
- #: ../../admin/view/right-now.php:109 ../../admin/view/wp-slimstat-db.php:61
3002
- #: ../../admin/wp-slimstat-admin.php:808 ../../admin/wp-slimstat-admin.php:850
 
 
3003
  msgid "Originating IP"
3004
  msgstr "IP de Origen"
3005
 
3006
- #: ../../admin/view/right-now.php:130
3007
  msgid "Server Latency and Page Speed in milliseconds"
3008
  msgstr ""
3009
 
3010
- #: ../../admin/view/right-now.php:130
3011
  msgid "SL"
3012
  msgstr ""
3013
 
3014
- #: ../../admin/view/right-now.php:130
3015
  msgid "PS"
3016
  msgstr ""
3017
 
3018
- #: ../../admin/view/right-now.php:142
3019
- #: ../../admin/view/wp-slimstat-reports.php:552
3020
- #: ../../admin/view/wp-slimstat-reports.php:556
3021
- #: ../../admin/view/wp-slimstat-reports.php:728
3022
- #: ../../admin/view/wp-slimstat-reports.php:781
3023
  #, fuzzy
3024
  msgid "Open this URL in a new window"
3025
  msgstr "Abrir %s en una nueva ventana"
3026
 
3027
- #: ../../admin/view/right-now.php:145
3028
  msgid "Local search results page"
3029
  msgstr "Página de resultados de búsqueda local"
3030
 
3031
- #: ../../admin/view/right-now.php:150 ../../admin/view/wp-slimstat-db.php:40
3032
- #: ../../admin/wp-slimstat-admin.php:811 ../../admin/wp-slimstat-admin.php:827
 
 
3033
  #, fuzzy
3034
  msgid "Search Terms"
3035
  msgstr "Principales Recursos"
@@ -3039,11 +3237,6 @@ msgstr "Principales Recursos"
3039
  msgid "Open this referrer in a new window"
3040
  msgstr "Abrir referido en una nueva página"
3041
 
3042
- #: ../../admin/view/right-now.php:154
3043
- #, fuzzy
3044
- msgid "Open this outbound link in a new window"
3045
- msgstr "Abrir %s en una nueva ventana"
3046
-
3047
  #: ../../admin/view/right-now.php:155
3048
  #, fuzzy
3049
  msgid "Date and Time"
@@ -3054,654 +3247,717 @@ msgstr "Fecha/Hora"
3054
  msgid "Content Type"
3055
  msgstr "Contenido"
3056
 
3057
- #: ../../admin/view/wp-slimstat-db.php:37
3058
- #: ../../admin/wp-slimstat-admin.php:824
 
 
 
 
 
 
3059
  msgid "Browser"
3060
  msgstr "Navegador"
3061
 
3062
- #: ../../admin/view/wp-slimstat-db.php:38
3063
- #: ../../admin/view/wp-slimstat-reports.php:492
3064
- #: ../../admin/wp-slimstat-admin.php:825
 
3065
  msgid "Country Code"
3066
  msgstr "Código de Pais"
3067
 
3068
- #: ../../admin/view/wp-slimstat-db.php:39
 
3069
  msgid "IP Address"
3070
  msgstr "Dirección IP"
3071
 
3072
- #: ../../admin/view/wp-slimstat-db.php:41
3073
- #: ../../admin/view/wp-slimstat-reports.php:504
3074
- #: ../../admin/wp-slimstat-admin.php:828
 
3075
  msgid "Language Code"
3076
  msgstr "Código de Idioma"
3077
 
3078
- #: ../../admin/view/wp-slimstat-db.php:42
3079
- #: ../../admin/wp-slimstat-admin.php:829
 
3080
  msgid "Operating System"
3081
  msgstr "Sistema Operativo"
3082
 
3083
- #: ../../admin/view/wp-slimstat-db.php:43
3084
- #: ../../admin/wp-slimstat-admin.php:830
 
3085
  msgid "Permalink"
3086
  msgstr "Enlace Permanente"
3087
 
3088
- #: ../../admin/view/wp-slimstat-db.php:44
3089
  msgid "Domain"
3090
  msgstr "Dominio"
3091
 
3092
- #: ../../admin/view/wp-slimstat-db.php:45
3093
- #: ../../admin/wp-slimstat-admin.php:831
 
3094
  msgid "Referer"
3095
  msgstr "Referido"
3096
 
3097
- #: ../../admin/view/wp-slimstat-db.php:46
3098
- #: ../../admin/wp-slimstat-admin.php:832
 
3099
  #, fuzzy
3100
  msgid "Visitor's Name"
3101
  msgstr "Visitantes"
3102
 
3103
- #: ../../admin/view/wp-slimstat-db.php:47
 
3104
  msgid "Page Speed"
3105
  msgstr ""
3106
 
3107
- #: ../../admin/view/wp-slimstat-db.php:49
 
3108
  msgid "-- Advanced filters --"
3109
  msgstr "-- Filtros Avanzados --"
3110
 
3111
- #: ../../admin/view/wp-slimstat-db.php:50
3112
- #: ../../admin/view/wp-slimstat-reports.php:64
 
3113
  #, fuzzy
3114
  msgid "Browser Capabilities"
3115
  msgstr "Navegador"
3116
 
3117
- #: ../../admin/view/wp-slimstat-db.php:51
3118
- #: ../../admin/wp-slimstat-admin.php:843
 
3119
  #, fuzzy
3120
  msgid "Browser Version"
3121
  msgstr "Versión del Navegador"
3122
 
3123
- #: ../../admin/view/wp-slimstat-db.php:52
3124
- #: ../../admin/wp-slimstat-admin.php:844
 
3125
  #, fuzzy
3126
  msgid "Browser Type"
3127
  msgstr "Navegador"
3128
 
3129
- #: ../../admin/view/wp-slimstat-db.php:53
3130
- #: ../../admin/wp-slimstat-admin.php:813
 
3131
  #, fuzzy
3132
  msgid "User Agent"
3133
  msgstr "Buscadores"
3134
 
3135
- #: ../../admin/view/wp-slimstat-db.php:54
3136
- #: ../../admin/wp-slimstat-admin.php:845
 
3137
  msgid "Color Depth"
3138
  msgstr "Profundidad de color"
3139
 
3140
- #: ../../admin/view/wp-slimstat-db.php:55
3141
- #: ../../admin/wp-slimstat-admin.php:846
 
3142
  #, fuzzy
3143
  msgid "CSS Version"
3144
  msgstr "Versión de CSS"
3145
 
3146
- #: ../../admin/view/wp-slimstat-db.php:56
3147
- #: ../../admin/wp-slimstat-admin.php:847
 
3148
  #, fuzzy
3149
  msgid "Pageview Attributes"
3150
  msgstr "Paginas visitadas"
3151
 
3152
- #: ../../admin/view/wp-slimstat-db.php:57
 
3153
  msgid "Server Latency"
3154
  msgstr ""
3155
 
3156
- #: ../../admin/view/wp-slimstat-db.php:58
3157
- #: ../../admin/wp-slimstat-admin.php:814
3158
  #, fuzzy
3159
  msgid "Outbound Link"
3160
  msgstr "Enlaces Salientes Recientes"
3161
 
3162
- #: ../../admin/view/wp-slimstat-db.php:59
3163
- #: ../../admin/wp-slimstat-admin.php:848
 
3164
  msgid "Post Author"
3165
  msgstr "Autor de la entrada(sección)"
3166
 
3167
- #: ../../admin/view/wp-slimstat-db.php:60
3168
- #: ../../admin/wp-slimstat-admin.php:849
 
3169
  msgid "Post Category ID"
3170
  msgstr "ID de la entrada(sección) de la Categoria"
3171
 
3172
- #: ../../admin/view/wp-slimstat-db.php:62
3173
- #: ../../admin/wp-slimstat-admin.php:851
 
3174
  #, fuzzy
3175
  msgid "Resource Content Type"
3176
  msgstr "Contenidos Recientes"
3177
 
3178
- #: ../../admin/view/wp-slimstat-db.php:63
 
3179
  #, fuzzy
3180
  msgid "Resource ID"
3181
  msgstr "Principales Recursos"
3182
 
3183
- #: ../../admin/view/wp-slimstat-db.php:64
3184
- #: ../../admin/wp-slimstat-admin.php:852
3185
  msgid "Screen Resolution"
3186
  msgstr "Resolución de Pantalla"
3187
 
3188
- #: ../../admin/view/wp-slimstat-db.php:65
3189
- #: ../../admin/wp-slimstat-admin.php:853
 
3190
  #, fuzzy
3191
  msgid "Visit ID"
3192
  msgstr "Visitas"
3193
 
3194
- #: ../../admin/view/wp-slimstat-db.php:68
 
3195
  msgid "Minute"
3196
  msgstr ""
3197
 
3198
- #: ../../admin/view/wp-slimstat-db.php:73
 
3199
  msgid "+/-"
3200
  msgstr ""
3201
 
3202
- #: ../../admin/view/wp-slimstat-db.php:76
 
3203
  #, fuzzy
3204
  msgid "minutes"
3205
  msgstr "1 - 3 minutos"
3206
 
3207
- #: ../../admin/view/wp-slimstat-db.php:78
3208
  #, fuzzy
3209
  msgid "Order Direction"
3210
  msgstr "director"
3211
 
3212
- #: ../../admin/view/wp-slimstat-db.php:79
 
3213
  msgid "Limit Results"
3214
  msgstr "Limitar Resultados"
3215
 
3216
- #: ../../admin/view/wp-slimstat-db.php:80
 
3217
  msgid "Start From"
3218
  msgstr "Comenzar desde"
3219
 
3220
- #: ../../admin/view/wp-slimstat-reports.php:34
3221
- #: ../../admin/wp-slimstat-admin.php:505 ../../wp-slimstat.php:1344
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3222
  msgid "Real-Time Log"
3223
  msgstr ""
3224
 
3225
- #: ../../admin/view/wp-slimstat-reports.php:35
3226
- #: ../../admin/wp-slimstat-admin.php:506 ../../admin/wp-slimstat-admin.php:523
3227
- #: ../../wp-slimstat.php:1345
3228
  msgid "Overview"
3229
  msgstr "Visión general"
3230
 
3231
- #: ../../admin/view/wp-slimstat-reports.php:36
3232
- #: ../../admin/wp-slimstat-admin.php:507 ../../admin/wp-slimstat-admin.php:524
3233
- #: ../../wp-slimstat.php:1346
3234
  msgid "Audience"
3235
  msgstr ""
3236
 
3237
- #: ../../admin/view/wp-slimstat-reports.php:37
3238
- #: ../../admin/wp-slimstat-admin.php:508 ../../admin/wp-slimstat-admin.php:525
3239
- #: ../../wp-slimstat.php:1347
3240
  msgid "Site Analysis"
3241
  msgstr ""
3242
 
3243
- #: ../../admin/view/wp-slimstat-reports.php:39
3244
- #: ../../admin/wp-slimstat-admin.php:510 ../../admin/wp-slimstat-admin.php:527
3245
- #: ../../wp-slimstat.php:1349
3246
  msgid "Map Overlay"
3247
  msgstr ""
3248
 
3249
- #: ../../admin/view/wp-slimstat-reports.php:40
3250
- #: ../../admin/wp-slimstat-admin.php:511 ../../admin/wp-slimstat-admin.php:528
3251
- #: ../../wp-slimstat.php:1350
3252
  msgid "Custom Reports"
3253
  msgstr "Informes Personalizados"
3254
 
3255
- #: ../../admin/view/wp-slimstat-reports.php:44
3256
  #, fuzzy
3257
  msgid "Pageviews (chart)"
3258
  msgstr "Páginas visitadas por horas"
3259
 
3260
- #: ../../admin/view/wp-slimstat-reports.php:45
3261
  #, fuzzy
3262
  msgid "About Slimstat"
3263
  msgstr "Acerca de WP-SlimStat"
3264
 
3265
- #: ../../admin/view/wp-slimstat-reports.php:46
3266
  msgid "At a Glance"
3267
  msgstr "Un vistazo"
3268
 
3269
- #: ../../admin/view/wp-slimstat-reports.php:47
3270
  #, fuzzy
3271
  msgid "Currently Online"
3272
  msgstr "Filtros Actuales:"
3273
 
3274
- #: ../../admin/view/wp-slimstat-reports.php:48
3275
  #: ../../admin/view/wp-slimstat-reports.php:82
3276
- msgid "Spy View"
3277
- msgstr "Vista de Espía"
3278
-
3279
- #: ../../admin/view/wp-slimstat-reports.php:49
3280
- #: ../../admin/view/wp-slimstat-reports.php:83
3281
  #, fuzzy
3282
  msgid "Recent Search Terms"
3283
  msgstr "Búsquedas Internas Recientes"
3284
 
3285
- #: ../../admin/view/wp-slimstat-reports.php:50
3286
  #, fuzzy
3287
  msgid "Top Pages"
3288
  msgstr "Principales Páginas de Salida"
3289
 
3290
- #: ../../admin/view/wp-slimstat-reports.php:51
3291
- #: ../../admin/view/wp-slimstat-reports.php:80
3292
  #, fuzzy
3293
  msgid "Top Traffic Sources"
3294
  msgstr "Origen del Tráfico"
3295
 
3296
- #: ../../admin/view/wp-slimstat-reports.php:52
3297
  #, fuzzy
3298
  msgid "Top Known Visitors"
3299
  msgstr "Palabras clave recientes"
3300
 
3301
- #: ../../admin/view/wp-slimstat-reports.php:53
3302
- #: ../../admin/view/wp-slimstat-reports.php:78
3303
- #: ../../admin/view/wp-slimstat-reports.php:98
3304
  #, fuzzy
3305
  msgid "Top Search Terms"
3306
  msgstr "Principales Recursos"
3307
 
3308
- #: ../../admin/view/wp-slimstat-reports.php:54
3309
- #: ../../admin/view/wp-slimstat-reports.php:65
3310
- #: ../../admin/view/wp-slimstat-reports.php:79
3311
  msgid "Top Countries"
3312
  msgstr "Paises que más visitan"
3313
 
3314
- #: ../../admin/view/wp-slimstat-reports.php:55
3315
  msgid "Rankings"
3316
  msgstr "Calificaciones"
3317
 
3318
- #: ../../admin/view/wp-slimstat-reports.php:56
3319
  #, fuzzy
3320
  msgid "Top Language Families"
3321
  msgstr "Idiomas"
3322
 
3323
- #: ../../admin/view/wp-slimstat-reports.php:57
 
 
 
 
3324
  #, fuzzy
3325
  msgid "Human Visits (chart)"
3326
  msgstr "Visitas humanas por hora"
3327
 
3328
- #: ../../admin/view/wp-slimstat-reports.php:58
3329
  #, fuzzy
3330
  msgid "Audience Overview"
3331
  msgstr "Visión general"
3332
 
3333
- #: ../../admin/view/wp-slimstat-reports.php:59
3334
  #, fuzzy
3335
  msgid "Top Languages"
3336
  msgstr "Idiomas"
3337
 
3338
- #: ../../admin/view/wp-slimstat-reports.php:60
3339
  #, fuzzy
3340
  msgid "Top Browsers"
3341
  msgstr "Navegador"
3342
 
3343
- #: ../../admin/view/wp-slimstat-reports.php:61
3344
  #, fuzzy
3345
  msgid "Top Service Providers"
3346
  msgstr "Principales Recursos"
3347
 
3348
- #: ../../admin/view/wp-slimstat-reports.php:62
3349
  #, fuzzy
3350
  msgid "Top Operating Systems"
3351
  msgstr "Sistemas Operativos"
3352
 
3353
- #: ../../admin/view/wp-slimstat-reports.php:63
3354
  #, fuzzy
3355
  msgid "Top Screen Resolutions"
3356
  msgstr "Resolución de Pantalla"
3357
 
3358
- #: ../../admin/view/wp-slimstat-reports.php:66
3359
  #, fuzzy
3360
  msgid "Visit Duration"
3361
  msgstr "Visitas"
3362
 
3363
- #: ../../admin/view/wp-slimstat-reports.php:67
3364
- #: ../../admin/view/wp-slimstat-reports.php:84
3365
  msgid "Recent Countries"
3366
  msgstr "Paises Recientes"
3367
 
3368
- #: ../../admin/view/wp-slimstat-reports.php:68
3369
  #, fuzzy
3370
  msgid "Recent Screen Resolutions"
3371
  msgstr "Resolución de Pantalla"
3372
 
3373
- #: ../../admin/view/wp-slimstat-reports.php:69
3374
  #, fuzzy
3375
  msgid "Recent Operating Systems"
3376
  msgstr "Sistemas Operativos"
3377
 
3378
- #: ../../admin/view/wp-slimstat-reports.php:70
3379
  #, fuzzy
3380
  msgid "Recent Browsers"
3381
  msgstr "Contenidos Recientes"
3382
 
3383
- #: ../../admin/view/wp-slimstat-reports.php:71
3384
  #, fuzzy
3385
  msgid "Recent Languages"
3386
  msgstr "Idiomas"
3387
 
3388
- #: ../../admin/view/wp-slimstat-reports.php:72
3389
  #, fuzzy
3390
  msgid "Top Browser Families"
3391
  msgstr "Navegador"
3392
 
3393
- #: ../../admin/view/wp-slimstat-reports.php:73
3394
  msgid "Top OS Families"
3395
  msgstr "Páginas Recientes no encontradas"
3396
 
3397
- #: ../../admin/view/wp-slimstat-reports.php:74
3398
  #, fuzzy
3399
  msgid "Recent Users"
3400
  msgstr "Buscadores"
3401
 
3402
- #: ../../admin/view/wp-slimstat-reports.php:75
3403
  #, fuzzy
3404
  msgid "Top Users"
3405
  msgstr "Buscadores"
3406
 
3407
- #: ../../admin/view/wp-slimstat-reports.php:76
3408
  #, fuzzy
3409
  msgid "Traffic Sources (chart)"
3410
  msgstr "Origen del Tráfico"
3411
 
3412
- #: ../../admin/view/wp-slimstat-reports.php:77
3413
  #, fuzzy
3414
  msgid "Summary"
3415
  msgstr "Sumario de"
3416
 
3417
- #: ../../admin/view/wp-slimstat-reports.php:81
3418
  #, fuzzy
3419
  msgid "Top Referring Search Engines"
3420
  msgstr "Motores de Búsqueda"
3421
 
3422
- #: ../../admin/view/wp-slimstat-reports.php:85
3423
- #: ../../admin/view/wp-slimstat-reports.php:101
3424
- #, fuzzy
3425
- msgid "Top Landing Pages"
3426
- msgstr "Principales Páginas de Salida"
3427
 
3428
- #: ../../admin/view/wp-slimstat-reports.php:86
3429
  #, fuzzy
3430
- msgid "Average Pageviews per Visit (chart)"
3431
- msgstr "Promedio de páginas vistas por horas"
3432
 
3433
- #: ../../admin/view/wp-slimstat-reports.php:87
3434
  #, fuzzy
3435
  msgid "Recent Posts"
3436
  msgstr "Contenidos Recientes"
3437
 
3438
- #: ../../admin/view/wp-slimstat-reports.php:88
3439
  #, fuzzy
3440
  msgid "Recent Bounce Pages"
3441
  msgstr "Páginas recientes de rebote"
3442
 
3443
- #: ../../admin/view/wp-slimstat-reports.php:89
3444
  msgid "Recent Feeds"
3445
  msgstr "Feeds Recientes"
3446
 
3447
- #: ../../admin/view/wp-slimstat-reports.php:90
3448
  msgid "Recent Pages Not Found"
3449
  msgstr "Páginas Recientes no encontradas"
3450
 
3451
- #: ../../admin/view/wp-slimstat-reports.php:91
3452
  msgid "Recent Internal Searches"
3453
  msgstr "Búsquedas Internas Recientes"
3454
 
3455
- #: ../../admin/view/wp-slimstat-reports.php:92
3456
  #, fuzzy
3457
  msgid "Top Categories"
3458
  msgstr "Principales Páginas de Salida"
3459
 
3460
- #: ../../admin/view/wp-slimstat-reports.php:93
3461
  msgid "Recent Outbound Links"
3462
  msgstr "Enlaces Salientes Recientes"
3463
 
3464
- #: ../../admin/view/wp-slimstat-reports.php:94
3465
  #, fuzzy
3466
  msgid "Recent Events"
3467
  msgstr "Contenidos Recientes"
3468
 
3469
- #: ../../admin/view/wp-slimstat-reports.php:95
3470
  #, fuzzy
3471
  msgid "Top Posts"
3472
  msgstr "Paises que más visitan"
3473
 
3474
- #: ../../admin/view/wp-slimstat-reports.php:96
3475
  #, fuzzy
3476
  msgid "Top Feeds"
3477
  msgstr "Top Palabras Clave"
3478
 
3479
- #: ../../admin/view/wp-slimstat-reports.php:97
3480
  #, fuzzy
3481
  msgid "Top Internal Searches"
3482
  msgstr "Búsquedas Internas Recientes"
3483
 
3484
- #: ../../admin/view/wp-slimstat-reports.php:99
3485
  #, fuzzy
3486
  msgid "Recent Categories"
3487
  msgstr "Paises Recientes"
3488
 
3489
- #: ../../admin/view/wp-slimstat-reports.php:100
3490
  #, fuzzy
3491
  msgid "Top Pages Not Found"
3492
  msgstr "Principales Páginas de Salida"
3493
 
3494
- #: ../../admin/view/wp-slimstat-reports.php:102
 
 
 
 
 
3495
  #, fuzzy
3496
  msgid "Top Authors"
3497
  msgstr "Autor de la entrada(sección)"
3498
 
3499
- #: ../../admin/view/wp-slimstat-reports.php:103
3500
  #, fuzzy
3501
  msgid "Top Tags"
3502
  msgstr "Principales Páginas de Salida"
3503
 
3504
- #: ../../admin/view/wp-slimstat-reports.php:104
3505
  msgid "Recent Downloads"
3506
  msgstr "Descargas Recientes"
3507
 
3508
- #: ../../admin/view/wp-slimstat-reports.php:105
3509
  #, fuzzy
3510
  msgid "Top OutLinks and Downloads"
3511
  msgstr "Los mejores enlaces y descargas hacia afuera"
3512
 
3513
- #: ../../admin/view/wp-slimstat-reports.php:106
3514
  msgid "Your Website"
3515
  msgstr "Su sitio web"
3516
 
 
 
 
 
 
3517
  #: ../../admin/view/wp-slimstat-reports.php:107
 
 
 
 
 
 
 
 
 
 
3518
  msgid "World Map"
3519
  msgstr "Mapa del Mundo"
3520
 
3521
- #: ../../admin/view/wp-slimstat-reports.php:108
3522
  #, fuzzy
3523
  msgid "Activity"
3524
  msgstr "Bitácora de actividades"
3525
 
3526
- #: ../../admin/view/wp-slimstat-reports.php:215
3527
  msgid "Chart controls"
3528
  msgstr "Controles de gráfica"
3529
 
3530
- #: ../../admin/view/wp-slimstat-reports.php:215
3531
  msgid "Use your mouse wheel to zoom in and out"
3532
  msgstr "Use su ratón para acercarse y alejarse"
3533
 
3534
- #: ../../admin/view/wp-slimstat-reports.php:215
3535
  msgid "While zooming in, drag the chart to move to a different area"
3536
  msgstr "Al acercarse, arrastre la gráfica para mverla a otra área"
3537
 
3538
- #: ../../admin/view/wp-slimstat-reports.php:215
3539
  msgid "Double click on an empty region to reset the zoom level"
3540
  msgstr ""
3541
  "Haga doble clic en una región vacía para resetear el nivel de acercamiento"
3542
 
3543
- #: ../../admin/view/wp-slimstat-reports.php:228
3544
  msgid "src"
3545
  msgstr "Src"
3546
 
3547
- #: ../../admin/view/wp-slimstat-reports.php:229
3548
  msgid "serp"
3549
  msgstr "Serp"
3550
 
3551
- #: ../../admin/view/wp-slimstat-reports.php:234
3552
- msgid "Go to the corresponding search engine result page"
3553
- msgstr "Vaya a la página de resultados de motor de búsqueda correspondiente"
3554
-
3555
- #: ../../admin/view/wp-slimstat-reports.php:237
3556
  msgid "Go to the referring page"
3557
  msgstr "Vaya a la página de referencia"
3558
 
3559
- #: ../../admin/view/wp-slimstat-reports.php:260
3560
  #, fuzzy
3561
  msgid "Remove filter for"
3562
  msgstr "Seleccionar filtro"
3563
 
3564
- #: ../../admin/view/wp-slimstat-reports.php:264
3565
  msgid "Save"
3566
  msgstr ""
3567
 
3568
- #: ../../admin/view/wp-slimstat-reports.php:267
3569
  msgid "Reset All"
3570
  msgstr "Resetear todos"
3571
 
3572
- #: ../../admin/view/wp-slimstat-reports.php:271
3573
  msgid "Current filters:"
3574
  msgstr "Filtros Actuales:"
3575
 
3576
- #: ../../admin/view/wp-slimstat-reports.php:275
3577
  msgid "Refresh"
3578
  msgstr "Refrescar"
3579
 
3580
- #: ../../admin/view/wp-slimstat-reports.php:354
3581
  #, php-format
3582
  msgid "Results %s - %s of %s"
3583
  msgstr "Resultados %s - %s de %s"
3584
 
3585
- #: ../../admin/view/wp-slimstat-reports.php:356
3586
  msgid "Refresh in"
3587
  msgstr "Refrescar en"
3588
 
3589
- #: ../../admin/view/wp-slimstat-reports.php:378
3590
- #: ../../admin/view/wp-slimstat-reports.php:390
3591
  #, fuzzy, php-format
3592
  msgid "Daily %s"
3593
  msgstr "Paginas visitadas"
3594
 
3595
- #: ../../admin/view/wp-slimstat-reports.php:381
3596
  #, php-format
3597
  msgid "%s Minute by Minute"
3598
  msgstr "%s Minuto a Minuto"
3599
 
3600
- #: ../../admin/view/wp-slimstat-reports.php:384
3601
  #, fuzzy, php-format
3602
  msgid "Hourly %s"
3603
  msgstr "Paginas visitadas"
3604
 
3605
- #: ../../admin/view/wp-slimstat-reports.php:387
3606
  #, fuzzy, php-format
3607
  msgid "Monthly %s"
3608
  msgstr "Mes"
3609
 
3610
- #: ../../admin/view/wp-slimstat-reports.php:475
3611
  #, fuzzy
3612
  msgid "Category ID"
3613
  msgstr "ID de la entrada(sección) de la Categoria"
3614
 
3615
- #: ../../admin/view/wp-slimstat-reports.php:508
3616
  msgid "OS Code"
3617
  msgstr "Código OS"
3618
 
3619
- #: ../../admin/view/wp-slimstat-reports.php:518
3620
  #, fuzzy
3621
  msgid "Referrer"
3622
  msgstr "Referido"
3623
 
3624
- #: ../../admin/view/wp-slimstat-reports.php:542
3625
- #: ../../admin/view/wp-slimstat-reports.php:849
3626
- #: ../../admin/view/wp-slimstat-reports.php:858
3627
- #: ../../admin/view/wp-slimstat-reports.php:864
3628
- #: ../../admin/view/wp-slimstat-reports.php:870
3629
- #: ../../admin/view/wp-slimstat-reports.php:876
3630
- #: ../../admin/view/wp-slimstat-reports.php:882
3631
- #: ../../admin/view/wp-slimstat-reports.php:888
3632
- #: ../../admin/view/wp-slimstat-reports.php:894
3633
  #, fuzzy
3634
  msgid "Hits"
3635
  msgstr "Visitas"
3636
 
3637
- #: ../../admin/view/wp-slimstat-reports.php:720
3638
  #, fuzzy
3639
  msgid "Search for"
3640
  msgstr "Sumario de"
3641
 
3642
- #: ../../admin/view/wp-slimstat-reports.php:771
3643
- #: ../../admin/view/wp-slimstat-reports.php:781
3644
  #, fuzzy
3645
  msgid "Source"
3646
  msgstr "Porcentaje de Abandonos"
3647
 
3648
- #: ../../admin/view/wp-slimstat-reports.php:773
3649
  msgid "Keywords"
3650
  msgstr "Palabras clave"
3651
 
3652
- #: ../../admin/view/wp-slimstat-reports.php:781
3653
  #, php-format
3654
  msgid "Filter results where resource equals %s"
3655
  msgstr "Filtrar resultados donde la fuente sea %s"
3656
 
3657
- #: ../../admin/view/wp-slimstat-reports.php:782
3658
  #, fuzzy
3659
  msgid "Link Details"
3660
  msgstr "Expandir Detalles"
3661
 
3662
- #: ../../admin/view/wp-slimstat-reports.php:795
3663
  #, fuzzy
3664
  msgid "Total Pageviews"
3665
  msgstr "Paginas visitadas"
3666
 
3667
- #: ../../admin/view/wp-slimstat-reports.php:796
3668
  #, fuzzy
3669
  msgid "DB Size"
3670
  msgstr "Tamaño de los Datos"
3671
 
3672
- #: ../../admin/view/wp-slimstat-reports.php:797
3673
  msgid "Tracking Active"
3674
  msgstr "Seguimiento Activo"
3675
 
3676
- #: ../../admin/view/wp-slimstat-reports.php:798
3677
  msgid "Javascript Mode"
3678
  msgstr "Modo Javascript"
3679
 
3680
- #: ../../admin/view/wp-slimstat-reports.php:799
3681
  msgid "Tracking Browser Caps"
3682
  msgstr "Caps para rastreo de Navegador"
3683
 
3684
- #: ../../admin/view/wp-slimstat-reports.php:800
3685
  msgid "Auto purge"
3686
  msgstr "Autopurgar"
3687
 
3688
- #: ../../admin/view/wp-slimstat-reports.php:800
3689
- #: ../../admin/wp-slimstat-admin.php:883
3690
  msgid "No"
3691
  msgstr "No"
3692
 
3693
- #: ../../admin/view/wp-slimstat-reports.php:801
3694
  #, fuzzy
3695
  msgid "Oldest pageview"
3696
  msgstr "Visita más larga"
3697
 
3698
- #: ../../admin/view/wp-slimstat-reports.php:801
3699
  #, fuzzy
3700
  msgid "No visits"
3701
  msgstr "Visitantes"
3702
 
3703
- #: ../../admin/view/wp-slimstat-reports.php:811
3704
- #: ../../admin/view/wp-slimstat-reports.php:913
3705
  #, fuzzy
3706
  msgid ""
3707
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
@@ -3710,16 +3966,16 @@ msgstr ""
3710
  "Una petición para cargar un archivo HTML único. WP SlimStat registra un "
3711
  "\"pageview\" cada vez que se ejecuta el código de rastreo."
3712
 
3713
- #: ../../admin/view/wp-slimstat-reports.php:813
3714
  msgid "How many pages have been visited on average during the current period."
3715
  msgstr "Cuántas páginas se han visitado en promedio durante el período actual."
3716
 
3717
- #: ../../admin/view/wp-slimstat-reports.php:814
3718
  #, fuzzy
3719
  msgid "Average Pageviews"
3720
  msgstr "Promedio Paginas Visitadas"
3721
 
3722
- #: ../../admin/view/wp-slimstat-reports.php:815
3723
  msgid ""
3724
  "Visitors who landed on your site after searching for a keyword on Google, "
3725
  "Yahoo, etc."
@@ -3727,12 +3983,12 @@ msgstr ""
3727
  "Visitantes que han llegado a su sitio después de buscar una palabra clave en "
3728
  "Google, yahoo, etc."
3729
 
3730
- #: ../../admin/view/wp-slimstat-reports.php:816
3731
  #, fuzzy
3732
  msgid "From Search Results"
3733
  msgstr "Principales Recursos"
3734
 
3735
- #: ../../admin/view/wp-slimstat-reports.php:817
3736
  msgid ""
3737
  "Used to differentiate between multiple requests to download a file from one "
3738
  "internet address (IP) and requests originating from many distinct addresses"
@@ -3741,23 +3997,15 @@ msgstr ""
3741
  "desde una dirección de internet (IP) y peticiones que se originan en muchas "
3742
  "diferentes direcciones"
3743
 
3744
- #: ../../admin/view/wp-slimstat-reports.php:818
3745
- #: ../../admin/view/wp-slimstat-reports.php:833
3746
- #: ../../admin/view/wp-slimstat-reports.php:1137
3747
- #: ../../admin/view/wp-slimstat-reports.php:1141
3748
- #: ../../admin/view/wp-slimstat-reports.php:1145
3749
- msgid "Unique IPs"
3750
- msgstr "IPs Unicas"
3751
-
3752
- #: ../../admin/view/wp-slimstat-reports.php:819
3753
  msgid "Last 5 minutes"
3754
  msgstr "Últimos 5 minutos"
3755
 
3756
- #: ../../admin/view/wp-slimstat-reports.php:820
3757
  msgid "Last 30 minutes"
3758
  msgstr "Últimos 30 minutos"
3759
 
3760
- #: ../../admin/view/wp-slimstat-reports.php:830
3761
  msgid ""
3762
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3763
  "multiple times if they perform multiple visits."
@@ -3765,16 +4013,17 @@ msgstr ""
3765
  "Una visita es una sesión de cuando mucho 30 minutos.Los visitantes de "
3766
  "regreso se cuentan múltiples veces si llevan a cabo múltiples visitas."
3767
 
3768
- #: ../../admin/view/wp-slimstat-reports.php:831
3769
- msgid "Human visits"
3770
- msgstr "Visitas humanas"
 
3771
 
3772
- #: ../../admin/view/wp-slimstat-reports.php:832
3773
  msgid "It includes only traffic generated by human visitors."
3774
  msgstr "Incluye sólo tráfico generado por visitantes humanos."
3775
 
3776
- #: ../../admin/view/wp-slimstat-reports.php:834
3777
- #: ../../admin/view/wp-slimstat-reports.php:925
3778
  msgid ""
3779
  "Percentage of single-page visits, i.e. visits in which the person left your "
3780
  "site from the entrance page."
@@ -3782,80 +4031,79 @@ msgstr ""
3782
  "Porcentaje de visitas de una página, p. ej. visitas en las cuales la persona "
3783
  "dejó su sitio desde la página de entrada."
3784
 
3785
- #: ../../admin/view/wp-slimstat-reports.php:835
3786
  msgid "Bounce rate"
3787
  msgstr "Porcentaje de Abandonos"
3788
 
3789
- #: ../../admin/view/wp-slimstat-reports.php:836
3790
  msgid "Visitors who had previously left a comment on your blog."
3791
  msgstr "Visitantes que han dejado un comentario en su blog previamente."
3792
 
3793
- #: ../../admin/view/wp-slimstat-reports.php:837
3794
  #, fuzzy
3795
  msgid "Known visitors"
3796
  msgstr "Palabras clave recientes"
3797
 
3798
- #: ../../admin/view/wp-slimstat-reports.php:838
3799
  msgid "Human users who visited your site only once."
3800
  msgstr "Visitantes humanos que visitaron su sitio sólo una vez."
3801
 
3802
- #: ../../admin/view/wp-slimstat-reports.php:839
3803
  #, fuzzy
3804
  msgid "New visitors"
3805
  msgstr "Visitantes"
3806
 
3807
- #: ../../admin/view/wp-slimstat-reports.php:840
3808
  msgid "Bots"
3809
  msgstr "Motores de Búsqueda"
3810
 
3811
- #: ../../admin/view/wp-slimstat-reports.php:841
3812
  msgid "Pages per visit"
3813
  msgstr "Páginas por visita"
3814
 
3815
- #: ../../admin/view/wp-slimstat-reports.php:842
3816
- #: ../../admin/view/wp-slimstat-reports.php:1150
3817
  msgid "Longest visit"
3818
  msgstr "Visita más larga"
3819
 
3820
- #: ../../admin/view/wp-slimstat-reports.php:842
3821
  #, fuzzy
3822
  msgid "hits"
3823
  msgstr "Visitas"
3824
 
3825
- #: ../../admin/view/wp-slimstat-reports.php:860
3826
  msgid "0 - 30 seconds"
3827
  msgstr "0 - 30 segundos"
3828
 
3829
- #: ../../admin/view/wp-slimstat-reports.php:866
3830
  msgid "31 - 60 seconds"
3831
  msgstr "31 - 60 segundos"
3832
 
3833
- #: ../../admin/view/wp-slimstat-reports.php:872
3834
  msgid "1 - 3 minutes"
3835
  msgstr "1 - 3 minutos"
3836
 
3837
- #: ../../admin/view/wp-slimstat-reports.php:878
3838
  msgid "3 - 5 minutes"
3839
  msgstr "3 - 5 minutos"
3840
 
3841
- #: ../../admin/view/wp-slimstat-reports.php:884
3842
  msgid "5 - 7 minutes"
3843
  msgstr "5 - 7 minutos"
3844
 
3845
- #: ../../admin/view/wp-slimstat-reports.php:890
3846
  msgid "7 - 10 minutes"
3847
  msgstr "7 - 10 minutos"
3848
 
3849
- #: ../../admin/view/wp-slimstat-reports.php:896
3850
  msgid "More than 10 minutes"
3851
  msgstr "Más de 10 minutos"
3852
 
3853
- #: ../../admin/view/wp-slimstat-reports.php:905
3854
  #, fuzzy
3855
  msgid "Average time on site"
3856
  msgstr "Promedio de páginas vistas por horas"
3857
 
3858
- #: ../../admin/view/wp-slimstat-reports.php:915
3859
  msgid ""
3860
  "A referrer (or referring site) is the site that a visitor previously visited "
3861
  "before following a link to your site."
@@ -3863,12 +4111,12 @@ msgstr ""
3863
  "Un sitio referente (o que refiere) es el sitio al cual el visitante tuvo "
3864
  "acceso antes de seguir un enlace a su sitio."
3865
 
3866
- #: ../../admin/view/wp-slimstat-reports.php:916
3867
  #, fuzzy
3868
  msgid "Unique Referrers"
3869
  msgstr "Referidos Únicos"
3870
 
3871
- #: ../../admin/view/wp-slimstat-reports.php:917
3872
  msgid ""
3873
  "Visitors who visited the site by typing the URL directly into their browser. "
3874
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -3880,12 +4128,12 @@ msgstr ""
3880
  "hicieron clic en sus favoritos, usaron etiquetas de enlaces en emails, o "
3881
  "enlaces de documentos que no incluyen variables de rastreo."
3882
 
3883
- #: ../../admin/view/wp-slimstat-reports.php:918
3884
  #, fuzzy
3885
  msgid "Direct Pageviews"
3886
  msgstr "Paginas visitadas"
3887
 
3888
- #: ../../admin/view/wp-slimstat-reports.php:919
3889
  msgid ""
3890
  "Visitors who came to your site via searches on Google or some other search "
3891
  "engine."
@@ -3893,11 +4141,11 @@ msgstr ""
3893
  "Visitantes que llegaron a su sitio después de buscar una palabra clave en "
3894
  "Google, yahoo, etc."
3895
 
3896
- #: ../../admin/view/wp-slimstat-reports.php:920
3897
  msgid "From a search result"
3898
  msgstr "Desde un resultado de búsqueda"
3899
 
3900
- #: ../../admin/view/wp-slimstat-reports.php:921
3901
  msgid ""
3902
  "The first page that a user views during a session. This is also known as the "
3903
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -3909,26 +4157,26 @@ msgstr ""
3909
  "Brooklyn,” y llegan a su página de inicio, se cuenta (para esa visita) como "
3910
  "página de entrada."
3911
 
3912
- #: ../../admin/view/wp-slimstat-reports.php:922
3913
  #, fuzzy
3914
  msgid "Unique Landing Pages"
3915
  msgstr "IPs Unicas"
3916
 
3917
- #: ../../admin/view/wp-slimstat-reports.php:923
3918
  msgid "Number of single-page visits to your site over the selected period."
3919
  msgstr "Número de visitas a una página en el período seleccionado."
3920
 
3921
- #: ../../admin/view/wp-slimstat-reports.php:924
3922
  #, fuzzy
3923
  msgid "Bounce Pages"
3924
  msgstr "Porcentaje de Abandonos"
3925
 
3926
- #: ../../admin/view/wp-slimstat-reports.php:926
3927
  #, fuzzy
3928
  msgid "New Visitors Rate"
3929
  msgstr "Visitantes"
3930
 
3931
- #: ../../admin/view/wp-slimstat-reports.php:927
3932
  msgid ""
3933
  "Visitors who visited the site in the last 5 minutes coming from a search "
3934
  "engine."
@@ -3936,29 +4184,29 @@ msgstr ""
3936
  "Visitantes que visitaron el sitio en los últimos 5 minutos y vienen de un "
3937
  "motor de búsqueda."
3938
 
3939
- #: ../../admin/view/wp-slimstat-reports.php:928
3940
  #, fuzzy
3941
  msgid "Currently from search engines"
3942
  msgstr "Motores de Búsqueda"
3943
 
3944
- #: ../../admin/view/wp-slimstat-reports.php:996
3945
  msgid "Number of pages in your site included in Google's index."
3946
  msgstr "Número de páginas en su sitio incluidas en el índice de Google."
3947
 
3948
- #: ../../admin/view/wp-slimstat-reports.php:997
3949
  msgid "Google Index"
3950
  msgstr "Indice de Google"
3951
 
3952
- #: ../../admin/view/wp-slimstat-reports.php:998
3953
  msgid "Number of pages, according to Google, that link back to your site."
3954
  msgstr ""
3955
  "Número de páginas, de acuerdo a Google, que enlazan de regreso a su sitio."
3956
 
3957
- #: ../../admin/view/wp-slimstat-reports.php:999
3958
  msgid "Google Backlinks"
3959
  msgstr "Backlinks Google"
3960
 
3961
- #: ../../admin/view/wp-slimstat-reports.php:1000
3962
  msgid ""
3963
  "How many times the Facebook Like button has been approximately clicked on "
3964
  "your site."
@@ -3966,30 +4214,30 @@ msgstr ""
3966
  "Aproximadamente cuántas veces se ha hecho clic en el botón “Me Gusta” de "
3967
  "Facebook en su sitio."
3968
 
3969
- #: ../../admin/view/wp-slimstat-reports.php:1001
3970
  msgid "Facebook Likes"
3971
  msgstr "Me Gusta de Facebook"
3972
 
3973
- #: ../../admin/view/wp-slimstat-reports.php:1002
3974
  msgid ""
3975
  "How many times your site has been shared by someone on the social network."
3976
  msgstr ""
3977
  "Cuántas veces ha sido compartido su sitio con alguien en las redes sociales."
3978
 
3979
- #: ../../admin/view/wp-slimstat-reports.php:1003
3980
  msgid "Facebook Shares"
3981
  msgstr "Compartidas en Facebook"
3982
 
3983
- #: ../../admin/view/wp-slimstat-reports.php:1004
3984
  msgid "How many times links to your website have been clicked on Facebook."
3985
  msgstr "Cuántas veces se ha hecho clic en enlaces a su sitio en Facebook."
3986
 
3987
- #: ../../admin/view/wp-slimstat-reports.php:1005
3988
  #, fuzzy
3989
  msgid "Facebook Clicks"
3990
  msgstr "Enlaces Salientes Recientes"
3991
 
3992
- #: ../../admin/view/wp-slimstat-reports.php:1006
3993
  msgid ""
3994
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3995
  "traffic data."
@@ -3997,1107 +4245,1107 @@ msgstr ""
3997
  "Alexa es una compaañ+ía subsidiaria de Amazon.com que proporciona "
3998
  "información de tráfico de datos."
3999
 
4000
- #: ../../admin/view/wp-slimstat-reports.php:1007
4001
  msgid "Alexa World Rank"
4002
  msgstr "Clasificación Mundial Alexa."
4003
 
4004
- #: ../../admin/view/wp-slimstat-reports.php:1008
4005
  msgid "Alexa Country Rank"
4006
  msgstr "Clasificación por país Alexa"
4007
 
4008
- #: ../../admin/view/wp-slimstat-reports.php:1009
4009
  msgid "Alexa Popularity"
4010
  msgstr "Popularidad Alexa"
4011
 
4012
  # Unknown
4013
- #: ../../admin/view/wp-slimstat-reports.php:1016
4014
  msgid "c-xx"
4015
  msgstr "Unknown"
4016
 
4017
  # Afghanistan
4018
- #: ../../admin/view/wp-slimstat-reports.php:1016
4019
  msgid "c-af"
4020
  msgstr "Afghanistan"
4021
 
4022
  # Åland Islands
4023
- #: ../../admin/view/wp-slimstat-reports.php:1016
4024
  msgid "c-ax"
4025
  msgstr "Åland Islands"
4026
 
4027
  # Albania
4028
- #: ../../admin/view/wp-slimstat-reports.php:1016
4029
  msgid "c-al"
4030
  msgstr "Albania"
4031
 
4032
  # Algeria
4033
- #: ../../admin/view/wp-slimstat-reports.php:1016
4034
  msgid "c-dz"
4035
  msgstr "Algeria"
4036
 
4037
  # Andorra
4038
- #: ../../admin/view/wp-slimstat-reports.php:1016
4039
  msgid "c-ad"
4040
  msgstr "Andorra"
4041
 
4042
  # Angola
4043
- #: ../../admin/view/wp-slimstat-reports.php:1016
4044
  msgid "c-ao"
4045
  msgstr "Angola"
4046
 
4047
  # Anguilla
4048
- #: ../../admin/view/wp-slimstat-reports.php:1016
4049
  msgid "c-ai"
4050
  msgstr "Anguilla"
4051
 
4052
  # Antigua and Barbuda
4053
- #: ../../admin/view/wp-slimstat-reports.php:1016
4054
  msgid "c-ag"
4055
  msgstr "Antigua and Barbuda"
4056
 
4057
  # Argentina
4058
- #: ../../admin/view/wp-slimstat-reports.php:1016
4059
  msgid "c-ar"
4060
  msgstr "Argentina"
4061
 
4062
  # Armenia
4063
- #: ../../admin/view/wp-slimstat-reports.php:1016
4064
  msgid "c-am"
4065
  msgstr "Armenia"
4066
 
4067
  # Aruba
4068
- #: ../../admin/view/wp-slimstat-reports.php:1016
4069
  msgid "c-aw"
4070
  msgstr "Aruba"
4071
 
4072
  # Australia
4073
- #: ../../admin/view/wp-slimstat-reports.php:1016
4074
  msgid "c-au"
4075
  msgstr "Australia"
4076
 
4077
  # Austria
4078
- #: ../../admin/view/wp-slimstat-reports.php:1016
4079
  msgid "c-at"
4080
  msgstr "Austria"
4081
 
4082
  # Azerbaijan
4083
- #: ../../admin/view/wp-slimstat-reports.php:1016
4084
  msgid "c-az"
4085
  msgstr "Azerbaijan"
4086
 
4087
  # Bahamas
4088
- #: ../../admin/view/wp-slimstat-reports.php:1016
4089
  msgid "c-bs"
4090
  msgstr "Bahamas"
4091
 
4092
  # Bahrain
4093
- #: ../../admin/view/wp-slimstat-reports.php:1016
4094
  msgid "c-bh"
4095
  msgstr "Bahrain"
4096
 
4097
  # Bangladesh
4098
- #: ../../admin/view/wp-slimstat-reports.php:1016
4099
  msgid "c-bd"
4100
  msgstr "Bangladesh"
4101
 
4102
  # Barbados
4103
- #: ../../admin/view/wp-slimstat-reports.php:1016
4104
  msgid "c-bb"
4105
  msgstr "Barbados"
4106
 
4107
  # Belarus
4108
- #: ../../admin/view/wp-slimstat-reports.php:1016
4109
  msgid "c-by"
4110
  msgstr "Belarus"
4111
 
4112
  # Belgium
4113
- #: ../../admin/view/wp-slimstat-reports.php:1016
4114
  msgid "c-be"
4115
  msgstr "Belgium"
4116
 
4117
  # Belize
4118
- #: ../../admin/view/wp-slimstat-reports.php:1016
4119
  msgid "c-bz"
4120
  msgstr "Belize"
4121
 
4122
  # Benin
4123
- #: ../../admin/view/wp-slimstat-reports.php:1016
4124
  msgid "c-bj"
4125
  msgstr "Benin"
4126
 
4127
  # Bermuda
4128
- #: ../../admin/view/wp-slimstat-reports.php:1016
4129
  msgid "c-bm"
4130
  msgstr "Bermuda"
4131
 
4132
  # Bhutan
4133
- #: ../../admin/view/wp-slimstat-reports.php:1016
4134
  msgid "c-bt"
4135
  msgstr "Bhutan"
4136
 
4137
  # Bolivia
4138
- #: ../../admin/view/wp-slimstat-reports.php:1016
4139
  msgid "c-bo"
4140
  msgstr "Bolivia"
4141
 
4142
  # Bosnia and Herzegovina
4143
- #: ../../admin/view/wp-slimstat-reports.php:1016
4144
  msgid "c-ba"
4145
  msgstr "Bosnia and Herzegovina"
4146
 
4147
  # Botswana
4148
- #: ../../admin/view/wp-slimstat-reports.php:1016
4149
  msgid "c-bw"
4150
  msgstr "Botswana"
4151
 
4152
  # Brazil
4153
- #: ../../admin/view/wp-slimstat-reports.php:1016
4154
  msgid "c-br"
4155
  msgstr "Brazil"
4156
 
4157
  # Brunei Darussalam
4158
- #: ../../admin/view/wp-slimstat-reports.php:1016
4159
  msgid "c-bn"
4160
  msgstr "Brunei Darussalam"
4161
 
4162
  # Bulgaria
4163
- #: ../../admin/view/wp-slimstat-reports.php:1016
4164
  msgid "c-bg"
4165
  msgstr "Bulgaria"
4166
 
4167
  # Burkina Faso
4168
- #: ../../admin/view/wp-slimstat-reports.php:1016
4169
  msgid "c-bf"
4170
  msgstr "Burkina Faso"
4171
 
4172
  # Burundi
4173
- #: ../../admin/view/wp-slimstat-reports.php:1016
4174
  msgid "c-bi"
4175
  msgstr "Burundi"
4176
 
4177
  # Cambodia
4178
- #: ../../admin/view/wp-slimstat-reports.php:1016
4179
  msgid "c-kh"
4180
  msgstr "Cambodia"
4181
 
4182
  # Cameroon
4183
- #: ../../admin/view/wp-slimstat-reports.php:1016
4184
  msgid "c-cm"
4185
  msgstr "Cameroon"
4186
 
4187
  # Canada
4188
- #: ../../admin/view/wp-slimstat-reports.php:1016
4189
  msgid "c-ca"
4190
  msgstr "Canada"
4191
 
4192
  # Cape Verde
4193
- #: ../../admin/view/wp-slimstat-reports.php:1016
4194
  msgid "c-cv"
4195
  msgstr "Cape Verde"
4196
 
4197
  # Cayman Islands
4198
- #: ../../admin/view/wp-slimstat-reports.php:1016
4199
  msgid "c-ky"
4200
  msgstr "Cayman Islands"
4201
 
4202
  # Central African Republic
4203
- #: ../../admin/view/wp-slimstat-reports.php:1016
4204
  msgid "c-cf"
4205
  msgstr "Central African Republic"
4206
 
4207
  # Chad
4208
- #: ../../admin/view/wp-slimstat-reports.php:1016
4209
  msgid "c-td"
4210
  msgstr "Chad"
4211
 
4212
  # Chile
4213
- #: ../../admin/view/wp-slimstat-reports.php:1016
4214
  msgid "c-cl"
4215
  msgstr "Chile"
4216
 
4217
  # China
4218
- #: ../../admin/view/wp-slimstat-reports.php:1016
4219
  msgid "c-cn"
4220
  msgstr "China"
4221
 
4222
  # Colombia
4223
- #: ../../admin/view/wp-slimstat-reports.php:1016
4224
  msgid "c-co"
4225
  msgstr "Colombia"
4226
 
4227
  # Comoros
4228
- #: ../../admin/view/wp-slimstat-reports.php:1016
4229
  msgid "c-km"
4230
  msgstr "Comoros"
4231
 
4232
  # Congo
4233
- #: ../../admin/view/wp-slimstat-reports.php:1016
4234
  msgid "c-cg"
4235
  msgstr "Congo"
4236
 
4237
  # The Democratic Republic of the Congo
4238
- #: ../../admin/view/wp-slimstat-reports.php:1016
4239
  msgid "c-cd"
4240
  msgstr "The Democratic Republic of the Congo"
4241
 
4242
  # Costa Rica
4243
- #: ../../admin/view/wp-slimstat-reports.php:1016
4244
  msgid "c-cr"
4245
  msgstr "Costa Rica"
4246
 
4247
  # Côte d'Ivoire
4248
- #: ../../admin/view/wp-slimstat-reports.php:1016
4249
  msgid "c-ci"
4250
  msgstr "Côte d'Ivoire"
4251
 
4252
  # Croatia
4253
- #: ../../admin/view/wp-slimstat-reports.php:1016
4254
  msgid "c-hr"
4255
  msgstr "Croatia"
4256
 
4257
  # Cuba
4258
- #: ../../admin/view/wp-slimstat-reports.php:1016
4259
  msgid "c-cu"
4260
  msgstr "Cuba"
4261
 
4262
  # Cyprus
4263
- #: ../../admin/view/wp-slimstat-reports.php:1016
4264
  msgid "c-cy"
4265
  msgstr "Cyprus"
4266
 
4267
  # Czech Republic
4268
- #: ../../admin/view/wp-slimstat-reports.php:1016
4269
  msgid "c-cz"
4270
  msgstr "Czech Republic"
4271
 
4272
  # Denmark
4273
- #: ../../admin/view/wp-slimstat-reports.php:1016
4274
  msgid "c-dk"
4275
  msgstr "Denmark"
4276
 
4277
  # Djibouti
4278
- #: ../../admin/view/wp-slimstat-reports.php:1016
4279
  msgid "c-dj"
4280
  msgstr "Djibouti"
4281
 
4282
  # Dominica
4283
- #: ../../admin/view/wp-slimstat-reports.php:1016
4284
  msgid "c-dm"
4285
  msgstr "Dominica"
4286
 
4287
  # Dominican Republic
4288
- #: ../../admin/view/wp-slimstat-reports.php:1016
4289
  msgid "c-do"
4290
  msgstr "Dominican Republic"
4291
 
4292
  # Ecuador
4293
- #: ../../admin/view/wp-slimstat-reports.php:1016
4294
  msgid "c-ec"
4295
  msgstr "Ecuador"
4296
 
4297
  # Egypt
4298
- #: ../../admin/view/wp-slimstat-reports.php:1016
4299
  msgid "c-eg"
4300
  msgstr "Egypt"
4301
 
4302
  # El Salvador
4303
- #: ../../admin/view/wp-slimstat-reports.php:1016
4304
  msgid "c-sv"
4305
  msgstr "El Salvador"
4306
 
4307
  # Equatorial Guinea
4308
- #: ../../admin/view/wp-slimstat-reports.php:1016
4309
  msgid "c-gq"
4310
  msgstr "Equatorial Guinea"
4311
 
4312
  # Eritrea
4313
- #: ../../admin/view/wp-slimstat-reports.php:1016
4314
  msgid "c-er"
4315
  msgstr "Eritrea"
4316
 
4317
  # Estonia
4318
- #: ../../admin/view/wp-slimstat-reports.php:1016
4319
  msgid "c-ee"
4320
  msgstr "Estonia"
4321
 
4322
  # Ethiopia
4323
- #: ../../admin/view/wp-slimstat-reports.php:1016
4324
  msgid "c-et"
4325
  msgstr "Ethiopia"
4326
 
4327
  # Faroe Islands
4328
- #: ../../admin/view/wp-slimstat-reports.php:1016
4329
  msgid "c-fo"
4330
  msgstr "Faroe Islands"
4331
 
4332
  # Falkland Islands (Malvinas)
4333
- #: ../../admin/view/wp-slimstat-reports.php:1016
4334
  msgid "c-fk"
4335
  msgstr "Falkland Islands (Malvinas)"
4336
 
4337
  # Fiji
4338
- #: ../../admin/view/wp-slimstat-reports.php:1016
4339
  msgid "c-fj"
4340
  msgstr "Fiji"
4341
 
4342
  # Finland
4343
- #: ../../admin/view/wp-slimstat-reports.php:1016
4344
  msgid "c-fi"
4345
  msgstr "Finland"
4346
 
4347
  # France
4348
- #: ../../admin/view/wp-slimstat-reports.php:1016
4349
  msgid "c-fr"
4350
  msgstr "France"
4351
 
4352
  # French Guiana
4353
- #: ../../admin/view/wp-slimstat-reports.php:1016
4354
  msgid "c-gf"
4355
  msgstr "French Guiana"
4356
 
4357
  # Gabon
4358
- #: ../../admin/view/wp-slimstat-reports.php:1016
4359
  msgid "c-ga"
4360
  msgstr "Gabon"
4361
 
4362
  # Gambia
4363
- #: ../../admin/view/wp-slimstat-reports.php:1016
4364
  msgid "c-gm"
4365
  msgstr "Gambia"
4366
 
4367
  # Georgia
4368
- #: ../../admin/view/wp-slimstat-reports.php:1016
4369
  msgid "c-ge"
4370
  msgstr "Georgia"
4371
 
4372
  # Germany
4373
- #: ../../admin/view/wp-slimstat-reports.php:1016
4374
  msgid "c-de"
4375
  msgstr "Germany"
4376
 
4377
  # Ghana
4378
- #: ../../admin/view/wp-slimstat-reports.php:1016
4379
  msgid "c-gh"
4380
  msgstr "Ghana"
4381
 
4382
  # Greece
4383
- #: ../../admin/view/wp-slimstat-reports.php:1016
4384
  msgid "c-gr"
4385
  msgstr "Greece"
4386
 
4387
  # Greenland
4388
- #: ../../admin/view/wp-slimstat-reports.php:1016
4389
  msgid "c-gl"
4390
  msgstr "Greenland"
4391
 
4392
  # Grenada
4393
- #: ../../admin/view/wp-slimstat-reports.php:1016
4394
  msgid "c-gd"
4395
  msgstr "Grenada"
4396
 
4397
  # Guadeloupe
4398
- #: ../../admin/view/wp-slimstat-reports.php:1016
4399
  msgid "c-gp"
4400
  msgstr "Guadeloupe"
4401
 
4402
  # Guatemala
4403
- #: ../../admin/view/wp-slimstat-reports.php:1016
4404
  msgid "c-gt"
4405
  msgstr "Guatemala"
4406
 
4407
  # Guinea
4408
- #: ../../admin/view/wp-slimstat-reports.php:1016
4409
  msgid "c-gn"
4410
  msgstr "Guinea"
4411
 
4412
  # Guinea-Bissau
4413
- #: ../../admin/view/wp-slimstat-reports.php:1016
4414
  msgid "c-gw"
4415
  msgstr "Guinea-Bissau"
4416
 
4417
  # Guyana
4418
- #: ../../admin/view/wp-slimstat-reports.php:1016
4419
  msgid "c-gy"
4420
  msgstr "Guyana"
4421
 
4422
  # Haiti
4423
- #: ../../admin/view/wp-slimstat-reports.php:1016
4424
  msgid "c-ht"
4425
  msgstr "Haiti"
4426
 
4427
  # Honduras
4428
- #: ../../admin/view/wp-slimstat-reports.php:1016
4429
  msgid "c-hn"
4430
  msgstr "Honduras"
4431
 
4432
  # Hong Kong
4433
- #: ../../admin/view/wp-slimstat-reports.php:1016
4434
  msgid "c-hk"
4435
  msgstr "Hong Kong"
4436
 
4437
  # Hungary
4438
- #: ../../admin/view/wp-slimstat-reports.php:1016
4439
  msgid "c-hu"
4440
  msgstr "Hungary"
4441
 
4442
  # Iceland
4443
- #: ../../admin/view/wp-slimstat-reports.php:1016
4444
  msgid "c-is"
4445
  msgstr "Iceland"
4446
 
4447
  # India
4448
- #: ../../admin/view/wp-slimstat-reports.php:1016
4449
  msgid "c-in"
4450
  msgstr "India"
4451
 
4452
  # Indonesia
4453
- #: ../../admin/view/wp-slimstat-reports.php:1016
4454
  msgid "c-id"
4455
  msgstr "Indonesia"
4456
 
4457
  # Islamic Republic of Iran
4458
- #: ../../admin/view/wp-slimstat-reports.php:1016
4459
  msgid "c-ir"
4460
  msgstr "Islamic Republic of Iran"
4461
 
4462
  # Iraq
4463
- #: ../../admin/view/wp-slimstat-reports.php:1016
4464
  msgid "c-iq"
4465
  msgstr "Iraq"
4466
 
4467
  # Ireland
4468
- #: ../../admin/view/wp-slimstat-reports.php:1016
4469
  msgid "c-ie"
4470
  msgstr "Ireland"
4471
 
4472
  # Israel
4473
- #: ../../admin/view/wp-slimstat-reports.php:1016
4474
  msgid "c-il"
4475
  msgstr "Israel"
4476
 
4477
  # Italy
4478
- #: ../../admin/view/wp-slimstat-reports.php:1016
4479
  msgid "c-it"
4480
  msgstr "Italy"
4481
 
4482
  # Jamaica
4483
- #: ../../admin/view/wp-slimstat-reports.php:1016
4484
  msgid "c-jm"
4485
  msgstr "Jamaica"
4486
 
4487
  # Japan
4488
- #: ../../admin/view/wp-slimstat-reports.php:1016
4489
  msgid "c-jp"
4490
  msgstr "Japan"
4491
 
4492
  # Jordan
4493
- #: ../../admin/view/wp-slimstat-reports.php:1016
4494
  msgid "c-jo"
4495
  msgstr "Jordan"
4496
 
4497
  # Kazakhstan
4498
- #: ../../admin/view/wp-slimstat-reports.php:1016
4499
  msgid "c-kz"
4500
  msgstr "Kazakhstan"
4501
 
4502
  # Kenya
4503
- #: ../../admin/view/wp-slimstat-reports.php:1016
4504
  msgid "c-ke"
4505
  msgstr "Kenya"
4506
 
4507
  # Nauru
4508
- #: ../../admin/view/wp-slimstat-reports.php:1016
4509
  msgid "c-nr"
4510
  msgstr "Nauru"
4511
 
4512
  # Democratic People's Republic of Korea
4513
- #: ../../admin/view/wp-slimstat-reports.php:1016
4514
  msgid "c-kp"
4515
  msgstr "Democratic People's Republic of Korea"
4516
 
4517
  # Republic of Korea
4518
- #: ../../admin/view/wp-slimstat-reports.php:1016
4519
  msgid "c-kr"
4520
  msgstr "Republic of Korea"
4521
 
4522
- #: ../../admin/view/wp-slimstat-reports.php:1016
4523
  msgid "c-kv"
4524
  msgstr "c-kv"
4525
 
4526
  # Kuwait
4527
- #: ../../admin/view/wp-slimstat-reports.php:1016
4528
  msgid "c-kw"
4529
  msgstr "Kuwait"
4530
 
4531
  # Kyrgyzstan
4532
- #: ../../admin/view/wp-slimstat-reports.php:1016
4533
  msgid "c-kg"
4534
  msgstr "Kyrgyzstan"
4535
 
4536
  # Lao People's Democratic Republic
4537
- #: ../../admin/view/wp-slimstat-reports.php:1016
4538
  msgid "c-la"
4539
  msgstr "Lao People's Democratic Republic"
4540
 
4541
  # Latvia
4542
- #: ../../admin/view/wp-slimstat-reports.php:1016
4543
  msgid "c-lv"
4544
  msgstr "Latvia"
4545
 
4546
  # Lebanon
4547
- #: ../../admin/view/wp-slimstat-reports.php:1016
4548
  msgid "c-lb"
4549
  msgstr "Lebanon"
4550
 
4551
  # Lesotho
4552
- #: ../../admin/view/wp-slimstat-reports.php:1016
4553
  msgid "c-ls"
4554
  msgstr "Lesotho"
4555
 
4556
  # Liberia
4557
- #: ../../admin/view/wp-slimstat-reports.php:1016
4558
  msgid "c-lr"
4559
  msgstr "Liberia"
4560
 
4561
  # Libyan Arab Jamahiriya
4562
- #: ../../admin/view/wp-slimstat-reports.php:1016
4563
  msgid "c-ly"
4564
  msgstr "Libyan Arab Jamahiriya"
4565
 
4566
  # Liechtenstein
4567
- #: ../../admin/view/wp-slimstat-reports.php:1016
4568
  msgid "c-li"
4569
  msgstr "Liechtenstein"
4570
 
4571
  # Lithuania
4572
- #: ../../admin/view/wp-slimstat-reports.php:1016
4573
  msgid "c-lt"
4574
  msgstr "Lithuania"
4575
 
4576
  # Luxembourg
4577
- #: ../../admin/view/wp-slimstat-reports.php:1016
4578
  msgid "c-lu"
4579
  msgstr "Luxembourg"
4580
 
4581
  # The Former Yugoslav Republic of Macedonia
4582
- #: ../../admin/view/wp-slimstat-reports.php:1016
4583
  msgid "c-mk"
4584
  msgstr "The Former Yugoslav Republic of Macedonia"
4585
 
4586
  # Madagascar
4587
- #: ../../admin/view/wp-slimstat-reports.php:1016
4588
  msgid "c-mg"
4589
  msgstr "Madagascar"
4590
 
4591
  # Malawi
4592
- #: ../../admin/view/wp-slimstat-reports.php:1016
4593
  msgid "c-mw"
4594
  msgstr "Malawi"
4595
 
4596
  # Malaysia
4597
- #: ../../admin/view/wp-slimstat-reports.php:1016
4598
  msgid "c-my"
4599
  msgstr "Malaysia"
4600
 
4601
  # Mali
4602
- #: ../../admin/view/wp-slimstat-reports.php:1016
4603
  msgid "c-ml"
4604
  msgstr "Mali"
4605
 
4606
  # Malta
4607
- #: ../../admin/view/wp-slimstat-reports.php:1016
4608
  msgid "c-mt"
4609
  msgstr "Malta"
4610
 
4611
  # Martinique
4612
- #: ../../admin/view/wp-slimstat-reports.php:1016
4613
  msgid "c-mq"
4614
  msgstr "Martinique"
4615
 
4616
  # Mauritania
4617
- #: ../../admin/view/wp-slimstat-reports.php:1016
4618
  msgid "c-mr"
4619
  msgstr "Mauritania"
4620
 
4621
  # Mauritius
4622
- #: ../../admin/view/wp-slimstat-reports.php:1016
4623
  msgid "c-mu"
4624
  msgstr "Mauritius"
4625
 
4626
  # Mexico
4627
- #: ../../admin/view/wp-slimstat-reports.php:1016
4628
  msgid "c-mx"
4629
  msgstr "Mexico"
4630
 
4631
  # Moldova
4632
- #: ../../admin/view/wp-slimstat-reports.php:1016
4633
  msgid "c-md"
4634
  msgstr "Moldova"
4635
 
4636
  # Mongolia
4637
- #: ../../admin/view/wp-slimstat-reports.php:1016
4638
  msgid "c-mn"
4639
  msgstr "Mongolia"
4640
 
4641
  # Montenegro
4642
- #: ../../admin/view/wp-slimstat-reports.php:1016
4643
  msgid "c-me"
4644
  msgstr "Montenegro"
4645
 
4646
  # Montserrat
4647
- #: ../../admin/view/wp-slimstat-reports.php:1016
4648
  msgid "c-ms"
4649
  msgstr "Montserrat"
4650
 
4651
  # Morocco
4652
- #: ../../admin/view/wp-slimstat-reports.php:1016
4653
  msgid "c-ma"
4654
  msgstr "Morocco"
4655
 
4656
  # Mozambique
4657
- #: ../../admin/view/wp-slimstat-reports.php:1016
4658
  msgid "c-mz"
4659
  msgstr "Mozambique"
4660
 
4661
  # Myanmar
4662
- #: ../../admin/view/wp-slimstat-reports.php:1016
4663
  msgid "c-mm"
4664
  msgstr "Myanmar"
4665
 
4666
  # Namibia
4667
- #: ../../admin/view/wp-slimstat-reports.php:1016
4668
  msgid "c-na"
4669
  msgstr "Namibia"
4670
 
4671
  # Nepal
4672
- #: ../../admin/view/wp-slimstat-reports.php:1016
4673
  msgid "c-np"
4674
  msgstr "Nepal"
4675
 
4676
  # Netherlands
4677
- #: ../../admin/view/wp-slimstat-reports.php:1016
4678
  msgid "c-nl"
4679
  msgstr "Netherlands"
4680
 
4681
  # New Caledonia
4682
- #: ../../admin/view/wp-slimstat-reports.php:1016
4683
  msgid "c-nc"
4684
  msgstr "New Caledonia"
4685
 
4686
  # New Zealand
4687
- #: ../../admin/view/wp-slimstat-reports.php:1016
4688
  msgid "c-nz"
4689
  msgstr "New Zealand"
4690
 
4691
  # Nicaragua
4692
- #: ../../admin/view/wp-slimstat-reports.php:1016
4693
  msgid "c-ni"
4694
  msgstr "Nicaragua"
4695
 
4696
  # Niger
4697
- #: ../../admin/view/wp-slimstat-reports.php:1016
4698
  msgid "c-ne"
4699
  msgstr "Niger"
4700
 
4701
  # Nigeria
4702
- #: ../../admin/view/wp-slimstat-reports.php:1016
4703
  msgid "c-ng"
4704
  msgstr "Nigeria"
4705
 
4706
  # Norway
4707
- #: ../../admin/view/wp-slimstat-reports.php:1016
4708
  msgid "c-no"
4709
  msgstr "Norway"
4710
 
4711
  # Oman
4712
- #: ../../admin/view/wp-slimstat-reports.php:1016
4713
  msgid "c-om"
4714
  msgstr "Oman"
4715
 
4716
  # Pakistan
4717
- #: ../../admin/view/wp-slimstat-reports.php:1016
4718
  msgid "c-pk"
4719
  msgstr "Pakistan"
4720
 
4721
  # Palau
4722
- #: ../../admin/view/wp-slimstat-reports.php:1016
4723
  msgid "c-pw"
4724
  msgstr "Palau"
4725
 
4726
  # Occupied Palestinian Territory
4727
- #: ../../admin/view/wp-slimstat-reports.php:1016
4728
  msgid "c-ps"
4729
  msgstr "Occupied Palestinian Territory"
4730
 
4731
  # Panama
4732
- #: ../../admin/view/wp-slimstat-reports.php:1016
4733
  msgid "c-pa"
4734
  msgstr "Panama"
4735
 
4736
  # Papua New Guinea
4737
- #: ../../admin/view/wp-slimstat-reports.php:1016
4738
  msgid "c-pg"
4739
  msgstr "Papua New Guinea"
4740
 
4741
  # Paraguay
4742
- #: ../../admin/view/wp-slimstat-reports.php:1016
4743
  msgid "c-py"
4744
  msgstr "Paraguay"
4745
 
4746
  # Peru
4747
- #: ../../admin/view/wp-slimstat-reports.php:1016
4748
  msgid "c-pe"
4749
  msgstr "Peru"
4750
 
4751
  # Philippines
4752
- #: ../../admin/view/wp-slimstat-reports.php:1016
4753
  msgid "c-ph"
4754
  msgstr "Philippines"
4755
 
4756
  # Poland
4757
- #: ../../admin/view/wp-slimstat-reports.php:1016
4758
  msgid "c-pl"
4759
  msgstr "Poland"
4760
 
4761
  # Portugal
4762
- #: ../../admin/view/wp-slimstat-reports.php:1016
4763
  msgid "c-pt"
4764
  msgstr "Portugal"
4765
 
4766
  # Puerto Rico
4767
- #: ../../admin/view/wp-slimstat-reports.php:1016
4768
  msgid "c-pr"
4769
  msgstr "Puerto Rico"
4770
 
4771
  # Qatar
4772
- #: ../../admin/view/wp-slimstat-reports.php:1016
4773
  msgid "c-qa"
4774
  msgstr "Qatar"
4775
 
4776
  # Réunion
4777
- #: ../../admin/view/wp-slimstat-reports.php:1016
4778
  msgid "c-re"
4779
  msgstr "Réunion"
4780
 
4781
  # Romania
4782
- #: ../../admin/view/wp-slimstat-reports.php:1016
4783
  msgid "c-ro"
4784
  msgstr "Romania"
4785
 
4786
  # Russian Federation
4787
- #: ../../admin/view/wp-slimstat-reports.php:1016
4788
  msgid "c-ru"
4789
  msgstr "Russian Federation"
4790
 
4791
  # Rwanda
4792
- #: ../../admin/view/wp-slimstat-reports.php:1016
4793
  msgid "c-rw"
4794
  msgstr "Rwanda"
4795
 
4796
  # Saint Kitts and Nevis
4797
- #: ../../admin/view/wp-slimstat-reports.php:1016
4798
  msgid "c-kn"
4799
  msgstr "Saint Kitts and Nevis"
4800
 
4801
  # Saint Lucia
4802
- #: ../../admin/view/wp-slimstat-reports.php:1016
4803
  msgid "c-lc"
4804
  msgstr "Saint Lucia"
4805
 
4806
  # Saint Martin
4807
- #: ../../admin/view/wp-slimstat-reports.php:1016
4808
  msgid "c-mf"
4809
  msgstr "Saint Martin"
4810
 
4811
  # Saint Vincent and the Grenadines
4812
- #: ../../admin/view/wp-slimstat-reports.php:1016
4813
  msgid "c-vc"
4814
  msgstr "Saint Vincent and the Grenadines"
4815
 
4816
  # Samoa
4817
- #: ../../admin/view/wp-slimstat-reports.php:1016
4818
  msgid "c-ws"
4819
  msgstr "Samoa"
4820
 
4821
  # Sao Tome and Principe
4822
- #: ../../admin/view/wp-slimstat-reports.php:1016
4823
  msgid "c-st"
4824
  msgstr "Sao Tome and Principe"
4825
 
4826
  # Saudi Arabia
4827
- #: ../../admin/view/wp-slimstat-reports.php:1016
4828
  msgid "c-sa"
4829
  msgstr "Saudi Arabia"
4830
 
4831
  # Senegal
4832
- #: ../../admin/view/wp-slimstat-reports.php:1016
4833
  msgid "c-sn"
4834
  msgstr "Senegal"
4835
 
4836
  # Serbia
4837
- #: ../../admin/view/wp-slimstat-reports.php:1016
4838
  msgid "c-rs"
4839
  msgstr "Serbia"
4840
 
4841
  # Sierra Leone
4842
- #: ../../admin/view/wp-slimstat-reports.php:1016
4843
  msgid "c-sl"
4844
  msgstr "Sierra Leone"
4845
 
4846
  # Singapore
4847
- #: ../../admin/view/wp-slimstat-reports.php:1016
4848
  msgid "c-sg"
4849
  msgstr "Singapore"
4850
 
4851
  # Slovakia
4852
- #: ../../admin/view/wp-slimstat-reports.php:1016
4853
  msgid "c-sk"
4854
  msgstr "Slovakia"
4855
 
4856
  # Slovenia
4857
- #: ../../admin/view/wp-slimstat-reports.php:1016
4858
  msgid "c-si"
4859
  msgstr "Slovenia"
4860
 
4861
  # Solomon Islands
4862
- #: ../../admin/view/wp-slimstat-reports.php:1016
4863
  msgid "c-sb"
4864
  msgstr "Solomon Islands"
4865
 
4866
  # Somalia
4867
- #: ../../admin/view/wp-slimstat-reports.php:1016
4868
  msgid "c-so"
4869
  msgstr "Somalia"
4870
 
4871
  # South Africa
4872
- #: ../../admin/view/wp-slimstat-reports.php:1016
4873
  msgid "c-za"
4874
  msgstr "South Africa"
4875
 
4876
  # South Georgia and the South Sandwich Islands
4877
- #: ../../admin/view/wp-slimstat-reports.php:1016
4878
  msgid "c-gs"
4879
  msgstr "South Georgia and the South Sandwich Islands"
4880
 
4881
  # Spain
4882
- #: ../../admin/view/wp-slimstat-reports.php:1016
4883
  msgid "c-es"
4884
  msgstr "Spain"
4885
 
4886
  # Sri Lanka
4887
- #: ../../admin/view/wp-slimstat-reports.php:1016
4888
  msgid "c-lk"
4889
  msgstr "Sri Lanka"
4890
 
4891
  # Seychelles
4892
- #: ../../admin/view/wp-slimstat-reports.php:1016
4893
  msgid "c-sc"
4894
  msgstr "Seychelles"
4895
 
4896
  # Sudan
4897
- #: ../../admin/view/wp-slimstat-reports.php:1016
4898
  msgid "c-sd"
4899
  msgstr "Sudan"
4900
 
4901
- #: ../../admin/view/wp-slimstat-reports.php:1016
4902
  msgid "c-ss"
4903
  msgstr "c-ss"
4904
 
4905
  # Suriname
4906
- #: ../../admin/view/wp-slimstat-reports.php:1016
4907
  msgid "c-sr"
4908
  msgstr "Suriname"
4909
 
4910
  # Svalbard and Jan Mayen
4911
- #: ../../admin/view/wp-slimstat-reports.php:1016
4912
  msgid "c-sj"
4913
  msgstr "Svalbard and Jan Mayen"
4914
 
4915
  # Swaziland
4916
- #: ../../admin/view/wp-slimstat-reports.php:1016
4917
  msgid "c-sz"
4918
  msgstr "Swaziland"
4919
 
4920
  # Sweden
4921
- #: ../../admin/view/wp-slimstat-reports.php:1016
4922
  msgid "c-se"
4923
  msgstr "Sweden"
4924
 
4925
  # Switzerland
4926
- #: ../../admin/view/wp-slimstat-reports.php:1016
4927
  msgid "c-ch"
4928
  msgstr "Switzerland"
4929
 
4930
  # Syrian Arab Republic
4931
- #: ../../admin/view/wp-slimstat-reports.php:1016
4932
  msgid "c-sy"
4933
  msgstr "Syrian Arab Republic"
4934
 
4935
  # Taiwan, Province of China
4936
- #: ../../admin/view/wp-slimstat-reports.php:1016
4937
  msgid "c-tw"
4938
  msgstr "Taiwan, Province of China"
4939
 
4940
  # Tajikistan
4941
- #: ../../admin/view/wp-slimstat-reports.php:1016
4942
  msgid "c-tj"
4943
  msgstr "Tajikistan"
4944
 
4945
  # United Republic of Tanzania
4946
- #: ../../admin/view/wp-slimstat-reports.php:1016
4947
  msgid "c-tz"
4948
  msgstr "United Republic of Tanzania"
4949
 
4950
  # Thailand
4951
- #: ../../admin/view/wp-slimstat-reports.php:1016
4952
  msgid "c-th"
4953
  msgstr "Thailand"
4954
 
4955
  # Timor-Leste
4956
- #: ../../admin/view/wp-slimstat-reports.php:1016
4957
  msgid "c-tl"
4958
  msgstr "Timor-Leste"
4959
 
4960
  # Togo
4961
- #: ../../admin/view/wp-slimstat-reports.php:1016
4962
  msgid "c-tg"
4963
  msgstr "Togo"
4964
 
4965
  # Tonga
4966
- #: ../../admin/view/wp-slimstat-reports.php:1016
4967
  msgid "c-to"
4968
  msgstr "Tonga"
4969
 
4970
  # Trinidad and Tobago
4971
- #: ../../admin/view/wp-slimstat-reports.php:1016
4972
  msgid "c-tt"
4973
  msgstr "Trinidad and Tobago"
4974
 
4975
  # Tunisia
4976
- #: ../../admin/view/wp-slimstat-reports.php:1016
4977
  msgid "c-tn"
4978
  msgstr "Tunisia"
4979
 
4980
  # Turkey
4981
- #: ../../admin/view/wp-slimstat-reports.php:1016
4982
  msgid "c-tr"
4983
  msgstr "Turkey"
4984
 
4985
  # Turkmenistan
4986
- #: ../../admin/view/wp-slimstat-reports.php:1016
4987
  msgid "c-tm"
4988
  msgstr "Turkmenistan"
4989
 
4990
  # Turks and Caicos Islands
4991
- #: ../../admin/view/wp-slimstat-reports.php:1016
4992
  msgid "c-tc"
4993
  msgstr "Turks and Caicos Islands"
4994
 
4995
  # Uganda
4996
- #: ../../admin/view/wp-slimstat-reports.php:1016
4997
  msgid "c-ug"
4998
  msgstr "Uganda"
4999
 
5000
  # Ukraine
5001
- #: ../../admin/view/wp-slimstat-reports.php:1016
5002
  msgid "c-ua"
5003
  msgstr "Ukraine"
5004
 
5005
  # United Arab Emirates
5006
- #: ../../admin/view/wp-slimstat-reports.php:1016
5007
  msgid "c-ae"
5008
  msgstr "United Arab Emirates"
5009
 
5010
  # United Kingdom
5011
- #: ../../admin/view/wp-slimstat-reports.php:1016
5012
  msgid "c-gb"
5013
  msgstr "United Kingdom"
5014
 
5015
  # United States
5016
- #: ../../admin/view/wp-slimstat-reports.php:1016
5017
  msgid "c-us"
5018
  msgstr "United States"
5019
 
5020
  # Uruguay
5021
- #: ../../admin/view/wp-slimstat-reports.php:1016
5022
  msgid "c-uy"
5023
  msgstr "Uruguay"
5024
 
5025
  # Uzbekistan
5026
- #: ../../admin/view/wp-slimstat-reports.php:1016
5027
  msgid "c-uz"
5028
  msgstr "Uzbekistan"
5029
 
5030
  # Vanuatu
5031
- #: ../../admin/view/wp-slimstat-reports.php:1016
5032
  msgid "c-vu"
5033
  msgstr "Vanuatu"
5034
 
5035
  # Venezuela
5036
- #: ../../admin/view/wp-slimstat-reports.php:1016
5037
  msgid "c-ve"
5038
  msgstr "Venezuela"
5039
 
5040
  # Viet Nam
5041
- #: ../../admin/view/wp-slimstat-reports.php:1016
5042
  msgid "c-vn"
5043
  msgstr "Viet Nam"
5044
 
5045
  # British Virgin Islands
5046
- #: ../../admin/view/wp-slimstat-reports.php:1016
5047
  msgid "c-vg"
5048
  msgstr "British Virgin Islands"
5049
 
5050
  # U.S. Virgin Islands
5051
- #: ../../admin/view/wp-slimstat-reports.php:1016
5052
  msgid "c-vi"
5053
  msgstr "U.S. Virgin Islands"
5054
 
5055
  # Western Sahara
5056
- #: ../../admin/view/wp-slimstat-reports.php:1016
5057
  msgid "c-eh"
5058
  msgstr "Western Sahara"
5059
 
5060
  # Yemen
5061
- #: ../../admin/view/wp-slimstat-reports.php:1016
5062
  msgid "c-ye"
5063
  msgstr "Yemen"
5064
 
5065
  # Zambia
5066
- #: ../../admin/view/wp-slimstat-reports.php:1016
5067
  msgid "c-zm"
5068
  msgstr "Zambia"
5069
 
5070
  # Zimbabwe
5071
- #: ../../admin/view/wp-slimstat-reports.php:1016
5072
  msgid "c-zw"
5073
  msgstr "Zimbabwe"
5074
 
5075
  # Guernsey
5076
- #: ../../admin/view/wp-slimstat-reports.php:1016
5077
  msgid "c-gg"
5078
  msgstr "Guernsey"
5079
 
5080
  # Jersey
5081
- #: ../../admin/view/wp-slimstat-reports.php:1016
5082
  msgid "c-je"
5083
  msgstr "Jersey"
5084
 
5085
  # Isle of Man
5086
- #: ../../admin/view/wp-slimstat-reports.php:1016
5087
  msgid "c-im"
5088
  msgstr "Isle of Man"
5089
 
5090
  # Maldives
5091
- #: ../../admin/view/wp-slimstat-reports.php:1016
5092
  msgid "c-mv"
5093
  msgstr "Maldives"
5094
 
5095
  # European Union
5096
- #: ../../admin/view/wp-slimstat-reports.php:1017
5097
  msgid "c-eu"
5098
  msgstr "European Union"
5099
 
5100
- #: ../../admin/view/wp-slimstat-reports.php:1106
5101
  msgid ""
5102
  "This value includes not only posts, but also custom post types, regardless "
5103
  "of their status"
@@ -5105,107 +5353,101 @@ msgstr ""
5105
  "Este valor incluye no sólo publicaciones, sino también tipos de publicación "
5106
  "personalizados, sin importar su estado"
5107
 
5108
- #: ../../admin/view/wp-slimstat-reports.php:1107
5109
  #, fuzzy
5110
  msgid "Content Items"
5111
  msgstr "Contenido"
5112
 
5113
- #: ../../admin/view/wp-slimstat-reports.php:1108
5114
  #, fuzzy
5115
  msgid "Total Comments"
5116
  msgstr "Total de Accesos"
5117
 
5118
- #: ../../admin/view/wp-slimstat-reports.php:1109
5119
  msgid "Pingbacks"
5120
  msgstr "Pingbacks"
5121
 
5122
- #: ../../admin/view/wp-slimstat-reports.php:1110
5123
  msgid "Trackbacks"
5124
  msgstr "Trackbacks"
5125
 
5126
- #: ../../admin/view/wp-slimstat-reports.php:1111
5127
  msgid "Avg Comments Per Post"
5128
  msgstr "Promedio de Comentarios por Publicación"
5129
 
5130
- #: ../../admin/view/wp-slimstat-reports.php:1112
5131
  msgid "Avg Posts Per Day"
5132
  msgstr "Promedio de Publicaciones por Día"
5133
 
5134
- #: ../../admin/view/wp-slimstat-reports.php:1113
5135
  msgid "Avg Server Latency"
5136
  msgstr ""
5137
 
5138
- #: ../../admin/view/wp-slimstat-reports.php:1114
5139
  #, fuzzy
5140
  msgid "Avg Page Load Time"
5141
  msgstr "Promedio Paginas Visitadas"
5142
 
5143
- #: ../../admin/view/wp-slimstat-reports.php:1141
5144
- msgid "Visits"
5145
- msgstr "Visitas"
5146
-
5147
- #: ../../admin/view/wp-slimstat-reports.php:1145
5148
  msgid "Domains"
5149
  msgstr "Dominios"
5150
 
5151
- #: ../../admin/view/wp-slimstat-reports.php:1150
5152
- msgid "Avg Pageviews"
5153
- msgstr "Promedio Paginas Visitadas"
5154
-
5155
- #: ../../admin/wp-slimstat-admin.php:504 ../../admin/wp-slimstat-admin.php:516
5156
- #: ../../admin/wp-slimstat-admin.php:519
5157
  #, fuzzy
5158
  msgid "SlimStat"
5159
  msgstr "Acerca de WP-SlimStat"
5160
 
5161
- #: ../../admin/wp-slimstat-admin.php:600
5162
- msgid "Pageviews in the last 365 days"
 
5163
  msgstr "Visitas a la página en los últimos 365 días"
5164
 
5165
- #: ../../admin/wp-slimstat-admin.php:628
 
 
 
 
 
5166
  msgid "Show on screen"
5167
  msgstr "Mostrar en pantalla"
5168
 
5169
- #: ../../admin/wp-slimstat-admin.php:656
5170
- msgid "Hide this notice"
5171
- msgstr "Esconder esta notificación"
5172
-
5173
- #: ../../admin/wp-slimstat-admin.php:698
5174
  msgid "Already saved"
5175
  msgstr ""
5176
 
5177
- #: ../../admin/wp-slimstat-admin.php:706
5178
  msgid "Saved"
5179
  msgstr ""
5180
 
5181
- #: ../../admin/wp-slimstat-admin.php:725
5182
  #, fuzzy
5183
  msgid "Delete this filter"
5184
  msgstr "Filtrar páginas visitadas dondé:"
5185
 
5186
- #: ../../admin/wp-slimstat-admin.php:759
5187
  msgid "There was an error updating the following options:"
5188
  msgstr "Hubo un error al actualizar las siguientes opciones:"
5189
 
5190
- #: ../../admin/wp-slimstat-admin.php:762
5191
  #, fuzzy
5192
  msgid "Your changes have been saved."
5193
  msgstr "Sus ajustes se han actualizado correctamente."
5194
 
5195
- #: ../../admin/wp-slimstat-admin.php:785
5196
  msgid "Save Changes"
5197
  msgstr "Guardar los cambios"
5198
 
5199
- #: ../../admin/wp-slimstat-admin.php:801
5200
  msgid "Definitions"
5201
  msgstr "Definiciones"
5202
 
5203
- #: ../../admin/wp-slimstat-admin.php:804
5204
  #, fuzzy
5205
  msgid "Pageview"
5206
  msgstr "Paginas visitadas"
5207
 
5208
- #: ../../admin/wp-slimstat-admin.php:804
5209
  #, fuzzy
5210
  msgid ""
5211
  "A request to load a single HTML file (\"page\"). This should be contrasted "
@@ -5217,12 +5459,12 @@ msgstr ""
5217
  "archivo desde un servidor web. WP SLIMStat registra una visita de página "
5218
  "cada vez que el código de seguimiento se ejecuta"
5219
 
5220
- #: ../../admin/wp-slimstat-admin.php:805
5221
  #, fuzzy
5222
  msgid "(Human) Visit"
5223
  msgstr "Visitas humanas"
5224
 
5225
- #: ../../admin/wp-slimstat-admin.php:805
5226
  msgid ""
5227
  "A period of interaction between a visitor's browser and your website, ending "
5228
  "when the browser is closed or when the user has been inactive on that site "
@@ -5232,7 +5474,7 @@ msgstr ""
5232
  "termina cuando se cierra el navegador o cuando el usuario ha estado inactivo "
5233
  "en ese sitio durante 30 minutos"
5234
 
5235
- #: ../../admin/wp-slimstat-admin.php:806
5236
  msgid ""
5237
  "Any user who has left a comment on your blog, and is thus identified by "
5238
  "Wordpress as a returning visitor"
@@ -5240,12 +5482,12 @@ msgstr ""
5240
  "Todo usuario que haya dejado un comentario en su blog, por lo que es "
5241
  "identificado por Wordpress como un visitante que regresó"
5242
 
5243
- #: ../../admin/wp-slimstat-admin.php:807
5244
  #, fuzzy
5245
  msgid "Unique IP"
5246
  msgstr "IPs Unicas"
5247
 
5248
- #: ../../admin/wp-slimstat-admin.php:807
5249
  msgid ""
5250
  "Used to differentiate between multiple requests to download a file from one "
5251
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -5258,7 +5500,7 @@ msgstr ""
5258
  "dirección de Internet de donde vino una visita de página, es útil, pero no "
5259
  "es perfecta"
5260
 
5261
- #: ../../admin/wp-slimstat-admin.php:808
5262
  msgid ""
5263
  "the originating IP address of a client connecting to a web server through an "
5264
  "HTTP proxy or load balancer"
@@ -5266,12 +5508,12 @@ msgstr ""
5266
  "dirección IP de origen de un cliente que se conecta a un servidor web a "
5267
  "través de un proxy HTTP o equilibrador de carga"
5268
 
5269
- #: ../../admin/wp-slimstat-admin.php:809
5270
  #, fuzzy
5271
  msgid "Direct Traffic"
5272
  msgstr "Visita Directa"
5273
 
5274
- #: ../../admin/wp-slimstat-admin.php:809
5275
  msgid ""
5276
  "All those people showing up to your Web site by typing in the URL of your "
5277
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -5281,12 +5523,12 @@ msgstr ""
5281
  "URL de su sitio web o que vienen de un favorito, algunas personas también "
5282
  "llaman a esto \"tráfico por defecto\" o \"tráfico ambiente\""
5283
 
5284
- #: ../../admin/wp-slimstat-admin.php:810
5285
  #, fuzzy
5286
  msgid "Search Engine"
5287
  msgstr "Motores de Búsqueda"
5288
 
5289
- #: ../../admin/wp-slimstat-admin.php:810
5290
  msgid ""
5291
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
5292
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -5294,17 +5536,17 @@ msgstr ""
5294
  "Google, Yahoo, MSN, Ask, otros; este cubo incluirá tanto su tráfico "
5295
  "orgánico, así como por pago (PPC / SEM), así que tenga cuidado de que"
5296
 
5297
- #: ../../admin/wp-slimstat-admin.php:811 ../../admin/wp-slimstat-admin.php:827
5298
  msgid "Keywords used by your visitors to find your website on a search engine"
5299
  msgstr ""
5300
  "Las palabras clave utilizadas por los visitantes para encontrar su sitio web "
5301
  "en un buscador"
5302
 
5303
- #: ../../admin/wp-slimstat-admin.php:812
5304
  msgid "SERP"
5305
  msgstr "SERP"
5306
 
5307
- #: ../../admin/wp-slimstat-admin.php:812
5308
  msgid ""
5309
  "Short for search engine results page, the Web page that a search engine "
5310
  "returns with the results of its search. The value shown represents your rank "
@@ -5315,7 +5557,7 @@ msgstr ""
5315
  "que se muestra representa su rango (o posición) dentro de esa lista de los "
5316
  "resultados"
5317
 
5318
- #: ../../admin/wp-slimstat-admin.php:813
5319
  msgid ""
5320
  "Any program used for accessing a website; this includes browsers, robots, "
5321
  "spiders and any other program that was used to retrieve information from the "
@@ -5325,7 +5567,7 @@ msgstr ""
5325
  "navegadores, robots, arañas y cualquier otro programa que se utiliza para "
5326
  "recuperar información del sitio"
5327
 
5328
- #: ../../admin/wp-slimstat-admin.php:814
5329
  msgid ""
5330
  "A link from one domain to another is said to be outbound from its source "
5331
  "anchor and inbound to its target. This report lists all the links to other "
@@ -5335,27 +5577,27 @@ msgstr ""
5335
  "de anclaje y de entrada a su objetivo. Este informe muestra todos los "
5336
  "enlaces a otros sitios web, seguidos por sus visitantes."
5337
 
5338
- #: ../../admin/wp-slimstat-admin.php:821
5339
  msgid "Basic Filters"
5340
  msgstr "Filtros básicos"
5341
 
5342
- #: ../../admin/wp-slimstat-admin.php:824
5343
  msgid "User agent (Firefox, Chrome, ...)"
5344
  msgstr "Agente usuario(Firefox, Chrome, ...)"
5345
 
5346
- #: ../../admin/wp-slimstat-admin.php:825
5347
  msgid "2-letter code (us, ru, de, it, ...)"
5348
  msgstr "código de 2 letras (eu, ru, de, it, ...)"
5349
 
5350
- #: ../../admin/wp-slimstat-admin.php:826
5351
  msgid "IP"
5352
  msgstr "IP"
5353
 
5354
- #: ../../admin/wp-slimstat-admin.php:826
5355
  msgid "Visitor's public IP address"
5356
  msgstr "Dirección IP pública del visitante"
5357
 
5358
- #: ../../admin/wp-slimstat-admin.php:828
5359
  msgid ""
5360
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
5361
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -5365,7 +5607,7 @@ msgstr ""
5365
  "en-us/library/ee825488(v=cs.20).aspx\">págna de cultura del lenguaje</a> "
5366
  "(primera columna) para más información"
5367
 
5368
- #: ../../admin/wp-slimstat-admin.php:829
5369
  msgid ""
5370
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
5371
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -5375,15 +5617,15 @@ msgstr ""
5375
  "target=\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php"
5376
  "\">esta página del manual</a> para obtener más información"
5377
 
5378
- #: ../../admin/wp-slimstat-admin.php:830
5379
  msgid "URL accessed on your site"
5380
  msgstr "URL visitada en su sitio"
5381
 
5382
- #: ../../admin/wp-slimstat-admin.php:831
5383
  msgid "Complete address of the referrer page"
5384
  msgstr "Dirección completa de la página que refiere"
5385
 
5386
- #: ../../admin/wp-slimstat-admin.php:832
5387
  msgid ""
5388
  "Visitors' names according to the cookie set by Wordpress after they leave a "
5389
  "comment"
@@ -5391,15 +5633,15 @@ msgstr ""
5391
  "Nombres de visitantes según la cookie establecida por Wordpress después de "
5392
  "dejar un comentario"
5393
 
5394
- #: ../../admin/wp-slimstat-admin.php:840
5395
  msgid "Advanced Filters"
5396
  msgstr "Filtros avanzados"
5397
 
5398
- #: ../../admin/wp-slimstat-admin.php:843
5399
  msgid "user agent version (9.0, 11, ...)"
5400
  msgstr "versión del agente de usuario (9,0, 11, ...)"
5401
 
5402
- #: ../../admin/wp-slimstat-admin.php:844
5403
  msgid ""
5404
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
5405
  "all others"
@@ -5407,11 +5649,11 @@ msgstr ""
5407
  "1 = oruga del motor de búsqueda, 2 = dispositivo móvil, 3 = lector de "
5408
  "sindicación, 0 =a todos los demás"
5409
 
5410
- #: ../../admin/wp-slimstat-admin.php:845
5411
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
5412
  msgstr "profundidad de colorde pantalla de visitante (8, 16, 24, ...)"
5413
 
5414
- #: ../../admin/wp-slimstat-admin.php:846
5415
  msgid ""
5416
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
5417
  "values)"
@@ -5419,7 +5661,7 @@ msgstr ""
5419
  "cuál estándar CSS era soportado por ese navegador (1, 2, 3 y otros valores "
5420
  "enteros)"
5421
 
5422
- #: ../../admin/wp-slimstat-admin.php:847
5423
  msgid ""
5424
  "this field is set to <em>[pre]</em> if the resource has been accessed "
5425
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -5429,20 +5671,20 @@ msgstr ""
5429
  "través de <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
5430
  "Link_prefetching_FAQ\">Preecaptura de Enlaces</a> o técnicas similares"
5431
 
5432
- #: ../../admin/wp-slimstat-admin.php:848
5433
  msgid "author associated to that post/page when the resource was accessed"
5434
  msgstr "autor asociado a esa publicación/página cuando se accedió al recurso"
5435
 
5436
- #: ../../admin/wp-slimstat-admin.php:849
5437
  msgid "ID of the category/term associated to the resource, when available"
5438
  msgstr ""
5439
  "ID de la categoría / término asociado al recurso, cuando esté disponible"
5440
 
5441
- #: ../../admin/wp-slimstat-admin.php:850
5442
  msgid "visitor's originating IP address, if available"
5443
  msgstr "dirección IP de origen del visitante, si está disponible"
5444
 
5445
- #: ../../admin/wp-slimstat-admin.php:851
5446
  msgid ""
5447
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
5448
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -5456,11 +5698,11 @@ msgstr ""
5456
  "wordpress.org/Conditional_Tags\">Etiquetas condicionales</a> página del "
5457
  "manual para más información"
5458
 
5459
- #: ../../admin/wp-slimstat-admin.php:852
5460
  msgid "viewport width and height (1024x768, 800x600, ...)"
5461
  msgstr "ancho de vista y altura (1024x768, 800x600 , ...)"
5462
 
5463
- #: ../../admin/wp-slimstat-admin.php:853
5464
  msgid ""
5465
  "generally used in conjunction with <em>is not empty</em>, identifies human "
5466
  "visitors"
@@ -5468,11 +5710,11 @@ msgstr ""
5468
  "se utiliza generalmente en conjunción con <em> no está vacío </em>, "
5469
  "identifica los visitantes humanos"
5470
 
5471
- #: ../../admin/wp-slimstat-admin.php:854
5472
  msgid "Date Filters"
5473
  msgstr "Filtros de fecha"
5474
 
5475
- #: ../../admin/wp-slimstat-admin.php:854
5476
  msgid ""
5477
  "you can specify the timeframe by entering a number in the <em>interval</em> "
5478
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -5483,11 +5725,11 @@ msgstr ""
5483
  "(es decir, día=1, mes=1, año=blank, intervalo=-1 establecerá un filtro de "
5484
  "año a la fecha)"
5485
 
5486
- #: ../../admin/wp-slimstat-admin.php:855
5487
  msgid "SERP Position"
5488
  msgstr "Posición SERP"
5489
 
5490
- #: ../../admin/wp-slimstat-admin.php:855
5491
  msgid ""
5492
  "set the filter to Referer contains cd=N&, where N is the position you are "
5493
  "looking for"
@@ -5495,30 +5737,163 @@ msgstr ""
5495
  "configurar el filtro para Referer contiene cd=N&, donde N es la posición que "
5496
  "usted está buscando"
5497
 
5498
- #: ../../admin/wp-slimstat-admin.php:882
5499
  msgid "Yes"
5500
  msgstr "Si"
5501
 
5502
- #: ../../admin/wp-slimstat-admin.php:884
5503
  msgid "Site Specific"
5504
  msgstr ""
5505
 
5506
- #~ msgid "Empty Database"
5507
- #~ msgstr "Base de datos vacía"
 
 
 
 
 
5508
 
 
5509
  #, fuzzy
5510
- #~ msgid "Reset Reports"
5511
- #~ msgstr "Informes Personalizados"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5512
 
5513
- #~ msgid "No Panic Button"
5514
- #~ msgstr "Botón No Pánico"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5515
 
 
5516
  #~ msgid ""
5517
- #~ "Reset the default arrangement of your reports. Helpful when, for some "
5518
- #~ "reason, reports disappear from your panels."
5519
  #~ msgstr ""
5520
- #~ "Cambiar la disposición por defecto de sus informes. Útil cuando, por "
5521
- #~ "alguna razón, los informes desaparecen de sus paneles."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5522
 
5523
  #~ msgid "Visitors"
5524
  #~ msgstr "Visitantes"
@@ -5621,9 +5996,6 @@ msgstr ""
5621
  #~ msgid "Google Safe Browsing List"
5622
  #~ msgstr "Lista de navegación segura Google"
5623
 
5624
- #~ msgid "Hostile External Links"
5625
- #~ msgstr "Enlaces Externos Hostiles"
5626
-
5627
  #~ msgid "Other Treats"
5628
  #~ msgstr "Otras amenazas"
5629
 
@@ -7235,9 +7607,6 @@ msgstr ""
7235
  #~ msgid "Unique Pages Referred"
7236
  #~ msgstr "Únicamente Referidos desde páginas"
7237
 
7238
- #~ msgid "Unique Internal"
7239
- #~ msgstr "Únicamente interno"
7240
-
7241
  #, fuzzy
7242
  #~ msgid "Sites"
7243
  #~ msgstr "Sitios para"
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-17 20:30-0500\n"
6
+ "PO-Revision-Date: 2015-04-17 20:30-0500\n"
7
  "Last-Translator: Get Used To IT <support@getused.to.it>\n"
8
  "Language-Team: \n"
9
  "Language: es_ES\n"
16
  "X-Generator: Poedit 1.6.9\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:"
24
  "Hubo un error al recuperar la lista de complementos desde el servidor. Por "
25
  "favor, inténtelo de nuevo más tarde. Mensaje de error:"
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."
32
  "Se produjo un error decodificando la lista de complementos desde el "
33
  "servidor. Por favor, inténtelo de nuevo más tarde."
34
 
35
+ #: ../../admin/config/addons.php:31 ../../admin/config/index.php:9
36
+ #: ../../admin/wp-slimstat-admin.php:592 ../../admin/wp-slimstat-admin.php:607
37
+ #: ../../wp-slimstat.php:1476
38
  msgid "Add-ons"
39
  msgstr "Añadidos"
40
 
41
+ #: ../../admin/config/addons.php:32
42
  #, fuzzy
43
  msgid ""
44
  "Add-ons extend the functionality of Slimstat in many interesting ways. We "
57
  "recibió cuando compró."
58
 
59
  #: ../../admin/config/addons.php:36
60
+ #, php-format
61
+ msgid ""
62
+ "This list is cached daily on your server: <a href=\"%s&amp;force_refresh=true"
63
+ "\">click here</a> to clear the cache."
64
+ msgstr ""
65
+
66
+ #: ../../admin/config/addons.php:45
67
  msgid "Add-on"
68
  msgstr "Añadido"
69
 
70
+ #: ../../admin/config/addons.php:45
71
  msgid "Description"
72
  msgstr "Descripción"
73
 
75
  msgid "General"
76
  msgstr "General"
77
 
78
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:47
79
+ #: ../../admin/config/index.php:146
80
+ #, fuzzy
81
+ msgid "Reports"
82
+ msgstr "Informes Personalizados"
83
 
84
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:73
85
  msgid "Filters"
86
  msgstr "Filtros"
87
 
88
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:144
89
  #, fuzzy
90
  msgid "Permissions"
91
  msgstr "Enlace Permanente"
92
 
93
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:221
94
  msgid "Advanced"
95
  msgstr "Avanzados"
96
 
97
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:252
98
  msgid "Maintenance"
99
  msgstr "Mantenimiento"
100
 
101
+ #: ../../admin/config/index.php:14 ../../admin/config/index.php:151
102
+ #: ../../admin/wp-slimstat-admin.php:633 ../../admin/wp-slimstat-admin.php:635
103
+ #: ../../wp-slimstat.php:1479
104
  #, fuzzy
105
  msgid "Settings"
106
  msgstr "Seleccionar orden"
107
 
108
+ #: ../../admin/config/index.php:20 ../../admin/config/index.php:226
109
  msgid "Tracker"
110
  msgstr "Rastreador"
111
 
208
  #, fuzzy
209
  msgid ""
210
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
211
+ "per post in the last 365 days."
212
  msgstr ""
213
  "Añadir una nueva columna a la pantalla Editar publicaciones, con el número "
214
  "de visitas por publicación (pueden ralentizar la renderización de páginas)."
215
 
216
+ #: ../../admin/config/index.php:29
217
+ #, fuzzy
218
+ msgid "Interval"
219
+ msgstr "Únicamente interno"
220
 
221
+ #: ../../admin/config/index.php:29
222
+ msgid ""
223
+ "Enter the time range, in days, that should be used to calculate the value "
224
+ "here above."
225
+ msgstr ""
226
+
227
+ #: ../../admin/config/index.php:30
228
  #, fuzzy
229
+ msgid "Report Type"
230
+ msgstr "Informes Personalizados"
231
 
232
+ #: ../../admin/config/index.php:30
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:30 ../../admin/view/index.php:173
240
+ #: ../../admin/view/wp-slimstat-reports.php:850
241
+ #: ../../admin/view/wp-slimstat-reports.php:952
242
+ #: ../../admin/view/wp-slimstat-reports.php:1175
243
+ msgid "Pageviews"
244
+ msgstr "Paginas visitadas"
245
+
246
+ #: ../../admin/config/index.php:30
247
+ #: ../../admin/view/wp-slimstat-reports.php:856
248
+ #: ../../admin/view/wp-slimstat-reports.php:871
249
+ #: ../../admin/view/wp-slimstat-reports.php:1175
250
+ #: ../../admin/view/wp-slimstat-reports.php:1179
251
+ #: ../../admin/view/wp-slimstat-reports.php:1183
252
+ msgid "Unique IPs"
253
+ msgstr "IPs Unicas"
254
+
255
  #: ../../admin/config/index.php:32
256
+ msgid "Database"
257
+ msgstr "Base de datos"
258
+
259
+ #: ../../admin/config/index.php:33
260
  msgid "Retain data for"
261
  msgstr "Conservar los datos durante"
262
 
263
+ #: ../../admin/config/index.php:33
264
  #, fuzzy
265
  msgid ""
266
  "Clean-up log entries older than the number of days specified here above. "
271
  "aquí arriba. Introduzca <strong> 0 </strong> (número cero) si desea "
272
  "conservar sus datos independientemente de su edad."
273
 
274
+ #: ../../admin/config/index.php:33
275
  msgid "Next clean-up on"
276
  msgstr "Siguiente limpieza en"
277
 
278
+ #: ../../admin/config/index.php:33
279
+ #, fuzzy, php-format
280
+ msgid ""
281
+ "Entries logged on or before %s will be archived or deleted according to the "
282
+ "option here below."
283
  msgstr ""
284
  "Los comentarios registrados en o antes del %s se eliminarán de forma "
285
  "permanente."
286
 
287
+ #: ../../admin/config/index.php:33 ../../admin/view/index.php:102
288
+ #: ../../admin/view/wp-slimstat-db-new.php:70
289
+ #: ../../admin/view/wp-slimstat-db.php:75
290
+ #: ../../admin/view/wp-slimstat-reports.php:838
291
  msgid "days"
292
  msgstr "dias"
293
 
294
+ #: ../../admin/config/index.php:34
295
  #, fuzzy
296
+ msgid "Delete records"
297
+ msgstr "Palabras clave"
 
 
 
 
298
 
299
+ #: ../../admin/config/index.php:34
300
+ msgid ""
301
+ "If DB space is not an issue, you can decide to archive older records in "
302
+ "another table, instead of deleting them. This way performance is preserved, "
303
+ "but you will still be able to access your data at a later time, if needed. "
304
+ "Please note that the archive table (<code>wp_slim_stats_archive</code>) will "
305
+ "be <strong>deleted</strong> along with all the other tables, when Slimstat "
306
+ "is uninstalled. Make sure to backup your data before you proceed."
307
+ msgstr ""
308
 
309
  #: ../../admin/config/index.php:49
310
+ msgid "Formats and Conversions"
311
+ msgstr ""
312
+
313
+ #: ../../admin/config/index.php:50
314
  msgid "Number Format"
315
  msgstr "Formato de número"
316
 
317
+ #: ../../admin/config/index.php:50
318
  #, fuzzy
319
  msgid "Choose the number format you want to use for your reports."
320
  msgstr ""
321
  "Seleccione el formato de número que desea utilizar para sus informes, "
322
  "europeos o americanos."
323
 
 
 
 
 
 
 
 
 
 
 
 
 
324
  #: ../../admin/config/index.php:51
325
+ #, fuzzy
326
+ msgid "Date Format"
327
+ msgstr "Fecha y hora"
328
 
329
  #: ../../admin/config/index.php:51
330
  msgid ""
331
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
332
+ "Format</a> to use when displaying a pageview's date."
333
  msgstr ""
 
 
 
334
 
335
  #: ../../admin/config/index.php:52
336
  #, fuzzy
337
+ msgid "Time Format"
338
+ msgstr "Formato de número"
339
 
340
  #: ../../admin/config/index.php:52
341
  msgid ""
342
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
343
+ "Format</a> to use when displaying a pageview's time."
344
  msgstr ""
 
 
345
 
346
  #: ../../admin/config/index.php:53
347
+ #, fuzzy
348
+ msgid "Use Display Name"
349
+ msgstr "Mostrar Nombre para mostrar"
350
 
351
  #: ../../admin/config/index.php:53
 
352
  msgid ""
353
+ "By default, users are listed by their usernames. Use this option to "
354
+ "visualize their display names instead."
355
  msgstr ""
356
+ "De forma predeterminada, los usuarios se enumeran por sus nombres de "
357
+ "usuario. Utilice esta opción para visualizar los nombres para mostrar en su "
358
+ "lugar."
359
 
360
  #: ../../admin/config/index.php:54
361
  #, fuzzy
362
+ msgid "Use Post Titles"
363
+ msgstr "Mostrar Títulos"
364
 
365
  #: ../../admin/config/index.php:54
366
+ #, fuzzy
367
  msgid ""
368
+ "Slimstat converts your permalinks into post and page titles. Disable this "
369
+ "feature if you need to see the URL in your reports."
370
  msgstr ""
371
+ "WP SLIMStat convierte tus enlaces permanentes en títulos de publicaciones y "
372
+ "páginas. Desactive esta función si necesita ver la URL en sus informes."
373
 
374
  #: ../../admin/config/index.php:55
375
+ msgid "Convert IP Addresses"
376
+ msgstr "Convertir Direcciones IP"
 
377
 
378
  #: ../../admin/config/index.php:55
379
+ msgid "Display provider names instead of IP addresses."
380
+ msgstr "Muestra los nombres de proveedores, en lugar de direcciones IP."
 
 
381
 
382
  #: ../../admin/config/index.php:57
383
  msgid "Functionality"
441
  "segundos. Introduzca <strong> 0 </strong> (número cero) para deshabilitar "
442
  "esta funcionalidad."
443
 
444
+ #: ../../admin/config/index.php:64 ../../admin/config/index.php:228
445
  msgid "seconds"
446
  msgstr "Segundos"
447
 
450
  msgid "Specify the number of items in the Activity Log."
451
  msgstr "Especifica el número de elementos en Ahora."
452
 
453
+ #: ../../admin/config/index.php:68 ../../admin/config/index.php:95
454
+ #: ../../admin/config/index.php:245 ../../admin/config/maintenance.php:385
455
+ msgid "Miscellaneous"
456
+ msgstr "Varios"
457
+
458
+ #: ../../admin/config/index.php:69
459
  #, fuzzy
460
+ msgid "Show User Agent"
461
+ msgstr "Buscadores"
462
+
463
+ #: ../../admin/config/index.php:69
464
+ msgid ""
465
+ "Choose if you want to see the browser name or a complete user agent string "
466
+ "when hovering on browser icons."
467
+ msgstr ""
468
+ "Seleccione si desea ver el nombre del navegador o una cadena completa de "
469
+ "agente de usuario al pasar el cursor sobre los iconos del navegador."
470
 
471
+ #: ../../admin/config/index.php:70
472
  #, fuzzy
473
+ msgid "Enable SOV"
474
+ msgstr "Habilitar CDN"
475
+
476
+ #: ../../admin/config/index.php:70
477
  msgid ""
478
+ "In linguistic typology, a subject-object-verb (SOV) language is one in which "
479
+ "the subject, object, and verb of a sentence appear in that order, like in "
480
+ "Japanese."
481
  msgstr ""
 
 
482
 
483
+ #: ../../admin/config/index.php:75
484
  #, fuzzy
485
  msgid "Visitors and Known Users"
486
  msgstr "Navegadores recientes"
487
 
488
+ #: ../../admin/config/index.php:76
489
  msgid "Track Registered Users"
490
  msgstr "Seguimiento Usuarios Registrados"
491
 
492
+ #: ../../admin/config/index.php:76
493
  msgid "Enable this option to track logged in users."
494
  msgstr "Active esta opción para rastrear usuarios registrados."
495
 
496
+ #: ../../admin/config/index.php:77
497
  #, fuzzy
498
  msgid "Blacklist by Username"
499
  msgstr "Direcciones IP Blacklist"
500
 
501
+ #: ../../admin/config/index.php:77
502
  msgid ""
503
  "List all the usernames you don't want to track, separated by commas. Please "
504
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
509
  "no </em> ignorados y que los nombres de usuario distinguen entre mayúsculas "
510
  "y minúsculas."
511
 
512
+ #: ../../admin/config/index.php:78
513
  msgid "Blacklist by IP Address"
514
  msgstr "Direcciones IP Blacklist"
515
 
516
+ #: ../../admin/config/index.php:78
517
  #, fuzzy
518
  msgid ""
519
  "List all the IP addresses you don't want to track, separated by commas. Each "
528
  "CIDR </a> (es decir, < em> 192.168.0.0/24 </em>). Si el formato no es "
529
  "correcto, WP SLIMStat no puede rastrear páginas vistas correctamente."
530
 
531
+ #: ../../admin/config/index.php:79
532
  #, fuzzy
533
  msgid "Blacklist by Capability"
534
  msgstr "Navegador"
535
 
536
+ #: ../../admin/config/index.php:79
537
  msgid ""
538
  "Users having at least one of the <a href='http://codex.wordpress.org/"
539
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
544
  "no se les rastreará. Las Capacidades distinguen entre mayúsculas y "
545
  "minúsculas."
546
 
547
+ #: ../../admin/config/index.php:81
548
  msgid "Profiling"
549
  msgstr "Haciendo perfil"
550
 
551
+ #: ../../admin/config/index.php:82
552
  msgid "Ignore Spammers"
553
  msgstr "Ignorar Spammers"
554
 
555
+ #: ../../admin/config/index.php:82
556
  msgid ""
557
  "Enable this option if you don't want to track visits from users identified "
558
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
565
  "adelante se marcan como correo no deseado, también se eliminarán de la base "
566
  "de datos."
567
 
568
+ #: ../../admin/config/index.php:83
569
+ #, fuzzy
570
+ msgid "Ignore Bots"
571
+ msgstr "Navegadores recientes"
572
+
573
+ #: ../../admin/config/index.php:83
574
+ msgid ""
575
+ "Turn on this feature if you want to have the accuracy level of server-side "
576
+ "tracking, but not the inconvenience of getting your database clogged with "
577
+ "pageviews generated by crawlers, spiders, search engine bots, etc. Please "
578
+ "note that in Javascript Mode, bots are ignored regardless of this setting."
579
+ msgstr ""
580
+
581
+ #: ../../admin/config/index.php:84
582
  #, fuzzy
583
  msgid "Permalinks"
584
  msgstr "Enlace Permanente"
585
 
586
+ #: ../../admin/config/index.php:84
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. "
602
  "<code> / abo! T </ code > coincidirá con /about and /abort. Las cadenas no "
603
  "se afectan por mayúsculas y minúsculas."
604
 
605
+ #: ../../admin/config/index.php:85
606
  #, fuzzy
607
  msgid "Countries"
608
  msgstr "Paises que más visitan"
609
 
610
+ #: ../../admin/config/index.php:85
611
  msgid ""
612
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
613
  "track, separated by commas."
615
  "Los códigos de país (Es decir: <code> es-es, it, es </code>) a los que no "
616
  "desee realizar el seguimiento, separados por comas"
617
 
618
+ #: ../../admin/config/index.php:86
619
  #, fuzzy
620
  msgid "User Agents"
621
  msgstr "Buscadores"
622
 
623
+ #: ../../admin/config/index.php:86
624
  msgid ""
625
  "Browsers (user agents) you don't want to track, separated by commas. You can "
626
  "specify the browser's version adding a slash after the name (i.e. "
637
  "code> coincidirá Chrome y cromo, <code> IE /! 0.0 </code> coincidirá IE/7.0 "
638
  "y IE/8.0. Las cadenas son de mayúsculas y minúsculas."
639
 
640
+ #: ../../admin/config/index.php:87
641
  #, fuzzy
642
  msgid "Referring Sites"
643
  msgstr "Motores de Búsqueda"
644
 
645
+ #: ../../admin/config/index.php:87
646
  msgid ""
647
  "Referring URLs that you don't want to track, separated by commas: "
648
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
657
  "cadenas son mayúsculas y minúsculas. Por favor incluya ya sea un comodín o "
658
  "el protocolo que desea filtrar (http://, https://)."
659
 
660
+ #: ../../admin/config/index.php:89
661
  #, fuzzy
662
  msgid "Internal and Outbound Links"
663
  msgstr "Enlaces Salientes Recientes"
664
 
665
+ #: ../../admin/config/index.php:90
666
  #, fuzzy
667
  msgid "Track Outbound Clicks"
668
  msgstr "Enlaces Salientes Recientes"
669
 
670
+ #: ../../admin/config/index.php:90
671
  msgid ""
672
  "Track when your visitors click on link to external websites. This option "
673
  "required Spy Mode to be enabled."
675
  "Rastree cuando los usuarios hacen clic en el enlace a sitios web externos. "
676
  "Esta opción requere que el modo Espía esté habilitado."
677
 
678
+ #: ../../admin/config/index.php:91
679
  #, fuzzy
680
  msgid "Track Coordinates"
681
  msgstr "Seguimiento Activo"
682
 
683
+ #: ../../admin/config/index.php:91
684
  msgid ""
685
  "Collect mouse coordinates and other information for clicks on internal "
686
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
687
  "this information is only collected for external links."
688
  msgstr ""
689
 
690
+ #: ../../admin/config/index.php:92
691
+ msgid "No Callback"
692
+ msgstr ""
 
693
 
694
+ #: ../../admin/config/index.php:92
695
  msgid ""
696
  "Track the event but do not invoke the callback function on links marked with "
697
+ "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
698
+ "attribute contains one of these strings (separated by comma). Useful to "
699
+ "prevent conflicts with lightbox and similar libraries."
700
  msgstr ""
701
 
702
+ #: ../../admin/config/index.php:93
703
+ msgid "Do Not Track"
 
 
 
 
 
 
 
704
  msgstr ""
705
 
706
+ #: ../../admin/config/index.php:93
 
 
 
 
 
707
  msgid ""
708
+ "Do not track links marked with one of these class names, <em>rel</em> "
709
+ "attributes or whose <em>href</em> attribute contains one of these strings "
710
+ "(separated by comma)."
711
  msgstr ""
712
 
713
+ #: ../../admin/config/index.php:96
 
 
 
 
714
  msgid "Enable Privacy Mode"
715
  msgstr "Activar el modo de privacidad"
716
 
717
+ #: ../../admin/config/index.php:96
718
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
719
  msgstr ""
720
  "Enmascarar direcciones IP de sus visitantes para cumplir con leyes de "
721
  "privacidad europeas."
722
 
723
+ #: ../../admin/config/index.php:97
724
  msgid "Ignore Prefetch Requests"
725
  msgstr "Ignorar PPeticiones Prefetch"
726
 
727
+ #: ../../admin/config/index.php:97
728
  #, fuzzy
729
  msgid ""
730
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
735
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
736
  "target='_blank'> Función de Prellamado de enlaces de Firefox </a>."
737
 
738
+ #: ../../admin/config/index.php:113
739
  msgid "Ignore users (username not found)"
740
  msgstr "Ignorar usuarios (nombre de usuario no encontrado)"
741
 
742
+ #: ../../admin/config/index.php:136
743
  msgid ""
744
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
745
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
748
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> esta página </a> "
749
  "para obtener más información"
750
 
751
+ #: ../../admin/config/index.php:147
 
 
 
 
 
752
  #, fuzzy
753
  msgid "Restrict Authors"
754
  msgstr "Autor de la entrada(sección)"
755
 
756
+ #: ../../admin/config/index.php:147
757
  #, fuzzy
758
  msgid ""
759
  "Enable this option if you want your authors to only see stats related to "
762
  "Habilite esta opción si desea que sus autores sólo vean las estadísticas "
763
  "relacionadas con su propio contenido"
764
 
765
+ #: ../../admin/config/index.php:148 ../../admin/config/index.php:152
766
  #, fuzzy
767
  msgid "Capability"
768
  msgstr "Navegador"
769
 
770
+ #: ../../admin/config/index.php:148
771
  #, fuzzy
772
  msgid ""
773
  "Specify the minimum <a href='http://codex.wordpress.org/"
785
  "blanca 'Acceso de lectura' aquí abajo. En este caso, la lista tiene "
786
  "prioridad sobre la capacidad."
787
 
788
+ #: ../../admin/config/index.php:149 ../../admin/config/index.php:153
789
  msgid "Whitelist"
790
  msgstr "Lista blanca"
791
 
792
+ #: ../../admin/config/index.php:149
793
  msgid ""
794
  "List all the users who should have access to the reports, separated by "
795
  "commas. Administrators are implicitly allowed, so you don't need to list "
800
  "es necesario enumerarlos aquí. Los nombres de usuario distinguen entre "
801
  "mayúsculas y minúsculasdefecto."
802
 
803
+ #: ../../admin/config/index.php:152
804
  #, fuzzy
805
  msgid ""
806
  "Specify the minimum <a href='http://codex.wordpress.org/"
814
  "blanca de aquí abajo se puede utilizar para anular esta opción para usuarios "
815
  "específicos."
816
 
817
+ #: ../../admin/config/index.php:153
818
  msgid ""
819
  "List all the users who can edit these options, separated by commas. Please "
820
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
825
  "implícitamente permitidos, así que ¡no se olvide de incluirse a si mismo! "
826
  "Los nombres de usuario distinguen entre mayúsculas y minúsculas."
827
 
828
+ #: ../../admin/config/index.php:169
829
  msgid "Read access: username not found"
830
  msgstr "Acceso de lectura: Nombre de usuario no se encuentra"
831
 
832
+ #: ../../admin/config/index.php:182 ../../admin/config/index.php:213
833
  msgid ""
834
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
835
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
839
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\">esta página</a> para "
840
  "obtener más información"
841
 
842
+ #: ../../admin/config/index.php:200
843
  msgid "Config access: username not found"
844
  msgstr "Acceso de configuración: Nombre de usuario no encontrado"
845
 
846
+ #: ../../admin/config/index.php:227
847
  msgid "Detect Smoothing"
848
  msgstr "Detectar Smoothing"
849
 
850
+ #: ../../admin/config/index.php:227
851
  msgid ""
852
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
853
  "This option required Spy Mode to be enabled."
856
  "(suavizado de fuentes). Esta opción requiere que el modo Espía esté "
857
  "habilitado."
858
 
859
+ #: ../../admin/config/index.php:228
860
  #, fuzzy
861
  msgid "Session Duration"
862
  msgstr "Visitas"
863
 
864
+ #: ../../admin/config/index.php:228
865
  #, fuzzy
866
  msgid ""
867
  "How many seconds should a human session last? Google Analytics sets it to "
870
  "¿Cuántos segundos debe durar una sesión humana en su sitio? Google Analytics "
871
  "lo establece en 1.800 segundos."
872
 
873
+ #: ../../admin/config/index.php:229
874
  msgid "Extend Session"
875
  msgstr "Extender Sesión"
876
 
877
+ #: ../../admin/config/index.php:229
878
  msgid "Extend the duration of a session each time the user visits a new page."
879
  msgstr ""
880
  "Extender la duración de una sesión cada vez que el usuario visita una página "
881
  "nueva."
882
 
883
+ #: ../../admin/config/index.php:230
884
  msgid "Enable CDN"
885
  msgstr "Habilitar CDN"
886
 
887
+ #: ../../admin/config/index.php:230
888
  msgid ""
889
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
890
  "by serving our tracking code from their fast and reliable network (free "
894
  "CDN, sirviendo nuestro código de seguimiento de su red rápida y confiable "
895
  "(servicio gratuito)."
896
 
897
+ #: ../../admin/config/index.php:231
898
  msgid "Extensions to Track"
899
  msgstr "Extensiones a rastreo"
900
 
901
+ #: ../../admin/config/index.php:231
902
  msgid ""
903
  "List all the file extensions that you want to be treated as Downloads. "
904
  "Please note that links pointing to external resources (i.e. PDFs on a "
912
  "Descargas y no Vínculos salientes (y rastreado como tal), si su extensión "
913
  "coincide con uno de los que se enumeran a continuación."
914
 
915
+ #: ../../admin/config/index.php:233
916
  #, fuzzy
917
  msgid "External Pages"
918
  msgstr "Paginas visitadas"
919
 
920
+ #: ../../admin/config/index.php:234
921
+ msgid ""
922
+ "Add the following code to all the non-WP pages you want to track, right "
923
+ "before the closing BODY tag"
924
+ msgstr ""
925
+
926
+ #: ../../admin/config/index.php:244
927
+ #, fuzzy
928
+ msgid "Allow External Domains"
929
+ msgstr "Enlaces Externos Hostiles"
930
+
931
+ #: ../../admin/config/index.php:244
932
+ msgid ""
933
+ "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
934
+ "header is present on the requested resource, when using the external "
935
+ "tracking code here above, list the domains (complete with scheme, separated "
936
+ "by commas) you would like to allow. For example: <code>http://my.domain.ext</"
937
+ "code> (no trailing slash). Please see <a href='http://www.w3.org/TR/cors/"
938
+ "#security' target='_blank'>this W3 resource</a> for more information on the "
939
+ "security implications of allowing CORS requests."
940
  msgstr ""
941
 
942
+ #: ../../admin/config/index.php:246
943
  msgid "Debug Mode"
944
  msgstr ""
945
 
946
+ #: ../../admin/config/index.php:246
947
  msgid "Display the SQL queries used to retrieve the data."
948
  msgstr ""
949
 
950
+ #: ../../admin/config/index.php:247
951
  msgid "IP Lookup"
952
  msgstr "Búsqueda de IP"
953
 
954
+ #: ../../admin/config/index.php:247
955
  msgid "Customize the Geolocation service to be used in the reports."
956
  msgstr ""
957
  "Personalizar el servicio de Geolocalización de ser utilizado en los informes."
958
 
959
+ #: ../../admin/config/index.php:248
960
  msgid "Custom CSS"
961
  msgstr "CSS personalizado"
962
 
963
+ #: ../../admin/config/index.php:248
964
  #, fuzzy
965
  msgid ""
966
  "Paste here your custom stylesheet to personalize the way your reports look. "
967
+ "<a href='https://slimstat.freshdesk.com/support/solutions/"
968
+ "articles/5000528528-how-can-i-change-the-colors-associated-to-color-coded-"
969
+ "pageviews-known-user-known-visitors-search-e' target='_blank'>Check the FAQ</"
970
+ "a> for more information on how to use this setting."
971
  msgstr ""
972
  "Pega aquí tu hoja de estilo personalizada para personalizar la forma en que "
973
  "sus informes se ven. <a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
974
  "target='_blank'> Compruebe la FAQ </a> para obtener más información sobre "
975
  "cómo utilizar esta funcionalidad."
976
 
977
+ #: ../../admin/config/index.php:249
978
  msgid "Enable UAN"
979
  msgstr "Habilitar UAN"
980
 
981
+ #: ../../admin/config/index.php:249
982
  #, fuzzy
983
  msgid ""
984
  "Send anonymous data about user agents to our server for analysis. This "
993
  "opensource BrowsCap </a>, y mejorar la precisión de la funcionalidad de "
994
  "detección de navegador del SLIMStat."
995
 
996
+ #: ../../admin/config/maintenance.php:17
997
  #, fuzzy
998
+ msgid ""
999
+ "Congrats! Slimstat is now optimized for <a href=\"http://www.youtube.com/"
1000
+ "watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
1001
+ msgstr ""
1002
+ "¡Felicidades! WP SLIMStat está ahora optimizado para <a href=\"http://www."
1003
+ "youtube.com/watch?v=ygE01sOhzz0\" target=\"_blank\"> velocidad ridícula </a>."
1004
+
1005
+ #: ../../admin/config/maintenance.php:25
1006
+ #, fuzzy
1007
+ msgid "Indexing has been disabled. Enjoy the extra database space!"
1008
+ msgstr ""
1009
+ "Indexación se ha desactivado con éxito. Disfrute del espacio de base de "
1010
+ "datos adicional ¡que acaba de ganar!"
1011
 
1012
+ #: ../../admin/config/maintenance.php:36
1013
  msgid "records deleted from your database."
1014
  msgstr "Registros eliminados de la base de datos."
1015
 
1016
+ #: ../../admin/config/maintenance.php:41
1017
+ msgid "The geolocation database has been uninstalled from your server."
1018
+ msgstr ""
 
 
 
 
 
1019
 
1020
  #: ../../admin/config/maintenance.php:51
1021
+ msgid "The geolocation database has been installed on your server."
1022
+ msgstr ""
1023
+
1024
+ #: ../../admin/config/maintenance.php:159
1025
+ msgid ""
1026
+ "Your data was successfully imported. You may now drop the old tables: "
1027
+ "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
1028
+ "wp_slim_outbound. Please note: if you are using Slimstat in a MU network, "
1029
+ "you will need to run the import script on all your sites before you can "
1030
+ "delete the old tables."
1031
+ msgstr ""
1032
+
1033
+ #: ../../admin/config/maintenance.php:169
1034
  #, fuzzy
1035
  msgid "All the archived records were successfully restored."
1036
  msgstr "Todos los registros se han eliminado con éxito."
1037
 
1038
+ #: ../../admin/config/maintenance.php:174
1039
  msgid "Your reports were successfully restored to their default arrangement."
1040
  msgstr ""
1041
  "Sus informes fueron restaurados con éxito a su disposición de forma "
1042
  "predeterminada."
1043
 
1044
+ #: ../../admin/config/maintenance.php:187
1045
+ #, fuzzy
1046
+ msgid "Your Slimstat tables have been successfully converted to InnoDB."
1047
+ msgstr "Sus tablas WP SLIMStat han sido convertidas correctamente a. InnoDB"
1048
+
1049
+ #: ../../admin/config/maintenance.php:193
1050
  #, fuzzy
1051
+ msgid "All the archived records were successfully deleted."
1052
+ msgstr "Todos los registros se han eliminado con éxito."
1053
+
1054
+ #: ../../admin/config/maintenance.php:201
1055
+ msgid "All the records were successfully deleted."
1056
+ msgstr "Todos los registros se han eliminado con éxito."
1057
+
1058
+ #: ../../admin/config/maintenance.php:226
1059
+ msgid "MaxMind IP to Country"
1060
+ msgstr ""
1061
+
1062
+ #: ../../admin/config/maintenance.php:232
1063
  msgid ""
1064
+ "Do you want to download and install the geolocation database from MaxMind's "
1065
+ "server?"
1066
+ msgstr ""
1067
+
1068
+ #: ../../admin/config/maintenance.php:232
1069
+ msgid "Install GeoLite DB"
1070
+ msgstr ""
1071
+
1072
+ #: ../../admin/config/maintenance.php:235
1073
+ msgid "Do you want to uninstall the geolocation database?"
1074
  msgstr ""
 
 
1075
 
1076
+ #: ../../admin/config/maintenance.php:235
1077
+ msgid "Uninstall GeoLite DB"
1078
+ msgstr ""
1079
+
1080
+ #: ../../admin/config/maintenance.php:239
1081
  msgid ""
1082
+ "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1083
+ "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
1084
+ "released under the Creative Commons BY-SA 3.0 license, and cannot be "
1085
+ "directly bundled with the plugin because of license incompatibility issues. "
1086
+ "We are mandated to have the user take an affirmative action in order to "
1087
+ "enable this functionality."
1088
  msgstr ""
 
 
1089
 
1090
+ #: ../../admin/config/maintenance.php:244
1091
  msgid "Database Information"
1092
  msgstr "Información Base de datos"
1093
 
1094
+ #: ../../admin/config/maintenance.php:247
1095
  #, fuzzy
1096
  msgid "Engine"
1097
  msgstr "Motores de Búsqueda"
1098
 
1099
+ #: ../../admin/config/maintenance.php:251
1100
  msgid "switch to InnoDB"
1101
  msgstr "cambiar a InnoDB"
1102
 
1103
+ #: ../../admin/config/maintenance.php:262
1104
  #, fuzzy
1105
  msgid "records"
1106
  msgstr "Palabras clave"
1107
 
1108
+ #: ../../admin/config/maintenance.php:267
1109
  msgid "Data Maintenance"
1110
  msgstr "Mantenimiento de Datos"
1111
 
1112
+ #: ../../admin/config/maintenance.php:270
1113
  #, fuzzy
1114
  msgid "Delete pageviews where"
1115
  msgstr "Filtrar páginas visitadas dondé:"
1116
 
1117
+ #: ../../admin/config/maintenance.php:284 ../../admin/view/index.php:16
1118
  msgid "equals"
1119
  msgstr "es igual a"
1120
 
1121
+ #: ../../admin/config/maintenance.php:285 ../../admin/view/index.php:17
1122
  msgid "is not equal to"
1123
  msgstr "no es igual a"
1124
 
1125
+ #: ../../admin/config/maintenance.php:286 ../../admin/view/index.php:18
1126
  #, fuzzy
1127
  msgid "contains"
1128
  msgstr "Contiene"
1129
 
1130
+ #: ../../admin/config/maintenance.php:287 ../../admin/view/index.php:19
1131
+ msgid "is included in"
1132
+ msgstr ""
1133
+
1134
+ #: ../../admin/config/maintenance.php:288 ../../admin/view/index.php:20
1135
  #, fuzzy
1136
  msgid "does not contain"
1137
  msgstr "No contiene"
1138
 
1139
+ #: ../../admin/config/maintenance.php:289 ../../admin/view/index.php:21
1140
  #, fuzzy
1141
  msgid "starts with"
1142
  msgstr "Empieza por"
1143
 
1144
+ #: ../../admin/config/maintenance.php:290 ../../admin/view/index.php:22
1145
  #, fuzzy
1146
  msgid "ends with"
1147
  msgstr "Acaba en"
1148
 
1149
+ #: ../../admin/config/maintenance.php:291 ../../admin/view/index.php:23
1150
  msgid "sounds like"
1151
  msgstr "suena como"
1152
 
1153
+ #: ../../admin/config/maintenance.php:292 ../../admin/view/index.php:24
1154
  msgid "is greater than"
1155
  msgstr "es mayor que"
1156
 
1157
+ #: ../../admin/config/maintenance.php:293 ../../admin/view/index.php:25
1158
  msgid "is less than"
1159
  msgstr "es menor que"
1160
 
1161
+ #: ../../admin/config/maintenance.php:294 ../../admin/view/index.php:27
1162
  msgid "matches"
1163
  msgstr "coincide"
1164
 
1165
+ #: ../../admin/config/maintenance.php:295 ../../admin/view/index.php:28
1166
  #, fuzzy
1167
  msgid "does not match"
1168
  msgstr "No contiene"
1169
 
1170
+ #: ../../admin/config/maintenance.php:296 ../../admin/view/index.php:29
1171
  msgid "is empty"
1172
  msgstr "está vacío"
1173
 
1174
+ #: ../../admin/config/maintenance.php:297 ../../admin/view/index.php:30
1175
  msgid "is not empty"
1176
  msgstr "no está vacío"
1177
 
1178
+ #: ../../admin/config/maintenance.php:300 ../../admin/view/index.php:42
1179
+ #: ../../admin/view/index.php:105
1180
  msgid "Apply"
1181
  msgstr "Aplicar"
1182
 
1183
+ #: ../../admin/config/maintenance.php:301
1184
  msgid ""
1185
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1186
  msgstr ""
1187
  "¿Está seguro que desea eliminar PERMANENTEMENTE estos registros de su base "
1188
  "de datos?"
1189
 
1190
+ #: ../../admin/config/maintenance.php:308
 
 
 
 
1191
  msgid ""
1192
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1193
  "database?"
1195
  "¿Está seguro que quiere BORRAR PERMANENTEMENTE TODOS los registros de su "
1196
  "base de datos?"
1197
 
1198
+ #: ../../admin/config/maintenance.php:308
1199
  #, fuzzy
1200
  msgid "Delete All Records"
1201
  msgstr "Paginas visitadas"
1202
 
1203
+ #: ../../admin/config/maintenance.php:311
1204
  #, fuzzy
1205
  msgid ""
1206
  "Erase all the information collected so far by Slimstat, including the "
1209
  "Borrar toda la información recopilada hasta el momento por WP SLIMStat. Esta "
1210
  "<strong> operación no </strong> restablece la configuración."
1211
 
1212
+ #: ../../admin/config/maintenance.php:317
 
 
 
 
1213
  #, fuzzy
1214
  msgid "Are you sure you want to restore all the archived pageviews?"
1215
  msgstr ""
1216
  "¿Está seguro de que desea restaurar la disposición por defecto de sus "
1217
  "informes?"
1218
 
1219
+ #: ../../admin/config/maintenance.php:317
1220
+ #, fuzzy
1221
+ msgid "Restore Archive"
1222
+ msgstr "Filtrar páginas visitadas dondé:"
1223
 
1224
+ #: ../../admin/config/maintenance.php:320
1225
  msgid ""
1226
  "Move all the archived pageviews back to the main Slimstat table. Please note "
1227
  "that, unless you disabled the daily purge, this data will be archived again "
1228
  "at the next scheduled clean-up."
1229
  msgstr ""
1230
 
1231
+ #: ../../admin/config/maintenance.php:326
 
 
 
 
1232
  #, fuzzy
1233
  msgid ""
1234
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1237
  "¿Está seguro que quiere BORRAR PERMANENTEMENTE TODOS los registros de su "
1238
  "base de datos?"
1239
 
1240
+ #: ../../admin/config/maintenance.php:326
1241
  #, fuzzy
1242
  msgid "Delete Archive"
1243
  msgstr "Filtrar páginas visitadas dondé:"
1244
 
1245
+ #: ../../admin/config/maintenance.php:329
1246
  msgid "Erase all the archived records. This operation cannot be undone."
1247
  msgstr ""
1248
 
1249
+ #: ../../admin/config/maintenance.php:335
 
 
 
 
1250
  msgid "Improve Performance"
1251
  msgstr "Mejorar el rendimiento"
1252
 
1253
+ #: ../../admin/config/maintenance.php:339
1254
  msgid ""
1255
  "Please note that you will need about 30% more DB space to store the extra "
1256
  "information required."
1258
  "Por favor, tenga en cuenta que necesitará un 30% más de espacio BD para "
1259
  "almacenar la información adicional que se requiere."
1260
 
1261
+ #: ../../admin/config/maintenance.php:343
1262
  msgid "Save DB Space"
1263
  msgstr "Guardar Espacio BD"
1264
 
1265
+ #: ../../admin/config/maintenance.php:346
1266
  #, fuzzy
1267
  msgid ""
1268
  "Please note that by removing table indexes, Slimstat's performance will be "
1271
  "Tenga en cuenta que al eliminar los índices de tabla, el rendimiento de WP "
1272
  "SLIMStat se verá afectado."
1273
 
1274
+ #: ../../admin/config/maintenance.php:353
1275
+ msgid ""
1276
+ "Hold on tight, we are about to import all your old data. Are you sure you "
1277
+ "want to proceed?"
1278
+ msgstr ""
1279
+
1280
+ #: ../../admin/config/maintenance.php:353
1281
+ #, fuzzy
1282
+ msgid "Import old data"
1283
+ msgstr "Importar y Exportar"
1284
+
1285
+ #: ../../admin/config/maintenance.php:356
1286
+ msgid ""
1287
+ "Import all the records from the old table structure. No data will be deleted "
1288
+ "from your database."
1289
+ msgstr ""
1290
+
1291
+ #: ../../admin/config/maintenance.php:360
1292
  msgid "Import and Export"
1293
  msgstr "Importar y Exportar"
1294
 
1295
+ #: ../../admin/config/maintenance.php:364
1296
  #, fuzzy
1297
  msgid ""
1298
  "Here below you can find the current configuration string for Slimstat. You "
1299
+ "can update your settings by pasting a new string inside the text area and "
1300
+ "clicking the Import button."
1301
  msgstr ""
1302
  "Aquí abajo puede encontrar la cadena actual de configuración para WP "
1303
  "SlimStat. Puede actualizar su configuración pegando una nueva cadena aquí "
1304
  "abajo y haciendo clic en Importar."
1305
 
1306
+ #: ../../admin/config/maintenance.php:369
1307
  msgid "Import"
1308
  msgstr "Importar"
1309
 
1310
+ #: ../../admin/config/maintenance.php:370
1311
  msgid "Are you sure you want to OVERWRITE your current settings?"
1312
  msgstr "¿Seguro de que desea sobrescribir la configuración actual?"
1313
 
1314
+ #: ../../admin/config/maintenance.php:375
1315
+ msgid "Debugging"
1316
+ msgstr ""
1317
+
1318
+ #: ../../admin/config/maintenance.php:378
1319
+ msgid "Tracker Error Code"
1320
+ msgstr ""
1321
+
1322
+ #: ../../admin/config/maintenance.php:380
1323
+ #, fuzzy
1324
+ msgid "recorded on"
1325
+ msgstr "Palabras clave"
1326
+
1327
+ # Austria
1328
+ #: ../../admin/config/maintenance.php:380
1329
+ #, fuzzy
1330
+ msgid "at"
1331
+ msgstr "Austria"
1332
+
1333
+ #: ../../admin/config/maintenance.php:380
1334
+ msgid "No Errors so far"
1335
+ msgstr ""
1336
+
1337
+ #: ../../admin/config/maintenance.php:381
1338
+ msgid ""
1339
+ "The information here above is useful to troubleshoot issues with the "
1340
+ "tracker. Please include this code when sending a support request."
1341
+ msgstr ""
1342
+
1343
+ #: ../../admin/config/maintenance.php:388
1344
+ #, fuzzy
1345
+ msgid "Reset Reports"
1346
+ msgstr "Informes Personalizados"
1347
+
1348
+ #: ../../admin/config/maintenance.php:391
1349
+ #, fuzzy
1350
+ msgid ""
1351
+ "Are you sure you want to restore the default arrangement of your reports?"
1352
+ msgstr ""
1353
+ "¿Está seguro de que desea restaurar la disposición por defecto de sus "
1354
+ "informes?"
1355
+
1356
+ #: ../../admin/config/maintenance.php:391
1357
+ msgid "No Panic Button"
1358
+ msgstr "Botón No Pánico"
1359
+
1360
+ #: ../../admin/config/maintenance.php:392
1361
+ #, fuzzy
1362
+ msgid ""
1363
+ "Reset the default arrangement of your reports. Helpful when, for some "
1364
+ "reason, reports disappear from your panels or something doesn't look right "
1365
+ "in your views."
1366
+ msgstr ""
1367
+ "Cambiar la disposición por defecto de sus informes. Útil cuando, por alguna "
1368
+ "razón, los informes desaparecen de sus paneles."
1369
+
1370
  #: ../../admin/lang/dynamic_strings.php:3
1371
  msgid "xx"
1372
  msgstr "xx"
1554
  msgstr "iPhone OS X"
1555
 
1556
  #: ../../admin/lang/dynamic_strings.php:49
1557
+ #, fuzzy
1558
+ msgid "winphone7.5"
1559
+ msgstr "iPhone OS X"
1560
+
1561
+ #: ../../admin/lang/dynamic_strings.php:50
1562
+ #, fuzzy
1563
+ msgid "winphone8"
1564
+ msgstr "iPhone OS X"
1565
+
1566
+ #: ../../admin/lang/dynamic_strings.php:51
1567
+ #, fuzzy
1568
+ msgid "winphone8.1"
1569
+ msgstr "iPhone OS X"
1570
+
1571
+ #: ../../admin/lang/dynamic_strings.php:52
1572
  msgid "wince"
1573
  msgstr "Windows CE"
1574
 
1575
+ #: ../../admin/lang/dynamic_strings.php:53
1576
  msgid "symbianos"
1577
  msgstr "Symbian OS"
1578
 
1579
+ #: ../../admin/lang/dynamic_strings.php:54
1580
  msgid "blackberry os"
1581
  msgstr "so blackberry"
1582
 
1583
+ #: ../../admin/lang/dynamic_strings.php:55
1584
  msgid "webos"
1585
  msgstr "WebOS"
1586
 
1587
+ #: ../../admin/lang/dynamic_strings.php:56
1588
  msgid "p-and"
1589
  msgstr "Android"
1590
 
1591
+ #: ../../admin/lang/dynamic_strings.php:57
1592
  msgid "p-bla"
1593
  msgstr "BlackBerry"
1594
 
1595
+ #: ../../admin/lang/dynamic_strings.php:58
1596
  msgid "p-chr"
1597
  msgstr "Chrome OS"
1598
 
1599
+ #: ../../admin/lang/dynamic_strings.php:59
1600
  msgid "p-fre"
1601
  msgstr "Linux FreeBSD"
1602
 
1603
+ #: ../../admin/lang/dynamic_strings.php:60
1604
  msgid "p-ios"
1605
  msgstr "Apple iOS"
1606
 
1607
+ #: ../../admin/lang/dynamic_strings.php:61
1608
  msgid "p-jav"
1609
  msgstr "Java-based OS"
1610
 
1611
+ #: ../../admin/lang/dynamic_strings.php:62
1612
  msgid "p-lin"
1613
  msgstr "Linux"
1614
 
1615
+ #: ../../admin/lang/dynamic_strings.php:63
1616
  msgid "p-mac"
1617
  msgstr "Apple"
1618
 
1619
+ #: ../../admin/lang/dynamic_strings.php:64
1620
  msgid "p-sym"
1621
  msgstr "Symbian OS"
1622
 
1623
+ #: ../../admin/lang/dynamic_strings.php:65
1624
  msgid "p-unk"
1625
  msgstr "Unknown"
1626
 
1627
+ #: ../../admin/lang/dynamic_strings.php:66
1628
  msgid "p-win"
1629
  msgstr "Microsoft"
1630
 
1631
+ #: ../../admin/lang/dynamic_strings.php:67
1632
  msgid "powertv"
1633
  msgstr "PowerTV"
1634
 
1635
+ #: ../../admin/lang/dynamic_strings.php:68
1636
  #, fuzzy
1637
  msgid "acrobat"
1638
  msgstr "Acrobat"
1639
 
1640
+ #: ../../admin/lang/dynamic_strings.php:69
1641
  msgid "director"
1642
  msgstr "director"
1643
 
1644
+ #: ../../admin/lang/dynamic_strings.php:70
1645
  #, fuzzy
1646
  msgid "flash"
1647
  msgstr "Flash"
1648
 
1649
+ #: ../../admin/lang/dynamic_strings.php:71
1650
  #, fuzzy
1651
  msgid "mediaplayer"
1652
  msgstr "Media Player"
1653
 
1654
+ #: ../../admin/lang/dynamic_strings.php:72
1655
  msgid "quicktime"
1656
  msgstr "quicktime"
1657
 
1658
+ #: ../../admin/lang/dynamic_strings.php:73
1659
  msgid "real"
1660
  msgstr "real"
1661
 
1662
+ #: ../../admin/lang/dynamic_strings.php:74
1663
  #, fuzzy
1664
  msgid "silverlight"
1665
  msgstr "Silverlight"
1666
 
1667
  # Afrikaans
1668
+ #: ../../admin/lang/dynamic_strings.php:75
1669
  msgid "l-af"
1670
  msgstr "Afrikaans"
1671
 
1672
  # Afrikaans
1673
+ #: ../../admin/lang/dynamic_strings.php:76
1674
  #, fuzzy
1675
  msgid "l-af-za"
1676
  msgstr "Afrikaans"
1677
 
1678
  # Arabic
1679
+ #: ../../admin/lang/dynamic_strings.php:77
1680
  msgid "l-ar"
1681
  msgstr "Arabic"
1682
 
1683
  # Arabic (United Arab Emirates)
1684
+ #: ../../admin/lang/dynamic_strings.php:78
1685
  msgid "l-ar-ae"
1686
  msgstr "Arabic (United Arab Emirates)"
1687
 
1688
  # Arabic (Bahrain)
1689
+ #: ../../admin/lang/dynamic_strings.php:79
1690
  msgid "l-ar-bh"
1691
  msgstr "Arabic (Bahrain)"
1692
 
1693
  # Arabic (Algeria)
1694
+ #: ../../admin/lang/dynamic_strings.php:80
1695
  msgid "l-ar-dz"
1696
  msgstr "Arabic (Algeria)"
1697
 
1698
  # Arabic (Egypt)
1699
+ #: ../../admin/lang/dynamic_strings.php:81
1700
  msgid "l-ar-eg"
1701
  msgstr "Arabic (Egypt)"
1702
 
1703
  # Arabic (Iraq)
1704
+ #: ../../admin/lang/dynamic_strings.php:82
1705
  msgid "l-ar-iq"
1706
  msgstr "Arabic (Iraq)"
1707
 
1708
  # Arabic (Jordan)
1709
+ #: ../../admin/lang/dynamic_strings.php:83
1710
  msgid "l-ar-jo"
1711
  msgstr "Arabic (Jordan)"
1712
 
1713
  # Arabic (Kuwait)
1714
+ #: ../../admin/lang/dynamic_strings.php:84
1715
  msgid "l-ar-kw"
1716
  msgstr "Arabic (Kuwait)"
1717
 
1718
  # Arabic (Lebanon)
1719
+ #: ../../admin/lang/dynamic_strings.php:85
1720
  msgid "l-ar-lb"
1721
  msgstr "Arabic (Lebanon)"
1722
 
1723
  # Arabic (Libya)
1724
+ #: ../../admin/lang/dynamic_strings.php:86
1725
  msgid "l-ar-ly"
1726
  msgstr "Arabic (Libya)"
1727
 
1728
  # Arabic (Morocco)
1729
+ #: ../../admin/lang/dynamic_strings.php:87
1730
  msgid "l-ar-ma"
1731
  msgstr "Arabic (Morocco)"
1732
 
1733
  # Arabic (Oman)
1734
+ #: ../../admin/lang/dynamic_strings.php:88
1735
  msgid "l-ar-om"
1736
  msgstr "Arabic (Oman)"
1737
 
1738
  # Arabic (Qatar)
1739
+ #: ../../admin/lang/dynamic_strings.php:89
1740
  msgid "l-ar-qa"
1741
  msgstr "Arabic (Qatar)"
1742
 
1743
  # Arabic (Saudi Arabia)
1744
+ #: ../../admin/lang/dynamic_strings.php:90
1745
  msgid "l-ar-sa"
1746
  msgstr "Arabic (Saudi Arabia)"
1747
 
1748
  # Arabic (Syria)
1749
+ #: ../../admin/lang/dynamic_strings.php:91
1750
  msgid "l-ar-sy"
1751
  msgstr "Arabic (Syria)"
1752
 
1753
  # Arabic (Tunisia)
1754
+ #: ../../admin/lang/dynamic_strings.php:92
1755
  msgid "l-ar-tn"
1756
  msgstr "Arabic (Tunisia)"
1757
 
1758
  # Arabic (Yemen)
1759
+ #: ../../admin/lang/dynamic_strings.php:93
1760
  msgid "l-ar-ye"
1761
  msgstr "Arabic (Yemen)"
1762
 
1763
  # Azerbaijani
1764
+ #: ../../admin/lang/dynamic_strings.php:94
1765
  msgid "l-az"
1766
  msgstr "Azerbaijani"
1767
 
1768
  # Azerbaijani
1769
+ #: ../../admin/lang/dynamic_strings.php:95
1770
  #, fuzzy
1771
  msgid "l-az-az"
1772
  msgstr "Azerbaijani"
1773
 
1774
  # Belarusian
1775
+ #: ../../admin/lang/dynamic_strings.php:96
1776
  msgid "l-be"
1777
  msgstr "Belarusian"
1778
 
1779
  # Belarusian
1780
+ #: ../../admin/lang/dynamic_strings.php:97
1781
  #, fuzzy
1782
  msgid "l-be-by"
1783
  msgstr "Belarusian"
1784
 
1785
  # Bulgarian
1786
+ #: ../../admin/lang/dynamic_strings.php:98
1787
  msgid "l-bg"
1788
  msgstr "Bulgarian"
1789
 
1790
  # Bulgarian
1791
+ #: ../../admin/lang/dynamic_strings.php:99
1792
  #, fuzzy
1793
  msgid "l-bg-bg"
1794
  msgstr "Bulgarian"
1795
 
1796
  # Bosnian
1797
+ #: ../../admin/lang/dynamic_strings.php:100
1798
  #, fuzzy
1799
  msgid "l-bs-ba"
1800
  msgstr "Bosnian"
1801
 
1802
  # Catalan; Valencian
1803
+ #: ../../admin/lang/dynamic_strings.php:101
1804
  msgid "l-ca"
1805
  msgstr "Catalan; Valencian"
1806
 
1807
  # Catalan; Valencian
1808
+ #: ../../admin/lang/dynamic_strings.php:102
1809
  #, fuzzy
1810
  msgid "l-ca-es"
1811
  msgstr "Catalan; Valencian"
1812
 
1813
  # Czech
1814
+ #: ../../admin/lang/dynamic_strings.php:103
1815
  msgid "l-cs"
1816
  msgstr "Czech"
1817
 
1818
  # Czech
1819
+ #: ../../admin/lang/dynamic_strings.php:104
1820
  #, fuzzy
1821
  msgid "l-cs-cz"
1822
  msgstr "Czech"
1823
 
1824
  # Welsh
1825
+ #: ../../admin/lang/dynamic_strings.php:105
1826
  msgid "l-cy"
1827
  msgstr "Welsh"
1828
 
1829
  # Welsh
1830
+ #: ../../admin/lang/dynamic_strings.php:106
1831
  #, fuzzy
1832
  msgid "l-cy-gb"
1833
  msgstr "Welsh"
1834
 
1835
  # Danish
1836
+ #: ../../admin/lang/dynamic_strings.php:107
1837
  msgid "l-da"
1838
  msgstr "Danish"
1839
 
1840
  # Danish
1841
+ #: ../../admin/lang/dynamic_strings.php:108
1842
  #, fuzzy
1843
  msgid "l-da-dk"
1844
  msgstr "Danish"
1845
 
1846
  # German
1847
+ #: ../../admin/lang/dynamic_strings.php:109
1848
  msgid "l-de"
1849
  msgstr "German"
1850
 
1851
  # German (Austria)
1852
+ #: ../../admin/lang/dynamic_strings.php:110
1853
  msgid "l-de-at"
1854
  msgstr "German (Austria)"
1855
 
1856
  # German (Switzerland)
1857
+ #: ../../admin/lang/dynamic_strings.php:111
1858
  msgid "l-de-ch"
1859
  msgstr "German (Switzerland)"
1860
 
1861
  # German (Germany)
1862
+ #: ../../admin/lang/dynamic_strings.php:112
1863
  msgid "l-de-de"
1864
  msgstr "German (Germany)"
1865
 
1866
  # German (Liechtenstein)
1867
+ #: ../../admin/lang/dynamic_strings.php:113
1868
  msgid "l-de-li"
1869
  msgstr "German (Liechtenstein)"
1870
 
1871
  # German (Luxembourg)
1872
+ #: ../../admin/lang/dynamic_strings.php:114
1873
  msgid "l-de-lu"
1874
  msgstr "German (Luxembourg)"
1875
 
1876
  # Dhivehi; Divehi; Maldivian
1877
+ #: ../../admin/lang/dynamic_strings.php:115
1878
  msgid "l-dv"
1879
  msgstr "Dhivehi; Divehi; Maldivian"
1880
 
1881
  # Dhivehi; Divehi; Maldivian
1882
+ #: ../../admin/lang/dynamic_strings.php:116
1883
  #, fuzzy
1884
  msgid "l-dv-mv"
1885
  msgstr "Dhivehi; Divehi; Maldivian"
1886
 
1887
  # Modern Greek (1453-)
1888
+ #: ../../admin/lang/dynamic_strings.php:117
1889
  msgid "l-el"
1890
  msgstr "Modern Greek (1453-)"
1891
 
1892
  # Greek (Greece)
1893
+ #: ../../admin/lang/dynamic_strings.php:118
1894
  msgid "l-el-gr"
1895
  msgstr "Greek (Greece)"
1896
 
1897
  # English
1898
+ #: ../../admin/lang/dynamic_strings.php:119
1899
  msgid "l-en"
1900
  msgstr "English"
1901
 
1902
  # English (Australia)
1903
+ #: ../../admin/lang/dynamic_strings.php:120
1904
  msgid "l-en-au"
1905
  msgstr "English (Australia)"
1906
 
1907
  # English (Belize)
1908
+ #: ../../admin/lang/dynamic_strings.php:121
1909
  msgid "l-en-bz"
1910
  msgstr "English (Belize)"
1911
 
1912
  # English (Canada)
1913
+ #: ../../admin/lang/dynamic_strings.php:122
1914
  msgid "l-en-ca"
1915
  msgstr "English (Canada)"
1916
 
1917
  # English (Canada)
1918
+ #: ../../admin/lang/dynamic_strings.php:123
1919
  #, fuzzy
1920
  msgid "l-en-cb"
1921
  msgstr "English (Canada)"
1922
 
1923
  # English (United Kingdom)
1924
+ #: ../../admin/lang/dynamic_strings.php:124
1925
  msgid "l-en-gb"
1926
  msgstr "English (United Kingdom)"
1927
 
1928
  # English (Ireland)
1929
+ #: ../../admin/lang/dynamic_strings.php:125
1930
  msgid "l-en-ie"
1931
  msgstr "English (Ireland)"
1932
 
1933
  # English (Jamaica)
1934
+ #: ../../admin/lang/dynamic_strings.php:126
1935
  msgid "l-en-jm"
1936
  msgstr "English (Jamaica)"
1937
 
1938
  # English (New Zealand)
1939
+ #: ../../admin/lang/dynamic_strings.php:127
1940
  msgid "l-en-nz"
1941
  msgstr "English (New Zealand)"
1942
 
1943
  # English
1944
+ #: ../../admin/lang/dynamic_strings.php:128
1945
  #, fuzzy
1946
  msgid "l-en-ph"
1947
  msgstr "English"
1948
 
1949
  # English (Trinidad)
1950
+ #: ../../admin/lang/dynamic_strings.php:129
1951
  msgid "l-en-tt"
1952
  msgstr "English (Trinidad)"
1953
 
1954
  # English (United States)
1955
+ #: ../../admin/lang/dynamic_strings.php:130
1956
  msgid "l-en-us"
1957
  msgstr "English (United States)"
1958
 
1959
  # English (South Africa)
1960
+ #: ../../admin/lang/dynamic_strings.php:131
1961
  msgid "l-en-za"
1962
  msgstr "English (South Africa)"
1963
 
1964
  # English (South Africa)
1965
+ #: ../../admin/lang/dynamic_strings.php:132
1966
  #, fuzzy
1967
  msgid "l-en-zw"
1968
  msgstr "English (South Africa)"
1969
 
1970
  # Esperanto
1971
+ #: ../../admin/lang/dynamic_strings.php:133
1972
  msgid "l-eo"
1973
  msgstr "Esperanto"
1974
 
1975
  # Spanish; Castilian
1976
+ #: ../../admin/lang/dynamic_strings.php:134
1977
  msgid "l-es"
1978
  msgstr "Spanish; Castilian"
1979
 
1980
  # Spanish (Argentina)
1981
+ #: ../../admin/lang/dynamic_strings.php:135
1982
  msgid "l-es-ar"
1983
  msgstr "Spanish (Argentina)"
1984
 
1985
  # Spanish (Bolivia)
1986
+ #: ../../admin/lang/dynamic_strings.php:136
1987
  msgid "l-es-bo"
1988
  msgstr "Spanish (Bolivia)"
1989
 
1990
  # Spanish (Chile)
1991
+ #: ../../admin/lang/dynamic_strings.php:137
1992
  msgid "l-es-cl"
1993
  msgstr "Spanish (Chile)"
1994
 
1995
  # Spanish (Colombia)
1996
+ #: ../../admin/lang/dynamic_strings.php:138
1997
  msgid "l-es-co"
1998
  msgstr "Spanish (Colombia)"
1999
 
2000
  # Spanish (Costa Rica)
2001
+ #: ../../admin/lang/dynamic_strings.php:139
2002
  msgid "l-es-cr"
2003
  msgstr "Spanish (Costa Rica)"
2004
 
2005
  # Spanish (Dominican Republic)
2006
+ #: ../../admin/lang/dynamic_strings.php:140
2007
  msgid "l-es-do"
2008
  msgstr "Spanish (Dominican Republic)"
2009
 
2010
  # Spanish (Ecuador)
2011
+ #: ../../admin/lang/dynamic_strings.php:141
2012
  msgid "l-es-ec"
2013
  msgstr "Spanish (Ecuador)"
2014
 
2015
  # Spanish (Spain)
2016
+ #: ../../admin/lang/dynamic_strings.php:142
2017
  msgid "l-es-es"
2018
  msgstr "Spanish (Spain)"
2019
 
2020
  # Spanish (Guatemala)
2021
+ #: ../../admin/lang/dynamic_strings.php:143
2022
  msgid "l-es-gt"
2023
  msgstr "Spanish (Guatemala)"
2024
 
2025
  # Spanish (Honduras)
2026
+ #: ../../admin/lang/dynamic_strings.php:144
2027
  msgid "l-es-hn"
2028
  msgstr "Spanish (Honduras)"
2029
 
2030
  # Spanish (Mexico)
2031
+ #: ../../admin/lang/dynamic_strings.php:145
2032
  msgid "l-es-mx"
2033
  msgstr "Spanish (Mexico)"
2034
 
2035
  # Spanish (Nicaragua)
2036
+ #: ../../admin/lang/dynamic_strings.php:146
2037
  msgid "l-es-ni"
2038
  msgstr "Spanish (Nicaragua)"
2039
 
2040
  # Spanish (Panama)
2041
+ #: ../../admin/lang/dynamic_strings.php:147
2042
  msgid "l-es-pa"
2043
  msgstr "Spanish (Panama)"
2044
 
2045
  # Spanish (Peru)
2046
+ #: ../../admin/lang/dynamic_strings.php:148
2047
  msgid "l-es-pe"
2048
  msgstr "Spanish (Peru)"
2049
 
2050
  # Spanish (Puerto Rico)
2051
+ #: ../../admin/lang/dynamic_strings.php:149
2052
  msgid "l-es-pr"
2053
  msgstr "Spanish (Puerto Rico)"
2054
 
2055
  # Spanish (Paraguay)
2056
+ #: ../../admin/lang/dynamic_strings.php:150
2057
  msgid "l-es-py"
2058
  msgstr "Spanish (Paraguay)"
2059
 
2060
  # Spanish (El Salvador)
2061
+ #: ../../admin/lang/dynamic_strings.php:151
2062
  msgid "l-es-sv"
2063
  msgstr "Spanish (El Salvador)"
2064
 
2065
  # Spanish (Uruguay)
2066
+ #: ../../admin/lang/dynamic_strings.php:152
2067
  msgid "l-es-uy"
2068
  msgstr "Spanish (Uruguay)"
2069
 
2070
  # Spanish (Venezuela)
2071
+ #: ../../admin/lang/dynamic_strings.php:153
2072
  msgid "l-es-ve"
2073
  msgstr "Spanish (Venezuela)"
2074
 
2075
  # Estonian
2076
+ #: ../../admin/lang/dynamic_strings.php:154
2077
  msgid "l-et"
2078
  msgstr "Estonian"
2079
 
2080
  # Estonian
2081
+ #: ../../admin/lang/dynamic_strings.php:155
2082
  #, fuzzy
2083
  msgid "l-et-ee"
2084
  msgstr "Estonian"
2085
 
2086
  # Basque
2087
+ #: ../../admin/lang/dynamic_strings.php:156
2088
  msgid "l-eu"
2089
  msgstr "Basque"
2090
 
2091
  # Basque
2092
+ #: ../../admin/lang/dynamic_strings.php:157
2093
  #, fuzzy
2094
  msgid "l-eu-es"
2095
  msgstr "Basque"
2096
 
2097
  # Persian
2098
+ #: ../../admin/lang/dynamic_strings.php:158
2099
  msgid "l-fa"
2100
  msgstr "Persian"
2101
 
2102
  # Persian
2103
+ #: ../../admin/lang/dynamic_strings.php:159
2104
  #, fuzzy
2105
  msgid "l-fa-ir"
2106
  msgstr "Persian"
2107
 
2108
  # Finnish
2109
+ #: ../../admin/lang/dynamic_strings.php:160
2110
  msgid "l-fi"
2111
  msgstr "Finnish"
2112
 
2113
  # Finnish
2114
+ #: ../../admin/lang/dynamic_strings.php:161
2115
  #, fuzzy
2116
  msgid "l-fi-fi"
2117
  msgstr "Finnish"
2118
 
2119
  # Faroese
2120
+ #: ../../admin/lang/dynamic_strings.php:162
2121
  msgid "l-fo"
2122
  msgstr "Faroese"
2123
 
2124
  # Faroese
2125
+ #: ../../admin/lang/dynamic_strings.php:163
2126
  #, fuzzy
2127
  msgid "l-fo-fo"
2128
  msgstr "Faroese"
2129
 
2130
  # French
2131
+ #: ../../admin/lang/dynamic_strings.php:164
2132
  msgid "l-fr"
2133
  msgstr "French"
2134
 
2135
  # French (Belgium)
2136
+ #: ../../admin/lang/dynamic_strings.php:165
2137
  msgid "l-fr-be"
2138
  msgstr "French (Belgium)"
2139
 
2140
  # French (Canada)
2141
+ #: ../../admin/lang/dynamic_strings.php:166
2142
  msgid "l-fr-ca"
2143
  msgstr "French (Canada)"
2144
 
2145
  # French (Switzerland)
2146
+ #: ../../admin/lang/dynamic_strings.php:167
2147
  msgid "l-fr-ch"
2148
  msgstr "French (Switzerland)"
2149
 
2150
  # French (France)
2151
+ #: ../../admin/lang/dynamic_strings.php:168
2152
  msgid "l-fr-fr"
2153
  msgstr "French (France)"
2154
 
2155
  # French (Luxembourg)
2156
+ #: ../../admin/lang/dynamic_strings.php:169
2157
  msgid "l-fr-lu"
2158
  msgstr "French (Luxembourg)"
2159
 
2160
  # French (Switzerland)
2161
+ #: ../../admin/lang/dynamic_strings.php:170
2162
  #, fuzzy
2163
  msgid "l-fr-mc"
2164
  msgstr "French (Switzerland)"
2165
 
2166
  # Galician
2167
+ #: ../../admin/lang/dynamic_strings.php:171
2168
  msgid "l-gl"
2169
  msgstr "Galician"
2170
 
2171
  # Spanish; Castilian
2172
+ #: ../../admin/lang/dynamic_strings.php:172
2173
  #, fuzzy
2174
  msgid "l-gl-es"
2175
  msgstr "Spanish; Castilian"
2176
 
2177
  # Gujarati
2178
+ #: ../../admin/lang/dynamic_strings.php:173
2179
  msgid "l-gu"
2180
  msgstr "Gujarati"
2181
 
2182
  # Gujarati
2183
+ #: ../../admin/lang/dynamic_strings.php:174
2184
  #, fuzzy
2185
  msgid "l-gu-in"
2186
  msgstr "Gujarati"
2187
 
2188
  # Hebrew
2189
+ #: ../../admin/lang/dynamic_strings.php:175
2190
  msgid "l-he"
2191
  msgstr "Hebrew"
2192
 
2193
  # Hebrew (Israel)
2194
+ #: ../../admin/lang/dynamic_strings.php:176
2195
  msgid "l-he-il"
2196
  msgstr "Hebrew (Israel)"
2197
 
2198
  # Hindi
2199
+ #: ../../admin/lang/dynamic_strings.php:177
2200
  msgid "l-hi"
2201
  msgstr "Hindi"
2202
 
2203
  # Hindi
2204
+ #: ../../admin/lang/dynamic_strings.php:178
2205
  #, fuzzy
2206
  msgid "l-hi-in"
2207
  msgstr "Hindi"
2208
 
2209
  # Croatian
2210
+ #: ../../admin/lang/dynamic_strings.php:179
2211
  msgid "l-hr"
2212
  msgstr "Croatian"
2213
 
2214
  # Croatian
2215
+ #: ../../admin/lang/dynamic_strings.php:180
2216
  #, fuzzy
2217
  msgid "l-hr-ba"
2218
  msgstr "Croatian"
2219
 
2220
  # Croatian
2221
+ #: ../../admin/lang/dynamic_strings.php:181
2222
  #, fuzzy
2223
  msgid "l-hr-hr"
2224
  msgstr "Croatian"
2225
 
2226
  # Hungarian
2227
+ #: ../../admin/lang/dynamic_strings.php:182
2228
  msgid "l-hu"
2229
  msgstr "Hungarian"
2230
 
2231
  # Hungarian (Hungary)
2232
+ #: ../../admin/lang/dynamic_strings.php:183
2233
  msgid "l-hu-hu"
2234
  msgstr "Hungarian (Hungary)"
2235
 
2236
  # Armenian
2237
+ #: ../../admin/lang/dynamic_strings.php:184
2238
  msgid "l-hy"
2239
  msgstr "Armenian"
2240
 
2241
  # Armenian
2242
+ #: ../../admin/lang/dynamic_strings.php:185
2243
  #, fuzzy
2244
  msgid "l-hy-am"
2245
  msgstr "Armenian"
2246
 
2247
  # Indonesian
2248
+ #: ../../admin/lang/dynamic_strings.php:186
2249
  msgid "l-id"
2250
  msgstr "Indonesian"
2251
 
2252
  # Indonesian
2253
+ #: ../../admin/lang/dynamic_strings.php:187
2254
  #, fuzzy
2255
  msgid "l-id-id"
2256
  msgstr "Indonesian"
2257
 
2258
  # Icelandic
2259
+ #: ../../admin/lang/dynamic_strings.php:188
2260
  msgid "l-is"
2261
  msgstr "Icelandic"
2262
 
2263
  # Icelandic
2264
+ #: ../../admin/lang/dynamic_strings.php:189
2265
  #, fuzzy
2266
  msgid "l-is-is"
2267
  msgstr "Icelandic"
2268
 
2269
  # Italian
2270
+ #: ../../admin/lang/dynamic_strings.php:190
2271
  msgid "l-it"
2272
  msgstr "Italian"
2273
 
2274
  # Italian (Switzerland)
2275
+ #: ../../admin/lang/dynamic_strings.php:191
2276
  msgid "l-it-ch"
2277
  msgstr "Italian (Switzerland)"
2278
 
2279
  # Italian (Italia)
2280
+ #: ../../admin/lang/dynamic_strings.php:192
2281
  msgid "l-it-it"
2282
  msgstr "Italian (Italia)"
2283
 
2284
  # Japanese
2285
+ #: ../../admin/lang/dynamic_strings.php:193
2286
  msgid "l-ja"
2287
  msgstr "Japanese"
2288
 
2289
  # Japanese
2290
+ #: ../../admin/lang/dynamic_strings.php:194
2291
  #, fuzzy
2292
  msgid "l-ja-jp"
2293
  msgstr "Japanese"
2294
 
2295
  # Georgian
2296
+ #: ../../admin/lang/dynamic_strings.php:195
2297
  msgid "l-ka"
2298
  msgstr "Georgian"
2299
 
2300
  # Georgian
2301
+ #: ../../admin/lang/dynamic_strings.php:196
2302
  #, fuzzy
2303
  msgid "l-ka-ge"
2304
  msgstr "Georgian"
2305
 
2306
  # Kazakh
2307
+ #: ../../admin/lang/dynamic_strings.php:197
2308
  msgid "l-kk"
2309
  msgstr "Kazakh"
2310
 
2311
  # Kazakh
2312
+ #: ../../admin/lang/dynamic_strings.php:198
2313
  #, fuzzy
2314
  msgid "l-kk-kz"
2315
  msgstr "Kazakh"
2316
 
2317
  # Kannada
2318
+ #: ../../admin/lang/dynamic_strings.php:199
2319
  msgid "l-kn"
2320
  msgstr "Kannada"
2321
 
2322
  # Kannada
2323
+ #: ../../admin/lang/dynamic_strings.php:200
2324
  #, fuzzy
2325
  msgid "l-kn-in"
2326
  msgstr "Kannada"
2327
 
2328
  # Korean
2329
+ #: ../../admin/lang/dynamic_strings.php:201
2330
  msgid "l-ko"
2331
  msgstr "Korean"
2332
 
2333
  # Korean (Republic of Korea)
2334
+ #: ../../admin/lang/dynamic_strings.php:202
2335
  msgid "l-ko-kr"
2336
  msgstr "Korean (Republic of Korea)"
2337
 
2338
  # Korean
2339
+ #: ../../admin/lang/dynamic_strings.php:203
2340
  #, fuzzy
2341
  msgid "l-kok"
2342
  msgstr "Korean"
2343
 
2344
  # Korean
2345
+ #: ../../admin/lang/dynamic_strings.php:204
2346
  #, fuzzy
2347
  msgid "l-kok-in"
2348
  msgstr "Korean"
2349
 
2350
  # Kirghiz; Kyrgyz
2351
+ #: ../../admin/lang/dynamic_strings.php:205
2352
  msgid "l-ky"
2353
  msgstr "Kirghiz; Kyrgyz"
2354
 
2355
  # Kirghiz; Kyrgyz
2356
+ #: ../../admin/lang/dynamic_strings.php:206
2357
  #, fuzzy
2358
  msgid "l-ky-kg"
2359
  msgstr "Kirghiz; Kyrgyz"
2360
 
2361
  # Lithuanian
2362
+ #: ../../admin/lang/dynamic_strings.php:207
2363
  msgid "l-lt"
2364
  msgstr "Lithuanian"
2365
 
2366
  # Lithuanian
2367
+ #: ../../admin/lang/dynamic_strings.php:208
2368
  #, fuzzy
2369
  msgid "l-lt-lt"
2370
  msgstr "Lithuanian"
2371
 
2372
  # Latvian
2373
+ #: ../../admin/lang/dynamic_strings.php:209
2374
  msgid "l-lv"
2375
  msgstr "Latvian"
2376
 
2377
  # Latvian
2378
+ #: ../../admin/lang/dynamic_strings.php:210
2379
  #, fuzzy
2380
  msgid "l-lv-lv"
2381
  msgstr "Latvian"
2382
 
2383
  # Maori
2384
+ #: ../../admin/lang/dynamic_strings.php:211
2385
  msgid "l-mi"
2386
  msgstr "Maori"
2387
 
2388
  # Maori
2389
+ #: ../../admin/lang/dynamic_strings.php:212
2390
  #, fuzzy
2391
  msgid "l-mi-nz"
2392
  msgstr "Maori"
2393
 
2394
  # Macedonian
2395
+ #: ../../admin/lang/dynamic_strings.php:213
2396
  msgid "l-mk"
2397
  msgstr "Macedonian"
2398
 
2399
  # Macedonian
2400
+ #: ../../admin/lang/dynamic_strings.php:214
2401
  #, fuzzy
2402
  msgid "l-mk-ml"
2403
  msgstr "Macedonian"
2404
 
2405
  # Mongolian
2406
+ #: ../../admin/lang/dynamic_strings.php:215
2407
  msgid "l-mn"
2408
  msgstr "Mongolian"
2409
 
2410
  # Mongolian
2411
+ #: ../../admin/lang/dynamic_strings.php:216
2412
  #, fuzzy
2413
  msgid "l-mn-mn"
2414
  msgstr "Mongolian"
2415
 
2416
  # Marathi
2417
+ #: ../../admin/lang/dynamic_strings.php:217
2418
  msgid "l-mr"
2419
  msgstr "Marathi"
2420
 
2421
  # Marathi
2422
+ #: ../../admin/lang/dynamic_strings.php:218
2423
  #, fuzzy
2424
  msgid "l-mr-in"
2425
  msgstr "Marathi"
2426
 
2427
  # Malay
2428
+ #: ../../admin/lang/dynamic_strings.php:219
2429
  msgid "l-ms"
2430
  msgstr "Malay"
2431
 
2432
  # Malay
2433
+ #: ../../admin/lang/dynamic_strings.php:220
2434
  #, fuzzy
2435
  msgid "l-ms-bn"
2436
  msgstr "Malay"
2437
 
2438
  # Malay
2439
+ #: ../../admin/lang/dynamic_strings.php:221
2440
  #, fuzzy
2441
  msgid "l-ms-my"
2442
  msgstr "Malay"
2443
 
2444
  # Maltese
2445
+ #: ../../admin/lang/dynamic_strings.php:222
2446
  msgid "l-mt"
2447
  msgstr "Maltese"
2448
 
2449
  # Maltese
2450
+ #: ../../admin/lang/dynamic_strings.php:223
2451
  #, fuzzy
2452
  msgid "l-mt-mt"
2453
  msgstr "Maltese"
2454
 
2455
  # Norwegian Bokmål
2456
+ #: ../../admin/lang/dynamic_strings.php:224
2457
  msgid "l-nb"
2458
  msgstr "Norwegian Bokmål"
2459
 
2460
  # Norwegian Bokmål
2461
+ #: ../../admin/lang/dynamic_strings.php:225
2462
  #, fuzzy
2463
  msgid "l-nb-no"
2464
  msgstr "Norwegian Bokmål"
2465
 
2466
  # Dutch; Flemish
2467
+ #: ../../admin/lang/dynamic_strings.php:226
2468
  msgid "l-nl"
2469
  msgstr "Dutch; Flemish"
2470
 
2471
  # Dutch (Belgium)
2472
+ #: ../../admin/lang/dynamic_strings.php:227
2473
  msgid "l-nl-be"
2474
  msgstr "Dutch (Belgium)"
2475
 
2476
  # Dutch (Netherlands)
2477
+ #: ../../admin/lang/dynamic_strings.php:228
2478
  msgid "l-nl-nl"
2479
  msgstr "Dutch (Netherlands)"
2480
 
2481
  # Norwegian Nynorsk
2482
+ #: ../../admin/lang/dynamic_strings.php:229
2483
  #, fuzzy
2484
  msgid "l-nn-no"
2485
  msgstr "Norwegian Nynorsk"
2486
 
2487
+ #: ../../admin/lang/dynamic_strings.php:230
2488
  msgid "l-ns"
2489
  msgstr "l-ns"
2490
 
2491
+ #: ../../admin/lang/dynamic_strings.php:231
2492
  msgid "l-ns-za"
2493
  msgstr "l-ns-za"
2494
 
2495
  # Panjabi; Punjabi
2496
+ #: ../../admin/lang/dynamic_strings.php:232
2497
  msgid "l-pa"
2498
  msgstr "Panjabi; Punjabi"
2499
 
2500
  # Panjabi; Punjabi
2501
+ #: ../../admin/lang/dynamic_strings.php:233
2502
  #, fuzzy
2503
  msgid "l-pa-in"
2504
  msgstr "Panjabi; Punjabi"
2505
 
2506
  # Polish
2507
+ #: ../../admin/lang/dynamic_strings.php:234
2508
  msgid "l-pl"
2509
  msgstr "Polish"
2510
 
2511
  # Polish
2512
+ #: ../../admin/lang/dynamic_strings.php:235
2513
  #, fuzzy
2514
  msgid "l-pl-pl"
2515
  msgstr "Polish"
2516
 
2517
  # Pushto; Pashto
2518
+ #: ../../admin/lang/dynamic_strings.php:236
2519
  msgid "l-ps"
2520
  msgstr "Pushto; Pashto"
2521
 
2522
  # Spanish (Argentina)
2523
+ #: ../../admin/lang/dynamic_strings.php:237
2524
  #, fuzzy
2525
  msgid "l-ps-ar"
2526
  msgstr "Spanish (Argentina)"
2527
 
2528
  # Portuguese
2529
+ #: ../../admin/lang/dynamic_strings.php:238
2530
  msgid "l-pt"
2531
  msgstr "Portuguese"
2532
 
2533
  # Portuguese (Brazil)
2534
+ #: ../../admin/lang/dynamic_strings.php:239
2535
  msgid "l-pt-br"
2536
  msgstr "Portuguese (Brazil)"
2537
 
2538
  # Portuguese
2539
+ #: ../../admin/lang/dynamic_strings.php:240
2540
  #, fuzzy
2541
  msgid "l-pt-pt"
2542
  msgstr "Portuguese"
2543
 
2544
  # Quechua
2545
+ #: ../../admin/lang/dynamic_strings.php:241
2546
  msgid "l-qu"
2547
  msgstr "Quechua"
2548
 
2549
  # Quechua
2550
+ #: ../../admin/lang/dynamic_strings.php:242
2551
  #, fuzzy
2552
  msgid "l-qu-bo"
2553
  msgstr "Quechua"
2554
 
2555
  # Quechua
2556
+ #: ../../admin/lang/dynamic_strings.php:243
2557
  #, fuzzy
2558
  msgid "l-qu-ec"
2559
  msgstr "Quechua"
2560
 
2561
  # Quechua
2562
+ #: ../../admin/lang/dynamic_strings.php:244
2563
  #, fuzzy
2564
  msgid "l-qu-pe"
2565
  msgstr "Quechua"
2566
 
2567
  # Romanian; Moldavian; Moldovan
2568
+ #: ../../admin/lang/dynamic_strings.php:245
2569
  msgid "l-ro"
2570
  msgstr "Romanian; Moldavian; Moldovan"
2571
 
2572
  # Romanian; Moldavian; Moldovan
2573
+ #: ../../admin/lang/dynamic_strings.php:246
2574
  #, fuzzy
2575
  msgid "l-ro-ro"
2576
  msgstr "Romanian; Moldavian; Moldovan"
2577
 
2578
  # Russian
2579
+ #: ../../admin/lang/dynamic_strings.php:247
2580
  msgid "l-ru"
2581
  msgstr "Russian"
2582
 
2583
  # Russian (Russia)
2584
+ #: ../../admin/lang/dynamic_strings.php:248
2585
  msgid "l-ru-ru"
2586
  msgstr "Russian (Russia)"
2587
 
2588
  # Sanskrit
2589
+ #: ../../admin/lang/dynamic_strings.php:249
2590
  msgid "l-sa"
2591
  msgstr "Sanskrit"
2592
 
2593
  # Sanskrit
2594
+ #: ../../admin/lang/dynamic_strings.php:250
2595
  #, fuzzy
2596
  msgid "l-sa-in"
2597
  msgstr "Sanskrit"
2598
 
2599
  # Northern Sami
2600
+ #: ../../admin/lang/dynamic_strings.php:251
2601
  msgid "l-se"
2602
  msgstr "Northern Sami"
2603
 
2604
  # Northern Sami
2605
+ #: ../../admin/lang/dynamic_strings.php:252
2606
  #, fuzzy
2607
  msgid "l-se-fi"
2608
  msgstr "Northern Sami"
2609
 
2610
  # Northern Sami
2611
+ #: ../../admin/lang/dynamic_strings.php:253
2612
  #, fuzzy
2613
  msgid "l-se-no"
2614
  msgstr "Northern Sami"
2615
 
2616
  # Northern Sami
2617
+ #: ../../admin/lang/dynamic_strings.php:254
2618
  #, fuzzy
2619
  msgid "l-se-se"
2620
  msgstr "Northern Sami"
2621
 
2622
  # Slovak
2623
+ #: ../../admin/lang/dynamic_strings.php:255
2624
  msgid "l-sk"
2625
  msgstr "Slovak"
2626
 
2627
  # Slovak
2628
+ #: ../../admin/lang/dynamic_strings.php:256
2629
  #, fuzzy
2630
  msgid "l-sk-sk"
2631
  msgstr "Slovak"
2632
 
2633
  # Slovenian
2634
+ #: ../../admin/lang/dynamic_strings.php:257
2635
  msgid "l-sl"
2636
  msgstr "Slovenian"
2637
 
2638
  # Slovenian
2639
+ #: ../../admin/lang/dynamic_strings.php:258
2640
  #, fuzzy
2641
  msgid "l-sl-si"
2642
  msgstr "Slovenian"
2643
 
2644
  # Albanian
2645
+ #: ../../admin/lang/dynamic_strings.php:259
2646
  msgid "l-sq"
2647
  msgstr "Albanian"
2648
 
2649
  # Albanian
2650
+ #: ../../admin/lang/dynamic_strings.php:260
2651
  #, fuzzy
2652
  msgid "l-sq-al"
2653
  msgstr "Albanian"
2654
 
2655
  # Serbian
2656
+ #: ../../admin/lang/dynamic_strings.php:261
2657
  #, fuzzy
2658
  msgid "l-sr-ba"
2659
  msgstr "Serbian"
2660
 
2661
  # Serbian
2662
+ #: ../../admin/lang/dynamic_strings.php:262
2663
  #, fuzzy
2664
  msgid "l-sr-sp"
2665
  msgstr "Serbian"
2666
 
2667
  # Swedish
2668
+ #: ../../admin/lang/dynamic_strings.php:263
2669
  msgid "l-sv"
2670
  msgstr "Swedish"
2671
 
2672
  # Swedish (Finland)
2673
+ #: ../../admin/lang/dynamic_strings.php:264
2674
  msgid "l-sv-fi"
2675
  msgstr "Swedish (Finland)"
2676
 
2677
  # Swedish (Sweden)
2678
+ #: ../../admin/lang/dynamic_strings.php:265
2679
  msgid "l-sv-se"
2680
  msgstr "Swedish (Sweden)"
2681
 
2682
  # Swahili
2683
+ #: ../../admin/lang/dynamic_strings.php:266
2684
  msgid "l-sw"
2685
  msgstr "Swahili"
2686
 
2687
  # Swahili
2688
+ #: ../../admin/lang/dynamic_strings.php:267
2689
  #, fuzzy
2690
  msgid "l-sw-ke"
2691
  msgstr "Swahili"
2692
 
2693
  # Tamil
2694
+ #: ../../admin/lang/dynamic_strings.php:268
2695
  msgid "l-ta"
2696
  msgstr "Tamil"
2697
 
2698
  # Tamil
2699
+ #: ../../admin/lang/dynamic_strings.php:269
2700
  #, fuzzy
2701
  msgid "l-ta-in"
2702
  msgstr "Tamil"
2703
 
2704
  # Telugu
2705
+ #: ../../admin/lang/dynamic_strings.php:270
2706
  msgid "l-te"
2707
  msgstr "Telugu"
2708
 
2709
  # Telugu
2710
+ #: ../../admin/lang/dynamic_strings.php:271
2711
  #, fuzzy
2712
  msgid "l-te-in"
2713
  msgstr "Telugu"
2714
 
2715
  # Thai
2716
+ #: ../../admin/lang/dynamic_strings.php:272
2717
  msgid "l-th"
2718
  msgstr "Thai"
2719
 
2720
  # Thai
2721
+ #: ../../admin/lang/dynamic_strings.php:273
2722
  #, fuzzy
2723
  msgid "l-th-th"
2724
  msgstr "Thai"
2725
 
2726
  # Tagalog
2727
+ #: ../../admin/lang/dynamic_strings.php:274
2728
  msgid "l-tl"
2729
  msgstr "Tagalog"
2730
 
2731
  # Tagalog
2732
+ #: ../../admin/lang/dynamic_strings.php:275
2733
  #, fuzzy
2734
  msgid "l-tl-ph"
2735
  msgstr "Tagalog"
2736
 
2737
  # Tswana
2738
+ #: ../../admin/lang/dynamic_strings.php:276
2739
  msgid "l-tn"
2740
  msgstr "Tswana"
2741
 
2742
  # English (South Africa)
2743
+ #: ../../admin/lang/dynamic_strings.php:277
2744
  #, fuzzy
2745
  msgid "l-tn-za"
2746
  msgstr "English (South Africa)"
2747
 
2748
  # Turkish
2749
+ #: ../../admin/lang/dynamic_strings.php:278
2750
  msgid "l-tr"
2751
  msgstr "Turkish"
2752
 
2753
  # Turkish
2754
+ #: ../../admin/lang/dynamic_strings.php:279
2755
  #, fuzzy
2756
  msgid "l-tr-tr"
2757
  msgstr "Turkish"
2758
 
2759
  # Tatar
2760
+ #: ../../admin/lang/dynamic_strings.php:280
2761
  msgid "l-tt"
2762
  msgstr "Tatar"
2763
 
2764
  # Tatar
2765
+ #: ../../admin/lang/dynamic_strings.php:281
2766
  #, fuzzy
2767
  msgid "l-tt-ru"
2768
  msgstr "Tatar"
2769
 
2770
  # Tsonga
2771
+ #: ../../admin/lang/dynamic_strings.php:282
2772
  msgid "l-ts"
2773
  msgstr "Tsonga"
2774
 
2775
  # Ukrainian
2776
+ #: ../../admin/lang/dynamic_strings.php:283
2777
  msgid "l-uk"
2778
  msgstr "Ukrainian"
2779
 
2780
  # Ukrainian
2781
+ #: ../../admin/lang/dynamic_strings.php:284
2782
  #, fuzzy
2783
  msgid "l-uk-ua"
2784
  msgstr "Ukrainian"
2785
 
2786
  # Urdu
2787
+ #: ../../admin/lang/dynamic_strings.php:285
2788
  msgid "l-ur"
2789
  msgstr "Urdu"
2790
 
2791
  # Urdu
2792
+ #: ../../admin/lang/dynamic_strings.php:286
2793
  #, fuzzy
2794
  msgid "l-ur-pk"
2795
  msgstr "Urdu"
2796
 
2797
  # Uzbek
2798
+ #: ../../admin/lang/dynamic_strings.php:287
2799
  msgid "l-uz"
2800
  msgstr "Uzbek"
2801
 
2802
  # Uzbek
2803
+ #: ../../admin/lang/dynamic_strings.php:288
2804
  #, fuzzy
2805
  msgid "l-uz-uz"
2806
  msgstr "Uzbek"
2807
 
2808
  # Vietnamese
2809
+ #: ../../admin/lang/dynamic_strings.php:289
2810
  msgid "l-vi"
2811
  msgstr "Vietnamese"
2812
 
2813
  # Vietnamese
2814
+ #: ../../admin/lang/dynamic_strings.php:290
2815
  #, fuzzy
2816
  msgid "l-vi-vn"
2817
  msgstr "Vietnamese"
2818
 
2819
  # Xhosa
2820
+ #: ../../admin/lang/dynamic_strings.php:291
2821
  msgid "l-xh"
2822
  msgstr "Xhosa"
2823
 
2824
  # Xhosa
2825
+ #: ../../admin/lang/dynamic_strings.php:292
2826
  #, fuzzy
2827
  msgid "l-xh-za"
2828
  msgstr "Xhosa"
2829
 
2830
  # Chinese
2831
+ #: ../../admin/lang/dynamic_strings.php:293
2832
  msgid "l-zh"
2833
  msgstr "Chinese"
2834
 
2835
  # Chinese (China)
2836
+ #: ../../admin/lang/dynamic_strings.php:294
2837
  msgid "l-zh-cn"
2838
  msgstr "Chinese (China)"
2839
 
2840
  # Chinese (Hong Kong)
2841
+ #: ../../admin/lang/dynamic_strings.php:295
2842
  msgid "l-zh-hk"
2843
  msgstr "Chinese (Hong Kong)"
2844
 
2845
  # Chinese
2846
+ #: ../../admin/lang/dynamic_strings.php:296
2847
  #, fuzzy
2848
  msgid "l-zh-mo"
2849
  msgstr "Chinese"
2850
 
2851
  # Chinese (Singapore)
2852
+ #: ../../admin/lang/dynamic_strings.php:297
2853
  msgid "l-zh-sg"
2854
  msgstr "Chinese (Singapore)"
2855
 
2856
  # Chinese (Taiwan)
2857
+ #: ../../admin/lang/dynamic_strings.php:298
2858
  msgid "l-zh-tw"
2859
  msgstr "Chinese (Taiwan)"
2860
 
2861
  # Zulu
2862
+ #: ../../admin/lang/dynamic_strings.php:299
2863
  msgid "l-zu"
2864
  msgstr "Zulu"
2865
 
2866
  # Zulu
2867
+ #: ../../admin/lang/dynamic_strings.php:300
2868
  #, fuzzy
2869
  msgid "l-zu-za"
2870
  msgstr "Zulu"
2871
 
2872
+ #: ../../admin/lang/dynamic_strings.php:301
2873
+ #: ../../admin/view/wp-slimstat-reports.php:536
2874
  msgid "l-"
2875
  msgstr "l-"
2876
 
2877
  # Unknown
2878
+ #: ../../admin/lang/dynamic_strings.php:302
2879
  msgid "l-empty"
2880
  msgstr "Unknown"
2881
 
2882
  # Unknown
2883
+ #: ../../admin/lang/dynamic_strings.php:303
2884
  msgid "l-xx"
2885
  msgstr "Unknown"
2886
 
2887
+ #: ../../admin/lang/dynamic_strings.php:304
2888
  msgid "c-xy"
2889
  msgstr "Local IP"
2890
 
2891
+ #: ../../admin/view/index.php:26
2892
  msgid "is between (x,y)"
2893
  msgstr ""
2894
 
2895
+ #: ../../admin/view/index.php:46
2896
  msgid "Load"
2897
  msgstr ""
2898
 
2899
+ #: ../../admin/view/index.php:66 ../../admin/view/wp-slimstat-reports.php:859
2900
  msgid "Today"
2901
  msgstr "Hoy"
2902
 
2903
+ #: ../../admin/view/index.php:67 ../../admin/view/wp-slimstat-reports.php:860
2904
  msgid "Yesterday"
2905
  msgstr "Ayer"
2906
 
2907
+ #: ../../admin/view/index.php:68
2908
  msgid "Last 7 Days"
2909
  msgstr "Últimos 7 días"
2910
 
2911
+ #: ../../admin/view/index.php:69
2912
  msgid "Last 60 Days"
2913
  msgstr "Últimos 60 días"
2914
 
2915
+ #: ../../admin/view/index.php:70
2916
  msgid "Last 90 Days"
2917
  msgstr "Últimos 90 días"
2918
 
2919
+ #: ../../admin/view/index.php:71
2920
  #, fuzzy
2921
  msgid "This Year So Far"
2922
  msgstr "Año"
2923
 
2924
+ #: ../../admin/view/index.php:72
2925
  #, fuzzy
2926
  msgid "Date Range"
2927
  msgstr "Fecha y hora"
2928
 
2929
+ #: ../../admin/view/index.php:74 ../../admin/view/wp-slimstat-db-new.php:66
2930
+ #: ../../admin/view/wp-slimstat-db.php:71
2931
  msgid "Day"
2932
  msgstr "Día"
2933
 
2934
+ #: ../../admin/view/index.php:84 ../../admin/view/wp-slimstat-db-new.php:67
2935
+ #: ../../admin/view/wp-slimstat-db.php:72
2936
  msgid "Month"
2937
  msgstr "Mes"
2938
 
2939
+ #: ../../admin/view/index.php:93 ../../admin/view/wp-slimstat-db-new.php:68
2940
+ #: ../../admin/view/wp-slimstat-db.php:73
2941
  msgid "Year"
2942
  msgstr "Año"
2943
 
2944
+ #: ../../admin/view/index.php:94 ../../admin/view/wp-slimstat-db-new.php:65
2945
+ #: ../../admin/view/wp-slimstat-db.php:70
2946
  #, fuzzy
2947
  msgid "Hour"
2948
  msgstr "Paginas visitadas"
2949
 
2950
+ #: ../../admin/view/index.php:95
2951
  msgid "Min"
2952
  msgstr ""
2953
 
2954
+ #: ../../admin/view/index.php:103 ../../admin/view/wp-slimstat-db-new.php:71
2955
+ #: ../../admin/view/wp-slimstat-db.php:76
2956
  msgid "hours"
2957
  msgstr ""
2958
 
2959
+ #: ../../admin/view/index.php:104
2960
  msgid "mins"
2961
  msgstr ""
2962
 
2963
+ #: ../../admin/view/index.php:113
2964
  #, fuzzy
2965
  msgid "Reset Filters"
2966
  msgstr "Filtros de fecha"
2967
 
2968
+ #: ../../admin/view/index.php:132
2969
+ #, php-format
2970
+ msgid ""
2971
+ "Install MaxMind's <a href='%s'>GeoLite DB</a> to determine your visitors' "
2972
+ "country of origin."
2973
+ msgstr ""
2974
+
2975
+ #: ../../admin/view/index.php:157
2976
  msgid "Your report here"
2977
  msgstr "Su informe aquí"
2978
 
2979
+ #: ../../admin/view/index.php:159
2980
  #, fuzzy
2981
  msgid ""
2982
  "Yes, you can! Create and view your personalized analytics for Slimstat. Just "
2996
  "información, visite mi <a href=\"http://lab.duechiacchiere.it/\" target="
2997
  "\"_blank\"> Foro de Soporte </ a>."
2998
 
2999
+ #: ../../admin/view/index.php:176
 
 
 
 
 
 
3000
  #, fuzzy
3001
  msgid ""
3002
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
3008
  "visitantes que regresan. Por favor, tenga en cuenta que los visitantes "
3009
  "también incluyen a los usuarios registrados."
3010
 
3011
+ #: ../../admin/view/index.php:180 ../../admin/view/index.php:224
3012
+ #: ../../admin/view/index.php:227 ../../admin/view/right-now.php:17
3013
  #, fuzzy
3014
  msgid "Color codes"
3015
  msgstr "Código de Pais"
3016
 
3017
+ #: ../../admin/view/index.php:180 ../../admin/view/right-now.php:17
3018
  #, fuzzy
3019
  msgid "From search result page"
3020
  msgstr "Desde una página con resultados de búsqueda"
3021
 
3022
+ #: ../../admin/view/index.php:180 ../../admin/view/right-now.php:17
3023
+ #: ../../admin/wp-slimstat-admin.php:917
3024
  #, fuzzy
3025
  msgid "Known Visitor"
3026
  msgstr "Palabras clave recientes"
3027
 
3028
+ #: ../../admin/view/index.php:180 ../../admin/view/index.php:224
3029
+ #: ../../admin/view/index.php:227 ../../admin/view/right-now.php:17
3030
  #, fuzzy
3031
  msgid "Known Users"
3032
  msgstr "Navegadores recientes"
3033
 
3034
+ #: ../../admin/view/index.php:180 ../../admin/view/index.php:224
3035
+ #: ../../admin/view/index.php:227 ../../admin/view/right-now.php:17
3036
  msgid "Other Humans"
3037
  msgstr "Otros seres humanos"
3038
 
3039
+ #: ../../admin/view/index.php:180 ../../admin/view/right-now.php:17
3040
  msgid "Bot or Crawler"
3041
  msgstr "Bot o Crawler"
3042
 
3043
+ #: ../../admin/view/index.php:184
3044
  msgid "Keywords used by your visitors to find your website on a search engine."
3045
  msgstr ""
3046
  "Palabras clave utilizadas por los visitantes para encontrar su sitio en un "
3047
  "motor de búsqueda."
3048
 
3049
+ #: ../../admin/view/index.php:187
3050
  #, fuzzy
3051
  msgid ""
3052
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
3057
  "para medir el ranking de su sitio. Los valores se actualizan cada 12 horas. "
3058
  "Filtros indicados anteriormente no se aplican a este informe."
3059
 
3060
+ #: ../../admin/view/index.php:193
3061
  msgid "Human Visits"
3062
  msgstr "Visitas humanas"
3063
 
3064
+ #: ../../admin/view/index.php:196
3065
+ msgid ""
3066
+ "Where not otherwise specified, the metrics in this report are referred to "
3067
+ "human visitors."
3068
+ msgstr ""
3069
+
3070
+ #: ../../admin/view/index.php:199
3071
  #, fuzzy
3072
  msgid ""
3073
  "Internet Service Provider: a company which provides other companies or "
3081
  "IP específicas estableciendo el filtro correspondiente en Configuración> "
3082
  "SLIMStat> Filtros."
3083
 
3084
+ #: ../../admin/view/index.php:202
3085
  #, fuzzy
3086
  msgid ""
3087
  "You can configure Slimstat to ignore a specific Country by setting the "
3091
  "el establecimiento de el filtro correspondiente en Configuración> SLIMStat> "
3092
  "Filtros."
3093
 
3094
+ #: ../../admin/view/index.php:205
3095
  msgid ""
3096
  "This report shows you what user agent families (no version considered) are "
3097
  "popular among your visitors."
3099
  "Este informe muestra qué familias de agentes de usuarios son populares entre "
3100
  "los visitantes (no considerada la versión)."
3101
 
3102
+ #: ../../admin/view/index.php:208
3103
  msgid ""
3104
  "This report shows you what operating system families (no version considered) "
3105
  "are popular among your visitors."
3107
  "Este informe le muestra qué familias de sistema operativo (sin versión "
3108
  "considerado) son populares entre los visitantes."
3109
 
3110
+ #: ../../admin/view/index.php:211 ../../admin/view/wp-slimstat-reports.php:36
3111
+ #: ../../admin/wp-slimstat-admin.php:589 ../../admin/wp-slimstat-admin.php:604
3112
+ #: ../../wp-slimstat.php:1473
3113
  msgid "Traffic Sources"
3114
  msgstr "Origen del Tráfico"
3115
 
3116
+ #: ../../admin/view/index.php:214
3117
  #, fuzzy
3118
  msgid "Average Pageviews per Visit"
3119
  msgstr "Promedio de páginas vistas por horas"
3120
 
3121
+ #: ../../admin/view/index.php:217
3122
  msgid ""
3123
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
3124
  "left your site from the entrance (landing) page."
3127
  "la que el usuario ha abandonado su sitio desde la página de entrada (de "
3128
  "aterrizaje)."
3129
 
3130
+ #: ../../admin/view/index.php:220
3131
  msgid "Searches performed using Wordpress' built-in search functionality."
3132
  msgstr ""
3133
  "Búsquedas realizadas utilizando la funcionalidad integrada de búsqueda de "
3134
  "Wordpress"
3135
 
3136
+ #: ../../admin/view/index.php:224
3137
  msgid ""
3138
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
3139
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
3144
  "muestra cuando el enlace correspondiente tiene un atributo ID asociado a la "
3145
  "misma."
3146
 
3147
+ #: ../../admin/view/index.php:227
3148
  msgid ""
3149
  "This report lists any <em>event</em> occurred on your website. Please refer "
3150
  "to the FAQ for more information on how to leverage this functionality."
3153
  "Por favor, consulte las preguntas frecuentes para más información sobre cómo "
3154
  "aprovechar esta funcionalidad."
3155
 
3156
+ #: ../../admin/view/index.php:230
3157
  msgid ""
3158
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
3159
  "this report is not affected by the filters set here above."
3178
  msgid "Syndication Reader"
3179
  msgstr "Lector de Sindicación"
3180
 
3181
+ #: ../../admin/view/right-now.php:27
3182
+ #: ../../admin/view/wp-slimstat-reports.php:458
3183
+ #: ../../admin/view/wp-slimstat-reports.php:741
3184
  msgid "No data to display"
3185
  msgstr "No hay datos que mostrar"
3186
 
3187
  # Unknown
3188
+ #: ../../admin/view/right-now.php:57
3189
+ #: ../../admin/view/wp-slimstat-reports.php:524
3190
+ #: ../../admin/view/wp-slimstat-reports.php:784
3191
+ #: ../../admin/view/wp-slimstat-reports.php:1063
3192
  msgid "c-"
3193
  msgstr "Unknown"
3194
 
3195
+ #: ../../admin/view/right-now.php:110
3196
+ #: ../../admin/view/wp-slimstat-db-new.php:57
3197
+ #: ../../admin/view/wp-slimstat-db.php:58
3198
+ #: ../../admin/wp-slimstat-admin.php:919 ../../admin/wp-slimstat-admin.php:961
3199
  msgid "Originating IP"
3200
  msgstr "IP de Origen"
3201
 
3202
+ #: ../../admin/view/right-now.php:128
3203
  msgid "Server Latency and Page Speed in milliseconds"
3204
  msgstr ""
3205
 
3206
+ #: ../../admin/view/right-now.php:128
3207
  msgid "SL"
3208
  msgstr ""
3209
 
3210
+ #: ../../admin/view/right-now.php:128
3211
  msgid "PS"
3212
  msgstr ""
3213
 
3214
+ #: ../../admin/view/right-now.php:140
3215
+ #: ../../admin/view/wp-slimstat-reports.php:588
3216
+ #: ../../admin/view/wp-slimstat-reports.php:592
3217
+ #: ../../admin/view/wp-slimstat-reports.php:766
3218
+ #: ../../admin/view/wp-slimstat-reports.php:819
3219
  #, fuzzy
3220
  msgid "Open this URL in a new window"
3221
  msgstr "Abrir %s en una nueva ventana"
3222
 
3223
+ #: ../../admin/view/right-now.php:143
3224
  msgid "Local search results page"
3225
  msgstr "Página de resultados de búsqueda local"
3226
 
3227
+ #: ../../admin/view/right-now.php:148
3228
+ #: ../../admin/view/wp-slimstat-db-new.php:36
3229
+ #: ../../admin/view/wp-slimstat-db.php:39
3230
+ #: ../../admin/wp-slimstat-admin.php:922 ../../admin/wp-slimstat-admin.php:938
3231
  #, fuzzy
3232
  msgid "Search Terms"
3233
  msgstr "Principales Recursos"
3237
  msgid "Open this referrer in a new window"
3238
  msgstr "Abrir referido en una nueva página"
3239
 
 
 
 
 
 
3240
  #: ../../admin/view/right-now.php:155
3241
  #, fuzzy
3242
  msgid "Date and Time"
3247
  msgid "Content Type"
3248
  msgstr "Contenido"
3249
 
3250
+ #: ../../admin/view/right-now.php:159
3251
+ #, fuzzy
3252
+ msgid "Delete this pageview"
3253
+ msgstr "Filtrar páginas visitadas dondé:"
3254
+
3255
+ #: ../../admin/view/wp-slimstat-db-new.php:33
3256
+ #: ../../admin/view/wp-slimstat-db.php:36
3257
+ #: ../../admin/wp-slimstat-admin.php:935
3258
  msgid "Browser"
3259
  msgstr "Navegador"
3260
 
3261
+ #: ../../admin/view/wp-slimstat-db-new.php:34
3262
+ #: ../../admin/view/wp-slimstat-db.php:37
3263
+ #: ../../admin/view/wp-slimstat-reports.php:523
3264
+ #: ../../admin/wp-slimstat-admin.php:936
3265
  msgid "Country Code"
3266
  msgstr "Código de Pais"
3267
 
3268
+ #: ../../admin/view/wp-slimstat-db-new.php:35
3269
+ #: ../../admin/view/wp-slimstat-db.php:38
3270
  msgid "IP Address"
3271
  msgstr "Dirección IP"
3272
 
3273
+ #: ../../admin/view/wp-slimstat-db-new.php:37
3274
+ #: ../../admin/view/wp-slimstat-db.php:40
3275
+ #: ../../admin/view/wp-slimstat-reports.php:535
3276
+ #: ../../admin/wp-slimstat-admin.php:939
3277
  msgid "Language Code"
3278
  msgstr "Código de Idioma"
3279
 
3280
+ #: ../../admin/view/wp-slimstat-db-new.php:38
3281
+ #: ../../admin/view/wp-slimstat-db.php:41
3282
+ #: ../../admin/wp-slimstat-admin.php:940
3283
  msgid "Operating System"
3284
  msgstr "Sistema Operativo"
3285
 
3286
+ #: ../../admin/view/wp-slimstat-db-new.php:39
3287
+ #: ../../admin/view/wp-slimstat-db.php:42
3288
+ #: ../../admin/wp-slimstat-admin.php:941
3289
  msgid "Permalink"
3290
  msgstr "Enlace Permanente"
3291
 
3292
+ #: ../../admin/view/wp-slimstat-db-new.php:40
3293
  msgid "Domain"
3294
  msgstr "Dominio"
3295
 
3296
+ #: ../../admin/view/wp-slimstat-db-new.php:41
3297
+ #: ../../admin/view/wp-slimstat-db.php:43
3298
+ #: ../../admin/wp-slimstat-admin.php:942
3299
  msgid "Referer"
3300
  msgstr "Referido"
3301
 
3302
+ #: ../../admin/view/wp-slimstat-db-new.php:42
3303
+ #: ../../admin/view/wp-slimstat-db.php:44
3304
+ #: ../../admin/wp-slimstat-admin.php:943
3305
  #, fuzzy
3306
  msgid "Visitor's Name"
3307
  msgstr "Visitantes"
3308
 
3309
+ #: ../../admin/view/wp-slimstat-db-new.php:43
3310
+ #: ../../admin/view/wp-slimstat-db.php:45
3311
  msgid "Page Speed"
3312
  msgstr ""
3313
 
3314
+ #: ../../admin/view/wp-slimstat-db-new.php:45
3315
+ #: ../../admin/view/wp-slimstat-db.php:47
3316
  msgid "-- Advanced filters --"
3317
  msgstr "-- Filtros Avanzados --"
3318
 
3319
+ #: ../../admin/view/wp-slimstat-db-new.php:46
3320
+ #: ../../admin/view/wp-slimstat-db.php:48
3321
+ #: ../../admin/view/wp-slimstat-reports.php:63
3322
  #, fuzzy
3323
  msgid "Browser Capabilities"
3324
  msgstr "Navegador"
3325
 
3326
+ #: ../../admin/view/wp-slimstat-db-new.php:47
3327
+ #: ../../admin/view/wp-slimstat-db.php:49
3328
+ #: ../../admin/wp-slimstat-admin.php:954
3329
  #, fuzzy
3330
  msgid "Browser Version"
3331
  msgstr "Versión del Navegador"
3332
 
3333
+ #: ../../admin/view/wp-slimstat-db-new.php:48
3334
+ #: ../../admin/view/wp-slimstat-db.php:50
3335
+ #: ../../admin/wp-slimstat-admin.php:955
3336
  #, fuzzy
3337
  msgid "Browser Type"
3338
  msgstr "Navegador"
3339
 
3340
+ #: ../../admin/view/wp-slimstat-db-new.php:49
3341
+ #: ../../admin/view/wp-slimstat-db.php:51
3342
+ #: ../../admin/wp-slimstat-admin.php:924
3343
  #, fuzzy
3344
  msgid "User Agent"
3345
  msgstr "Buscadores"
3346
 
3347
+ #: ../../admin/view/wp-slimstat-db-new.php:50
3348
+ #: ../../admin/view/wp-slimstat-db.php:52
3349
+ #: ../../admin/wp-slimstat-admin.php:956
3350
  msgid "Color Depth"
3351
  msgstr "Profundidad de color"
3352
 
3353
+ #: ../../admin/view/wp-slimstat-db-new.php:51
3354
+ #: ../../admin/view/wp-slimstat-db.php:53
3355
+ #: ../../admin/wp-slimstat-admin.php:957
3356
  #, fuzzy
3357
  msgid "CSS Version"
3358
  msgstr "Versión de CSS"
3359
 
3360
+ #: ../../admin/view/wp-slimstat-db-new.php:52
3361
+ #: ../../admin/view/wp-slimstat-db.php:54
3362
+ #: ../../admin/wp-slimstat-admin.php:958
3363
  #, fuzzy
3364
  msgid "Pageview Attributes"
3365
  msgstr "Paginas visitadas"
3366
 
3367
+ #: ../../admin/view/wp-slimstat-db-new.php:53
3368
+ #: ../../admin/view/wp-slimstat-db.php:55
3369
  msgid "Server Latency"
3370
  msgstr ""
3371
 
3372
+ #: ../../admin/view/wp-slimstat-db-new.php:54
3373
+ #: ../../admin/wp-slimstat-admin.php:925
3374
  #, fuzzy
3375
  msgid "Outbound Link"
3376
  msgstr "Enlaces Salientes Recientes"
3377
 
3378
+ #: ../../admin/view/wp-slimstat-db-new.php:55
3379
+ #: ../../admin/view/wp-slimstat-db.php:56
3380
+ #: ../../admin/wp-slimstat-admin.php:959
3381
  msgid "Post Author"
3382
  msgstr "Autor de la entrada(sección)"
3383
 
3384
+ #: ../../admin/view/wp-slimstat-db-new.php:56
3385
+ #: ../../admin/view/wp-slimstat-db.php:57
3386
+ #: ../../admin/wp-slimstat-admin.php:960
3387
  msgid "Post Category ID"
3388
  msgstr "ID de la entrada(sección) de la Categoria"
3389
 
3390
+ #: ../../admin/view/wp-slimstat-db-new.php:58
3391
+ #: ../../admin/view/wp-slimstat-db.php:59
3392
+ #: ../../admin/wp-slimstat-admin.php:962
3393
  #, fuzzy
3394
  msgid "Resource Content Type"
3395
  msgstr "Contenidos Recientes"
3396
 
3397
+ #: ../../admin/view/wp-slimstat-db-new.php:59
3398
+ #: ../../admin/view/wp-slimstat-db.php:60
3399
  #, fuzzy
3400
  msgid "Resource ID"
3401
  msgstr "Principales Recursos"
3402
 
3403
+ #: ../../admin/view/wp-slimstat-db-new.php:60
3404
+ #: ../../admin/wp-slimstat-admin.php:963
3405
  msgid "Screen Resolution"
3406
  msgstr "Resolución de Pantalla"
3407
 
3408
+ #: ../../admin/view/wp-slimstat-db-new.php:61
3409
+ #: ../../admin/view/wp-slimstat-db.php:64
3410
+ #: ../../admin/wp-slimstat-admin.php:964
3411
  #, fuzzy
3412
  msgid "Visit ID"
3413
  msgstr "Visitas"
3414
 
3415
+ #: ../../admin/view/wp-slimstat-db-new.php:64
3416
+ #: ../../admin/view/wp-slimstat-db.php:69
3417
  msgid "Minute"
3418
  msgstr ""
3419
 
3420
+ #: ../../admin/view/wp-slimstat-db-new.php:69
3421
+ #: ../../admin/view/wp-slimstat-db.php:74
3422
  msgid "+/-"
3423
  msgstr ""
3424
 
3425
+ #: ../../admin/view/wp-slimstat-db-new.php:72
3426
+ #: ../../admin/view/wp-slimstat-db.php:77
3427
  #, fuzzy
3428
  msgid "minutes"
3429
  msgstr "1 - 3 minutos"
3430
 
3431
+ #: ../../admin/view/wp-slimstat-db-new.php:74
3432
  #, fuzzy
3433
  msgid "Order Direction"
3434
  msgstr "director"
3435
 
3436
+ #: ../../admin/view/wp-slimstat-db-new.php:75
3437
+ #: ../../admin/view/wp-slimstat-db.php:80
3438
  msgid "Limit Results"
3439
  msgstr "Limitar Resultados"
3440
 
3441
+ #: ../../admin/view/wp-slimstat-db-new.php:76
3442
+ #: ../../admin/view/wp-slimstat-db.php:81
3443
  msgid "Start From"
3444
  msgstr "Comenzar desde"
3445
 
3446
+ #: ../../admin/view/wp-slimstat-db.php:61
3447
+ msgid "Screen Width"
3448
+ msgstr ""
3449
+
3450
+ #: ../../admin/view/wp-slimstat-db.php:62
3451
+ #, fuzzy
3452
+ msgid "Screen Height"
3453
+ msgstr "Resolución de Pantalla"
3454
+
3455
+ #: ../../admin/view/wp-slimstat-db.php:63
3456
+ msgid "Viewport Size"
3457
+ msgstr ""
3458
+
3459
+ #: ../../admin/view/wp-slimstat-db.php:78
3460
+ msgid "Unix Timestamp"
3461
+ msgstr ""
3462
+
3463
+ #: ../../admin/view/wp-slimstat-reports.php:32
3464
+ #: ../../admin/wp-slimstat-admin.php:585 ../../wp-slimstat.php:1469
3465
  msgid "Real-Time Log"
3466
  msgstr ""
3467
 
3468
+ #: ../../admin/view/wp-slimstat-reports.php:33
3469
+ #: ../../admin/wp-slimstat-admin.php:586 ../../admin/wp-slimstat-admin.php:601
3470
+ #: ../../wp-slimstat.php:1470
3471
  msgid "Overview"
3472
  msgstr "Visión general"
3473
 
3474
+ #: ../../admin/view/wp-slimstat-reports.php:34
3475
+ #: ../../admin/wp-slimstat-admin.php:587 ../../admin/wp-slimstat-admin.php:602
3476
+ #: ../../wp-slimstat.php:1471
3477
  msgid "Audience"
3478
  msgstr ""
3479
 
3480
+ #: ../../admin/view/wp-slimstat-reports.php:35
3481
+ #: ../../admin/wp-slimstat-admin.php:588 ../../admin/wp-slimstat-admin.php:603
3482
+ #: ../../wp-slimstat.php:1472
3483
  msgid "Site Analysis"
3484
  msgstr ""
3485
 
3486
+ #: ../../admin/view/wp-slimstat-reports.php:37
3487
+ #: ../../admin/wp-slimstat-admin.php:590 ../../admin/wp-slimstat-admin.php:605
3488
+ #: ../../wp-slimstat.php:1474
3489
  msgid "Map Overlay"
3490
  msgstr ""
3491
 
3492
+ #: ../../admin/view/wp-slimstat-reports.php:38
3493
+ #: ../../admin/wp-slimstat-admin.php:591 ../../admin/wp-slimstat-admin.php:606
3494
+ #: ../../wp-slimstat.php:1475
3495
  msgid "Custom Reports"
3496
  msgstr "Informes Personalizados"
3497
 
3498
+ #: ../../admin/view/wp-slimstat-reports.php:42
3499
  #, fuzzy
3500
  msgid "Pageviews (chart)"
3501
  msgstr "Páginas visitadas por horas"
3502
 
3503
+ #: ../../admin/view/wp-slimstat-reports.php:43
3504
  #, fuzzy
3505
  msgid "About Slimstat"
3506
  msgstr "Acerca de WP-SlimStat"
3507
 
3508
+ #: ../../admin/view/wp-slimstat-reports.php:44
3509
  msgid "At a Glance"
3510
  msgstr "Un vistazo"
3511
 
3512
+ #: ../../admin/view/wp-slimstat-reports.php:45
3513
  #, fuzzy
3514
  msgid "Currently Online"
3515
  msgstr "Filtros Actuales:"
3516
 
3517
+ #: ../../admin/view/wp-slimstat-reports.php:47
3518
  #: ../../admin/view/wp-slimstat-reports.php:82
 
 
 
 
 
3519
  #, fuzzy
3520
  msgid "Recent Search Terms"
3521
  msgstr "Búsquedas Internas Recientes"
3522
 
3523
+ #: ../../admin/view/wp-slimstat-reports.php:48
3524
  #, fuzzy
3525
  msgid "Top Pages"
3526
  msgstr "Principales Páginas de Salida"
3527
 
3528
+ #: ../../admin/view/wp-slimstat-reports.php:49
3529
+ #: ../../admin/view/wp-slimstat-reports.php:79
3530
  #, fuzzy
3531
  msgid "Top Traffic Sources"
3532
  msgstr "Origen del Tráfico"
3533
 
3534
+ #: ../../admin/view/wp-slimstat-reports.php:50
3535
  #, fuzzy
3536
  msgid "Top Known Visitors"
3537
  msgstr "Palabras clave recientes"
3538
 
3539
+ #: ../../admin/view/wp-slimstat-reports.php:51
3540
+ #: ../../admin/view/wp-slimstat-reports.php:77
3541
+ #: ../../admin/view/wp-slimstat-reports.php:97
3542
  #, fuzzy
3543
  msgid "Top Search Terms"
3544
  msgstr "Principales Recursos"
3545
 
3546
+ #: ../../admin/view/wp-slimstat-reports.php:52
3547
+ #: ../../admin/view/wp-slimstat-reports.php:64
3548
+ #: ../../admin/view/wp-slimstat-reports.php:78
3549
  msgid "Top Countries"
3550
  msgstr "Paises que más visitan"
3551
 
3552
+ #: ../../admin/view/wp-slimstat-reports.php:53
3553
  msgid "Rankings"
3554
  msgstr "Calificaciones"
3555
 
3556
+ #: ../../admin/view/wp-slimstat-reports.php:54
3557
  #, fuzzy
3558
  msgid "Top Language Families"
3559
  msgstr "Idiomas"
3560
 
3561
+ #: ../../admin/view/wp-slimstat-reports.php:55
3562
+ msgid "Our Team Recommends"
3563
+ msgstr ""
3564
+
3565
+ #: ../../admin/view/wp-slimstat-reports.php:56
3566
  #, fuzzy
3567
  msgid "Human Visits (chart)"
3568
  msgstr "Visitas humanas por hora"
3569
 
3570
+ #: ../../admin/view/wp-slimstat-reports.php:57
3571
  #, fuzzy
3572
  msgid "Audience Overview"
3573
  msgstr "Visión general"
3574
 
3575
+ #: ../../admin/view/wp-slimstat-reports.php:58
3576
  #, fuzzy
3577
  msgid "Top Languages"
3578
  msgstr "Idiomas"
3579
 
3580
+ #: ../../admin/view/wp-slimstat-reports.php:59
3581
  #, fuzzy
3582
  msgid "Top Browsers"
3583
  msgstr "Navegador"
3584
 
3585
+ #: ../../admin/view/wp-slimstat-reports.php:60
3586
  #, fuzzy
3587
  msgid "Top Service Providers"
3588
  msgstr "Principales Recursos"
3589
 
3590
+ #: ../../admin/view/wp-slimstat-reports.php:61
3591
  #, fuzzy
3592
  msgid "Top Operating Systems"
3593
  msgstr "Sistemas Operativos"
3594
 
3595
+ #: ../../admin/view/wp-slimstat-reports.php:62
3596
  #, fuzzy
3597
  msgid "Top Screen Resolutions"
3598
  msgstr "Resolución de Pantalla"
3599
 
3600
+ #: ../../admin/view/wp-slimstat-reports.php:65
3601
  #, fuzzy
3602
  msgid "Visit Duration"
3603
  msgstr "Visitas"
3604
 
3605
+ #: ../../admin/view/wp-slimstat-reports.php:66
3606
+ #: ../../admin/view/wp-slimstat-reports.php:83
3607
  msgid "Recent Countries"
3608
  msgstr "Paises Recientes"
3609
 
3610
+ #: ../../admin/view/wp-slimstat-reports.php:67
3611
  #, fuzzy
3612
  msgid "Recent Screen Resolutions"
3613
  msgstr "Resolución de Pantalla"
3614
 
3615
+ #: ../../admin/view/wp-slimstat-reports.php:68
3616
  #, fuzzy
3617
  msgid "Recent Operating Systems"
3618
  msgstr "Sistemas Operativos"
3619
 
3620
+ #: ../../admin/view/wp-slimstat-reports.php:69
3621
  #, fuzzy
3622
  msgid "Recent Browsers"
3623
  msgstr "Contenidos Recientes"
3624
 
3625
+ #: ../../admin/view/wp-slimstat-reports.php:70
3626
  #, fuzzy
3627
  msgid "Recent Languages"
3628
  msgstr "Idiomas"
3629
 
3630
+ #: ../../admin/view/wp-slimstat-reports.php:71
3631
  #, fuzzy
3632
  msgid "Top Browser Families"
3633
  msgstr "Navegador"
3634
 
3635
+ #: ../../admin/view/wp-slimstat-reports.php:72
3636
  msgid "Top OS Families"
3637
  msgstr "Páginas Recientes no encontradas"
3638
 
3639
+ #: ../../admin/view/wp-slimstat-reports.php:73
3640
  #, fuzzy
3641
  msgid "Recent Users"
3642
  msgstr "Buscadores"
3643
 
3644
+ #: ../../admin/view/wp-slimstat-reports.php:74
3645
  #, fuzzy
3646
  msgid "Top Users"
3647
  msgstr "Buscadores"
3648
 
3649
+ #: ../../admin/view/wp-slimstat-reports.php:75
3650
  #, fuzzy
3651
  msgid "Traffic Sources (chart)"
3652
  msgstr "Origen del Tráfico"
3653
 
3654
+ #: ../../admin/view/wp-slimstat-reports.php:76
3655
  #, fuzzy
3656
  msgid "Summary"
3657
  msgstr "Sumario de"
3658
 
3659
+ #: ../../admin/view/wp-slimstat-reports.php:80
3660
  #, fuzzy
3661
  msgid "Top Referring Search Engines"
3662
  msgstr "Motores de Búsqueda"
3663
 
3664
+ #: ../../admin/view/wp-slimstat-reports.php:81
3665
+ msgid "Spy View"
3666
+ msgstr "Vista de Espía"
 
 
3667
 
3668
+ #: ../../admin/view/wp-slimstat-reports.php:84
3669
  #, fuzzy
3670
+ msgid "Recent Exit Pages"
3671
+ msgstr "Páginas recientes de rebote"
3672
 
3673
+ #: ../../admin/view/wp-slimstat-reports.php:86
3674
  #, fuzzy
3675
  msgid "Recent Posts"
3676
  msgstr "Contenidos Recientes"
3677
 
3678
+ #: ../../admin/view/wp-slimstat-reports.php:87
3679
  #, fuzzy
3680
  msgid "Recent Bounce Pages"
3681
  msgstr "Páginas recientes de rebote"
3682
 
3683
+ #: ../../admin/view/wp-slimstat-reports.php:88
3684
  msgid "Recent Feeds"
3685
  msgstr "Feeds Recientes"
3686
 
3687
+ #: ../../admin/view/wp-slimstat-reports.php:89
3688
  msgid "Recent Pages Not Found"
3689
  msgstr "Páginas Recientes no encontradas"
3690
 
3691
+ #: ../../admin/view/wp-slimstat-reports.php:90
3692
  msgid "Recent Internal Searches"
3693
  msgstr "Búsquedas Internas Recientes"
3694
 
3695
+ #: ../../admin/view/wp-slimstat-reports.php:91
3696
  #, fuzzy
3697
  msgid "Top Categories"
3698
  msgstr "Principales Páginas de Salida"
3699
 
3700
+ #: ../../admin/view/wp-slimstat-reports.php:92
3701
  msgid "Recent Outbound Links"
3702
  msgstr "Enlaces Salientes Recientes"
3703
 
3704
+ #: ../../admin/view/wp-slimstat-reports.php:93
3705
  #, fuzzy
3706
  msgid "Recent Events"
3707
  msgstr "Contenidos Recientes"
3708
 
3709
+ #: ../../admin/view/wp-slimstat-reports.php:94
3710
  #, fuzzy
3711
  msgid "Top Posts"
3712
  msgstr "Paises que más visitan"
3713
 
3714
+ #: ../../admin/view/wp-slimstat-reports.php:95
3715
  #, fuzzy
3716
  msgid "Top Feeds"
3717
  msgstr "Top Palabras Clave"
3718
 
3719
+ #: ../../admin/view/wp-slimstat-reports.php:96
3720
  #, fuzzy
3721
  msgid "Top Internal Searches"
3722
  msgstr "Búsquedas Internas Recientes"
3723
 
3724
+ #: ../../admin/view/wp-slimstat-reports.php:98
3725
  #, fuzzy
3726
  msgid "Recent Categories"
3727
  msgstr "Paises Recientes"
3728
 
3729
+ #: ../../admin/view/wp-slimstat-reports.php:99
3730
  #, fuzzy
3731
  msgid "Top Pages Not Found"
3732
  msgstr "Principales Páginas de Salida"
3733
 
3734
+ #: ../../admin/view/wp-slimstat-reports.php:100
3735
+ #, fuzzy
3736
+ msgid "Rcent Exit Pages"
3737
+ msgstr "Páginas recientes de rebote"
3738
+
3739
+ #: ../../admin/view/wp-slimstat-reports.php:101
3740
  #, fuzzy
3741
  msgid "Top Authors"
3742
  msgstr "Autor de la entrada(sección)"
3743
 
3744
+ #: ../../admin/view/wp-slimstat-reports.php:102
3745
  #, fuzzy
3746
  msgid "Top Tags"
3747
  msgstr "Principales Páginas de Salida"
3748
 
3749
+ #: ../../admin/view/wp-slimstat-reports.php:103
3750
  msgid "Recent Downloads"
3751
  msgstr "Descargas Recientes"
3752
 
3753
+ #: ../../admin/view/wp-slimstat-reports.php:104
3754
  #, fuzzy
3755
  msgid "Top OutLinks and Downloads"
3756
  msgstr "Los mejores enlaces y descargas hacia afuera"
3757
 
3758
+ #: ../../admin/view/wp-slimstat-reports.php:105
3759
  msgid "Your Website"
3760
  msgstr "Su sitio web"
3761
 
3762
+ #: ../../admin/view/wp-slimstat-reports.php:106
3763
+ #, fuzzy
3764
+ msgid "Top Bounce Pages"
3765
+ msgstr "Porcentaje de Abandonos"
3766
+
3767
  #: ../../admin/view/wp-slimstat-reports.php:107
3768
+ #, fuzzy
3769
+ msgid "Top Exit Pages"
3770
+ msgstr "Principales Páginas de Salida"
3771
+
3772
+ #: ../../admin/view/wp-slimstat-reports.php:108
3773
+ #, fuzzy
3774
+ msgid "Top Entry Pages"
3775
+ msgstr "Principales Páginas de Salida"
3776
+
3777
+ #: ../../admin/view/wp-slimstat-reports.php:109
3778
  msgid "World Map"
3779
  msgstr "Mapa del Mundo"
3780
 
3781
+ #: ../../admin/view/wp-slimstat-reports.php:110
3782
  #, fuzzy
3783
  msgid "Activity"
3784
  msgstr "Bitácora de actividades"
3785
 
3786
+ #: ../../admin/view/wp-slimstat-reports.php:217
3787
  msgid "Chart controls"
3788
  msgstr "Controles de gráfica"
3789
 
3790
+ #: ../../admin/view/wp-slimstat-reports.php:217
3791
  msgid "Use your mouse wheel to zoom in and out"
3792
  msgstr "Use su ratón para acercarse y alejarse"
3793
 
3794
+ #: ../../admin/view/wp-slimstat-reports.php:217
3795
  msgid "While zooming in, drag the chart to move to a different area"
3796
  msgstr "Al acercarse, arrastre la gráfica para mverla a otra área"
3797
 
3798
+ #: ../../admin/view/wp-slimstat-reports.php:217
3799
  msgid "Double click on an empty region to reset the zoom level"
3800
  msgstr ""
3801
  "Haga doble clic en una región vacía para resetear el nivel de acercamiento"
3802
 
3803
+ #: ../../admin/view/wp-slimstat-reports.php:233
3804
  msgid "src"
3805
  msgstr "Src"
3806
 
3807
+ #: ../../admin/view/wp-slimstat-reports.php:236
3808
  msgid "serp"
3809
  msgstr "Serp"
3810
 
3811
+ #: ../../admin/view/wp-slimstat-reports.php:243
 
 
 
 
3812
  msgid "Go to the referring page"
3813
  msgstr "Vaya a la página de referencia"
3814
 
3815
+ #: ../../admin/view/wp-slimstat-reports.php:265
3816
  #, fuzzy
3817
  msgid "Remove filter for"
3818
  msgstr "Seleccionar filtro"
3819
 
3820
+ #: ../../admin/view/wp-slimstat-reports.php:269
3821
  msgid "Save"
3822
  msgstr ""
3823
 
3824
+ #: ../../admin/view/wp-slimstat-reports.php:272
3825
  msgid "Reset All"
3826
  msgstr "Resetear todos"
3827
 
3828
+ #: ../../admin/view/wp-slimstat-reports.php:276
3829
  msgid "Current filters:"
3830
  msgstr "Filtros Actuales:"
3831
 
3832
+ #: ../../admin/view/wp-slimstat-reports.php:280
3833
  msgid "Refresh"
3834
  msgstr "Refrescar"
3835
 
3836
+ #: ../../admin/view/wp-slimstat-reports.php:361
3837
  #, php-format
3838
  msgid "Results %s - %s of %s"
3839
  msgstr "Resultados %s - %s de %s"
3840
 
3841
+ #: ../../admin/view/wp-slimstat-reports.php:363
3842
  msgid "Refresh in"
3843
  msgstr "Refrescar en"
3844
 
3845
+ #: ../../admin/view/wp-slimstat-reports.php:385
3846
+ #: ../../admin/view/wp-slimstat-reports.php:397
3847
  #, fuzzy, php-format
3848
  msgid "Daily %s"
3849
  msgstr "Paginas visitadas"
3850
 
3851
+ #: ../../admin/view/wp-slimstat-reports.php:388
3852
  #, php-format
3853
  msgid "%s Minute by Minute"
3854
  msgstr "%s Minuto a Minuto"
3855
 
3856
+ #: ../../admin/view/wp-slimstat-reports.php:391
3857
  #, fuzzy, php-format
3858
  msgid "Hourly %s"
3859
  msgstr "Paginas visitadas"
3860
 
3861
+ #: ../../admin/view/wp-slimstat-reports.php:394
3862
  #, fuzzy, php-format
3863
  msgid "Monthly %s"
3864
  msgstr "Mes"
3865
 
3866
+ #: ../../admin/view/wp-slimstat-reports.php:506
3867
  #, fuzzy
3868
  msgid "Category ID"
3869
  msgstr "ID de la entrada(sección) de la Categoria"
3870
 
3871
+ #: ../../admin/view/wp-slimstat-reports.php:539
3872
  msgid "OS Code"
3873
  msgstr "Código OS"
3874
 
3875
+ #: ../../admin/view/wp-slimstat-reports.php:551
3876
  #, fuzzy
3877
  msgid "Referrer"
3878
  msgstr "Referido"
3879
 
3880
+ #: ../../admin/view/wp-slimstat-reports.php:578
3881
+ #: ../../admin/view/wp-slimstat-reports.php:887
3882
+ #: ../../admin/view/wp-slimstat-reports.php:896
3883
+ #: ../../admin/view/wp-slimstat-reports.php:902
3884
+ #: ../../admin/view/wp-slimstat-reports.php:908
3885
+ #: ../../admin/view/wp-slimstat-reports.php:914
3886
+ #: ../../admin/view/wp-slimstat-reports.php:920
3887
+ #: ../../admin/view/wp-slimstat-reports.php:926
3888
+ #: ../../admin/view/wp-slimstat-reports.php:932
3889
  #, fuzzy
3890
  msgid "Hits"
3891
  msgstr "Visitas"
3892
 
3893
+ #: ../../admin/view/wp-slimstat-reports.php:758
3894
  #, fuzzy
3895
  msgid "Search for"
3896
  msgstr "Sumario de"
3897
 
3898
+ #: ../../admin/view/wp-slimstat-reports.php:809
3899
+ #: ../../admin/view/wp-slimstat-reports.php:819
3900
  #, fuzzy
3901
  msgid "Source"
3902
  msgstr "Porcentaje de Abandonos"
3903
 
3904
+ #: ../../admin/view/wp-slimstat-reports.php:811
3905
  msgid "Keywords"
3906
  msgstr "Palabras clave"
3907
 
3908
+ #: ../../admin/view/wp-slimstat-reports.php:819
3909
  #, php-format
3910
  msgid "Filter results where resource equals %s"
3911
  msgstr "Filtrar resultados donde la fuente sea %s"
3912
 
3913
+ #: ../../admin/view/wp-slimstat-reports.php:820
3914
  #, fuzzy
3915
  msgid "Link Details"
3916
  msgstr "Expandir Detalles"
3917
 
3918
+ #: ../../admin/view/wp-slimstat-reports.php:833
3919
  #, fuzzy
3920
  msgid "Total Pageviews"
3921
  msgstr "Paginas visitadas"
3922
 
3923
+ #: ../../admin/view/wp-slimstat-reports.php:834
3924
  #, fuzzy
3925
  msgid "DB Size"
3926
  msgstr "Tamaño de los Datos"
3927
 
3928
+ #: ../../admin/view/wp-slimstat-reports.php:835
3929
  msgid "Tracking Active"
3930
  msgstr "Seguimiento Activo"
3931
 
3932
+ #: ../../admin/view/wp-slimstat-reports.php:836
3933
  msgid "Javascript Mode"
3934
  msgstr "Modo Javascript"
3935
 
3936
+ #: ../../admin/view/wp-slimstat-reports.php:837
3937
  msgid "Tracking Browser Caps"
3938
  msgstr "Caps para rastreo de Navegador"
3939
 
3940
+ #: ../../admin/view/wp-slimstat-reports.php:838
3941
  msgid "Auto purge"
3942
  msgstr "Autopurgar"
3943
 
3944
+ #: ../../admin/view/wp-slimstat-reports.php:838
3945
+ #: ../../admin/wp-slimstat-admin.php:994
3946
  msgid "No"
3947
  msgstr "No"
3948
 
3949
+ #: ../../admin/view/wp-slimstat-reports.php:839
3950
  #, fuzzy
3951
  msgid "Oldest pageview"
3952
  msgstr "Visita más larga"
3953
 
3954
+ #: ../../admin/view/wp-slimstat-reports.php:839
3955
  #, fuzzy
3956
  msgid "No visits"
3957
  msgstr "Visitantes"
3958
 
3959
+ #: ../../admin/view/wp-slimstat-reports.php:849
3960
+ #: ../../admin/view/wp-slimstat-reports.php:951
3961
  #, fuzzy
3962
  msgid ""
3963
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
3966
  "Una petición para cargar un archivo HTML único. WP SlimStat registra un "
3967
  "\"pageview\" cada vez que se ejecuta el código de rastreo."
3968
 
3969
+ #: ../../admin/view/wp-slimstat-reports.php:851
3970
  msgid "How many pages have been visited on average during the current period."
3971
  msgstr "Cuántas páginas se han visitado en promedio durante el período actual."
3972
 
3973
+ #: ../../admin/view/wp-slimstat-reports.php:852
3974
  #, fuzzy
3975
  msgid "Average Pageviews"
3976
  msgstr "Promedio Paginas Visitadas"
3977
 
3978
+ #: ../../admin/view/wp-slimstat-reports.php:853
3979
  msgid ""
3980
  "Visitors who landed on your site after searching for a keyword on Google, "
3981
  "Yahoo, etc."
3983
  "Visitantes que han llegado a su sitio después de buscar una palabra clave en "
3984
  "Google, yahoo, etc."
3985
 
3986
+ #: ../../admin/view/wp-slimstat-reports.php:854
3987
  #, fuzzy
3988
  msgid "From Search Results"
3989
  msgstr "Principales Recursos"
3990
 
3991
+ #: ../../admin/view/wp-slimstat-reports.php:855
3992
  msgid ""
3993
  "Used to differentiate between multiple requests to download a file from one "
3994
  "internet address (IP) and requests originating from many distinct addresses"
3997
  "desde una dirección de internet (IP) y peticiones que se originan en muchas "
3998
  "diferentes direcciones"
3999
 
4000
+ #: ../../admin/view/wp-slimstat-reports.php:857
 
 
 
 
 
 
 
 
4001
  msgid "Last 5 minutes"
4002
  msgstr "Últimos 5 minutos"
4003
 
4004
+ #: ../../admin/view/wp-slimstat-reports.php:858
4005
  msgid "Last 30 minutes"
4006
  msgstr "Últimos 30 minutos"
4007
 
4008
+ #: ../../admin/view/wp-slimstat-reports.php:868
4009
  msgid ""
4010
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
4011
  "multiple times if they perform multiple visits."
4013
  "Una visita es una sesión de cuando mucho 30 minutos.Los visitantes de "
4014
  "regreso se cuentan múltiples veces si llevan a cabo múltiples visitas."
4015
 
4016
+ #: ../../admin/view/wp-slimstat-reports.php:869
4017
+ #: ../../admin/view/wp-slimstat-reports.php:1179
4018
+ msgid "Visits"
4019
+ msgstr "Visitas"
4020
 
4021
+ #: ../../admin/view/wp-slimstat-reports.php:870
4022
  msgid "It includes only traffic generated by human visitors."
4023
  msgstr "Incluye sólo tráfico generado por visitantes humanos."
4024
 
4025
+ #: ../../admin/view/wp-slimstat-reports.php:872
4026
+ #: ../../admin/view/wp-slimstat-reports.php:963
4027
  msgid ""
4028
  "Percentage of single-page visits, i.e. visits in which the person left your "
4029
  "site from the entrance page."
4031
  "Porcentaje de visitas de una página, p. ej. visitas en las cuales la persona "
4032
  "dejó su sitio desde la página de entrada."
4033
 
4034
+ #: ../../admin/view/wp-slimstat-reports.php:873
4035
  msgid "Bounce rate"
4036
  msgstr "Porcentaje de Abandonos"
4037
 
4038
+ #: ../../admin/view/wp-slimstat-reports.php:874
4039
  msgid "Visitors who had previously left a comment on your blog."
4040
  msgstr "Visitantes que han dejado un comentario en su blog previamente."
4041
 
4042
+ #: ../../admin/view/wp-slimstat-reports.php:875
4043
  #, fuzzy
4044
  msgid "Known visitors"
4045
  msgstr "Palabras clave recientes"
4046
 
4047
+ #: ../../admin/view/wp-slimstat-reports.php:876
4048
  msgid "Human users who visited your site only once."
4049
  msgstr "Visitantes humanos que visitaron su sitio sólo una vez."
4050
 
4051
+ #: ../../admin/view/wp-slimstat-reports.php:877
4052
  #, fuzzy
4053
  msgid "New visitors"
4054
  msgstr "Visitantes"
4055
 
4056
+ #: ../../admin/view/wp-slimstat-reports.php:878
4057
  msgid "Bots"
4058
  msgstr "Motores de Búsqueda"
4059
 
4060
+ #: ../../admin/view/wp-slimstat-reports.php:879
4061
  msgid "Pages per visit"
4062
  msgstr "Páginas por visita"
4063
 
4064
+ #: ../../admin/view/wp-slimstat-reports.php:880
 
4065
  msgid "Longest visit"
4066
  msgstr "Visita más larga"
4067
 
4068
+ #: ../../admin/view/wp-slimstat-reports.php:880
4069
  #, fuzzy
4070
  msgid "hits"
4071
  msgstr "Visitas"
4072
 
4073
+ #: ../../admin/view/wp-slimstat-reports.php:898
4074
  msgid "0 - 30 seconds"
4075
  msgstr "0 - 30 segundos"
4076
 
4077
+ #: ../../admin/view/wp-slimstat-reports.php:904
4078
  msgid "31 - 60 seconds"
4079
  msgstr "31 - 60 segundos"
4080
 
4081
+ #: ../../admin/view/wp-slimstat-reports.php:910
4082
  msgid "1 - 3 minutes"
4083
  msgstr "1 - 3 minutos"
4084
 
4085
+ #: ../../admin/view/wp-slimstat-reports.php:916
4086
  msgid "3 - 5 minutes"
4087
  msgstr "3 - 5 minutos"
4088
 
4089
+ #: ../../admin/view/wp-slimstat-reports.php:922
4090
  msgid "5 - 7 minutes"
4091
  msgstr "5 - 7 minutos"
4092
 
4093
+ #: ../../admin/view/wp-slimstat-reports.php:928
4094
  msgid "7 - 10 minutes"
4095
  msgstr "7 - 10 minutos"
4096
 
4097
+ #: ../../admin/view/wp-slimstat-reports.php:934
4098
  msgid "More than 10 minutes"
4099
  msgstr "Más de 10 minutos"
4100
 
4101
+ #: ../../admin/view/wp-slimstat-reports.php:943
4102
  #, fuzzy
4103
  msgid "Average time on site"
4104
  msgstr "Promedio de páginas vistas por horas"
4105
 
4106
+ #: ../../admin/view/wp-slimstat-reports.php:953
4107
  msgid ""
4108
  "A referrer (or referring site) is the site that a visitor previously visited "
4109
  "before following a link to your site."
4111
  "Un sitio referente (o que refiere) es el sitio al cual el visitante tuvo "
4112
  "acceso antes de seguir un enlace a su sitio."
4113
 
4114
+ #: ../../admin/view/wp-slimstat-reports.php:954
4115
  #, fuzzy
4116
  msgid "Unique Referrers"
4117
  msgstr "Referidos Únicos"
4118
 
4119
+ #: ../../admin/view/wp-slimstat-reports.php:955
4120
  msgid ""
4121
  "Visitors who visited the site by typing the URL directly into their browser. "
4122
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
4128
  "hicieron clic en sus favoritos, usaron etiquetas de enlaces en emails, o "
4129
  "enlaces de documentos que no incluyen variables de rastreo."
4130
 
4131
+ #: ../../admin/view/wp-slimstat-reports.php:956
4132
  #, fuzzy
4133
  msgid "Direct Pageviews"
4134
  msgstr "Paginas visitadas"
4135
 
4136
+ #: ../../admin/view/wp-slimstat-reports.php:957
4137
  msgid ""
4138
  "Visitors who came to your site via searches on Google or some other search "
4139
  "engine."
4141
  "Visitantes que llegaron a su sitio después de buscar una palabra clave en "
4142
  "Google, yahoo, etc."
4143
 
4144
+ #: ../../admin/view/wp-slimstat-reports.php:958
4145
  msgid "From a search result"
4146
  msgstr "Desde un resultado de búsqueda"
4147
 
4148
+ #: ../../admin/view/wp-slimstat-reports.php:959
4149
  msgid ""
4150
  "The first page that a user views during a session. This is also known as the "
4151
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
4157
  "Brooklyn,” y llegan a su página de inicio, se cuenta (para esa visita) como "
4158
  "página de entrada."
4159
 
4160
+ #: ../../admin/view/wp-slimstat-reports.php:960
4161
  #, fuzzy
4162
  msgid "Unique Landing Pages"
4163
  msgstr "IPs Unicas"
4164
 
4165
+ #: ../../admin/view/wp-slimstat-reports.php:961
4166
  msgid "Number of single-page visits to your site over the selected period."
4167
  msgstr "Número de visitas a una página en el período seleccionado."
4168
 
4169
+ #: ../../admin/view/wp-slimstat-reports.php:962
4170
  #, fuzzy
4171
  msgid "Bounce Pages"
4172
  msgstr "Porcentaje de Abandonos"
4173
 
4174
+ #: ../../admin/view/wp-slimstat-reports.php:964
4175
  #, fuzzy
4176
  msgid "New Visitors Rate"
4177
  msgstr "Visitantes"
4178
 
4179
+ #: ../../admin/view/wp-slimstat-reports.php:965
4180
  msgid ""
4181
  "Visitors who visited the site in the last 5 minutes coming from a search "
4182
  "engine."
4184
  "Visitantes que visitaron el sitio en los últimos 5 minutos y vienen de un "
4185
  "motor de búsqueda."
4186
 
4187
+ #: ../../admin/view/wp-slimstat-reports.php:966
4188
  #, fuzzy
4189
  msgid "Currently from search engines"
4190
  msgstr "Motores de Búsqueda"
4191
 
4192
+ #: ../../admin/view/wp-slimstat-reports.php:1034
4193
  msgid "Number of pages in your site included in Google's index."
4194
  msgstr "Número de páginas en su sitio incluidas en el índice de Google."
4195
 
4196
+ #: ../../admin/view/wp-slimstat-reports.php:1035
4197
  msgid "Google Index"
4198
  msgstr "Indice de Google"
4199
 
4200
+ #: ../../admin/view/wp-slimstat-reports.php:1036
4201
  msgid "Number of pages, according to Google, that link back to your site."
4202
  msgstr ""
4203
  "Número de páginas, de acuerdo a Google, que enlazan de regreso a su sitio."
4204
 
4205
+ #: ../../admin/view/wp-slimstat-reports.php:1037
4206
  msgid "Google Backlinks"
4207
  msgstr "Backlinks Google"
4208
 
4209
+ #: ../../admin/view/wp-slimstat-reports.php:1038
4210
  msgid ""
4211
  "How many times the Facebook Like button has been approximately clicked on "
4212
  "your site."
4214
  "Aproximadamente cuántas veces se ha hecho clic en el botón “Me Gusta” de "
4215
  "Facebook en su sitio."
4216
 
4217
+ #: ../../admin/view/wp-slimstat-reports.php:1039
4218
  msgid "Facebook Likes"
4219
  msgstr "Me Gusta de Facebook"
4220
 
4221
+ #: ../../admin/view/wp-slimstat-reports.php:1040
4222
  msgid ""
4223
  "How many times your site has been shared by someone on the social network."
4224
  msgstr ""
4225
  "Cuántas veces ha sido compartido su sitio con alguien en las redes sociales."
4226
 
4227
+ #: ../../admin/view/wp-slimstat-reports.php:1041
4228
  msgid "Facebook Shares"
4229
  msgstr "Compartidas en Facebook"
4230
 
4231
+ #: ../../admin/view/wp-slimstat-reports.php:1042
4232
  msgid "How many times links to your website have been clicked on Facebook."
4233
  msgstr "Cuántas veces se ha hecho clic en enlaces a su sitio en Facebook."
4234
 
4235
+ #: ../../admin/view/wp-slimstat-reports.php:1043
4236
  #, fuzzy
4237
  msgid "Facebook Clicks"
4238
  msgstr "Enlaces Salientes Recientes"
4239
 
4240
+ #: ../../admin/view/wp-slimstat-reports.php:1044
4241
  msgid ""
4242
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
4243
  "traffic data."
4245
  "Alexa es una compaañ+ía subsidiaria de Amazon.com que proporciona "
4246
  "información de tráfico de datos."
4247
 
4248
+ #: ../../admin/view/wp-slimstat-reports.php:1045
4249
  msgid "Alexa World Rank"
4250
  msgstr "Clasificación Mundial Alexa."
4251
 
4252
+ #: ../../admin/view/wp-slimstat-reports.php:1046
4253
  msgid "Alexa Country Rank"
4254
  msgstr "Clasificación por país Alexa"
4255
 
4256
+ #: ../../admin/view/wp-slimstat-reports.php:1047
4257
  msgid "Alexa Popularity"
4258
  msgstr "Popularidad Alexa"
4259
 
4260
  # Unknown
4261
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4262
  msgid "c-xx"
4263
  msgstr "Unknown"
4264
 
4265
  # Afghanistan
4266
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4267
  msgid "c-af"
4268
  msgstr "Afghanistan"
4269
 
4270
  # Åland Islands
4271
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4272
  msgid "c-ax"
4273
  msgstr "Åland Islands"
4274
 
4275
  # Albania
4276
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4277
  msgid "c-al"
4278
  msgstr "Albania"
4279
 
4280
  # Algeria
4281
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4282
  msgid "c-dz"
4283
  msgstr "Algeria"
4284
 
4285
  # Andorra
4286
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4287
  msgid "c-ad"
4288
  msgstr "Andorra"
4289
 
4290
  # Angola
4291
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4292
  msgid "c-ao"
4293
  msgstr "Angola"
4294
 
4295
  # Anguilla
4296
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4297
  msgid "c-ai"
4298
  msgstr "Anguilla"
4299
 
4300
  # Antigua and Barbuda
4301
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4302
  msgid "c-ag"
4303
  msgstr "Antigua and Barbuda"
4304
 
4305
  # Argentina
4306
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4307
  msgid "c-ar"
4308
  msgstr "Argentina"
4309
 
4310
  # Armenia
4311
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4312
  msgid "c-am"
4313
  msgstr "Armenia"
4314
 
4315
  # Aruba
4316
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4317
  msgid "c-aw"
4318
  msgstr "Aruba"
4319
 
4320
  # Australia
4321
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4322
  msgid "c-au"
4323
  msgstr "Australia"
4324
 
4325
  # Austria
4326
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4327
  msgid "c-at"
4328
  msgstr "Austria"
4329
 
4330
  # Azerbaijan
4331
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4332
  msgid "c-az"
4333
  msgstr "Azerbaijan"
4334
 
4335
  # Bahamas
4336
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4337
  msgid "c-bs"
4338
  msgstr "Bahamas"
4339
 
4340
  # Bahrain
4341
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4342
  msgid "c-bh"
4343
  msgstr "Bahrain"
4344
 
4345
  # Bangladesh
4346
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4347
  msgid "c-bd"
4348
  msgstr "Bangladesh"
4349
 
4350
  # Barbados
4351
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4352
  msgid "c-bb"
4353
  msgstr "Barbados"
4354
 
4355
  # Belarus
4356
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4357
  msgid "c-by"
4358
  msgstr "Belarus"
4359
 
4360
  # Belgium
4361
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4362
  msgid "c-be"
4363
  msgstr "Belgium"
4364
 
4365
  # Belize
4366
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4367
  msgid "c-bz"
4368
  msgstr "Belize"
4369
 
4370
  # Benin
4371
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4372
  msgid "c-bj"
4373
  msgstr "Benin"
4374
 
4375
  # Bermuda
4376
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4377
  msgid "c-bm"
4378
  msgstr "Bermuda"
4379
 
4380
  # Bhutan
4381
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4382
  msgid "c-bt"
4383
  msgstr "Bhutan"
4384
 
4385
  # Bolivia
4386
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4387
  msgid "c-bo"
4388
  msgstr "Bolivia"
4389
 
4390
  # Bosnia and Herzegovina
4391
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4392
  msgid "c-ba"
4393
  msgstr "Bosnia and Herzegovina"
4394
 
4395
  # Botswana
4396
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4397
  msgid "c-bw"
4398
  msgstr "Botswana"
4399
 
4400
  # Brazil
4401
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4402
  msgid "c-br"
4403
  msgstr "Brazil"
4404
 
4405
  # Brunei Darussalam
4406
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4407
  msgid "c-bn"
4408
  msgstr "Brunei Darussalam"
4409
 
4410
  # Bulgaria
4411
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4412
  msgid "c-bg"
4413
  msgstr "Bulgaria"
4414
 
4415
  # Burkina Faso
4416
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4417
  msgid "c-bf"
4418
  msgstr "Burkina Faso"
4419
 
4420
  # Burundi
4421
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4422
  msgid "c-bi"
4423
  msgstr "Burundi"
4424
 
4425
  # Cambodia
4426
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4427
  msgid "c-kh"
4428
  msgstr "Cambodia"
4429
 
4430
  # Cameroon
4431
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4432
  msgid "c-cm"
4433
  msgstr "Cameroon"
4434
 
4435
  # Canada
4436
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4437
  msgid "c-ca"
4438
  msgstr "Canada"
4439
 
4440
  # Cape Verde
4441
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4442
  msgid "c-cv"
4443
  msgstr "Cape Verde"
4444
 
4445
  # Cayman Islands
4446
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4447
  msgid "c-ky"
4448
  msgstr "Cayman Islands"
4449
 
4450
  # Central African Republic
4451
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4452
  msgid "c-cf"
4453
  msgstr "Central African Republic"
4454
 
4455
  # Chad
4456
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4457
  msgid "c-td"
4458
  msgstr "Chad"
4459
 
4460
  # Chile
4461
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4462
  msgid "c-cl"
4463
  msgstr "Chile"
4464
 
4465
  # China
4466
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4467
  msgid "c-cn"
4468
  msgstr "China"
4469
 
4470
  # Colombia
4471
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4472
  msgid "c-co"
4473
  msgstr "Colombia"
4474
 
4475
  # Comoros
4476
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4477
  msgid "c-km"
4478
  msgstr "Comoros"
4479
 
4480
  # Congo
4481
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4482
  msgid "c-cg"
4483
  msgstr "Congo"
4484
 
4485
  # The Democratic Republic of the Congo
4486
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4487
  msgid "c-cd"
4488
  msgstr "The Democratic Republic of the Congo"
4489
 
4490
  # Costa Rica
4491
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4492
  msgid "c-cr"
4493
  msgstr "Costa Rica"
4494
 
4495
  # Côte d'Ivoire
4496
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4497
  msgid "c-ci"
4498
  msgstr "Côte d'Ivoire"
4499
 
4500
  # Croatia
4501
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4502
  msgid "c-hr"
4503
  msgstr "Croatia"
4504
 
4505
  # Cuba
4506
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4507
  msgid "c-cu"
4508
  msgstr "Cuba"
4509
 
4510
  # Cyprus
4511
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4512
  msgid "c-cy"
4513
  msgstr "Cyprus"
4514
 
4515
  # Czech Republic
4516
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4517
  msgid "c-cz"
4518
  msgstr "Czech Republic"
4519
 
4520
  # Denmark
4521
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4522
  msgid "c-dk"
4523
  msgstr "Denmark"
4524
 
4525
  # Djibouti
4526
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4527
  msgid "c-dj"
4528
  msgstr "Djibouti"
4529
 
4530
  # Dominica
4531
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4532
  msgid "c-dm"
4533
  msgstr "Dominica"
4534
 
4535
  # Dominican Republic
4536
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4537
  msgid "c-do"
4538
  msgstr "Dominican Republic"
4539
 
4540
  # Ecuador
4541
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4542
  msgid "c-ec"
4543
  msgstr "Ecuador"
4544
 
4545
  # Egypt
4546
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4547
  msgid "c-eg"
4548
  msgstr "Egypt"
4549
 
4550
  # El Salvador
4551
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4552
  msgid "c-sv"
4553
  msgstr "El Salvador"
4554
 
4555
  # Equatorial Guinea
4556
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4557
  msgid "c-gq"
4558
  msgstr "Equatorial Guinea"
4559
 
4560
  # Eritrea
4561
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4562
  msgid "c-er"
4563
  msgstr "Eritrea"
4564
 
4565
  # Estonia
4566
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4567
  msgid "c-ee"
4568
  msgstr "Estonia"
4569
 
4570
  # Ethiopia
4571
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4572
  msgid "c-et"
4573
  msgstr "Ethiopia"
4574
 
4575
  # Faroe Islands
4576
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4577
  msgid "c-fo"
4578
  msgstr "Faroe Islands"
4579
 
4580
  # Falkland Islands (Malvinas)
4581
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4582
  msgid "c-fk"
4583
  msgstr "Falkland Islands (Malvinas)"
4584
 
4585
  # Fiji
4586
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4587
  msgid "c-fj"
4588
  msgstr "Fiji"
4589
 
4590
  # Finland
4591
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4592
  msgid "c-fi"
4593
  msgstr "Finland"
4594
 
4595
  # France
4596
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4597
  msgid "c-fr"
4598
  msgstr "France"
4599
 
4600
  # French Guiana
4601
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4602
  msgid "c-gf"
4603
  msgstr "French Guiana"
4604
 
4605
  # Gabon
4606
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4607
  msgid "c-ga"
4608
  msgstr "Gabon"
4609
 
4610
  # Gambia
4611
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4612
  msgid "c-gm"
4613
  msgstr "Gambia"
4614
 
4615
  # Georgia
4616
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4617
  msgid "c-ge"
4618
  msgstr "Georgia"
4619
 
4620
  # Germany
4621
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4622
  msgid "c-de"
4623
  msgstr "Germany"
4624
 
4625
  # Ghana
4626
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4627
  msgid "c-gh"
4628
  msgstr "Ghana"
4629
 
4630
  # Greece
4631
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4632
  msgid "c-gr"
4633
  msgstr "Greece"
4634
 
4635
  # Greenland
4636
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4637
  msgid "c-gl"
4638
  msgstr "Greenland"
4639
 
4640
  # Grenada
4641
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4642
  msgid "c-gd"
4643
  msgstr "Grenada"
4644
 
4645
  # Guadeloupe
4646
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4647
  msgid "c-gp"
4648
  msgstr "Guadeloupe"
4649
 
4650
  # Guatemala
4651
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4652
  msgid "c-gt"
4653
  msgstr "Guatemala"
4654
 
4655
  # Guinea
4656
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4657
  msgid "c-gn"
4658
  msgstr "Guinea"
4659
 
4660
  # Guinea-Bissau
4661
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4662
  msgid "c-gw"
4663
  msgstr "Guinea-Bissau"
4664
 
4665
  # Guyana
4666
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4667
  msgid "c-gy"
4668
  msgstr "Guyana"
4669
 
4670
  # Haiti
4671
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4672
  msgid "c-ht"
4673
  msgstr "Haiti"
4674
 
4675
  # Honduras
4676
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4677
  msgid "c-hn"
4678
  msgstr "Honduras"
4679
 
4680
  # Hong Kong
4681
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4682
  msgid "c-hk"
4683
  msgstr "Hong Kong"
4684
 
4685
  # Hungary
4686
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4687
  msgid "c-hu"
4688
  msgstr "Hungary"
4689
 
4690
  # Iceland
4691
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4692
  msgid "c-is"
4693
  msgstr "Iceland"
4694
 
4695
  # India
4696
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4697
  msgid "c-in"
4698
  msgstr "India"
4699
 
4700
  # Indonesia
4701
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4702
  msgid "c-id"
4703
  msgstr "Indonesia"
4704
 
4705
  # Islamic Republic of Iran
4706
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4707
  msgid "c-ir"
4708
  msgstr "Islamic Republic of Iran"
4709
 
4710
  # Iraq
4711
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4712
  msgid "c-iq"
4713
  msgstr "Iraq"
4714
 
4715
  # Ireland
4716
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4717
  msgid "c-ie"
4718
  msgstr "Ireland"
4719
 
4720
  # Israel
4721
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4722
  msgid "c-il"
4723
  msgstr "Israel"
4724
 
4725
  # Italy
4726
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4727
  msgid "c-it"
4728
  msgstr "Italy"
4729
 
4730
  # Jamaica
4731
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4732
  msgid "c-jm"
4733
  msgstr "Jamaica"
4734
 
4735
  # Japan
4736
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4737
  msgid "c-jp"
4738
  msgstr "Japan"
4739
 
4740
  # Jordan
4741
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4742
  msgid "c-jo"
4743
  msgstr "Jordan"
4744
 
4745
  # Kazakhstan
4746
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4747
  msgid "c-kz"
4748
  msgstr "Kazakhstan"
4749
 
4750
  # Kenya
4751
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4752
  msgid "c-ke"
4753
  msgstr "Kenya"
4754
 
4755
  # Nauru
4756
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4757
  msgid "c-nr"
4758
  msgstr "Nauru"
4759
 
4760
  # Democratic People's Republic of Korea
4761
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4762
  msgid "c-kp"
4763
  msgstr "Democratic People's Republic of Korea"
4764
 
4765
  # Republic of Korea
4766
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4767
  msgid "c-kr"
4768
  msgstr "Republic of Korea"
4769
 
4770
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4771
  msgid "c-kv"
4772
  msgstr "c-kv"
4773
 
4774
  # Kuwait
4775
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4776
  msgid "c-kw"
4777
  msgstr "Kuwait"
4778
 
4779
  # Kyrgyzstan
4780
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4781
  msgid "c-kg"
4782
  msgstr "Kyrgyzstan"
4783
 
4784
  # Lao People's Democratic Republic
4785
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4786
  msgid "c-la"
4787
  msgstr "Lao People's Democratic Republic"
4788
 
4789
  # Latvia
4790
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4791
  msgid "c-lv"
4792
  msgstr "Latvia"
4793
 
4794
  # Lebanon
4795
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4796
  msgid "c-lb"
4797
  msgstr "Lebanon"
4798
 
4799
  # Lesotho
4800
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4801
  msgid "c-ls"
4802
  msgstr "Lesotho"
4803
 
4804
  # Liberia
4805
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4806
  msgid "c-lr"
4807
  msgstr "Liberia"
4808
 
4809
  # Libyan Arab Jamahiriya
4810
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4811
  msgid "c-ly"
4812
  msgstr "Libyan Arab Jamahiriya"
4813
 
4814
  # Liechtenstein
4815
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4816
  msgid "c-li"
4817
  msgstr "Liechtenstein"
4818
 
4819
  # Lithuania
4820
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4821
  msgid "c-lt"
4822
  msgstr "Lithuania"
4823
 
4824
  # Luxembourg
4825
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4826
  msgid "c-lu"
4827
  msgstr "Luxembourg"
4828
 
4829
  # The Former Yugoslav Republic of Macedonia
4830
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4831
  msgid "c-mk"
4832
  msgstr "The Former Yugoslav Republic of Macedonia"
4833
 
4834
  # Madagascar
4835
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4836
  msgid "c-mg"
4837
  msgstr "Madagascar"
4838
 
4839
  # Malawi
4840
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4841
  msgid "c-mw"
4842
  msgstr "Malawi"
4843
 
4844
  # Malaysia
4845
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4846
  msgid "c-my"
4847
  msgstr "Malaysia"
4848
 
4849
  # Mali
4850
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4851
  msgid "c-ml"
4852
  msgstr "Mali"
4853
 
4854
  # Malta
4855
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4856
  msgid "c-mt"
4857
  msgstr "Malta"
4858
 
4859
  # Martinique
4860
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4861
  msgid "c-mq"
4862
  msgstr "Martinique"
4863
 
4864
  # Mauritania
4865
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4866
  msgid "c-mr"
4867
  msgstr "Mauritania"
4868
 
4869
  # Mauritius
4870
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4871
  msgid "c-mu"
4872
  msgstr "Mauritius"
4873
 
4874
  # Mexico
4875
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4876
  msgid "c-mx"
4877
  msgstr "Mexico"
4878
 
4879
  # Moldova
4880
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4881
  msgid "c-md"
4882
  msgstr "Moldova"
4883
 
4884
  # Mongolia
4885
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4886
  msgid "c-mn"
4887
  msgstr "Mongolia"
4888
 
4889
  # Montenegro
4890
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4891
  msgid "c-me"
4892
  msgstr "Montenegro"
4893
 
4894
  # Montserrat
4895
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4896
  msgid "c-ms"
4897
  msgstr "Montserrat"
4898
 
4899
  # Morocco
4900
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4901
  msgid "c-ma"
4902
  msgstr "Morocco"
4903
 
4904
  # Mozambique
4905
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4906
  msgid "c-mz"
4907
  msgstr "Mozambique"
4908
 
4909
  # Myanmar
4910
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4911
  msgid "c-mm"
4912
  msgstr "Myanmar"
4913
 
4914
  # Namibia
4915
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4916
  msgid "c-na"
4917
  msgstr "Namibia"
4918
 
4919
  # Nepal
4920
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4921
  msgid "c-np"
4922
  msgstr "Nepal"
4923
 
4924
  # Netherlands
4925
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4926
  msgid "c-nl"
4927
  msgstr "Netherlands"
4928
 
4929
  # New Caledonia
4930
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4931
  msgid "c-nc"
4932
  msgstr "New Caledonia"
4933
 
4934
  # New Zealand
4935
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4936
  msgid "c-nz"
4937
  msgstr "New Zealand"
4938
 
4939
  # Nicaragua
4940
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4941
  msgid "c-ni"
4942
  msgstr "Nicaragua"
4943
 
4944
  # Niger
4945
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4946
  msgid "c-ne"
4947
  msgstr "Niger"
4948
 
4949
  # Nigeria
4950
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4951
  msgid "c-ng"
4952
  msgstr "Nigeria"
4953
 
4954
  # Norway
4955
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4956
  msgid "c-no"
4957
  msgstr "Norway"
4958
 
4959
  # Oman
4960
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4961
  msgid "c-om"
4962
  msgstr "Oman"
4963
 
4964
  # Pakistan
4965
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4966
  msgid "c-pk"
4967
  msgstr "Pakistan"
4968
 
4969
  # Palau
4970
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4971
  msgid "c-pw"
4972
  msgstr "Palau"
4973
 
4974
  # Occupied Palestinian Territory
4975
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4976
  msgid "c-ps"
4977
  msgstr "Occupied Palestinian Territory"
4978
 
4979
  # Panama
4980
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4981
  msgid "c-pa"
4982
  msgstr "Panama"
4983
 
4984
  # Papua New Guinea
4985
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4986
  msgid "c-pg"
4987
  msgstr "Papua New Guinea"
4988
 
4989
  # Paraguay
4990
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4991
  msgid "c-py"
4992
  msgstr "Paraguay"
4993
 
4994
  # Peru
4995
+ #: ../../admin/view/wp-slimstat-reports.php:1054
4996
  msgid "c-pe"
4997
  msgstr "Peru"
4998
 
4999
  # Philippines
5000
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5001
  msgid "c-ph"
5002
  msgstr "Philippines"
5003
 
5004
  # Poland
5005
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5006
  msgid "c-pl"
5007
  msgstr "Poland"
5008
 
5009
  # Portugal
5010
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5011
  msgid "c-pt"
5012
  msgstr "Portugal"
5013
 
5014
  # Puerto Rico
5015
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5016
  msgid "c-pr"
5017
  msgstr "Puerto Rico"
5018
 
5019
  # Qatar
5020
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5021
  msgid "c-qa"
5022
  msgstr "Qatar"
5023
 
5024
  # Réunion
5025
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5026
  msgid "c-re"
5027
  msgstr "Réunion"
5028
 
5029
  # Romania
5030
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5031
  msgid "c-ro"
5032
  msgstr "Romania"
5033
 
5034
  # Russian Federation
5035
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5036
  msgid "c-ru"
5037
  msgstr "Russian Federation"
5038
 
5039
  # Rwanda
5040
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5041
  msgid "c-rw"
5042
  msgstr "Rwanda"
5043
 
5044
  # Saint Kitts and Nevis
5045
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5046
  msgid "c-kn"
5047
  msgstr "Saint Kitts and Nevis"
5048
 
5049
  # Saint Lucia
5050
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5051
  msgid "c-lc"
5052
  msgstr "Saint Lucia"
5053
 
5054
  # Saint Martin
5055
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5056
  msgid "c-mf"
5057
  msgstr "Saint Martin"
5058
 
5059
  # Saint Vincent and the Grenadines
5060
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5061
  msgid "c-vc"
5062
  msgstr "Saint Vincent and the Grenadines"
5063
 
5064
  # Samoa
5065
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5066
  msgid "c-ws"
5067
  msgstr "Samoa"
5068
 
5069
  # Sao Tome and Principe
5070
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5071
  msgid "c-st"
5072
  msgstr "Sao Tome and Principe"
5073
 
5074
  # Saudi Arabia
5075
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5076
  msgid "c-sa"
5077
  msgstr "Saudi Arabia"
5078
 
5079
  # Senegal
5080
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5081
  msgid "c-sn"
5082
  msgstr "Senegal"
5083
 
5084
  # Serbia
5085
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5086
  msgid "c-rs"
5087
  msgstr "Serbia"
5088
 
5089
  # Sierra Leone
5090
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5091
  msgid "c-sl"
5092
  msgstr "Sierra Leone"
5093
 
5094
  # Singapore
5095
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5096
  msgid "c-sg"
5097
  msgstr "Singapore"
5098
 
5099
  # Slovakia
5100
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5101
  msgid "c-sk"
5102
  msgstr "Slovakia"
5103
 
5104
  # Slovenia
5105
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5106
  msgid "c-si"
5107
  msgstr "Slovenia"
5108
 
5109
  # Solomon Islands
5110
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5111
  msgid "c-sb"
5112
  msgstr "Solomon Islands"
5113
 
5114
  # Somalia
5115
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5116
  msgid "c-so"
5117
  msgstr "Somalia"
5118
 
5119
  # South Africa
5120
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5121
  msgid "c-za"
5122
  msgstr "South Africa"
5123
 
5124
  # South Georgia and the South Sandwich Islands
5125
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5126
  msgid "c-gs"
5127
  msgstr "South Georgia and the South Sandwich Islands"
5128
 
5129
  # Spain
5130
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5131
  msgid "c-es"
5132
  msgstr "Spain"
5133
 
5134
  # Sri Lanka
5135
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5136
  msgid "c-lk"
5137
  msgstr "Sri Lanka"
5138
 
5139
  # Seychelles
5140
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5141
  msgid "c-sc"
5142
  msgstr "Seychelles"
5143
 
5144
  # Sudan
5145
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5146
  msgid "c-sd"
5147
  msgstr "Sudan"
5148
 
5149
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5150
  msgid "c-ss"
5151
  msgstr "c-ss"
5152
 
5153
  # Suriname
5154
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5155
  msgid "c-sr"
5156
  msgstr "Suriname"
5157
 
5158
  # Svalbard and Jan Mayen
5159
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5160
  msgid "c-sj"
5161
  msgstr "Svalbard and Jan Mayen"
5162
 
5163
  # Swaziland
5164
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5165
  msgid "c-sz"
5166
  msgstr "Swaziland"
5167
 
5168
  # Sweden
5169
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5170
  msgid "c-se"
5171
  msgstr "Sweden"
5172
 
5173
  # Switzerland
5174
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5175
  msgid "c-ch"
5176
  msgstr "Switzerland"
5177
 
5178
  # Syrian Arab Republic
5179
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5180
  msgid "c-sy"
5181
  msgstr "Syrian Arab Republic"
5182
 
5183
  # Taiwan, Province of China
5184
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5185
  msgid "c-tw"
5186
  msgstr "Taiwan, Province of China"
5187
 
5188
  # Tajikistan
5189
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5190
  msgid "c-tj"
5191
  msgstr "Tajikistan"
5192
 
5193
  # United Republic of Tanzania
5194
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5195
  msgid "c-tz"
5196
  msgstr "United Republic of Tanzania"
5197
 
5198
  # Thailand
5199
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5200
  msgid "c-th"
5201
  msgstr "Thailand"
5202
 
5203
  # Timor-Leste
5204
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5205
  msgid "c-tl"
5206
  msgstr "Timor-Leste"
5207
 
5208
  # Togo
5209
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5210
  msgid "c-tg"
5211
  msgstr "Togo"
5212
 
5213
  # Tonga
5214
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5215
  msgid "c-to"
5216
  msgstr "Tonga"
5217
 
5218
  # Trinidad and Tobago
5219
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5220
  msgid "c-tt"
5221
  msgstr "Trinidad and Tobago"
5222
 
5223
  # Tunisia
5224
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5225
  msgid "c-tn"
5226
  msgstr "Tunisia"
5227
 
5228
  # Turkey
5229
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5230
  msgid "c-tr"
5231
  msgstr "Turkey"
5232
 
5233
  # Turkmenistan
5234
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5235
  msgid "c-tm"
5236
  msgstr "Turkmenistan"
5237
 
5238
  # Turks and Caicos Islands
5239
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5240
  msgid "c-tc"
5241
  msgstr "Turks and Caicos Islands"
5242
 
5243
  # Uganda
5244
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5245
  msgid "c-ug"
5246
  msgstr "Uganda"
5247
 
5248
  # Ukraine
5249
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5250
  msgid "c-ua"
5251
  msgstr "Ukraine"
5252
 
5253
  # United Arab Emirates
5254
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5255
  msgid "c-ae"
5256
  msgstr "United Arab Emirates"
5257
 
5258
  # United Kingdom
5259
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5260
  msgid "c-gb"
5261
  msgstr "United Kingdom"
5262
 
5263
  # United States
5264
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5265
  msgid "c-us"
5266
  msgstr "United States"
5267
 
5268
  # Uruguay
5269
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5270
  msgid "c-uy"
5271
  msgstr "Uruguay"
5272
 
5273
  # Uzbekistan
5274
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5275
  msgid "c-uz"
5276
  msgstr "Uzbekistan"
5277
 
5278
  # Vanuatu
5279
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5280
  msgid "c-vu"
5281
  msgstr "Vanuatu"
5282
 
5283
  # Venezuela
5284
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5285
  msgid "c-ve"
5286
  msgstr "Venezuela"
5287
 
5288
  # Viet Nam
5289
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5290
  msgid "c-vn"
5291
  msgstr "Viet Nam"
5292
 
5293
  # British Virgin Islands
5294
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5295
  msgid "c-vg"
5296
  msgstr "British Virgin Islands"
5297
 
5298
  # U.S. Virgin Islands
5299
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5300
  msgid "c-vi"
5301
  msgstr "U.S. Virgin Islands"
5302
 
5303
  # Western Sahara
5304
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5305
  msgid "c-eh"
5306
  msgstr "Western Sahara"
5307
 
5308
  # Yemen
5309
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5310
  msgid "c-ye"
5311
  msgstr "Yemen"
5312
 
5313
  # Zambia
5314
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5315
  msgid "c-zm"
5316
  msgstr "Zambia"
5317
 
5318
  # Zimbabwe
5319
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5320
  msgid "c-zw"
5321
  msgstr "Zimbabwe"
5322
 
5323
  # Guernsey
5324
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5325
  msgid "c-gg"
5326
  msgstr "Guernsey"
5327
 
5328
  # Jersey
5329
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5330
  msgid "c-je"
5331
  msgstr "Jersey"
5332
 
5333
  # Isle of Man
5334
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5335
  msgid "c-im"
5336
  msgstr "Isle of Man"
5337
 
5338
  # Maldives
5339
+ #: ../../admin/view/wp-slimstat-reports.php:1054
5340
  msgid "c-mv"
5341
  msgstr "Maldives"
5342
 
5343
  # European Union
5344
+ #: ../../admin/view/wp-slimstat-reports.php:1055
5345
  msgid "c-eu"
5346
  msgstr "European Union"
5347
 
5348
+ #: ../../admin/view/wp-slimstat-reports.php:1144
5349
  msgid ""
5350
  "This value includes not only posts, but also custom post types, regardless "
5351
  "of their status"
5353
  "Este valor incluye no sólo publicaciones, sino también tipos de publicación "
5354
  "personalizados, sin importar su estado"
5355
 
5356
+ #: ../../admin/view/wp-slimstat-reports.php:1145
5357
  #, fuzzy
5358
  msgid "Content Items"
5359
  msgstr "Contenido"
5360
 
5361
+ #: ../../admin/view/wp-slimstat-reports.php:1146
5362
  #, fuzzy
5363
  msgid "Total Comments"
5364
  msgstr "Total de Accesos"
5365
 
5366
+ #: ../../admin/view/wp-slimstat-reports.php:1147
5367
  msgid "Pingbacks"
5368
  msgstr "Pingbacks"
5369
 
5370
+ #: ../../admin/view/wp-slimstat-reports.php:1148
5371
  msgid "Trackbacks"
5372
  msgstr "Trackbacks"
5373
 
5374
+ #: ../../admin/view/wp-slimstat-reports.php:1149
5375
  msgid "Avg Comments Per Post"
5376
  msgstr "Promedio de Comentarios por Publicación"
5377
 
5378
+ #: ../../admin/view/wp-slimstat-reports.php:1150
5379
  msgid "Avg Posts Per Day"
5380
  msgstr "Promedio de Publicaciones por Día"
5381
 
5382
+ #: ../../admin/view/wp-slimstat-reports.php:1151
5383
  msgid "Avg Server Latency"
5384
  msgstr ""
5385
 
5386
+ #: ../../admin/view/wp-slimstat-reports.php:1152
5387
  #, fuzzy
5388
  msgid "Avg Page Load Time"
5389
  msgstr "Promedio Paginas Visitadas"
5390
 
5391
+ #: ../../admin/view/wp-slimstat-reports.php:1183
 
 
 
 
5392
  msgid "Domains"
5393
  msgstr "Dominios"
5394
 
5395
+ #: ../../admin/wp-slimstat-admin.php:584 ../../admin/wp-slimstat-admin.php:595
5396
+ #: ../../admin/wp-slimstat-admin.php:597
 
 
 
 
5397
  #, fuzzy
5398
  msgid "SlimStat"
5399
  msgstr "Acerca de WP-SlimStat"
5400
 
5401
+ #: ../../admin/wp-slimstat-admin.php:679
5402
+ #, fuzzy
5403
+ msgid "Pageviews in the last "
5404
  msgstr "Visitas a la página en los últimos 365 días"
5405
 
5406
+ #: ../../admin/wp-slimstat-admin.php:682
5407
+ #, fuzzy
5408
+ msgid "Unique IPs in the last "
5409
+ msgstr "Únicamente interno"
5410
+
5411
+ #: ../../admin/wp-slimstat-admin.php:721
5412
  msgid "Show on screen"
5413
  msgstr "Mostrar en pantalla"
5414
 
5415
+ #: ../../admin/wp-slimstat-admin.php:799
 
 
 
 
5416
  msgid "Already saved"
5417
  msgstr ""
5418
 
5419
+ #: ../../admin/wp-slimstat-admin.php:807
5420
  msgid "Saved"
5421
  msgstr ""
5422
 
5423
+ #: ../../admin/wp-slimstat-admin.php:826
5424
  #, fuzzy
5425
  msgid "Delete this filter"
5426
  msgstr "Filtrar páginas visitadas dondé:"
5427
 
5428
+ #: ../../admin/wp-slimstat-admin.php:870
5429
  msgid "There was an error updating the following options:"
5430
  msgstr "Hubo un error al actualizar las siguientes opciones:"
5431
 
5432
+ #: ../../admin/wp-slimstat-admin.php:873
5433
  #, fuzzy
5434
  msgid "Your changes have been saved."
5435
  msgstr "Sus ajustes se han actualizado correctamente."
5436
 
5437
+ #: ../../admin/wp-slimstat-admin.php:896
5438
  msgid "Save Changes"
5439
  msgstr "Guardar los cambios"
5440
 
5441
+ #: ../../admin/wp-slimstat-admin.php:912
5442
  msgid "Definitions"
5443
  msgstr "Definiciones"
5444
 
5445
+ #: ../../admin/wp-slimstat-admin.php:915
5446
  #, fuzzy
5447
  msgid "Pageview"
5448
  msgstr "Paginas visitadas"
5449
 
5450
+ #: ../../admin/wp-slimstat-admin.php:915
5451
  #, fuzzy
5452
  msgid ""
5453
  "A request to load a single HTML file (\"page\"). This should be contrasted "
5459
  "archivo desde un servidor web. WP SLIMStat registra una visita de página "
5460
  "cada vez que el código de seguimiento se ejecuta"
5461
 
5462
+ #: ../../admin/wp-slimstat-admin.php:916
5463
  #, fuzzy
5464
  msgid "(Human) Visit"
5465
  msgstr "Visitas humanas"
5466
 
5467
+ #: ../../admin/wp-slimstat-admin.php:916
5468
  msgid ""
5469
  "A period of interaction between a visitor's browser and your website, ending "
5470
  "when the browser is closed or when the user has been inactive on that site "
5474
  "termina cuando se cierra el navegador o cuando el usuario ha estado inactivo "
5475
  "en ese sitio durante 30 minutos"
5476
 
5477
+ #: ../../admin/wp-slimstat-admin.php:917
5478
  msgid ""
5479
  "Any user who has left a comment on your blog, and is thus identified by "
5480
  "Wordpress as a returning visitor"
5482
  "Todo usuario que haya dejado un comentario en su blog, por lo que es "
5483
  "identificado por Wordpress como un visitante que regresó"
5484
 
5485
+ #: ../../admin/wp-slimstat-admin.php:918
5486
  #, fuzzy
5487
  msgid "Unique IP"
5488
  msgstr "IPs Unicas"
5489
 
5490
+ #: ../../admin/wp-slimstat-admin.php:918
5491
  msgid ""
5492
  "Used to differentiate between multiple requests to download a file from one "
5493
  "internet address (IP) and requests originating from many distinct addresses; "
5500
  "dirección de Internet de donde vino una visita de página, es útil, pero no "
5501
  "es perfecta"
5502
 
5503
+ #: ../../admin/wp-slimstat-admin.php:919
5504
  msgid ""
5505
  "the originating IP address of a client connecting to a web server through an "
5506
  "HTTP proxy or load balancer"
5508
  "dirección IP de origen de un cliente que se conecta a un servidor web a "
5509
  "través de un proxy HTTP o equilibrador de carga"
5510
 
5511
+ #: ../../admin/wp-slimstat-admin.php:920
5512
  #, fuzzy
5513
  msgid "Direct Traffic"
5514
  msgstr "Visita Directa"
5515
 
5516
+ #: ../../admin/wp-slimstat-admin.php:920
5517
  msgid ""
5518
  "All those people showing up to your Web site by typing in the URL of your "
5519
  "Web site coming or from a bookmark; some people also call this \"default "
5523
  "URL de su sitio web o que vienen de un favorito, algunas personas también "
5524
  "llaman a esto \"tráfico por defecto\" o \"tráfico ambiente\""
5525
 
5526
+ #: ../../admin/wp-slimstat-admin.php:921
5527
  #, fuzzy
5528
  msgid "Search Engine"
5529
  msgstr "Motores de Búsqueda"
5530
 
5531
+ #: ../../admin/wp-slimstat-admin.php:921
5532
  msgid ""
5533
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
5534
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
5536
  "Google, Yahoo, MSN, Ask, otros; este cubo incluirá tanto su tráfico "
5537
  "orgánico, así como por pago (PPC / SEM), así que tenga cuidado de que"
5538
 
5539
+ #: ../../admin/wp-slimstat-admin.php:922 ../../admin/wp-slimstat-admin.php:938
5540
  msgid "Keywords used by your visitors to find your website on a search engine"
5541
  msgstr ""
5542
  "Las palabras clave utilizadas por los visitantes para encontrar su sitio web "
5543
  "en un buscador"
5544
 
5545
+ #: ../../admin/wp-slimstat-admin.php:923
5546
  msgid "SERP"
5547
  msgstr "SERP"
5548
 
5549
+ #: ../../admin/wp-slimstat-admin.php:923
5550
  msgid ""
5551
  "Short for search engine results page, the Web page that a search engine "
5552
  "returns with the results of its search. The value shown represents your rank "
5557
  "que se muestra representa su rango (o posición) dentro de esa lista de los "
5558
  "resultados"
5559
 
5560
+ #: ../../admin/wp-slimstat-admin.php:924
5561
  msgid ""
5562
  "Any program used for accessing a website; this includes browsers, robots, "
5563
  "spiders and any other program that was used to retrieve information from the "
5567
  "navegadores, robots, arañas y cualquier otro programa que se utiliza para "
5568
  "recuperar información del sitio"
5569
 
5570
+ #: ../../admin/wp-slimstat-admin.php:925
5571
  msgid ""
5572
  "A link from one domain to another is said to be outbound from its source "
5573
  "anchor and inbound to its target. This report lists all the links to other "
5577
  "de anclaje y de entrada a su objetivo. Este informe muestra todos los "
5578
  "enlaces a otros sitios web, seguidos por sus visitantes."
5579
 
5580
+ #: ../../admin/wp-slimstat-admin.php:932
5581
  msgid "Basic Filters"
5582
  msgstr "Filtros básicos"
5583
 
5584
+ #: ../../admin/wp-slimstat-admin.php:935
5585
  msgid "User agent (Firefox, Chrome, ...)"
5586
  msgstr "Agente usuario(Firefox, Chrome, ...)"
5587
 
5588
+ #: ../../admin/wp-slimstat-admin.php:936
5589
  msgid "2-letter code (us, ru, de, it, ...)"
5590
  msgstr "código de 2 letras (eu, ru, de, it, ...)"
5591
 
5592
+ #: ../../admin/wp-slimstat-admin.php:937
5593
  msgid "IP"
5594
  msgstr "IP"
5595
 
5596
+ #: ../../admin/wp-slimstat-admin.php:937
5597
  msgid "Visitor's public IP address"
5598
  msgstr "Dirección IP pública del visitante"
5599
 
5600
+ #: ../../admin/wp-slimstat-admin.php:939
5601
  msgid ""
5602
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
5603
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
5607
  "en-us/library/ee825488(v=cs.20).aspx\">págna de cultura del lenguaje</a> "
5608
  "(primera columna) para más información"
5609
 
5610
+ #: ../../admin/wp-slimstat-admin.php:940
5611
  msgid ""
5612
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
5613
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
5617
  "target=\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php"
5618
  "\">esta página del manual</a> para obtener más información"
5619
 
5620
+ #: ../../admin/wp-slimstat-admin.php:941
5621
  msgid "URL accessed on your site"
5622
  msgstr "URL visitada en su sitio"
5623
 
5624
+ #: ../../admin/wp-slimstat-admin.php:942
5625
  msgid "Complete address of the referrer page"
5626
  msgstr "Dirección completa de la página que refiere"
5627
 
5628
+ #: ../../admin/wp-slimstat-admin.php:943
5629
  msgid ""
5630
  "Visitors' names according to the cookie set by Wordpress after they leave a "
5631
  "comment"
5633
  "Nombres de visitantes según la cookie establecida por Wordpress después de "
5634
  "dejar un comentario"
5635
 
5636
+ #: ../../admin/wp-slimstat-admin.php:951
5637
  msgid "Advanced Filters"
5638
  msgstr "Filtros avanzados"
5639
 
5640
+ #: ../../admin/wp-slimstat-admin.php:954
5641
  msgid "user agent version (9.0, 11, ...)"
5642
  msgstr "versión del agente de usuario (9,0, 11, ...)"
5643
 
5644
+ #: ../../admin/wp-slimstat-admin.php:955
5645
  msgid ""
5646
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
5647
  "all others"
5649
  "1 = oruga del motor de búsqueda, 2 = dispositivo móvil, 3 = lector de "
5650
  "sindicación, 0 =a todos los demás"
5651
 
5652
+ #: ../../admin/wp-slimstat-admin.php:956
5653
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
5654
  msgstr "profundidad de colorde pantalla de visitante (8, 16, 24, ...)"
5655
 
5656
+ #: ../../admin/wp-slimstat-admin.php:957
5657
  msgid ""
5658
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
5659
  "values)"
5661
  "cuál estándar CSS era soportado por ese navegador (1, 2, 3 y otros valores "
5662
  "enteros)"
5663
 
5664
+ #: ../../admin/wp-slimstat-admin.php:958
5665
  msgid ""
5666
  "this field is set to <em>[pre]</em> if the resource has been accessed "
5667
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
5671
  "través de <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
5672
  "Link_prefetching_FAQ\">Preecaptura de Enlaces</a> o técnicas similares"
5673
 
5674
+ #: ../../admin/wp-slimstat-admin.php:959
5675
  msgid "author associated to that post/page when the resource was accessed"
5676
  msgstr "autor asociado a esa publicación/página cuando se accedió al recurso"
5677
 
5678
+ #: ../../admin/wp-slimstat-admin.php:960
5679
  msgid "ID of the category/term associated to the resource, when available"
5680
  msgstr ""
5681
  "ID de la categoría / término asociado al recurso, cuando esté disponible"
5682
 
5683
+ #: ../../admin/wp-slimstat-admin.php:961
5684
  msgid "visitor's originating IP address, if available"
5685
  msgstr "dirección IP de origen del visitante, si está disponible"
5686
 
5687
+ #: ../../admin/wp-slimstat-admin.php:962
5688
  msgid ""
5689
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
5690
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
5698
  "wordpress.org/Conditional_Tags\">Etiquetas condicionales</a> página del "
5699
  "manual para más información"
5700
 
5701
+ #: ../../admin/wp-slimstat-admin.php:963
5702
  msgid "viewport width and height (1024x768, 800x600, ...)"
5703
  msgstr "ancho de vista y altura (1024x768, 800x600 , ...)"
5704
 
5705
+ #: ../../admin/wp-slimstat-admin.php:964
5706
  msgid ""
5707
  "generally used in conjunction with <em>is not empty</em>, identifies human "
5708
  "visitors"
5710
  "se utiliza generalmente en conjunción con <em> no está vacío </em>, "
5711
  "identifica los visitantes humanos"
5712
 
5713
+ #: ../../admin/wp-slimstat-admin.php:965
5714
  msgid "Date Filters"
5715
  msgstr "Filtros de fecha"
5716
 
5717
+ #: ../../admin/wp-slimstat-admin.php:965
5718
  msgid ""
5719
  "you can specify the timeframe by entering a number in the <em>interval</em> "
5720
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
5725
  "(es decir, día=1, mes=1, año=blank, intervalo=-1 establecerá un filtro de "
5726
  "año a la fecha)"
5727
 
5728
+ #: ../../admin/wp-slimstat-admin.php:966
5729
  msgid "SERP Position"
5730
  msgstr "Posición SERP"
5731
 
5732
+ #: ../../admin/wp-slimstat-admin.php:966
5733
  msgid ""
5734
  "set the filter to Referer contains cd=N&, where N is the position you are "
5735
  "looking for"
5737
  "configurar el filtro para Referer contiene cd=N&, donde N es la posición que "
5738
  "usted está buscando"
5739
 
5740
+ #: ../../admin/wp-slimstat-admin.php:993
5741
  msgid "Yes"
5742
  msgstr "Si"
5743
 
5744
+ #: ../../admin/wp-slimstat-admin.php:995
5745
  msgid "Site Specific"
5746
  msgstr ""
5747
 
5748
+ #: ../../wp-slimstat.php:102
5749
+ msgid "Event must be associated to existing pageview"
5750
+ msgstr ""
5751
+
5752
+ #: ../../wp-slimstat.php:187 ../../wp-slimstat.php:422
5753
+ msgid "Pageview filtered by third-party code"
5754
+ msgstr ""
5755
 
5756
+ #: ../../wp-slimstat.php:204
5757
  #, fuzzy
5758
+ msgid "Malformed URL"
5759
+ msgstr "Navegadores recientes"
5760
+
5761
+ #: ../../wp-slimstat.php:220
5762
+ msgid "Referrer is blacklisted"
5763
+ msgstr ""
5764
+
5765
+ #: ../../wp-slimstat.php:276
5766
+ msgid "Permalink is blacklisted"
5767
+ msgstr ""
5768
+
5769
+ #: ../../wp-slimstat.php:286
5770
+ #, fuzzy
5771
+ msgid "Empty IP Address"
5772
+ msgstr "Dirección IP"
5773
+
5774
+ #: ../../wp-slimstat.php:295
5775
+ msgid "Logged in user not tracked"
5776
+ msgstr ""
5777
 
5778
+ #: ../../wp-slimstat.php:303
5779
+ msgid "User with given capability not tracked"
5780
+ msgstr ""
5781
+
5782
+ #: ../../wp-slimstat.php:310
5783
+ msgid "User is blacklisted"
5784
+ msgstr ""
5785
+
5786
+ #: ../../wp-slimstat.php:324
5787
+ msgid "Spammer not tracked"
5788
+ msgstr ""
5789
+
5790
+ #: ../../wp-slimstat.php:355
5791
+ msgid "IP Address is blacklisted"
5792
+ msgstr ""
5793
+
5794
+ #: ../../wp-slimstat.php:373
5795
+ msgid "Country is blacklisted"
5796
+ msgstr ""
5797
+
5798
+ #: ../../wp-slimstat.php:382
5799
+ #, fuzzy
5800
+ msgid "Prefetch requests are ignored"
5801
+ msgstr "Ignorar PPeticiones Prefetch"
5802
+
5803
+ #: ../../wp-slimstat.php:396
5804
+ #, fuzzy
5805
+ msgid "Bot not tracked"
5806
+ msgstr "Bot o Crawler"
5807
+
5808
+ #: ../../wp-slimstat.php:405
5809
+ #, fuzzy
5810
+ msgid "Browser is blacklisted"
5811
+ msgstr "Navegador"
5812
+
5813
+ #: ../../wp-slimstat.php:438
5814
+ #, fuzzy
5815
+ msgid "Database not ready"
5816
+ msgstr "Información Base de datos"
5817
+
5818
+ #: ../../wp-slimstat.php:1046
5819
+ msgid "Missing payload string"
5820
+ msgstr ""
5821
+
5822
+ #: ../../wp-slimstat.php:1056
5823
+ msgid "Invalid data signature (ci)"
5824
+ msgstr ""
5825
+
5826
+ #: ../../wp-slimstat.php:1066
5827
+ msgid "Invalid data signature (id)"
5828
+ msgstr ""
5829
+
5830
+ #: ../../wp-slimstat.php:1157
5831
+ #, fuzzy
5832
+ msgid "There was an error downloading the MaxMind Geolite DB:"
5833
+ msgstr "Hubo un error al actualizar las siguientes opciones:"
5834
+
5835
+ #: ../../wp-slimstat.php:1161
5836
+ #, fuzzy
5837
+ msgid "There was an error opening the zipped MaxMind Geolite DB"
5838
+ msgstr "Hubo un error al actualizar las siguientes opciones:"
5839
+
5840
+ #: ../../wp-slimstat.php:1165
5841
+ #, fuzzy
5842
+ msgid "There was an error opening the unzipped MaxMind Geolite DB"
5843
+ msgstr "Hubo un error al actualizar las siguientes opciones:"
5844
+
5845
+ #~ msgid "Views"
5846
+ #~ msgstr "Vistas"
5847
+
5848
+ #, fuzzy
5849
+ #~ msgid "Data and Formats"
5850
+ #~ msgstr "Fecha y hora"
5851
+
5852
+ #, fuzzy
5853
+ #~ msgid "Activity Log Extended"
5854
+ #~ msgstr "Bitácora de actividades"
5855
 
5856
+ #, fuzzy
5857
  #~ msgid ""
5858
+ #~ "Choose if you want to see outbound links listed in the Activity Log. It "
5859
+ #~ "might slow down the rendering of this report."
5860
  #~ msgstr ""
5861
+ #~ "Elige si quieres ver los enlaces salientes que figuran en Ahora. Podría "
5862
+ #~ "frenar la publicación de este informe."
5863
+
5864
+ #, fuzzy
5865
+ #~ msgid "Ignore Classes"
5866
+ #~ msgstr "Navegadores recientes"
5867
+
5868
+ #~ msgid "Performance"
5869
+ #~ msgstr "Rendimiento"
5870
+
5871
+ #, fuzzy
5872
+ #~ msgid "Open this outbound link in a new window"
5873
+ #~ msgstr "Abrir %s en una nueva ventana"
5874
+
5875
+ #, fuzzy
5876
+ #~ msgid "Top Landing Pages"
5877
+ #~ msgstr "Principales Páginas de Salida"
5878
+
5879
+ #, fuzzy
5880
+ #~ msgid "Average Pageviews per Visit (chart)"
5881
+ #~ msgstr "Promedio de páginas vistas por horas"
5882
+
5883
+ #~ msgid "Go to the corresponding search engine result page"
5884
+ #~ msgstr "Vaya a la página de resultados de motor de búsqueda correspondiente"
5885
+
5886
+ #~ msgid "Human visits"
5887
+ #~ msgstr "Visitas humanas"
5888
+
5889
+ #~ msgid "Avg Pageviews"
5890
+ #~ msgstr "Promedio Paginas Visitadas"
5891
+
5892
+ #~ msgid "Hide this notice"
5893
+ #~ msgstr "Esconder esta notificación"
5894
+
5895
+ #~ msgid "Empty Database"
5896
+ #~ msgstr "Base de datos vacía"
5897
 
5898
  #~ msgid "Visitors"
5899
  #~ msgstr "Visitantes"
5996
  #~ msgid "Google Safe Browsing List"
5997
  #~ msgstr "Lista de navegación segura Google"
5998
 
 
 
 
5999
  #~ msgid "Other Treats"
6000
  #~ msgstr "Otras amenazas"
6001
 
7607
  #~ msgid "Unique Pages Referred"
7608
  #~ msgstr "Únicamente Referidos desde páginas"
7609
 
 
 
 
7610
  #, fuzzy
7611
  #~ msgid "Sites"
7612
  #~ msgstr "Sitios para"
admin/lang/wp-slimstat-fa_IR.po CHANGED
@@ -1,5498 +1,5498 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP SlimStat\n"
4
- "POT-Creation-Date: 2014-12-12 10:24-0500\n"
5
- "PO-Revision-Date: \n"
6
- "Last-Translator: Get Used To IT <support@getused.to.it>\n"
7
- "Language-Team: Salman <salmanmp@gmail.com>\n"
8
- "Language: fa\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.9\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-SearchPath-0: ../..\n"
16
-
17
- #: ../../admin/config/addons.php:14
18
- msgid ""
19
- "There was an error retrieving the add-ons list from the server. Please try "
20
- "again later. Error Message:"
21
- msgstr ""
22
- " بازیابی فهرست افزونه ها از دامنه با اشکال مواجه شد. لطفا دوباره آزمایش "
23
- "کنید. شمار خطا: "
24
-
25
- #: ../../admin/config/addons.php:23
26
- msgid ""
27
- "There was an error decoding the add-ons list from the server. Please try "
28
- "again later."
29
- msgstr ""
30
- "رمزگشایی فهرست افزونه ها از دامنه با اشکال مواجه شد. لطفا دوباره آزمایش کنید."
31
-
32
- #: ../../admin/config/addons.php:29 ../../admin/config/index.php:9
33
- #: ../../admin/wp-slimstat-admin.php:512 ../../admin/wp-slimstat-admin.php:529
34
- #: ../../wp-slimstat.php:1351
35
- msgid "Add-ons"
36
- msgstr "افزونه ها"
37
-
38
- #: ../../admin/config/addons.php:30
39
- #, fuzzy
40
- msgid ""
41
- "Add-ons extend the functionality of Slimstat in many interesting ways. We "
42
- "offer both free and premium (paid) extensions. Each add-on can be installed "
43
- "as a separate plugin, which will receive regular updates via the WordPress "
44
- "Plugins panel. In order to be notified when a new version of a premium add-"
45
- "on is available, please enter the <strong>license key</strong> you received "
46
- "when you purchased it."
47
- msgstr ""
48
- "میتوانید با استفاده از افزونه ها کارکرد برنامه را گسترش دهید. افزونه های "
49
- "جذابی به صورت رایگان و پولی موجود است که هر یک به طور جداگانه قابل نصب و به "
50
- "روز رسانی میباشد. اگر دوست دارید است از نسخه جدید افزونه با خبر شوید لطفا "
51
- "شماره مجوز که در هنگام خرید دریافت کردید وارد کنید."
52
-
53
- #: ../../admin/config/addons.php:36
54
- msgid "Add-on"
55
- msgstr "افزونه"
56
-
57
- #: ../../admin/config/addons.php:36
58
- msgid "Description"
59
- msgstr "توضیحات"
60
-
61
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:18
62
- msgid "General"
63
- msgstr "عمومی"
64
-
65
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:45
66
- msgid "Views"
67
- msgstr "مشاهده ها"
68
-
69
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:69
70
- msgid "Filters"
71
- msgstr "فیلترها"
72
-
73
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:140
74
- msgid "Permissions"
75
- msgstr "مجوزها"
76
-
77
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:217
78
- msgid "Advanced"
79
- msgstr "پیش‌رفته"
80
-
81
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:249
82
- msgid "Maintenance"
83
- msgstr "نگهداری"
84
-
85
- #: ../../admin/config/index.php:14 ../../admin/config/index.php:147
86
- #: ../../admin/wp-slimstat-admin.php:558 ../../admin/wp-slimstat-admin.php:561
87
- #: ../../wp-slimstat.php:1354
88
- msgid "Settings"
89
- msgstr "تنظیمات"
90
-
91
- #: ../../admin/config/index.php:20 ../../admin/config/index.php:223
92
- msgid "Tracker"
93
- msgstr "ره‌گیری"
94
-
95
- #: ../../admin/config/index.php:21
96
- msgid "Enable Tracking"
97
- msgstr "فعال‌سازی رد‌گیری"
98
-
99
- #: ../../admin/config/index.php:21
100
- #, fuzzy
101
- msgid "Turn the tracker on or off, but keep the reports accessible."
102
- msgstr ""
103
- "رهگیری را روشن و یا خاموش میکند ولی گزارش ها در دسترس خواهد بود که در صورت "
104
- "غیر فعال کردن افزونه بدین گونه نخواهد بود."
105
-
106
- #: ../../admin/config/index.php:22
107
- msgid "Monitor Admin Pages"
108
- msgstr "نظارت صفحه مدیریت"
109
-
110
- #: ../../admin/config/index.php:22
111
- msgid "Enable this option to track your users' activity within the admin."
112
- msgstr "برای رهگیری کاربران در ناحیه مدیریتی ین گزینه را فعال کنید."
113
-
114
- #: ../../admin/config/index.php:23
115
- msgid "Enable Spy Mode"
116
- msgstr "فعال کردن دید دزدکی"
117
-
118
- #: ../../admin/config/index.php:23
119
- msgid ""
120
- "Collect information about screen resolutions, outbound links, downloads, "
121
- "etc. If Tracking Mode is set to Javascript, this data will be tracked "
122
- "regardless of which value you set for this option."
123
- msgstr ""
124
- "جمع آوری اطلاعات در مورد ابعاد صفحه بیننده، پیوند های بیرونی، بارگیری، و "
125
- "غیره. در صورت انتخاب حالت ردگیری به جاواسکریپت، این داده ها رهگیری میشود "
126
- "صرفنظر از مقداری که اینجا اختیار میکنید."
127
-
128
- #: ../../admin/config/index.php:24
129
- msgid "Tracking Mode"
130
- msgstr " حالت ردگیری"
131
-
132
- #: ../../admin/config/index.php:24
133
- #, fuzzy
134
- msgid ""
135
- "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
136
- "Total Cache, WP SuperCache, HyperCache, etc). Slimstat will behave pretty "
137
- "much like Google Analytics, and visitors whose browser does not support "
138
- "Javascript will be ignored. A nice side effect is that <strong>most "
139
- "spammers, search engines and other crawlers</strong> will not be tracked."
140
- msgstr ""
141
- "اگر از یک افزونه یادگاهی (W3 Total Cache ،WP SuperCache ،HyperCache و غیره) "
142
- "استفاده میکنید<strong>Javascript</strong> را انتخاب کنید. این برنامه بسیار "
143
- "شبیه Google Anaylyti عمل میکند و مرورگر بینندگانی که جاواسکریپت نداشته باشند "
144
- "پذیرفته نمیشود. اثر جانبی این حالت این است که بیشتر هرز ها، موتورهای جستجو و "
145
- "دیگر خزنده ها نیز دیگر رهگیری نمیشوند."
146
-
147
- #: ../../admin/config/index.php:24
148
- msgid "Javascript"
149
- msgstr "جاوااسکریپت"
150
-
151
- #: ../../admin/config/index.php:24
152
- msgid "Server-side"
153
- msgstr "طرف دامنه"
154
-
155
- #: ../../admin/config/index.php:26
156
- msgid "WordPress Integration"
157
- msgstr "تلفیق کردن وردپرس"
158
-
159
- #: ../../admin/config/index.php:27
160
- msgid "Menu Position"
161
- msgstr "محل گزینگان"
162
-
163
- #: ../../admin/config/index.php:27
164
- #, fuzzy
165
- msgid ""
166
- "Choose between a standalone admin menu for Slimstat or a drop down in the "
167
- "admin bar (if visible)."
168
- msgstr "بین گزینگان مدیریتی ثابت و یا گزینگان مدیریتی ابشاری انتخاب کنید."
169
-
170
- #: ../../admin/config/index.php:27
171
- msgid "Side Menu"
172
- msgstr "گزینگان کناره"
173
-
174
- #: ../../admin/config/index.php:27
175
- msgid "Admin Bar"
176
- msgstr " منوی مدیریت"
177
-
178
- #: ../../admin/config/index.php:28
179
- #, fuzzy
180
- msgid "Add Stats to Posts and Pages"
181
- msgstr "یک ستون به نوشته‌ها اضافه کن"
182
-
183
- #: ../../admin/config/index.php:28
184
- #, fuzzy
185
- msgid ""
186
- "Add a new column to the Edit Posts/Pages screens, with the number of hits "
187
- "per post."
188
- msgstr ""
189
- "یک ستون جدید به صفحه «ویرایش ارسال» اضافه می‌کند، که شامل تعداد بازدید برای "
190
- "هر ارسال میباشد (ممکن است مدت تحویل را زیاد کند)"
191
-
192
- #: ../../admin/config/index.php:30
193
- msgid "Database"
194
- msgstr "پایگاه داده"
195
-
196
- #: ../../admin/config/index.php:31
197
- #, fuzzy
198
- msgid "Delete records"
199
- msgstr "اطلاعات"
200
-
201
- #: ../../admin/config/index.php:31
202
- msgid ""
203
- "If database space is not an issue, you can decide to archive older records "
204
- "in another table, instead of deleting them. This way performance is "
205
- "preserved, but you will still be able to access your data at a later time, "
206
- "if needed."
207
- msgstr ""
208
-
209
- #: ../../admin/config/index.php:32
210
- msgid "Retain data for"
211
- msgstr "نگاه داشتن داده برای"
212
-
213
- #: ../../admin/config/index.php:32
214
- #, fuzzy
215
- msgid ""
216
- "Clean-up log entries older than the number of days specified here above. "
217
- "Enter <strong>0</strong> (number zero) if you want to preserve your data "
218
- "regardless of its age."
219
- msgstr ""
220
- "ورودی هایی که از تعداد روزها زیر بیشتر باشد حذف میشوند. صفر وارد کنید اگر "
221
- "مایل به حفظ داده ها صرفنظر از تاریخ آن هستید."
222
-
223
- #: ../../admin/config/index.php:32
224
- msgid "Next clean-up on"
225
- msgstr "تمیزکاری بعدی در"
226
-
227
- #: ../../admin/config/index.php:32
228
- #, php-format
229
- msgid "Entries logged on or before %s will be permanently deleted."
230
- msgstr "ردیف‌های مربوط به روز %s و قبل از آن حذف خواهند شد."
231
-
232
- #: ../../admin/config/index.php:32 ../../admin/view/index.php:100
233
- #: ../../admin/view/wp-slimstat-db.php:74
234
- #: ../../admin/view/wp-slimstat-reports.php:800
235
- msgid "days"
236
- msgstr "روز"
237
-
238
- #: ../../admin/config/index.php:47
239
- msgid "Data and Formats"
240
- msgstr "داده و نگارش ها"
241
-
242
- #: ../../admin/config/index.php:48
243
- msgid "Convert IP Addresses"
244
- msgstr "تبدیل نشانی آی‌پی"
245
-
246
- #: ../../admin/config/index.php:48
247
- msgid "Display provider names instead of IP addresses."
248
- msgstr "نمایش خدمات دهنده ها به جای ای پی"
249
-
250
- #: ../../admin/config/index.php:49
251
- msgid "Number Format"
252
- msgstr "نگارش اعداد"
253
-
254
- #: ../../admin/config/index.php:49
255
- #, fuzzy
256
- msgid "Choose the number format you want to use for your reports."
257
- msgstr ""
258
- "نگارش مناسب برای ملاحظه گزارش اعداد را نتخاب کنید، امریکایی یا اروپایی."
259
-
260
- #: ../../admin/config/index.php:50
261
- #, fuzzy
262
- msgid "Enable SOV"
263
- msgstr "فعال‌سازی CDN"
264
-
265
- #: ../../admin/config/index.php:50
266
- msgid ""
267
- "In linguistic typology, a subject-object-verb (SOV) language is one in which "
268
- "the subject, object, and verb of a sentence appear in that order, like in "
269
- "Japanese."
270
- msgstr ""
271
-
272
- #: ../../admin/config/index.php:51
273
- msgid "Show Display Name"
274
- msgstr "نمایش نام صفحه نمایش"
275
-
276
- #: ../../admin/config/index.php:51
277
- msgid ""
278
- "By default, users are listed by their usernames. Use this option to "
279
- "visualize their display names instead."
280
- msgstr ""
281
- "به طور پیش فرظ، کاربران با نام کاربری فهرست بندی میشوند. این گزینه کاربران "
282
- "را با نام فهرست بندی میکند."
283
-
284
- #: ../../admin/config/index.php:52
285
- msgid "Show User Agent"
286
- msgstr "نمایش عامل کاربر "
287
-
288
- #: ../../admin/config/index.php:52
289
- msgid ""
290
- "Choose if you want to see the browser name or a complete user agent string "
291
- "when hovering on browser icons."
292
- msgstr ""
293
- " این گزینه را انتخاب کنید اگر میخواهید اسم مرورگر یا نام کامل کاربر را با "
294
- "توقف اشاره گر بر روی نقشک ملاحظه کنید."
295
-
296
- #: ../../admin/config/index.php:53
297
- msgid "Show Titles"
298
- msgstr "نمایش عناوین"
299
-
300
- #: ../../admin/config/index.php:53
301
- #, fuzzy
302
- msgid ""
303
- "Slimstat converts your permalinks into post and page titles. Disable this "
304
- "feature if you need to see the URL in your reports."
305
- msgstr ""
306
- " تمامی پیوندهای یکتا را به ارسال و صفحه تبدیل میکند. این ویژگی را غیرفعال "
307
- "کنید اگر در گزارش به نشانی نیاز دارید"
308
-
309
- #: ../../admin/config/index.php:54
310
- #, fuzzy
311
- msgid "Date Format"
312
- msgstr "داده و نگارش ها"
313
-
314
- #: ../../admin/config/index.php:54
315
- msgid ""
316
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
317
- "Format</a> to use when displaying a pageview's date."
318
- msgstr ""
319
-
320
- #: ../../admin/config/index.php:55
321
- #, fuzzy
322
- msgid "Time Format"
323
- msgstr "نگارش اعداد"
324
-
325
- #: ../../admin/config/index.php:55
326
- msgid ""
327
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
328
- "Format</a> to use when displaying a pageview's time."
329
- msgstr ""
330
-
331
- #: ../../admin/config/index.php:57
332
- msgid "Functionality"
333
- msgstr "کاربردی"
334
-
335
- #: ../../admin/config/index.php:58
336
- msgid "Asynchronous Views"
337
- msgstr "دید غیرهم‌زمان(آسنکرون)"
338
-
339
- #: ../../admin/config/index.php:58
340
- msgid ""
341
- "Load all the reports dynamically. It makes the reports render faster, but it "
342
- "increases the load on your server."
343
- msgstr ""
344
- "بارگزاری همه گزارشها به صورت پویا که ارائه آن را تسریع میکند ولی فشار به "
345
- "دامنه را نیز افزایش میدهد. "
346
-
347
- #: ../../admin/config/index.php:59
348
- msgid "SlimScroll"
349
- msgstr ""
350
-
351
- #: ../../admin/config/index.php:59
352
- msgid ""
353
- "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
354
- "scrollbar."
355
- msgstr ""
356
-
357
- #: ../../admin/config/index.php:60
358
- msgid "Expand Details"
359
- msgstr "گسترش جزئیات"
360
-
361
- #: ../../admin/config/index.php:60
362
- msgid "Expand each row's details by default, insted of on mousehover."
363
- msgstr "گشترش جزئیات‌ هر سطر به طور پیش فرظ، به جای رویت با توقف اشاره گر"
364
-
365
- #: ../../admin/config/index.php:61 ../../admin/config/index.php:65
366
- msgid "Rows to Display"
367
- msgstr "نمایش ردیف ها"
368
-
369
- #: ../../admin/config/index.php:61
370
- msgid "Specify the number of items in each report."
371
- msgstr "تعداد موردها در هر گزارش را مشخص کنید."
372
-
373
- #: ../../admin/config/index.php:63
374
- msgid "Activity Log"
375
- msgstr "فهرست فعالیت ها"
376
-
377
- #: ../../admin/config/index.php:64
378
- msgid "Live Stream"
379
- msgstr "پخش زنده"
380
-
381
- #: ../../admin/config/index.php:64
382
- #, fuzzy
383
- msgid ""
384
- "Enable the Live view, which refreshes the Activity Log every X seconds. "
385
- "Enter <strong>0</strong> (number zero) to deactivate this feature."
386
- msgstr ""
387
- "فعال کردن «نمای زنده» صفحه «همین حالا» را هر چند ثانیه تازه سازی میکند. برای "
388
- "فیرفعال کردن صفر وارد کنید."
389
-
390
- #: ../../admin/config/index.php:64 ../../admin/config/index.php:225
391
- msgid "seconds"
392
- msgstr "ثانیه"
393
-
394
- #: ../../admin/config/index.php:65
395
- #, fuzzy
396
- msgid "Specify the number of items in the Activity Log."
397
- msgstr " تعداد موردها در فهرست صفحه «همین حالا» را مشخص کنید"
398
-
399
- #: ../../admin/config/index.php:66
400
- #, fuzzy
401
- msgid "Activity Log Extended"
402
- msgstr "فهرست فعالیت ها"
403
-
404
- #: ../../admin/config/index.php:66
405
- #, fuzzy
406
- msgid ""
407
- "Choose if you want to see outbound links listed in the Activity Log. It "
408
- "might slow down the rendering of this report."
409
- msgstr ""
410
- "اگر مایل به رویت پیوندهای بیرونی در فهرست بخش همین حالا هستید انتخاب کنید. "
411
- "ممکن است به طول انجامیدن تحویل گزارش منجر شود."
412
-
413
- #: ../../admin/config/index.php:71
414
- msgid "Visitors and Known Users"
415
- msgstr "بیننده و کاربران آشنا"
416
-
417
- #: ../../admin/config/index.php:72
418
- msgid "Track Registered Users"
419
- msgstr "ره‌گیری کاربران ثبت شده"
420
-
421
- #: ../../admin/config/index.php:72
422
- msgid "Enable this option to track logged in users."
423
- msgstr "اگر می‌خواهید کاربران وارد شده را ره‌گیری کنید این گزینه را فعال کنید."
424
-
425
- #: ../../admin/config/index.php:73
426
- msgid "Blacklist by Username"
427
- msgstr " فهرست سیاه با نشانی آی‌پی"
428
-
429
- #: ../../admin/config/index.php:73
430
- msgid ""
431
- "List all the usernames you don't want to track, separated by commas. Please "
432
- "be aware that spaces are <em>not</em> ignored and that usernames are case "
433
- "sensitive."
434
- msgstr ""
435
- "فهرست نام کاربرانی که نمیخواهید رهگیری کنید، تفکیک شده با ویرگول. لطفا در "
436
- "نظر داشته باشید که فاصله ها و حروف کوچک و بزرگ نیز حساب میشود."
437
-
438
- #: ../../admin/config/index.php:74
439
- msgid "Blacklist by IP Address"
440
- msgstr " فهرست سیاه با نشانی آی‌پی"
441
-
442
- #: ../../admin/config/index.php:74
443
- #, fuzzy
444
- msgid ""
445
- "List all the IP addresses you don't want to track, separated by commas. Each "
446
- "network <strong>must</strong> be defined using the <a href='http://en."
447
- "wikipedia.org/wiki/Classless_Inter-Domain_Routing' target='_blank'>CIDR "
448
- "notation</a> (i.e. <em>192.168.0.0/24</em>). This filter applies both to the "
449
- "public IP and the originating IP, if available."
450
- msgstr ""
451
- "فهرست آی پی آدرس هایی که نمیخواهید رهگیری کنید، با ویرگول جدا شده است. هر "
452
- "شبکه باید با استفاده از علامتگذاری<a href='http://en.wikipedia.org/wiki/"
453
- "Classless_Inter-Domain_Routing' target='_blank'>CIDR</a> تعریف شود (مثل "
454
- "<em>192.168.0.0/24</em>) و اگر نگارش صحیح نباشد رهگیری به درستی انجام نمیشود."
455
-
456
- #: ../../admin/config/index.php:75
457
- msgid "Blacklist by Capability"
458
- msgstr "کاربران بر اساس توانایی"
459
-
460
- #: ../../admin/config/index.php:75
461
- msgid ""
462
- "Users having at least one of the <a href='http://codex.wordpress.org/"
463
- "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
464
- "will not be tracked. Capabilities are case-insensitive."
465
- msgstr ""
466
- "کاربرانی که حداقل یکی از<a href='http://codex.wordpress.org/"
467
- "Roles_and_Capabilities' target='_new'> خواص</a> زیر را داشته باشند ردگیری "
468
- "نمیشوند (به بزرگ و کوچک بودن را دقت داشته باشید)."
469
-
470
- #: ../../admin/config/index.php:77
471
- msgid "Profiling"
472
- msgstr "نمایه"
473
-
474
- #: ../../admin/config/index.php:78
475
- msgid "Ignore Spammers"
476
- msgstr "نادیده گرفتن هرزها"
477
-
478
- #: ../../admin/config/index.php:78
479
- msgid ""
480
- "Enable this option if you don't want to track visits from users identified "
481
- "as spammers by third-party tools like Akismet. Pageviews generated by users "
482
- "whose comments are later marked as spam, will also be removed from the "
483
- "database."
484
- msgstr ""
485
- " اگر نمیخواهید بازدید کاربرانی که هرز شناخته شده اند (توسط برنامه هایی مثل "
486
- "Akismet) را رهگیری کنید این گزینه را فعال کنید. بازدید های کاربرانی که بعدا "
487
- "به صورت هرز شناخته شوند از پایگاه داده ها نیز حذف میشوند."
488
-
489
- #: ../../admin/config/index.php:79
490
- msgid "Permalinks"
491
- msgstr "پیوندهای یکتا"
492
-
493
- #: ../../admin/config/index.php:79
494
- msgid ""
495
- "List all the URLs on your website that you don't want to track, separated by "
496
- "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
497
- "Wildcards: <code>*</code> matches 'any string, including the empty string', "
498
- "<code>!</code> matches 'any character'. For example, <code>/abou*</code> "
499
- "will match /about and /abound, <code>/abo*t</code> will match /aboundant "
500
- "and /about, <code>/abo!t</code> will match /about and /abort. Strings are "
501
- "case-insensitive."
502
- msgstr ""
503
- "فهرست تمامی نشانی هایی در تارنمای شما که نمیخواهید رهگیری کنید، تفکیک شده با "
504
- "ویرگول. نام دامنه را وارد نکنید. مثلا: <em>/about, ?p=1</em>, etc. "
505
- "Wildcards: <code>*</code> matches 'any string, including the empty string', "
506
- "<code>!</code> matches 'any character'. For example, <code>/abou*</code> "
507
- "will match /about and /abound, <code>/abo*t</code> will match /aboundant "
508
- "and /about, <code>/abo!t</code> will match /about and /abort. Strings are "
509
- "case-insensitive."
510
-
511
- #: ../../admin/config/index.php:80
512
- msgid "Countries"
513
- msgstr "کشورها"
514
-
515
- #: ../../admin/config/index.php:80
516
- msgid ""
517
- "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
518
- "track, separated by commas."
519
- msgstr ""
520
- "کد کشورهایی که مایل به رهگیری نیستید، تفکیک شده با ویرگول مثل <code>en-us, "
521
- "it, es</code>"
522
-
523
- #: ../../admin/config/index.php:81
524
- msgid "User Agents"
525
- msgstr "مرورگرهای کاربران"
526
-
527
- #: ../../admin/config/index.php:81
528
- msgid ""
529
- "Browsers (user agents) you don't want to track, separated by commas. You can "
530
- "specify the browser's version adding a slash after the name (i.e. "
531
- "<em>Firefox/3.6</em>). Wildcards: <code>*</code> matches 'any string, "
532
- "including the empty string', <code>!</code> matches 'any character'. For "
533
- "example, <code>Chr*</code> will match Chrome and Chromium, <code>IE/!.0</"
534
- "code> will match IE/7.0 and IE/8.0. Strings are case-insensitive."
535
- msgstr ""
536
- " Wildcards: <code>*</code> matches 'any string, including the empty string', "
537
- "<code>!</code> matches 'any character'. For example, <code>Chr*</code> will "
538
- "match Chrome and Chromium, <code>IE/!.0</code> will match IE/7.0 and IE/8.0. "
539
- "Strings are case-insensitive.مرورگرهایی که نمیخواهید رهگیری کنید، تفکیک شده "
540
- "با ویرگول. میتوانید نسخه مرورگر را نیز مشخص کنید. مثلا <em>Firefox/3.6</em>. "
541
-
542
- #: ../../admin/config/index.php:82
543
- msgid "Referring Sites"
544
- msgstr "سایت ارجاع دهنده"
545
-
546
- #: ../../admin/config/index.php:82
547
- msgid ""
548
- "Referring URLs that you don't want to track, separated by commas: "
549
- "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
550
- "Wildcards: <code>*</code> matches 'any string, including the empty string', "
551
- "<code>!</code> matches 'any character'. Strings are case-insensitive. Please "
552
- "include either a wildcard or the protocol you want to filter (http://, "
553
- "https://)."
554
- msgstr ""
555
- "نشانی های ارجاع کننده ای که مایل به رهگیری آنها نیستید، تفکیک شده با ویرگول. "
556
- "به عنوان مثال:<code>http://mysite.com*</code>, <code>*/ignore-me-please</"
557
- "code>, و غیره. Wildcards: <code>*</code> matches 'any string, including the "
558
- "empty string', <code>!</code> matches 'any character'. Strings are case-"
559
- "insensitive. Include either a wildcard or the protocol you want to filter "
560
- "(http://, https://)."
561
-
562
- #: ../../admin/config/index.php:84
563
- #, fuzzy
564
- msgid "Internal and Outbound Links"
565
- msgstr "پیوندهای بیرونی اخیر"
566
-
567
- #: ../../admin/config/index.php:85
568
- msgid "Track Outbound Clicks"
569
- msgstr "ره‌گیری کلیک های بیرونی"
570
-
571
- #: ../../admin/config/index.php:85
572
- msgid ""
573
- "Track when your visitors click on link to external websites. This option "
574
- "required Spy Mode to be enabled."
575
- msgstr ""
576
- "پیوندهایی که بازدیدکننده را به خارج از پایگاه ها میبرد رهگیری کنید. این "
577
- "گزینه نیاز به فعال کردن دید دزدکی دارد."
578
-
579
- #: ../../admin/config/index.php:86
580
- #, fuzzy
581
- msgid "Track Coordinates"
582
- msgstr " حالت ردگیری"
583
-
584
- #: ../../admin/config/index.php:86
585
- msgid ""
586
- "Collect mouse coordinates and other information for clicks on internal "
587
- "links. Strongly recommended if you're using the heatmap add-on. By default, "
588
- "this information is only collected for external links."
589
- msgstr ""
590
-
591
- #: ../../admin/config/index.php:87
592
- #, fuzzy
593
- msgid "Ignore Classes"
594
- msgstr "کاربران را نادیده بگیر"
595
-
596
- #: ../../admin/config/index.php:87
597
- msgid ""
598
- "Track the event but do not invoke the callback function on links marked with "
599
- "one of these classnames (separated by comma). Useful to prevent conflicts "
600
- "with lightbox and similar libraries."
601
- msgstr ""
602
-
603
- #: ../../admin/config/index.php:88
604
- #, fuzzy
605
- msgid "Ignore Rel"
606
- msgstr "کاربران را نادیده بگیر"
607
-
608
- #: ../../admin/config/index.php:88
609
- msgid ""
610
- "Track the event but do not invoke the callback function on links having one "
611
- "of these values (separated by comma) as their <em>rel</em> attribute."
612
- msgstr ""
613
-
614
- #: ../../admin/config/index.php:89
615
- #, fuzzy
616
- msgid "Ignore URL"
617
- msgstr "کاربران را نادیده بگیر"
618
-
619
- #: ../../admin/config/index.php:89
620
- msgid ""
621
- "Track the event but do not invoke the callback function on links whose "
622
- "<em>href</em> attribute contains one of these strings (separated by comma)."
623
- msgstr ""
624
-
625
- #: ../../admin/config/index.php:91 ../../admin/config/index.php:242
626
- msgid "Miscellaneous"
627
- msgstr "متفرقه"
628
-
629
- #: ../../admin/config/index.php:92
630
- msgid "Enable Privacy Mode"
631
- msgstr "فعال کردن حالت حریم"
632
-
633
- #: ../../admin/config/index.php:92
634
- msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
635
- msgstr "این گزینه نشانی آی‌پی بیننده را طبق قوانین حریم خصوصی اروپا پنهان میکند"
636
-
637
- #: ../../admin/config/index.php:93
638
- msgid "Ignore Prefetch Requests"
639
- msgstr "نادیده گرفتن درخواست صفحه‌بندی"
640
-
641
- #: ../../admin/config/index.php:93
642
- #, fuzzy
643
- msgid ""
644
- "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
645
- "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
646
- "target='_blank'>Link Prefetching functionality</a>."
647
- msgstr ""
648
- "جلوگیری کردن از ردگیری بازدیدهایی که توسط <a href='https://developer.mozilla."
649
- "org/en/Link_prefetching_FAQ' target='_blank'>صفحه‌بندی</a> برنامه Firefox "
650
- "صورت میگیرد."
651
-
652
- #: ../../admin/config/index.php:109
653
- msgid "Ignore users (username not found)"
654
- msgstr "نادیده گرفتن کاربر(شناسه کاربر یافت نشد)"
655
-
656
- #: ../../admin/config/index.php:132
657
- msgid ""
658
- "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
659
- "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
660
- msgstr ""
661
- "توانایی صحیح نمیباشد. لطفا برای اطلاع بیشتر به صفحه<a href=\"http://codex."
662
- "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> نقش و توانایی</a> "
663
- "مراجعه کنید."
664
-
665
- #: ../../admin/config/index.php:142
666
- msgid "Reports"
667
- msgstr "گزارش ها"
668
-
669
- #: ../../admin/config/index.php:143
670
- msgid "Restrict Authors"
671
- msgstr "محدود کردن نویسنده‌ها"
672
-
673
- #: ../../admin/config/index.php:143
674
- #, fuzzy
675
- msgid ""
676
- "Enable this option if you want your authors to only see stats related to "
677
- "their own content."
678
- msgstr ""
679
- "اگر میخواهید نویسنده ها فقط آمار مربوط به محتوای خود را رویت کنند این گزینه "
680
- "را فعال کنید."
681
-
682
- #: ../../admin/config/index.php:144 ../../admin/config/index.php:148
683
- msgid "Capability"
684
- msgstr "کاربران بر اساس توانایی"
685
-
686
- #: ../../admin/config/index.php:144
687
- #, fuzzy
688
- msgid ""
689
- "Specify the minimum <a href='http://codex.wordpress.org/"
690
- "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
691
- "reports (default: <code>activate_plugins</code>). If this field is empty, "
692
- "<strong>all your users</strong> (including subscribers) will have access to "
693
- "the reports, unless a 'Read access' whitelist has been specified here below. "
694
- "In this case, the list has precedence over the capability."
695
- msgstr ""
696
- "حداقل<a href='http://codex.wordpress.org/Roles_and_Capabilities' "
697
- "target='_new'> توانایی</a> برای دسترسی به گزارش های را مشخص کنید. اگر این "
698
- "ناحیه خالی باشد همه کاربران (از جمله مشترکین) به گزارش ها دسترسی خواهند "
699
- "داشت، مگر اینکه اجازه فهرست سفید اینجا مشخص شود. در این صورت فهرست اولویت "
700
- "میگیرد بر قابلیت."
701
-
702
- #: ../../admin/config/index.php:145 ../../admin/config/index.php:149
703
- msgid "Whitelist"
704
- msgstr "فهرست سفید"
705
-
706
- #: ../../admin/config/index.php:145
707
- msgid ""
708
- "List all the users who should have access to the reports, separated by "
709
- "commas. Administrators are implicitly allowed, so you don't need to list "
710
- "them in here. Usernames are case sensitive."
711
- msgstr ""
712
- "فهرست کاربرانی که به گزارش ها دسترسی دارند، تفکیک شده با ویرگول. مدیرها به "
713
- "طور کامل دسترسی دارند و نیاز به وارد کردن اینجا نخواهند داشت. کوچک و بزرگ "
714
- "بودن حروف مهم است."
715
-
716
- #: ../../admin/config/index.php:148
717
- #, fuzzy
718
- msgid ""
719
- "Specify the minimum <a href='http://codex.wordpress.org/"
720
- "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
721
- "Slimstat (default: <code>activate_plugins</code>). The whitelist here below "
722
- "can be used to override this option for specific users."
723
- msgstr ""
724
- "حداقل<a href='http://codex.wordpress.org/Roles_and_Capabilities' "
725
- "target='_new'> توانایی</a> برای دسترسی برای تنظیمات را مشخص کنید. این فهرست "
726
- "سفید اختیارات کاربران خاص را لفو میکند."
727
-
728
- #: ../../admin/config/index.php:149
729
- msgid ""
730
- "List all the users who can edit these options, separated by commas. Please "
731
- "be advised that admins <strong>are not</strong> implicitly allowed, so do "
732
- "not forget to include yourself! Usernames are case sensitive."
733
- msgstr ""
734
- "فهرست کاربرانی که توانایی ویرایش این گزینه ها را دارند، تفکیک شده با ویرگول. "
735
- "از وارد کردن نام خود در این فهرست مطمئن شوید."
736
-
737
- #: ../../admin/config/index.php:165
738
- msgid "Read access: username not found"
739
- msgstr "دست‌رسی خواندن: شناسه کاربری یافت نشد"
740
-
741
- #: ../../admin/config/index.php:178 ../../admin/config/index.php:209
742
- msgid ""
743
- "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
744
- "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
745
- "information"
746
- msgstr ""
747
- "حداقل توانایی صحیح نیست. لطفا برای اطلاع بیشتر به صفحه<a href=\"http://codex."
748
- "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> نقش و توانایی</a> "
749
- "مراجعه کنید."
750
-
751
- #: ../../admin/config/index.php:196
752
- msgid "Config access: username not found"
753
- msgstr "دست‌رسی پیکربندی: شناسه کاربری یافت نشد"
754
-
755
- #: ../../admin/config/index.php:224
756
- msgid "Detect Smoothing"
757
- msgstr "یافتن اسموتینگ"
758
-
759
- #: ../../admin/config/index.php:224
760
- msgid ""
761
- "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
762
- "This option required Spy Mode to be enabled."
763
- msgstr ""
764
- " تشخیص دادن مرورگرهایی که از ضد-بدنمایی (font smoothing) استفاده میکنند. این "
765
- "گزینه نیاز به فعال کردن «دید دزدکی» دارد."
766
-
767
- #: ../../admin/config/index.php:225
768
- msgid "Session Duration"
769
- msgstr "مدت جلسه"
770
-
771
- #: ../../admin/config/index.php:225
772
- #, fuzzy
773
- msgid ""
774
- "How many seconds should a human session last? Google Analytics sets it to "
775
- "1800 seconds."
776
- msgstr ""
777
- "چند ثانیه جلسه (انسان) در پایگاه به طول انجامد؟ گوگل آنالیتیک این مقدار را "
778
- "۱۸۰۰ ثانیه در نظر می‌گیرد."
779
-
780
- #: ../../admin/config/index.php:226
781
- msgid "Extend Session"
782
- msgstr "گسترش جلسه"
783
-
784
- #: ../../admin/config/index.php:226
785
- msgid "Extend the duration of a session each time the user visits a new page."
786
- msgstr ""
787
- "هر بار که کاربر یک صفحه جدید را دیدن می‌کند مدت جلسه را به این مقدار گسترش "
788
- "می‌دهد."
789
-
790
- #: ../../admin/config/index.php:227
791
- msgid "Enable CDN"
792
- msgstr "فعال‌سازی CDN"
793
-
794
- #: ../../admin/config/index.php:227
795
- msgid ""
796
- "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
797
- "by serving our tracking code from their fast and reliable network (free "
798
- "service)."
799
- msgstr ""
800
- "از سی دی اِن <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a> "
801
- "استفاده کنید و از خدمات ردگیری ما در شبکه سریع و مطمئن بهره مند شوید "
802
- "(رایگان)."
803
-
804
- #: ../../admin/config/index.php:228
805
- msgid "Extensions to Track"
806
- msgstr "پسوندهایی که رهیابی شوند"
807
-
808
- #: ../../admin/config/index.php:228
809
- msgid ""
810
- "List all the file extensions that you want to be treated as Downloads. "
811
- "Please note that links pointing to external resources (i.e. PDFs on a "
812
- "different website) are considered Downloads and not Outbound Links (and "
813
- "tracked as such), if their extension matches one of the ones listed here "
814
- "below."
815
- msgstr ""
816
- "فهرست تمامی پسونده هایی که میخواهد مانند بارگیری حساب شود. لطفا در نظر داشته "
817
- "باشید که پیوندهای منابع خارجی (مثل پی دی اف در پایگاه دیگر) بارگیری محسوب "
818
- "میشود و نه پیوند بیرونی اگر پسوند آنها با این فهرست تطبیق داشته باشد."
819
-
820
- #: ../../admin/config/index.php:230
821
- #, fuzzy
822
- msgid "External Pages"
823
- msgstr "همه مشاهدات صفحات"
824
-
825
- #: ../../admin/config/index.php:231
826
- msgid "Add the following code to all the non-WP pages you want to track"
827
- msgstr ""
828
-
829
- #: ../../admin/config/index.php:243
830
- msgid "Debug Mode"
831
- msgstr ""
832
-
833
- #: ../../admin/config/index.php:243
834
- msgid "Display the SQL queries used to retrieve the data."
835
- msgstr ""
836
-
837
- #: ../../admin/config/index.php:244
838
- msgid "IP Lookup"
839
- msgstr "ره‌گیری بر اساس نشانی آی‌پی"
840
-
841
- #: ../../admin/config/index.php:244
842
- msgid "Customize the Geolocation service to be used in the reports."
843
- msgstr "خدمات مکان-جفرافی برای گزارش ها را دلخواه کنید. "
844
-
845
- #: ../../admin/config/index.php:245
846
- msgid "Custom CSS"
847
- msgstr "سی‌اس‌اس دلخواه"
848
-
849
- #: ../../admin/config/index.php:245
850
- #, fuzzy
851
- msgid ""
852
- "Paste here your custom stylesheet to personalize the way your reports look. "
853
- "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
854
- "target='_blank'>Check the FAQ</a> for more information on how to use this "
855
- "setting."
856
- msgstr ""
857
- "سی‌اس‌اس دلخواه خود را اینجا وارد کنید و گزارش ها را شخصی کنید. برای اطلاع "
858
- "بیشتر به<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
859
- "target='_blank'> سوالهای رایج</a> مراجعه کنید."
860
-
861
- #: ../../admin/config/index.php:246
862
- msgid "Enable UAN"
863
- msgstr "فعال‌سازی UAN"
864
-
865
- #: ../../admin/config/index.php:246
866
- #, fuzzy
867
- msgid ""
868
- "Send anonymous data about user agents to our server for analysis. This "
869
- "allows us to contribute to the <a href='http://browscap.org/' "
870
- "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
871
- "Slimstat's browser detection functionality. It also enables our transparent "
872
- "ads network. No worries, your site will not be affected in any way."
873
- msgstr ""
874
- " میتوانید اطلاعات کابر مشکوک را برای تحلیل به صورت ناشناس برای ما ارسال "
875
- "کنید. با کمک کردن به <a href='http://browscap.co/' target='_blank'>BrowsCap "
876
- "opensource project</a> توانایی برنامه برای شناختن مرورگرها را بیشتر میشود."
877
-
878
- #: ../../admin/config/maintenance.php:20
879
- #, fuzzy
880
- msgid "Your Slimstat tables have been successfully converted to InnoDB."
881
- msgstr "جداول WP SlimStat با موفقیت به InnoDB تبدیل شد."
882
-
883
- #: ../../admin/config/maintenance.php:30
884
- msgid "records deleted from your database."
885
- msgstr "اطلاعات از پایگاه داده ها حذف شد."
886
-
887
- #: ../../admin/config/maintenance.php:37
888
- msgid "All the records were successfully deleted."
889
- msgstr "همه اطلاعات با موفقیت حذف شد."
890
-
891
- #: ../../admin/config/maintenance.php:42
892
- #, fuzzy
893
- msgid "All the archived records were successfully deleted."
894
- msgstr "همه اطلاعات با موفقیت حذف شد."
895
-
896
- #: ../../admin/config/maintenance.php:51
897
- #, fuzzy
898
- msgid "All the archived records were successfully restored."
899
- msgstr "همه اطلاعات با موفقیت حذف شد."
900
-
901
- #: ../../admin/config/maintenance.php:55
902
- msgid "Your reports were successfully restored to their default arrangement."
903
- msgstr "گزارش ها با موفقیت به حالت پیش فرض بازنشانی شدند."
904
-
905
- #: ../../admin/config/maintenance.php:62
906
- #, fuzzy
907
- msgid ""
908
- "Congrats! Slimstat is now optimized for <a href=\"http://www.youtube.com/"
909
- "watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
910
- msgstr ""
911
- "تبریک! برنامه اکنون برای<a href=\"http://www.youtube.com/watch?"
912
- "v=ygE01sOhzz0\" target=\"_blank\"> سرعت</a> بهینه شده است."
913
-
914
- #: ../../admin/config/maintenance.php:69
915
- msgid ""
916
- "Indexing has been successfully disabled. Enjoy the extra database space you "
917
- "just gained!"
918
- msgstr ""
919
- "اندیس گری با موفقیت غیر فعال شد. از فضای اضافه که پایگاه داده ها بدست آورید "
920
- "لذت ببرید! "
921
-
922
- #: ../../admin/config/maintenance.php:101
923
- msgid "Database Information"
924
- msgstr "اطلاعات پایگاه داده"
925
-
926
- #: ../../admin/config/maintenance.php:104
927
- msgid "Engine"
928
- msgstr "موتور"
929
-
930
- #: ../../admin/config/maintenance.php:108
931
- msgid "switch to InnoDB"
932
- msgstr "تغییر حالت به InnoDB"
933
-
934
- #: ../../admin/config/maintenance.php:119
935
- msgid "records"
936
- msgstr "اطلاعات"
937
-
938
- #: ../../admin/config/maintenance.php:124
939
- msgid "Data Maintenance"
940
- msgstr "تعمیر داده ها"
941
-
942
- #: ../../admin/config/maintenance.php:127
943
- msgid "Delete pageviews where"
944
- msgstr "حذف بازدید‌ها وقتی"
945
-
946
- #: ../../admin/config/maintenance.php:141 ../../admin/view/index.php:15
947
- msgid "equals"
948
- msgstr "مساوی‌ست با"
949
-
950
- #: ../../admin/config/maintenance.php:142 ../../admin/view/index.php:16
951
- msgid "is not equal to"
952
- msgstr "مساوی نیست با"
953
-
954
- #: ../../admin/config/maintenance.php:143 ../../admin/view/index.php:17
955
- msgid "contains"
956
- msgstr "شامل"
957
-
958
- #: ../../admin/config/maintenance.php:144 ../../admin/view/index.php:18
959
- msgid "does not contain"
960
- msgstr "ناشامل"
961
-
962
- #: ../../admin/config/maintenance.php:145 ../../admin/view/index.php:19
963
- msgid "starts with"
964
- msgstr "شروع می‌شود با"
965
-
966
- #: ../../admin/config/maintenance.php:146 ../../admin/view/index.php:20
967
- msgid "ends with"
968
- msgstr "پایان می‌یابد با"
969
-
970
- #: ../../admin/config/maintenance.php:147 ../../admin/view/index.php:21
971
- msgid "sounds like"
972
- msgstr " شبیه به"
973
-
974
- #: ../../admin/config/maintenance.php:148 ../../admin/view/index.php:22
975
- msgid "is greater than"
976
- msgstr "بزرگ‌تر است از"
977
-
978
- #: ../../admin/config/maintenance.php:149 ../../admin/view/index.php:23
979
- msgid "is less than"
980
- msgstr "کوچک‌تر است از"
981
-
982
- #: ../../admin/config/maintenance.php:150 ../../admin/view/index.php:25
983
- msgid "matches"
984
- msgstr "مطابق است با"
985
-
986
- #: ../../admin/config/maintenance.php:151 ../../admin/view/index.php:26
987
- msgid "does not match"
988
- msgstr "مطابق نیست"
989
-
990
- #: ../../admin/config/maintenance.php:152 ../../admin/view/index.php:27
991
- msgid "is empty"
992
- msgstr "خالی‌ است"
993
-
994
- #: ../../admin/config/maintenance.php:153 ../../admin/view/index.php:28
995
- msgid "is not empty"
996
- msgstr "خالی نیست"
997
-
998
- #: ../../admin/config/maintenance.php:156 ../../admin/view/index.php:40
999
- #: ../../admin/view/index.php:103
1000
- msgid "Apply"
1001
- msgstr "انجام"
1002
-
1003
- #: ../../admin/config/maintenance.php:157
1004
- msgid ""
1005
- "Are you sure you want to PERMANENTLY delete these records from your database?"
1006
- msgstr ""
1007
- "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1008
-
1009
- #: ../../admin/config/maintenance.php:162
1010
- msgid "Truncate Tables"
1011
- msgstr ""
1012
-
1013
- #: ../../admin/config/maintenance.php:165
1014
- msgid ""
1015
- "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1016
- "database?"
1017
- msgstr ""
1018
- "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1019
-
1020
- #: ../../admin/config/maintenance.php:165
1021
- #, fuzzy
1022
- msgid "Delete All Records"
1023
- msgstr "حذف همه صفحات"
1024
-
1025
- #: ../../admin/config/maintenance.php:166
1026
- #, fuzzy
1027
- msgid ""
1028
- "Erase all the information collected so far by Slimstat, including the "
1029
- "archive. This operation <strong>does not</strong> reset your settings."
1030
- msgstr ""
1031
- "حذف همه اطلاعاتی که تا حال توسط WP SlimStat جمع آوری شده است. این عملیات "
1032
- "تنظیمات را بازنشانی نمیکند."
1033
-
1034
- #: ../../admin/config/maintenance.php:170
1035
- msgid "Restore archive"
1036
- msgstr ""
1037
-
1038
- #: ../../admin/config/maintenance.php:173
1039
- #, fuzzy
1040
- msgid "Are you sure you want to restore all the archived pageviews?"
1041
- msgstr ""
1042
- "آیا مطمئن هستید که می‌خواهید تمامی اطلاعات مربوط به آمار بازدید و "
1043
- "بازدیدکننده‌ها را حذف کنید؟"
1044
-
1045
- #: ../../admin/config/maintenance.php:173
1046
- msgid "Get 'em back"
1047
- msgstr ""
1048
-
1049
- #: ../../admin/config/maintenance.php:174
1050
- msgid ""
1051
- "Move all the archived pageviews back to the main Slimstat table. Please note "
1052
- "that, unless you disabled the daily purge, this data will be archived again "
1053
- "at the next scheduled clean-up."
1054
- msgstr ""
1055
-
1056
- #: ../../admin/config/maintenance.php:178
1057
- msgid "Empty Archive"
1058
- msgstr ""
1059
-
1060
- #: ../../admin/config/maintenance.php:181
1061
- #, fuzzy
1062
- msgid ""
1063
- "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1064
- "archive?"
1065
- msgstr ""
1066
- "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1067
-
1068
- #: ../../admin/config/maintenance.php:181
1069
- #, fuzzy
1070
- msgid "Delete Archive"
1071
- msgstr "حذف بازدید‌ها وقتی"
1072
-
1073
- #: ../../admin/config/maintenance.php:182
1074
- msgid "Erase all the archived records. This operation cannot be undone."
1075
- msgstr ""
1076
-
1077
- #: ../../admin/config/maintenance.php:186
1078
- msgid "Performance"
1079
- msgstr "عملکرد"
1080
-
1081
- #: ../../admin/config/maintenance.php:189
1082
- msgid "Improve Performance"
1083
- msgstr "بهبود عملکرد"
1084
-
1085
- #: ../../admin/config/maintenance.php:190
1086
- msgid ""
1087
- "Please note that you will need about 30% more DB space to store the extra "
1088
- "information required."
1089
- msgstr ""
1090
- "در نظر داشته باشید که زخیره کردن این اطلاعات ٪۳۰ درصد حجم بیشتر در پایگاه "
1091
- "داده اشغال میکند."
1092
-
1093
- #: ../../admin/config/maintenance.php:194
1094
- msgid "Save DB Space"
1095
- msgstr "زخیره کردن پایگاه داده"
1096
-
1097
- #: ../../admin/config/maintenance.php:195
1098
- #, fuzzy
1099
- msgid ""
1100
- "Please note that by removing table indexes, Slimstat's performance will be "
1101
- "affected."
1102
- msgstr ""
1103
- "در نظر داشته باشید که حذف کردن شاخص بر عملکرد WP SlimStat تاثیر میگذارد"
1104
-
1105
- #: ../../admin/config/maintenance.php:200
1106
- msgid "Import and Export"
1107
- msgstr "وارد و صادر"
1108
-
1109
- #: ../../admin/config/maintenance.php:204
1110
- msgid ""
1111
- "Here below you can find the current configuration string for Slimstat. You "
1112
- "can update your settings by pasting a new string here below and clicking on "
1113
- "Import."
1114
- msgstr ""
1115
-
1116
- #: ../../admin/config/maintenance.php:209
1117
- msgid "Import"
1118
- msgstr "واردات"
1119
-
1120
- #: ../../admin/config/maintenance.php:210
1121
- msgid "Are you sure you want to OVERWRITE your current settings?"
1122
- msgstr "مطمئنید می‌خواهید تنظیمات را بازنشانی کنید؟"
1123
-
1124
- # Unknown
1125
- #: ../../admin/lang/dynamic_strings.php:3
1126
- msgid "xx"
1127
- msgstr "xx"
1128
-
1129
- #: ../../admin/lang/dynamic_strings.php:4
1130
- msgid "unknown"
1131
- msgstr "مجهول"
1132
-
1133
- #: ../../admin/lang/dynamic_strings.php:5
1134
- msgid "win8.1"
1135
- msgstr ""
1136
-
1137
- #: ../../admin/lang/dynamic_strings.php:6
1138
- msgid "win8"
1139
- msgstr ""
1140
-
1141
- #: ../../admin/lang/dynamic_strings.php:7
1142
- msgid "win7"
1143
- msgstr ""
1144
-
1145
- #: ../../admin/lang/dynamic_strings.php:8
1146
- msgid "winvista"
1147
- msgstr ""
1148
-
1149
- #: ../../admin/lang/dynamic_strings.php:9
1150
- msgid "win2003"
1151
- msgstr ""
1152
-
1153
- #: ../../admin/lang/dynamic_strings.php:10
1154
- msgid "winxp"
1155
- msgstr ""
1156
-
1157
- #: ../../admin/lang/dynamic_strings.php:11
1158
- msgid "winnt"
1159
- msgstr ""
1160
-
1161
- #: ../../admin/lang/dynamic_strings.php:12
1162
- msgid "win2000"
1163
- msgstr ""
1164
-
1165
- #: ../../admin/lang/dynamic_strings.php:13
1166
- msgid "winme"
1167
- msgstr ""
1168
-
1169
- #: ../../admin/lang/dynamic_strings.php:14
1170
- msgid "win98"
1171
- msgstr ""
1172
-
1173
- #: ../../admin/lang/dynamic_strings.php:15
1174
- msgid "win95"
1175
- msgstr ""
1176
-
1177
- #: ../../admin/lang/dynamic_strings.php:16
1178
- msgid "win31"
1179
- msgstr ""
1180
-
1181
- #: ../../admin/lang/dynamic_strings.php:17
1182
- msgid "win32"
1183
- msgstr ""
1184
-
1185
- #: ../../admin/lang/dynamic_strings.php:18
1186
- msgid "win16"
1187
- msgstr ""
1188
-
1189
- #: ../../admin/lang/dynamic_strings.php:19
1190
- msgid "mac68k"
1191
- msgstr ""
1192
-
1193
- #: ../../admin/lang/dynamic_strings.php:20
1194
- msgid "macosx"
1195
- msgstr ""
1196
-
1197
- #: ../../admin/lang/dynamic_strings.php:21
1198
- msgid "macppc"
1199
- msgstr ""
1200
-
1201
- #: ../../admin/lang/dynamic_strings.php:22
1202
- msgid "mac"
1203
- msgstr ""
1204
-
1205
- #: ../../admin/lang/dynamic_strings.php:23
1206
- msgid "os/2"
1207
- msgstr ""
1208
-
1209
- #: ../../admin/lang/dynamic_strings.php:24
1210
- msgid "sunos"
1211
- msgstr ""
1212
-
1213
- #: ../../admin/lang/dynamic_strings.php:25
1214
- msgid "solaris"
1215
- msgstr ""
1216
-
1217
- #: ../../admin/lang/dynamic_strings.php:26
1218
- msgid "unix"
1219
- msgstr ""
1220
-
1221
- #: ../../admin/lang/dynamic_strings.php:27
1222
- msgid "irix"
1223
- msgstr ""
1224
-
1225
- #: ../../admin/lang/dynamic_strings.php:28
1226
- msgid "hp-ux"
1227
- msgstr ""
1228
-
1229
- #: ../../admin/lang/dynamic_strings.php:29
1230
- msgid "aix"
1231
- msgstr ""
1232
-
1233
- #: ../../admin/lang/dynamic_strings.php:30
1234
- msgid "beos"
1235
- msgstr ""
1236
-
1237
- #: ../../admin/lang/dynamic_strings.php:31
1238
- msgid "cygwin"
1239
- msgstr ""
1240
-
1241
- #: ../../admin/lang/dynamic_strings.php:32
1242
- msgid "digital unix"
1243
- msgstr ""
1244
-
1245
- #: ../../admin/lang/dynamic_strings.php:33
1246
- msgid "risc os"
1247
- msgstr ""
1248
-
1249
- #: ../../admin/lang/dynamic_strings.php:34
1250
- msgid "openvms"
1251
- msgstr ""
1252
-
1253
- #: ../../admin/lang/dynamic_strings.php:35
1254
- msgid "linux"
1255
- msgstr ""
1256
-
1257
- #: ../../admin/lang/dynamic_strings.php:36
1258
- msgid "freebsd"
1259
- msgstr ""
1260
-
1261
- #: ../../admin/lang/dynamic_strings.php:37
1262
- msgid "openbsd"
1263
- msgstr ""
1264
-
1265
- #: ../../admin/lang/dynamic_strings.php:38
1266
- msgid "netbsd"
1267
- msgstr ""
1268
-
1269
- #: ../../admin/lang/dynamic_strings.php:39
1270
- msgid "debian"
1271
- msgstr ""
1272
-
1273
- #: ../../admin/lang/dynamic_strings.php:40
1274
- msgid "amiga"
1275
- msgstr ""
1276
-
1277
- #: ../../admin/lang/dynamic_strings.php:41
1278
- msgid "android"
1279
- msgstr ""
1280
-
1281
- #: ../../admin/lang/dynamic_strings.php:42
1282
- msgid "wyderos"
1283
- msgstr ""
1284
-
1285
- #: ../../admin/lang/dynamic_strings.php:43
1286
- msgid "iphone osx"
1287
- msgstr ""
1288
-
1289
- #: ../../admin/lang/dynamic_strings.php:44
1290
- msgid "ios"
1291
- msgstr "ios"
1292
-
1293
- #: ../../admin/lang/dynamic_strings.php:45
1294
- msgid "palm"
1295
- msgstr ""
1296
-
1297
- #: ../../admin/lang/dynamic_strings.php:46
1298
- msgid "wap"
1299
- msgstr ""
1300
-
1301
- #: ../../admin/lang/dynamic_strings.php:47
1302
- msgid "java"
1303
- msgstr ""
1304
-
1305
- #: ../../admin/lang/dynamic_strings.php:48
1306
- msgid "winphone7"
1307
- msgstr ""
1308
-
1309
- #: ../../admin/lang/dynamic_strings.php:49
1310
- msgid "wince"
1311
- msgstr ""
1312
-
1313
- #: ../../admin/lang/dynamic_strings.php:50
1314
- msgid "symbianos"
1315
- msgstr ""
1316
-
1317
- #: ../../admin/lang/dynamic_strings.php:51
1318
- msgid "blackberry os"
1319
- msgstr ""
1320
-
1321
- #: ../../admin/lang/dynamic_strings.php:52
1322
- msgid "webos"
1323
- msgstr ""
1324
-
1325
- #: ../../admin/lang/dynamic_strings.php:53
1326
- msgid "p-and"
1327
- msgstr ""
1328
-
1329
- #: ../../admin/lang/dynamic_strings.php:54
1330
- msgid "p-bla"
1331
- msgstr ""
1332
-
1333
- #: ../../admin/lang/dynamic_strings.php:55
1334
- msgid "p-chr"
1335
- msgstr ""
1336
-
1337
- #: ../../admin/lang/dynamic_strings.php:56
1338
- msgid "p-fre"
1339
- msgstr ""
1340
-
1341
- #: ../../admin/lang/dynamic_strings.php:57
1342
- msgid "p-ios"
1343
- msgstr ""
1344
-
1345
- #: ../../admin/lang/dynamic_strings.php:58
1346
- msgid "p-jav"
1347
- msgstr ""
1348
-
1349
- #: ../../admin/lang/dynamic_strings.php:59
1350
- msgid "p-lin"
1351
- msgstr ""
1352
-
1353
- #: ../../admin/lang/dynamic_strings.php:60
1354
- msgid "p-mac"
1355
- msgstr ""
1356
-
1357
- #: ../../admin/lang/dynamic_strings.php:61
1358
- msgid "p-sym"
1359
- msgstr ""
1360
-
1361
- #: ../../admin/lang/dynamic_strings.php:62
1362
- msgid "p-unk"
1363
- msgstr ""
1364
-
1365
- #: ../../admin/lang/dynamic_strings.php:63
1366
- msgid "p-win"
1367
- msgstr ""
1368
-
1369
- #: ../../admin/lang/dynamic_strings.php:64
1370
- msgid "powertv"
1371
- msgstr ""
1372
-
1373
- #: ../../admin/lang/dynamic_strings.php:65
1374
- msgid "acrobat"
1375
- msgstr ""
1376
-
1377
- #: ../../admin/lang/dynamic_strings.php:66
1378
- msgid "director"
1379
- msgstr ""
1380
-
1381
- #: ../../admin/lang/dynamic_strings.php:67
1382
- msgid "flash"
1383
- msgstr ""
1384
-
1385
- #: ../../admin/lang/dynamic_strings.php:68
1386
- msgid "mediaplayer"
1387
- msgstr ""
1388
-
1389
- #: ../../admin/lang/dynamic_strings.php:69
1390
- msgid "quicktime"
1391
- msgstr ""
1392
-
1393
- #: ../../admin/lang/dynamic_strings.php:70
1394
- msgid "real"
1395
- msgstr ""
1396
-
1397
- #: ../../admin/lang/dynamic_strings.php:71
1398
- msgid "silverlight"
1399
- msgstr ""
1400
-
1401
- #: ../../admin/lang/dynamic_strings.php:72
1402
- msgid "l-af"
1403
- msgstr ""
1404
-
1405
- #: ../../admin/lang/dynamic_strings.php:73
1406
- msgid "l-af-za"
1407
- msgstr ""
1408
-
1409
- #: ../../admin/lang/dynamic_strings.php:74
1410
- msgid "l-ar"
1411
- msgstr ""
1412
-
1413
- #: ../../admin/lang/dynamic_strings.php:75
1414
- msgid "l-ar-ae"
1415
- msgstr ""
1416
-
1417
- #: ../../admin/lang/dynamic_strings.php:76
1418
- msgid "l-ar-bh"
1419
- msgstr ""
1420
-
1421
- #: ../../admin/lang/dynamic_strings.php:77
1422
- msgid "l-ar-dz"
1423
- msgstr ""
1424
-
1425
- #: ../../admin/lang/dynamic_strings.php:78
1426
- msgid "l-ar-eg"
1427
- msgstr ""
1428
-
1429
- #: ../../admin/lang/dynamic_strings.php:79
1430
- msgid "l-ar-iq"
1431
- msgstr ""
1432
-
1433
- #: ../../admin/lang/dynamic_strings.php:80
1434
- msgid "l-ar-jo"
1435
- msgstr ""
1436
-
1437
- #: ../../admin/lang/dynamic_strings.php:81
1438
- msgid "l-ar-kw"
1439
- msgstr ""
1440
-
1441
- #: ../../admin/lang/dynamic_strings.php:82
1442
- msgid "l-ar-lb"
1443
- msgstr ""
1444
-
1445
- #: ../../admin/lang/dynamic_strings.php:83
1446
- msgid "l-ar-ly"
1447
- msgstr ""
1448
-
1449
- #: ../../admin/lang/dynamic_strings.php:84
1450
- msgid "l-ar-ma"
1451
- msgstr ""
1452
-
1453
- #: ../../admin/lang/dynamic_strings.php:85
1454
- msgid "l-ar-om"
1455
- msgstr ""
1456
-
1457
- #: ../../admin/lang/dynamic_strings.php:86
1458
- msgid "l-ar-qa"
1459
- msgstr ""
1460
-
1461
- #: ../../admin/lang/dynamic_strings.php:87
1462
- msgid "l-ar-sa"
1463
- msgstr ""
1464
-
1465
- #: ../../admin/lang/dynamic_strings.php:88
1466
- msgid "l-ar-sy"
1467
- msgstr ""
1468
-
1469
- #: ../../admin/lang/dynamic_strings.php:89
1470
- msgid "l-ar-tn"
1471
- msgstr ""
1472
-
1473
- #: ../../admin/lang/dynamic_strings.php:90
1474
- msgid "l-ar-ye"
1475
- msgstr ""
1476
-
1477
- #: ../../admin/lang/dynamic_strings.php:91
1478
- msgid "l-az"
1479
- msgstr ""
1480
-
1481
- #: ../../admin/lang/dynamic_strings.php:92
1482
- msgid "l-az-az"
1483
- msgstr ""
1484
-
1485
- #: ../../admin/lang/dynamic_strings.php:93
1486
- msgid "l-be"
1487
- msgstr ""
1488
-
1489
- #: ../../admin/lang/dynamic_strings.php:94
1490
- msgid "l-be-by"
1491
- msgstr ""
1492
-
1493
- #: ../../admin/lang/dynamic_strings.php:95
1494
- msgid "l-bg"
1495
- msgstr ""
1496
-
1497
- #: ../../admin/lang/dynamic_strings.php:96
1498
- msgid "l-bg-bg"
1499
- msgstr ""
1500
-
1501
- #: ../../admin/lang/dynamic_strings.php:97
1502
- msgid "l-bs-ba"
1503
- msgstr ""
1504
-
1505
- #: ../../admin/lang/dynamic_strings.php:98
1506
- msgid "l-ca"
1507
- msgstr ""
1508
-
1509
- #: ../../admin/lang/dynamic_strings.php:99
1510
- msgid "l-ca-es"
1511
- msgstr ""
1512
-
1513
- #: ../../admin/lang/dynamic_strings.php:100
1514
- msgid "l-cs"
1515
- msgstr ""
1516
-
1517
- #: ../../admin/lang/dynamic_strings.php:101
1518
- msgid "l-cs-cz"
1519
- msgstr ""
1520
-
1521
- #: ../../admin/lang/dynamic_strings.php:102
1522
- msgid "l-cy"
1523
- msgstr ""
1524
-
1525
- #: ../../admin/lang/dynamic_strings.php:103
1526
- msgid "l-cy-gb"
1527
- msgstr ""
1528
-
1529
- #: ../../admin/lang/dynamic_strings.php:104
1530
- msgid "l-da"
1531
- msgstr ""
1532
-
1533
- #: ../../admin/lang/dynamic_strings.php:105
1534
- msgid "l-da-dk"
1535
- msgstr ""
1536
-
1537
- #: ../../admin/lang/dynamic_strings.php:106
1538
- msgid "l-de"
1539
- msgstr ""
1540
-
1541
- #: ../../admin/lang/dynamic_strings.php:107
1542
- msgid "l-de-at"
1543
- msgstr ""
1544
-
1545
- #: ../../admin/lang/dynamic_strings.php:108
1546
- msgid "l-de-ch"
1547
- msgstr ""
1548
-
1549
- #: ../../admin/lang/dynamic_strings.php:109
1550
- msgid "l-de-de"
1551
- msgstr ""
1552
-
1553
- #: ../../admin/lang/dynamic_strings.php:110
1554
- msgid "l-de-li"
1555
- msgstr ""
1556
-
1557
- #: ../../admin/lang/dynamic_strings.php:111
1558
- msgid "l-de-lu"
1559
- msgstr ""
1560
-
1561
- #: ../../admin/lang/dynamic_strings.php:112
1562
- msgid "l-dv"
1563
- msgstr ""
1564
-
1565
- #: ../../admin/lang/dynamic_strings.php:113
1566
- msgid "l-dv-mv"
1567
- msgstr ""
1568
-
1569
- #: ../../admin/lang/dynamic_strings.php:114
1570
- msgid "l-el"
1571
- msgstr ""
1572
-
1573
- #: ../../admin/lang/dynamic_strings.php:115
1574
- msgid "l-el-gr"
1575
- msgstr ""
1576
-
1577
- #: ../../admin/lang/dynamic_strings.php:116
1578
- msgid "l-en"
1579
- msgstr ""
1580
-
1581
- #: ../../admin/lang/dynamic_strings.php:117
1582
- msgid "l-en-au"
1583
- msgstr ""
1584
-
1585
- #: ../../admin/lang/dynamic_strings.php:118
1586
- msgid "l-en-bz"
1587
- msgstr ""
1588
-
1589
- #: ../../admin/lang/dynamic_strings.php:119
1590
- msgid "l-en-ca"
1591
- msgstr ""
1592
-
1593
- #: ../../admin/lang/dynamic_strings.php:120
1594
- msgid "l-en-cb"
1595
- msgstr ""
1596
-
1597
- #: ../../admin/lang/dynamic_strings.php:121
1598
- msgid "l-en-gb"
1599
- msgstr ""
1600
-
1601
- #: ../../admin/lang/dynamic_strings.php:122
1602
- msgid "l-en-ie"
1603
- msgstr ""
1604
-
1605
- #: ../../admin/lang/dynamic_strings.php:123
1606
- msgid "l-en-jm"
1607
- msgstr ""
1608
-
1609
- #: ../../admin/lang/dynamic_strings.php:124
1610
- msgid "l-en-nz"
1611
- msgstr ""
1612
-
1613
- #: ../../admin/lang/dynamic_strings.php:125
1614
- msgid "l-en-ph"
1615
- msgstr ""
1616
-
1617
- #: ../../admin/lang/dynamic_strings.php:126
1618
- msgid "l-en-tt"
1619
- msgstr ""
1620
-
1621
- #: ../../admin/lang/dynamic_strings.php:127
1622
- msgid "l-en-us"
1623
- msgstr ""
1624
-
1625
- #: ../../admin/lang/dynamic_strings.php:128
1626
- msgid "l-en-za"
1627
- msgstr ""
1628
-
1629
- #: ../../admin/lang/dynamic_strings.php:129
1630
- msgid "l-en-zw"
1631
- msgstr ""
1632
-
1633
- #: ../../admin/lang/dynamic_strings.php:130
1634
- msgid "l-eo"
1635
- msgstr ""
1636
-
1637
- #: ../../admin/lang/dynamic_strings.php:131
1638
- msgid "l-es"
1639
- msgstr ""
1640
-
1641
- #: ../../admin/lang/dynamic_strings.php:132
1642
- msgid "l-es-ar"
1643
- msgstr ""
1644
-
1645
- #: ../../admin/lang/dynamic_strings.php:133
1646
- msgid "l-es-bo"
1647
- msgstr ""
1648
-
1649
- #: ../../admin/lang/dynamic_strings.php:134
1650
- msgid "l-es-cl"
1651
- msgstr ""
1652
-
1653
- #: ../../admin/lang/dynamic_strings.php:135
1654
- msgid "l-es-co"
1655
- msgstr ""
1656
-
1657
- #: ../../admin/lang/dynamic_strings.php:136
1658
- msgid "l-es-cr"
1659
- msgstr ""
1660
-
1661
- #: ../../admin/lang/dynamic_strings.php:137
1662
- msgid "l-es-do"
1663
- msgstr ""
1664
-
1665
- #: ../../admin/lang/dynamic_strings.php:138
1666
- msgid "l-es-ec"
1667
- msgstr ""
1668
-
1669
- #: ../../admin/lang/dynamic_strings.php:139
1670
- msgid "l-es-es"
1671
- msgstr ""
1672
-
1673
- #: ../../admin/lang/dynamic_strings.php:140
1674
- msgid "l-es-gt"
1675
- msgstr ""
1676
-
1677
- #: ../../admin/lang/dynamic_strings.php:141
1678
- msgid "l-es-hn"
1679
- msgstr ""
1680
-
1681
- #: ../../admin/lang/dynamic_strings.php:142
1682
- msgid "l-es-mx"
1683
- msgstr ""
1684
-
1685
- #: ../../admin/lang/dynamic_strings.php:143
1686
- msgid "l-es-ni"
1687
- msgstr ""
1688
-
1689
- #: ../../admin/lang/dynamic_strings.php:144
1690
- msgid "l-es-pa"
1691
- msgstr ""
1692
-
1693
- #: ../../admin/lang/dynamic_strings.php:145
1694
- msgid "l-es-pe"
1695
- msgstr ""
1696
-
1697
- #: ../../admin/lang/dynamic_strings.php:146
1698
- msgid "l-es-pr"
1699
- msgstr ""
1700
-
1701
- #: ../../admin/lang/dynamic_strings.php:147
1702
- msgid "l-es-py"
1703
- msgstr ""
1704
-
1705
- #: ../../admin/lang/dynamic_strings.php:148
1706
- msgid "l-es-sv"
1707
- msgstr ""
1708
-
1709
- #: ../../admin/lang/dynamic_strings.php:149
1710
- msgid "l-es-uy"
1711
- msgstr ""
1712
-
1713
- #: ../../admin/lang/dynamic_strings.php:150
1714
- msgid "l-es-ve"
1715
- msgstr ""
1716
-
1717
- #: ../../admin/lang/dynamic_strings.php:151
1718
- msgid "l-et"
1719
- msgstr ""
1720
-
1721
- #: ../../admin/lang/dynamic_strings.php:152
1722
- msgid "l-et-ee"
1723
- msgstr ""
1724
-
1725
- #: ../../admin/lang/dynamic_strings.php:153
1726
- msgid "l-eu"
1727
- msgstr ""
1728
-
1729
- #: ../../admin/lang/dynamic_strings.php:154
1730
- msgid "l-eu-es"
1731
- msgstr ""
1732
-
1733
- #: ../../admin/lang/dynamic_strings.php:155
1734
- msgid "l-fa"
1735
- msgstr ""
1736
-
1737
- #: ../../admin/lang/dynamic_strings.php:156
1738
- msgid "l-fa-ir"
1739
- msgstr ""
1740
-
1741
- #: ../../admin/lang/dynamic_strings.php:157
1742
- msgid "l-fi"
1743
- msgstr ""
1744
-
1745
- #: ../../admin/lang/dynamic_strings.php:158
1746
- msgid "l-fi-fi"
1747
- msgstr ""
1748
-
1749
- #: ../../admin/lang/dynamic_strings.php:159
1750
- msgid "l-fo"
1751
- msgstr ""
1752
-
1753
- #: ../../admin/lang/dynamic_strings.php:160
1754
- msgid "l-fo-fo"
1755
- msgstr ""
1756
-
1757
- #: ../../admin/lang/dynamic_strings.php:161
1758
- msgid "l-fr"
1759
- msgstr ""
1760
-
1761
- #: ../../admin/lang/dynamic_strings.php:162
1762
- msgid "l-fr-be"
1763
- msgstr ""
1764
-
1765
- #: ../../admin/lang/dynamic_strings.php:163
1766
- msgid "l-fr-ca"
1767
- msgstr ""
1768
-
1769
- #: ../../admin/lang/dynamic_strings.php:164
1770
- msgid "l-fr-ch"
1771
- msgstr ""
1772
-
1773
- #: ../../admin/lang/dynamic_strings.php:165
1774
- msgid "l-fr-fr"
1775
- msgstr ""
1776
-
1777
- #: ../../admin/lang/dynamic_strings.php:166
1778
- msgid "l-fr-lu"
1779
- msgstr ""
1780
-
1781
- #: ../../admin/lang/dynamic_strings.php:167
1782
- msgid "l-fr-mc"
1783
- msgstr ""
1784
-
1785
- #: ../../admin/lang/dynamic_strings.php:168
1786
- msgid "l-gl"
1787
- msgstr ""
1788
-
1789
- #: ../../admin/lang/dynamic_strings.php:169
1790
- msgid "l-gl-es"
1791
- msgstr ""
1792
-
1793
- #: ../../admin/lang/dynamic_strings.php:170
1794
- msgid "l-gu"
1795
- msgstr ""
1796
-
1797
- #: ../../admin/lang/dynamic_strings.php:171
1798
- msgid "l-gu-in"
1799
- msgstr ""
1800
-
1801
- #: ../../admin/lang/dynamic_strings.php:172
1802
- msgid "l-he"
1803
- msgstr ""
1804
-
1805
- #: ../../admin/lang/dynamic_strings.php:173
1806
- msgid "l-he-il"
1807
- msgstr ""
1808
-
1809
- #: ../../admin/lang/dynamic_strings.php:174
1810
- msgid "l-hi"
1811
- msgstr ""
1812
-
1813
- #: ../../admin/lang/dynamic_strings.php:175
1814
- msgid "l-hi-in"
1815
- msgstr ""
1816
-
1817
- #: ../../admin/lang/dynamic_strings.php:176
1818
- msgid "l-hr"
1819
- msgstr ""
1820
-
1821
- #: ../../admin/lang/dynamic_strings.php:177
1822
- msgid "l-hr-ba"
1823
- msgstr ""
1824
-
1825
- #: ../../admin/lang/dynamic_strings.php:178
1826
- msgid "l-hr-hr"
1827
- msgstr ""
1828
-
1829
- #: ../../admin/lang/dynamic_strings.php:179
1830
- msgid "l-hu"
1831
- msgstr ""
1832
-
1833
- #: ../../admin/lang/dynamic_strings.php:180
1834
- msgid "l-hu-hu"
1835
- msgstr ""
1836
-
1837
- #: ../../admin/lang/dynamic_strings.php:181
1838
- msgid "l-hy"
1839
- msgstr ""
1840
-
1841
- #: ../../admin/lang/dynamic_strings.php:182
1842
- msgid "l-hy-am"
1843
- msgstr ""
1844
-
1845
- #: ../../admin/lang/dynamic_strings.php:183
1846
- msgid "l-id"
1847
- msgstr ""
1848
-
1849
- #: ../../admin/lang/dynamic_strings.php:184
1850
- msgid "l-id-id"
1851
- msgstr ""
1852
-
1853
- #: ../../admin/lang/dynamic_strings.php:185
1854
- msgid "l-is"
1855
- msgstr ""
1856
-
1857
- #: ../../admin/lang/dynamic_strings.php:186
1858
- msgid "l-is-is"
1859
- msgstr ""
1860
-
1861
- #: ../../admin/lang/dynamic_strings.php:187
1862
- msgid "l-it"
1863
- msgstr ""
1864
-
1865
- #: ../../admin/lang/dynamic_strings.php:188
1866
- msgid "l-it-ch"
1867
- msgstr ""
1868
-
1869
- #: ../../admin/lang/dynamic_strings.php:189
1870
- msgid "l-it-it"
1871
- msgstr ""
1872
-
1873
- #: ../../admin/lang/dynamic_strings.php:190
1874
- msgid "l-ja"
1875
- msgstr ""
1876
-
1877
- #: ../../admin/lang/dynamic_strings.php:191
1878
- msgid "l-ja-jp"
1879
- msgstr ""
1880
-
1881
- #: ../../admin/lang/dynamic_strings.php:192
1882
- msgid "l-ka"
1883
- msgstr ""
1884
-
1885
- #: ../../admin/lang/dynamic_strings.php:193
1886
- msgid "l-ka-ge"
1887
- msgstr ""
1888
-
1889
- #: ../../admin/lang/dynamic_strings.php:194
1890
- msgid "l-kk"
1891
- msgstr ""
1892
-
1893
- #: ../../admin/lang/dynamic_strings.php:195
1894
- msgid "l-kk-kz"
1895
- msgstr ""
1896
-
1897
- #: ../../admin/lang/dynamic_strings.php:196
1898
- msgid "l-kn"
1899
- msgstr ""
1900
-
1901
- #: ../../admin/lang/dynamic_strings.php:197
1902
- msgid "l-kn-in"
1903
- msgstr ""
1904
-
1905
- #: ../../admin/lang/dynamic_strings.php:198
1906
- msgid "l-ko"
1907
- msgstr ""
1908
-
1909
- #: ../../admin/lang/dynamic_strings.php:199
1910
- msgid "l-ko-kr"
1911
- msgstr ""
1912
-
1913
- #: ../../admin/lang/dynamic_strings.php:200
1914
- msgid "l-kok"
1915
- msgstr ""
1916
-
1917
- #: ../../admin/lang/dynamic_strings.php:201
1918
- msgid "l-kok-in"
1919
- msgstr ""
1920
-
1921
- #: ../../admin/lang/dynamic_strings.php:202
1922
- msgid "l-ky"
1923
- msgstr ""
1924
-
1925
- #: ../../admin/lang/dynamic_strings.php:203
1926
- msgid "l-ky-kg"
1927
- msgstr ""
1928
-
1929
- #: ../../admin/lang/dynamic_strings.php:204
1930
- msgid "l-lt"
1931
- msgstr ""
1932
-
1933
- #: ../../admin/lang/dynamic_strings.php:205
1934
- msgid "l-lt-lt"
1935
- msgstr ""
1936
-
1937
- #: ../../admin/lang/dynamic_strings.php:206
1938
- msgid "l-lv"
1939
- msgstr ""
1940
-
1941
- #: ../../admin/lang/dynamic_strings.php:207
1942
- msgid "l-lv-lv"
1943
- msgstr ""
1944
-
1945
- #: ../../admin/lang/dynamic_strings.php:208
1946
- msgid "l-mi"
1947
- msgstr ""
1948
-
1949
- #: ../../admin/lang/dynamic_strings.php:209
1950
- msgid "l-mi-nz"
1951
- msgstr ""
1952
-
1953
- #: ../../admin/lang/dynamic_strings.php:210
1954
- msgid "l-mk"
1955
- msgstr ""
1956
-
1957
- #: ../../admin/lang/dynamic_strings.php:211
1958
- msgid "l-mk-ml"
1959
- msgstr ""
1960
-
1961
- #: ../../admin/lang/dynamic_strings.php:212
1962
- msgid "l-mn"
1963
- msgstr ""
1964
-
1965
- #: ../../admin/lang/dynamic_strings.php:213
1966
- msgid "l-mn-mn"
1967
- msgstr ""
1968
-
1969
- #: ../../admin/lang/dynamic_strings.php:214
1970
- msgid "l-mr"
1971
- msgstr ""
1972
-
1973
- #: ../../admin/lang/dynamic_strings.php:215
1974
- msgid "l-mr-in"
1975
- msgstr ""
1976
-
1977
- #: ../../admin/lang/dynamic_strings.php:216
1978
- msgid "l-ms"
1979
- msgstr ""
1980
-
1981
- #: ../../admin/lang/dynamic_strings.php:217
1982
- msgid "l-ms-bn"
1983
- msgstr ""
1984
-
1985
- #: ../../admin/lang/dynamic_strings.php:218
1986
- msgid "l-ms-my"
1987
- msgstr ""
1988
-
1989
- #: ../../admin/lang/dynamic_strings.php:219
1990
- msgid "l-mt"
1991
- msgstr ""
1992
-
1993
- #: ../../admin/lang/dynamic_strings.php:220
1994
- msgid "l-mt-mt"
1995
- msgstr ""
1996
-
1997
- #: ../../admin/lang/dynamic_strings.php:221
1998
- msgid "l-nb"
1999
- msgstr ""
2000
-
2001
- #: ../../admin/lang/dynamic_strings.php:222
2002
- msgid "l-nb-no"
2003
- msgstr ""
2004
-
2005
- #: ../../admin/lang/dynamic_strings.php:223
2006
- msgid "l-nl"
2007
- msgstr ""
2008
-
2009
- #: ../../admin/lang/dynamic_strings.php:224
2010
- msgid "l-nl-be"
2011
- msgstr ""
2012
-
2013
- #: ../../admin/lang/dynamic_strings.php:225
2014
- msgid "l-nl-nl"
2015
- msgstr ""
2016
-
2017
- #: ../../admin/lang/dynamic_strings.php:226
2018
- msgid "l-nn-no"
2019
- msgstr ""
2020
-
2021
- #: ../../admin/lang/dynamic_strings.php:227
2022
- msgid "l-ns"
2023
- msgstr ""
2024
-
2025
- #: ../../admin/lang/dynamic_strings.php:228
2026
- msgid "l-ns-za"
2027
- msgstr ""
2028
-
2029
- #: ../../admin/lang/dynamic_strings.php:229
2030
- msgid "l-pa"
2031
- msgstr ""
2032
-
2033
- #: ../../admin/lang/dynamic_strings.php:230
2034
- msgid "l-pa-in"
2035
- msgstr ""
2036
-
2037
- #: ../../admin/lang/dynamic_strings.php:231
2038
- msgid "l-pl"
2039
- msgstr ""
2040
-
2041
- #: ../../admin/lang/dynamic_strings.php:232
2042
- msgid "l-pl-pl"
2043
- msgstr ""
2044
-
2045
- #: ../../admin/lang/dynamic_strings.php:233
2046
- msgid "l-ps"
2047
- msgstr ""
2048
-
2049
- #: ../../admin/lang/dynamic_strings.php:234
2050
- msgid "l-ps-ar"
2051
- msgstr ""
2052
-
2053
- #: ../../admin/lang/dynamic_strings.php:235
2054
- msgid "l-pt"
2055
- msgstr ""
2056
-
2057
- #: ../../admin/lang/dynamic_strings.php:236
2058
- msgid "l-pt-br"
2059
- msgstr ""
2060
-
2061
- #: ../../admin/lang/dynamic_strings.php:237
2062
- msgid "l-pt-pt"
2063
- msgstr ""
2064
-
2065
- #: ../../admin/lang/dynamic_strings.php:238
2066
- msgid "l-qu"
2067
- msgstr ""
2068
-
2069
- #: ../../admin/lang/dynamic_strings.php:239
2070
- msgid "l-qu-bo"
2071
- msgstr ""
2072
-
2073
- #: ../../admin/lang/dynamic_strings.php:240
2074
- msgid "l-qu-ec"
2075
- msgstr ""
2076
-
2077
- #: ../../admin/lang/dynamic_strings.php:241
2078
- msgid "l-qu-pe"
2079
- msgstr ""
2080
-
2081
- #: ../../admin/lang/dynamic_strings.php:242
2082
- msgid "l-ro"
2083
- msgstr ""
2084
-
2085
- #: ../../admin/lang/dynamic_strings.php:243
2086
- msgid "l-ro-ro"
2087
- msgstr ""
2088
-
2089
- #: ../../admin/lang/dynamic_strings.php:244
2090
- msgid "l-ru"
2091
- msgstr ""
2092
-
2093
- #: ../../admin/lang/dynamic_strings.php:245
2094
- msgid "l-ru-ru"
2095
- msgstr ""
2096
-
2097
- #: ../../admin/lang/dynamic_strings.php:246
2098
- msgid "l-sa"
2099
- msgstr ""
2100
-
2101
- #: ../../admin/lang/dynamic_strings.php:247
2102
- msgid "l-sa-in"
2103
- msgstr ""
2104
-
2105
- #: ../../admin/lang/dynamic_strings.php:248
2106
- msgid "l-se"
2107
- msgstr ""
2108
-
2109
- #: ../../admin/lang/dynamic_strings.php:249
2110
- msgid "l-se-fi"
2111
- msgstr ""
2112
-
2113
- #: ../../admin/lang/dynamic_strings.php:250
2114
- msgid "l-se-no"
2115
- msgstr ""
2116
-
2117
- #: ../../admin/lang/dynamic_strings.php:251
2118
- msgid "l-se-se"
2119
- msgstr ""
2120
-
2121
- #: ../../admin/lang/dynamic_strings.php:252
2122
- msgid "l-sk"
2123
- msgstr ""
2124
-
2125
- #: ../../admin/lang/dynamic_strings.php:253
2126
- msgid "l-sk-sk"
2127
- msgstr ""
2128
-
2129
- #: ../../admin/lang/dynamic_strings.php:254
2130
- msgid "l-sl"
2131
- msgstr ""
2132
-
2133
- #: ../../admin/lang/dynamic_strings.php:255
2134
- msgid "l-sl-si"
2135
- msgstr ""
2136
-
2137
- #: ../../admin/lang/dynamic_strings.php:256
2138
- msgid "l-sq"
2139
- msgstr ""
2140
-
2141
- #: ../../admin/lang/dynamic_strings.php:257
2142
- msgid "l-sq-al"
2143
- msgstr ""
2144
-
2145
- #: ../../admin/lang/dynamic_strings.php:258
2146
- msgid "l-sr-ba"
2147
- msgstr ""
2148
-
2149
- #: ../../admin/lang/dynamic_strings.php:259
2150
- msgid "l-sr-sp"
2151
- msgstr ""
2152
-
2153
- #: ../../admin/lang/dynamic_strings.php:260
2154
- msgid "l-sv"
2155
- msgstr ""
2156
-
2157
- #: ../../admin/lang/dynamic_strings.php:261
2158
- msgid "l-sv-fi"
2159
- msgstr ""
2160
-
2161
- #: ../../admin/lang/dynamic_strings.php:262
2162
- msgid "l-sv-se"
2163
- msgstr ""
2164
-
2165
- #: ../../admin/lang/dynamic_strings.php:263
2166
- msgid "l-sw"
2167
- msgstr ""
2168
-
2169
- #: ../../admin/lang/dynamic_strings.php:264
2170
- msgid "l-sw-ke"
2171
- msgstr ""
2172
-
2173
- #: ../../admin/lang/dynamic_strings.php:265
2174
- msgid "l-ta"
2175
- msgstr ""
2176
-
2177
- #: ../../admin/lang/dynamic_strings.php:266
2178
- msgid "l-ta-in"
2179
- msgstr ""
2180
-
2181
- #: ../../admin/lang/dynamic_strings.php:267
2182
- msgid "l-te"
2183
- msgstr ""
2184
-
2185
- #: ../../admin/lang/dynamic_strings.php:268
2186
- msgid "l-te-in"
2187
- msgstr ""
2188
-
2189
- #: ../../admin/lang/dynamic_strings.php:269
2190
- msgid "l-th"
2191
- msgstr ""
2192
-
2193
- #: ../../admin/lang/dynamic_strings.php:270
2194
- msgid "l-th-th"
2195
- msgstr ""
2196
-
2197
- #: ../../admin/lang/dynamic_strings.php:271
2198
- msgid "l-tl"
2199
- msgstr ""
2200
-
2201
- #: ../../admin/lang/dynamic_strings.php:272
2202
- msgid "l-tl-ph"
2203
- msgstr ""
2204
-
2205
- #: ../../admin/lang/dynamic_strings.php:273
2206
- msgid "l-tn"
2207
- msgstr ""
2208
-
2209
- #: ../../admin/lang/dynamic_strings.php:274
2210
- msgid "l-tn-za"
2211
- msgstr ""
2212
-
2213
- #: ../../admin/lang/dynamic_strings.php:275
2214
- msgid "l-tr"
2215
- msgstr ""
2216
-
2217
- #: ../../admin/lang/dynamic_strings.php:276
2218
- msgid "l-tr-tr"
2219
- msgstr ""
2220
-
2221
- #: ../../admin/lang/dynamic_strings.php:277
2222
- msgid "l-tt"
2223
- msgstr ""
2224
-
2225
- #: ../../admin/lang/dynamic_strings.php:278
2226
- msgid "l-tt-ru"
2227
- msgstr ""
2228
-
2229
- #: ../../admin/lang/dynamic_strings.php:279
2230
- msgid "l-ts"
2231
- msgstr ""
2232
-
2233
- #: ../../admin/lang/dynamic_strings.php:280
2234
- msgid "l-uk"
2235
- msgstr ""
2236
-
2237
- #: ../../admin/lang/dynamic_strings.php:281
2238
- msgid "l-uk-ua"
2239
- msgstr ""
2240
-
2241
- #: ../../admin/lang/dynamic_strings.php:282
2242
- msgid "l-ur"
2243
- msgstr ""
2244
-
2245
- #: ../../admin/lang/dynamic_strings.php:283
2246
- msgid "l-ur-pk"
2247
- msgstr ""
2248
-
2249
- #: ../../admin/lang/dynamic_strings.php:284
2250
- msgid "l-uz"
2251
- msgstr ""
2252
-
2253
- #: ../../admin/lang/dynamic_strings.php:285
2254
- msgid "l-uz-uz"
2255
- msgstr ""
2256
-
2257
- #: ../../admin/lang/dynamic_strings.php:286
2258
- msgid "l-vi"
2259
- msgstr ""
2260
-
2261
- #: ../../admin/lang/dynamic_strings.php:287
2262
- msgid "l-vi-vn"
2263
- msgstr ""
2264
-
2265
- #: ../../admin/lang/dynamic_strings.php:288
2266
- msgid "l-xh"
2267
- msgstr ""
2268
-
2269
- #: ../../admin/lang/dynamic_strings.php:289
2270
- msgid "l-xh-za"
2271
- msgstr ""
2272
-
2273
- #: ../../admin/lang/dynamic_strings.php:290
2274
- msgid "l-zh"
2275
- msgstr ""
2276
-
2277
- #: ../../admin/lang/dynamic_strings.php:291
2278
- msgid "l-zh-cn"
2279
- msgstr ""
2280
-
2281
- #: ../../admin/lang/dynamic_strings.php:292
2282
- msgid "l-zh-hk"
2283
- msgstr ""
2284
-
2285
- #: ../../admin/lang/dynamic_strings.php:293
2286
- msgid "l-zh-mo"
2287
- msgstr ""
2288
-
2289
- #: ../../admin/lang/dynamic_strings.php:294
2290
- msgid "l-zh-sg"
2291
- msgstr ""
2292
-
2293
- #: ../../admin/lang/dynamic_strings.php:295
2294
- msgid "l-zh-tw"
2295
- msgstr ""
2296
-
2297
- #: ../../admin/lang/dynamic_strings.php:296
2298
- msgid "l-zu"
2299
- msgstr ""
2300
-
2301
- #: ../../admin/lang/dynamic_strings.php:297
2302
- msgid "l-zu-za"
2303
- msgstr ""
2304
-
2305
- #: ../../admin/lang/dynamic_strings.php:298
2306
- #: ../../admin/view/wp-slimstat-reports.php:505
2307
- msgid "l-"
2308
- msgstr ""
2309
-
2310
- #: ../../admin/lang/dynamic_strings.php:299
2311
- msgid "l-empty"
2312
- msgstr "ناشناخته"
2313
-
2314
- #: ../../admin/lang/dynamic_strings.php:300
2315
- msgid "l-xx"
2316
- msgstr ""
2317
-
2318
- #: ../../admin/lang/dynamic_strings.php:301
2319
- msgid "c-xy"
2320
- msgstr "آدرس محلی"
2321
-
2322
- #: ../../admin/view/index.php:24
2323
- msgid "is between (x,y)"
2324
- msgstr ""
2325
-
2326
- #: ../../admin/view/index.php:44
2327
- msgid "Load"
2328
- msgstr ""
2329
-
2330
- #: ../../admin/view/index.php:64 ../../admin/view/wp-slimstat-reports.php:821
2331
- msgid "Today"
2332
- msgstr "امروز‍"
2333
-
2334
- #: ../../admin/view/index.php:65 ../../admin/view/wp-slimstat-reports.php:822
2335
- msgid "Yesterday"
2336
- msgstr "دیروز"
2337
-
2338
- #: ../../admin/view/index.php:66
2339
- msgid "Last 7 Days"
2340
- msgstr "۷ روز اخیر"
2341
-
2342
- #: ../../admin/view/index.php:67
2343
- #, fuzzy
2344
- msgid "Last 60 Days"
2345
- msgstr "۳۰ روز اخیر"
2346
-
2347
- #: ../../admin/view/index.php:68
2348
- msgid "Last 90 Days"
2349
- msgstr "۹۰ روز اخیر"
2350
-
2351
- #: ../../admin/view/index.php:69
2352
- #, fuzzy
2353
- msgid "This Year So Far"
2354
- msgstr "امسال"
2355
-
2356
- #: ../../admin/view/index.php:70
2357
- msgid "Date Range"
2358
- msgstr "محدوده زمانی"
2359
-
2360
- #: ../../admin/view/index.php:72 ../../admin/view/wp-slimstat-db.php:70
2361
- msgid "Day"
2362
- msgstr "روز"
2363
-
2364
- #: ../../admin/view/index.php:82 ../../admin/view/wp-slimstat-db.php:71
2365
- msgid "Month"
2366
- msgstr "ماه"
2367
-
2368
- #: ../../admin/view/index.php:91 ../../admin/view/wp-slimstat-db.php:72
2369
- msgid "Year"
2370
- msgstr "سال"
2371
-
2372
- #: ../../admin/view/index.php:92 ../../admin/view/wp-slimstat-db.php:69
2373
- msgid "Hour"
2374
- msgstr "ساعت"
2375
-
2376
- #: ../../admin/view/index.php:93
2377
- msgid "Min"
2378
- msgstr ""
2379
-
2380
- #: ../../admin/view/index.php:101 ../../admin/view/wp-slimstat-db.php:75
2381
- msgid "hours"
2382
- msgstr ""
2383
-
2384
- #: ../../admin/view/index.php:102
2385
- msgid "mins"
2386
- msgstr ""
2387
-
2388
- #: ../../admin/view/index.php:110
2389
- #, fuzzy
2390
- msgid "Reset Filters"
2391
- msgstr "فیلترهای تاریخ"
2392
-
2393
- #: ../../admin/view/index.php:151
2394
- msgid "Your report here"
2395
- msgstr "گزارش شما این‌جا"
2396
-
2397
- #: ../../admin/view/index.php:153
2398
- #, fuzzy
2399
- msgid ""
2400
- "Yes, you can! Create and view your personalized analytics for Slimstat. Just "
2401
- "write a new plugin that retrieves the desired information from the database "
2402
- "and then hook it to the action <code>wp_slimstat_custom_report</code>. For "
2403
- "more information, visit my <a href=\"http://wordpress.org/tags/wp-slimstat?"
2404
- "forum_id=10\" target=\"_blank\">support forum</a>."
2405
- msgstr ""
2406
- " شما میتوانید گزارش آمار شخصی ایجاد کنید. یک افزونه بنویسید که اطلاعات مورد "
2407
- "نظر را از پایگاه داده را به <code>wp_slimstat_custom_report</code> گزارش "
2408
- "قلاب میکند.برای اطلاع بیشتر به صفحه<a href=\"http://wordpress.org/tags/wp-"
2409
- "slimstat?forum_id=10\" target=\"_blank\"> پشتیبانی </a>مراجعه کنید."
2410
-
2411
- #: ../../admin/view/index.php:167 ../../admin/view/wp-slimstat-reports.php:812
2412
- #: ../../admin/view/wp-slimstat-reports.php:914
2413
- #: ../../admin/view/wp-slimstat-reports.php:1137
2414
- msgid "Pageviews"
2415
- msgstr "مشاهدات صفحات"
2416
-
2417
- #: ../../admin/view/index.php:170
2418
- #, fuzzy
2419
- msgid ""
2420
- "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2421
- "Slimstat leverages this information to identify returning visitors. Please "
2422
- "note that visitors also include registered users."
2423
- msgstr ""
2424
- "وقتی کاربران در تارنامه نظر ثبت می‌کنند، وردپرس به آن‌ها یک کلوچک اختصاص می‌دهد."
2425
- "WP SlimStat از این اطلاعات برای شناسایی «بیننده دوباره» استفاده میکند. در "
2426
- "نظر داشته باشید که بیننده ها شامل کاربران ثبت شده نیز میباشد."
2427
-
2428
- #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2429
- #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2430
- msgid "Color codes"
2431
- msgstr "علامت رنگی"
2432
-
2433
- #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2434
- #, fuzzy
2435
- msgid "From search result page"
2436
- msgstr "از صفحه نتایج جستجو"
2437
-
2438
- #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2439
- #: ../../admin/wp-slimstat-admin.php:806
2440
- msgid "Known Visitor"
2441
- msgstr "بیننده آشنا"
2442
-
2443
- #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2444
- #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2445
- msgid "Known Users"
2446
- msgstr "کاربران آشنا"
2447
-
2448
- #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2449
- #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2450
- msgid "Other Humans"
2451
- msgstr "دیگران"
2452
-
2453
- #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2454
- msgid "Bot or Crawler"
2455
- msgstr "روبات یا خزنده"
2456
-
2457
- #: ../../admin/view/index.php:178
2458
- msgid "Keywords used by your visitors to find your website on a search engine."
2459
- msgstr "عبارات کلیدی در موتورهای جستجو که بیننده را به پایگاه شما را یافته‌اند."
2460
-
2461
- #: ../../admin/view/index.php:181
2462
- #, fuzzy
2463
- msgid ""
2464
- "Slimstat retrieves live information from Alexa, Facebook and Google, to "
2465
- "measures your site's rankings. Values are updated every 12 hours. Filters "
2466
- "set above don't apply to this report."
2467
- msgstr ""
2468
- "با کسب اطلاعات خود از Google، Facebook و یا Alexa، رتبه خود را محک بزنید. "
2469
- "مقادیر هر ۱۲ ساعت به روز میشوند. صافی ها بالا در این گزارش کاربرد نمیشوند. "
2470
-
2471
- #: ../../admin/view/index.php:184
2472
- msgid "Human Visits"
2473
- msgstr "بازدیدهای انسانی"
2474
-
2475
- #: ../../admin/view/index.php:187
2476
- #, fuzzy
2477
- msgid ""
2478
- "Internet Service Provider: a company which provides other companies or "
2479
- "individuals with access to the Internet. Your DSL or cable internet service "
2480
- "is provided to you by your ISP.<br><br>You can ignore specific IP addresses "
2481
- "by setting the corresponding filter under Settings > Slimstat > Filters."
2482
- msgstr ""
2483
- "اینترنت توسط یک شرکت خدماتی (ISP) برای شما فراهم میشود. میتوانید این نشانی "
2484
- "ای پی را با وارد کردن صافی نادیده بگیرید."
2485
-
2486
- #: ../../admin/view/index.php:190
2487
- #, fuzzy
2488
- msgid ""
2489
- "You can configure Slimstat to ignore a specific Country by setting the "
2490
- "corresponding filter under Settings > Slimstat > Filters."
2491
- msgstr ""
2492
- "میتوانید تنظیمات برنامه برای نادیده گرفتن بعضی کشورها را تغییر دهید:Settings "
2493
- "> SlimStat > Filters"
2494
-
2495
- #: ../../admin/view/index.php:193
2496
- msgid ""
2497
- "This report shows you what user agent families (no version considered) are "
2498
- "popular among your visitors."
2499
- msgstr ""
2500
- "این گزارش نشانگر عامل کابر (بدون در نظر گرفتن نسخه) که در میان بیننده ها "
2501
- "محبوب تر هستند میباشد."
2502
-
2503
- #: ../../admin/view/index.php:196
2504
- msgid ""
2505
- "This report shows you what operating system families (no version considered) "
2506
- "are popular among your visitors."
2507
- msgstr ""
2508
- "این گزارش نشانگر محیط عامل هایی (بدون در نظر گرفتن نسخه) که در میان بیننده "
2509
- "ها محبوب تر هستند میباشد."
2510
-
2511
- #: ../../admin/view/index.php:199 ../../admin/view/wp-slimstat-reports.php:38
2512
- #: ../../admin/wp-slimstat-admin.php:509 ../../admin/wp-slimstat-admin.php:526
2513
- #: ../../wp-slimstat.php:1348
2514
- msgid "Traffic Sources"
2515
- msgstr "منابع ترافیک"
2516
-
2517
- #: ../../admin/view/index.php:202
2518
- msgid "Average Pageviews per Visit"
2519
- msgstr "میان‌گین مشاهده صفحات در هر بازدید"
2520
-
2521
- #: ../../admin/view/index.php:205
2522
- msgid ""
2523
- "A <em>bounce page</em> is a single-page visit, or visit in which the person "
2524
- "left your site from the entrance (landing) page."
2525
- msgstr ""
2526
- " «صفحه وازده» یک «تک-صفحه» میباشد، یا آخرین صفحه ی دیده شده قبل از آنکه "
2527
- "بیننده پایگاه را ترک کند. "
2528
-
2529
- #: ../../admin/view/index.php:208
2530
- msgid "Searches performed using Wordpress' built-in search functionality."
2531
- msgstr "جستجوهایی که توسط جستجوی داخلی Wordpress انجام میشوند."
2532
-
2533
- #: ../../admin/view/index.php:212
2534
- msgid ""
2535
- "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
2536
- "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
2537
- "link has an ID attribute associated to it."
2538
- msgstr ""
2539
- "جزئيات پیوند نشان میدهد که چندمین پیوند فشار داده شده است. <em>ID:xx</em> "
2540
- "هنگامی نشان داده میشود که پیوند مرتبط شناسه داشته باشد."
2541
-
2542
- #: ../../admin/view/index.php:215
2543
- msgid ""
2544
- "This report lists any <em>event</em> occurred on your website. Please refer "
2545
- "to the FAQ for more information on how to leverage this functionality."
2546
- msgstr ""
2547
- "این گزارش تمامی رویداد های پایگاه شما را فهرست میکند. لطفا برای کسب اطلاع "
2548
- "بیشتر در این مورد به بخش پرسش و پاسخ مراجعه کنید."
2549
-
2550
- #: ../../admin/view/index.php:218
2551
- msgid ""
2552
- "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2553
- "this report is not affected by the filters set here above."
2554
- msgstr ""
2555
- "محتوای شما در یک نگاه: ارسال ها، نظرها و غیره. این گزارش با صافی های بالا "
2556
- "کاربرد نمیشود."
2557
-
2558
- #: ../../admin/view/right-now.php:8
2559
- msgid "Human"
2560
- msgstr "انسان"
2561
-
2562
- #: ../../admin/view/right-now.php:8
2563
- msgid "Bot/Crawler"
2564
- msgstr "روبات یا خزنده"
2565
-
2566
- #: ../../admin/view/right-now.php:8
2567
- msgid "Mobile Device"
2568
- msgstr "همراه"
2569
-
2570
- #: ../../admin/view/right-now.php:8
2571
- msgid "Syndication Reader"
2572
- msgstr "پیوند ریدر"
2573
-
2574
- #: ../../admin/view/right-now.php:30
2575
- #: ../../admin/view/wp-slimstat-reports.php:440
2576
- #: ../../admin/view/wp-slimstat-reports.php:703
2577
- msgid "No data to display"
2578
- msgstr "داده‌ای برای نمایش نیست"
2579
-
2580
- # Unknown
2581
- #: ../../admin/view/right-now.php:56
2582
- #: ../../admin/view/wp-slimstat-reports.php:493
2583
- #: ../../admin/view/wp-slimstat-reports.php:746
2584
- #: ../../admin/view/wp-slimstat-reports.php:1025
2585
- msgid "c-"
2586
- msgstr "Unknown"
2587
-
2588
- #: ../../admin/view/right-now.php:109 ../../admin/view/wp-slimstat-db.php:61
2589
- #: ../../admin/wp-slimstat-admin.php:808 ../../admin/wp-slimstat-admin.php:850
2590
- msgid "Originating IP"
2591
- msgstr "آی‌پی منشا"
2592
-
2593
- #: ../../admin/view/right-now.php:130
2594
- msgid "Server Latency and Page Speed in milliseconds"
2595
- msgstr ""
2596
-
2597
- #: ../../admin/view/right-now.php:130
2598
- msgid "SL"
2599
- msgstr ""
2600
-
2601
- #: ../../admin/view/right-now.php:130
2602
- msgid "PS"
2603
- msgstr ""
2604
-
2605
- #: ../../admin/view/right-now.php:142
2606
- #: ../../admin/view/wp-slimstat-reports.php:552
2607
- #: ../../admin/view/wp-slimstat-reports.php:556
2608
- #: ../../admin/view/wp-slimstat-reports.php:728
2609
- #: ../../admin/view/wp-slimstat-reports.php:781
2610
- msgid "Open this URL in a new window"
2611
- msgstr "نشانی را در پنجره جدید باز کن"
2612
-
2613
- #: ../../admin/view/right-now.php:145
2614
- msgid "Local search results page"
2615
- msgstr "صفحه نتایج جستجوی محلی"
2616
-
2617
- #: ../../admin/view/right-now.php:150 ../../admin/view/wp-slimstat-db.php:40
2618
- #: ../../admin/wp-slimstat-admin.php:811 ../../admin/wp-slimstat-admin.php:827
2619
- msgid "Search Terms"
2620
- msgstr "عبارت‌های جستجو"
2621
-
2622
- #: ../../admin/view/right-now.php:153
2623
- msgid "Open this referrer in a new window"
2624
- msgstr "این ارجاعی دهنده را در پنجره جدید باز کن"
2625
-
2626
- #: ../../admin/view/right-now.php:154
2627
- msgid "Open this outbound link in a new window"
2628
- msgstr " پیوندهای بیرونی را در پنجره جدید باز کن"
2629
-
2630
- #: ../../admin/view/right-now.php:155
2631
- msgid "Date and Time"
2632
- msgstr "روز و ساعت"
2633
-
2634
- #: ../../admin/view/right-now.php:156
2635
- msgid "Content Type"
2636
- msgstr " نوع محتوا"
2637
-
2638
- #: ../../admin/view/wp-slimstat-db.php:37
2639
- #: ../../admin/wp-slimstat-admin.php:824
2640
- msgid "Browser"
2641
- msgstr "مرورگر"
2642
-
2643
- #: ../../admin/view/wp-slimstat-db.php:38
2644
- #: ../../admin/view/wp-slimstat-reports.php:492
2645
- #: ../../admin/wp-slimstat-admin.php:825
2646
- msgid "Country Code"
2647
- msgstr "علامت کشور"
2648
-
2649
- #: ../../admin/view/wp-slimstat-db.php:39
2650
- msgid "IP Address"
2651
- msgstr "نشانی آی‌پی"
2652
-
2653
- #: ../../admin/view/wp-slimstat-db.php:41
2654
- #: ../../admin/view/wp-slimstat-reports.php:504
2655
- #: ../../admin/wp-slimstat-admin.php:828
2656
- msgid "Language Code"
2657
- msgstr "علامت زبان"
2658
-
2659
- #: ../../admin/view/wp-slimstat-db.php:42
2660
- #: ../../admin/wp-slimstat-admin.php:829
2661
- msgid "Operating System"
2662
- msgstr "سامانه عامل"
2663
-
2664
- #: ../../admin/view/wp-slimstat-db.php:43
2665
- #: ../../admin/wp-slimstat-admin.php:830
2666
- msgid "Permalink"
2667
- msgstr "پیوند یکتا"
2668
-
2669
- #: ../../admin/view/wp-slimstat-db.php:44
2670
- msgid "Domain"
2671
- msgstr "دامنه"
2672
-
2673
- #: ../../admin/view/wp-slimstat-db.php:45
2674
- #: ../../admin/wp-slimstat-admin.php:831
2675
- msgid "Referer"
2676
- msgstr "ارجاع‌دهنده"
2677
-
2678
- #: ../../admin/view/wp-slimstat-db.php:46
2679
- #: ../../admin/wp-slimstat-admin.php:832
2680
- msgid "Visitor's Name"
2681
- msgstr "نام بیننده"
2682
-
2683
- #: ../../admin/view/wp-slimstat-db.php:47
2684
- msgid "Page Speed"
2685
- msgstr ""
2686
-
2687
- #: ../../admin/view/wp-slimstat-db.php:49
2688
- msgid "-- Advanced filters --"
2689
- msgstr "-- فیلترهای پیش‌رفته --"
2690
-
2691
- #: ../../admin/view/wp-slimstat-db.php:50
2692
- #: ../../admin/view/wp-slimstat-reports.php:64
2693
- msgid "Browser Capabilities"
2694
- msgstr "قابلیت‌های مرورگر"
2695
-
2696
- #: ../../admin/view/wp-slimstat-db.php:51
2697
- #: ../../admin/wp-slimstat-admin.php:843
2698
- msgid "Browser Version"
2699
- msgstr "نسخه مرورگر"
2700
-
2701
- #: ../../admin/view/wp-slimstat-db.php:52
2702
- #: ../../admin/wp-slimstat-admin.php:844
2703
- msgid "Browser Type"
2704
- msgstr "نوع مرورگر"
2705
-
2706
- #: ../../admin/view/wp-slimstat-db.php:53
2707
- #: ../../admin/wp-slimstat-admin.php:813
2708
- msgid "User Agent"
2709
- msgstr "مرورگرهای کاربران"
2710
-
2711
- #: ../../admin/view/wp-slimstat-db.php:54
2712
- #: ../../admin/wp-slimstat-admin.php:845
2713
- msgid "Color Depth"
2714
- msgstr "عمق رنگ"
2715
-
2716
- #: ../../admin/view/wp-slimstat-db.php:55
2717
- #: ../../admin/wp-slimstat-admin.php:846
2718
- msgid "CSS Version"
2719
- msgstr "نسخه سی‌اس‌اس "
2720
-
2721
- #: ../../admin/view/wp-slimstat-db.php:56
2722
- #: ../../admin/wp-slimstat-admin.php:847
2723
- msgid "Pageview Attributes"
2724
- msgstr "خصوصیات بازدید"
2725
-
2726
- #: ../../admin/view/wp-slimstat-db.php:57
2727
- msgid "Server Latency"
2728
- msgstr ""
2729
-
2730
- #: ../../admin/view/wp-slimstat-db.php:58
2731
- #: ../../admin/wp-slimstat-admin.php:814
2732
- msgid "Outbound Link"
2733
- msgstr "پیوند بیرونی"
2734
-
2735
- #: ../../admin/view/wp-slimstat-db.php:59
2736
- #: ../../admin/wp-slimstat-admin.php:848
2737
- msgid "Post Author"
2738
- msgstr "نویسنده مطلب"
2739
-
2740
- #: ../../admin/view/wp-slimstat-db.php:60
2741
- #: ../../admin/wp-slimstat-admin.php:849
2742
- msgid "Post Category ID"
2743
- msgstr "شناسه دسته‌بندی مطلب"
2744
-
2745
- #: ../../admin/view/wp-slimstat-db.php:62
2746
- #: ../../admin/wp-slimstat-admin.php:851
2747
- msgid "Resource Content Type"
2748
- msgstr "نوع محتوای منبع"
2749
-
2750
- #: ../../admin/view/wp-slimstat-db.php:63
2751
- msgid "Resource ID"
2752
- msgstr "شناسه منابع"
2753
-
2754
- #: ../../admin/view/wp-slimstat-db.php:64
2755
- #: ../../admin/wp-slimstat-admin.php:852
2756
- msgid "Screen Resolution"
2757
- msgstr "ابعاد صفحه نمایش"
2758
-
2759
- #: ../../admin/view/wp-slimstat-db.php:65
2760
- #: ../../admin/wp-slimstat-admin.php:853
2761
- msgid "Visit ID"
2762
- msgstr "شناسه دیدن"
2763
-
2764
- #: ../../admin/view/wp-slimstat-db.php:68
2765
- msgid "Minute"
2766
- msgstr ""
2767
-
2768
- #: ../../admin/view/wp-slimstat-db.php:73
2769
- msgid "+/-"
2770
- msgstr ""
2771
-
2772
- #: ../../admin/view/wp-slimstat-db.php:76
2773
- #, fuzzy
2774
- msgid "minutes"
2775
- msgstr "۱ تا ۳ دقیقه"
2776
-
2777
- #: ../../admin/view/wp-slimstat-db.php:78
2778
- msgid "Order Direction"
2779
- msgstr ""
2780
-
2781
- #: ../../admin/view/wp-slimstat-db.php:79
2782
- #, fuzzy
2783
- msgid "Limit Results"
2784
- msgstr "نتایج محدود به"
2785
-
2786
- #: ../../admin/view/wp-slimstat-db.php:80
2787
- msgid "Start From"
2788
- msgstr ""
2789
-
2790
- #: ../../admin/view/wp-slimstat-reports.php:34
2791
- #: ../../admin/wp-slimstat-admin.php:505 ../../wp-slimstat.php:1344
2792
- msgid "Real-Time Log"
2793
- msgstr ""
2794
-
2795
- #: ../../admin/view/wp-slimstat-reports.php:35
2796
- #: ../../admin/wp-slimstat-admin.php:506 ../../admin/wp-slimstat-admin.php:523
2797
- #: ../../wp-slimstat.php:1345
2798
- msgid "Overview"
2799
- msgstr "مرور"
2800
-
2801
- #: ../../admin/view/wp-slimstat-reports.php:36
2802
- #: ../../admin/wp-slimstat-admin.php:507 ../../admin/wp-slimstat-admin.php:524
2803
- #: ../../wp-slimstat.php:1346
2804
- msgid "Audience"
2805
- msgstr ""
2806
-
2807
- #: ../../admin/view/wp-slimstat-reports.php:37
2808
- #: ../../admin/wp-slimstat-admin.php:508 ../../admin/wp-slimstat-admin.php:525
2809
- #: ../../wp-slimstat.php:1347
2810
- msgid "Site Analysis"
2811
- msgstr ""
2812
-
2813
- #: ../../admin/view/wp-slimstat-reports.php:39
2814
- #: ../../admin/wp-slimstat-admin.php:510 ../../admin/wp-slimstat-admin.php:527
2815
- #: ../../wp-slimstat.php:1349
2816
- msgid "Map Overlay"
2817
- msgstr ""
2818
-
2819
- #: ../../admin/view/wp-slimstat-reports.php:40
2820
- #: ../../admin/wp-slimstat-admin.php:511 ../../admin/wp-slimstat-admin.php:528
2821
- #: ../../wp-slimstat.php:1350
2822
- msgid "Custom Reports"
2823
- msgstr "گزارش دلخواه"
2824
-
2825
- #: ../../admin/view/wp-slimstat-reports.php:44
2826
- msgid "Pageviews (chart)"
2827
- msgstr "مشاهده صفحات (نمودار)"
2828
-
2829
- #: ../../admin/view/wp-slimstat-reports.php:45
2830
- #, fuzzy
2831
- msgid "About Slimstat"
2832
- msgstr "درباره WP SlimStat"
2833
-
2834
- #: ../../admin/view/wp-slimstat-reports.php:46
2835
- msgid "At a Glance"
2836
- msgstr "در یک نگاه"
2837
-
2838
- #: ../../admin/view/wp-slimstat-reports.php:47
2839
- msgid "Currently Online"
2840
- msgstr "حالا روی خط"
2841
-
2842
- #: ../../admin/view/wp-slimstat-reports.php:48
2843
- #: ../../admin/view/wp-slimstat-reports.php:82
2844
- msgid "Spy View"
2845
- msgstr "دید دزدکی"
2846
-
2847
- #: ../../admin/view/wp-slimstat-reports.php:49
2848
- #: ../../admin/view/wp-slimstat-reports.php:83
2849
- msgid "Recent Search Terms"
2850
- msgstr "عبارت‌های جستجو شده اخیر"
2851
-
2852
- #: ../../admin/view/wp-slimstat-reports.php:50
2853
- msgid "Top Pages"
2854
- msgstr "برترین صفحات"
2855
-
2856
- #: ../../admin/view/wp-slimstat-reports.php:51
2857
- #: ../../admin/view/wp-slimstat-reports.php:80
2858
- msgid "Top Traffic Sources"
2859
- msgstr "برترین منابع ترافیک"
2860
-
2861
- #: ../../admin/view/wp-slimstat-reports.php:52
2862
- msgid "Top Known Visitors"
2863
- msgstr "برترین بیننده های آشنا"
2864
-
2865
- #: ../../admin/view/wp-slimstat-reports.php:53
2866
- #: ../../admin/view/wp-slimstat-reports.php:78
2867
- #: ../../admin/view/wp-slimstat-reports.php:98
2868
- msgid "Top Search Terms"
2869
- msgstr "برترین عبارت های جستجو"
2870
-
2871
- #: ../../admin/view/wp-slimstat-reports.php:54
2872
- #: ../../admin/view/wp-slimstat-reports.php:65
2873
- #: ../../admin/view/wp-slimstat-reports.php:79
2874
- msgid "Top Countries"
2875
- msgstr "برترین کشورها"
2876
-
2877
- #: ../../admin/view/wp-slimstat-reports.php:55
2878
- msgid "Rankings"
2879
- msgstr "رتبه ها"
2880
-
2881
- #: ../../admin/view/wp-slimstat-reports.php:56
2882
- msgid "Top Language Families"
2883
- msgstr "برترین زبان‌ها"
2884
-
2885
- #: ../../admin/view/wp-slimstat-reports.php:57
2886
- msgid "Human Visits (chart)"
2887
- msgstr "مشاهدات انسانی (نمودار)"
2888
-
2889
- #: ../../admin/view/wp-slimstat-reports.php:58
2890
- #, fuzzy
2891
- msgid "Audience Overview"
2892
- msgstr "مرور"
2893
-
2894
- #: ../../admin/view/wp-slimstat-reports.php:59
2895
- msgid "Top Languages"
2896
- msgstr "بیش‌ترین زبان‌ها"
2897
-
2898
- #: ../../admin/view/wp-slimstat-reports.php:60
2899
- msgid "Top Browsers"
2900
- msgstr "برترین مرورگرها"
2901
-
2902
- #: ../../admin/view/wp-slimstat-reports.php:61
2903
- msgid "Top Service Providers"
2904
- msgstr "برترین خدمات دهنده‌ها"
2905
-
2906
- #: ../../admin/view/wp-slimstat-reports.php:62
2907
- msgid "Top Operating Systems"
2908
- msgstr "برترین محیط‌های عامل"
2909
-
2910
- #: ../../admin/view/wp-slimstat-reports.php:63
2911
- msgid "Top Screen Resolutions"
2912
- msgstr "برترین ابعاد صفحه نماش‌ها"
2913
-
2914
- #: ../../admin/view/wp-slimstat-reports.php:66
2915
- msgid "Visit Duration"
2916
- msgstr "طول دوره بازدید"
2917
-
2918
- #: ../../admin/view/wp-slimstat-reports.php:67
2919
- #: ../../admin/view/wp-slimstat-reports.php:84
2920
- msgid "Recent Countries"
2921
- msgstr "کشورهای اخیر"
2922
-
2923
- #: ../../admin/view/wp-slimstat-reports.php:68
2924
- msgid "Recent Screen Resolutions"
2925
- msgstr "ابعاد نمایش‌گرهای اخیر"
2926
-
2927
- #: ../../admin/view/wp-slimstat-reports.php:69
2928
- msgid "Recent Operating Systems"
2929
- msgstr "محیطهای عامل اخیر"
2930
-
2931
- #: ../../admin/view/wp-slimstat-reports.php:70
2932
- msgid "Recent Browsers"
2933
- msgstr "مرورگرهای اخیر"
2934
-
2935
- #: ../../admin/view/wp-slimstat-reports.php:71
2936
- msgid "Recent Languages"
2937
- msgstr "زبان‌های اخیر"
2938
-
2939
- #: ../../admin/view/wp-slimstat-reports.php:72
2940
- msgid "Top Browser Families"
2941
- msgstr "برترین مرورگرها"
2942
-
2943
- #: ../../admin/view/wp-slimstat-reports.php:73
2944
- msgid "Top OS Families"
2945
- msgstr "برترین محیط عامل ها"
2946
-
2947
- #: ../../admin/view/wp-slimstat-reports.php:74
2948
- msgid "Recent Users"
2949
- msgstr "کاربرهای اخیر"
2950
-
2951
- #: ../../admin/view/wp-slimstat-reports.php:75
2952
- msgid "Top Users"
2953
- msgstr "برترین کاربرها"
2954
-
2955
- #: ../../admin/view/wp-slimstat-reports.php:76
2956
- msgid "Traffic Sources (chart)"
2957
- msgstr "منابع ترافیک (نمودار)"
2958
-
2959
- #: ../../admin/view/wp-slimstat-reports.php:77
2960
- msgid "Summary"
2961
- msgstr "خلاصه"
2962
-
2963
- #: ../../admin/view/wp-slimstat-reports.php:81
2964
- msgid "Top Referring Search Engines"
2965
- msgstr "برترین موتور جستجو های ارجاع‌دهنده"
2966
-
2967
- #: ../../admin/view/wp-slimstat-reports.php:85
2968
- #: ../../admin/view/wp-slimstat-reports.php:101
2969
- msgid "Top Landing Pages"
2970
- msgstr "برترین صفحه های ورود"
2971
-
2972
- #: ../../admin/view/wp-slimstat-reports.php:86
2973
- msgid "Average Pageviews per Visit (chart)"
2974
- msgstr "میان‌گین مشاهده صفحات در بازدید(نمودار)"
2975
-
2976
- #: ../../admin/view/wp-slimstat-reports.php:87
2977
- msgid "Recent Posts"
2978
- msgstr "ارسال های اخیر"
2979
-
2980
- #: ../../admin/view/wp-slimstat-reports.php:88
2981
- msgid "Recent Bounce Pages"
2982
- msgstr "صفحات وازده اخیر"
2983
-
2984
- #: ../../admin/view/wp-slimstat-reports.php:89
2985
- msgid "Recent Feeds"
2986
- msgstr "خوراک‌های اخیر"
2987
-
2988
- #: ../../admin/view/wp-slimstat-reports.php:90
2989
- msgid "Recent Pages Not Found"
2990
- msgstr "صفحه هایی پیدا نشده اخیر"
2991
-
2992
- #: ../../admin/view/wp-slimstat-reports.php:91
2993
- msgid "Recent Internal Searches"
2994
- msgstr "جستجوهای داخلی اخیر"
2995
-
2996
- #: ../../admin/view/wp-slimstat-reports.php:92
2997
- msgid "Top Categories"
2998
- msgstr "برترین دسته‌ها"
2999
-
3000
- #: ../../admin/view/wp-slimstat-reports.php:93
3001
- msgid "Recent Outbound Links"
3002
- msgstr "پیوندهای بیرونی اخیر"
3003
-
3004
- #: ../../admin/view/wp-slimstat-reports.php:94
3005
- msgid "Recent Events"
3006
- msgstr "اتفاقات اخیر"
3007
-
3008
- #: ../../admin/view/wp-slimstat-reports.php:95
3009
- msgid "Top Posts"
3010
- msgstr "برترین ارسال ها"
3011
-
3012
- #: ../../admin/view/wp-slimstat-reports.php:96
3013
- msgid "Top Feeds"
3014
- msgstr "برترین خوراک‌ها"
3015
-
3016
- #: ../../admin/view/wp-slimstat-reports.php:97
3017
- msgid "Top Internal Searches"
3018
- msgstr "برترین جستجوهای داخلی"
3019
-
3020
- #: ../../admin/view/wp-slimstat-reports.php:99
3021
- msgid "Recent Categories"
3022
- msgstr "دسته‌های اخیر"
3023
-
3024
- #: ../../admin/view/wp-slimstat-reports.php:100
3025
- msgid "Top Pages Not Found"
3026
- msgstr "برترین صفحاتی که پیدا نشد"
3027
-
3028
- #: ../../admin/view/wp-slimstat-reports.php:102
3029
- msgid "Top Authors"
3030
- msgstr "برترین نویسنده‌ها"
3031
-
3032
- #: ../../admin/view/wp-slimstat-reports.php:103
3033
- msgid "Top Tags"
3034
- msgstr "برترین نشانه ها"
3035
-
3036
- #: ../../admin/view/wp-slimstat-reports.php:104
3037
- msgid "Recent Downloads"
3038
- msgstr "بارگیری های اخیر"
3039
-
3040
- #: ../../admin/view/wp-slimstat-reports.php:105
3041
- #, fuzzy
3042
- msgid "Top OutLinks and Downloads"
3043
- msgstr "برترین پیوندهای بیرونی و بارگیری ها"
3044
-
3045
- #: ../../admin/view/wp-slimstat-reports.php:106
3046
- msgid "Your Website"
3047
- msgstr "تارنمای شما"
3048
-
3049
- #: ../../admin/view/wp-slimstat-reports.php:107
3050
- msgid "World Map"
3051
- msgstr "نقشه جهان"
3052
-
3053
- #: ../../admin/view/wp-slimstat-reports.php:108
3054
- #, fuzzy
3055
- msgid "Activity"
3056
- msgstr "فهرست فعالیت ها"
3057
-
3058
- #: ../../admin/view/wp-slimstat-reports.php:215
3059
- msgid "Chart controls"
3060
- msgstr "کنترل‌های نمودار"
3061
-
3062
- #: ../../admin/view/wp-slimstat-reports.php:215
3063
- msgid "Use your mouse wheel to zoom in and out"
3064
- msgstr "از غلطانک موش‌واره برای بزرگ‌نمایی و کوچک‌نمایی استفاده کنید"
3065
-
3066
- #: ../../admin/view/wp-slimstat-reports.php:215
3067
- msgid "While zooming in, drag the chart to move to a different area"
3068
- msgstr ""
3069
- "زمانی‌که بزرگ‌نمایی می‌کنید، نمودار را می‌توانید بکشید و به نقاط دیگر بروید"
3070
-
3071
- #: ../../admin/view/wp-slimstat-reports.php:215
3072
- msgid "Double click on an empty region to reset the zoom level"
3073
- msgstr "بر یک ناحیه خالی دوبار کلیک کنید تا بزرگنمایی به حالت اولیه بازگردد"
3074
-
3075
- #: ../../admin/view/wp-slimstat-reports.php:228
3076
- msgid "src"
3077
- msgstr "منبع"
3078
-
3079
- #: ../../admin/view/wp-slimstat-reports.php:229
3080
- msgid "serp"
3081
- msgstr ""
3082
-
3083
- #: ../../admin/view/wp-slimstat-reports.php:234
3084
- msgid "Go to the corresponding search engine result page"
3085
- msgstr "برو به صفحه مرتبط با این جستجو"
3086
-
3087
- #: ../../admin/view/wp-slimstat-reports.php:237
3088
- msgid "Go to the referring page"
3089
- msgstr "برو به صفحه ارجاع‌دهنده"
3090
-
3091
- #: ../../admin/view/wp-slimstat-reports.php:260
3092
- msgid "Remove filter for"
3093
- msgstr "حذف فیلترها از"
3094
-
3095
- #: ../../admin/view/wp-slimstat-reports.php:264
3096
- msgid "Save"
3097
- msgstr ""
3098
-
3099
- #: ../../admin/view/wp-slimstat-reports.php:267
3100
- msgid "Reset All"
3101
- msgstr "بازنشانی همه"
3102
-
3103
- #: ../../admin/view/wp-slimstat-reports.php:271
3104
- msgid "Current filters:"
3105
- msgstr "فیلترهای جاری:"
3106
-
3107
- #: ../../admin/view/wp-slimstat-reports.php:275
3108
- msgid "Refresh"
3109
- msgstr "تازه سازی"
3110
-
3111
- #: ../../admin/view/wp-slimstat-reports.php:354
3112
- #, php-format
3113
- msgid "Results %s - %s of %s"
3114
- msgstr " نتایج %s - %s از %s"
3115
-
3116
- #: ../../admin/view/wp-slimstat-reports.php:356
3117
- msgid "Refresh in"
3118
- msgstr "تازه سازی در"
3119
-
3120
- #: ../../admin/view/wp-slimstat-reports.php:378
3121
- #: ../../admin/view/wp-slimstat-reports.php:390
3122
- #, php-format
3123
- msgid "Daily %s"
3124
- msgstr "%s روزانه"
3125
-
3126
- #: ../../admin/view/wp-slimstat-reports.php:381
3127
- #, php-format
3128
- msgid "%s Minute by Minute"
3129
- msgstr "%s دقیقه به دقیقه"
3130
-
3131
- #: ../../admin/view/wp-slimstat-reports.php:384
3132
- #, php-format
3133
- msgid "Hourly %s"
3134
- msgstr "%s ساعتی"
3135
-
3136
- #: ../../admin/view/wp-slimstat-reports.php:387
3137
- #, php-format
3138
- msgid "Monthly %s"
3139
- msgstr "%s ماهانه"
3140
-
3141
- #: ../../admin/view/wp-slimstat-reports.php:475
3142
- msgid "Category ID"
3143
- msgstr "شناسه دسته"
3144
-
3145
- #: ../../admin/view/wp-slimstat-reports.php:508
3146
- msgid "OS Code"
3147
- msgstr "کد محیط عامل"
3148
-
3149
- #: ../../admin/view/wp-slimstat-reports.php:518
3150
- msgid "Referrer"
3151
- msgstr "ارجاع دهنده"
3152
-
3153
- #: ../../admin/view/wp-slimstat-reports.php:542
3154
- #: ../../admin/view/wp-slimstat-reports.php:849
3155
- #: ../../admin/view/wp-slimstat-reports.php:858
3156
- #: ../../admin/view/wp-slimstat-reports.php:864
3157
- #: ../../admin/view/wp-slimstat-reports.php:870
3158
- #: ../../admin/view/wp-slimstat-reports.php:876
3159
- #: ../../admin/view/wp-slimstat-reports.php:882
3160
- #: ../../admin/view/wp-slimstat-reports.php:888
3161
- #: ../../admin/view/wp-slimstat-reports.php:894
3162
- msgid "Hits"
3163
- msgstr "بازدیدها"
3164
-
3165
- #: ../../admin/view/wp-slimstat-reports.php:720
3166
- msgid "Search for"
3167
- msgstr "جستجو به دنبال"
3168
-
3169
- #: ../../admin/view/wp-slimstat-reports.php:771
3170
- #: ../../admin/view/wp-slimstat-reports.php:781
3171
- msgid "Source"
3172
- msgstr "منبع"
3173
-
3174
- #: ../../admin/view/wp-slimstat-reports.php:773
3175
- msgid "Keywords"
3176
- msgstr "کلمات کلیدی"
3177
-
3178
- #: ../../admin/view/wp-slimstat-reports.php:781
3179
- #, php-format
3180
- msgid "Filter results where resource equals %s"
3181
- msgstr "نتایج را فیلتر کن وقتی منبع مساوی‌ست با %s"
3182
-
3183
- #: ../../admin/view/wp-slimstat-reports.php:782
3184
- #, fuzzy
3185
- msgid "Link Details"
3186
- msgstr "جزئیات"
3187
-
3188
- #: ../../admin/view/wp-slimstat-reports.php:795
3189
- msgid "Total Pageviews"
3190
- msgstr "همه مشاهدات صفحات"
3191
-
3192
- #: ../../admin/view/wp-slimstat-reports.php:796
3193
- msgid "DB Size"
3194
- msgstr "اندازه پایگاه داده"
3195
-
3196
- #: ../../admin/view/wp-slimstat-reports.php:797
3197
- msgid "Tracking Active"
3198
- msgstr "ردگیری فعال"
3199
-
3200
- #: ../../admin/view/wp-slimstat-reports.php:798
3201
- msgid "Javascript Mode"
3202
- msgstr "فعال سازی حالت جاوااسکریپت"
3203
-
3204
- #: ../../admin/view/wp-slimstat-reports.php:799
3205
- msgid "Tracking Browser Caps"
3206
- msgstr "ردگیری قابلیت‌های مرورگر"
3207
-
3208
- #: ../../admin/view/wp-slimstat-reports.php:800
3209
- msgid "Auto purge"
3210
- msgstr "پاک‌سازی خودکار"
3211
-
3212
- #: ../../admin/view/wp-slimstat-reports.php:800
3213
- #: ../../admin/wp-slimstat-admin.php:883
3214
- msgid "No"
3215
- msgstr "خیر"
3216
-
3217
- #: ../../admin/view/wp-slimstat-reports.php:801
3218
- msgid "Oldest pageview"
3219
- msgstr "قدیمی‌ترین بازدید"
3220
-
3221
- #: ../../admin/view/wp-slimstat-reports.php:801
3222
- msgid "No visits"
3223
- msgstr "بازدیدی نیست"
3224
-
3225
- #: ../../admin/view/wp-slimstat-reports.php:811
3226
- #: ../../admin/view/wp-slimstat-reports.php:913
3227
- #, fuzzy
3228
- msgid ""
3229
- "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
3230
- "the tracking code is executed."
3231
- msgstr ""
3232
- "درخواست بارگیری یک پرونده زنگام. هر اجرای ردگیری منجر به ثبت یک بازید میشود."
3233
-
3234
- #: ../../admin/view/wp-slimstat-reports.php:813
3235
- msgid "How many pages have been visited on average during the current period."
3236
- msgstr "چند صفحه به طور میانگین در "
3237
-
3238
- #: ../../admin/view/wp-slimstat-reports.php:814
3239
- #, fuzzy
3240
- msgid "Average Pageviews"
3241
- msgstr "میان‌گین مشاهده صفحات"
3242
-
3243
- #: ../../admin/view/wp-slimstat-reports.php:815
3244
- msgid ""
3245
- "Visitors who landed on your site after searching for a keyword on Google, "
3246
- "Yahoo, etc."
3247
- msgstr "کاربرانی که بعد از جستجو در موتورهای جستجو به سایت شما رسیده‌اند."
3248
-
3249
- #: ../../admin/view/wp-slimstat-reports.php:816
3250
- msgid "From Search Results"
3251
- msgstr "از نتایج جستجو"
3252
-
3253
- #: ../../admin/view/wp-slimstat-reports.php:817
3254
- msgid ""
3255
- "Used to differentiate between multiple requests to download a file from one "
3256
- "internet address (IP) and requests originating from many distinct addresses"
3257
- msgstr ""
3258
- " این برای تشخیص دادن چندین درخواست بارگیری پرونده از یک آی پی ادرس و یا "
3259
- "درخواست از چند آی پی ادرس مختلف است."
3260
-
3261
- #: ../../admin/view/wp-slimstat-reports.php:818
3262
- #: ../../admin/view/wp-slimstat-reports.php:833
3263
- #: ../../admin/view/wp-slimstat-reports.php:1137
3264
- #: ../../admin/view/wp-slimstat-reports.php:1141
3265
- #: ../../admin/view/wp-slimstat-reports.php:1145
3266
- msgid "Unique IPs"
3267
- msgstr "آی‌پی‌های یکتا"
3268
-
3269
- #: ../../admin/view/wp-slimstat-reports.php:819
3270
- msgid "Last 5 minutes"
3271
- msgstr "۵ دقیقه اخیر"
3272
-
3273
- #: ../../admin/view/wp-slimstat-reports.php:820
3274
- msgid "Last 30 minutes"
3275
- msgstr "۳۰ دقیقه اخیر"
3276
-
3277
- #: ../../admin/view/wp-slimstat-reports.php:830
3278
- msgid ""
3279
- "A visit is a session of at most 30 minutes. Returning visitors are counted "
3280
- "multiple times if they perform multiple visits."
3281
- msgstr ""
3282
- "هر بازدید یک جلسه است که حداکثر ۳۰ دقیقه میباشد. «بیننده دوباره» چند بار "
3283
- "شمارش میشود اگر چند بار بازدید کنند."
3284
-
3285
- #: ../../admin/view/wp-slimstat-reports.php:831
3286
- msgid "Human visits"
3287
- msgstr "بازدیدهای انسانی"
3288
-
3289
- #: ../../admin/view/wp-slimstat-reports.php:832
3290
- msgid "It includes only traffic generated by human visitors."
3291
- msgstr "فقط شامل ترافیک انسانی میشود"
3292
-
3293
- #: ../../admin/view/wp-slimstat-reports.php:834
3294
- #: ../../admin/view/wp-slimstat-reports.php:925
3295
- msgid ""
3296
- "Percentage of single-page visits, i.e. visits in which the person left your "
3297
- "site from the entrance page."
3298
- msgstr "درصد بازدید «تک-صفحه» ها؛ یعنی بازدیدی که فقط «صفحه ورودی» بود."
3299
-
3300
- #: ../../admin/view/wp-slimstat-reports.php:835
3301
- msgid "Bounce rate"
3302
- msgstr "میزان وازده گی"
3303
-
3304
- #: ../../admin/view/wp-slimstat-reports.php:836
3305
- msgid "Visitors who had previously left a comment on your blog."
3306
- msgstr "بازدیدکنندگانی که قبلا در تارنامه نظر ثبت کرده‌اند"
3307
-
3308
- #: ../../admin/view/wp-slimstat-reports.php:837
3309
- msgid "Known visitors"
3310
- msgstr "بیننده های آشنا"
3311
-
3312
- #: ../../admin/view/wp-slimstat-reports.php:838
3313
- msgid "Human users who visited your site only once."
3314
- msgstr "کاربرانی که فقط یک بار پایگاه شما را دیده‌اند."
3315
-
3316
- #: ../../admin/view/wp-slimstat-reports.php:839
3317
- msgid "New visitors"
3318
- msgstr "بازدیدکنندگان جدید"
3319
-
3320
- #: ../../admin/view/wp-slimstat-reports.php:840
3321
- msgid "Bots"
3322
- msgstr "ربات‌ها"
3323
-
3324
- #: ../../admin/view/wp-slimstat-reports.php:841
3325
- msgid "Pages per visit"
3326
- msgstr "صفحات در بازدید"
3327
-
3328
- #: ../../admin/view/wp-slimstat-reports.php:842
3329
- #: ../../admin/view/wp-slimstat-reports.php:1150
3330
- msgid "Longest visit"
3331
- msgstr "طولانی‌ترین مشاهده صفحات"
3332
-
3333
- #: ../../admin/view/wp-slimstat-reports.php:842
3334
- msgid "hits"
3335
- msgstr "مشاهدات"
3336
-
3337
- #: ../../admin/view/wp-slimstat-reports.php:860
3338
- msgid "0 - 30 seconds"
3339
- msgstr "۰ تا ۳۰ ثانیه"
3340
-
3341
- #: ../../admin/view/wp-slimstat-reports.php:866
3342
- msgid "31 - 60 seconds"
3343
- msgstr "۳۱ تا ۶۰ ثانیه"
3344
-
3345
- #: ../../admin/view/wp-slimstat-reports.php:872
3346
- msgid "1 - 3 minutes"
3347
- msgstr "۱ تا ۳ دقیقه"
3348
-
3349
- #: ../../admin/view/wp-slimstat-reports.php:878
3350
- msgid "3 - 5 minutes"
3351
- msgstr "۳ تا ۵ دقیقه"
3352
-
3353
- #: ../../admin/view/wp-slimstat-reports.php:884
3354
- msgid "5 - 7 minutes"
3355
- msgstr "۵ تا ۷ دقیقه"
3356
-
3357
- #: ../../admin/view/wp-slimstat-reports.php:890
3358
- msgid "7 - 10 minutes"
3359
- msgstr "۷ تا ۱۰ دقیقه"
3360
-
3361
- #: ../../admin/view/wp-slimstat-reports.php:896
3362
- msgid "More than 10 minutes"
3363
- msgstr "بیش از ۱۰ دقیقه"
3364
-
3365
- #: ../../admin/view/wp-slimstat-reports.php:905
3366
- msgid "Average time on site"
3367
- msgstr " میان‌گین دیدن از پایگاه"
3368
-
3369
- #: ../../admin/view/wp-slimstat-reports.php:915
3370
- msgid ""
3371
- "A referrer (or referring site) is the site that a visitor previously visited "
3372
- "before following a link to your site."
3373
- msgstr ""
3374
- "ارجاع دهنده (یا پایگاه ارجاع دهنده) که بیننده را به پایگاه شما پیوند زده است."
3375
-
3376
- #: ../../admin/view/wp-slimstat-reports.php:916
3377
- msgid "Unique Referrers"
3378
- msgstr "ارجاع‌دهنده‌های یکتا"
3379
-
3380
- #: ../../admin/view/wp-slimstat-reports.php:917
3381
- msgid ""
3382
- "Visitors who visited the site by typing the URL directly into their browser. "
3383
- "<em>Direct</em> can also refer to the visitors who clicked on the links from "
3384
- "their bookmarks/favorites, untagged links within emails, or links from "
3385
- "documents that don't include tracking variables."
3386
- msgstr ""
3387
- "بیننده هایی که نشانی پایگاه را وارد مرورگر کرده اند. البته این میتواند شامل "
3388
- "کاربرانی که با استفاده از bookmarks/favorites، و یا از پیوندهایی در نامک و "
3389
- "مدارک که متغییر ردگیری ندارند نیز بشود."
3390
-
3391
- #: ../../admin/view/wp-slimstat-reports.php:918
3392
- msgid "Direct Pageviews"
3393
- msgstr "مشاهده صفحات بی‌واسطه"
3394
-
3395
- #: ../../admin/view/wp-slimstat-reports.php:919
3396
- msgid ""
3397
- "Visitors who came to your site via searches on Google or some other search "
3398
- "engine."
3399
- msgstr "کاربرانی که از گوگل یا سایر موتورهای جستجو به پایگاه شما آمده‌اند."
3400
-
3401
- #: ../../admin/view/wp-slimstat-reports.php:920
3402
- msgid "From a search result"
3403
- msgstr "از نتایج جستجو"
3404
-
3405
- #: ../../admin/view/wp-slimstat-reports.php:921
3406
- msgid ""
3407
- "The first page that a user views during a session. This is also known as the "
3408
- "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
3409
- "Space,' and they land on your home page, it gets counted (for that visit) as "
3410
- "a landing page."
3411
- msgstr ""
3412
- "اولین صفحه ای که کاربر در جلسه دیدن میکند به «صفحه ورودی» نیز شناخته میشود. "
3413
- "به عنوان مثال اگر کاربری برای «بستنی» جستجو کند و در صفحه اصلی شما هدایت "
3414
- "شود، در آن جلسه به عنوان «صفحه ورودی» حساب میشود."
3415
-
3416
- #: ../../admin/view/wp-slimstat-reports.php:922
3417
- msgid "Unique Landing Pages"
3418
- msgstr "صفحات فرودی خاص"
3419
-
3420
- #: ../../admin/view/wp-slimstat-reports.php:923
3421
- msgid "Number of single-page visits to your site over the selected period."
3422
- msgstr "تعداد بازدید «تک-صفحه» به پایگاه شما در بازه زمانی انتخاب شده."
3423
-
3424
- #: ../../admin/view/wp-slimstat-reports.php:924
3425
- msgid "Bounce Pages"
3426
- msgstr "صفحات وازده"
3427
-
3428
- #: ../../admin/view/wp-slimstat-reports.php:926
3429
- msgid "New Visitors Rate"
3430
- msgstr "میزان بازدیدکنندگان جدید"
3431
-
3432
- #: ../../admin/view/wp-slimstat-reports.php:927
3433
- msgid ""
3434
- "Visitors who visited the site in the last 5 minutes coming from a search "
3435
- "engine."
3436
- msgstr "کاربرانی که در ۵ دقیقه گذشته از یک موتور جستجو به پایگاه شما آمده‌اند."
3437
-
3438
- #: ../../admin/view/wp-slimstat-reports.php:928
3439
- msgid "Currently from search engines"
3440
- msgstr "هم‌اکنون از موتورهای جستجو"
3441
-
3442
- #: ../../admin/view/wp-slimstat-reports.php:996
3443
- msgid "Number of pages in your site included in Google's index."
3444
- msgstr "تعداد صفحاتی که در فهرست گوگل شمرده شده است."
3445
-
3446
- #: ../../admin/view/wp-slimstat-reports.php:997
3447
- msgid "Google Index"
3448
- msgstr "اندیس گوگل"
3449
-
3450
- #: ../../admin/view/wp-slimstat-reports.php:998
3451
- msgid "Number of pages, according to Google, that link back to your site."
3452
- msgstr "تعداد صفحات که به گفته گوگل به پایگاه پیوند میدهند. "
3453
-
3454
- #: ../../admin/view/wp-slimstat-reports.php:999
3455
- msgid "Google Backlinks"
3456
- msgstr ""
3457
-
3458
- #: ../../admin/view/wp-slimstat-reports.php:1000
3459
- msgid ""
3460
- "How many times the Facebook Like button has been approximately clicked on "
3461
- "your site."
3462
- msgstr "چند بار Facebook Like در پایگاه شما کلیک شده است."
3463
-
3464
- #: ../../admin/view/wp-slimstat-reports.php:1001
3465
- msgid "Facebook Likes"
3466
- msgstr "لایک های فیسبوک"
3467
-
3468
- #: ../../admin/view/wp-slimstat-reports.php:1002
3469
- msgid ""
3470
- "How many times your site has been shared by someone on the social network."
3471
- msgstr "چند بار پایگاه شما در شبکه های اجتماعی بخش شده است"
3472
-
3473
- #: ../../admin/view/wp-slimstat-reports.php:1003
3474
- msgid "Facebook Shares"
3475
- msgstr "بخش های فیسبوک"
3476
-
3477
- #: ../../admin/view/wp-slimstat-reports.php:1004
3478
- msgid "How many times links to your website have been clicked on Facebook."
3479
- msgstr "چند بار پایگاه شما در Facebook فشار داده شده است."
3480
-
3481
- #: ../../admin/view/wp-slimstat-reports.php:1005
3482
- msgid "Facebook Clicks"
3483
- msgstr "Facebook Clicks"
3484
-
3485
- #: ../../admin/view/wp-slimstat-reports.php:1006
3486
- msgid ""
3487
- "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3488
- "traffic data."
3489
- msgstr ""
3490
- "شرکت Alexa بخشی از Amazon.com میباشد که گزارش پایگاه های تبلیغاتی را انجام "
3491
- "میدهد."
3492
-
3493
- #: ../../admin/view/wp-slimstat-reports.php:1007
3494
- msgid "Alexa World Rank"
3495
- msgstr ""
3496
-
3497
- #: ../../admin/view/wp-slimstat-reports.php:1008
3498
- msgid "Alexa Country Rank"
3499
- msgstr ""
3500
-
3501
- #: ../../admin/view/wp-slimstat-reports.php:1009
3502
- msgid "Alexa Popularity"
3503
- msgstr ""
3504
-
3505
- # Unknown
3506
- #: ../../admin/view/wp-slimstat-reports.php:1016
3507
- msgid "c-xx"
3508
- msgstr "Unknown"
3509
-
3510
- # Afghanistan
3511
- #: ../../admin/view/wp-slimstat-reports.php:1016
3512
- msgid "c-af"
3513
- msgstr "Afghanistan"
3514
-
3515
- # Åland Islands
3516
- #: ../../admin/view/wp-slimstat-reports.php:1016
3517
- msgid "c-ax"
3518
- msgstr "Aland Islands"
3519
-
3520
- # Albania
3521
- #: ../../admin/view/wp-slimstat-reports.php:1016
3522
- msgid "c-al"
3523
- msgstr "Albania"
3524
-
3525
- # Algeria
3526
- #: ../../admin/view/wp-slimstat-reports.php:1016
3527
- msgid "c-dz"
3528
- msgstr "Algeria"
3529
-
3530
- # Andorra
3531
- #: ../../admin/view/wp-slimstat-reports.php:1016
3532
- msgid "c-ad"
3533
- msgstr "Andorra"
3534
-
3535
- # Angola
3536
- #: ../../admin/view/wp-slimstat-reports.php:1016
3537
- msgid "c-ao"
3538
- msgstr "Angola"
3539
-
3540
- # Anguilla
3541
- #: ../../admin/view/wp-slimstat-reports.php:1016
3542
- msgid "c-ai"
3543
- msgstr "Anguilla"
3544
-
3545
- # Antigua and Barbuda
3546
- #: ../../admin/view/wp-slimstat-reports.php:1016
3547
- msgid "c-ag"
3548
- msgstr "Antigua and Barbuda"
3549
-
3550
- # Argentina
3551
- #: ../../admin/view/wp-slimstat-reports.php:1016
3552
- msgid "c-ar"
3553
- msgstr "Argentina"
3554
-
3555
- # Armenia
3556
- #: ../../admin/view/wp-slimstat-reports.php:1016
3557
- msgid "c-am"
3558
- msgstr "Armenia"
3559
-
3560
- # Aruba
3561
- #: ../../admin/view/wp-slimstat-reports.php:1016
3562
- msgid "c-aw"
3563
- msgstr "Aruba"
3564
-
3565
- # Australia
3566
- #: ../../admin/view/wp-slimstat-reports.php:1016
3567
- msgid "c-au"
3568
- msgstr "Australia"
3569
-
3570
- # Austria
3571
- #: ../../admin/view/wp-slimstat-reports.php:1016
3572
- msgid "c-at"
3573
- msgstr "Austria"
3574
-
3575
- # Azerbaijan
3576
- #: ../../admin/view/wp-slimstat-reports.php:1016
3577
- msgid "c-az"
3578
- msgstr "Azerbaijan"
3579
-
3580
- # Bahamas
3581
- #: ../../admin/view/wp-slimstat-reports.php:1016
3582
- msgid "c-bs"
3583
- msgstr "Bahamas"
3584
-
3585
- # Bahrain
3586
- #: ../../admin/view/wp-slimstat-reports.php:1016
3587
- msgid "c-bh"
3588
- msgstr "Bahrain"
3589
-
3590
- # Bangladesh
3591
- #: ../../admin/view/wp-slimstat-reports.php:1016
3592
- msgid "c-bd"
3593
- msgstr "Bangladesh"
3594
-
3595
- # Barbados
3596
- #: ../../admin/view/wp-slimstat-reports.php:1016
3597
- msgid "c-bb"
3598
- msgstr "Barbados"
3599
-
3600
- # Belarus
3601
- #: ../../admin/view/wp-slimstat-reports.php:1016
3602
- msgid "c-by"
3603
- msgstr "Belarus"
3604
-
3605
- # Belgium
3606
- #: ../../admin/view/wp-slimstat-reports.php:1016
3607
- msgid "c-be"
3608
- msgstr "Belgium"
3609
-
3610
- # Belize
3611
- #: ../../admin/view/wp-slimstat-reports.php:1016
3612
- msgid "c-bz"
3613
- msgstr "Belize"
3614
-
3615
- # Benin
3616
- #: ../../admin/view/wp-slimstat-reports.php:1016
3617
- msgid "c-bj"
3618
- msgstr "Benin"
3619
-
3620
- # Bermuda
3621
- #: ../../admin/view/wp-slimstat-reports.php:1016
3622
- msgid "c-bm"
3623
- msgstr "Bermuda"
3624
-
3625
- # Bhutan
3626
- #: ../../admin/view/wp-slimstat-reports.php:1016
3627
- msgid "c-bt"
3628
- msgstr "Bhutan"
3629
-
3630
- # Bolivia
3631
- #: ../../admin/view/wp-slimstat-reports.php:1016
3632
- msgid "c-bo"
3633
- msgstr "Bolivia"
3634
-
3635
- # Bosnia and Herzegovina
3636
- #: ../../admin/view/wp-slimstat-reports.php:1016
3637
- msgid "c-ba"
3638
- msgstr "Bosnia and Herzegovina"
3639
-
3640
- # Botswana
3641
- #: ../../admin/view/wp-slimstat-reports.php:1016
3642
- msgid "c-bw"
3643
- msgstr "Botswana"
3644
-
3645
- # Brazil
3646
- #: ../../admin/view/wp-slimstat-reports.php:1016
3647
- msgid "c-br"
3648
- msgstr "Brazil"
3649
-
3650
- # Brunei Darussalam
3651
- #: ../../admin/view/wp-slimstat-reports.php:1016
3652
- msgid "c-bn"
3653
- msgstr "Brunei Darussalam"
3654
-
3655
- # Bulgaria
3656
- #: ../../admin/view/wp-slimstat-reports.php:1016
3657
- msgid "c-bg"
3658
- msgstr "Bulgaria"
3659
-
3660
- # Burkina Faso
3661
- #: ../../admin/view/wp-slimstat-reports.php:1016
3662
- msgid "c-bf"
3663
- msgstr "Burkina Faso"
3664
-
3665
- # Burundi
3666
- #: ../../admin/view/wp-slimstat-reports.php:1016
3667
- msgid "c-bi"
3668
- msgstr "Burundi"
3669
-
3670
- # Cambodia
3671
- #: ../../admin/view/wp-slimstat-reports.php:1016
3672
- msgid "c-kh"
3673
- msgstr "Cambodia"
3674
-
3675
- # Cameroon
3676
- #: ../../admin/view/wp-slimstat-reports.php:1016
3677
- msgid "c-cm"
3678
- msgstr "Cameroon"
3679
-
3680
- # Canada
3681
- #: ../../admin/view/wp-slimstat-reports.php:1016
3682
- msgid "c-ca"
3683
- msgstr "Canada"
3684
-
3685
- # Cape Verde
3686
- #: ../../admin/view/wp-slimstat-reports.php:1016
3687
- msgid "c-cv"
3688
- msgstr "Cape Verde"
3689
-
3690
- # Cayman Islands
3691
- #: ../../admin/view/wp-slimstat-reports.php:1016
3692
- msgid "c-ky"
3693
- msgstr "Cayman Islands"
3694
-
3695
- # Central African Republic
3696
- #: ../../admin/view/wp-slimstat-reports.php:1016
3697
- msgid "c-cf"
3698
- msgstr "Central African Republic"
3699
-
3700
- # Chad
3701
- #: ../../admin/view/wp-slimstat-reports.php:1016
3702
- msgid "c-td"
3703
- msgstr "Chad"
3704
-
3705
- # Chile
3706
- #: ../../admin/view/wp-slimstat-reports.php:1016
3707
- msgid "c-cl"
3708
- msgstr "Chile"
3709
-
3710
- # China
3711
- #: ../../admin/view/wp-slimstat-reports.php:1016
3712
- msgid "c-cn"
3713
- msgstr "China"
3714
-
3715
- # Colombia
3716
- #: ../../admin/view/wp-slimstat-reports.php:1016
3717
- msgid "c-co"
3718
- msgstr "Colombia"
3719
-
3720
- # Comoros
3721
- #: ../../admin/view/wp-slimstat-reports.php:1016
3722
- msgid "c-km"
3723
- msgstr "Comoros"
3724
-
3725
- # Congo
3726
- #: ../../admin/view/wp-slimstat-reports.php:1016
3727
- msgid "c-cg"
3728
- msgstr "Congo"
3729
-
3730
- # The Democratic Republic of the Congo
3731
- #: ../../admin/view/wp-slimstat-reports.php:1016
3732
- msgid "c-cd"
3733
- msgstr "The Democratic Republic of the Congo"
3734
-
3735
- # Costa Rica
3736
- #: ../../admin/view/wp-slimstat-reports.php:1016
3737
- msgid "c-cr"
3738
- msgstr "Costa Rica"
3739
-
3740
- # Côte d'Ivoire
3741
- #: ../../admin/view/wp-slimstat-reports.php:1016
3742
- msgid "c-ci"
3743
- msgstr "Côte d'Ivoire"
3744
-
3745
- # Croatia
3746
- #: ../../admin/view/wp-slimstat-reports.php:1016
3747
- msgid "c-hr"
3748
- msgstr "Croatia"
3749
-
3750
- # Cuba
3751
- #: ../../admin/view/wp-slimstat-reports.php:1016
3752
- msgid "c-cu"
3753
- msgstr "Cuba"
3754
-
3755
- # Cyprus
3756
- #: ../../admin/view/wp-slimstat-reports.php:1016
3757
- msgid "c-cy"
3758
- msgstr "Cyprus"
3759
-
3760
- # Czech Republic
3761
- #: ../../admin/view/wp-slimstat-reports.php:1016
3762
- msgid "c-cz"
3763
- msgstr "Czech Republic"
3764
-
3765
- # Denmark
3766
- #: ../../admin/view/wp-slimstat-reports.php:1016
3767
- msgid "c-dk"
3768
- msgstr "Denmark"
3769
-
3770
- # Djibouti
3771
- #: ../../admin/view/wp-slimstat-reports.php:1016
3772
- msgid "c-dj"
3773
- msgstr "Djibouti"
3774
-
3775
- # Dominica
3776
- #: ../../admin/view/wp-slimstat-reports.php:1016
3777
- msgid "c-dm"
3778
- msgstr "Dominica"
3779
-
3780
- # Dominican Republic
3781
- #: ../../admin/view/wp-slimstat-reports.php:1016
3782
- msgid "c-do"
3783
- msgstr "Dominican Republic"
3784
-
3785
- # Ecuador
3786
- #: ../../admin/view/wp-slimstat-reports.php:1016
3787
- msgid "c-ec"
3788
- msgstr "Ecuador"
3789
-
3790
- # Egypt
3791
- #: ../../admin/view/wp-slimstat-reports.php:1016
3792
- msgid "c-eg"
3793
- msgstr "Egypt"
3794
-
3795
- # El Salvador
3796
- #: ../../admin/view/wp-slimstat-reports.php:1016
3797
- msgid "c-sv"
3798
- msgstr "El Salvador"
3799
-
3800
- # Equatorial Guinea
3801
- #: ../../admin/view/wp-slimstat-reports.php:1016
3802
- msgid "c-gq"
3803
- msgstr "Equatorial Guinea"
3804
-
3805
- # Eritrea
3806
- #: ../../admin/view/wp-slimstat-reports.php:1016
3807
- msgid "c-er"
3808
- msgstr "Eritrea"
3809
-
3810
- # Estonia
3811
- #: ../../admin/view/wp-slimstat-reports.php:1016
3812
- msgid "c-ee"
3813
- msgstr "Estonia"
3814
-
3815
- # Ethiopia
3816
- #: ../../admin/view/wp-slimstat-reports.php:1016
3817
- msgid "c-et"
3818
- msgstr "Ethiopia"
3819
-
3820
- # Faroe Islands
3821
- #: ../../admin/view/wp-slimstat-reports.php:1016
3822
- msgid "c-fo"
3823
- msgstr "Faroe Islands"
3824
-
3825
- # Falkland Islands (Malvinas)
3826
- #: ../../admin/view/wp-slimstat-reports.php:1016
3827
- msgid "c-fk"
3828
- msgstr "Falkland Islands (Malvinas)"
3829
-
3830
- # Fiji
3831
- #: ../../admin/view/wp-slimstat-reports.php:1016
3832
- msgid "c-fj"
3833
- msgstr "Fiji"
3834
-
3835
- # Finland
3836
- #: ../../admin/view/wp-slimstat-reports.php:1016
3837
- msgid "c-fi"
3838
- msgstr "Finland"
3839
-
3840
- # France
3841
- #: ../../admin/view/wp-slimstat-reports.php:1016
3842
- msgid "c-fr"
3843
- msgstr "France"
3844
-
3845
- # French Guiana
3846
- #: ../../admin/view/wp-slimstat-reports.php:1016
3847
- msgid "c-gf"
3848
- msgstr "French Guiana"
3849
-
3850
- # Gabon
3851
- #: ../../admin/view/wp-slimstat-reports.php:1016
3852
- msgid "c-ga"
3853
- msgstr "Gabon"
3854
-
3855
- # Gambia
3856
- #: ../../admin/view/wp-slimstat-reports.php:1016
3857
- msgid "c-gm"
3858
- msgstr "Gambia"
3859
-
3860
- # Georgia
3861
- #: ../../admin/view/wp-slimstat-reports.php:1016
3862
- msgid "c-ge"
3863
- msgstr "Georgia"
3864
-
3865
- # Germany
3866
- #: ../../admin/view/wp-slimstat-reports.php:1016
3867
- msgid "c-de"
3868
- msgstr "Germany"
3869
-
3870
- # Ghana
3871
- #: ../../admin/view/wp-slimstat-reports.php:1016
3872
- msgid "c-gh"
3873
- msgstr "Ghana"
3874
-
3875
- # Greece
3876
- #: ../../admin/view/wp-slimstat-reports.php:1016
3877
- msgid "c-gr"
3878
- msgstr "Greece"
3879
-
3880
- # Greenland
3881
- #: ../../admin/view/wp-slimstat-reports.php:1016
3882
- msgid "c-gl"
3883
- msgstr "Greenland"
3884
-
3885
- # Grenada
3886
- #: ../../admin/view/wp-slimstat-reports.php:1016
3887
- msgid "c-gd"
3888
- msgstr "Grenada"
3889
-
3890
- # Guadeloupe
3891
- #: ../../admin/view/wp-slimstat-reports.php:1016
3892
- msgid "c-gp"
3893
- msgstr "Guadeloupe"
3894
-
3895
- # Guatemala
3896
- #: ../../admin/view/wp-slimstat-reports.php:1016
3897
- msgid "c-gt"
3898
- msgstr "Guatemala"
3899
-
3900
- # Guinea
3901
- #: ../../admin/view/wp-slimstat-reports.php:1016
3902
- msgid "c-gn"
3903
- msgstr "Guinea"
3904
-
3905
- # Guinea-Bissau
3906
- #: ../../admin/view/wp-slimstat-reports.php:1016
3907
- msgid "c-gw"
3908
- msgstr "Guinea-Bissau"
3909
-
3910
- # Guyana
3911
- #: ../../admin/view/wp-slimstat-reports.php:1016
3912
- msgid "c-gy"
3913
- msgstr "Guyana"
3914
-
3915
- # Haiti
3916
- #: ../../admin/view/wp-slimstat-reports.php:1016
3917
- msgid "c-ht"
3918
- msgstr "Haiti"
3919
-
3920
- # Honduras
3921
- #: ../../admin/view/wp-slimstat-reports.php:1016
3922
- msgid "c-hn"
3923
- msgstr "Honduras"
3924
-
3925
- # Hong Kong
3926
- #: ../../admin/view/wp-slimstat-reports.php:1016
3927
- msgid "c-hk"
3928
- msgstr "Hong Kong"
3929
-
3930
- # Hungary
3931
- #: ../../admin/view/wp-slimstat-reports.php:1016
3932
- msgid "c-hu"
3933
- msgstr "Hungary"
3934
-
3935
- # Iceland
3936
- #: ../../admin/view/wp-slimstat-reports.php:1016
3937
- msgid "c-is"
3938
- msgstr "Iceland"
3939
-
3940
- # India
3941
- #: ../../admin/view/wp-slimstat-reports.php:1016
3942
- msgid "c-in"
3943
- msgstr "India"
3944
-
3945
- # Indonesia
3946
- #: ../../admin/view/wp-slimstat-reports.php:1016
3947
- msgid "c-id"
3948
- msgstr "Indonesia"
3949
-
3950
- # Islamic Republic of Iran
3951
- #: ../../admin/view/wp-slimstat-reports.php:1016
3952
- msgid "c-ir"
3953
- msgstr "Islamic Republic of Iran"
3954
-
3955
- # Iraq
3956
- #: ../../admin/view/wp-slimstat-reports.php:1016
3957
- msgid "c-iq"
3958
- msgstr "Iraq"
3959
-
3960
- # Ireland
3961
- #: ../../admin/view/wp-slimstat-reports.php:1016
3962
- msgid "c-ie"
3963
- msgstr "Ireland"
3964
-
3965
- # Israel
3966
- #: ../../admin/view/wp-slimstat-reports.php:1016
3967
- msgid "c-il"
3968
- msgstr "Israel"
3969
-
3970
- # Italy
3971
- #: ../../admin/view/wp-slimstat-reports.php:1016
3972
- msgid "c-it"
3973
- msgstr "Italy"
3974
-
3975
- # Jamaica
3976
- #: ../../admin/view/wp-slimstat-reports.php:1016
3977
- msgid "c-jm"
3978
- msgstr "Jamaica"
3979
-
3980
- # Japan
3981
- #: ../../admin/view/wp-slimstat-reports.php:1016
3982
- msgid "c-jp"
3983
- msgstr "Japan"
3984
-
3985
- # Jordan
3986
- #: ../../admin/view/wp-slimstat-reports.php:1016
3987
- msgid "c-jo"
3988
- msgstr "Jordan"
3989
-
3990
- # Kazakhstan
3991
- #: ../../admin/view/wp-slimstat-reports.php:1016
3992
- msgid "c-kz"
3993
- msgstr "Kazakhstan"
3994
-
3995
- # Kenya
3996
- #: ../../admin/view/wp-slimstat-reports.php:1016
3997
- msgid "c-ke"
3998
- msgstr "Kenya"
3999
-
4000
- # Nauru
4001
- #: ../../admin/view/wp-slimstat-reports.php:1016
4002
- msgid "c-nr"
4003
- msgstr "Nauru"
4004
-
4005
- # Democratic People's Republic of Korea
4006
- #: ../../admin/view/wp-slimstat-reports.php:1016
4007
- msgid "c-kp"
4008
- msgstr "Democratic People's Republic of Korea"
4009
-
4010
- # Republic of Korea
4011
- #: ../../admin/view/wp-slimstat-reports.php:1016
4012
- msgid "c-kr"
4013
- msgstr "Republic of Korea"
4014
-
4015
- #: ../../admin/view/wp-slimstat-reports.php:1016
4016
- msgid "c-kv"
4017
- msgstr ""
4018
-
4019
- # Kuwait
4020
- #: ../../admin/view/wp-slimstat-reports.php:1016
4021
- msgid "c-kw"
4022
- msgstr "Kuwait"
4023
-
4024
- # Kyrgyzstan
4025
- #: ../../admin/view/wp-slimstat-reports.php:1016
4026
- msgid "c-kg"
4027
- msgstr "Kyrgyzstan"
4028
-
4029
- # Lao People's Democratic Republic
4030
- #: ../../admin/view/wp-slimstat-reports.php:1016
4031
- msgid "c-la"
4032
- msgstr "Lao People's Democratic Republic"
4033
-
4034
- # Latvia
4035
- #: ../../admin/view/wp-slimstat-reports.php:1016
4036
- msgid "c-lv"
4037
- msgstr "Latvia"
4038
-
4039
- # Lebanon
4040
- #: ../../admin/view/wp-slimstat-reports.php:1016
4041
- msgid "c-lb"
4042
- msgstr "Lebanon"
4043
-
4044
- # Lesotho
4045
- #: ../../admin/view/wp-slimstat-reports.php:1016
4046
- msgid "c-ls"
4047
- msgstr "Lesotho"
4048
-
4049
- # Liberia
4050
- #: ../../admin/view/wp-slimstat-reports.php:1016
4051
- msgid "c-lr"
4052
- msgstr "Liberia"
4053
-
4054
- # Libyan Arab Jamahiriya
4055
- #: ../../admin/view/wp-slimstat-reports.php:1016
4056
- msgid "c-ly"
4057
- msgstr "Libyan Arab Jamahiriya"
4058
-
4059
- # Liechtenstein
4060
- #: ../../admin/view/wp-slimstat-reports.php:1016
4061
- msgid "c-li"
4062
- msgstr "Liechtenstein"
4063
-
4064
- # Lithuania
4065
- #: ../../admin/view/wp-slimstat-reports.php:1016
4066
- msgid "c-lt"
4067
- msgstr "Lithuania"
4068
-
4069
- # Luxembourg
4070
- #: ../../admin/view/wp-slimstat-reports.php:1016
4071
- msgid "c-lu"
4072
- msgstr "Luxembourg"
4073
-
4074
- # The Former Yugoslav Republic of Macedonia
4075
- #: ../../admin/view/wp-slimstat-reports.php:1016
4076
- msgid "c-mk"
4077
- msgstr "The Former Yugoslav Republic of Macedonia"
4078
-
4079
- # Madagascar
4080
- #: ../../admin/view/wp-slimstat-reports.php:1016
4081
- msgid "c-mg"
4082
- msgstr "Madagascar"
4083
-
4084
- # Malawi
4085
- #: ../../admin/view/wp-slimstat-reports.php:1016
4086
- msgid "c-mw"
4087
- msgstr "Malawi"
4088
-
4089
- # Malaysia
4090
- #: ../../admin/view/wp-slimstat-reports.php:1016
4091
- msgid "c-my"
4092
- msgstr "Malaysia"
4093
-
4094
- # Mali
4095
- #: ../../admin/view/wp-slimstat-reports.php:1016
4096
- msgid "c-ml"
4097
- msgstr "Mali"
4098
-
4099
- # Malta
4100
- #: ../../admin/view/wp-slimstat-reports.php:1016
4101
- msgid "c-mt"
4102
- msgstr "Malta"
4103
-
4104
- # Martinique
4105
- #: ../../admin/view/wp-slimstat-reports.php:1016
4106
- msgid "c-mq"
4107
- msgstr "Martinique"
4108
-
4109
- # Mauritania
4110
- #: ../../admin/view/wp-slimstat-reports.php:1016
4111
- msgid "c-mr"
4112
- msgstr "Mauritania"
4113
-
4114
- # Mauritius
4115
- #: ../../admin/view/wp-slimstat-reports.php:1016
4116
- msgid "c-mu"
4117
- msgstr "Mauritius"
4118
-
4119
- # Mexico
4120
- #: ../../admin/view/wp-slimstat-reports.php:1016
4121
- msgid "c-mx"
4122
- msgstr "Mexico"
4123
-
4124
- # Moldova
4125
- #: ../../admin/view/wp-slimstat-reports.php:1016
4126
- msgid "c-md"
4127
- msgstr "Moldova"
4128
-
4129
- # Mongolia
4130
- #: ../../admin/view/wp-slimstat-reports.php:1016
4131
- msgid "c-mn"
4132
- msgstr "Mongolia"
4133
-
4134
- # Montenegro
4135
- #: ../../admin/view/wp-slimstat-reports.php:1016
4136
- msgid "c-me"
4137
- msgstr "Montenegro"
4138
-
4139
- # Montserrat
4140
- #: ../../admin/view/wp-slimstat-reports.php:1016
4141
- msgid "c-ms"
4142
- msgstr "Montserrat"
4143
-
4144
- # Morocco
4145
- #: ../../admin/view/wp-slimstat-reports.php:1016
4146
- msgid "c-ma"
4147
- msgstr "Morocco"
4148
-
4149
- # Mozambique
4150
- #: ../../admin/view/wp-slimstat-reports.php:1016
4151
- msgid "c-mz"
4152
- msgstr "Mozambique"
4153
-
4154
- # Myanmar
4155
- #: ../../admin/view/wp-slimstat-reports.php:1016
4156
- msgid "c-mm"
4157
- msgstr "Myanmar"
4158
-
4159
- # Namibia
4160
- #: ../../admin/view/wp-slimstat-reports.php:1016
4161
- msgid "c-na"
4162
- msgstr "Namibia"
4163
-
4164
- # Nepal
4165
- #: ../../admin/view/wp-slimstat-reports.php:1016
4166
- msgid "c-np"
4167
- msgstr "Nepal"
4168
-
4169
- # Netherlands
4170
- #: ../../admin/view/wp-slimstat-reports.php:1016
4171
- msgid "c-nl"
4172
- msgstr "Netherlands"
4173
-
4174
- # New Caledonia
4175
- #: ../../admin/view/wp-slimstat-reports.php:1016
4176
- msgid "c-nc"
4177
- msgstr "New Caledonia"
4178
-
4179
- # New Zealand
4180
- #: ../../admin/view/wp-slimstat-reports.php:1016
4181
- msgid "c-nz"
4182
- msgstr "New Zealand"
4183
-
4184
- # Nicaragua
4185
- #: ../../admin/view/wp-slimstat-reports.php:1016
4186
- msgid "c-ni"
4187
- msgstr "Nicaragua"
4188
-
4189
- # Niger
4190
- #: ../../admin/view/wp-slimstat-reports.php:1016
4191
- msgid "c-ne"
4192
- msgstr "Niger"
4193
-
4194
- # Nigeria
4195
- #: ../../admin/view/wp-slimstat-reports.php:1016
4196
- msgid "c-ng"
4197
- msgstr "Nigeria"
4198
-
4199
- # Norway
4200
- #: ../../admin/view/wp-slimstat-reports.php:1016
4201
- msgid "c-no"
4202
- msgstr "Norway"
4203
-
4204
- # Oman
4205
- #: ../../admin/view/wp-slimstat-reports.php:1016
4206
- msgid "c-om"
4207
- msgstr "Oman"
4208
-
4209
- # Pakistan
4210
- #: ../../admin/view/wp-slimstat-reports.php:1016
4211
- msgid "c-pk"
4212
- msgstr "Pakistan"
4213
-
4214
- # Palau
4215
- #: ../../admin/view/wp-slimstat-reports.php:1016
4216
- msgid "c-pw"
4217
- msgstr "Palau"
4218
-
4219
- # Occupied Palestinian Territory
4220
- #: ../../admin/view/wp-slimstat-reports.php:1016
4221
- msgid "c-ps"
4222
- msgstr "Occupied Palestinian Territory"
4223
-
4224
- # Panama
4225
- #: ../../admin/view/wp-slimstat-reports.php:1016
4226
- msgid "c-pa"
4227
- msgstr "Panama"
4228
-
4229
- # Papua New Guinea
4230
- #: ../../admin/view/wp-slimstat-reports.php:1016
4231
- msgid "c-pg"
4232
- msgstr "Papua New Guinea"
4233
-
4234
- # Paraguay
4235
- #: ../../admin/view/wp-slimstat-reports.php:1016
4236
- msgid "c-py"
4237
- msgstr "Paraguay"
4238
-
4239
- # Peru
4240
- #: ../../admin/view/wp-slimstat-reports.php:1016
4241
- msgid "c-pe"
4242
- msgstr "Peru"
4243
-
4244
- # Philippines
4245
- #: ../../admin/view/wp-slimstat-reports.php:1016
4246
- msgid "c-ph"
4247
- msgstr "Philippines"
4248
-
4249
- # Poland
4250
- #: ../../admin/view/wp-slimstat-reports.php:1016
4251
- msgid "c-pl"
4252
- msgstr "Poland"
4253
-
4254
- # Portugal
4255
- #: ../../admin/view/wp-slimstat-reports.php:1016
4256
- msgid "c-pt"
4257
- msgstr "Portugal"
4258
-
4259
- # Puerto Rico
4260
- #: ../../admin/view/wp-slimstat-reports.php:1016
4261
- msgid "c-pr"
4262
- msgstr "Puerto Rico"
4263
-
4264
- # Qatar
4265
- #: ../../admin/view/wp-slimstat-reports.php:1016
4266
- msgid "c-qa"
4267
- msgstr "Qatar"
4268
-
4269
- # Réunion
4270
- #: ../../admin/view/wp-slimstat-reports.php:1016
4271
- msgid "c-re"
4272
- msgstr "Réunion"
4273
-
4274
- # Romania
4275
- #: ../../admin/view/wp-slimstat-reports.php:1016
4276
- msgid "c-ro"
4277
- msgstr "Romania"
4278
-
4279
- # Russian Federation
4280
- #: ../../admin/view/wp-slimstat-reports.php:1016
4281
- msgid "c-ru"
4282
- msgstr "Russian Federation"
4283
-
4284
- # Rwanda
4285
- #: ../../admin/view/wp-slimstat-reports.php:1016
4286
- msgid "c-rw"
4287
- msgstr "Rwanda"
4288
-
4289
- # Saint Kitts and Nevis
4290
- #: ../../admin/view/wp-slimstat-reports.php:1016
4291
- msgid "c-kn"
4292
- msgstr "Saint Kitts and Nevis"
4293
-
4294
- # Saint Lucia
4295
- #: ../../admin/view/wp-slimstat-reports.php:1016
4296
- msgid "c-lc"
4297
- msgstr "Saint Lucia"
4298
-
4299
- # Saint Martin
4300
- #: ../../admin/view/wp-slimstat-reports.php:1016
4301
- msgid "c-mf"
4302
- msgstr "Saint Martin"
4303
-
4304
- # Saint Vincent and the Grenadines
4305
- #: ../../admin/view/wp-slimstat-reports.php:1016
4306
- msgid "c-vc"
4307
- msgstr "Saint Vincent and the Grenadines"
4308
-
4309
- # Samoa
4310
- #: ../../admin/view/wp-slimstat-reports.php:1016
4311
- msgid "c-ws"
4312
- msgstr "Samoa"
4313
-
4314
- # Sao Tome and Principe
4315
- #: ../../admin/view/wp-slimstat-reports.php:1016
4316
- msgid "c-st"
4317
- msgstr "Sao Tome and Principe"
4318
-
4319
- # Saudi Arabia
4320
- #: ../../admin/view/wp-slimstat-reports.php:1016
4321
- msgid "c-sa"
4322
- msgstr "Saudi Arabia"
4323
-
4324
- # Senegal
4325
- #: ../../admin/view/wp-slimstat-reports.php:1016
4326
- msgid "c-sn"
4327
- msgstr "Senegal"
4328
-
4329
- # Serbia
4330
- #: ../../admin/view/wp-slimstat-reports.php:1016
4331
- msgid "c-rs"
4332
- msgstr "Serbia"
4333
-
4334
- # Sierra Leone
4335
- #: ../../admin/view/wp-slimstat-reports.php:1016
4336
- msgid "c-sl"
4337
- msgstr "Sierra Leone"
4338
-
4339
- # Singapore
4340
- #: ../../admin/view/wp-slimstat-reports.php:1016
4341
- msgid "c-sg"
4342
- msgstr "Singapore"
4343
-
4344
- # Slovakia
4345
- #: ../../admin/view/wp-slimstat-reports.php:1016
4346
- msgid "c-sk"
4347
- msgstr "Slovakia"
4348
-
4349
- # Slovenia
4350
- #: ../../admin/view/wp-slimstat-reports.php:1016
4351
- msgid "c-si"
4352
- msgstr "Slovenia"
4353
-
4354
- # Solomon Islands
4355
- #: ../../admin/view/wp-slimstat-reports.php:1016
4356
- msgid "c-sb"
4357
- msgstr "Solomon Islands"
4358
-
4359
- # Somalia
4360
- #: ../../admin/view/wp-slimstat-reports.php:1016
4361
- msgid "c-so"
4362
- msgstr "Somalia"
4363
-
4364
- # South Africa
4365
- #: ../../admin/view/wp-slimstat-reports.php:1016
4366
- msgid "c-za"
4367
- msgstr "South Africa"
4368
-
4369
- # South Georgia and the South Sandwich Islands
4370
- #: ../../admin/view/wp-slimstat-reports.php:1016
4371
- msgid "c-gs"
4372
- msgstr "South Georgia and the South Sandwich Islands"
4373
-
4374
- # Spain
4375
- #: ../../admin/view/wp-slimstat-reports.php:1016
4376
- msgid "c-es"
4377
- msgstr "Spain"
4378
-
4379
- # Sri Lanka
4380
- #: ../../admin/view/wp-slimstat-reports.php:1016
4381
- msgid "c-lk"
4382
- msgstr "Sri Lanka"
4383
-
4384
- #: ../../admin/view/wp-slimstat-reports.php:1016
4385
- msgid "c-sc"
4386
- msgstr "Seychelles"
4387
-
4388
- # Sudan
4389
- #: ../../admin/view/wp-slimstat-reports.php:1016
4390
- msgid "c-sd"
4391
- msgstr "Sudan"
4392
-
4393
- #: ../../admin/view/wp-slimstat-reports.php:1016
4394
- msgid "c-ss"
4395
- msgstr ""
4396
-
4397
- # Suriname
4398
- #: ../../admin/view/wp-slimstat-reports.php:1016
4399
- msgid "c-sr"
4400
- msgstr "Suriname"
4401
-
4402
- # Svalbard and Jan Mayen
4403
- #: ../../admin/view/wp-slimstat-reports.php:1016
4404
- msgid "c-sj"
4405
- msgstr "Svalbard and Jan Mayen"
4406
-
4407
- # Swaziland
4408
- #: ../../admin/view/wp-slimstat-reports.php:1016
4409
- msgid "c-sz"
4410
- msgstr "Swaziland"
4411
-
4412
- # Sweden
4413
- #: ../../admin/view/wp-slimstat-reports.php:1016
4414
- msgid "c-se"
4415
- msgstr "Sweden"
4416
-
4417
- # Switzerland
4418
- #: ../../admin/view/wp-slimstat-reports.php:1016
4419
- msgid "c-ch"
4420
- msgstr "Switzerland"
4421
-
4422
- # Syrian Arab Republic
4423
- #: ../../admin/view/wp-slimstat-reports.php:1016
4424
- msgid "c-sy"
4425
- msgstr "Syrian Arab Republic"
4426
-
4427
- # Taiwan, Province of China
4428
- #: ../../admin/view/wp-slimstat-reports.php:1016
4429
- msgid "c-tw"
4430
- msgstr "Taiwan"
4431
-
4432
- # Tajikistan
4433
- #: ../../admin/view/wp-slimstat-reports.php:1016
4434
- msgid "c-tj"
4435
- msgstr "Tajikistan"
4436
-
4437
- # United Republic of Tanzania
4438
- #: ../../admin/view/wp-slimstat-reports.php:1016
4439
- msgid "c-tz"
4440
- msgstr "United Republic of Tanzania"
4441
-
4442
- # Thailand
4443
- #: ../../admin/view/wp-slimstat-reports.php:1016
4444
- msgid "c-th"
4445
- msgstr "Thailand"
4446
-
4447
- # Timor-Leste
4448
- #: ../../admin/view/wp-slimstat-reports.php:1016
4449
- msgid "c-tl"
4450
- msgstr "Timor-Leste"
4451
-
4452
- # Togo
4453
- #: ../../admin/view/wp-slimstat-reports.php:1016
4454
- msgid "c-tg"
4455
- msgstr "Togo"
4456
-
4457
- # Tonga
4458
- #: ../../admin/view/wp-slimstat-reports.php:1016
4459
- msgid "c-to"
4460
- msgstr "Tonga"
4461
-
4462
- # Trinidad and Tobago
4463
- #: ../../admin/view/wp-slimstat-reports.php:1016
4464
- msgid "c-tt"
4465
- msgstr "Trinidad and Tobago"
4466
-
4467
- # Tunisia
4468
- #: ../../admin/view/wp-slimstat-reports.php:1016
4469
- msgid "c-tn"
4470
- msgstr "Tunisia"
4471
-
4472
- # Turkey
4473
- #: ../../admin/view/wp-slimstat-reports.php:1016
4474
- msgid "c-tr"
4475
- msgstr "Turkey"
4476
-
4477
- # Turkmenistan
4478
- #: ../../admin/view/wp-slimstat-reports.php:1016
4479
- msgid "c-tm"
4480
- msgstr "Turkmenistan"
4481
-
4482
- # Turks and Caicos Islands
4483
- #: ../../admin/view/wp-slimstat-reports.php:1016
4484
- msgid "c-tc"
4485
- msgstr "Turks and Caicos Islands"
4486
-
4487
- # Uganda
4488
- #: ../../admin/view/wp-slimstat-reports.php:1016
4489
- msgid "c-ug"
4490
- msgstr "Uganda"
4491
-
4492
- # Ukraine
4493
- #: ../../admin/view/wp-slimstat-reports.php:1016
4494
- msgid "c-ua"
4495
- msgstr "Ukraine"
4496
-
4497
- # United Arab Emirates
4498
- #: ../../admin/view/wp-slimstat-reports.php:1016
4499
- msgid "c-ae"
4500
- msgstr "United Arab Emirates"
4501
-
4502
- # United Kingdom
4503
- #: ../../admin/view/wp-slimstat-reports.php:1016
4504
- msgid "c-gb"
4505
- msgstr "United Kingdom"
4506
-
4507
- # United States
4508
- #: ../../admin/view/wp-slimstat-reports.php:1016
4509
- msgid "c-us"
4510
- msgstr "United States"
4511
-
4512
- # Uruguay
4513
- #: ../../admin/view/wp-slimstat-reports.php:1016
4514
- msgid "c-uy"
4515
- msgstr "Uruguay"
4516
-
4517
- # Uzbekistan
4518
- #: ../../admin/view/wp-slimstat-reports.php:1016
4519
- msgid "c-uz"
4520
- msgstr "Uzbekistan"
4521
-
4522
- # Vanuatu
4523
- #: ../../admin/view/wp-slimstat-reports.php:1016
4524
- msgid "c-vu"
4525
- msgstr "Vanuatu"
4526
-
4527
- # Venezuela
4528
- #: ../../admin/view/wp-slimstat-reports.php:1016
4529
- msgid "c-ve"
4530
- msgstr "Venezuela"
4531
-
4532
- # Viet Nam
4533
- #: ../../admin/view/wp-slimstat-reports.php:1016
4534
- msgid "c-vn"
4535
- msgstr "Viet Nam"
4536
-
4537
- # British Virgin Islands
4538
- #: ../../admin/view/wp-slimstat-reports.php:1016
4539
- msgid "c-vg"
4540
- msgstr "British Virgin Islands"
4541
-
4542
- # U.S. Virgin Islands
4543
- #: ../../admin/view/wp-slimstat-reports.php:1016
4544
- msgid "c-vi"
4545
- msgstr "U.S. Virgin Islands"
4546
-
4547
- # Western Sahara
4548
- #: ../../admin/view/wp-slimstat-reports.php:1016
4549
- msgid "c-eh"
4550
- msgstr "Western Sahara"
4551
-
4552
- # Yemen
4553
- #: ../../admin/view/wp-slimstat-reports.php:1016
4554
- msgid "c-ye"
4555
- msgstr "Yemen"
4556
-
4557
- # Zambia
4558
- #: ../../admin/view/wp-slimstat-reports.php:1016
4559
- msgid "c-zm"
4560
- msgstr "Zambia"
4561
-
4562
- # Zimbabwe
4563
- #: ../../admin/view/wp-slimstat-reports.php:1016
4564
- msgid "c-zw"
4565
- msgstr "Zimbabwe"
4566
-
4567
- # Guernsey
4568
- #: ../../admin/view/wp-slimstat-reports.php:1016
4569
- msgid "c-gg"
4570
- msgstr "Guernsey"
4571
-
4572
- # Jersey
4573
- #: ../../admin/view/wp-slimstat-reports.php:1016
4574
- msgid "c-je"
4575
- msgstr "Jersey"
4576
-
4577
- # Isle of Man
4578
- #: ../../admin/view/wp-slimstat-reports.php:1016
4579
- msgid "c-im"
4580
- msgstr "Isle of Man"
4581
-
4582
- # Maldives
4583
- #: ../../admin/view/wp-slimstat-reports.php:1016
4584
- msgid "c-mv"
4585
- msgstr "Maldives"
4586
-
4587
- #: ../../admin/view/wp-slimstat-reports.php:1017
4588
- msgid "c-eu"
4589
- msgstr ""
4590
-
4591
- #: ../../admin/view/wp-slimstat-reports.php:1106
4592
- msgid ""
4593
- "This value includes not only posts, but also custom post types, regardless "
4594
- "of their status"
4595
- msgstr "این مقدار شامل همه ارسال ها میشود"
4596
-
4597
- #: ../../admin/view/wp-slimstat-reports.php:1107
4598
- msgid "Content Items"
4599
- msgstr " محتوا موردها"
4600
-
4601
- #: ../../admin/view/wp-slimstat-reports.php:1108
4602
- msgid "Total Comments"
4603
- msgstr "همه نظرها"
4604
-
4605
- #: ../../admin/view/wp-slimstat-reports.php:1109
4606
- msgid "Pingbacks"
4607
- msgstr ""
4608
-
4609
- #: ../../admin/view/wp-slimstat-reports.php:1110
4610
- msgid "Trackbacks"
4611
- msgstr ""
4612
-
4613
- #: ../../admin/view/wp-slimstat-reports.php:1111
4614
- msgid "Avg Comments Per Post"
4615
- msgstr "میانگین نظر برای هر ارسال"
4616
-
4617
- #: ../../admin/view/wp-slimstat-reports.php:1112
4618
- msgid "Avg Posts Per Day"
4619
- msgstr "میانگین ارسال در روز"
4620
-
4621
- #: ../../admin/view/wp-slimstat-reports.php:1113
4622
- msgid "Avg Server Latency"
4623
- msgstr ""
4624
-
4625
- #: ../../admin/view/wp-slimstat-reports.php:1114
4626
- #, fuzzy
4627
- msgid "Avg Page Load Time"
4628
- msgstr "میان‌گین مشاهده صفحات"
4629
-
4630
- #: ../../admin/view/wp-slimstat-reports.php:1141
4631
- msgid "Visits"
4632
- msgstr "بازدیدها"
4633
-
4634
- #: ../../admin/view/wp-slimstat-reports.php:1145
4635
- msgid "Domains"
4636
- msgstr "دامنه‌ها"
4637
-
4638
- #: ../../admin/view/wp-slimstat-reports.php:1150
4639
- msgid "Avg Pageviews"
4640
- msgstr "میان‌گین مشاهده صفحات"
4641
-
4642
- #: ../../admin/wp-slimstat-admin.php:504 ../../admin/wp-slimstat-admin.php:516
4643
- #: ../../admin/wp-slimstat-admin.php:519
4644
- msgid "SlimStat"
4645
- msgstr "SlimStat"
4646
-
4647
- #: ../../admin/wp-slimstat-admin.php:600
4648
- msgid "Pageviews in the last 365 days"
4649
- msgstr ""
4650
-
4651
- #: ../../admin/wp-slimstat-admin.php:628
4652
- msgid "Show on screen"
4653
- msgstr "روی صفحه نشان بده"
4654
-
4655
- #: ../../admin/wp-slimstat-admin.php:656
4656
- msgid "Hide this notice"
4657
- msgstr ""
4658
-
4659
- #: ../../admin/wp-slimstat-admin.php:698
4660
- msgid "Already saved"
4661
- msgstr ""
4662
-
4663
- #: ../../admin/wp-slimstat-admin.php:706
4664
- msgid "Saved"
4665
- msgstr ""
4666
-
4667
- #: ../../admin/wp-slimstat-admin.php:725
4668
- #, fuzzy
4669
- msgid "Delete this filter"
4670
- msgstr "حذف بازدید‌ها وقتی"
4671
-
4672
- #: ../../admin/wp-slimstat-admin.php:759
4673
- msgid "There was an error updating the following options:"
4674
- msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
4675
-
4676
- #: ../../admin/wp-slimstat-admin.php:762
4677
- #, fuzzy
4678
- msgid "Your changes have been saved."
4679
- msgstr "تنظیمات شما با موفقیت به روز شد."
4680
-
4681
- #: ../../admin/wp-slimstat-admin.php:785
4682
- msgid "Save Changes"
4683
- msgstr "ذخیره‌ی تغییرات"
4684
-
4685
- #: ../../admin/wp-slimstat-admin.php:801
4686
- msgid "Definitions"
4687
- msgstr "تعاریف"
4688
-
4689
- #: ../../admin/wp-slimstat-admin.php:804
4690
- msgid "Pageview"
4691
- msgstr "بازدید"
4692
-
4693
- #: ../../admin/wp-slimstat-admin.php:804
4694
- #, fuzzy
4695
- msgid ""
4696
- "A request to load a single HTML file (\"page\"). This should be contrasted "
4697
- "with a \"hit\", which refers to a request for any file from a web server. "
4698
- "Slimstat logs a pageview each time the tracking code is executed"
4699
- msgstr ""
4700
- "درخواست بارگیری یک پرونده HTML یا \"page\" با هر درخواست دیگر از دامنه یا "
4701
- "\"hit\" تفاوت دارد. این برنامه هر بازدید را بعد از اجرای برنامه ردگیری ثبت "
4702
- "میکند. "
4703
-
4704
- #: ../../admin/wp-slimstat-admin.php:805
4705
- msgid "(Human) Visit"
4706
- msgstr "بیننده (انسانی)"
4707
-
4708
- #: ../../admin/wp-slimstat-admin.php:805
4709
- msgid ""
4710
- "A period of interaction between a visitor's browser and your website, ending "
4711
- "when the browser is closed or when the user has been inactive on that site "
4712
- "for 30 minutes"
4713
- msgstr ""
4714
- "تراکنش بین مرورگر ردگیری و پایگاه شما به پایان رسید وقتی که مرورگر بسته شده "
4715
- "و یا کاربر به مدت سی دقیقه غیر فعال شده است."
4716
-
4717
- #: ../../admin/wp-slimstat-admin.php:806
4718
- msgid ""
4719
- "Any user who has left a comment on your blog, and is thus identified by "
4720
- "Wordpress as a returning visitor"
4721
- msgstr ""
4722
- "هر کاربری که در تارنامه شما نظر گذاشته توسط وردپرس به عنوان «بیننده دوباره» "
4723
- "شناخته میشود"
4724
-
4725
- #: ../../admin/wp-slimstat-admin.php:807
4726
- msgid "Unique IP"
4727
- msgstr "آی‌پی یکتا"
4728
-
4729
- #: ../../admin/wp-slimstat-admin.php:807
4730
- msgid ""
4731
- "Used to differentiate between multiple requests to download a file from one "
4732
- "internet address (IP) and requests originating from many distinct addresses; "
4733
- "since this measurement looks only at the internet address a pageview came "
4734
- "from, it is useful, but not perfect"
4735
- msgstr ""
4736
- " این برای تشخیص دادن چندین درخواست بارگیری پرونده از یک آی پی ادرس و یا "
4737
- "درخواست از چند آی پی ادرس مختلف میباشد؛ چون این اندازه گیری فقط نشانگر آدرس "
4738
- "هر بازدید است، مفید میباشد ولی دقیق نیست."
4739
-
4740
- #: ../../admin/wp-slimstat-admin.php:808
4741
- msgid ""
4742
- "the originating IP address of a client connecting to a web server through an "
4743
- "HTTP proxy or load balancer"
4744
- msgstr ""
4745
- "ای پی منشا که کاربر را از طریق HTTP proxy و یا load balancer مرتبط کرده"
4746
-
4747
- #: ../../admin/wp-slimstat-admin.php:809
4748
- msgid "Direct Traffic"
4749
- msgstr "ترافیک مستقیم"
4750
-
4751
- #: ../../admin/wp-slimstat-admin.php:809
4752
- msgid ""
4753
- "All those people showing up to your Web site by typing in the URL of your "
4754
- "Web site coming or from a bookmark; some people also call this \"default "
4755
- "traffic\" or \"ambient traffic\""
4756
- msgstr ""
4757
- " تمامی کاربرانی که با وارد کردن نشانی مستقیم تارنما و یا استفاده از بوک مارک "
4758
- "از تارنما بازدید میکنند."
4759
-
4760
- #: ../../admin/wp-slimstat-admin.php:810
4761
- msgid "Search Engine"
4762
- msgstr "موتور جستجو"
4763
-
4764
- #: ../../admin/wp-slimstat-admin.php:810
4765
- msgid ""
4766
- "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
4767
- "as well as your paid (PPC/SEM) traffic, so be aware of that"
4768
- msgstr ""
4769
- "ترافیک مرتبط با نتایج موتور جستجو (organic) و همچنین ترافیک بدست آمده توسط "
4770
- "تبلیغات در موتورهای جستجو اینجا درهم است"
4771
-
4772
- #: ../../admin/wp-slimstat-admin.php:811 ../../admin/wp-slimstat-admin.php:827
4773
- msgid "Keywords used by your visitors to find your website on a search engine"
4774
- msgstr ""
4775
- "کلمات کلیدی که کاربران شما به وسیله‌ی آن‌ها از موتورهای جستجو، پایگاه شما را "
4776
- "یافته‌اند."
4777
-
4778
- #: ../../admin/wp-slimstat-admin.php:812
4779
- msgid "SERP"
4780
- msgstr ""
4781
-
4782
- #: ../../admin/wp-slimstat-admin.php:812
4783
- msgid ""
4784
- "Short for search engine results page, the Web page that a search engine "
4785
- "returns with the results of its search. The value shown represents your rank "
4786
- "(or position) within that list of results"
4787
- msgstr " این مقدار نشان دهنده رتبه شما در فهرست نتایج موتور جستجو میباشد."
4788
-
4789
- #: ../../admin/wp-slimstat-admin.php:813
4790
- msgid ""
4791
- "Any program used for accessing a website; this includes browsers, robots, "
4792
- "spiders and any other program that was used to retrieve information from the "
4793
- "site"
4794
- msgstr ""
4795
- "هر برنامه که به تارنما دسترسی پیدا کند مثل مرورگر، روبات، خزنده، وغیره."
4796
-
4797
- #: ../../admin/wp-slimstat-admin.php:814
4798
- msgid ""
4799
- "A link from one domain to another is said to be outbound from its source "
4800
- "anchor and inbound to its target. This report lists all the links to other "
4801
- "websites followed by your visitors."
4802
- msgstr ""
4803
- "پیوند از این دامنه به دامنه دیگر پیوند بیرونی نامیده میشود و برای دامنه دیگر "
4804
- "پیوند درونی محسوب میشود. این گزارش فهرستی از تمام پیوند ها به پایگاه های "
4805
- "دیگر و کاربران است."
4806
-
4807
- #: ../../admin/wp-slimstat-admin.php:821
4808
- msgid "Basic Filters"
4809
- msgstr "پالایه های اولیه"
4810
-
4811
- #: ../../admin/wp-slimstat-admin.php:824
4812
- msgid "User agent (Firefox, Chrome, ...)"
4813
- msgstr "مرورگر کاربر (فایرفاکس، کروم و ...)"
4814
-
4815
- #: ../../admin/wp-slimstat-admin.php:825
4816
- msgid "2-letter code (us, ru, de, it, ...)"
4817
- msgstr "علامت دو حرفی (us، ir، ...)"
4818
-
4819
- #: ../../admin/wp-slimstat-admin.php:826
4820
- msgid "IP"
4821
- msgstr "آی‌پی"
4822
-
4823
- #: ../../admin/wp-slimstat-admin.php:826
4824
- msgid "Visitor's public IP address"
4825
- msgstr "نشانی‌های آی‌پی عمومی بازدیدکنندگان"
4826
-
4827
- #: ../../admin/wp-slimstat-admin.php:828
4828
- msgid ""
4829
- "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
4830
- "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
4831
- "column) for more information"
4832
- msgstr ""
4833
- "لطفا به <a target=\"_blank\" href=\"http://msdn.microsoft.com/en-us/library/"
4834
- "ee825488(v=cs.20).aspx\"> فرهنگ زبان </a> برای اطلاع بیشتر مراجعه کنید"
4835
-
4836
- #: ../../admin/wp-slimstat-admin.php:829
4837
- msgid ""
4838
- "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
4839
- "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
4840
- "manual page</a> for more information"
4841
- msgstr ""
4842
- "شناسه هایی مانندmac، win7، win98, و ... لطفا برای اطلاع بیشتر به<a target="
4843
- "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\"> "
4844
- "راهنما</a> مراجعه کنید"
4845
-
4846
- #: ../../admin/wp-slimstat-admin.php:830
4847
- msgid "URL accessed on your site"
4848
- msgstr "نشانی هایی که مورد بازدید قرار گرفته"
4849
-
4850
- #: ../../admin/wp-slimstat-admin.php:831
4851
- msgid "Complete address of the referrer page"
4852
- msgstr "نشانی کامل صفحه‌ی ارجاع ‌دهنده"
4853
-
4854
- #: ../../admin/wp-slimstat-admin.php:832
4855
- msgid ""
4856
- "Visitors' names according to the cookie set by Wordpress after they leave a "
4857
- "comment"
4858
- msgstr ""
4859
- "اسامی بیننده بر مبنای خوراکی که بعد از گذاشتن نظر توسط وردپرس اختصاص داده "
4860
- "میشود."
4861
-
4862
- #: ../../admin/wp-slimstat-admin.php:840
4863
- msgid "Advanced Filters"
4864
- msgstr "فیلترهای پیش‌رفته"
4865
-
4866
- #: ../../admin/wp-slimstat-admin.php:843
4867
- msgid "user agent version (9.0, 11, ...)"
4868
- msgstr "نسخه مرورگر کاربر"
4869
-
4870
- #: ../../admin/wp-slimstat-admin.php:844
4871
- msgid ""
4872
- "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
4873
- "all others"
4874
- msgstr ""
4875
- "۱=خزنده‌های موتورهای جستجو، ۲=دستگاه موبایل، ۳=خوراک‌خوان، ۰=همه‌ی چیزهای دیگر"
4876
-
4877
- #: ../../admin/wp-slimstat-admin.php:845
4878
- msgid "visitor's screen's color depth (8, 16, 24, ...)"
4879
- msgstr "عمق رنگ صفحه نمایش کاربر (۸، ۱۶، ۲۴، ...)"
4880
-
4881
- #: ../../admin/wp-slimstat-admin.php:846
4882
- msgid ""
4883
- "what CSS standard was supported by that browser (1, 2, 3 and other integer "
4884
- "values)"
4885
- msgstr "چه معیار توسط مرورگر حمایت میشود؟ ۱، ۲، ۳ و دیگر مقدار ها ... "
4886
-
4887
- #: ../../admin/wp-slimstat-admin.php:847
4888
- msgid ""
4889
- "this field is set to <em>[pre]</em> if the resource has been accessed "
4890
- "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4891
- "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
4892
- msgstr ""
4893
- "این ناحیه برای تنظیمات <a target=\"_blank\" href=\"https://developer.mozilla."
4894
- "org/en/Link_prefetching_FAQ\"> صفحه‌بندی </a> و یا شیوه های مشابه است."
4895
-
4896
- #: ../../admin/wp-slimstat-admin.php:848
4897
- msgid "author associated to that post/page when the resource was accessed"
4898
- msgstr "نویسنده مرتبط با این ارسال یا صفحه وقتی این ماخذ دسترسی شد"
4899
-
4900
- #: ../../admin/wp-slimstat-admin.php:849
4901
- msgid "ID of the category/term associated to the resource, when available"
4902
- msgstr "شناسه دسته یا عبارت که با منبع مرتبط است، اگر موجود باشد"
4903
-
4904
- #: ../../admin/wp-slimstat-admin.php:850
4905
- msgid "visitor's originating IP address, if available"
4906
- msgstr "آی پی منشا که بیننده از آن ‌عازم شده، در صورت موجود بودن"
4907
-
4908
- #: ../../admin/wp-slimstat-admin.php:851
4909
- msgid ""
4910
- "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4911
- "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
4912
- "feed, home; please refer to the <a target=\"_blank\" href=\"http://codex."
4913
- "wordpress.org/Conditional_Tags\">Conditional Tags</a> manual page for more "
4914
- "information"
4915
- msgstr ""
4916
- "ارسال، صفحه، cpt:<em>ارسال خاص</em> ضمیمه، نشانه، رده بندی، دسته بندی، "
4917
- "تاریخ، نویسنده، آرشیو، جستجو، خوراکی، خانه؛ لطفا برای اطلاع بیشتر به<a "
4918
- "target=\"_blank\" href=\"http://codex.wordpress.org/Conditional_Tags\"> "
4919
- "نشانه های شرطی</a> در صفحه راهنما مراجعه کنید."
4920
-
4921
- #: ../../admin/wp-slimstat-admin.php:852
4922
- msgid "viewport width and height (1024x768, 800x600, ...)"
4923
- msgstr "ابعاد صفحه نمایش (۱۰۲۴x۷۶۸، ۸۰۰x۶۰۰، ...)"
4924
-
4925
- #: ../../admin/wp-slimstat-admin.php:853
4926
- msgid ""
4927
- "generally used in conjunction with <em>is not empty</em>, identifies human "
4928
- "visitors"
4929
- msgstr ""
4930
- "معولا با ترکیب <em>خالی نیست</em> استفاده میشود و بیننده ها (انسان) را تشخیص "
4931
- "میدهد"
4932
-
4933
- #: ../../admin/wp-slimstat-admin.php:854
4934
- msgid "Date Filters"
4935
- msgstr "فیلترهای تاریخ"
4936
-
4937
- #: ../../admin/wp-slimstat-admin.php:854
4938
- msgid ""
4939
- "you can specify the timeframe by entering a number in the <em>interval</em> "
4940
- "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
4941
- "year=blank, interval=-1 will set a year-to-date filter)"
4942
- msgstr ""
4943
- "با وارد کردن اعداد در این ناحیه میتوانید یک مدت زمانی تعیین کنید؛ برای محدود "
4944
- "کردن سال به روز از -1 استفاده کنید."
4945
-
4946
- #: ../../admin/wp-slimstat-admin.php:855
4947
- msgid "SERP Position"
4948
- msgstr "مکان SERP"
4949
-
4950
- #: ../../admin/wp-slimstat-admin.php:855
4951
- msgid ""
4952
- "set the filter to Referer contains cd=N&, where N is the position you are "
4953
- "looking for"
4954
- msgstr ""
4955
- "تعیین صافی برای ارجاعی هایی که شامل اِن میشوند، آنجا که اِن مکانی هست که به "
4956
- "مشخص میکنید."
4957
-
4958
- #: ../../admin/wp-slimstat-admin.php:882
4959
- msgid "Yes"
4960
- msgstr "بلی"
4961
-
4962
- #: ../../admin/wp-slimstat-admin.php:884
4963
- msgid "Site Specific"
4964
- msgstr ""
4965
-
4966
- #~ msgid "Empty Database"
4967
- #~ msgstr "پایگاه داده خالی"
4968
-
4969
- #~ msgid "Reset Reports"
4970
- #~ msgstr "تنظیم مجدد گزارش ها"
4971
-
4972
- #~ msgid ""
4973
- #~ "Are you sure you want to restore the default arrangement of your reports?"
4974
- #~ msgstr " آیا مطمئنید که می‌خواهید تنظیم پیش فرظ گزارش ها را بازنشانی کنید؟"
4975
-
4976
- #~ msgid "No Panic Button"
4977
- #~ msgstr "دکمه خطر نباشد"
4978
-
4979
- #~ msgid ""
4980
- #~ "Reset the default arrangement of your reports. Helpful when, for some "
4981
- #~ "reason, reports disappear from your panels."
4982
- #~ msgstr ""
4983
- #~ " آیا مطمئنید که می‌خواهید تنظیم پیش فرظ گزارش ها به حالت پیش فرض بازنشانی "
4984
- #~ "کنید. این در برطرف کردن ناپدید شدن گزارش ها مفید است."
4985
-
4986
- #~ msgid "Visitors"
4987
- #~ msgstr "بینندگان"
4988
-
4989
- #~ msgid "Content"
4990
- #~ msgstr "محتوا"
4991
-
4992
- #~ msgid ""
4993
- #~ "WARNING: a misconfigured setting and/or server environment is preventing "
4994
- #~ "WP SlimStat from properly tracking your visitors. Please <a target="
4995
- #~ "\"_blank\" href=\"http://wordpress.org/extend/plugins/wp-slimstat/faq/"
4996
- #~ "\">check the FAQs</a> for more information."
4997
- #~ msgstr ""
4998
- #~ "اخطار: تنظیمات اشتباه است و یا اینکه محیط دامنه از ردگیری بیننده جلوگیری "
4999
- #~ "میکند. لطفا برای اطلاع بیشتر به<a target=\"_blank\" href=\"http://"
5000
- #~ "wordpress.org/extend/plugins/wp-slimstat/faq/\"> سوال و پاسخ ها</a> "
5001
- #~ "مراجعه کنید. "
5002
-
5003
- #~ msgid ""
5004
- #~ " And for keeping an eye on your visitors with <a href=\"http://slimstat."
5005
- #~ "getused.to.it/\">WP SlimStat</a>."
5006
- #~ msgstr ""
5007
- #~ "و برای نظارت بیننده ها با <a href=\"http://slimstat.getused.to.it/\">WP "
5008
- #~ "slimStat</a>."
5009
-
5010
- #~ msgid "Take a sneak peek at what human visitors are doing on your website."
5011
- #~ msgstr "نظارت بر اینکه کاربران در پایگاه شما چه میکنند"
5012
-
5013
- #~ msgid "Visit with keywords"
5014
- #~ msgstr "کلمات کلیدی (جدا شده با کاما):"
5015
-
5016
- #~ msgid "Known User"
5017
- #~ msgstr "کاربر آشنا"
5018
-
5019
- #~ msgid "Human Visitor"
5020
- #~ msgstr "بیننده انسانی"
5021
-
5022
- #, fuzzy
5023
- #~ msgid "At A Glance"
5024
- #~ msgstr "در یک نگاه"
5025
-
5026
- #~ msgid ""
5027
- #~ "Click on a data point to display the activity chart for each hour of that "
5028
- #~ "day"
5029
- #~ msgstr "روی نقطه‌های داده کلیک کنید تا نمودار فعالیت آن ساعت را مشاهده کنید"
5030
-
5031
- #~ msgid "Longest Post (ID)"
5032
- #~ msgstr "طولانی‌ترین ارسال (شناسه)"
5033
-
5034
- #~ msgid "Longest Comment (ID)"
5035
- #~ msgstr "طولانی ترین نظر (شناسه)"
5036
-
5037
- #~ msgid "Right Now"
5038
- #~ msgstr "همین حالا"
5039
-
5040
- #~ msgid "Right Now Screen"
5041
- #~ msgstr "صفحه همین حالا"
5042
-
5043
- #~ msgid "Right Now Extended"
5044
- #~ msgstr "همین حالا تمدید شده"
5045
-
5046
- #~ msgid ""
5047
- #~ "We have teamed up with HackerNinja.com to offer you a free website "
5048
- #~ "security scan. By clicking on Start Free Scan, your website will be "
5049
- #~ "analyzed to detect viruses and other treats. Please note that no "
5050
- #~ "confidential information is being sent to HackerNinja."
5051
- #~ msgstr ""
5052
- #~ "میتوانید پایگاه را خود را به صورت رایگاه ویروسیابی کنید (با همکاری "
5053
- #~ "HackerNinja.com). با فشار دادن دکمه زیر، پایگاه شما برای ویروس و دیگر "
5054
- #~ "تهدید ها کاوش میشود. هیچ اطلاعات شخصی به HackerNinja فرستاده نمیشود."
5055
-
5056
- #~ msgid "Security Scan"
5057
- #~ msgstr "بررسی امنیت"
5058
-
5059
- #~ msgid "AntiVirus Scan"
5060
- #~ msgstr "ویروسیابی"
5061
-
5062
- #~ msgid "Scan for Hostile Strings"
5063
- #~ msgstr "بررسی برای رشته خطرناک"
5064
-
5065
- #~ msgid "Google Safe Browsing List"
5066
- #~ msgstr " فهرست پایگاه های امن گوگل"
5067
-
5068
- #~ msgid "Hostile External Links"
5069
- #~ msgstr "پیوند خارجی خطرناک"
5070
-
5071
- #~ msgid "Other Treats"
5072
- #~ msgstr " قاقالی‌لی"
5073
-
5074
- #~ msgid "Passed"
5075
- #~ msgstr "قبول شد"
5076
-
5077
- #~ msgid "At Risk"
5078
- #~ msgstr "در خطر"
5079
-
5080
- #~ msgid "Chart Annotations"
5081
- #~ msgstr "حاشیه نمودار"
5082
-
5083
- #~ msgid ""
5084
- #~ "Add <em>markings</em> to each chart by specifying a date and its "
5085
- #~ "description in the field below. Useful to keep track of special events "
5086
- #~ "and correlate them to your analytics. Please use the following format:"
5087
- #~ "<code>YYYY MM DD HH:mm=Description 1,YYYY MM DD HH:mm=Description 2</"
5088
- #~ "code>. For example: 2012 12 31 23:55=New Year's Eve."
5089
- #~ msgstr ""
5090
- #~ "اضافه کردن تاریخ و توضیحات در ناحیه های زیر میتواند در رهگیری رویداد ها و "
5091
- #~ "مرتبط کردن آنها مفید باشد. لطفا از این نگارش استفاده کنید: <code>YYYY MM "
5092
- #~ "DD HH:mm=Description 1,YYYY MM DD HH:mm=Description 2</code>. 2012 12 31 "
5093
- #~ "23:55=New Year's Eve برای مثال."
5094
-
5095
- #~ msgid ""
5096
- #~ "Paste your export file's content and click on the button below, to import "
5097
- #~ "your settings."
5098
- #~ msgstr ""
5099
- #~ "برای وارد کردن تنظیمات محتوا را از پرونده قبلی برداید و در جعبه بچسبانید، "
5100
- #~ "سپس دکمه را فشار دهید"
5101
-
5102
- #~ msgid "Export Settings"
5103
- #~ msgstr "صادر کردن تنظیمات"
5104
-
5105
- #~ msgid "Stats"
5106
- #~ msgstr "آمارها"
5107
-
5108
- #~ msgid "Hide Stats Link"
5109
- #~ msgstr "پنهان کردن پیوند آمار"
5110
-
5111
- #~ msgid ""
5112
- #~ "Enable this option if your users are confused by the Stats link associate "
5113
- #~ "to each post in the Edit Posts page."
5114
- #~ msgstr ""
5115
- #~ "این گزینه را فعال کنید اگر پیوند آمار در صفحه ویراش ارسال کاربران را گیج "
5116
- #~ "میکند. "
5117
-
5118
- #~ msgid "Blacklist"
5119
- #~ msgstr "فهرست سیاه"
5120
-
5121
- #~ msgid ""
5122
- #~ "How valuable is monitoring your visitors for your site? WP SlimStat is "
5123
- #~ "and will always be free, but consider supporting the author if this "
5124
- #~ "plugin made your web site better, especially if you are making money out "
5125
- #~ "of it. Any donation received will be reinvested in the development of WP "
5126
- #~ "SlimStat, and to buy some food for my hungry family."
5127
- #~ msgstr ""
5128
- #~ "تا چه حد ارزشمند است نظارت بر بازدید کنندگان خود را برای سایت شما؟ "
5129
- #~ "SlimStat WP است و همیشه نیز خواهد بود، اما در نظر نویسنده اگر این افزونه "
5130
- #~ "وب سایت شما بهتر است، به خصوص اگر شما در حال ساخت پول از آن. هر گونه کمک "
5131
- #~ "مالی دریافتی در توسعه SlimStat WP دوباره سرمایه گذاری خواهد شد و برای "
5132
- #~ "خرید برخی از مواد غذایی برای خانواده گرسنه ام."
5133
-
5134
- #~ msgid "Need help?"
5135
- #~ msgstr "کمک؟"
5136
-
5137
- #, fuzzy
5138
- #~ msgid ""
5139
- #~ "Please visit our official <a href='http://wordpress.org/support/plugin/wp-"
5140
- #~ "slimstat' target='_blank'>support forum</a> to see if your question has "
5141
- #~ "already been answered. If not, feel free to post your request there, I'll "
5142
- #~ "do my best to address your concerns as soon as possible."
5143
- #~ msgstr ""
5144
- #~ "لطفا از پایگاه رسمی ما به نشانی &lt;a href='http://wordpress.org/support/"
5145
- #~ "plugin/wp-slimstat' target='_blank'&gt;تالار گفتگو&lt;/a&gt; بازدید کنید "
5146
- #~ "تا ببینید آیا سوال شما پاسخ داده شده است؟ اگر نه، با احساس آزادی کامل "
5147
- #~ "سوال خود را آن‌جا بپرسید."
5148
-
5149
- #~ msgid "Recent messages from the support forum"
5150
- #~ msgstr "پیام‌های اخیر از تالار گفتگو."
5151
-
5152
- #~ msgid "Don't want or cannot donate?"
5153
- #~ msgstr "نمی‌خواهید، یا نمی‌توانید اعانه دهید؟"
5154
-
5155
- #~ msgid ""
5156
- #~ "If you cannot donate money, please consider blogging about WP SlimStat, "
5157
- #~ "your visitors may not know you're using it! You can also contribute by "
5158
- #~ "donating some of your spare time: send me bug reports, localization files "
5159
- #~ "and ideas on how to improve WP SlimStat."
5160
- #~ msgstr ""
5161
- #~ "اگر شما می توانید پول را اهدا نمی کند، لطفا نظر وبلاگ نویسی در مورد "
5162
- #~ "SlimStat WP، بازدید کنندگان خود را نمی دانند ممکن است شما با استفاده از "
5163
- #~ "آن! شما همچنین می توانید با اهدای برخی از اوقات فراغت خود را کمک: به من "
5164
- #~ "گزارش اشکال، فایل ها و محلی سازی ایده ها در مورد چگونگی بهبود SlimStat WP "
5165
- #~ "ارسال کنید."
5166
-
5167
- #~ msgid "Show your appreciation"
5168
- #~ msgstr "قدردانی خود را نشان دهید"
5169
-
5170
- #, fuzzy
5171
- #~ msgid ""
5172
- #~ "Tell other people if WP SlimStat works for you and how good it is. <a "
5173
- #~ "href=\"http://wordpress.org/extend/plugins/wp-slimstat/\">Rate it</a> on "
5174
- #~ "its Plugin Directory page."
5175
- #~ msgstr ""
5176
- #~ "اگر SlimStat WP خوب کار می کند، به افراد دیگر بگویید.\n"
5177
- #~ "در صفحه‌ی خود افزونه &lt;a href=\"http://wordpress.org/extend/plugins/wp-"
5178
- #~ "slimstat/\"&gt;امتیاز بدهید&lt;/a&gt;. "
5179
-
5180
- #~ msgid "Support"
5181
- #~ msgstr "پشتیبانی"
5182
-
5183
- #, fuzzy
5184
- #~ msgid ""
5185
- #~ "<a href=\"http://slimstat.getused.to.it/\">WP SlimStat</a> is and will "
5186
- #~ "always be free, but consider supporting the author if this plugin helped "
5187
- #~ "you improve your website, or if you are making money out of it. Donations "
5188
- #~ "will be invested in the development of WP SlimStat, and to buy some food "
5189
- #~ "for my hungry family. You can also leave <a href=\"http://wordpress.org/"
5190
- #~ "support/view/plugin-reviews/wp-slimstat\">a review</a> to let other users "
5191
- #~ "know how this plugin has helped you manage your site."
5192
- #~ msgstr ""
5193
- #~ "تا چه حد ارزشمند است نظارت بر بازدید کنندگان خود را برای سایت شما؟ "
5194
- #~ "SlimStat WP است و همیشه نیز خواهد بود، اما در نظر نویسنده اگر این افزونه "
5195
- #~ "وب سایت شما بهتر است، به خصوص اگر شما در حال ساخت پول از آن. هر گونه کمک "
5196
- #~ "مالی دریافتی در توسعه SlimStat WP دوباره سرمایه گذاری خواهد شد و برای "
5197
- #~ "خرید برخی از مواد غذایی برای خانواده گرسنه ام."
5198
-
5199
- #~ msgid ""
5200
- #~ "You may want to prevent WP SlimStat from tracking users, but still be "
5201
- #~ "able to access your stats."
5202
- #~ msgstr ""
5203
- #~ "ممکن است بخواهید از ره‌گیری کاربران توست WP SlimStat جلوگیری کنید، اما "
5204
- #~ "همچنان قادر به دست‌رسی به آمار باشید."
5205
-
5206
- #~ msgid "Store Data For"
5207
- #~ msgstr "ذخیره‌ی داده برای"
5208
-
5209
- #, fuzzy
5210
- #~ msgid ""
5211
- #~ "Automatically deletes pageviews older than <strong>X</strong> days (uses "
5212
- #~ "Wordpress cron jobs). Zero disables this feature."
5213
- #~ msgstr ""
5214
- #~ "به صورت خودکار مشاهده صفحات قبل از &lt;strong&gt;X&lt;/strong&gt; روز را "
5215
- #~ "حذف می‌کند(با استفاده از cron وردپرس). «صفر» این قابلیت را از کار می‌اندازد."
5216
-
5217
- #, fuzzy
5218
- #~ msgid ""
5219
- #~ "Display hostnames instead of IP addresses. It slows down the rendering of "
5220
- #~ "your metrics."
5221
- #~ msgstr ""
5222
- #~ "مشاهده نام میزبان به جای نشانی آی‌پی. این کار نمایش گزارش را کمی کند می‌کند."
5223
-
5224
- #, fuzzy
5225
- #~ msgid ""
5226
- #~ "Specify the number of results to return for each module. Please use a "
5227
- #~ "<strong>positive</strong> value."
5228
- #~ msgstr ""
5229
- #~ "تعداد نتایجی که برای هر بخش می‌خواهید نشان داده شوند را انتخاب کنید. لطفا "
5230
- #~ "یک عدد &lt;strong&gt;مثبت&lt;/strong&gt; باشد."
5231
-
5232
- #, fuzzy
5233
- #~ msgid "Right Now Rows"
5234
- #~ msgstr "همین الآن"
5235
-
5236
- #~ msgid "Customize the IP lookup service URL."
5237
- #~ msgstr "نشانی خادم دل‌خواه برای مکان‌یابی بر اساس نشانی آی‌پی را وارد کنید."
5238
-
5239
- #~ msgid "Refresh Every"
5240
- #~ msgstr "به‌روزآوری هر"
5241
-
5242
- #~ msgid "Anonymize IP Addresses"
5243
- #~ msgstr "غیرقابل تشخیص کردن آی‌پی‌ها"
5244
-
5245
- #~ msgid "Filter Prefetch"
5246
- #~ msgstr "نادیده گرفتن پیش‌دریافت"
5247
-
5248
- #~ msgid "IP Addresses"
5249
- #~ msgstr "نشانی‌های آی‌پی"
5250
-
5251
- #~ msgid "Users"
5252
- #~ msgstr "کاربران"
5253
-
5254
- #~ msgid "Read access"
5255
- #~ msgstr "دست‌رسی خواندن"
5256
-
5257
- #~ msgid "Config access"
5258
- #~ msgstr "دست‌رسی پیکربندی"
5259
-
5260
- #~ msgid "Track Browser Capabilities"
5261
- #~ msgstr "ره‌گیری قابلیت‌های مرورگر"
5262
-
5263
- #, fuzzy
5264
- #~ msgid ""
5265
- #~ "Hooks a javascript event handler to each external link on your site, to "
5266
- #~ "track when visitors click on them. If Browser Capabilities is disabled, "
5267
- #~ "outbound clicks <strong>will not</strong> be tracked regardless of which "
5268
- #~ "value you set for this option."
5269
- #~ msgstr ""
5270
- #~ "می افزاید: کنترل رویداد جاوا اسکریپت به یک لینک خارجی در سایت خود، به "
5271
- #~ "پیگیری وقتی که بازدید کننده بر روی آنها کلیک کنید. اگر قابلیت های مرورگر "
5272
- #~ "غیر فعال است، بین المللی عازم ناحیه دور دست &lt;STRONG&gt; کلیک &lt;/ "
5273
- #~ "strong&gt; در دنبال بدون در نظر گرفتن که ارزش شما برای این گزینه است."
5274
-
5275
- #~ msgid "Your WP SlimStat table has been successfully emptied."
5276
- #~ msgstr "جداول WP SlimStat با موفقیت خالی شدند"
5277
-
5278
- #~ msgid "Your WP SlimStat tabs have been successfully reset."
5279
- #~ msgstr "جداول SlimStat به خوبی بازنشانی شدند."
5280
-
5281
- #~ msgid "Your WP SlimStat table has been successfully reset."
5282
- #~ msgstr "جداول SlimStat به خوبی بازنشانی شدند."
5283
-
5284
- #~ msgid "ERROR: Your Slimstat table could not be initialized."
5285
- #~ msgstr "خطا: جداول SlimStat نمی‌توانند آماده‌سازی شوند."
5286
-
5287
- #~ msgid "Your WP SlimStat table has been successfully optimized."
5288
- #~ msgstr "جداول WP SlimStat با موفقیت بهینه‌سازی شد."
5289
-
5290
- #~ msgid "Your WP SlimStat indexes have been successfully created."
5291
- #~ msgstr "اندیس‌های WP SlimStat با موفقیت ساخته شد."
5292
-
5293
- #~ msgid "Your WP SlimStat indexes have been successfully removed."
5294
- #~ msgstr "اندیس‌های WP SlimStat با موفقیت حذف شد."
5295
-
5296
- #~ msgid "Your WP SlimStat table has been successfully cleaned. Rows affected:"
5297
- #~ msgstr "جداول WP SlimStat با موفقیت پاک‌سازی شد. ردیف‌های تحت تاثیر:"
5298
-
5299
- #~ msgid ", it may take some time and exceed PHP's maximum execution time"
5300
- #~ msgstr ""
5301
- #~ "، ممکن است مقداری طول بکشد و از بیشینه مقدار زمان اجرای پی‌اچ‌پی بیش‌تر باشد."
5302
-
5303
- #~ msgid "Size"
5304
- #~ msgstr "اندازه"
5305
-
5306
- #~ msgid "Average Record Length"
5307
- #~ msgstr "میانگین طول رکورد"
5308
-
5309
- #~ msgid "Created on"
5310
- #~ msgstr "ساخته شده در"
5311
-
5312
- #~ msgid "Approximate Overhead"
5313
- #~ msgstr "سربار تقریبی"
5314
-
5315
- #~ msgid "Optimize tables"
5316
- #~ msgstr "بهینه کردن جداول"
5317
-
5318
- #~ msgid "Purge Data"
5319
- #~ msgstr "حذف داده‌های"
5320
-
5321
- #~ msgid "Is equal to"
5322
- #~ msgstr "مساوی‌ست با"
5323
-
5324
- #~ msgid "Contains"
5325
- #~ msgstr "شامل"
5326
-
5327
- #~ msgid "Does not contain"
5328
- #~ msgstr "ناشامل"
5329
-
5330
- #~ msgid "Starts with"
5331
- #~ msgstr "شروع می‌شود با"
5332
-
5333
- #~ msgid "Ends with"
5334
- #~ msgstr "خاتمه می‌یابد با"
5335
-
5336
- #~ msgid "Does not start with"
5337
- #~ msgstr "شروع نمی‌شود با"
5338
-
5339
- #~ msgid "Does not end with"
5340
- #~ msgstr "خاتمه نمی‌یابد با"
5341
-
5342
- #~ msgid "DELETE"
5343
- #~ msgstr "حذف"
5344
-
5345
- #~ msgid "Activate Indexes"
5346
- #~ msgstr "فعال کردن اندیس‌ها"
5347
-
5348
- #~ msgid "Remove Indexes"
5349
- #~ msgstr "حذف اندیس‌ها"
5350
-
5351
- #~ msgid ""
5352
- #~ "Use this feature if you want to save some DB space, while slightly "
5353
- #~ "degrading WP SlimStat overall performances."
5354
- #~ msgstr ""
5355
- #~ "با استفاده از این ویژگی، می‌توانید بخشی از فضای پایگاه داده را صرفه‌جویی "
5356
- #~ "کنید، اما کمی از کارایی زمان اجرای افزونه کاسته خواهد شد."
5357
-
5358
- #~ msgid "Reset Stats"
5359
- #~ msgstr "بازنشانی آمارها"
5360
-
5361
- #~ msgid ""
5362
- #~ "Select this option if you want to empty your WP SlimStat database (does "
5363
- #~ "not reset your settings)."
5364
- #~ msgstr ""
5365
- #~ "این گزینه را انتخاب کنید اگر شما می خواهید برای خالی کردن پایگاه داده WP "
5366
- #~ "خود را SlimStat (تنظیمات خود را تنظیم مجدد کنید)."
5367
-
5368
- #~ msgid "Show records where"
5369
- #~ msgstr "نشان دادن رکوردها وقتی"
5370
-
5371
- #~ msgid ""
5372
- #~ "Please refer to the contextual help (available on WP 3.3+) for more "
5373
- #~ "information on what these filters mean."
5374
- #~ msgstr ""
5375
- #~ "لطفا برای کسب اطلاعات بیش‌تر در مورد این فیلترها به متن کمک (قابل دسترس در "
5376
- #~ "WP 3.3+) مراجعه کنید."
5377
-
5378
- #~ msgid "Select a day to make the interval field appear."
5379
- #~ msgstr "یک روز را انتخاب کنید تا انتخاب بازه تاریخ فعال شود"
5380
-
5381
- #~ msgid "Filter by date"
5382
- #~ msgstr "فیلتر با تاریخ"
5383
-
5384
- #~ msgid "Go"
5385
- #~ msgstr "برو"
5386
-
5387
- #~ msgid "No records found"
5388
- #~ msgstr "هیچ رکوردی یافت نشد"
5389
-
5390
- #~ msgid "refreshing in"
5391
- #~ msgstr "تازه کردن در"
5392
-
5393
- #~ msgid "Filter results where IP equals %s"
5394
- #~ msgstr "نتایج را فیلتر کن وقتی آی‌پی مساوی‌ست با %s"
5395
-
5396
- #~ msgid "Filter results where user equals %s"
5397
- #~ msgstr "نتایج را فیلتر کن وقتی کاربر مساوی‌ست با %s"
5398
-
5399
- #~ msgid "Filter results where ther user's real IP equals %s"
5400
- #~ msgstr "نتایج را فیلتر کن وقتی نشانی واقعی آی‌پی کاربر مساوی‌ست با %s"
5401
-
5402
- #~ msgid "Country"
5403
- #~ msgstr "کشور"
5404
-
5405
- #~ msgid "Platform"
5406
- #~ msgstr "بستر"
5407
-
5408
- #, fuzzy
5409
- #~ msgid "Filter results where browser type equals %s"
5410
- #~ msgstr "نتایج را فیلتر کن وقتی نوع محتوا مساوی‌ست با %s"
5411
-
5412
- #~ msgid "Filter results where screen resolution equals %s"
5413
- #~ msgstr "نتایح را فیلتر کن وقتی ابعاد صفحه نمایش مساوی‌ست با %s"
5414
-
5415
- #~ msgid "Filter results where content type equals %s"
5416
- #~ msgstr "نتایج را فیلتر کن وقتی نوع محتوا مساوی‌ست با %s"
5417
-
5418
- #~ msgid "Bots, Crawlers and others"
5419
- #~ msgstr "بات‌ها، خزنده‌ها و سایر..."
5420
-
5421
- #~ msgid "Recent Known Visitors"
5422
- #~ msgstr "کاربران آشنای اخیر"
5423
-
5424
- #~ msgid "Recent 404 URLs"
5425
- #~ msgstr "نشانی خطاهای ۴۰۴ اخیر"
5426
-
5427
- #~ msgid "Top 404 URLs"
5428
- #~ msgstr "بالاترین نشانی‌های خطای ۴۰۴"
5429
-
5430
- #~ msgid "Remove all filters"
5431
- #~ msgstr "حذف همه فیلترها"
5432
-
5433
- #~ msgid "Filter results where domain equals %s"
5434
- #~ msgstr "نتایج را فیلتر کن وقتی که دامنه مساوی‌ست با %s"
5435
-
5436
- #~ msgid "Filter results where searchterm equals %s"
5437
- #~ msgstr "نتایج را فیلتر کن وقتی عبارت جستجو مساوی‌ست با %s"
5438
-
5439
- #, fuzzy
5440
- #~ msgid "Filter results where date equals today"
5441
- #~ msgstr "نتایج را فیلتر کن وقتی که دامنه مساوی‌ست با %s"
5442
-
5443
- #, fuzzy
5444
- #~ msgid "Filter results where date equals yesterday"
5445
- #~ msgstr "نتایج را فیلتر کن وقتی که دامنه مساوی‌ست با %s"
5446
-
5447
- #, fuzzy
5448
- #~ msgid "This number includes <strong>human visits</strong> only."
5449
- #~ msgstr "این عدد فقط شامل مشاهدات انسانی‌ست."
5450
-
5451
- #~ msgid "10 - 20 minutes"
5452
- #~ msgstr "۱۰ تا ۲۰ دقیقه"
5453
-
5454
- #, fuzzy
5455
- #~ msgid "Your Content"
5456
- #~ msgstr "محتوا"
5457
-
5458
- #~ msgid "Users by capability"
5459
- #~ msgstr "کاربران بر اساس قابلیت"
5460
-
5461
- #~ msgid "Top Languages - Just Visitors"
5462
- #~ msgstr "بیش‌ترین زبان‌ها - فقط بینندگان"
5463
-
5464
- #~ msgid "Resources"
5465
- #~ msgstr "منابع"
5466
-
5467
- #~ msgid "Minimum capability"
5468
- #~ msgstr "حداقل قابلیت"
5469
-
5470
- #, fuzzy
5471
- #~ msgid "Records: %d - %d"
5472
- #~ msgstr "رکوردهای %d تا %d از %d"
5473
-
5474
- #~ msgid "Open in a new window"
5475
- #~ msgstr "در پنجره جدید باز کن"
5476
-
5477
- #~ msgid "Your Geolocation data has been successfully updated."
5478
- #~ msgstr "داده‌های مکان‌یابی با موفقیت به‌روزرسانی شدند"
5479
-
5480
- #~ msgid "ERROR: Your Geolocation source file is not readable."
5481
- #~ msgstr "خطا: فایل مکان‌یابی قابل خواندن نیست."
5482
-
5483
- #~ msgid "Update Geolocation DB"
5484
- #~ msgstr "به‌روزآوری پایگاه داده مکان‌یابی"
5485
-
5486
- #~ msgid "This button loads the new ip2location data."
5487
- #~ msgstr "این دکمه داده‌های «تبدیل آی‌پی به موقعیت» جدید را بارگزاری می‌کند"
5488
-
5489
- #~ msgid "Use standalone menu"
5490
- #~ msgstr "استفاده از منوی مستقل"
5491
-
5492
- #, fuzzy
5493
- #~ msgid ""
5494
- #~ "Specify the number of rows per page to show in the Right Now screen. "
5495
- #~ "Please use a <strong>positive</strong> value."
5496
- #~ msgstr ""
5497
- #~ "تعداد ردیف‌های هر صفحه که در «همین الآن» نمایش داده می‌شوند را انتخاب کنید. "
5498
- #~ "لطفا عددی&lt;strong&gt;مثبت&lt;/strong&gt; باشد."
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP SlimStat\n"
4
+ "POT-Creation-Date: 2014-12-12 10:24-0500\n"
5
+ "PO-Revision-Date: \n"
6
+ "Last-Translator: Get Used To IT <support@getused.to.it>\n"
7
+ "Language-Team: Salman <salmanmp@gmail.com>\n"
8
+ "Language: fa\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.9\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-SearchPath-0: ../..\n"
16
+
17
+ #: ../../admin/config/addons.php:14
18
+ msgid ""
19
+ "There was an error retrieving the add-ons list from the server. Please try "
20
+ "again later. Error Message:"
21
+ msgstr ""
22
+ " بازیابی فهرست افزونه ها از دامنه با اشکال مواجه شد. لطفا دوباره آزمایش "
23
+ "کنید. شمار خطا: "
24
+
25
+ #: ../../admin/config/addons.php:23
26
+ msgid ""
27
+ "There was an error decoding the add-ons list from the server. Please try "
28
+ "again later."
29
+ msgstr ""
30
+ "رمزگشایی فهرست افزونه ها از دامنه با اشکال مواجه شد. لطفا دوباره آزمایش کنید."
31
+
32
+ #: ../../admin/config/addons.php:29 ../../admin/config/index.php:9
33
+ #: ../../admin/wp-slimstat-admin.php:512 ../../admin/wp-slimstat-admin.php:529
34
+ #: ../../wp-slimstat.php:1351
35
+ msgid "Add-ons"
36
+ msgstr "افزونه ها"
37
+
38
+ #: ../../admin/config/addons.php:30
39
+ #, fuzzy
40
+ msgid ""
41
+ "Add-ons extend the functionality of Slimstat in many interesting ways. We "
42
+ "offer both free and premium (paid) extensions. Each add-on can be installed "
43
+ "as a separate plugin, which will receive regular updates via the WordPress "
44
+ "Plugins panel. In order to be notified when a new version of a premium add-"
45
+ "on is available, please enter the <strong>license key</strong> you received "
46
+ "when you purchased it."
47
+ msgstr ""
48
+ "میتوانید با استفاده از افزونه ها کارکرد برنامه را گسترش دهید. افزونه های "
49
+ "جذابی به صورت رایگان و پولی موجود است که هر یک به طور جداگانه قابل نصب و به "
50
+ "روز رسانی میباشد. اگر دوست دارید است از نسخه جدید افزونه با خبر شوید لطفا "
51
+ "شماره مجوز که در هنگام خرید دریافت کردید وارد کنید."
52
+
53
+ #: ../../admin/config/addons.php:36
54
+ msgid "Add-on"
55
+ msgstr "افزونه"
56
+
57
+ #: ../../admin/config/addons.php:36
58
+ msgid "Description"
59
+ msgstr "توضیحات"
60
+
61
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:18
62
+ msgid "General"
63
+ msgstr "عمومی"
64
+
65
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:45
66
+ msgid "Views"
67
+ msgstr "مشاهده ها"
68
+
69
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:69
70
+ msgid "Filters"
71
+ msgstr "فیلترها"
72
+
73
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:140
74
+ msgid "Permissions"
75
+ msgstr "مجوزها"
76
+
77
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:217
78
+ msgid "Advanced"
79
+ msgstr "پیش‌رفته"
80
+
81
+ #: ../../admin/config/index.php:9 ../../admin/config/index.php:249
82
+ msgid "Maintenance"
83
+ msgstr "نگهداری"
84
+
85
+ #: ../../admin/config/index.php:14 ../../admin/config/index.php:147
86
+ #: ../../admin/wp-slimstat-admin.php:558 ../../admin/wp-slimstat-admin.php:561
87
+ #: ../../wp-slimstat.php:1354
88
+ msgid "Settings"
89
+ msgstr "تنظیمات"
90
+
91
+ #: ../../admin/config/index.php:20 ../../admin/config/index.php:223
92
+ msgid "Tracker"
93
+ msgstr "ره‌گیری"
94
+
95
+ #: ../../admin/config/index.php:21
96
+ msgid "Enable Tracking"
97
+ msgstr "فعال‌سازی رد‌گیری"
98
+
99
+ #: ../../admin/config/index.php:21
100
+ #, fuzzy
101
+ msgid "Turn the tracker on or off, but keep the reports accessible."
102
+ msgstr ""
103
+ "رهگیری را روشن و یا خاموش میکند ولی گزارش ها در دسترس خواهد بود که در صورت "
104
+ "غیر فعال کردن افزونه بدین گونه نخواهد بود."
105
+
106
+ #: ../../admin/config/index.php:22
107
+ msgid "Monitor Admin Pages"
108
+ msgstr "نظارت صفحه مدیریت"
109
+
110
+ #: ../../admin/config/index.php:22
111
+ msgid "Enable this option to track your users' activity within the admin."
112
+ msgstr "برای رهگیری کاربران در ناحیه مدیریتی ین گزینه را فعال کنید."
113
+
114
+ #: ../../admin/config/index.php:23
115
+ msgid "Enable Spy Mode"
116
+ msgstr "فعال کردن دید دزدکی"
117
+
118
+ #: ../../admin/config/index.php:23
119
+ msgid ""
120
+ "Collect information about screen resolutions, outbound links, downloads, "
121
+ "etc. If Tracking Mode is set to Javascript, this data will be tracked "
122
+ "regardless of which value you set for this option."
123
+ msgstr ""
124
+ "جمع آوری اطلاعات در مورد ابعاد صفحه بیننده، پیوند های بیرونی، بارگیری، و "
125
+ "غیره. در صورت انتخاب حالت ردگیری به جاواسکریپت، این داده ها رهگیری میشود "
126
+ "صرفنظر از مقداری که اینجا اختیار میکنید."
127
+
128
+ #: ../../admin/config/index.php:24
129
+ msgid "Tracking Mode"
130
+ msgstr " حالت ردگیری"
131
+
132
+ #: ../../admin/config/index.php:24
133
+ #, fuzzy
134
+ msgid ""
135
+ "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
136
+ "Total Cache, WP SuperCache, HyperCache, etc). Slimstat will behave pretty "
137
+ "much like Google Analytics, and visitors whose browser does not support "
138
+ "Javascript will be ignored. A nice side effect is that <strong>most "
139
+ "spammers, search engines and other crawlers</strong> will not be tracked."
140
+ msgstr ""
141
+ "اگر از یک افزونه یادگاهی (W3 Total Cache ،WP SuperCache ،HyperCache و غیره) "
142
+ "استفاده میکنید<strong>Javascript</strong> را انتخاب کنید. این برنامه بسیار "
143
+ "شبیه Google Anaylyti عمل میکند و مرورگر بینندگانی که جاواسکریپت نداشته باشند "
144
+ "پذیرفته نمیشود. اثر جانبی این حالت این است که بیشتر هرز ها، موتورهای جستجو و "
145
+ "دیگر خزنده ها نیز دیگر رهگیری نمیشوند."
146
+
147
+ #: ../../admin/config/index.php:24
148
+ msgid "Javascript"
149
+ msgstr "جاوااسکریپت"
150
+
151
+ #: ../../admin/config/index.php:24
152
+ msgid "Server-side"
153
+ msgstr "طرف دامنه"
154
+
155
+ #: ../../admin/config/index.php:26
156
+ msgid "WordPress Integration"
157
+ msgstr "تلفیق کردن وردپرس"
158
+
159
+ #: ../../admin/config/index.php:27
160
+ msgid "Menu Position"
161
+ msgstr "محل گزینگان"
162
+
163
+ #: ../../admin/config/index.php:27
164
+ #, fuzzy
165
+ msgid ""
166
+ "Choose between a standalone admin menu for Slimstat or a drop down in the "
167
+ "admin bar (if visible)."
168
+ msgstr "بین گزینگان مدیریتی ثابت و یا گزینگان مدیریتی ابشاری انتخاب کنید."
169
+
170
+ #: ../../admin/config/index.php:27
171
+ msgid "Side Menu"
172
+ msgstr "گزینگان کناره"
173
+
174
+ #: ../../admin/config/index.php:27
175
+ msgid "Admin Bar"
176
+ msgstr " منوی مدیریت"
177
+
178
+ #: ../../admin/config/index.php:28
179
+ #, fuzzy
180
+ msgid "Add Stats to Posts and Pages"
181
+ msgstr "یک ستون به نوشته‌ها اضافه کن"
182
+
183
+ #: ../../admin/config/index.php:28
184
+ #, fuzzy
185
+ msgid ""
186
+ "Add a new column to the Edit Posts/Pages screens, with the number of hits "
187
+ "per post."
188
+ msgstr ""
189
+ "یک ستون جدید به صفحه «ویرایش ارسال» اضافه می‌کند، که شامل تعداد بازدید برای "
190
+ "هر ارسال میباشد (ممکن است مدت تحویل را زیاد کند)"
191
+
192
+ #: ../../admin/config/index.php:30
193
+ msgid "Database"
194
+ msgstr "پایگاه داده"
195
+
196
+ #: ../../admin/config/index.php:31
197
+ #, fuzzy
198
+ msgid "Delete records"
199
+ msgstr "اطلاعات"
200
+
201
+ #: ../../admin/config/index.php:31
202
+ msgid ""
203
+ "If database space is not an issue, you can decide to archive older records "
204
+ "in another table, instead of deleting them. This way performance is "
205
+ "preserved, but you will still be able to access your data at a later time, "
206
+ "if needed."
207
+ msgstr ""
208
+
209
+ #: ../../admin/config/index.php:32
210
+ msgid "Retain data for"
211
+ msgstr "نگاه داشتن داده برای"
212
+
213
+ #: ../../admin/config/index.php:32
214
+ #, fuzzy
215
+ msgid ""
216
+ "Clean-up log entries older than the number of days specified here above. "
217
+ "Enter <strong>0</strong> (number zero) if you want to preserve your data "
218
+ "regardless of its age."
219
+ msgstr ""
220
+ "ورودی هایی که از تعداد روزها زیر بیشتر باشد حذف میشوند. صفر وارد کنید اگر "
221
+ "مایل به حفظ داده ها صرفنظر از تاریخ آن هستید."
222
+
223
+ #: ../../admin/config/index.php:32
224
+ msgid "Next clean-up on"
225
+ msgstr "تمیزکاری بعدی در"
226
+
227
+ #: ../../admin/config/index.php:32
228
+ #, php-format
229
+ msgid "Entries logged on or before %s will be permanently deleted."
230
+ msgstr "ردیف‌های مربوط به روز %s و قبل از آن حذف خواهند شد."
231
+
232
+ #: ../../admin/config/index.php:32 ../../admin/view/index.php:100
233
+ #: ../../admin/view/wp-slimstat-db.php:74
234
+ #: ../../admin/view/wp-slimstat-reports.php:800
235
+ msgid "days"
236
+ msgstr "روز"
237
+
238
+ #: ../../admin/config/index.php:47
239
+ msgid "Data and Formats"
240
+ msgstr "داده و نگارش ها"
241
+
242
+ #: ../../admin/config/index.php:48
243
+ msgid "Convert IP Addresses"
244
+ msgstr "تبدیل نشانی آی‌پی"
245
+
246
+ #: ../../admin/config/index.php:48
247
+ msgid "Display provider names instead of IP addresses."
248
+ msgstr "نمایش خدمات دهنده ها به جای ای پی"
249
+
250
+ #: ../../admin/config/index.php:49
251
+ msgid "Number Format"
252
+ msgstr "نگارش اعداد"
253
+
254
+ #: ../../admin/config/index.php:49
255
+ #, fuzzy
256
+ msgid "Choose the number format you want to use for your reports."
257
+ msgstr ""
258
+ "نگارش مناسب برای ملاحظه گزارش اعداد را نتخاب کنید، امریکایی یا اروپایی."
259
+
260
+ #: ../../admin/config/index.php:50
261
+ #, fuzzy
262
+ msgid "Enable SOV"
263
+ msgstr "فعال‌سازی CDN"
264
+
265
+ #: ../../admin/config/index.php:50
266
+ msgid ""
267
+ "In linguistic typology, a subject-object-verb (SOV) language is one in which "
268
+ "the subject, object, and verb of a sentence appear in that order, like in "
269
+ "Japanese."
270
+ msgstr ""
271
+
272
+ #: ../../admin/config/index.php:51
273
+ msgid "Show Display Name"
274
+ msgstr "نمایش نام صفحه نمایش"
275
+
276
+ #: ../../admin/config/index.php:51
277
+ msgid ""
278
+ "By default, users are listed by their usernames. Use this option to "
279
+ "visualize their display names instead."
280
+ msgstr ""
281
+ "به طور پیش فرظ، کاربران با نام کاربری فهرست بندی میشوند. این گزینه کاربران "
282
+ "را با نام فهرست بندی میکند."
283
+
284
+ #: ../../admin/config/index.php:52
285
+ msgid "Show User Agent"
286
+ msgstr "نمایش عامل کاربر "
287
+
288
+ #: ../../admin/config/index.php:52
289
+ msgid ""
290
+ "Choose if you want to see the browser name or a complete user agent string "
291
+ "when hovering on browser icons."
292
+ msgstr ""
293
+ " این گزینه را انتخاب کنید اگر میخواهید اسم مرورگر یا نام کامل کاربر را با "
294
+ "توقف اشاره گر بر روی نقشک ملاحظه کنید."
295
+
296
+ #: ../../admin/config/index.php:53
297
+ msgid "Show Titles"
298
+ msgstr "نمایش عناوین"
299
+
300
+ #: ../../admin/config/index.php:53
301
+ #, fuzzy
302
+ msgid ""
303
+ "Slimstat converts your permalinks into post and page titles. Disable this "
304
+ "feature if you need to see the URL in your reports."
305
+ msgstr ""
306
+ " تمامی پیوندهای یکتا را به ارسال و صفحه تبدیل میکند. این ویژگی را غیرفعال "
307
+ "کنید اگر در گزارش به نشانی نیاز دارید"
308
+
309
+ #: ../../admin/config/index.php:54
310
+ #, fuzzy
311
+ msgid "Date Format"
312
+ msgstr "داده و نگارش ها"
313
+
314
+ #: ../../admin/config/index.php:54
315
+ msgid ""
316
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
317
+ "Format</a> to use when displaying a pageview's date."
318
+ msgstr ""
319
+
320
+ #: ../../admin/config/index.php:55
321
+ #, fuzzy
322
+ msgid "Time Format"
323
+ msgstr "نگارش اعداد"
324
+
325
+ #: ../../admin/config/index.php:55
326
+ msgid ""
327
+ "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
328
+ "Format</a> to use when displaying a pageview's time."
329
+ msgstr ""
330
+
331
+ #: ../../admin/config/index.php:57
332
+ msgid "Functionality"
333
+ msgstr "کاربردی"
334
+
335
+ #: ../../admin/config/index.php:58
336
+ msgid "Asynchronous Views"
337
+ msgstr "دید غیرهم‌زمان(آسنکرون)"
338
+
339
+ #: ../../admin/config/index.php:58
340
+ msgid ""
341
+ "Load all the reports dynamically. It makes the reports render faster, but it "
342
+ "increases the load on your server."
343
+ msgstr ""
344
+ "بارگزاری همه گزارشها به صورت پویا که ارائه آن را تسریع میکند ولی فشار به "
345
+ "دامنه را نیز افزایش میدهد. "
346
+
347
+ #: ../../admin/config/index.php:59
348
+ msgid "SlimScroll"
349
+ msgstr ""
350
+
351
+ #: ../../admin/config/index.php:59
352
+ msgid ""
353
+ "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
354
+ "scrollbar."
355
+ msgstr ""
356
+
357
+ #: ../../admin/config/index.php:60
358
+ msgid "Expand Details"
359
+ msgstr "گسترش جزئیات"
360
+
361
+ #: ../../admin/config/index.php:60
362
+ msgid "Expand each row's details by default, insted of on mousehover."
363
+ msgstr "گشترش جزئیات‌ هر سطر به طور پیش فرظ، به جای رویت با توقف اشاره گر"
364
+
365
+ #: ../../admin/config/index.php:61 ../../admin/config/index.php:65
366
+ msgid "Rows to Display"
367
+ msgstr "نمایش ردیف ها"
368
+
369
+ #: ../../admin/config/index.php:61
370
+ msgid "Specify the number of items in each report."
371
+ msgstr "تعداد موردها در هر گزارش را مشخص کنید."
372
+
373
+ #: ../../admin/config/index.php:63
374
+ msgid "Activity Log"
375
+ msgstr "فهرست فعالیت ها"
376
+
377
+ #: ../../admin/config/index.php:64
378
+ msgid "Live Stream"
379
+ msgstr "پخش زنده"
380
+
381
+ #: ../../admin/config/index.php:64
382
+ #, fuzzy
383
+ msgid ""
384
+ "Enable the Live view, which refreshes the Activity Log every X seconds. "
385
+ "Enter <strong>0</strong> (number zero) to deactivate this feature."
386
+ msgstr ""
387
+ "فعال کردن «نمای زنده» صفحه «همین حالا» را هر چند ثانیه تازه سازی میکند. برای "
388
+ "فیرفعال کردن صفر وارد کنید."
389
+
390
+ #: ../../admin/config/index.php:64 ../../admin/config/index.php:225
391
+ msgid "seconds"
392
+ msgstr "ثانیه"
393
+
394
+ #: ../../admin/config/index.php:65
395
+ #, fuzzy
396
+ msgid "Specify the number of items in the Activity Log."
397
+ msgstr " تعداد موردها در فهرست صفحه «همین حالا» را مشخص کنید"
398
+
399
+ #: ../../admin/config/index.php:66
400
+ #, fuzzy
401
+ msgid "Activity Log Extended"
402
+ msgstr "فهرست فعالیت ها"
403
+
404
+ #: ../../admin/config/index.php:66
405
+ #, fuzzy
406
+ msgid ""
407
+ "Choose if you want to see outbound links listed in the Activity Log. It "
408
+ "might slow down the rendering of this report."
409
+ msgstr ""
410
+ "اگر مایل به رویت پیوندهای بیرونی در فهرست بخش همین حالا هستید انتخاب کنید. "
411
+ "ممکن است به طول انجامیدن تحویل گزارش منجر شود."
412
+
413
+ #: ../../admin/config/index.php:71
414
+ msgid "Visitors and Known Users"
415
+ msgstr "بیننده و کاربران آشنا"
416
+
417
+ #: ../../admin/config/index.php:72
418
+ msgid "Track Registered Users"
419
+ msgstr "ره‌گیری کاربران ثبت شده"
420
+
421
+ #: ../../admin/config/index.php:72
422
+ msgid "Enable this option to track logged in users."
423
+ msgstr "اگر می‌خواهید کاربران وارد شده را ره‌گیری کنید این گزینه را فعال کنید."
424
+
425
+ #: ../../admin/config/index.php:73
426
+ msgid "Blacklist by Username"
427
+ msgstr " فهرست سیاه با نشانی آی‌پی"
428
+
429
+ #: ../../admin/config/index.php:73
430
+ msgid ""
431
+ "List all the usernames you don't want to track, separated by commas. Please "
432
+ "be aware that spaces are <em>not</em> ignored and that usernames are case "
433
+ "sensitive."
434
+ msgstr ""
435
+ "فهرست نام کاربرانی که نمیخواهید رهگیری کنید، تفکیک شده با ویرگول. لطفا در "
436
+ "نظر داشته باشید که فاصله ها و حروف کوچک و بزرگ نیز حساب میشود."
437
+
438
+ #: ../../admin/config/index.php:74
439
+ msgid "Blacklist by IP Address"
440
+ msgstr " فهرست سیاه با نشانی آی‌پی"
441
+
442
+ #: ../../admin/config/index.php:74
443
+ #, fuzzy
444
+ msgid ""
445
+ "List all the IP addresses you don't want to track, separated by commas. Each "
446
+ "network <strong>must</strong> be defined using the <a href='http://en."
447
+ "wikipedia.org/wiki/Classless_Inter-Domain_Routing' target='_blank'>CIDR "
448
+ "notation</a> (i.e. <em>192.168.0.0/24</em>). This filter applies both to the "
449
+ "public IP and the originating IP, if available."
450
+ msgstr ""
451
+ "فهرست آی پی آدرس هایی که نمیخواهید رهگیری کنید، با ویرگول جدا شده است. هر "
452
+ "شبکه باید با استفاده از علامتگذاری<a href='http://en.wikipedia.org/wiki/"
453
+ "Classless_Inter-Domain_Routing' target='_blank'>CIDR</a> تعریف شود (مثل "
454
+ "<em>192.168.0.0/24</em>) و اگر نگارش صحیح نباشد رهگیری به درستی انجام نمیشود."
455
+
456
+ #: ../../admin/config/index.php:75
457
+ msgid "Blacklist by Capability"
458
+ msgstr "کاربران بر اساس توانایی"
459
+
460
+ #: ../../admin/config/index.php:75
461
+ msgid ""
462
+ "Users having at least one of the <a href='http://codex.wordpress.org/"
463
+ "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
464
+ "will not be tracked. Capabilities are case-insensitive."
465
+ msgstr ""
466
+ "کاربرانی که حداقل یکی از<a href='http://codex.wordpress.org/"
467
+ "Roles_and_Capabilities' target='_new'> خواص</a> زیر را داشته باشند ردگیری "
468
+ "نمیشوند (به بزرگ و کوچک بودن را دقت داشته باشید)."
469
+
470
+ #: ../../admin/config/index.php:77
471
+ msgid "Profiling"
472
+ msgstr "نمایه"
473
+
474
+ #: ../../admin/config/index.php:78
475
+ msgid "Ignore Spammers"
476
+ msgstr "نادیده گرفتن هرزها"
477
+
478
+ #: ../../admin/config/index.php:78
479
+ msgid ""
480
+ "Enable this option if you don't want to track visits from users identified "
481
+ "as spammers by third-party tools like Akismet. Pageviews generated by users "
482
+ "whose comments are later marked as spam, will also be removed from the "
483
+ "database."
484
+ msgstr ""
485
+ " اگر نمیخواهید بازدید کاربرانی که هرز شناخته شده اند (توسط برنامه هایی مثل "
486
+ "Akismet) را رهگیری کنید این گزینه را فعال کنید. بازدید های کاربرانی که بعدا "
487
+ "به صورت هرز شناخته شوند از پایگاه داده ها نیز حذف میشوند."
488
+
489
+ #: ../../admin/config/index.php:79
490
+ msgid "Permalinks"
491
+ msgstr "پیوندهای یکتا"
492
+
493
+ #: ../../admin/config/index.php:79
494
+ msgid ""
495
+ "List all the URLs on your website that you don't want to track, separated by "
496
+ "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
497
+ "Wildcards: <code>*</code> matches 'any string, including the empty string', "
498
+ "<code>!</code> matches 'any character'. For example, <code>/abou*</code> "
499
+ "will match /about and /abound, <code>/abo*t</code> will match /aboundant "
500
+ "and /about, <code>/abo!t</code> will match /about and /abort. Strings are "
501
+ "case-insensitive."
502
+ msgstr ""
503
+ "فهرست تمامی نشانی هایی در تارنمای شما که نمیخواهید رهگیری کنید، تفکیک شده با "
504
+ "ویرگول. نام دامنه را وارد نکنید. مثلا: <em>/about, ?p=1</em>, etc. "
505
+ "Wildcards: <code>*</code> matches 'any string, including the empty string', "
506
+ "<code>!</code> matches 'any character'. For example, <code>/abou*</code> "
507
+ "will match /about and /abound, <code>/abo*t</code> will match /aboundant "
508
+ "and /about, <code>/abo!t</code> will match /about and /abort. Strings are "
509
+ "case-insensitive."
510
+
511
+ #: ../../admin/config/index.php:80
512
+ msgid "Countries"
513
+ msgstr "کشورها"
514
+
515
+ #: ../../admin/config/index.php:80
516
+ msgid ""
517
+ "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
518
+ "track, separated by commas."
519
+ msgstr ""
520
+ "کد کشورهایی که مایل به رهگیری نیستید، تفکیک شده با ویرگول مثل <code>en-us, "
521
+ "it, es</code>"
522
+
523
+ #: ../../admin/config/index.php:81
524
+ msgid "User Agents"
525
+ msgstr "مرورگرهای کاربران"
526
+
527
+ #: ../../admin/config/index.php:81
528
+ msgid ""
529
+ "Browsers (user agents) you don't want to track, separated by commas. You can "
530
+ "specify the browser's version adding a slash after the name (i.e. "
531
+ "<em>Firefox/3.6</em>). Wildcards: <code>*</code> matches 'any string, "
532
+ "including the empty string', <code>!</code> matches 'any character'. For "
533
+ "example, <code>Chr*</code> will match Chrome and Chromium, <code>IE/!.0</"
534
+ "code> will match IE/7.0 and IE/8.0. Strings are case-insensitive."
535
+ msgstr ""
536
+ " Wildcards: <code>*</code> matches 'any string, including the empty string', "
537
+ "<code>!</code> matches 'any character'. For example, <code>Chr*</code> will "
538
+ "match Chrome and Chromium, <code>IE/!.0</code> will match IE/7.0 and IE/8.0. "
539
+ "Strings are case-insensitive.مرورگرهایی که نمیخواهید رهگیری کنید، تفکیک شده "
540
+ "با ویرگول. میتوانید نسخه مرورگر را نیز مشخص کنید. مثلا <em>Firefox/3.6</em>. "
541
+
542
+ #: ../../admin/config/index.php:82
543
+ msgid "Referring Sites"
544
+ msgstr "سایت ارجاع دهنده"
545
+
546
+ #: ../../admin/config/index.php:82
547
+ msgid ""
548
+ "Referring URLs that you don't want to track, separated by commas: "
549
+ "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
550
+ "Wildcards: <code>*</code> matches 'any string, including the empty string', "
551
+ "<code>!</code> matches 'any character'. Strings are case-insensitive. Please "
552
+ "include either a wildcard or the protocol you want to filter (http://, "
553
+ "https://)."
554
+ msgstr ""
555
+ "نشانی های ارجاع کننده ای که مایل به رهگیری آنها نیستید، تفکیک شده با ویرگول. "
556
+ "به عنوان مثال:<code>http://mysite.com*</code>, <code>*/ignore-me-please</"
557
+ "code>, و غیره. Wildcards: <code>*</code> matches 'any string, including the "
558
+ "empty string', <code>!</code> matches 'any character'. Strings are case-"
559
+ "insensitive. Include either a wildcard or the protocol you want to filter "
560
+ "(http://, https://)."
561
+
562
+ #: ../../admin/config/index.php:84
563
+ #, fuzzy
564
+ msgid "Internal and Outbound Links"
565
+ msgstr "پیوندهای بیرونی اخیر"
566
+
567
+ #: ../../admin/config/index.php:85
568
+ msgid "Track Outbound Clicks"
569
+ msgstr "ره‌گیری کلیک های بیرونی"
570
+
571
+ #: ../../admin/config/index.php:85
572
+ msgid ""
573
+ "Track when your visitors click on link to external websites. This option "
574
+ "required Spy Mode to be enabled."
575
+ msgstr ""
576
+ "پیوندهایی که بازدیدکننده را به خارج از پایگاه ها میبرد رهگیری کنید. این "
577
+ "گزینه نیاز به فعال کردن دید دزدکی دارد."
578
+
579
+ #: ../../admin/config/index.php:86
580
+ #, fuzzy
581
+ msgid "Track Coordinates"
582
+ msgstr " حالت ردگیری"
583
+
584
+ #: ../../admin/config/index.php:86
585
+ msgid ""
586
+ "Collect mouse coordinates and other information for clicks on internal "
587
+ "links. Strongly recommended if you're using the heatmap add-on. By default, "
588
+ "this information is only collected for external links."
589
+ msgstr ""
590
+
591
+ #: ../../admin/config/index.php:87
592
+ #, fuzzy
593
+ msgid "Ignore Classes"
594
+ msgstr "کاربران را نادیده بگیر"
595
+
596
+ #: ../../admin/config/index.php:87
597
+ msgid ""
598
+ "Track the event but do not invoke the callback function on links marked with "
599
+ "one of these classnames (separated by comma). Useful to prevent conflicts "
600
+ "with lightbox and similar libraries."
601
+ msgstr ""
602
+
603
+ #: ../../admin/config/index.php:88
604
+ #, fuzzy
605
+ msgid "Ignore Rel"
606
+ msgstr "کاربران را نادیده بگیر"
607
+
608
+ #: ../../admin/config/index.php:88
609
+ msgid ""
610
+ "Track the event but do not invoke the callback function on links having one "
611
+ "of these values (separated by comma) as their <em>rel</em> attribute."
612
+ msgstr ""
613
+
614
+ #: ../../admin/config/index.php:89
615
+ #, fuzzy
616
+ msgid "Ignore URL"
617
+ msgstr "کاربران را نادیده بگیر"
618
+
619
+ #: ../../admin/config/index.php:89
620
+ msgid ""
621
+ "Track the event but do not invoke the callback function on links whose "
622
+ "<em>href</em> attribute contains one of these strings (separated by comma)."
623
+ msgstr ""
624
+
625
+ #: ../../admin/config/index.php:91 ../../admin/config/index.php:242
626
+ msgid "Miscellaneous"
627
+ msgstr "متفرقه"
628
+
629
+ #: ../../admin/config/index.php:92
630
+ msgid "Enable Privacy Mode"
631
+ msgstr "فعال کردن حالت حریم"
632
+
633
+ #: ../../admin/config/index.php:92
634
+ msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
635
+ msgstr "این گزینه نشانی آی‌پی بیننده را طبق قوانین حریم خصوصی اروپا پنهان میکند"
636
+
637
+ #: ../../admin/config/index.php:93
638
+ msgid "Ignore Prefetch Requests"
639
+ msgstr "نادیده گرفتن درخواست صفحه‌بندی"
640
+
641
+ #: ../../admin/config/index.php:93
642
+ #, fuzzy
643
+ msgid ""
644
+ "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
645
+ "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
646
+ "target='_blank'>Link Prefetching functionality</a>."
647
+ msgstr ""
648
+ "جلوگیری کردن از ردگیری بازدیدهایی که توسط <a href='https://developer.mozilla."
649
+ "org/en/Link_prefetching_FAQ' target='_blank'>صفحه‌بندی</a> برنامه Firefox "
650
+ "صورت میگیرد."
651
+
652
+ #: ../../admin/config/index.php:109
653
+ msgid "Ignore users (username not found)"
654
+ msgstr "نادیده گرفتن کاربر(شناسه کاربر یافت نشد)"
655
+
656
+ #: ../../admin/config/index.php:132
657
+ msgid ""
658
+ "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
659
+ "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
660
+ msgstr ""
661
+ "توانایی صحیح نمیباشد. لطفا برای اطلاع بیشتر به صفحه<a href=\"http://codex."
662
+ "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> نقش و توانایی</a> "
663
+ "مراجعه کنید."
664
+
665
+ #: ../../admin/config/index.php:142
666
+ msgid "Reports"
667
+ msgstr "گزارش ها"
668
+
669
+ #: ../../admin/config/index.php:143
670
+ msgid "Restrict Authors"
671
+ msgstr "محدود کردن نویسنده‌ها"
672
+
673
+ #: ../../admin/config/index.php:143
674
+ #, fuzzy
675
+ msgid ""
676
+ "Enable this option if you want your authors to only see stats related to "
677
+ "their own content."
678
+ msgstr ""
679
+ "اگر میخواهید نویسنده ها فقط آمار مربوط به محتوای خود را رویت کنند این گزینه "
680
+ "را فعال کنید."
681
+
682
+ #: ../../admin/config/index.php:144 ../../admin/config/index.php:148
683
+ msgid "Capability"
684
+ msgstr "کاربران بر اساس توانایی"
685
+
686
+ #: ../../admin/config/index.php:144
687
+ #, fuzzy
688
+ msgid ""
689
+ "Specify the minimum <a href='http://codex.wordpress.org/"
690
+ "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
691
+ "reports (default: <code>activate_plugins</code>). If this field is empty, "
692
+ "<strong>all your users</strong> (including subscribers) will have access to "
693
+ "the reports, unless a 'Read access' whitelist has been specified here below. "
694
+ "In this case, the list has precedence over the capability."
695
+ msgstr ""
696
+ "حداقل<a href='http://codex.wordpress.org/Roles_and_Capabilities' "
697
+ "target='_new'> توانایی</a> برای دسترسی به گزارش های را مشخص کنید. اگر این "
698
+ "ناحیه خالی باشد همه کاربران (از جمله مشترکین) به گزارش ها دسترسی خواهند "
699
+ "داشت، مگر اینکه اجازه فهرست سفید اینجا مشخص شود. در این صورت فهرست اولویت "
700
+ "میگیرد بر قابلیت."
701
+
702
+ #: ../../admin/config/index.php:145 ../../admin/config/index.php:149
703
+ msgid "Whitelist"
704
+ msgstr "فهرست سفید"
705
+
706
+ #: ../../admin/config/index.php:145
707
+ msgid ""
708
+ "List all the users who should have access to the reports, separated by "
709
+ "commas. Administrators are implicitly allowed, so you don't need to list "
710
+ "them in here. Usernames are case sensitive."
711
+ msgstr ""
712
+ "فهرست کاربرانی که به گزارش ها دسترسی دارند، تفکیک شده با ویرگول. مدیرها به "
713
+ "طور کامل دسترسی دارند و نیاز به وارد کردن اینجا نخواهند داشت. کوچک و بزرگ "
714
+ "بودن حروف مهم است."
715
+
716
+ #: ../../admin/config/index.php:148
717
+ #, fuzzy
718
+ msgid ""
719
+ "Specify the minimum <a href='http://codex.wordpress.org/"
720
+ "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
721
+ "Slimstat (default: <code>activate_plugins</code>). The whitelist here below "
722
+ "can be used to override this option for specific users."
723
+ msgstr ""
724
+ "حداقل<a href='http://codex.wordpress.org/Roles_and_Capabilities' "
725
+ "target='_new'> توانایی</a> برای دسترسی برای تنظیمات را مشخص کنید. این فهرست "
726
+ "سفید اختیارات کاربران خاص را لفو میکند."
727
+
728
+ #: ../../admin/config/index.php:149
729
+ msgid ""
730
+ "List all the users who can edit these options, separated by commas. Please "
731
+ "be advised that admins <strong>are not</strong> implicitly allowed, so do "
732
+ "not forget to include yourself! Usernames are case sensitive."
733
+ msgstr ""
734
+ "فهرست کاربرانی که توانایی ویرایش این گزینه ها را دارند، تفکیک شده با ویرگول. "
735
+ "از وارد کردن نام خود در این فهرست مطمئن شوید."
736
+
737
+ #: ../../admin/config/index.php:165
738
+ msgid "Read access: username not found"
739
+ msgstr "دست‌رسی خواندن: شناسه کاربری یافت نشد"
740
+
741
+ #: ../../admin/config/index.php:178 ../../admin/config/index.php:209
742
+ msgid ""
743
+ "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
744
+ "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
745
+ "information"
746
+ msgstr ""
747
+ "حداقل توانایی صحیح نیست. لطفا برای اطلاع بیشتر به صفحه<a href=\"http://codex."
748
+ "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> نقش و توانایی</a> "
749
+ "مراجعه کنید."
750
+
751
+ #: ../../admin/config/index.php:196
752
+ msgid "Config access: username not found"
753
+ msgstr "دست‌رسی پیکربندی: شناسه کاربری یافت نشد"
754
+
755
+ #: ../../admin/config/index.php:224
756
+ msgid "Detect Smoothing"
757
+ msgstr "یافتن اسموتینگ"
758
+
759
+ #: ../../admin/config/index.php:224
760
+ msgid ""
761
+ "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
762
+ "This option required Spy Mode to be enabled."
763
+ msgstr ""
764
+ " تشخیص دادن مرورگرهایی که از ضد-بدنمایی (font smoothing) استفاده میکنند. این "
765
+ "گزینه نیاز به فعال کردن «دید دزدکی» دارد."
766
+
767
+ #: ../../admin/config/index.php:225
768
+ msgid "Session Duration"
769
+ msgstr "مدت جلسه"
770
+
771
+ #: ../../admin/config/index.php:225
772
+ #, fuzzy
773
+ msgid ""
774
+ "How many seconds should a human session last? Google Analytics sets it to "
775
+ "1800 seconds."
776
+ msgstr ""
777
+ "چند ثانیه جلسه (انسان) در پایگاه به طول انجامد؟ گوگل آنالیتیک این مقدار را "
778
+ "۱۸۰۰ ثانیه در نظر می‌گیرد."
779
+
780
+ #: ../../admin/config/index.php:226
781
+ msgid "Extend Session"
782
+ msgstr "گسترش جلسه"
783
+
784
+ #: ../../admin/config/index.php:226
785
+ msgid "Extend the duration of a session each time the user visits a new page."
786
+ msgstr ""
787
+ "هر بار که کاربر یک صفحه جدید را دیدن می‌کند مدت جلسه را به این مقدار گسترش "
788
+ "می‌دهد."
789
+
790
+ #: ../../admin/config/index.php:227
791
+ msgid "Enable CDN"
792
+ msgstr "فعال‌سازی CDN"
793
+
794
+ #: ../../admin/config/index.php:227
795
+ msgid ""
796
+ "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
797
+ "by serving our tracking code from their fast and reliable network (free "
798
+ "service)."
799
+ msgstr ""
800
+ "از سی دی اِن <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a> "
801
+ "استفاده کنید و از خدمات ردگیری ما در شبکه سریع و مطمئن بهره مند شوید "
802
+ "(رایگان)."
803
+
804
+ #: ../../admin/config/index.php:228
805
+ msgid "Extensions to Track"
806
+ msgstr "پسوندهایی که رهیابی شوند"
807
+
808
+ #: ../../admin/config/index.php:228
809
+ msgid ""
810
+ "List all the file extensions that you want to be treated as Downloads. "
811
+ "Please note that links pointing to external resources (i.e. PDFs on a "
812
+ "different website) are considered Downloads and not Outbound Links (and "
813
+ "tracked as such), if their extension matches one of the ones listed here "
814
+ "below."
815
+ msgstr ""
816
+ "فهرست تمامی پسونده هایی که میخواهد مانند بارگیری حساب شود. لطفا در نظر داشته "
817
+ "باشید که پیوندهای منابع خارجی (مثل پی دی اف در پایگاه دیگر) بارگیری محسوب "
818
+ "میشود و نه پیوند بیرونی اگر پسوند آنها با این فهرست تطبیق داشته باشد."
819
+
820
+ #: ../../admin/config/index.php:230
821
+ #, fuzzy
822
+ msgid "External Pages"
823
+ msgstr "همه مشاهدات صفحات"
824
+
825
+ #: ../../admin/config/index.php:231
826
+ msgid "Add the following code to all the non-WP pages you want to track"
827
+ msgstr ""
828
+
829
+ #: ../../admin/config/index.php:243
830
+ msgid "Debug Mode"
831
+ msgstr ""
832
+
833
+ #: ../../admin/config/index.php:243
834
+ msgid "Display the SQL queries used to retrieve the data."
835
+ msgstr ""
836
+
837
+ #: ../../admin/config/index.php:244
838
+ msgid "IP Lookup"
839
+ msgstr "ره‌گیری بر اساس نشانی آی‌پی"
840
+
841
+ #: ../../admin/config/index.php:244
842
+ msgid "Customize the Geolocation service to be used in the reports."
843
+ msgstr "خدمات مکان-جفرافی برای گزارش ها را دلخواه کنید. "
844
+
845
+ #: ../../admin/config/index.php:245
846
+ msgid "Custom CSS"
847
+ msgstr "سی‌اس‌اس دلخواه"
848
+
849
+ #: ../../admin/config/index.php:245
850
+ #, fuzzy
851
+ msgid ""
852
+ "Paste here your custom stylesheet to personalize the way your reports look. "
853
+ "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
854
+ "target='_blank'>Check the FAQ</a> for more information on how to use this "
855
+ "setting."
856
+ msgstr ""
857
+ "سی‌اس‌اس دلخواه خود را اینجا وارد کنید و گزارش ها را شخصی کنید. برای اطلاع "
858
+ "بیشتر به<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
859
+ "target='_blank'> سوالهای رایج</a> مراجعه کنید."
860
+
861
+ #: ../../admin/config/index.php:246
862
+ msgid "Enable UAN"
863
+ msgstr "فعال‌سازی UAN"
864
+
865
+ #: ../../admin/config/index.php:246
866
+ #, fuzzy
867
+ msgid ""
868
+ "Send anonymous data about user agents to our server for analysis. This "
869
+ "allows us to contribute to the <a href='http://browscap.org/' "
870
+ "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
871
+ "Slimstat's browser detection functionality. It also enables our transparent "
872
+ "ads network. No worries, your site will not be affected in any way."
873
+ msgstr ""
874
+ " میتوانید اطلاعات کابر مشکوک را برای تحلیل به صورت ناشناس برای ما ارسال "
875
+ "کنید. با کمک کردن به <a href='http://browscap.co/' target='_blank'>BrowsCap "
876
+ "opensource project</a> توانایی برنامه برای شناختن مرورگرها را بیشتر میشود."
877
+
878
+ #: ../../admin/config/maintenance.php:20
879
+ #, fuzzy
880
+ msgid "Your Slimstat tables have been successfully converted to InnoDB."
881
+ msgstr "جداول WP SlimStat با موفقیت به InnoDB تبدیل شد."
882
+
883
+ #: ../../admin/config/maintenance.php:30
884
+ msgid "records deleted from your database."
885
+ msgstr "اطلاعات از پایگاه داده ها حذف شد."
886
+
887
+ #: ../../admin/config/maintenance.php:37
888
+ msgid "All the records were successfully deleted."
889
+ msgstr "همه اطلاعات با موفقیت حذف شد."
890
+
891
+ #: ../../admin/config/maintenance.php:42
892
+ #, fuzzy
893
+ msgid "All the archived records were successfully deleted."
894
+ msgstr "همه اطلاعات با موفقیت حذف شد."
895
+
896
+ #: ../../admin/config/maintenance.php:51
897
+ #, fuzzy
898
+ msgid "All the archived records were successfully restored."
899
+ msgstr "همه اطلاعات با موفقیت حذف شد."
900
+
901
+ #: ../../admin/config/maintenance.php:55
902
+ msgid "Your reports were successfully restored to their default arrangement."
903
+ msgstr "گزارش ها با موفقیت به حالت پیش فرض بازنشانی شدند."
904
+
905
+ #: ../../admin/config/maintenance.php:62
906
+ #, fuzzy
907
+ msgid ""
908
+ "Congrats! Slimstat is now optimized for <a href=\"http://www.youtube.com/"
909
+ "watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
910
+ msgstr ""
911
+ "تبریک! برنامه اکنون برای<a href=\"http://www.youtube.com/watch?"
912
+ "v=ygE01sOhzz0\" target=\"_blank\"> سرعت</a> بهینه شده است."
913
+
914
+ #: ../../admin/config/maintenance.php:69
915
+ msgid ""
916
+ "Indexing has been successfully disabled. Enjoy the extra database space you "
917
+ "just gained!"
918
+ msgstr ""
919
+ "اندیس گری با موفقیت غیر فعال شد. از فضای اضافه که پایگاه داده ها بدست آورید "
920
+ "لذت ببرید! "
921
+
922
+ #: ../../admin/config/maintenance.php:101
923
+ msgid "Database Information"
924
+ msgstr "اطلاعات پایگاه داده"
925
+
926
+ #: ../../admin/config/maintenance.php:104
927
+ msgid "Engine"
928
+ msgstr "موتور"
929
+
930
+ #: ../../admin/config/maintenance.php:108
931
+ msgid "switch to InnoDB"
932
+ msgstr "تغییر حالت به InnoDB"
933
+
934
+ #: ../../admin/config/maintenance.php:119
935
+ msgid "records"
936
+ msgstr "اطلاعات"
937
+
938
+ #: ../../admin/config/maintenance.php:124
939
+ msgid "Data Maintenance"
940
+ msgstr "تعمیر داده ها"
941
+
942
+ #: ../../admin/config/maintenance.php:127
943
+ msgid "Delete pageviews where"
944
+ msgstr "حذف بازدید‌ها وقتی"
945
+
946
+ #: ../../admin/config/maintenance.php:141 ../../admin/view/index.php:15
947
+ msgid "equals"
948
+ msgstr "مساوی‌ست با"
949
+
950
+ #: ../../admin/config/maintenance.php:142 ../../admin/view/index.php:16
951
+ msgid "is not equal to"
952
+ msgstr "مساوی نیست با"
953
+
954
+ #: ../../admin/config/maintenance.php:143 ../../admin/view/index.php:17
955
+ msgid "contains"
956
+ msgstr "شامل"
957
+
958
+ #: ../../admin/config/maintenance.php:144 ../../admin/view/index.php:18
959
+ msgid "does not contain"
960
+ msgstr "ناشامل"
961
+
962
+ #: ../../admin/config/maintenance.php:145 ../../admin/view/index.php:19
963
+ msgid "starts with"
964
+ msgstr "شروع می‌شود با"
965
+
966
+ #: ../../admin/config/maintenance.php:146 ../../admin/view/index.php:20
967
+ msgid "ends with"
968
+ msgstr "پایان می‌یابد با"
969
+
970
+ #: ../../admin/config/maintenance.php:147 ../../admin/view/index.php:21
971
+ msgid "sounds like"
972
+ msgstr " شبیه به"
973
+
974
+ #: ../../admin/config/maintenance.php:148 ../../admin/view/index.php:22
975
+ msgid "is greater than"
976
+ msgstr "بزرگ‌تر است از"
977
+
978
+ #: ../../admin/config/maintenance.php:149 ../../admin/view/index.php:23
979
+ msgid "is less than"
980
+ msgstr "کوچک‌تر است از"
981
+
982
+ #: ../../admin/config/maintenance.php:150 ../../admin/view/index.php:25
983
+ msgid "matches"
984
+ msgstr "مطابق است با"
985
+
986
+ #: ../../admin/config/maintenance.php:151 ../../admin/view/index.php:26
987
+ msgid "does not match"
988
+ msgstr "مطابق نیست"
989
+
990
+ #: ../../admin/config/maintenance.php:152 ../../admin/view/index.php:27
991
+ msgid "is empty"
992
+ msgstr "خالی‌ است"
993
+
994
+ #: ../../admin/config/maintenance.php:153 ../../admin/view/index.php:28
995
+ msgid "is not empty"
996
+ msgstr "خالی نیست"
997
+
998
+ #: ../../admin/config/maintenance.php:156 ../../admin/view/index.php:40
999
+ #: ../../admin/view/index.php:103
1000
+ msgid "Apply"
1001
+ msgstr "انجام"
1002
+
1003
+ #: ../../admin/config/maintenance.php:157
1004
+ msgid ""
1005
+ "Are you sure you want to PERMANENTLY delete these records from your database?"
1006
+ msgstr ""
1007
+ "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1008
+
1009
+ #: ../../admin/config/maintenance.php:162
1010
+ msgid "Truncate Tables"
1011
+ msgstr ""
1012
+
1013
+ #: ../../admin/config/maintenance.php:165
1014
+ msgid ""
1015
+ "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1016
+ "database?"
1017
+ msgstr ""
1018
+ "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1019
+
1020
+ #: ../../admin/config/maintenance.php:165
1021
+ #, fuzzy
1022
+ msgid "Delete All Records"
1023
+ msgstr "حذف همه صفحات"
1024
+
1025
+ #: ../../admin/config/maintenance.php:166
1026
+ #, fuzzy
1027
+ msgid ""
1028
+ "Erase all the information collected so far by Slimstat, including the "
1029
+ "archive. This operation <strong>does not</strong> reset your settings."
1030
+ msgstr ""
1031
+ "حذف همه اطلاعاتی که تا حال توسط WP SlimStat جمع آوری شده است. این عملیات "
1032
+ "تنظیمات را بازنشانی نمیکند."
1033
+
1034
+ #: ../../admin/config/maintenance.php:170
1035
+ msgid "Restore archive"
1036
+ msgstr ""
1037
+
1038
+ #: ../../admin/config/maintenance.php:173
1039
+ #, fuzzy
1040
+ msgid "Are you sure you want to restore all the archived pageviews?"
1041
+ msgstr ""
1042
+ "آیا مطمئن هستید که می‌خواهید تمامی اطلاعات مربوط به آمار بازدید و "
1043
+ "بازدیدکننده‌ها را حذف کنید؟"
1044
+
1045
+ #: ../../admin/config/maintenance.php:173
1046
+ msgid "Get 'em back"
1047
+ msgstr ""
1048
+
1049
+ #: ../../admin/config/maintenance.php:174
1050
+ msgid ""
1051
+ "Move all the archived pageviews back to the main Slimstat table. Please note "
1052
+ "that, unless you disabled the daily purge, this data will be archived again "
1053
+ "at the next scheduled clean-up."
1054
+ msgstr ""
1055
+
1056
+ #: ../../admin/config/maintenance.php:178
1057
+ msgid "Empty Archive"
1058
+ msgstr ""
1059
+
1060
+ #: ../../admin/config/maintenance.php:181
1061
+ #, fuzzy
1062
+ msgid ""
1063
+ "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1064
+ "archive?"
1065
+ msgstr ""
1066
+ "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1067
+
1068
+ #: ../../admin/config/maintenance.php:181
1069
+ #, fuzzy
1070
+ msgid "Delete Archive"
1071
+ msgstr "حذف بازدید‌ها وقتی"
1072
+
1073
+ #: ../../admin/config/maintenance.php:182
1074
+ msgid "Erase all the archived records. This operation cannot be undone."
1075
+ msgstr ""
1076
+
1077
+ #: ../../admin/config/maintenance.php:186
1078
+ msgid "Performance"
1079
+ msgstr "عملکرد"
1080
+
1081
+ #: ../../admin/config/maintenance.php:189
1082
+ msgid "Improve Performance"
1083
+ msgstr "بهبود عملکرد"
1084
+
1085
+ #: ../../admin/config/maintenance.php:190
1086
+ msgid ""
1087
+ "Please note that you will need about 30% more DB space to store the extra "
1088
+ "information required."
1089
+ msgstr ""
1090
+ "در نظر داشته باشید که زخیره کردن این اطلاعات ٪۳۰ درصد حجم بیشتر در پایگاه "
1091
+ "داده اشغال میکند."
1092
+
1093
+ #: ../../admin/config/maintenance.php:194
1094
+ msgid "Save DB Space"
1095
+ msgstr "زخیره کردن پایگاه داده"
1096
+
1097
+ #: ../../admin/config/maintenance.php:195
1098
+ #, fuzzy
1099
+ msgid ""
1100
+ "Please note that by removing table indexes, Slimstat's performance will be "
1101
+ "affected."
1102
+ msgstr ""
1103
+ "در نظر داشته باشید که حذف کردن شاخص بر عملکرد WP SlimStat تاثیر میگذارد"
1104
+
1105
+ #: ../../admin/config/maintenance.php:200
1106
+ msgid "Import and Export"
1107
+ msgstr "وارد و صادر"
1108
+
1109
+ #: ../../admin/config/maintenance.php:204
1110
+ msgid ""
1111
+ "Here below you can find the current configuration string for Slimstat. You "
1112
+ "can update your settings by pasting a new string here below and clicking on "
1113
+ "Import."
1114
+ msgstr ""
1115
+
1116
+ #: ../../admin/config/maintenance.php:209
1117
+ msgid "Import"
1118
+ msgstr "واردات"
1119
+
1120
+ #: ../../admin/config/maintenance.php:210
1121
+ msgid "Are you sure you want to OVERWRITE your current settings?"
1122
+ msgstr "مطمئنید می‌خواهید تنظیمات را بازنشانی کنید؟"
1123
+
1124
+ # Unknown
1125
+ #: ../../admin/lang/dynamic_strings.php:3
1126
+ msgid "xx"
1127
+ msgstr "xx"
1128
+
1129
+ #: ../../admin/lang/dynamic_strings.php:4
1130
+ msgid "unknown"
1131
+ msgstr "مجهول"
1132
+
1133
+ #: ../../admin/lang/dynamic_strings.php:5
1134
+ msgid "win8.1"
1135
+ msgstr ""
1136
+
1137
+ #: ../../admin/lang/dynamic_strings.php:6
1138
+ msgid "win8"
1139
+ msgstr ""
1140
+
1141
+ #: ../../admin/lang/dynamic_strings.php:7
1142
+ msgid "win7"
1143
+ msgstr ""
1144
+
1145
+ #: ../../admin/lang/dynamic_strings.php:8
1146
+ msgid "winvista"
1147
+ msgstr ""
1148
+
1149
+ #: ../../admin/lang/dynamic_strings.php:9
1150
+ msgid "win2003"
1151
+ msgstr ""
1152
+
1153
+ #: ../../admin/lang/dynamic_strings.php:10
1154
+ msgid "winxp"
1155
+ msgstr ""
1156
+
1157
+ #: ../../admin/lang/dynamic_strings.php:11
1158
+ msgid "winnt"
1159
+ msgstr ""
1160
+
1161
+ #: ../../admin/lang/dynamic_strings.php:12
1162
+ msgid "win2000"
1163
+ msgstr ""
1164
+
1165
+ #: ../../admin/lang/dynamic_strings.php:13
1166
+ msgid "winme"
1167
+ msgstr ""
1168
+
1169
+ #: ../../admin/lang/dynamic_strings.php:14
1170
+ msgid "win98"
1171
+ msgstr ""
1172
+
1173
+ #: ../../admin/lang/dynamic_strings.php:15
1174
+ msgid "win95"
1175
+ msgstr ""
1176
+
1177
+ #: ../../admin/lang/dynamic_strings.php:16
1178
+ msgid "win31"
1179
+ msgstr ""
1180
+
1181
+ #: ../../admin/lang/dynamic_strings.php:17
1182
+ msgid "win32"
1183
+ msgstr ""
1184
+
1185
+ #: ../../admin/lang/dynamic_strings.php:18
1186
+ msgid "win16"
1187
+ msgstr ""
1188
+
1189
+ #: ../../admin/lang/dynamic_strings.php:19
1190
+ msgid "mac68k"
1191
+ msgstr ""
1192
+
1193
+ #: ../../admin/lang/dynamic_strings.php:20
1194
+ msgid "macosx"
1195
+ msgstr ""
1196
+
1197
+ #: ../../admin/lang/dynamic_strings.php:21
1198
+ msgid "macppc"
1199
+ msgstr ""
1200
+
1201
+ #: ../../admin/lang/dynamic_strings.php:22
1202
+ msgid "mac"
1203
+ msgstr ""
1204
+
1205
+ #: ../../admin/lang/dynamic_strings.php:23
1206
+ msgid "os/2"
1207
+ msgstr ""
1208
+
1209
+ #: ../../admin/lang/dynamic_strings.php:24
1210
+ msgid "sunos"
1211
+ msgstr ""
1212
+
1213
+ #: ../../admin/lang/dynamic_strings.php:25
1214
+ msgid "solaris"
1215
+ msgstr ""
1216
+
1217
+ #: ../../admin/lang/dynamic_strings.php:26
1218
+ msgid "unix"
1219
+ msgstr ""
1220
+
1221
+ #: ../../admin/lang/dynamic_strings.php:27
1222
+ msgid "irix"
1223
+ msgstr ""
1224
+
1225
+ #: ../../admin/lang/dynamic_strings.php:28
1226
+ msgid "hp-ux"
1227
+ msgstr ""
1228
+
1229
+ #: ../../admin/lang/dynamic_strings.php:29
1230
+ msgid "aix"
1231
+ msgstr ""
1232
+
1233
+ #: ../../admin/lang/dynamic_strings.php:30
1234
+ msgid "beos"
1235
+ msgstr ""
1236
+
1237
+ #: ../../admin/lang/dynamic_strings.php:31
1238
+ msgid "cygwin"
1239
+ msgstr ""
1240
+
1241
+ #: ../../admin/lang/dynamic_strings.php:32
1242
+ msgid "digital unix"
1243
+ msgstr ""
1244
+
1245
+ #: ../../admin/lang/dynamic_strings.php:33
1246
+ msgid "risc os"
1247
+ msgstr ""
1248
+
1249
+ #: ../../admin/lang/dynamic_strings.php:34
1250
+ msgid "openvms"
1251
+ msgstr ""
1252
+
1253
+ #: ../../admin/lang/dynamic_strings.php:35
1254
+ msgid "linux"
1255
+ msgstr ""
1256
+
1257
+ #: ../../admin/lang/dynamic_strings.php:36
1258
+ msgid "freebsd"
1259
+ msgstr ""
1260
+
1261
+ #: ../../admin/lang/dynamic_strings.php:37
1262
+ msgid "openbsd"
1263
+ msgstr ""
1264
+
1265
+ #: ../../admin/lang/dynamic_strings.php:38
1266
+ msgid "netbsd"
1267
+ msgstr ""
1268
+
1269
+ #: ../../admin/lang/dynamic_strings.php:39
1270
+ msgid "debian"
1271
+ msgstr ""
1272
+
1273
+ #: ../../admin/lang/dynamic_strings.php:40
1274
+ msgid "amiga"
1275
+ msgstr ""
1276
+
1277
+ #: ../../admin/lang/dynamic_strings.php:41
1278
+ msgid "android"
1279
+ msgstr ""
1280
+
1281
+ #: ../../admin/lang/dynamic_strings.php:42
1282
+ msgid "wyderos"
1283
+ msgstr ""
1284
+
1285
+ #: ../../admin/lang/dynamic_strings.php:43
1286
+ msgid "iphone osx"
1287
+ msgstr ""
1288
+
1289
+ #: ../../admin/lang/dynamic_strings.php:44
1290
+ msgid "ios"
1291
+ msgstr "ios"
1292
+
1293
+ #: ../../admin/lang/dynamic_strings.php:45
1294
+ msgid "palm"
1295
+ msgstr ""
1296
+
1297
+ #: ../../admin/lang/dynamic_strings.php:46
1298
+ msgid "wap"
1299
+ msgstr ""
1300
+
1301
+ #: ../../admin/lang/dynamic_strings.php:47
1302
+ msgid "java"
1303
+ msgstr ""
1304
+
1305
+ #: ../../admin/lang/dynamic_strings.php:48
1306
+ msgid "winphone7"
1307
+ msgstr ""
1308
+
1309
+ #: ../../admin/lang/dynamic_strings.php:49
1310
+ msgid "wince"
1311
+ msgstr ""
1312
+
1313
+ #: ../../admin/lang/dynamic_strings.php:50
1314
+ msgid "symbianos"
1315
+ msgstr ""
1316
+
1317
+ #: ../../admin/lang/dynamic_strings.php:51
1318
+ msgid "blackberry os"
1319
+ msgstr ""
1320
+
1321
+ #: ../../admin/lang/dynamic_strings.php:52
1322
+ msgid "webos"
1323
+ msgstr ""
1324
+
1325
+ #: ../../admin/lang/dynamic_strings.php:53
1326
+ msgid "p-and"
1327
+ msgstr ""
1328
+
1329
+ #: ../../admin/lang/dynamic_strings.php:54
1330
+ msgid "p-bla"
1331
+ msgstr ""
1332
+
1333
+ #: ../../admin/lang/dynamic_strings.php:55
1334
+ msgid "p-chr"
1335
+ msgstr ""
1336
+
1337
+ #: ../../admin/lang/dynamic_strings.php:56
1338
+ msgid "p-fre"
1339
+ msgstr ""
1340
+
1341
+ #: ../../admin/lang/dynamic_strings.php:57
1342
+ msgid "p-ios"
1343
+ msgstr ""
1344
+
1345
+ #: ../../admin/lang/dynamic_strings.php:58
1346
+ msgid "p-jav"
1347
+ msgstr ""
1348
+
1349
+ #: ../../admin/lang/dynamic_strings.php:59
1350
+ msgid "p-lin"
1351
+ msgstr ""
1352
+
1353
+ #: ../../admin/lang/dynamic_strings.php:60
1354
+ msgid "p-mac"
1355
+ msgstr ""
1356
+
1357
+ #: ../../admin/lang/dynamic_strings.php:61
1358
+ msgid "p-sym"
1359
+ msgstr ""
1360
+
1361
+ #: ../../admin/lang/dynamic_strings.php:62
1362
+ msgid "p-unk"
1363
+ msgstr ""
1364
+
1365
+ #: ../../admin/lang/dynamic_strings.php:63
1366
+ msgid "p-win"
1367
+ msgstr ""
1368
+
1369
+ #: ../../admin/lang/dynamic_strings.php:64
1370
+ msgid "powertv"
1371
+ msgstr ""
1372
+
1373
+ #: ../../admin/lang/dynamic_strings.php:65
1374
+ msgid "acrobat"
1375
+ msgstr ""
1376
+
1377
+ #: ../../admin/lang/dynamic_strings.php:66
1378
+ msgid "director"
1379
+ msgstr ""
1380
+
1381
+ #: ../../admin/lang/dynamic_strings.php:67
1382
+ msgid "flash"
1383
+ msgstr ""
1384
+
1385
+ #: ../../admin/lang/dynamic_strings.php:68
1386
+ msgid "mediaplayer"
1387
+ msgstr ""
1388
+
1389
+ #: ../../admin/lang/dynamic_strings.php:69
1390
+ msgid "quicktime"
1391
+ msgstr ""
1392
+
1393
+ #: ../../admin/lang/dynamic_strings.php:70
1394
+ msgid "real"
1395
+ msgstr ""
1396
+
1397
+ #: ../../admin/lang/dynamic_strings.php:71
1398
+ msgid "silverlight"
1399
+ msgstr ""
1400
+
1401
+ #: ../../admin/lang/dynamic_strings.php:72
1402
+ msgid "l-af"
1403
+ msgstr ""
1404
+
1405
+ #: ../../admin/lang/dynamic_strings.php:73
1406
+ msgid "l-af-za"
1407
+ msgstr ""
1408
+
1409
+ #: ../../admin/lang/dynamic_strings.php:74
1410
+ msgid "l-ar"
1411
+ msgstr ""
1412
+
1413
+ #: ../../admin/lang/dynamic_strings.php:75
1414
+ msgid "l-ar-ae"
1415
+ msgstr ""
1416
+
1417
+ #: ../../admin/lang/dynamic_strings.php:76
1418
+ msgid "l-ar-bh"
1419
+ msgstr ""
1420
+
1421
+ #: ../../admin/lang/dynamic_strings.php:77
1422
+ msgid "l-ar-dz"
1423
+ msgstr ""
1424
+
1425
+ #: ../../admin/lang/dynamic_strings.php:78
1426
+ msgid "l-ar-eg"
1427
+ msgstr ""
1428
+
1429
+ #: ../../admin/lang/dynamic_strings.php:79
1430
+ msgid "l-ar-iq"
1431
+ msgstr ""
1432
+
1433
+ #: ../../admin/lang/dynamic_strings.php:80
1434
+ msgid "l-ar-jo"
1435
+ msgstr ""
1436
+
1437
+ #: ../../admin/lang/dynamic_strings.php:81
1438
+ msgid "l-ar-kw"
1439
+ msgstr ""
1440
+
1441
+ #: ../../admin/lang/dynamic_strings.php:82
1442
+ msgid "l-ar-lb"
1443
+ msgstr ""
1444
+
1445
+ #: ../../admin/lang/dynamic_strings.php:83
1446
+ msgid "l-ar-ly"
1447
+ msgstr ""
1448
+
1449
+ #: ../../admin/lang/dynamic_strings.php:84
1450
+ msgid "l-ar-ma"
1451
+ msgstr ""
1452
+
1453
+ #: ../../admin/lang/dynamic_strings.php:85
1454
+ msgid "l-ar-om"
1455
+ msgstr ""
1456
+
1457
+ #: ../../admin/lang/dynamic_strings.php:86
1458
+ msgid "l-ar-qa"
1459
+ msgstr ""
1460
+
1461
+ #: ../../admin/lang/dynamic_strings.php:87
1462
+ msgid "l-ar-sa"
1463
+ msgstr ""
1464
+
1465
+ #: ../../admin/lang/dynamic_strings.php:88
1466
+ msgid "l-ar-sy"
1467
+ msgstr ""
1468
+
1469
+ #: ../../admin/lang/dynamic_strings.php:89
1470
+ msgid "l-ar-tn"
1471
+ msgstr ""
1472
+
1473
+ #: ../../admin/lang/dynamic_strings.php:90
1474
+ msgid "l-ar-ye"
1475
+ msgstr ""
1476
+
1477
+ #: ../../admin/lang/dynamic_strings.php:91
1478
+ msgid "l-az"
1479
+ msgstr ""
1480
+
1481
+ #: ../../admin/lang/dynamic_strings.php:92
1482
+ msgid "l-az-az"
1483
+ msgstr ""
1484
+
1485
+ #: ../../admin/lang/dynamic_strings.php:93
1486
+ msgid "l-be"
1487
+ msgstr ""
1488
+
1489
+ #: ../../admin/lang/dynamic_strings.php:94
1490
+ msgid "l-be-by"
1491
+ msgstr ""
1492
+
1493
+ #: ../../admin/lang/dynamic_strings.php:95
1494
+ msgid "l-bg"
1495
+ msgstr ""
1496
+
1497
+ #: ../../admin/lang/dynamic_strings.php:96
1498
+ msgid "l-bg-bg"
1499
+ msgstr ""
1500
+
1501
+ #: ../../admin/lang/dynamic_strings.php:97
1502
+ msgid "l-bs-ba"
1503
+ msgstr ""
1504
+
1505
+ #: ../../admin/lang/dynamic_strings.php:98
1506
+ msgid "l-ca"
1507
+ msgstr ""
1508
+
1509
+ #: ../../admin/lang/dynamic_strings.php:99
1510
+ msgid "l-ca-es"
1511
+ msgstr ""
1512
+
1513
+ #: ../../admin/lang/dynamic_strings.php:100
1514
+ msgid "l-cs"
1515
+ msgstr ""
1516
+
1517
+ #: ../../admin/lang/dynamic_strings.php:101
1518
+ msgid "l-cs-cz"
1519
+ msgstr ""
1520
+
1521
+ #: ../../admin/lang/dynamic_strings.php:102
1522
+ msgid "l-cy"
1523
+ msgstr ""
1524
+
1525
+ #: ../../admin/lang/dynamic_strings.php:103
1526
+ msgid "l-cy-gb"
1527
+ msgstr ""
1528
+
1529
+ #: ../../admin/lang/dynamic_strings.php:104
1530
+ msgid "l-da"
1531
+ msgstr ""
1532
+
1533
+ #: ../../admin/lang/dynamic_strings.php:105
1534
+ msgid "l-da-dk"
1535
+ msgstr ""
1536
+
1537
+ #: ../../admin/lang/dynamic_strings.php:106
1538
+ msgid "l-de"
1539
+ msgstr ""
1540
+
1541
+ #: ../../admin/lang/dynamic_strings.php:107
1542
+ msgid "l-de-at"
1543
+ msgstr ""
1544
+
1545
+ #: ../../admin/lang/dynamic_strings.php:108
1546
+ msgid "l-de-ch"
1547
+ msgstr ""
1548
+
1549
+ #: ../../admin/lang/dynamic_strings.php:109
1550
+ msgid "l-de-de"
1551
+ msgstr ""
1552
+
1553
+ #: ../../admin/lang/dynamic_strings.php:110
1554
+ msgid "l-de-li"
1555
+ msgstr ""
1556
+
1557
+ #: ../../admin/lang/dynamic_strings.php:111
1558
+ msgid "l-de-lu"
1559
+ msgstr ""
1560
+
1561
+ #: ../../admin/lang/dynamic_strings.php:112
1562
+ msgid "l-dv"
1563
+ msgstr ""
1564
+
1565
+ #: ../../admin/lang/dynamic_strings.php:113
1566
+ msgid "l-dv-mv"
1567
+ msgstr ""
1568
+
1569
+ #: ../../admin/lang/dynamic_strings.php:114
1570
+ msgid "l-el"
1571
+ msgstr ""
1572
+
1573
+ #: ../../admin/lang/dynamic_strings.php:115
1574
+ msgid "l-el-gr"
1575
+ msgstr ""
1576
+
1577
+ #: ../../admin/lang/dynamic_strings.php:116
1578
+ msgid "l-en"
1579
+ msgstr ""
1580
+
1581
+ #: ../../admin/lang/dynamic_strings.php:117
1582
+ msgid "l-en-au"
1583
+ msgstr ""
1584
+
1585
+ #: ../../admin/lang/dynamic_strings.php:118
1586
+ msgid "l-en-bz"
1587
+ msgstr ""
1588
+
1589
+ #: ../../admin/lang/dynamic_strings.php:119
1590
+ msgid "l-en-ca"
1591
+ msgstr ""
1592
+
1593
+ #: ../../admin/lang/dynamic_strings.php:120
1594
+ msgid "l-en-cb"
1595
+ msgstr ""
1596
+
1597
+ #: ../../admin/lang/dynamic_strings.php:121
1598
+ msgid "l-en-gb"
1599
+ msgstr ""
1600
+
1601
+ #: ../../admin/lang/dynamic_strings.php:122
1602
+ msgid "l-en-ie"
1603
+ msgstr ""
1604
+
1605
+ #: ../../admin/lang/dynamic_strings.php:123
1606
+ msgid "l-en-jm"
1607
+ msgstr ""
1608
+
1609
+ #: ../../admin/lang/dynamic_strings.php:124
1610
+ msgid "l-en-nz"
1611
+ msgstr ""
1612
+
1613
+ #: ../../admin/lang/dynamic_strings.php:125
1614
+ msgid "l-en-ph"
1615
+ msgstr ""
1616
+
1617
+ #: ../../admin/lang/dynamic_strings.php:126
1618
+ msgid "l-en-tt"
1619
+ msgstr ""
1620
+
1621
+ #: ../../admin/lang/dynamic_strings.php:127
1622
+ msgid "l-en-us"
1623
+ msgstr ""
1624
+
1625
+ #: ../../admin/lang/dynamic_strings.php:128
1626
+ msgid "l-en-za"
1627
+ msgstr ""
1628
+
1629
+ #: ../../admin/lang/dynamic_strings.php:129
1630
+ msgid "l-en-zw"
1631
+ msgstr ""
1632
+
1633
+ #: ../../admin/lang/dynamic_strings.php:130
1634
+ msgid "l-eo"
1635
+ msgstr ""
1636
+
1637
+ #: ../../admin/lang/dynamic_strings.php:131
1638
+ msgid "l-es"
1639
+ msgstr ""
1640
+
1641
+ #: ../../admin/lang/dynamic_strings.php:132
1642
+ msgid "l-es-ar"
1643
+ msgstr ""
1644
+
1645
+ #: ../../admin/lang/dynamic_strings.php:133
1646
+ msgid "l-es-bo"
1647
+ msgstr ""
1648
+
1649
+ #: ../../admin/lang/dynamic_strings.php:134
1650
+ msgid "l-es-cl"
1651
+ msgstr ""
1652
+
1653
+ #: ../../admin/lang/dynamic_strings.php:135
1654
+ msgid "l-es-co"
1655
+ msgstr ""
1656
+
1657
+ #: ../../admin/lang/dynamic_strings.php:136
1658
+ msgid "l-es-cr"
1659
+ msgstr ""
1660
+
1661
+ #: ../../admin/lang/dynamic_strings.php:137
1662
+ msgid "l-es-do"
1663
+ msgstr ""
1664
+
1665
+ #: ../../admin/lang/dynamic_strings.php:138
1666
+ msgid "l-es-ec"
1667
+ msgstr ""
1668
+
1669
+ #: ../../admin/lang/dynamic_strings.php:139
1670
+ msgid "l-es-es"
1671
+ msgstr ""
1672
+
1673
+ #: ../../admin/lang/dynamic_strings.php:140
1674
+ msgid "l-es-gt"
1675
+ msgstr ""
1676
+
1677
+ #: ../../admin/lang/dynamic_strings.php:141
1678
+ msgid "l-es-hn"
1679
+ msgstr ""
1680
+
1681
+ #: ../../admin/lang/dynamic_strings.php:142
1682
+ msgid "l-es-mx"
1683
+ msgstr ""
1684
+
1685
+ #: ../../admin/lang/dynamic_strings.php:143
1686
+ msgid "l-es-ni"
1687
+ msgstr ""
1688
+
1689
+ #: ../../admin/lang/dynamic_strings.php:144
1690
+ msgid "l-es-pa"
1691
+ msgstr ""
1692
+
1693
+ #: ../../admin/lang/dynamic_strings.php:145
1694
+ msgid "l-es-pe"
1695
+ msgstr ""
1696
+
1697
+ #: ../../admin/lang/dynamic_strings.php:146
1698
+ msgid "l-es-pr"
1699
+ msgstr ""
1700
+
1701
+ #: ../../admin/lang/dynamic_strings.php:147
1702
+ msgid "l-es-py"
1703
+ msgstr ""
1704
+
1705
+ #: ../../admin/lang/dynamic_strings.php:148
1706
+ msgid "l-es-sv"
1707
+ msgstr ""
1708
+
1709
+ #: ../../admin/lang/dynamic_strings.php:149
1710
+ msgid "l-es-uy"
1711
+ msgstr ""
1712
+
1713
+ #: ../../admin/lang/dynamic_strings.php:150
1714
+ msgid "l-es-ve"
1715
+ msgstr ""
1716
+
1717
+ #: ../../admin/lang/dynamic_strings.php:151
1718
+ msgid "l-et"
1719
+ msgstr ""
1720
+
1721
+ #: ../../admin/lang/dynamic_strings.php:152
1722
+ msgid "l-et-ee"
1723
+ msgstr ""
1724
+
1725
+ #: ../../admin/lang/dynamic_strings.php:153
1726
+ msgid "l-eu"
1727
+ msgstr ""
1728
+
1729
+ #: ../../admin/lang/dynamic_strings.php:154
1730
+ msgid "l-eu-es"
1731
+ msgstr ""
1732
+
1733
+ #: ../../admin/lang/dynamic_strings.php:155
1734
+ msgid "l-fa"
1735
+ msgstr ""
1736
+
1737
+ #: ../../admin/lang/dynamic_strings.php:156
1738
+ msgid "l-fa-ir"
1739
+ msgstr ""
1740
+
1741
+ #: ../../admin/lang/dynamic_strings.php:157
1742
+ msgid "l-fi"
1743
+ msgstr ""
1744
+
1745
+ #: ../../admin/lang/dynamic_strings.php:158
1746
+ msgid "l-fi-fi"
1747
+ msgstr ""
1748
+
1749
+ #: ../../admin/lang/dynamic_strings.php:159
1750
+ msgid "l-fo"
1751
+ msgstr ""
1752
+
1753
+ #: ../../admin/lang/dynamic_strings.php:160
1754
+ msgid "l-fo-fo"
1755
+ msgstr ""
1756
+
1757
+ #: ../../admin/lang/dynamic_strings.php:161
1758
+ msgid "l-fr"
1759
+ msgstr ""
1760
+
1761
+ #: ../../admin/lang/dynamic_strings.php:162
1762
+ msgid "l-fr-be"
1763
+ msgstr ""
1764
+
1765
+ #: ../../admin/lang/dynamic_strings.php:163
1766
+ msgid "l-fr-ca"
1767
+ msgstr ""
1768
+
1769
+ #: ../../admin/lang/dynamic_strings.php:164
1770
+ msgid "l-fr-ch"
1771
+ msgstr ""
1772
+
1773
+ #: ../../admin/lang/dynamic_strings.php:165
1774
+ msgid "l-fr-fr"
1775
+ msgstr ""
1776
+
1777
+ #: ../../admin/lang/dynamic_strings.php:166
1778
+ msgid "l-fr-lu"
1779
+ msgstr ""
1780
+
1781
+ #: ../../admin/lang/dynamic_strings.php:167
1782
+ msgid "l-fr-mc"
1783
+ msgstr ""
1784
+
1785
+ #: ../../admin/lang/dynamic_strings.php:168
1786
+ msgid "l-gl"
1787
+ msgstr ""
1788
+
1789
+ #: ../../admin/lang/dynamic_strings.php:169
1790
+ msgid "l-gl-es"
1791
+ msgstr ""
1792
+
1793
+ #: ../../admin/lang/dynamic_strings.php:170
1794
+ msgid "l-gu"
1795
+ msgstr ""
1796
+
1797
+ #: ../../admin/lang/dynamic_strings.php:171
1798
+ msgid "l-gu-in"
1799
+ msgstr ""
1800
+
1801
+ #: ../../admin/lang/dynamic_strings.php:172
1802
+ msgid "l-he"
1803
+ msgstr ""
1804
+
1805
+ #: ../../admin/lang/dynamic_strings.php:173
1806
+ msgid "l-he-il"
1807
+ msgstr ""
1808
+
1809
+ #: ../../admin/lang/dynamic_strings.php:174
1810
+ msgid "l-hi"
1811
+ msgstr ""
1812
+
1813
+ #: ../../admin/lang/dynamic_strings.php:175
1814
+ msgid "l-hi-in"
1815
+ msgstr ""
1816
+
1817
+ #: ../../admin/lang/dynamic_strings.php:176
1818
+ msgid "l-hr"
1819
+ msgstr ""
1820
+
1821
+ #: ../../admin/lang/dynamic_strings.php:177
1822
+ msgid "l-hr-ba"
1823
+ msgstr ""
1824
+
1825
+ #: ../../admin/lang/dynamic_strings.php:178
1826
+ msgid "l-hr-hr"
1827
+ msgstr ""
1828
+
1829
+ #: ../../admin/lang/dynamic_strings.php:179
1830
+ msgid "l-hu"
1831
+ msgstr ""
1832
+
1833
+ #: ../../admin/lang/dynamic_strings.php:180
1834
+ msgid "l-hu-hu"
1835
+ msgstr ""
1836
+
1837
+ #: ../../admin/lang/dynamic_strings.php:181
1838
+ msgid "l-hy"
1839
+ msgstr ""
1840
+
1841
+ #: ../../admin/lang/dynamic_strings.php:182
1842
+ msgid "l-hy-am"
1843
+ msgstr ""
1844
+
1845
+ #: ../../admin/lang/dynamic_strings.php:183
1846
+ msgid "l-id"
1847
+ msgstr ""
1848
+
1849
+ #: ../../admin/lang/dynamic_strings.php:184
1850
+ msgid "l-id-id"
1851
+ msgstr ""
1852
+
1853
+ #: ../../admin/lang/dynamic_strings.php:185
1854
+ msgid "l-is"
1855
+ msgstr ""
1856
+
1857
+ #: ../../admin/lang/dynamic_strings.php:186
1858
+ msgid "l-is-is"
1859
+ msgstr ""
1860
+
1861
+ #: ../../admin/lang/dynamic_strings.php:187
1862
+ msgid "l-it"
1863
+ msgstr ""
1864
+
1865
+ #: ../../admin/lang/dynamic_strings.php:188
1866
+ msgid "l-it-ch"
1867
+ msgstr ""
1868
+
1869
+ #: ../../admin/lang/dynamic_strings.php:189
1870
+ msgid "l-it-it"
1871
+ msgstr ""
1872
+
1873
+ #: ../../admin/lang/dynamic_strings.php:190
1874
+ msgid "l-ja"
1875
+ msgstr ""
1876
+
1877
+ #: ../../admin/lang/dynamic_strings.php:191
1878
+ msgid "l-ja-jp"
1879
+ msgstr ""
1880
+
1881
+ #: ../../admin/lang/dynamic_strings.php:192
1882
+ msgid "l-ka"
1883
+ msgstr ""
1884
+
1885
+ #: ../../admin/lang/dynamic_strings.php:193
1886
+ msgid "l-ka-ge"
1887
+ msgstr ""
1888
+
1889
+ #: ../../admin/lang/dynamic_strings.php:194
1890
+ msgid "l-kk"
1891
+ msgstr ""
1892
+
1893
+ #: ../../admin/lang/dynamic_strings.php:195
1894
+ msgid "l-kk-kz"
1895
+ msgstr ""
1896
+
1897
+ #: ../../admin/lang/dynamic_strings.php:196
1898
+ msgid "l-kn"
1899
+ msgstr ""
1900
+
1901
+ #: ../../admin/lang/dynamic_strings.php:197
1902
+ msgid "l-kn-in"
1903
+ msgstr ""
1904
+
1905
+ #: ../../admin/lang/dynamic_strings.php:198
1906
+ msgid "l-ko"
1907
+ msgstr ""
1908
+
1909
+ #: ../../admin/lang/dynamic_strings.php:199
1910
+ msgid "l-ko-kr"
1911
+ msgstr ""
1912
+
1913
+ #: ../../admin/lang/dynamic_strings.php:200
1914
+ msgid "l-kok"
1915
+ msgstr ""
1916
+
1917
+ #: ../../admin/lang/dynamic_strings.php:201
1918
+ msgid "l-kok-in"
1919
+ msgstr ""
1920
+
1921
+ #: ../../admin/lang/dynamic_strings.php:202
1922
+ msgid "l-ky"
1923
+ msgstr ""
1924
+
1925
+ #: ../../admin/lang/dynamic_strings.php:203
1926
+ msgid "l-ky-kg"
1927
+ msgstr ""
1928
+
1929
+ #: ../../admin/lang/dynamic_strings.php:204
1930
+ msgid "l-lt"
1931
+ msgstr ""
1932
+
1933
+ #: ../../admin/lang/dynamic_strings.php:205
1934
+ msgid "l-lt-lt"
1935
+ msgstr ""
1936
+
1937
+ #: ../../admin/lang/dynamic_strings.php:206
1938
+ msgid "l-lv"
1939
+ msgstr ""
1940
+
1941
+ #: ../../admin/lang/dynamic_strings.php:207
1942
+ msgid "l-lv-lv"
1943
+ msgstr ""
1944
+
1945
+ #: ../../admin/lang/dynamic_strings.php:208
1946
+ msgid "l-mi"
1947
+ msgstr ""
1948
+
1949
+ #: ../../admin/lang/dynamic_strings.php:209
1950
+ msgid "l-mi-nz"
1951
+ msgstr ""
1952
+
1953
+ #: ../../admin/lang/dynamic_strings.php:210
1954
+ msgid "l-mk"
1955
+ msgstr ""
1956
+
1957
+ #: ../../admin/lang/dynamic_strings.php:211
1958
+ msgid "l-mk-ml"
1959
+ msgstr ""
1960
+
1961
+ #: ../../admin/lang/dynamic_strings.php:212
1962
+ msgid "l-mn"
1963
+ msgstr ""
1964
+
1965
+ #: ../../admin/lang/dynamic_strings.php:213
1966
+ msgid "l-mn-mn"
1967
+ msgstr ""
1968
+
1969
+ #: ../../admin/lang/dynamic_strings.php:214
1970
+ msgid "l-mr"
1971
+ msgstr ""
1972
+
1973
+ #: ../../admin/lang/dynamic_strings.php:215
1974
+ msgid "l-mr-in"
1975
+ msgstr ""
1976
+
1977
+ #: ../../admin/lang/dynamic_strings.php:216
1978
+ msgid "l-ms"
1979
+ msgstr ""
1980
+
1981
+ #: ../../admin/lang/dynamic_strings.php:217
1982
+ msgid "l-ms-bn"
1983
+ msgstr ""
1984
+
1985
+ #: ../../admin/lang/dynamic_strings.php:218
1986
+ msgid "l-ms-my"
1987
+ msgstr ""
1988
+
1989
+ #: ../../admin/lang/dynamic_strings.php:219
1990
+ msgid "l-mt"
1991
+ msgstr ""
1992
+
1993
+ #: ../../admin/lang/dynamic_strings.php:220
1994
+ msgid "l-mt-mt"
1995
+ msgstr ""
1996
+
1997
+ #: ../../admin/lang/dynamic_strings.php:221
1998
+ msgid "l-nb"
1999
+ msgstr ""
2000
+
2001
+ #: ../../admin/lang/dynamic_strings.php:222
2002
+ msgid "l-nb-no"
2003
+ msgstr ""
2004
+
2005
+ #: ../../admin/lang/dynamic_strings.php:223
2006
+ msgid "l-nl"
2007
+ msgstr ""
2008
+
2009
+ #: ../../admin/lang/dynamic_strings.php:224
2010
+ msgid "l-nl-be"
2011
+ msgstr ""
2012
+
2013
+ #: ../../admin/lang/dynamic_strings.php:225
2014
+ msgid "l-nl-nl"
2015
+ msgstr ""
2016
+
2017
+ #: ../../admin/lang/dynamic_strings.php:226
2018
+ msgid "l-nn-no"
2019
+ msgstr ""
2020
+
2021
+ #: ../../admin/lang/dynamic_strings.php:227
2022
+ msgid "l-ns"
2023
+ msgstr ""
2024
+
2025
+ #: ../../admin/lang/dynamic_strings.php:228
2026
+ msgid "l-ns-za"
2027
+ msgstr ""
2028
+
2029
+ #: ../../admin/lang/dynamic_strings.php:229
2030
+ msgid "l-pa"
2031
+ msgstr ""
2032
+
2033
+ #: ../../admin/lang/dynamic_strings.php:230
2034
+ msgid "l-pa-in"
2035
+ msgstr ""
2036
+
2037
+ #: ../../admin/lang/dynamic_strings.php:231
2038
+ msgid "l-pl"
2039
+ msgstr ""
2040
+
2041
+ #: ../../admin/lang/dynamic_strings.php:232
2042
+ msgid "l-pl-pl"
2043
+ msgstr ""
2044
+
2045
+ #: ../../admin/lang/dynamic_strings.php:233
2046
+ msgid "l-ps"
2047
+ msgstr ""
2048
+
2049
+ #: ../../admin/lang/dynamic_strings.php:234
2050
+ msgid "l-ps-ar"
2051
+ msgstr ""
2052
+
2053
+ #: ../../admin/lang/dynamic_strings.php:235
2054
+ msgid "l-pt"
2055
+ msgstr ""
2056
+
2057
+ #: ../../admin/lang/dynamic_strings.php:236
2058
+ msgid "l-pt-br"
2059
+ msgstr ""
2060
+
2061
+ #: ../../admin/lang/dynamic_strings.php:237
2062
+ msgid "l-pt-pt"
2063
+ msgstr ""
2064
+
2065
+ #: ../../admin/lang/dynamic_strings.php:238
2066
+ msgid "l-qu"
2067
+ msgstr ""
2068
+
2069
+ #: ../../admin/lang/dynamic_strings.php:239
2070
+ msgid "l-qu-bo"
2071
+ msgstr ""
2072
+
2073
+ #: ../../admin/lang/dynamic_strings.php:240
2074
+ msgid "l-qu-ec"
2075
+ msgstr ""
2076
+
2077
+ #: ../../admin/lang/dynamic_strings.php:241
2078
+ msgid "l-qu-pe"
2079
+ msgstr ""
2080
+
2081
+ #: ../../admin/lang/dynamic_strings.php:242
2082
+ msgid "l-ro"
2083
+ msgstr ""
2084
+
2085
+ #: ../../admin/lang/dynamic_strings.php:243
2086
+ msgid "l-ro-ro"
2087
+ msgstr ""
2088
+
2089
+ #: ../../admin/lang/dynamic_strings.php:244
2090
+ msgid "l-ru"
2091
+ msgstr ""
2092
+
2093
+ #: ../../admin/lang/dynamic_strings.php:245
2094
+ msgid "l-ru-ru"
2095
+ msgstr ""
2096
+
2097
+ #: ../../admin/lang/dynamic_strings.php:246
2098
+ msgid "l-sa"
2099
+ msgstr ""
2100
+
2101
+ #: ../../admin/lang/dynamic_strings.php:247
2102
+ msgid "l-sa-in"
2103
+ msgstr ""
2104
+
2105
+ #: ../../admin/lang/dynamic_strings.php:248
2106
+ msgid "l-se"
2107
+ msgstr ""
2108
+
2109
+ #: ../../admin/lang/dynamic_strings.php:249
2110
+ msgid "l-se-fi"
2111
+ msgstr ""
2112
+
2113
+ #: ../../admin/lang/dynamic_strings.php:250
2114
+ msgid "l-se-no"
2115
+ msgstr ""
2116
+
2117
+ #: ../../admin/lang/dynamic_strings.php:251
2118
+ msgid "l-se-se"
2119
+ msgstr ""
2120
+
2121
+ #: ../../admin/lang/dynamic_strings.php:252
2122
+ msgid "l-sk"
2123
+ msgstr ""
2124
+
2125
+ #: ../../admin/lang/dynamic_strings.php:253
2126
+ msgid "l-sk-sk"
2127
+ msgstr ""
2128
+
2129
+ #: ../../admin/lang/dynamic_strings.php:254
2130
+ msgid "l-sl"
2131
+ msgstr ""
2132
+
2133
+ #: ../../admin/lang/dynamic_strings.php:255
2134
+ msgid "l-sl-si"
2135
+ msgstr ""
2136
+
2137
+ #: ../../admin/lang/dynamic_strings.php:256
2138
+ msgid "l-sq"
2139
+ msgstr ""
2140
+
2141
+ #: ../../admin/lang/dynamic_strings.php:257
2142
+ msgid "l-sq-al"
2143
+ msgstr ""
2144
+
2145
+ #: ../../admin/lang/dynamic_strings.php:258
2146
+ msgid "l-sr-ba"
2147
+ msgstr ""
2148
+
2149
+ #: ../../admin/lang/dynamic_strings.php:259
2150
+ msgid "l-sr-sp"
2151
+ msgstr ""
2152
+
2153
+ #: ../../admin/lang/dynamic_strings.php:260
2154
+ msgid "l-sv"
2155
+ msgstr ""
2156
+
2157
+ #: ../../admin/lang/dynamic_strings.php:261
2158
+ msgid "l-sv-fi"
2159
+ msgstr ""
2160
+
2161
+ #: ../../admin/lang/dynamic_strings.php:262
2162
+ msgid "l-sv-se"
2163
+ msgstr ""
2164
+
2165
+ #: ../../admin/lang/dynamic_strings.php:263
2166
+ msgid "l-sw"
2167
+ msgstr ""
2168
+
2169
+ #: ../../admin/lang/dynamic_strings.php:264
2170
+ msgid "l-sw-ke"
2171
+ msgstr ""
2172
+
2173
+ #: ../../admin/lang/dynamic_strings.php:265
2174
+ msgid "l-ta"
2175
+ msgstr ""
2176
+
2177
+ #: ../../admin/lang/dynamic_strings.php:266
2178
+ msgid "l-ta-in"
2179
+ msgstr ""
2180
+
2181
+ #: ../../admin/lang/dynamic_strings.php:267
2182
+ msgid "l-te"
2183
+ msgstr ""
2184
+
2185
+ #: ../../admin/lang/dynamic_strings.php:268
2186
+ msgid "l-te-in"
2187
+ msgstr ""
2188
+
2189
+ #: ../../admin/lang/dynamic_strings.php:269
2190
+ msgid "l-th"
2191
+ msgstr ""
2192
+
2193
+ #: ../../admin/lang/dynamic_strings.php:270
2194
+ msgid "l-th-th"
2195
+ msgstr ""
2196
+
2197
+ #: ../../admin/lang/dynamic_strings.php:271
2198
+ msgid "l-tl"
2199
+ msgstr ""
2200
+
2201
+ #: ../../admin/lang/dynamic_strings.php:272
2202
+ msgid "l-tl-ph"
2203
+ msgstr ""
2204
+
2205
+ #: ../../admin/lang/dynamic_strings.php:273
2206
+ msgid "l-tn"
2207
+ msgstr ""
2208
+
2209
+ #: ../../admin/lang/dynamic_strings.php:274
2210
+ msgid "l-tn-za"
2211
+ msgstr ""
2212
+
2213
+ #: ../../admin/lang/dynamic_strings.php:275
2214
+ msgid "l-tr"
2215
+ msgstr ""
2216
+
2217
+ #: ../../admin/lang/dynamic_strings.php:276
2218
+ msgid "l-tr-tr"
2219
+ msgstr ""
2220
+
2221
+ #: ../../admin/lang/dynamic_strings.php:277
2222
+ msgid "l-tt"
2223
+ msgstr ""
2224
+
2225
+ #: ../../admin/lang/dynamic_strings.php:278
2226
+ msgid "l-tt-ru"
2227
+ msgstr ""
2228
+
2229
+ #: ../../admin/lang/dynamic_strings.php:279
2230
+ msgid "l-ts"
2231
+ msgstr ""
2232
+
2233
+ #: ../../admin/lang/dynamic_strings.php:280
2234
+ msgid "l-uk"
2235
+ msgstr ""
2236
+
2237
+ #: ../../admin/lang/dynamic_strings.php:281
2238
+ msgid "l-uk-ua"
2239
+ msgstr ""
2240
+
2241
+ #: ../../admin/lang/dynamic_strings.php:282
2242
+ msgid "l-ur"
2243
+ msgstr ""
2244
+
2245
+ #: ../../admin/lang/dynamic_strings.php:283
2246
+ msgid "l-ur-pk"
2247
+ msgstr ""
2248
+
2249
+ #: ../../admin/lang/dynamic_strings.php:284
2250
+ msgid "l-uz"
2251
+ msgstr ""
2252
+
2253
+ #: ../../admin/lang/dynamic_strings.php:285
2254
+ msgid "l-uz-uz"
2255
+ msgstr ""
2256
+
2257
+ #: ../../admin/lang/dynamic_strings.php:286
2258
+ msgid "l-vi"
2259
+ msgstr ""
2260
+
2261
+ #: ../../admin/lang/dynamic_strings.php:287
2262
+ msgid "l-vi-vn"
2263
+ msgstr ""
2264
+
2265
+ #: ../../admin/lang/dynamic_strings.php:288
2266
+ msgid "l-xh"
2267
+ msgstr ""
2268
+
2269
+ #: ../../admin/lang/dynamic_strings.php:289
2270
+ msgid "l-xh-za"
2271
+ msgstr ""
2272
+
2273
+ #: ../../admin/lang/dynamic_strings.php:290
2274
+ msgid "l-zh"
2275
+ msgstr ""
2276
+
2277
+ #: ../../admin/lang/dynamic_strings.php:291
2278
+ msgid "l-zh-cn"
2279
+ msgstr ""
2280
+
2281
+ #: ../../admin/lang/dynamic_strings.php:292
2282
+ msgid "l-zh-hk"
2283
+ msgstr ""
2284
+
2285
+ #: ../../admin/lang/dynamic_strings.php:293
2286
+ msgid "l-zh-mo"
2287
+ msgstr ""
2288
+
2289
+ #: ../../admin/lang/dynamic_strings.php:294
2290
+ msgid "l-zh-sg"
2291
+ msgstr ""
2292
+
2293
+ #: ../../admin/lang/dynamic_strings.php:295
2294
+ msgid "l-zh-tw"
2295
+ msgstr ""
2296
+
2297
+ #: ../../admin/lang/dynamic_strings.php:296
2298
+ msgid "l-zu"
2299
+ msgstr ""
2300
+
2301
+ #: ../../admin/lang/dynamic_strings.php:297
2302
+ msgid "l-zu-za"
2303
+ msgstr ""
2304
+
2305
+ #: ../../admin/lang/dynamic_strings.php:298
2306
+ #: ../../admin/view/wp-slimstat-reports.php:505
2307
+ msgid "l-"
2308
+ msgstr ""
2309
+
2310
+ #: ../../admin/lang/dynamic_strings.php:299
2311
+ msgid "l-empty"
2312
+ msgstr "ناشناخته"
2313
+
2314
+ #: ../../admin/lang/dynamic_strings.php:300
2315
+ msgid "l-xx"
2316
+ msgstr ""
2317
+
2318
+ #: ../../admin/lang/dynamic_strings.php:301
2319
+ msgid "c-xy"
2320
+ msgstr "آدرس محلی"
2321
+
2322
+ #: ../../admin/view/index.php:24
2323
+ msgid "is between (x,y)"
2324
+ msgstr ""
2325
+
2326
+ #: ../../admin/view/index.php:44
2327
+ msgid "Load"
2328
+ msgstr ""
2329
+
2330
+ #: ../../admin/view/index.php:64 ../../admin/view/wp-slimstat-reports.php:821
2331
+ msgid "Today"
2332
+ msgstr "امروز‍"
2333
+
2334
+ #: ../../admin/view/index.php:65 ../../admin/view/wp-slimstat-reports.php:822
2335
+ msgid "Yesterday"
2336
+ msgstr "دیروز"
2337
+
2338
+ #: ../../admin/view/index.php:66
2339
+ msgid "Last 7 Days"
2340
+ msgstr "۷ روز اخیر"
2341
+
2342
+ #: ../../admin/view/index.php:67
2343
+ #, fuzzy
2344
+ msgid "Last 60 Days"
2345
+ msgstr "۳۰ روز اخیر"
2346
+
2347
+ #: ../../admin/view/index.php:68
2348
+ msgid "Last 90 Days"
2349
+ msgstr "۹۰ روز اخیر"
2350
+
2351
+ #: ../../admin/view/index.php:69
2352
+ #, fuzzy
2353
+ msgid "This Year So Far"
2354
+ msgstr "امسال"
2355
+
2356
+ #: ../../admin/view/index.php:70
2357
+ msgid "Date Range"
2358
+ msgstr "محدوده زمانی"
2359
+
2360
+ #: ../../admin/view/index.php:72 ../../admin/view/wp-slimstat-db.php:70
2361
+ msgid "Day"
2362
+ msgstr "روز"
2363
+
2364
+ #: ../../admin/view/index.php:82 ../../admin/view/wp-slimstat-db.php:71
2365
+ msgid "Month"
2366
+ msgstr "ماه"
2367
+
2368
+ #: ../../admin/view/index.php:91 ../../admin/view/wp-slimstat-db.php:72
2369
+ msgid "Year"
2370
+ msgstr "سال"
2371
+
2372
+ #: ../../admin/view/index.php:92 ../../admin/view/wp-slimstat-db.php:69
2373
+ msgid "Hour"
2374
+ msgstr "ساعت"
2375
+
2376
+ #: ../../admin/view/index.php:93
2377
+ msgid "Min"
2378
+ msgstr ""
2379
+
2380
+ #: ../../admin/view/index.php:101 ../../admin/view/wp-slimstat-db.php:75
2381
+ msgid "hours"
2382
+ msgstr ""
2383
+
2384
+ #: ../../admin/view/index.php:102
2385
+ msgid "mins"
2386
+ msgstr ""
2387
+
2388
+ #: ../../admin/view/index.php:110
2389
+ #, fuzzy
2390
+ msgid "Reset Filters"
2391
+ msgstr "فیلترهای تاریخ"
2392
+
2393
+ #: ../../admin/view/index.php:151
2394
+ msgid "Your report here"
2395
+ msgstr "گزارش شما این‌جا"
2396
+
2397
+ #: ../../admin/view/index.php:153
2398
+ #, fuzzy
2399
+ msgid ""
2400
+ "Yes, you can! Create and view your personalized analytics for Slimstat. Just "
2401
+ "write a new plugin that retrieves the desired information from the database "
2402
+ "and then hook it to the action <code>wp_slimstat_custom_report</code>. For "
2403
+ "more information, visit my <a href=\"http://wordpress.org/tags/wp-slimstat?"
2404
+ "forum_id=10\" target=\"_blank\">support forum</a>."
2405
+ msgstr ""
2406
+ " شما میتوانید گزارش آمار شخصی ایجاد کنید. یک افزونه بنویسید که اطلاعات مورد "
2407
+ "نظر را از پایگاه داده را به <code>wp_slimstat_custom_report</code> گزارش "
2408
+ "قلاب میکند.برای اطلاع بیشتر به صفحه<a href=\"http://wordpress.org/tags/wp-"
2409
+ "slimstat?forum_id=10\" target=\"_blank\"> پشتیبانی </a>مراجعه کنید."
2410
+
2411
+ #: ../../admin/view/index.php:167 ../../admin/view/wp-slimstat-reports.php:812
2412
+ #: ../../admin/view/wp-slimstat-reports.php:914
2413
+ #: ../../admin/view/wp-slimstat-reports.php:1137
2414
+ msgid "Pageviews"
2415
+ msgstr "مشاهدات صفحات"
2416
+
2417
+ #: ../../admin/view/index.php:170
2418
+ #, fuzzy
2419
+ msgid ""
2420
+ "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2421
+ "Slimstat leverages this information to identify returning visitors. Please "
2422
+ "note that visitors also include registered users."
2423
+ msgstr ""
2424
+ "وقتی کاربران در تارنامه نظر ثبت می‌کنند، وردپرس به آن‌ها یک کلوچک اختصاص می‌دهد."
2425
+ "WP SlimStat از این اطلاعات برای شناسایی «بیننده دوباره» استفاده میکند. در "
2426
+ "نظر داشته باشید که بیننده ها شامل کاربران ثبت شده نیز میباشد."
2427
+
2428
+ #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2429
+ #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2430
+ msgid "Color codes"
2431
+ msgstr "علامت رنگی"
2432
+
2433
+ #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2434
+ #, fuzzy
2435
+ msgid "From search result page"
2436
+ msgstr "از صفحه نتایج جستجو"
2437
+
2438
+ #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2439
+ #: ../../admin/wp-slimstat-admin.php:806
2440
+ msgid "Known Visitor"
2441
+ msgstr "بیننده آشنا"
2442
+
2443
+ #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2444
+ #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2445
+ msgid "Known Users"
2446
+ msgstr "کاربران آشنا"
2447
+
2448
+ #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2449
+ #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2450
+ msgid "Other Humans"
2451
+ msgstr "دیگران"
2452
+
2453
+ #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2454
+ msgid "Bot or Crawler"
2455
+ msgstr "روبات یا خزنده"
2456
+
2457
+ #: ../../admin/view/index.php:178
2458
+ msgid "Keywords used by your visitors to find your website on a search engine."
2459
+ msgstr "عبارات کلیدی در موتورهای جستجو که بیننده را به پایگاه شما را یافته‌اند."
2460
+
2461
+ #: ../../admin/view/index.php:181
2462
+ #, fuzzy
2463
+ msgid ""
2464
+ "Slimstat retrieves live information from Alexa, Facebook and Google, to "
2465
+ "measures your site's rankings. Values are updated every 12 hours. Filters "
2466
+ "set above don't apply to this report."
2467
+ msgstr ""
2468
+ "با کسب اطلاعات خود از Google، Facebook و یا Alexa، رتبه خود را محک بزنید. "
2469
+ "مقادیر هر ۱۲ ساعت به روز میشوند. صافی ها بالا در این گزارش کاربرد نمیشوند. "
2470
+
2471
+ #: ../../admin/view/index.php:184
2472
+ msgid "Human Visits"
2473
+ msgstr "بازدیدهای انسانی"
2474
+
2475
+ #: ../../admin/view/index.php:187
2476
+ #, fuzzy
2477
+ msgid ""
2478
+ "Internet Service Provider: a company which provides other companies or "
2479
+ "individuals with access to the Internet. Your DSL or cable internet service "
2480
+ "is provided to you by your ISP.<br><br>You can ignore specific IP addresses "
2481
+ "by setting the corresponding filter under Settings > Slimstat > Filters."
2482
+ msgstr ""
2483
+ "اینترنت توسط یک شرکت خدماتی (ISP) برای شما فراهم میشود. میتوانید این نشانی "
2484
+ "ای پی را با وارد کردن صافی نادیده بگیرید."
2485
+
2486
+ #: ../../admin/view/index.php:190
2487
+ #, fuzzy
2488
+ msgid ""
2489
+ "You can configure Slimstat to ignore a specific Country by setting the "
2490
+ "corresponding filter under Settings > Slimstat > Filters."
2491
+ msgstr ""
2492
+ "میتوانید تنظیمات برنامه برای نادیده گرفتن بعضی کشورها را تغییر دهید:Settings "
2493
+ "> SlimStat > Filters"
2494
+
2495
+ #: ../../admin/view/index.php:193
2496
+ msgid ""
2497
+ "This report shows you what user agent families (no version considered) are "
2498
+ "popular among your visitors."
2499
+ msgstr ""
2500
+ "این گزارش نشانگر عامل کابر (بدون در نظر گرفتن نسخه) که در میان بیننده ها "
2501
+ "محبوب تر هستند میباشد."
2502
+
2503
+ #: ../../admin/view/index.php:196
2504
+ msgid ""
2505
+ "This report shows you what operating system families (no version considered) "
2506
+ "are popular among your visitors."
2507
+ msgstr ""
2508
+ "این گزارش نشانگر محیط عامل هایی (بدون در نظر گرفتن نسخه) که در میان بیننده "
2509
+ "ها محبوب تر هستند میباشد."
2510
+
2511
+ #: ../../admin/view/index.php:199 ../../admin/view/wp-slimstat-reports.php:38
2512
+ #: ../../admin/wp-slimstat-admin.php:509 ../../admin/wp-slimstat-admin.php:526
2513
+ #: ../../wp-slimstat.php:1348
2514
+ msgid "Traffic Sources"
2515
+ msgstr "منابع ترافیک"
2516
+
2517
+ #: ../../admin/view/index.php:202
2518
+ msgid "Average Pageviews per Visit"
2519
+ msgstr "میان‌گین مشاهده صفحات در هر بازدید"
2520
+
2521
+ #: ../../admin/view/index.php:205
2522
+ msgid ""
2523
+ "A <em>bounce page</em> is a single-page visit, or visit in which the person "
2524
+ "left your site from the entrance (landing) page."
2525
+ msgstr ""
2526
+ " «صفحه وازده» یک «تک-صفحه» میباشد، یا آخرین صفحه ی دیده شده قبل از آنکه "
2527
+ "بیننده پایگاه را ترک کند. "
2528
+
2529
+ #: ../../admin/view/index.php:208
2530
+ msgid "Searches performed using Wordpress' built-in search functionality."
2531
+ msgstr "جستجوهایی که توسط جستجوی داخلی Wordpress انجام میشوند."
2532
+
2533
+ #: ../../admin/view/index.php:212
2534
+ msgid ""
2535
+ "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
2536
+ "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
2537
+ "link has an ID attribute associated to it."
2538
+ msgstr ""
2539
+ "جزئيات پیوند نشان میدهد که چندمین پیوند فشار داده شده است. <em>ID:xx</em> "
2540
+ "هنگامی نشان داده میشود که پیوند مرتبط شناسه داشته باشد."
2541
+
2542
+ #: ../../admin/view/index.php:215
2543
+ msgid ""
2544
+ "This report lists any <em>event</em> occurred on your website. Please refer "
2545
+ "to the FAQ for more information on how to leverage this functionality."
2546
+ msgstr ""
2547
+ "این گزارش تمامی رویداد های پایگاه شما را فهرست میکند. لطفا برای کسب اطلاع "
2548
+ "بیشتر در این مورد به بخش پرسش و پاسخ مراجعه کنید."
2549
+
2550
+ #: ../../admin/view/index.php:218
2551
+ msgid ""
2552
+ "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2553
+ "this report is not affected by the filters set here above."
2554
+ msgstr ""
2555
+ "محتوای شما در یک نگاه: ارسال ها، نظرها و غیره. این گزارش با صافی های بالا "
2556
+ "کاربرد نمیشود."
2557
+
2558
+ #: ../../admin/view/right-now.php:8
2559
+ msgid "Human"
2560
+ msgstr "انسان"
2561
+
2562
+ #: ../../admin/view/right-now.php:8
2563
+ msgid "Bot/Crawler"
2564
+ msgstr "روبات یا خزنده"
2565
+
2566
+ #: ../../admin/view/right-now.php:8
2567
+ msgid "Mobile Device"
2568
+ msgstr "همراه"
2569
+
2570
+ #: ../../admin/view/right-now.php:8
2571
+ msgid "Syndication Reader"
2572
+ msgstr "پیوند ریدر"
2573
+
2574
+ #: ../../admin/view/right-now.php:30
2575
+ #: ../../admin/view/wp-slimstat-reports.php:440
2576
+ #: ../../admin/view/wp-slimstat-reports.php:703
2577
+ msgid "No data to display"
2578
+ msgstr "داده‌ای برای نمایش نیست"
2579
+
2580
+ # Unknown
2581
+ #: ../../admin/view/right-now.php:56
2582
+ #: ../../admin/view/wp-slimstat-reports.php:493
2583
+ #: ../../admin/view/wp-slimstat-reports.php:746
2584
+ #: ../../admin/view/wp-slimstat-reports.php:1025
2585
+ msgid "c-"
2586
+ msgstr "Unknown"
2587
+
2588
+ #: ../../admin/view/right-now.php:109 ../../admin/view/wp-slimstat-db.php:61
2589
+ #: ../../admin/wp-slimstat-admin.php:808 ../../admin/wp-slimstat-admin.php:850
2590
+ msgid "Originating IP"
2591
+ msgstr "آی‌پی منشا"
2592
+
2593
+ #: ../../admin/view/right-now.php:130
2594
+ msgid "Server Latency and Page Speed in milliseconds"
2595
+ msgstr ""
2596
+
2597
+ #: ../../admin/view/right-now.php:130
2598
+ msgid "SL"
2599
+ msgstr ""
2600
+
2601
+ #: ../../admin/view/right-now.php:130
2602
+ msgid "PS"
2603
+ msgstr ""
2604
+
2605
+ #: ../../admin/view/right-now.php:142
2606
+ #: ../../admin/view/wp-slimstat-reports.php:552
2607
+ #: ../../admin/view/wp-slimstat-reports.php:556
2608
+ #: ../../admin/view/wp-slimstat-reports.php:728
2609
+ #: ../../admin/view/wp-slimstat-reports.php:781
2610
+ msgid "Open this URL in a new window"
2611
+ msgstr "نشانی را در پنجره جدید باز کن"
2612
+
2613
+ #: ../../admin/view/right-now.php:145
2614
+ msgid "Local search results page"
2615
+ msgstr "صفحه نتایج جستجوی محلی"
2616
+
2617
+ #: ../../admin/view/right-now.php:150 ../../admin/view/wp-slimstat-db.php:40
2618
+ #: ../../admin/wp-slimstat-admin.php:811 ../../admin/wp-slimstat-admin.php:827
2619
+ msgid "Search Terms"
2620
+ msgstr "عبارت‌های جستجو"
2621
+
2622
+ #: ../../admin/view/right-now.php:153
2623
+ msgid "Open this referrer in a new window"
2624
+ msgstr "این ارجاعی دهنده را در پنجره جدید باز کن"
2625
+
2626
+ #: ../../admin/view/right-now.php:154
2627
+ msgid "Open this outbound link in a new window"
2628
+ msgstr " پیوندهای بیرونی را در پنجره جدید باز کن"
2629
+
2630
+ #: ../../admin/view/right-now.php:155
2631
+ msgid "Date and Time"
2632
+ msgstr "روز و ساعت"
2633
+
2634
+ #: ../../admin/view/right-now.php:156
2635
+ msgid "Content Type"
2636
+ msgstr " نوع محتوا"
2637
+
2638
+ #: ../../admin/view/wp-slimstat-db.php:37
2639
+ #: ../../admin/wp-slimstat-admin.php:824
2640
+ msgid "Browser"
2641
+ msgstr "مرورگر"
2642
+
2643
+ #: ../../admin/view/wp-slimstat-db.php:38
2644
+ #: ../../admin/view/wp-slimstat-reports.php:492
2645
+ #: ../../admin/wp-slimstat-admin.php:825
2646
+ msgid "Country Code"
2647
+ msgstr "علامت کشور"
2648
+
2649
+ #: ../../admin/view/wp-slimstat-db.php:39
2650
+ msgid "IP Address"
2651
+ msgstr "نشانی آی‌پی"
2652
+
2653
+ #: ../../admin/view/wp-slimstat-db.php:41
2654
+ #: ../../admin/view/wp-slimstat-reports.php:504
2655
+ #: ../../admin/wp-slimstat-admin.php:828
2656
+ msgid "Language Code"
2657
+ msgstr "علامت زبان"
2658
+
2659
+ #: ../../admin/view/wp-slimstat-db.php:42
2660
+ #: ../../admin/wp-slimstat-admin.php:829
2661
+ msgid "Operating System"
2662
+ msgstr "سامانه عامل"
2663
+
2664
+ #: ../../admin/view/wp-slimstat-db.php:43
2665
+ #: ../../admin/wp-slimstat-admin.php:830
2666
+ msgid "Permalink"
2667
+ msgstr "پیوند یکتا"
2668
+
2669
+ #: ../../admin/view/wp-slimstat-db.php:44
2670
+ msgid "Domain"
2671
+ msgstr "دامنه"
2672
+
2673
+ #: ../../admin/view/wp-slimstat-db.php:45
2674
+ #: ../../admin/wp-slimstat-admin.php:831
2675
+ msgid "Referer"
2676
+ msgstr "ارجاع‌دهنده"
2677
+
2678
+ #: ../../admin/view/wp-slimstat-db.php:46
2679
+ #: ../../admin/wp-slimstat-admin.php:832
2680
+ msgid "Visitor's Name"
2681
+ msgstr "نام بیننده"
2682
+
2683
+ #: ../../admin/view/wp-slimstat-db.php:47
2684
+ msgid "Page Speed"
2685
+ msgstr ""
2686
+
2687
+ #: ../../admin/view/wp-slimstat-db.php:49
2688
+ msgid "-- Advanced filters --"
2689
+ msgstr "-- فیلترهای پیش‌رفته --"
2690
+
2691
+ #: ../../admin/view/wp-slimstat-db.php:50
2692
+ #: ../../admin/view/wp-slimstat-reports.php:64
2693
+ msgid "Browser Capabilities"
2694
+ msgstr "قابلیت‌های مرورگر"
2695
+
2696
+ #: ../../admin/view/wp-slimstat-db.php:51
2697
+ #: ../../admin/wp-slimstat-admin.php:843
2698
+ msgid "Browser Version"
2699
+ msgstr "نسخه مرورگر"
2700
+
2701
+ #: ../../admin/view/wp-slimstat-db.php:52
2702
+ #: ../../admin/wp-slimstat-admin.php:844
2703
+ msgid "Browser Type"
2704
+ msgstr "نوع مرورگر"
2705
+
2706
+ #: ../../admin/view/wp-slimstat-db.php:53
2707
+ #: ../../admin/wp-slimstat-admin.php:813
2708
+ msgid "User Agent"
2709
+ msgstr "مرورگرهای کاربران"
2710
+
2711
+ #: ../../admin/view/wp-slimstat-db.php:54
2712
+ #: ../../admin/wp-slimstat-admin.php:845
2713
+ msgid "Color Depth"
2714
+ msgstr "عمق رنگ"
2715
+
2716
+ #: ../../admin/view/wp-slimstat-db.php:55
2717
+ #: ../../admin/wp-slimstat-admin.php:846
2718
+ msgid "CSS Version"
2719
+ msgstr "نسخه سی‌اس‌اس "
2720
+
2721
+ #: ../../admin/view/wp-slimstat-db.php:56
2722
+ #: ../../admin/wp-slimstat-admin.php:847
2723
+ msgid "Pageview Attributes"
2724
+ msgstr "خصوصیات بازدید"
2725
+
2726
+ #: ../../admin/view/wp-slimstat-db.php:57
2727
+ msgid "Server Latency"
2728
+ msgstr ""
2729
+
2730
+ #: ../../admin/view/wp-slimstat-db.php:58
2731
+ #: ../../admin/wp-slimstat-admin.php:814
2732
+ msgid "Outbound Link"
2733
+ msgstr "پیوند بیرونی"
2734
+
2735
+ #: ../../admin/view/wp-slimstat-db.php:59
2736
+ #: ../../admin/wp-slimstat-admin.php:848
2737
+ msgid "Post Author"
2738
+ msgstr "نویسنده مطلب"
2739
+
2740
+ #: ../../admin/view/wp-slimstat-db.php:60
2741
+ #: ../../admin/wp-slimstat-admin.php:849
2742
+ msgid "Post Category ID"
2743
+ msgstr "شناسه دسته‌بندی مطلب"
2744
+
2745
+ #: ../../admin/view/wp-slimstat-db.php:62
2746
+ #: ../../admin/wp-slimstat-admin.php:851
2747
+ msgid "Resource Content Type"
2748
+ msgstr "نوع محتوای منبع"
2749
+
2750
+ #: ../../admin/view/wp-slimstat-db.php:63
2751
+ msgid "Resource ID"
2752
+ msgstr "شناسه منابع"
2753
+
2754
+ #: ../../admin/view/wp-slimstat-db.php:64
2755
+ #: ../../admin/wp-slimstat-admin.php:852
2756
+ msgid "Screen Resolution"
2757
+ msgstr "ابعاد صفحه نمایش"
2758
+
2759
+ #: ../../admin/view/wp-slimstat-db.php:65
2760
+ #: ../../admin/wp-slimstat-admin.php:853
2761
+ msgid "Visit ID"
2762
+ msgstr "شناسه دیدن"
2763
+
2764
+ #: ../../admin/view/wp-slimstat-db.php:68
2765
+ msgid "Minute"
2766
+ msgstr ""
2767
+
2768
+ #: ../../admin/view/wp-slimstat-db.php:73
2769
+ msgid "+/-"
2770
+ msgstr ""
2771
+
2772
+ #: ../../admin/view/wp-slimstat-db.php:76
2773
+ #, fuzzy
2774
+ msgid "minutes"
2775
+ msgstr "۱ تا ۳ دقیقه"
2776
+
2777
+ #: ../../admin/view/wp-slimstat-db.php:78
2778
+ msgid "Order Direction"
2779
+ msgstr ""
2780
+
2781
+ #: ../../admin/view/wp-slimstat-db.php:79
2782
+ #, fuzzy
2783
+ msgid "Limit Results"
2784
+ msgstr "نتایج محدود به"
2785
+
2786
+ #: ../../admin/view/wp-slimstat-db.php:80
2787
+ msgid "Start From"
2788
+ msgstr ""
2789
+
2790
+ #: ../../admin/view/wp-slimstat-reports.php:34
2791
+ #: ../../admin/wp-slimstat-admin.php:505 ../../wp-slimstat.php:1344
2792
+ msgid "Real-Time Log"
2793
+ msgstr ""
2794
+
2795
+ #: ../../admin/view/wp-slimstat-reports.php:35
2796
+ #: ../../admin/wp-slimstat-admin.php:506 ../../admin/wp-slimstat-admin.php:523
2797
+ #: ../../wp-slimstat.php:1345
2798
+ msgid "Overview"
2799
+ msgstr "مرور"
2800
+
2801
+ #: ../../admin/view/wp-slimstat-reports.php:36
2802
+ #: ../../admin/wp-slimstat-admin.php:507 ../../admin/wp-slimstat-admin.php:524
2803
+ #: ../../wp-slimstat.php:1346
2804
+ msgid "Audience"
2805
+ msgstr ""
2806
+
2807
+ #: ../../admin/view/wp-slimstat-reports.php:37
2808
+ #: ../../admin/wp-slimstat-admin.php:508 ../../admin/wp-slimstat-admin.php:525
2809
+ #: ../../wp-slimstat.php:1347
2810
+ msgid "Site Analysis"
2811
+ msgstr ""
2812
+
2813
+ #: ../../admin/view/wp-slimstat-reports.php:39
2814
+ #: ../../admin/wp-slimstat-admin.php:510 ../../admin/wp-slimstat-admin.php:527
2815
+ #: ../../wp-slimstat.php:1349
2816
+ msgid "Map Overlay"
2817
+ msgstr ""
2818
+
2819
+ #: ../../admin/view/wp-slimstat-reports.php:40
2820
+ #: ../../admin/wp-slimstat-admin.php:511 ../../admin/wp-slimstat-admin.php:528
2821
+ #: ../../wp-slimstat.php:1350
2822
+ msgid "Custom Reports"
2823
+ msgstr "گزارش دلخواه"
2824
+
2825
+ #: ../../admin/view/wp-slimstat-reports.php:44
2826
+ msgid "Pageviews (chart)"
2827
+ msgstr "مشاهده صفحات (نمودار)"
2828
+
2829
+ #: ../../admin/view/wp-slimstat-reports.php:45
2830
+ #, fuzzy
2831
+ msgid "About Slimstat"
2832
+ msgstr "درباره WP SlimStat"
2833
+
2834
+ #: ../../admin/view/wp-slimstat-reports.php:46
2835
+ msgid "At a Glance"
2836
+ msgstr "در یک نگاه"
2837
+
2838
+ #: ../../admin/view/wp-slimstat-reports.php:47
2839
+ msgid "Currently Online"
2840
+ msgstr "حالا روی خط"
2841
+
2842
+ #: ../../admin/view/wp-slimstat-reports.php:48
2843
+ #: ../../admin/view/wp-slimstat-reports.php:82
2844
+ msgid "Spy View"
2845
+ msgstr "دید دزدکی"
2846
+
2847
+ #: ../../admin/view/wp-slimstat-reports.php:49
2848
+ #: ../../admin/view/wp-slimstat-reports.php:83
2849
+ msgid "Recent Search Terms"
2850
+ msgstr "عبارت‌های جستجو شده اخیر"
2851
+
2852
+ #: ../../admin/view/wp-slimstat-reports.php:50
2853
+ msgid "Top Pages"
2854
+ msgstr "برترین صفحات"
2855
+
2856
+ #: ../../admin/view/wp-slimstat-reports.php:51
2857
+ #: ../../admin/view/wp-slimstat-reports.php:80
2858
+ msgid "Top Traffic Sources"
2859
+ msgstr "برترین منابع ترافیک"
2860
+
2861
+ #: ../../admin/view/wp-slimstat-reports.php:52
2862
+ msgid "Top Known Visitors"
2863
+ msgstr "برترین بیننده های آشنا"
2864
+
2865
+ #: ../../admin/view/wp-slimstat-reports.php:53
2866
+ #: ../../admin/view/wp-slimstat-reports.php:78
2867
+ #: ../../admin/view/wp-slimstat-reports.php:98
2868
+ msgid "Top Search Terms"
2869
+ msgstr "برترین عبارت های جستجو"
2870
+
2871
+ #: ../../admin/view/wp-slimstat-reports.php:54
2872
+ #: ../../admin/view/wp-slimstat-reports.php:65
2873
+ #: ../../admin/view/wp-slimstat-reports.php:79
2874
+ msgid "Top Countries"
2875
+ msgstr "برترین کشورها"
2876
+
2877
+ #: ../../admin/view/wp-slimstat-reports.php:55
2878
+ msgid "Rankings"
2879
+ msgstr "رتبه ها"
2880
+
2881
+ #: ../../admin/view/wp-slimstat-reports.php:56
2882
+ msgid "Top Language Families"
2883
+ msgstr "برترین زبان‌ها"
2884
+
2885
+ #: ../../admin/view/wp-slimstat-reports.php:57
2886
+ msgid "Human Visits (chart)"
2887
+ msgstr "مشاهدات انسانی (نمودار)"
2888
+
2889
+ #: ../../admin/view/wp-slimstat-reports.php:58
2890
+ #, fuzzy
2891
+ msgid "Audience Overview"
2892
+ msgstr "مرور"
2893
+
2894
+ #: ../../admin/view/wp-slimstat-reports.php:59
2895
+ msgid "Top Languages"
2896
+ msgstr "بیش‌ترین زبان‌ها"
2897
+
2898
+ #: ../../admin/view/wp-slimstat-reports.php:60
2899
+ msgid "Top Browsers"
2900
+ msgstr "برترین مرورگرها"
2901
+
2902
+ #: ../../admin/view/wp-slimstat-reports.php:61
2903
+ msgid "Top Service Providers"
2904
+ msgstr "برترین خدمات دهنده‌ها"
2905
+
2906
+ #: ../../admin/view/wp-slimstat-reports.php:62
2907
+ msgid "Top Operating Systems"
2908
+ msgstr "برترین محیط‌های عامل"
2909
+
2910
+ #: ../../admin/view/wp-slimstat-reports.php:63
2911
+ msgid "Top Screen Resolutions"
2912
+ msgstr "برترین ابعاد صفحه نماش‌ها"
2913
+
2914
+ #: ../../admin/view/wp-slimstat-reports.php:66
2915
+ msgid "Visit Duration"
2916
+ msgstr "طول دوره بازدید"
2917
+
2918
+ #: ../../admin/view/wp-slimstat-reports.php:67
2919
+ #: ../../admin/view/wp-slimstat-reports.php:84
2920
+ msgid "Recent Countries"
2921
+ msgstr "کشورهای اخیر"
2922
+
2923
+ #: ../../admin/view/wp-slimstat-reports.php:68
2924
+ msgid "Recent Screen Resolutions"
2925
+ msgstr "ابعاد نمایش‌گرهای اخیر"
2926
+
2927
+ #: ../../admin/view/wp-slimstat-reports.php:69
2928
+ msgid "Recent Operating Systems"
2929
+ msgstr "محیطهای عامل اخیر"
2930
+
2931
+ #: ../../admin/view/wp-slimstat-reports.php:70
2932
+ msgid "Recent Browsers"
2933
+ msgstr "مرورگرهای اخیر"
2934
+
2935
+ #: ../../admin/view/wp-slimstat-reports.php:71
2936
+ msgid "Recent Languages"
2937
+ msgstr "زبان‌های اخیر"
2938
+
2939
+ #: ../../admin/view/wp-slimstat-reports.php:72
2940
+ msgid "Top Browser Families"
2941
+ msgstr "برترین مرورگرها"
2942
+
2943
+ #: ../../admin/view/wp-slimstat-reports.php:73
2944
+ msgid "Top OS Families"
2945
+ msgstr "برترین محیط عامل ها"
2946
+
2947
+ #: ../../admin/view/wp-slimstat-reports.php:74
2948
+ msgid "Recent Users"
2949
+ msgstr "کاربرهای اخیر"
2950
+
2951
+ #: ../../admin/view/wp-slimstat-reports.php:75
2952
+ msgid "Top Users"
2953
+ msgstr "برترین کاربرها"
2954
+
2955
+ #: ../../admin/view/wp-slimstat-reports.php:76
2956
+ msgid "Traffic Sources (chart)"
2957
+ msgstr "منابع ترافیک (نمودار)"
2958
+
2959
+ #: ../../admin/view/wp-slimstat-reports.php:77
2960
+ msgid "Summary"
2961
+ msgstr "خلاصه"
2962
+
2963
+ #: ../../admin/view/wp-slimstat-reports.php:81
2964
+ msgid "Top Referring Search Engines"
2965
+ msgstr "برترین موتور جستجو های ارجاع‌دهنده"
2966
+
2967
+ #: ../../admin/view/wp-slimstat-reports.php:85
2968
+ #: ../../admin/view/wp-slimstat-reports.php:101
2969
+ msgid "Top Landing Pages"
2970
+ msgstr "برترین صفحه های ورود"
2971
+
2972
+ #: ../../admin/view/wp-slimstat-reports.php:86
2973
+ msgid "Average Pageviews per Visit (chart)"
2974
+ msgstr "میان‌گین مشاهده صفحات در بازدید(نمودار)"
2975
+
2976
+ #: ../../admin/view/wp-slimstat-reports.php:87
2977
+ msgid "Recent Posts"
2978
+ msgstr "ارسال های اخیر"
2979
+
2980
+ #: ../../admin/view/wp-slimstat-reports.php:88
2981
+ msgid "Recent Bounce Pages"
2982
+ msgstr "صفحات وازده اخیر"
2983
+
2984
+ #: ../../admin/view/wp-slimstat-reports.php:89
2985
+ msgid "Recent Feeds"
2986
+ msgstr "خوراک‌های اخیر"
2987
+
2988
+ #: ../../admin/view/wp-slimstat-reports.php:90
2989
+ msgid "Recent Pages Not Found"
2990
+ msgstr "صفحه هایی پیدا نشده اخیر"
2991
+
2992
+ #: ../../admin/view/wp-slimstat-reports.php:91
2993
+ msgid "Recent Internal Searches"
2994
+ msgstr "جستجوهای داخلی اخیر"
2995
+
2996
+ #: ../../admin/view/wp-slimstat-reports.php:92
2997
+ msgid "Top Categories"
2998
+ msgstr "برترین دسته‌ها"
2999
+
3000
+ #: ../../admin/view/wp-slimstat-reports.php:93
3001
+ msgid "Recent Outbound Links"
3002
+ msgstr "پیوندهای بیرونی اخیر"
3003
+
3004
+ #: ../../admin/view/wp-slimstat-reports.php:94
3005
+ msgid "Recent Events"
3006
+ msgstr "اتفاقات اخیر"
3007
+
3008
+ #: ../../admin/view/wp-slimstat-reports.php:95
3009
+ msgid "Top Posts"
3010
+ msgstr "برترین ارسال ها"
3011
+
3012
+ #: ../../admin/view/wp-slimstat-reports.php:96
3013
+ msgid "Top Feeds"
3014
+ msgstr "برترین خوراک‌ها"
3015
+
3016
+ #: ../../admin/view/wp-slimstat-reports.php:97
3017
+ msgid "Top Internal Searches"
3018
+ msgstr "برترین جستجوهای داخلی"
3019
+
3020
+ #: ../../admin/view/wp-slimstat-reports.php:99
3021
+ msgid "Recent Categories"
3022
+ msgstr "دسته‌های اخیر"
3023
+
3024
+ #: ../../admin/view/wp-slimstat-reports.php:100
3025
+ msgid "Top Pages Not Found"
3026
+ msgstr "برترین صفحاتی که پیدا نشد"
3027
+
3028
+ #: ../../admin/view/wp-slimstat-reports.php:102
3029
+ msgid "Top Authors"
3030
+ msgstr "برترین نویسنده‌ها"
3031
+
3032
+ #: ../../admin/view/wp-slimstat-reports.php:103
3033
+ msgid "Top Tags"
3034
+ msgstr "برترین نشانه ها"
3035
+
3036
+ #: ../../admin/view/wp-slimstat-reports.php:104
3037
+ msgid "Recent Downloads"
3038
+ msgstr "بارگیری های اخیر"
3039
+
3040
+ #: ../../admin/view/wp-slimstat-reports.php:105
3041
+ #, fuzzy
3042
+ msgid "Top OutLinks and Downloads"
3043
+ msgstr "برترین پیوندهای بیرونی و بارگیری ها"
3044
+
3045
+ #: ../../admin/view/wp-slimstat-reports.php:106
3046
+ msgid "Your Website"
3047
+ msgstr "تارنمای شما"
3048
+
3049
+ #: ../../admin/view/wp-slimstat-reports.php:107
3050
+ msgid "World Map"
3051
+ msgstr "نقشه جهان"
3052
+
3053
+ #: ../../admin/view/wp-slimstat-reports.php:108
3054
+ #, fuzzy
3055
+ msgid "Activity"
3056
+ msgstr "فهرست فعالیت ها"
3057
+
3058
+ #: ../../admin/view/wp-slimstat-reports.php:215
3059
+ msgid "Chart controls"
3060
+ msgstr "کنترل‌های نمودار"
3061
+
3062
+ #: ../../admin/view/wp-slimstat-reports.php:215
3063
+ msgid "Use your mouse wheel to zoom in and out"
3064
+ msgstr "از غلطانک موش‌واره برای بزرگ‌نمایی و کوچک‌نمایی استفاده کنید"
3065
+
3066
+ #: ../../admin/view/wp-slimstat-reports.php:215
3067
+ msgid "While zooming in, drag the chart to move to a different area"
3068
+ msgstr ""
3069
+ "زمانی‌که بزرگ‌نمایی می‌کنید، نمودار را می‌توانید بکشید و به نقاط دیگر بروید"
3070
+
3071
+ #: ../../admin/view/wp-slimstat-reports.php:215
3072
+ msgid "Double click on an empty region to reset the zoom level"
3073
+ msgstr "بر یک ناحیه خالی دوبار کلیک کنید تا بزرگنمایی به حالت اولیه بازگردد"
3074
+
3075
+ #: ../../admin/view/wp-slimstat-reports.php:228
3076
+ msgid "src"
3077
+ msgstr "منبع"
3078
+
3079
+ #: ../../admin/view/wp-slimstat-reports.php:229
3080
+ msgid "serp"
3081
+ msgstr ""
3082
+
3083
+ #: ../../admin/view/wp-slimstat-reports.php:234
3084
+ msgid "Go to the corresponding search engine result page"
3085
+ msgstr "برو به صفحه مرتبط با این جستجو"
3086
+
3087
+ #: ../../admin/view/wp-slimstat-reports.php:237
3088
+ msgid "Go to the referring page"
3089
+ msgstr "برو به صفحه ارجاع‌دهنده"
3090
+
3091
+ #: ../../admin/view/wp-slimstat-reports.php:260
3092
+ msgid "Remove filter for"
3093
+ msgstr "حذف فیلترها از"
3094
+
3095
+ #: ../../admin/view/wp-slimstat-reports.php:264
3096
+ msgid "Save"
3097
+ msgstr ""
3098
+
3099
+ #: ../../admin/view/wp-slimstat-reports.php:267
3100
+ msgid "Reset All"
3101
+ msgstr "بازنشانی همه"
3102
+
3103
+ #: ../../admin/view/wp-slimstat-reports.php:271
3104
+ msgid "Current filters:"
3105
+ msgstr "فیلترهای جاری:"
3106
+
3107
+ #: ../../admin/view/wp-slimstat-reports.php:275
3108
+ msgid "Refresh"
3109
+ msgstr "تازه سازی"
3110
+
3111
+ #: ../../admin/view/wp-slimstat-reports.php:354
3112
+ #, php-format
3113
+ msgid "Results %s - %s of %s"
3114
+ msgstr " نتایج %s - %s از %s"
3115
+
3116
+ #: ../../admin/view/wp-slimstat-reports.php:356
3117
+ msgid "Refresh in"
3118
+ msgstr "تازه سازی در"
3119
+
3120
+ #: ../../admin/view/wp-slimstat-reports.php:378
3121
+ #: ../../admin/view/wp-slimstat-reports.php:390
3122
+ #, php-format
3123
+ msgid "Daily %s"
3124
+ msgstr "%s روزانه"
3125
+
3126
+ #: ../../admin/view/wp-slimstat-reports.php:381
3127
+ #, php-format
3128
+ msgid "%s Minute by Minute"
3129
+ msgstr "%s دقیقه به دقیقه"
3130
+
3131
+ #: ../../admin/view/wp-slimstat-reports.php:384
3132
+ #, php-format
3133
+ msgid "Hourly %s"
3134
+ msgstr "%s ساعتی"
3135
+
3136
+ #: ../../admin/view/wp-slimstat-reports.php:387
3137
+ #, php-format
3138
+ msgid "Monthly %s"
3139
+ msgstr "%s ماهانه"
3140
+
3141
+ #: ../../admin/view/wp-slimstat-reports.php:475
3142
+ msgid "Category ID"
3143
+ msgstr "شناسه دسته"
3144
+
3145
+ #: ../../admin/view/wp-slimstat-reports.php:508
3146
+ msgid "OS Code"
3147
+ msgstr "کد محیط عامل"
3148
+
3149
+ #: ../../admin/view/wp-slimstat-reports.php:518
3150
+ msgid "Referrer"
3151
+ msgstr "ارجاع دهنده"
3152
+
3153
+ #: ../../admin/view/wp-slimstat-reports.php:542
3154
+ #: ../../admin/view/wp-slimstat-reports.php:849
3155
+ #: ../../admin/view/wp-slimstat-reports.php:858
3156
+ #: ../../admin/view/wp-slimstat-reports.php:864
3157
+ #: ../../admin/view/wp-slimstat-reports.php:870
3158
+ #: ../../admin/view/wp-slimstat-reports.php:876
3159
+ #: ../../admin/view/wp-slimstat-reports.php:882
3160
+ #: ../../admin/view/wp-slimstat-reports.php:888
3161
+ #: ../../admin/view/wp-slimstat-reports.php:894
3162
+ msgid "Hits"
3163
+ msgstr "بازدیدها"
3164
+
3165
+ #: ../../admin/view/wp-slimstat-reports.php:720
3166
+ msgid "Search for"
3167
+ msgstr "جستجو به دنبال"
3168
+
3169
+ #: ../../admin/view/wp-slimstat-reports.php:771
3170
+ #: ../../admin/view/wp-slimstat-reports.php:781
3171
+ msgid "Source"
3172
+ msgstr "منبع"
3173
+
3174
+ #: ../../admin/view/wp-slimstat-reports.php:773
3175
+ msgid "Keywords"
3176
+ msgstr "کلمات کلیدی"
3177
+
3178
+ #: ../../admin/view/wp-slimstat-reports.php:781
3179
+ #, php-format
3180
+ msgid "Filter results where resource equals %s"
3181
+ msgstr "نتایج را فیلتر کن وقتی منبع مساوی‌ست با %s"
3182
+
3183
+ #: ../../admin/view/wp-slimstat-reports.php:782
3184
+ #, fuzzy
3185
+ msgid "Link Details"
3186
+ msgstr "جزئیات"
3187
+
3188
+ #: ../../admin/view/wp-slimstat-reports.php:795
3189
+ msgid "Total Pageviews"
3190
+ msgstr "همه مشاهدات صفحات"
3191
+
3192
+ #: ../../admin/view/wp-slimstat-reports.php:796
3193
+ msgid "DB Size"
3194
+ msgstr "اندازه پایگاه داده"
3195
+
3196
+ #: ../../admin/view/wp-slimstat-reports.php:797
3197
+ msgid "Tracking Active"
3198
+ msgstr "ردگیری فعال"
3199
+
3200
+ #: ../../admin/view/wp-slimstat-reports.php:798
3201
+ msgid "Javascript Mode"
3202
+ msgstr "فعال سازی حالت جاوااسکریپت"
3203
+
3204
+ #: ../../admin/view/wp-slimstat-reports.php:799
3205
+ msgid "Tracking Browser Caps"
3206
+ msgstr "ردگیری قابلیت‌های مرورگر"
3207
+
3208
+ #: ../../admin/view/wp-slimstat-reports.php:800
3209
+ msgid "Auto purge"
3210
+ msgstr "پاک‌سازی خودکار"
3211
+
3212
+ #: ../../admin/view/wp-slimstat-reports.php:800
3213
+ #: ../../admin/wp-slimstat-admin.php:883
3214
+ msgid "No"
3215
+ msgstr "خیر"
3216
+
3217
+ #: ../../admin/view/wp-slimstat-reports.php:801
3218
+ msgid "Oldest pageview"
3219
+ msgstr "قدیمی‌ترین بازدید"
3220
+
3221
+ #: ../../admin/view/wp-slimstat-reports.php:801
3222
+ msgid "No visits"
3223
+ msgstr "بازدیدی نیست"
3224
+
3225
+ #: ../../admin/view/wp-slimstat-reports.php:811
3226
+ #: ../../admin/view/wp-slimstat-reports.php:913
3227
+ #, fuzzy
3228
+ msgid ""
3229
+ "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
3230
+ "the tracking code is executed."
3231
+ msgstr ""
3232
+ "درخواست بارگیری یک پرونده زنگام. هر اجرای ردگیری منجر به ثبت یک بازید میشود."
3233
+
3234
+ #: ../../admin/view/wp-slimstat-reports.php:813
3235
+ msgid "How many pages have been visited on average during the current period."
3236
+ msgstr "چند صفحه به طور میانگین در "
3237
+
3238
+ #: ../../admin/view/wp-slimstat-reports.php:814
3239
+ #, fuzzy
3240
+ msgid "Average Pageviews"
3241
+ msgstr "میان‌گین مشاهده صفحات"
3242
+
3243
+ #: ../../admin/view/wp-slimstat-reports.php:815
3244
+ msgid ""
3245
+ "Visitors who landed on your site after searching for a keyword on Google, "
3246
+ "Yahoo, etc."
3247
+ msgstr "کاربرانی که بعد از جستجو در موتورهای جستجو به سایت شما رسیده‌اند."
3248
+
3249
+ #: ../../admin/view/wp-slimstat-reports.php:816
3250
+ msgid "From Search Results"
3251
+ msgstr "از نتایج جستجو"
3252
+
3253
+ #: ../../admin/view/wp-slimstat-reports.php:817
3254
+ msgid ""
3255
+ "Used to differentiate between multiple requests to download a file from one "
3256
+ "internet address (IP) and requests originating from many distinct addresses"
3257
+ msgstr ""
3258
+ " این برای تشخیص دادن چندین درخواست بارگیری پرونده از یک آی پی ادرس و یا "
3259
+ "درخواست از چند آی پی ادرس مختلف است."
3260
+
3261
+ #: ../../admin/view/wp-slimstat-reports.php:818
3262
+ #: ../../admin/view/wp-slimstat-reports.php:833
3263
+ #: ../../admin/view/wp-slimstat-reports.php:1137
3264
+ #: ../../admin/view/wp-slimstat-reports.php:1141
3265
+ #: ../../admin/view/wp-slimstat-reports.php:1145
3266
+ msgid "Unique IPs"
3267
+ msgstr "آی‌پی‌های یکتا"
3268
+
3269
+ #: ../../admin/view/wp-slimstat-reports.php:819
3270
+ msgid "Last 5 minutes"
3271
+ msgstr "۵ دقیقه اخیر"
3272
+
3273
+ #: ../../admin/view/wp-slimstat-reports.php:820
3274
+ msgid "Last 30 minutes"
3275
+ msgstr "۳۰ دقیقه اخیر"
3276
+
3277
+ #: ../../admin/view/wp-slimstat-reports.php:830
3278
+ msgid ""
3279
+ "A visit is a session of at most 30 minutes. Returning visitors are counted "
3280
+ "multiple times if they perform multiple visits."
3281
+ msgstr ""
3282
+ "هر بازدید یک جلسه است که حداکثر ۳۰ دقیقه میباشد. «بیننده دوباره» چند بار "
3283
+ "شمارش میشود اگر چند بار بازدید کنند."
3284
+
3285
+ #: ../../admin/view/wp-slimstat-reports.php:831
3286
+ msgid "Human visits"
3287
+ msgstr "بازدیدهای انسانی"
3288
+
3289
+ #: ../../admin/view/wp-slimstat-reports.php:832
3290
+ msgid "It includes only traffic generated by human visitors."
3291
+ msgstr "فقط شامل ترافیک انسانی میشود"
3292
+
3293
+ #: ../../admin/view/wp-slimstat-reports.php:834
3294
+ #: ../../admin/view/wp-slimstat-reports.php:925
3295
+ msgid ""
3296
+ "Percentage of single-page visits, i.e. visits in which the person left your "
3297
+ "site from the entrance page."
3298
+ msgstr "درصد بازدید «تک-صفحه» ها؛ یعنی بازدیدی که فقط «صفحه ورودی» بود."
3299
+
3300
+ #: ../../admin/view/wp-slimstat-reports.php:835
3301
+ msgid "Bounce rate"
3302
+ msgstr "میزان وازده گی"
3303
+
3304
+ #: ../../admin/view/wp-slimstat-reports.php:836
3305
+ msgid "Visitors who had previously left a comment on your blog."
3306
+ msgstr "بازدیدکنندگانی که قبلا در تارنامه نظر ثبت کرده‌اند"
3307
+
3308
+ #: ../../admin/view/wp-slimstat-reports.php:837
3309
+ msgid "Known visitors"
3310
+ msgstr "بیننده های آشنا"
3311
+
3312
+ #: ../../admin/view/wp-slimstat-reports.php:838
3313
+ msgid "Human users who visited your site only once."
3314
+ msgstr "کاربرانی که فقط یک بار پایگاه شما را دیده‌اند."
3315
+
3316
+ #: ../../admin/view/wp-slimstat-reports.php:839
3317
+ msgid "New visitors"
3318
+ msgstr "بازدیدکنندگان جدید"
3319
+
3320
+ #: ../../admin/view/wp-slimstat-reports.php:840
3321
+ msgid "Bots"
3322
+ msgstr "ربات‌ها"
3323
+
3324
+ #: ../../admin/view/wp-slimstat-reports.php:841
3325
+ msgid "Pages per visit"
3326
+ msgstr "صفحات در بازدید"
3327
+
3328
+ #: ../../admin/view/wp-slimstat-reports.php:842
3329
+ #: ../../admin/view/wp-slimstat-reports.php:1150
3330
+ msgid "Longest visit"
3331
+ msgstr "طولانی‌ترین مشاهده صفحات"
3332
+
3333
+ #: ../../admin/view/wp-slimstat-reports.php:842
3334
+ msgid "hits"
3335
+ msgstr "مشاهدات"
3336
+
3337
+ #: ../../admin/view/wp-slimstat-reports.php:860
3338
+ msgid "0 - 30 seconds"
3339
+ msgstr "۰ تا ۳۰ ثانیه"
3340
+
3341
+ #: ../../admin/view/wp-slimstat-reports.php:866
3342
+ msgid "31 - 60 seconds"
3343
+ msgstr "۳۱ تا ۶۰ ثانیه"
3344
+
3345
+ #: ../../admin/view/wp-slimstat-reports.php:872
3346
+ msgid "1 - 3 minutes"
3347
+ msgstr "۱ تا ۳ دقیقه"
3348
+
3349
+ #: ../../admin/view/wp-slimstat-reports.php:878
3350
+ msgid "3 - 5 minutes"
3351
+ msgstr "۳ تا ۵ دقیقه"
3352
+
3353
+ #: ../../admin/view/wp-slimstat-reports.php:884
3354
+ msgid "5 - 7 minutes"
3355
+ msgstr "۵ تا ۷ دقیقه"
3356
+
3357
+ #: ../../admin/view/wp-slimstat-reports.php:890
3358
+ msgid "7 - 10 minutes"
3359
+ msgstr "۷ تا ۱۰ دقیقه"
3360
+
3361
+ #: ../../admin/view/wp-slimstat-reports.php:896
3362
+ msgid "More than 10 minutes"
3363
+ msgstr "بیش از ۱۰ دقیقه"
3364
+
3365
+ #: ../../admin/view/wp-slimstat-reports.php:905
3366
+ msgid "Average time on site"
3367
+ msgstr " میان‌گین دیدن از پایگاه"
3368
+
3369
+ #: ../../admin/view/wp-slimstat-reports.php:915
3370
+ msgid ""
3371
+ "A referrer (or referring site) is the site that a visitor previously visited "
3372
+ "before following a link to your site."
3373
+ msgstr ""
3374
+ "ارجاع دهنده (یا پایگاه ارجاع دهنده) که بیننده را به پایگاه شما پیوند زده است."
3375
+
3376
+ #: ../../admin/view/wp-slimstat-reports.php:916
3377
+ msgid "Unique Referrers"
3378
+ msgstr "ارجاع‌دهنده‌های یکتا"
3379
+
3380
+ #: ../../admin/view/wp-slimstat-reports.php:917
3381
+ msgid ""
3382
+ "Visitors who visited the site by typing the URL directly into their browser. "
3383
+ "<em>Direct</em> can also refer to the visitors who clicked on the links from "
3384
+ "their bookmarks/favorites, untagged links within emails, or links from "
3385
+ "documents that don't include tracking variables."
3386
+ msgstr ""
3387
+ "بیننده هایی که نشانی پایگاه را وارد مرورگر کرده اند. البته این میتواند شامل "
3388
+ "کاربرانی که با استفاده از bookmarks/favorites، و یا از پیوندهایی در نامک و "
3389
+ "مدارک که متغییر ردگیری ندارند نیز بشود."
3390
+
3391
+ #: ../../admin/view/wp-slimstat-reports.php:918
3392
+ msgid "Direct Pageviews"
3393
+ msgstr "مشاهده صفحات بی‌واسطه"
3394
+
3395
+ #: ../../admin/view/wp-slimstat-reports.php:919
3396
+ msgid ""
3397
+ "Visitors who came to your site via searches on Google or some other search "
3398
+ "engine."
3399
+ msgstr "کاربرانی که از گوگل یا سایر موتورهای جستجو به پایگاه شما آمده‌اند."
3400
+
3401
+ #: ../../admin/view/wp-slimstat-reports.php:920
3402
+ msgid "From a search result"
3403
+ msgstr "از نتایج جستجو"
3404
+
3405
+ #: ../../admin/view/wp-slimstat-reports.php:921
3406
+ msgid ""
3407
+ "The first page that a user views during a session. This is also known as the "
3408
+ "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
3409
+ "Space,' and they land on your home page, it gets counted (for that visit) as "
3410
+ "a landing page."
3411
+ msgstr ""
3412
+ "اولین صفحه ای که کاربر در جلسه دیدن میکند به «صفحه ورودی» نیز شناخته میشود. "
3413
+ "به عنوان مثال اگر کاربری برای «بستنی» جستجو کند و در صفحه اصلی شما هدایت "
3414
+ "شود، در آن جلسه به عنوان «صفحه ورودی» حساب میشود."
3415
+
3416
+ #: ../../admin/view/wp-slimstat-reports.php:922
3417
+ msgid "Unique Landing Pages"
3418
+ msgstr "صفحات فرودی خاص"
3419
+
3420
+ #: ../../admin/view/wp-slimstat-reports.php:923
3421
+ msgid "Number of single-page visits to your site over the selected period."
3422
+ msgstr "تعداد بازدید «تک-صفحه» به پایگاه شما در بازه زمانی انتخاب شده."
3423
+
3424
+ #: ../../admin/view/wp-slimstat-reports.php:924
3425
+ msgid "Bounce Pages"
3426
+ msgstr "صفحات وازده"
3427
+
3428
+ #: ../../admin/view/wp-slimstat-reports.php:926
3429
+ msgid "New Visitors Rate"
3430
+ msgstr "میزان بازدیدکنندگان جدید"
3431
+
3432
+ #: ../../admin/view/wp-slimstat-reports.php:927
3433
+ msgid ""
3434
+ "Visitors who visited the site in the last 5 minutes coming from a search "
3435
+ "engine."
3436
+ msgstr "کاربرانی که در ۵ دقیقه گذشته از یک موتور جستجو به پایگاه شما آمده‌اند."
3437
+
3438
+ #: ../../admin/view/wp-slimstat-reports.php:928
3439
+ msgid "Currently from search engines"
3440
+ msgstr "هم‌اکنون از موتورهای جستجو"
3441
+
3442
+ #: ../../admin/view/wp-slimstat-reports.php:996
3443
+ msgid "Number of pages in your site included in Google's index."
3444
+ msgstr "تعداد صفحاتی که در فهرست گوگل شمرده شده است."
3445
+
3446
+ #: ../../admin/view/wp-slimstat-reports.php:997
3447
+ msgid "Google Index"
3448
+ msgstr "اندیس گوگل"
3449
+
3450
+ #: ../../admin/view/wp-slimstat-reports.php:998
3451
+ msgid "Number of pages, according to Google, that link back to your site."
3452
+ msgstr "تعداد صفحات که به گفته گوگل به پایگاه پیوند میدهند. "
3453
+
3454
+ #: ../../admin/view/wp-slimstat-reports.php:999
3455
+ msgid "Google Backlinks"
3456
+ msgstr ""
3457
+
3458
+ #: ../../admin/view/wp-slimstat-reports.php:1000
3459
+ msgid ""
3460
+ "How many times the Facebook Like button has been approximately clicked on "
3461
+ "your site."
3462
+ msgstr "چند بار Facebook Like در پایگاه شما کلیک شده است."
3463
+
3464
+ #: ../../admin/view/wp-slimstat-reports.php:1001
3465
+ msgid "Facebook Likes"
3466
+ msgstr "لایک های فیسبوک"
3467
+
3468
+ #: ../../admin/view/wp-slimstat-reports.php:1002
3469
+ msgid ""
3470
+ "How many times your site has been shared by someone on the social network."
3471
+ msgstr "چند بار پایگاه شما در شبکه های اجتماعی بخش شده است"
3472
+
3473
+ #: ../../admin/view/wp-slimstat-reports.php:1003
3474
+ msgid "Facebook Shares"
3475
+ msgstr "بخش های فیسبوک"
3476
+
3477
+ #: ../../admin/view/wp-slimstat-reports.php:1004
3478
+ msgid "How many times links to your website have been clicked on Facebook."
3479
+ msgstr "چند بار پایگاه شما در Facebook فشار داده شده است."
3480
+
3481
+ #: ../../admin/view/wp-slimstat-reports.php:1005
3482
+ msgid "Facebook Clicks"
3483
+ msgstr "Facebook Clicks"
3484
+
3485
+ #: ../../admin/view/wp-slimstat-reports.php:1006
3486
+ msgid ""
3487
+ "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3488
+ "traffic data."
3489
+ msgstr ""
3490
+ "شرکت Alexa بخشی از Amazon.com میباشد که گزارش پایگاه های تبلیغاتی را انجام "
3491
+ "میدهد."
3492
+
3493
+ #: ../../admin/view/wp-slimstat-reports.php:1007
3494
+ msgid "Alexa World Rank"
3495
+ msgstr ""
3496
+
3497
+ #: ../../admin/view/wp-slimstat-reports.php:1008
3498
+ msgid "Alexa Country Rank"
3499
+ msgstr ""
3500
+
3501
+ #: ../../admin/view/wp-slimstat-reports.php:1009
3502
+ msgid "Alexa Popularity"
3503
+ msgstr ""
3504
+
3505
+ # Unknown
3506
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3507
+ msgid "c-xx"
3508
+ msgstr "Unknown"
3509
+
3510
+ # Afghanistan
3511
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3512
+ msgid "c-af"
3513
+ msgstr "Afghanistan"
3514
+
3515
+ # Åland Islands
3516
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3517
+ msgid "c-ax"
3518
+ msgstr "Aland Islands"
3519
+
3520
+ # Albania
3521
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3522
+ msgid "c-al"
3523
+ msgstr "Albania"
3524
+
3525
+ # Algeria
3526
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3527
+ msgid "c-dz"
3528
+ msgstr "Algeria"
3529
+
3530
+ # Andorra
3531
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3532
+ msgid "c-ad"
3533
+ msgstr "Andorra"
3534
+
3535
+ # Angola
3536
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3537
+ msgid "c-ao"
3538
+ msgstr "Angola"
3539
+
3540
+ # Anguilla
3541
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3542
+ msgid "c-ai"
3543
+ msgstr "Anguilla"
3544
+
3545
+ # Antigua and Barbuda
3546
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3547
+ msgid "c-ag"
3548
+ msgstr "Antigua and Barbuda"
3549
+
3550
+ # Argentina
3551
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3552
+ msgid "c-ar"
3553
+ msgstr "Argentina"
3554
+
3555
+ # Armenia
3556
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3557
+ msgid "c-am"
3558
+ msgstr "Armenia"
3559
+
3560
+ # Aruba
3561
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3562
+ msgid "c-aw"
3563
+ msgstr "Aruba"
3564
+
3565
+ # Australia
3566
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3567
+ msgid "c-au"
3568
+ msgstr "Australia"
3569
+
3570
+ # Austria
3571
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3572
+ msgid "c-at"
3573
+ msgstr "Austria"
3574
+
3575
+ # Azerbaijan
3576
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3577
+ msgid "c-az"
3578
+ msgstr "Azerbaijan"
3579
+
3580
+ # Bahamas
3581
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3582
+ msgid "c-bs"
3583
+ msgstr "Bahamas"
3584
+
3585
+ # Bahrain
3586
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3587
+ msgid "c-bh"
3588
+ msgstr "Bahrain"
3589
+
3590
+ # Bangladesh
3591
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3592
+ msgid "c-bd"
3593
+ msgstr "Bangladesh"
3594
+
3595
+ # Barbados
3596
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3597
+ msgid "c-bb"
3598
+ msgstr "Barbados"
3599
+
3600
+ # Belarus
3601
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3602
+ msgid "c-by"
3603
+ msgstr "Belarus"
3604
+
3605
+ # Belgium
3606
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3607
+ msgid "c-be"
3608
+ msgstr "Belgium"
3609
+
3610
+ # Belize
3611
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3612
+ msgid "c-bz"
3613
+ msgstr "Belize"
3614
+
3615
+ # Benin
3616
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3617
+ msgid "c-bj"
3618
+ msgstr "Benin"
3619
+
3620
+ # Bermuda
3621
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3622
+ msgid "c-bm"
3623
+ msgstr "Bermuda"
3624
+
3625
+ # Bhutan
3626
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3627
+ msgid "c-bt"
3628
+ msgstr "Bhutan"
3629
+
3630
+ # Bolivia
3631
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3632
+ msgid "c-bo"
3633
+ msgstr "Bolivia"
3634
+
3635
+ # Bosnia and Herzegovina
3636
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3637
+ msgid "c-ba"
3638
+ msgstr "Bosnia and Herzegovina"
3639
+
3640
+ # Botswana
3641
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3642
+ msgid "c-bw"
3643
+ msgstr "Botswana"
3644
+
3645
+ # Brazil
3646
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3647
+ msgid "c-br"
3648
+ msgstr "Brazil"
3649
+
3650
+ # Brunei Darussalam
3651
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3652
+ msgid "c-bn"
3653
+ msgstr "Brunei Darussalam"
3654
+
3655
+ # Bulgaria
3656
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3657
+ msgid "c-bg"
3658
+ msgstr "Bulgaria"
3659
+
3660
+ # Burkina Faso
3661
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3662
+ msgid "c-bf"
3663
+ msgstr "Burkina Faso"
3664
+
3665
+ # Burundi
3666
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3667
+ msgid "c-bi"
3668
+ msgstr "Burundi"
3669
+
3670
+ # Cambodia
3671
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3672
+ msgid "c-kh"
3673
+ msgstr "Cambodia"
3674
+
3675
+ # Cameroon
3676
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3677
+ msgid "c-cm"
3678
+ msgstr "Cameroon"
3679
+
3680
+ # Canada
3681
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3682
+ msgid "c-ca"
3683
+ msgstr "Canada"
3684
+
3685
+ # Cape Verde
3686
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3687
+ msgid "c-cv"
3688
+ msgstr "Cape Verde"
3689
+
3690
+ # Cayman Islands
3691
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3692
+ msgid "c-ky"
3693
+ msgstr "Cayman Islands"
3694
+
3695
+ # Central African Republic
3696
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3697
+ msgid "c-cf"
3698
+ msgstr "Central African Republic"
3699
+
3700
+ # Chad
3701
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3702
+ msgid "c-td"
3703
+ msgstr "Chad"
3704
+
3705
+ # Chile
3706
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3707
+ msgid "c-cl"
3708
+ msgstr "Chile"
3709
+
3710
+ # China
3711
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3712
+ msgid "c-cn"
3713
+ msgstr "China"
3714
+
3715
+ # Colombia
3716
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3717
+ msgid "c-co"
3718
+ msgstr "Colombia"
3719
+
3720
+ # Comoros
3721
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3722
+ msgid "c-km"
3723
+ msgstr "Comoros"
3724
+
3725
+ # Congo
3726
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3727
+ msgid "c-cg"
3728
+ msgstr "Congo"
3729
+
3730
+ # The Democratic Republic of the Congo
3731
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3732
+ msgid "c-cd"
3733
+ msgstr "The Democratic Republic of the Congo"
3734
+
3735
+ # Costa Rica
3736
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3737
+ msgid "c-cr"
3738
+ msgstr "Costa Rica"
3739
+
3740
+ # Côte d'Ivoire
3741
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3742
+ msgid "c-ci"
3743
+ msgstr "Côte d'Ivoire"
3744
+
3745
+ # Croatia
3746
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3747
+ msgid "c-hr"
3748
+ msgstr "Croatia"
3749
+
3750
+ # Cuba
3751
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3752
+ msgid "c-cu"
3753
+ msgstr "Cuba"
3754
+
3755
+ # Cyprus
3756
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3757
+ msgid "c-cy"
3758
+ msgstr "Cyprus"
3759
+
3760
+ # Czech Republic
3761
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3762
+ msgid "c-cz"
3763
+ msgstr "Czech Republic"
3764
+
3765
+ # Denmark
3766
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3767
+ msgid "c-dk"
3768
+ msgstr "Denmark"
3769
+
3770
+ # Djibouti
3771
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3772
+ msgid "c-dj"
3773
+ msgstr "Djibouti"
3774
+
3775
+ # Dominica
3776
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3777
+ msgid "c-dm"
3778
+ msgstr "Dominica"
3779
+
3780
+ # Dominican Republic
3781
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3782
+ msgid "c-do"
3783
+ msgstr "Dominican Republic"
3784
+
3785
+ # Ecuador
3786
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3787
+ msgid "c-ec"
3788
+ msgstr "Ecuador"
3789
+
3790
+ # Egypt
3791
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3792
+ msgid "c-eg"
3793
+ msgstr "Egypt"
3794
+
3795
+ # El Salvador
3796
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3797
+ msgid "c-sv"
3798
+ msgstr "El Salvador"
3799
+
3800
+ # Equatorial Guinea
3801
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3802
+ msgid "c-gq"
3803
+ msgstr "Equatorial Guinea"
3804
+
3805
+ # Eritrea
3806
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3807
+ msgid "c-er"
3808
+ msgstr "Eritrea"
3809
+
3810
+ # Estonia
3811
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3812
+ msgid "c-ee"
3813
+ msgstr "Estonia"
3814
+
3815
+ # Ethiopia
3816
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3817
+ msgid "c-et"
3818
+ msgstr "Ethiopia"
3819
+
3820
+ # Faroe Islands
3821
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3822
+ msgid "c-fo"
3823
+ msgstr "Faroe Islands"
3824
+
3825
+ # Falkland Islands (Malvinas)
3826
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3827
+ msgid "c-fk"
3828
+ msgstr "Falkland Islands (Malvinas)"
3829
+
3830
+ # Fiji
3831
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3832
+ msgid "c-fj"
3833
+ msgstr "Fiji"
3834
+
3835
+ # Finland
3836
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3837
+ msgid "c-fi"
3838
+ msgstr "Finland"
3839
+
3840
+ # France
3841
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3842
+ msgid "c-fr"
3843
+ msgstr "France"
3844
+
3845
+ # French Guiana
3846
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3847
+ msgid "c-gf"
3848
+ msgstr "French Guiana"
3849
+
3850
+ # Gabon
3851
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3852
+ msgid "c-ga"
3853
+ msgstr "Gabon"
3854
+
3855
+ # Gambia
3856
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3857
+ msgid "c-gm"
3858
+ msgstr "Gambia"
3859
+
3860
+ # Georgia
3861
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3862
+ msgid "c-ge"
3863
+ msgstr "Georgia"
3864
+
3865
+ # Germany
3866
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3867
+ msgid "c-de"
3868
+ msgstr "Germany"
3869
+
3870
+ # Ghana
3871
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3872
+ msgid "c-gh"
3873
+ msgstr "Ghana"
3874
+
3875
+ # Greece
3876
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3877
+ msgid "c-gr"
3878
+ msgstr "Greece"
3879
+
3880
+ # Greenland
3881
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3882
+ msgid "c-gl"
3883
+ msgstr "Greenland"
3884
+
3885
+ # Grenada
3886
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3887
+ msgid "c-gd"
3888
+ msgstr "Grenada"
3889
+
3890
+ # Guadeloupe
3891
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3892
+ msgid "c-gp"
3893
+ msgstr "Guadeloupe"
3894
+
3895
+ # Guatemala
3896
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3897
+ msgid "c-gt"
3898
+ msgstr "Guatemala"
3899
+
3900
+ # Guinea
3901
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3902
+ msgid "c-gn"
3903
+ msgstr "Guinea"
3904
+
3905
+ # Guinea-Bissau
3906
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3907
+ msgid "c-gw"
3908
+ msgstr "Guinea-Bissau"
3909
+
3910
+ # Guyana
3911
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3912
+ msgid "c-gy"
3913
+ msgstr "Guyana"
3914
+
3915
+ # Haiti
3916
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3917
+ msgid "c-ht"
3918
+ msgstr "Haiti"
3919
+
3920
+ # Honduras
3921
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3922
+ msgid "c-hn"
3923
+ msgstr "Honduras"
3924
+
3925
+ # Hong Kong
3926
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3927
+ msgid "c-hk"
3928
+ msgstr "Hong Kong"
3929
+
3930
+ # Hungary
3931
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3932
+ msgid "c-hu"
3933
+ msgstr "Hungary"
3934
+
3935
+ # Iceland
3936
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3937
+ msgid "c-is"
3938
+ msgstr "Iceland"
3939
+
3940
+ # India
3941
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3942
+ msgid "c-in"
3943
+ msgstr "India"
3944
+
3945
+ # Indonesia
3946
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3947
+ msgid "c-id"
3948
+ msgstr "Indonesia"
3949
+
3950
+ # Islamic Republic of Iran
3951
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3952
+ msgid "c-ir"
3953
+ msgstr "Islamic Republic of Iran"
3954
+
3955
+ # Iraq
3956
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3957
+ msgid "c-iq"
3958
+ msgstr "Iraq"
3959
+
3960
+ # Ireland
3961
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3962
+ msgid "c-ie"
3963
+ msgstr "Ireland"
3964
+
3965
+ # Israel
3966
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3967
+ msgid "c-il"
3968
+ msgstr "Israel"
3969
+
3970
+ # Italy
3971
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3972
+ msgid "c-it"
3973
+ msgstr "Italy"
3974
+
3975
+ # Jamaica
3976
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3977
+ msgid "c-jm"
3978
+ msgstr "Jamaica"
3979
+
3980
+ # Japan
3981
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3982
+ msgid "c-jp"
3983
+ msgstr "Japan"
3984
+
3985
+ # Jordan
3986
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3987
+ msgid "c-jo"
3988
+ msgstr "Jordan"
3989
+
3990
+ # Kazakhstan
3991
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3992
+ msgid "c-kz"
3993
+ msgstr "Kazakhstan"
3994
+
3995
+ # Kenya
3996
+ #: ../../admin/view/wp-slimstat-reports.php:1016
3997
+ msgid "c-ke"
3998
+ msgstr "Kenya"
3999
+
4000
+ # Nauru
4001
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4002
+ msgid "c-nr"
4003
+ msgstr "Nauru"
4004
+
4005
+ # Democratic People's Republic of Korea
4006
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4007
+ msgid "c-kp"
4008
+ msgstr "Democratic People's Republic of Korea"
4009
+
4010
+ # Republic of Korea
4011
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4012
+ msgid "c-kr"
4013
+ msgstr "Republic of Korea"
4014
+
4015
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4016
+ msgid "c-kv"
4017
+ msgstr ""
4018
+
4019
+ # Kuwait
4020
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4021
+ msgid "c-kw"
4022
+ msgstr "Kuwait"
4023
+
4024
+ # Kyrgyzstan
4025
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4026
+ msgid "c-kg"
4027
+ msgstr "Kyrgyzstan"
4028
+
4029
+ # Lao People's Democratic Republic
4030
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4031
+ msgid "c-la"
4032
+ msgstr "Lao People's Democratic Republic"
4033
+
4034
+ # Latvia
4035
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4036
+ msgid "c-lv"
4037
+ msgstr "Latvia"
4038
+
4039
+ # Lebanon
4040
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4041
+ msgid "c-lb"
4042
+ msgstr "Lebanon"
4043
+
4044
+ # Lesotho
4045
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4046
+ msgid "c-ls"
4047
+ msgstr "Lesotho"
4048
+
4049
+ # Liberia
4050
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4051
+ msgid "c-lr"
4052
+ msgstr "Liberia"
4053
+
4054
+ # Libyan Arab Jamahiriya
4055
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4056
+ msgid "c-ly"
4057
+ msgstr "Libyan Arab Jamahiriya"
4058
+
4059
+ # Liechtenstein
4060
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4061
+ msgid "c-li"
4062
+ msgstr "Liechtenstein"
4063
+
4064
+ # Lithuania
4065
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4066
+ msgid "c-lt"
4067
+ msgstr "Lithuania"
4068
+
4069
+ # Luxembourg
4070
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4071
+ msgid "c-lu"
4072
+ msgstr "Luxembourg"
4073
+
4074
+ # The Former Yugoslav Republic of Macedonia
4075
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4076
+ msgid "c-mk"
4077
+ msgstr "The Former Yugoslav Republic of Macedonia"
4078
+
4079
+ # Madagascar
4080
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4081
+ msgid "c-mg"
4082
+ msgstr "Madagascar"
4083
+
4084
+ # Malawi
4085
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4086
+ msgid "c-mw"
4087
+ msgstr "Malawi"
4088
+
4089
+ # Malaysia
4090
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4091
+ msgid "c-my"
4092
+ msgstr "Malaysia"
4093
+
4094
+ # Mali
4095
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4096
+ msgid "c-ml"
4097
+ msgstr "Mali"
4098
+
4099
+ # Malta
4100
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4101
+ msgid "c-mt"
4102
+ msgstr "Malta"
4103
+
4104
+ # Martinique
4105
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4106
+ msgid "c-mq"
4107
+ msgstr "Martinique"
4108
+
4109
+ # Mauritania
4110
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4111
+ msgid "c-mr"
4112
+ msgstr "Mauritania"
4113
+
4114
+ # Mauritius
4115
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4116
+ msgid "c-mu"
4117
+ msgstr "Mauritius"
4118
+
4119
+ # Mexico
4120
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4121
+ msgid "c-mx"
4122
+ msgstr "Mexico"
4123
+
4124
+ # Moldova
4125
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4126
+ msgid "c-md"
4127
+ msgstr "Moldova"
4128
+
4129
+ # Mongolia
4130
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4131
+ msgid "c-mn"
4132
+ msgstr "Mongolia"
4133
+
4134
+ # Montenegro
4135
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4136
+ msgid "c-me"
4137
+ msgstr "Montenegro"
4138
+
4139
+ # Montserrat
4140
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4141
+ msgid "c-ms"
4142
+ msgstr "Montserrat"
4143
+
4144
+ # Morocco
4145
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4146
+ msgid "c-ma"
4147
+ msgstr "Morocco"
4148
+
4149
+ # Mozambique
4150
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4151
+ msgid "c-mz"
4152
+ msgstr "Mozambique"
4153
+
4154
+ # Myanmar
4155
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4156
+ msgid "c-mm"
4157
+ msgstr "Myanmar"
4158
+
4159
+ # Namibia
4160
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4161
+ msgid "c-na"
4162
+ msgstr "Namibia"
4163
+
4164
+ # Nepal
4165
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4166
+ msgid "c-np"
4167
+ msgstr "Nepal"
4168
+
4169
+ # Netherlands
4170
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4171
+ msgid "c-nl"
4172
+ msgstr "Netherlands"
4173
+
4174
+ # New Caledonia
4175
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4176
+ msgid "c-nc"
4177
+ msgstr "New Caledonia"
4178
+
4179
+ # New Zealand
4180
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4181
+ msgid "c-nz"
4182
+ msgstr "New Zealand"
4183
+
4184
+ # Nicaragua
4185
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4186
+ msgid "c-ni"
4187
+ msgstr "Nicaragua"
4188
+
4189
+ # Niger
4190
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4191
+ msgid "c-ne"
4192
+ msgstr "Niger"
4193
+
4194
+ # Nigeria
4195
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4196
+ msgid "c-ng"
4197
+ msgstr "Nigeria"
4198
+
4199
+ # Norway
4200
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4201
+ msgid "c-no"
4202
+ msgstr "Norway"
4203
+
4204
+ # Oman
4205
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4206
+ msgid "c-om"
4207
+ msgstr "Oman"
4208
+
4209
+ # Pakistan
4210
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4211
+ msgid "c-pk"
4212
+ msgstr "Pakistan"
4213
+
4214
+ # Palau
4215
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4216
+ msgid "c-pw"
4217
+ msgstr "Palau"
4218
+
4219
+ # Occupied Palestinian Territory
4220
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4221
+ msgid "c-ps"
4222
+ msgstr "Occupied Palestinian Territory"
4223
+
4224
+ # Panama
4225
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4226
+ msgid "c-pa"
4227
+ msgstr "Panama"
4228
+
4229
+ # Papua New Guinea
4230
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4231
+ msgid "c-pg"
4232
+ msgstr "Papua New Guinea"
4233
+
4234
+ # Paraguay
4235
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4236
+ msgid "c-py"
4237
+ msgstr "Paraguay"
4238
+
4239
+ # Peru
4240
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4241
+ msgid "c-pe"
4242
+ msgstr "Peru"
4243
+
4244
+ # Philippines
4245
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4246
+ msgid "c-ph"
4247
+ msgstr "Philippines"
4248
+
4249
+ # Poland
4250
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4251
+ msgid "c-pl"
4252
+ msgstr "Poland"
4253
+
4254
+ # Portugal
4255
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4256
+ msgid "c-pt"
4257
+ msgstr "Portugal"
4258
+
4259
+ # Puerto Rico
4260
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4261
+ msgid "c-pr"
4262
+ msgstr "Puerto Rico"
4263
+
4264
+ # Qatar
4265
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4266
+ msgid "c-qa"
4267
+ msgstr "Qatar"
4268
+
4269
+ # Réunion
4270
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4271
+ msgid "c-re"
4272
+ msgstr "Réunion"
4273
+
4274
+ # Romania
4275
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4276
+ msgid "c-ro"
4277
+ msgstr "Romania"
4278
+
4279
+ # Russian Federation
4280
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4281
+ msgid "c-ru"
4282
+ msgstr "Russian Federation"
4283
+
4284
+ # Rwanda
4285
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4286
+ msgid "c-rw"
4287
+ msgstr "Rwanda"
4288
+
4289
+ # Saint Kitts and Nevis
4290
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4291
+ msgid "c-kn"
4292
+ msgstr "Saint Kitts and Nevis"
4293
+
4294
+ # Saint Lucia
4295
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4296
+ msgid "c-lc"
4297
+ msgstr "Saint Lucia"
4298
+
4299
+ # Saint Martin
4300
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4301
+ msgid "c-mf"
4302
+ msgstr "Saint Martin"
4303
+
4304
+ # Saint Vincent and the Grenadines
4305
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4306
+ msgid "c-vc"
4307
+ msgstr "Saint Vincent and the Grenadines"
4308
+
4309
+ # Samoa
4310
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4311
+ msgid "c-ws"
4312
+ msgstr "Samoa"
4313
+
4314
+ # Sao Tome and Principe
4315
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4316
+ msgid "c-st"
4317
+ msgstr "Sao Tome and Principe"
4318
+
4319
+ # Saudi Arabia
4320
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4321
+ msgid "c-sa"
4322
+ msgstr "Saudi Arabia"
4323
+
4324
+ # Senegal
4325
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4326
+ msgid "c-sn"
4327
+ msgstr "Senegal"
4328
+
4329
+ # Serbia
4330
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4331
+ msgid "c-rs"
4332
+ msgstr "Serbia"
4333
+
4334
+ # Sierra Leone
4335
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4336
+ msgid "c-sl"
4337
+ msgstr "Sierra Leone"
4338
+
4339
+ # Singapore
4340
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4341
+ msgid "c-sg"
4342
+ msgstr "Singapore"
4343
+
4344
+ # Slovakia
4345
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4346
+ msgid "c-sk"
4347
+ msgstr "Slovakia"
4348
+
4349
+ # Slovenia
4350
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4351
+ msgid "c-si"
4352
+ msgstr "Slovenia"
4353
+
4354
+ # Solomon Islands
4355
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4356
+ msgid "c-sb"
4357
+ msgstr "Solomon Islands"
4358
+
4359
+ # Somalia
4360
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4361
+ msgid "c-so"
4362
+ msgstr "Somalia"
4363
+
4364
+ # South Africa
4365
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4366
+ msgid "c-za"
4367
+ msgstr "South Africa"
4368
+
4369
+ # South Georgia and the South Sandwich Islands
4370
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4371
+ msgid "c-gs"
4372
+ msgstr "South Georgia and the South Sandwich Islands"
4373
+
4374
+ # Spain
4375
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4376
+ msgid "c-es"
4377
+ msgstr "Spain"
4378
+
4379
+ # Sri Lanka
4380
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4381
+ msgid "c-lk"
4382
+ msgstr "Sri Lanka"
4383
+
4384
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4385
+ msgid "c-sc"
4386
+ msgstr "Seychelles"
4387
+
4388
+ # Sudan
4389
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4390
+ msgid "c-sd"
4391
+ msgstr "Sudan"
4392
+
4393
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4394
+ msgid "c-ss"
4395
+ msgstr ""
4396
+
4397
+ # Suriname
4398
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4399
+ msgid "c-sr"
4400
+ msgstr "Suriname"
4401
+
4402
+ # Svalbard and Jan Mayen
4403
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4404
+ msgid "c-sj"
4405
+ msgstr "Svalbard and Jan Mayen"
4406
+
4407
+ # Swaziland
4408
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4409
+ msgid "c-sz"
4410
+ msgstr "Swaziland"
4411
+
4412
+ # Sweden
4413
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4414
+ msgid "c-se"
4415
+ msgstr "Sweden"
4416
+
4417
+ # Switzerland
4418
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4419
+ msgid "c-ch"
4420
+ msgstr "Switzerland"
4421
+
4422
+ # Syrian Arab Republic
4423
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4424
+ msgid "c-sy"
4425
+ msgstr "Syrian Arab Republic"
4426
+
4427
+ # Taiwan, Province of China
4428
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4429
+ msgid "c-tw"
4430
+ msgstr "Taiwan"
4431
+
4432
+ # Tajikistan
4433
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4434
+ msgid "c-tj"
4435
+ msgstr "Tajikistan"
4436
+
4437
+ # United Republic of Tanzania
4438
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4439
+ msgid "c-tz"
4440
+ msgstr "United Republic of Tanzania"
4441
+
4442
+ # Thailand
4443
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4444
+ msgid "c-th"
4445
+ msgstr "Thailand"
4446
+
4447
+ # Timor-Leste
4448
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4449
+ msgid "c-tl"
4450
+ msgstr "Timor-Leste"
4451
+
4452
+ # Togo
4453
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4454
+ msgid "c-tg"
4455
+ msgstr "Togo"
4456
+
4457
+ # Tonga
4458
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4459
+ msgid "c-to"
4460
+ msgstr "Tonga"
4461
+
4462
+ # Trinidad and Tobago
4463
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4464
+ msgid "c-tt"
4465
+ msgstr "Trinidad and Tobago"
4466
+
4467
+ # Tunisia
4468
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4469
+ msgid "c-tn"
4470
+ msgstr "Tunisia"
4471
+
4472
+ # Turkey
4473
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4474
+ msgid "c-tr"
4475
+ msgstr "Turkey"
4476
+
4477
+ # Turkmenistan
4478
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4479
+ msgid "c-tm"
4480
+ msgstr "Turkmenistan"
4481
+
4482
+ # Turks and Caicos Islands
4483
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4484
+ msgid "c-tc"
4485
+ msgstr "Turks and Caicos Islands"
4486
+
4487
+ # Uganda
4488
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4489
+ msgid "c-ug"
4490
+ msgstr "Uganda"
4491
+
4492
+ # Ukraine
4493
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4494
+ msgid "c-ua"
4495
+ msgstr "Ukraine"
4496
+
4497
+ # United Arab Emirates
4498
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4499
+ msgid "c-ae"
4500
+ msgstr "United Arab Emirates"
4501
+
4502
+ # United Kingdom
4503
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4504
+ msgid "c-gb"
4505
+ msgstr "United Kingdom"
4506
+
4507
+ # United States
4508
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4509
+ msgid "c-us"
4510
+ msgstr "United States"
4511
+
4512
+ # Uruguay
4513
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4514
+ msgid "c-uy"
4515
+ msgstr "Uruguay"
4516
+
4517
+ # Uzbekistan
4518
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4519
+ msgid "c-uz"
4520
+ msgstr "Uzbekistan"
4521
+
4522
+ # Vanuatu
4523
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4524
+ msgid "c-vu"
4525
+ msgstr "Vanuatu"
4526
+
4527
+ # Venezuela
4528
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4529
+ msgid "c-ve"
4530
+ msgstr "Venezuela"
4531
+
4532
+ # Viet Nam
4533
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4534
+ msgid "c-vn"
4535
+ msgstr "Viet Nam"
4536
+
4537
+ # British Virgin Islands
4538
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4539
+ msgid "c-vg"
4540
+ msgstr "British Virgin Islands"
4541
+
4542
+ # U.S. Virgin Islands
4543
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4544
+ msgid "c-vi"
4545
+ msgstr "U.S. Virgin Islands"
4546
+
4547
+ # Western Sahara
4548
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4549
+ msgid "c-eh"
4550
+ msgstr "Western Sahara"
4551
+
4552
+ # Yemen
4553
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4554
+ msgid "c-ye"
4555
+ msgstr "Yemen"
4556
+
4557
+ # Zambia
4558
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4559
+ msgid "c-zm"
4560
+ msgstr "Zambia"
4561
+
4562
+ # Zimbabwe
4563
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4564
+ msgid "c-zw"
4565
+ msgstr "Zimbabwe"
4566
+
4567
+ # Guernsey
4568
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4569
+ msgid "c-gg"
4570
+ msgstr "Guernsey"
4571
+
4572
+ # Jersey
4573
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4574
+ msgid "c-je"
4575
+ msgstr "Jersey"
4576
+
4577
+ # Isle of Man
4578
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4579
+ msgid "c-im"
4580
+ msgstr "Isle of Man"
4581
+
4582
+ # Maldives
4583
+ #: ../../admin/view/wp-slimstat-reports.php:1016
4584
+ msgid "c-mv"
4585
+ msgstr "Maldives"
4586
+
4587
+ #: ../../admin/view/wp-slimstat-reports.php:1017
4588
+ msgid "c-eu"
4589
+ msgstr ""
4590
+
4591
+ #: ../../admin/view/wp-slimstat-reports.php:1106
4592
+ msgid ""
4593
+ "This value includes not only posts, but also custom post types, regardless "
4594
+ "of their status"
4595
+ msgstr "این مقدار شامل همه ارسال ها میشود"
4596
+
4597
+ #: ../../admin/view/wp-slimstat-reports.php:1107
4598
+ msgid "Content Items"
4599
+ msgstr " محتوا موردها"
4600
+
4601
+ #: ../../admin/view/wp-slimstat-reports.php:1108
4602
+ msgid "Total Comments"
4603
+ msgstr "همه نظرها"
4604
+
4605
+ #: ../../admin/view/wp-slimstat-reports.php:1109
4606
+ msgid "Pingbacks"
4607
+ msgstr ""
4608
+
4609
+ #: ../../admin/view/wp-slimstat-reports.php:1110
4610
+ msgid "Trackbacks"
4611
+ msgstr ""
4612
+
4613
+ #: ../../admin/view/wp-slimstat-reports.php:1111
4614
+ msgid "Avg Comments Per Post"
4615
+ msgstr "میانگین نظر برای هر ارسال"
4616
+
4617
+ #: ../../admin/view/wp-slimstat-reports.php:1112
4618
+ msgid "Avg Posts Per Day"
4619
+ msgstr "میانگین ارسال در روز"
4620
+
4621
+ #: ../../admin/view/wp-slimstat-reports.php:1113
4622
+ msgid "Avg Server Latency"
4623
+ msgstr ""
4624
+
4625
+ #: ../../admin/view/wp-slimstat-reports.php:1114
4626
+ #, fuzzy
4627
+ msgid "Avg Page Load Time"
4628
+ msgstr "میان‌گین مشاهده صفحات"
4629
+
4630
+ #: ../../admin/view/wp-slimstat-reports.php:1141
4631
+ msgid "Visits"
4632
+ msgstr "بازدیدها"
4633
+
4634
+ #: ../../admin/view/wp-slimstat-reports.php:1145
4635
+ msgid "Domains"
4636
+ msgstr "دامنه‌ها"
4637
+
4638
+ #: ../../admin/view/wp-slimstat-reports.php:1150
4639
+ msgid "Avg Pageviews"
4640
+ msgstr "میان‌گین مشاهده صفحات"
4641
+
4642
+ #: ../../admin/wp-slimstat-admin.php:504 ../../admin/wp-slimstat-admin.php:516
4643
+ #: ../../admin/wp-slimstat-admin.php:519
4644
+ msgid "SlimStat"
4645
+ msgstr "SlimStat"
4646
+
4647
+ #: ../../admin/wp-slimstat-admin.php:600
4648
+ msgid "Pageviews in the last 365 days"
4649
+ msgstr ""
4650
+
4651
+ #: ../../admin/wp-slimstat-admin.php:628
4652
+ msgid "Show on screen"
4653
+ msgstr "روی صفحه نشان بده"
4654
+
4655
+ #: ../../admin/wp-slimstat-admin.php:656
4656
+ msgid "Hide this notice"
4657
+ msgstr ""
4658
+
4659
+ #: ../../admin/wp-slimstat-admin.php:698
4660
+ msgid "Already saved"
4661
+ msgstr ""
4662
+
4663
+ #: ../../admin/wp-slimstat-admin.php:706
4664
+ msgid "Saved"
4665
+ msgstr ""
4666
+
4667
+ #: ../../admin/wp-slimstat-admin.php:725
4668
+ #, fuzzy
4669
+ msgid "Delete this filter"
4670
+ msgstr "حذف بازدید‌ها وقتی"
4671
+
4672
+ #: ../../admin/wp-slimstat-admin.php:759
4673
+ msgid "There was an error updating the following options:"
4674
+ msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
4675
+
4676
+ #: ../../admin/wp-slimstat-admin.php:762
4677
+ #, fuzzy
4678
+ msgid "Your changes have been saved."
4679
+ msgstr "تنظیمات شما با موفقیت به روز شد."
4680
+
4681
+ #: ../../admin/wp-slimstat-admin.php:785
4682
+ msgid "Save Changes"
4683
+ msgstr "ذخیره‌ی تغییرات"
4684
+
4685
+ #: ../../admin/wp-slimstat-admin.php:801
4686
+ msgid "Definitions"
4687
+ msgstr "تعاریف"
4688
+
4689
+ #: ../../admin/wp-slimstat-admin.php:804
4690
+ msgid "Pageview"
4691
+ msgstr "بازدید"
4692
+
4693
+ #: ../../admin/wp-slimstat-admin.php:804
4694
+ #, fuzzy
4695
+ msgid ""
4696
+ "A request to load a single HTML file (\"page\"). This should be contrasted "
4697
+ "with a \"hit\", which refers to a request for any file from a web server. "
4698
+ "Slimstat logs a pageview each time the tracking code is executed"
4699
+ msgstr ""
4700
+ "درخواست بارگیری یک پرونده HTML یا \"page\" با هر درخواست دیگر از دامنه یا "
4701
+ "\"hit\" تفاوت دارد. این برنامه هر بازدید را بعد از اجرای برنامه ردگیری ثبت "
4702
+ "میکند. "
4703
+
4704
+ #: ../../admin/wp-slimstat-admin.php:805
4705
+ msgid "(Human) Visit"
4706
+ msgstr "بیننده (انسانی)"
4707
+
4708
+ #: ../../admin/wp-slimstat-admin.php:805
4709
+ msgid ""
4710
+ "A period of interaction between a visitor's browser and your website, ending "
4711
+ "when the browser is closed or when the user has been inactive on that site "
4712
+ "for 30 minutes"
4713
+ msgstr ""
4714
+ "تراکنش بین مرورگر ردگیری و پایگاه شما به پایان رسید وقتی که مرورگر بسته شده "
4715
+ "و یا کاربر به مدت سی دقیقه غیر فعال شده است."
4716
+
4717
+ #: ../../admin/wp-slimstat-admin.php:806
4718
+ msgid ""
4719
+ "Any user who has left a comment on your blog, and is thus identified by "
4720
+ "Wordpress as a returning visitor"
4721
+ msgstr ""
4722
+ "هر کاربری که در تارنامه شما نظر گذاشته توسط وردپرس به عنوان «بیننده دوباره» "
4723
+ "شناخته میشود"
4724
+
4725
+ #: ../../admin/wp-slimstat-admin.php:807
4726
+ msgid "Unique IP"
4727
+ msgstr "آی‌پی یکتا"
4728
+
4729
+ #: ../../admin/wp-slimstat-admin.php:807
4730
+ msgid ""
4731
+ "Used to differentiate between multiple requests to download a file from one "
4732
+ "internet address (IP) and requests originating from many distinct addresses; "
4733
+ "since this measurement looks only at the internet address a pageview came "
4734
+ "from, it is useful, but not perfect"
4735
+ msgstr ""
4736
+ " این برای تشخیص دادن چندین درخواست بارگیری پرونده از یک آی پی ادرس و یا "
4737
+ "درخواست از چند آی پی ادرس مختلف میباشد؛ چون این اندازه گیری فقط نشانگر آدرس "
4738
+ "هر بازدید است، مفید میباشد ولی دقیق نیست."
4739
+
4740
+ #: ../../admin/wp-slimstat-admin.php:808
4741
+ msgid ""
4742
+ "the originating IP address of a client connecting to a web server through an "
4743
+ "HTTP proxy or load balancer"
4744
+ msgstr ""
4745
+ "ای پی منشا که کاربر را از طریق HTTP proxy و یا load balancer مرتبط کرده"
4746
+
4747
+ #: ../../admin/wp-slimstat-admin.php:809
4748
+ msgid "Direct Traffic"
4749
+ msgstr "ترافیک مستقیم"
4750
+
4751
+ #: ../../admin/wp-slimstat-admin.php:809
4752
+ msgid ""
4753
+ "All those people showing up to your Web site by typing in the URL of your "
4754
+ "Web site coming or from a bookmark; some people also call this \"default "
4755
+ "traffic\" or \"ambient traffic\""
4756
+ msgstr ""
4757
+ " تمامی کاربرانی که با وارد کردن نشانی مستقیم تارنما و یا استفاده از بوک مارک "
4758
+ "از تارنما بازدید میکنند."
4759
+
4760
+ #: ../../admin/wp-slimstat-admin.php:810
4761
+ msgid "Search Engine"
4762
+ msgstr "موتور جستجو"
4763
+
4764
+ #: ../../admin/wp-slimstat-admin.php:810
4765
+ msgid ""
4766
+ "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
4767
+ "as well as your paid (PPC/SEM) traffic, so be aware of that"
4768
+ msgstr ""
4769
+ "ترافیک مرتبط با نتایج موتور جستجو (organic) و همچنین ترافیک بدست آمده توسط "
4770
+ "تبلیغات در موتورهای جستجو اینجا درهم است"
4771
+
4772
+ #: ../../admin/wp-slimstat-admin.php:811 ../../admin/wp-slimstat-admin.php:827
4773
+ msgid "Keywords used by your visitors to find your website on a search engine"
4774
+ msgstr ""
4775
+ "کلمات کلیدی که کاربران شما به وسیله‌ی آن‌ها از موتورهای جستجو، پایگاه شما را "
4776
+ "یافته‌اند."
4777
+
4778
+ #: ../../admin/wp-slimstat-admin.php:812
4779
+ msgid "SERP"
4780
+ msgstr ""
4781
+
4782
+ #: ../../admin/wp-slimstat-admin.php:812
4783
+ msgid ""
4784
+ "Short for search engine results page, the Web page that a search engine "
4785
+ "returns with the results of its search. The value shown represents your rank "
4786
+ "(or position) within that list of results"
4787
+ msgstr " این مقدار نشان دهنده رتبه شما در فهرست نتایج موتور جستجو میباشد."
4788
+
4789
+ #: ../../admin/wp-slimstat-admin.php:813
4790
+ msgid ""
4791
+ "Any program used for accessing a website; this includes browsers, robots, "
4792
+ "spiders and any other program that was used to retrieve information from the "
4793
+ "site"
4794
+ msgstr ""
4795
+ "هر برنامه که به تارنما دسترسی پیدا کند مثل مرورگر، روبات، خزنده، وغیره."
4796
+
4797
+ #: ../../admin/wp-slimstat-admin.php:814
4798
+ msgid ""
4799
+ "A link from one domain to another is said to be outbound from its source "
4800
+ "anchor and inbound to its target. This report lists all the links to other "
4801
+ "websites followed by your visitors."
4802
+ msgstr ""
4803
+ "پیوند از این دامنه به دامنه دیگر پیوند بیرونی نامیده میشود و برای دامنه دیگر "
4804
+ "پیوند درونی محسوب میشود. این گزارش فهرستی از تمام پیوند ها به پایگاه های "
4805
+ "دیگر و کاربران است."
4806
+
4807
+ #: ../../admin/wp-slimstat-admin.php:821
4808
+ msgid "Basic Filters"
4809
+ msgstr "پالایه های اولیه"
4810
+
4811
+ #: ../../admin/wp-slimstat-admin.php:824
4812
+ msgid "User agent (Firefox, Chrome, ...)"
4813
+ msgstr "مرورگر کاربر (فایرفاکس، کروم و ...)"
4814
+
4815
+ #: ../../admin/wp-slimstat-admin.php:825
4816
+ msgid "2-letter code (us, ru, de, it, ...)"
4817
+ msgstr "علامت دو حرفی (us، ir، ...)"
4818
+
4819
+ #: ../../admin/wp-slimstat-admin.php:826
4820
+ msgid "IP"
4821
+ msgstr "آی‌پی"
4822
+
4823
+ #: ../../admin/wp-slimstat-admin.php:826
4824
+ msgid "Visitor's public IP address"
4825
+ msgstr "نشانی‌های آی‌پی عمومی بازدیدکنندگان"
4826
+
4827
+ #: ../../admin/wp-slimstat-admin.php:828
4828
+ msgid ""
4829
+ "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
4830
+ "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
4831
+ "column) for more information"
4832
+ msgstr ""
4833
+ "لطفا به <a target=\"_blank\" href=\"http://msdn.microsoft.com/en-us/library/"
4834
+ "ee825488(v=cs.20).aspx\"> فرهنگ زبان </a> برای اطلاع بیشتر مراجعه کنید"
4835
+
4836
+ #: ../../admin/wp-slimstat-admin.php:829
4837
+ msgid ""
4838
+ "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
4839
+ "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
4840
+ "manual page</a> for more information"
4841
+ msgstr ""
4842
+ "شناسه هایی مانندmac، win7، win98, و ... لطفا برای اطلاع بیشتر به<a target="
4843
+ "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\"> "
4844
+ "راهنما</a> مراجعه کنید"
4845
+
4846
+ #: ../../admin/wp-slimstat-admin.php:830
4847
+ msgid "URL accessed on your site"
4848
+ msgstr "نشانی هایی که مورد بازدید قرار گرفته"
4849
+
4850
+ #: ../../admin/wp-slimstat-admin.php:831
4851
+ msgid "Complete address of the referrer page"
4852
+ msgstr "نشانی کامل صفحه‌ی ارجاع ‌دهنده"
4853
+
4854
+ #: ../../admin/wp-slimstat-admin.php:832
4855
+ msgid ""
4856
+ "Visitors' names according to the cookie set by Wordpress after they leave a "
4857
+ "comment"
4858
+ msgstr ""
4859
+ "اسامی بیننده بر مبنای خوراکی که بعد از گذاشتن نظر توسط وردپرس اختصاص داده "
4860
+ "میشود."
4861
+
4862
+ #: ../../admin/wp-slimstat-admin.php:840
4863
+ msgid "Advanced Filters"
4864
+ msgstr "فیلترهای پیش‌رفته"
4865
+
4866
+ #: ../../admin/wp-slimstat-admin.php:843
4867
+ msgid "user agent version (9.0, 11, ...)"
4868
+ msgstr "نسخه مرورگر کاربر"
4869
+
4870
+ #: ../../admin/wp-slimstat-admin.php:844
4871
+ msgid ""
4872
+ "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
4873
+ "all others"
4874
+ msgstr ""
4875
+ "۱=خزنده‌های موتورهای جستجو، ۲=دستگاه موبایل، ۳=خوراک‌خوان، ۰=همه‌ی چیزهای دیگر"
4876
+
4877
+ #: ../../admin/wp-slimstat-admin.php:845
4878
+ msgid "visitor's screen's color depth (8, 16, 24, ...)"
4879
+ msgstr "عمق رنگ صفحه نمایش کاربر (۸، ۱۶، ۲۴، ...)"
4880
+
4881
+ #: ../../admin/wp-slimstat-admin.php:846
4882
+ msgid ""
4883
+ "what CSS standard was supported by that browser (1, 2, 3 and other integer "
4884
+ "values)"
4885
+ msgstr "چه معیار توسط مرورگر حمایت میشود؟ ۱، ۲، ۳ و دیگر مقدار ها ... "
4886
+
4887
+ #: ../../admin/wp-slimstat-admin.php:847
4888
+ msgid ""
4889
+ "this field is set to <em>[pre]</em> if the resource has been accessed "
4890
+ "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4891
+ "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
4892
+ msgstr ""
4893
+ "این ناحیه برای تنظیمات <a target=\"_blank\" href=\"https://developer.mozilla."
4894
+ "org/en/Link_prefetching_FAQ\"> صفحه‌بندی </a> و یا شیوه های مشابه است."
4895
+
4896
+ #: ../../admin/wp-slimstat-admin.php:848
4897
+ msgid "author associated to that post/page when the resource was accessed"
4898
+ msgstr "نویسنده مرتبط با این ارسال یا صفحه وقتی این ماخذ دسترسی شد"
4899
+
4900
+ #: ../../admin/wp-slimstat-admin.php:849
4901
+ msgid "ID of the category/term associated to the resource, when available"
4902
+ msgstr "شناسه دسته یا عبارت که با منبع مرتبط است، اگر موجود باشد"
4903
+
4904
+ #: ../../admin/wp-slimstat-admin.php:850
4905
+ msgid "visitor's originating IP address, if available"
4906
+ msgstr "آی پی منشا که بیننده از آن ‌عازم شده، در صورت موجود بودن"
4907
+
4908
+ #: ../../admin/wp-slimstat-admin.php:851
4909
+ msgid ""
4910
+ "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4911
+ "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
4912
+ "feed, home; please refer to the <a target=\"_blank\" href=\"http://codex."
4913
+ "wordpress.org/Conditional_Tags\">Conditional Tags</a> manual page for more "
4914
+ "information"
4915
+ msgstr ""
4916
+ "ارسال، صفحه، cpt:<em>ارسال خاص</em> ضمیمه، نشانه، رده بندی، دسته بندی، "
4917
+ "تاریخ، نویسنده، آرشیو، جستجو، خوراکی، خانه؛ لطفا برای اطلاع بیشتر به<a "
4918
+ "target=\"_blank\" href=\"http://codex.wordpress.org/Conditional_Tags\"> "
4919
+ "نشانه های شرطی</a> در صفحه راهنما مراجعه کنید."
4920
+
4921
+ #: ../../admin/wp-slimstat-admin.php:852
4922
+ msgid "viewport width and height (1024x768, 800x600, ...)"
4923
+ msgstr "ابعاد صفحه نمایش (۱۰۲۴x۷۶۸، ۸۰۰x۶۰۰، ...)"
4924
+
4925
+ #: ../../admin/wp-slimstat-admin.php:853
4926
+ msgid ""
4927
+ "generally used in conjunction with <em>is not empty</em>, identifies human "
4928
+ "visitors"
4929
+ msgstr ""
4930
+ "معولا با ترکیب <em>خالی نیست</em> استفاده میشود و بیننده ها (انسان) را تشخیص "
4931
+ "میدهد"
4932
+
4933
+ #: ../../admin/wp-slimstat-admin.php:854
4934
+ msgid "Date Filters"
4935
+ msgstr "فیلترهای تاریخ"
4936
+
4937
+ #: ../../admin/wp-slimstat-admin.php:854
4938
+ msgid ""
4939
+ "you can specify the timeframe by entering a number in the <em>interval</em> "
4940
+ "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
4941
+ "year=blank, interval=-1 will set a year-to-date filter)"
4942
+ msgstr ""
4943
+ "با وارد کردن اعداد در این ناحیه میتوانید یک مدت زمانی تعیین کنید؛ برای محدود "
4944
+ "کردن سال به روز از -1 استفاده کنید."
4945
+
4946
+ #: ../../admin/wp-slimstat-admin.php:855
4947
+ msgid "SERP Position"
4948
+ msgstr "مکان SERP"
4949
+
4950
+ #: ../../admin/wp-slimstat-admin.php:855
4951
+ msgid ""
4952
+ "set the filter to Referer contains cd=N&, where N is the position you are "
4953
+ "looking for"
4954
+ msgstr ""
4955
+ "تعیین صافی برای ارجاعی هایی که شامل اِن میشوند، آنجا که اِن مکانی هست که به "
4956
+ "مشخص میکنید."
4957
+
4958
+ #: ../../admin/wp-slimstat-admin.php:882
4959
+ msgid "Yes"
4960
+ msgstr "بلی"
4961
+
4962
+ #: ../../admin/wp-slimstat-admin.php:884
4963
+ msgid "Site Specific"
4964
+ msgstr ""
4965
+
4966
+ #~ msgid "Empty Database"
4967
+ #~ msgstr "پایگاه داده خالی"
4968
+
4969
+ #~ msgid "Reset Reports"
4970
+ #~ msgstr "تنظیم مجدد گزارش ها"
4971
+
4972
+ #~ msgid ""
4973
+ #~ "Are you sure you want to restore the default arrangement of your reports?"
4974
+ #~ msgstr " آیا مطمئنید که می‌خواهید تنظیم پیش فرظ گزارش ها را بازنشانی کنید؟"
4975
+
4976
+ #~ msgid "No Panic Button"
4977
+ #~ msgstr "دکمه خطر نباشد"
4978
+
4979
+ #~ msgid ""
4980
+ #~ "Reset the default arrangement of your reports. Helpful when, for some "
4981
+ #~ "reason, reports disappear from your panels."
4982
+ #~ msgstr ""
4983
+ #~ " آیا مطمئنید که می‌خواهید تنظیم پیش فرظ گزارش ها به حالت پیش فرض بازنشانی "
4984
+ #~ "کنید. این در برطرف کردن ناپدید شدن گزارش ها مفید است."
4985
+
4986
+ #~ msgid "Visitors"
4987
+ #~ msgstr "بینندگان"
4988
+
4989
+ #~ msgid "Content"
4990
+ #~ msgstr "محتوا"
4991
+
4992
+ #~ msgid ""
4993
+ #~ "WARNING: a misconfigured setting and/or server environment is preventing "
4994
+ #~ "WP SlimStat from properly tracking your visitors. Please <a target="
4995
+ #~ "\"_blank\" href=\"http://wordpress.org/extend/plugins/wp-slimstat/faq/"
4996
+ #~ "\">check the FAQs</a> for more information."
4997
+ #~ msgstr ""
4998
+ #~ "اخطار: تنظیمات اشتباه است و یا اینکه محیط دامنه از ردگیری بیننده جلوگیری "
4999
+ #~ "میکند. لطفا برای اطلاع بیشتر به<a target=\"_blank\" href=\"http://"
5000
+ #~ "wordpress.org/extend/plugins/wp-slimstat/faq/\"> سوال و پاسخ ها</a> "
5001
+ #~ "مراجعه کنید. "
5002
+
5003
+ #~ msgid ""
5004
+ #~ " And for keeping an eye on your visitors with <a href=\"http://slimstat."
5005
+ #~ "getused.to.it/\">WP SlimStat</a>."
5006
+ #~ msgstr ""
5007
+ #~ "و برای نظارت بیننده ها با <a href=\"http://slimstat.getused.to.it/\">WP "
5008
+ #~ "slimStat</a>."
5009
+
5010
+ #~ msgid "Take a sneak peek at what human visitors are doing on your website."
5011
+ #~ msgstr "نظارت بر اینکه کاربران در پایگاه شما چه میکنند"
5012
+
5013
+ #~ msgid "Visit with keywords"
5014
+ #~ msgstr "کلمات کلیدی (جدا شده با کاما):"
5015
+
5016
+ #~ msgid "Known User"
5017
+ #~ msgstr "کاربر آشنا"
5018
+
5019
+ #~ msgid "Human Visitor"
5020
+ #~ msgstr "بیننده انسانی"
5021
+
5022
+ #, fuzzy
5023
+ #~ msgid "At A Glance"
5024
+ #~ msgstr "در یک نگاه"
5025
+
5026
+ #~ msgid ""
5027
+ #~ "Click on a data point to display the activity chart for each hour of that "
5028
+ #~ "day"
5029
+ #~ msgstr "روی نقطه‌های داده کلیک کنید تا نمودار فعالیت آن ساعت را مشاهده کنید"
5030
+
5031
+ #~ msgid "Longest Post (ID)"
5032
+ #~ msgstr "طولانی‌ترین ارسال (شناسه)"
5033
+
5034
+ #~ msgid "Longest Comment (ID)"
5035
+ #~ msgstr "طولانی ترین نظر (شناسه)"
5036
+
5037
+ #~ msgid "Right Now"
5038
+ #~ msgstr "همین حالا"
5039
+
5040
+ #~ msgid "Right Now Screen"
5041
+ #~ msgstr "صفحه همین حالا"
5042
+
5043
+ #~ msgid "Right Now Extended"
5044
+ #~ msgstr "همین حالا تمدید شده"
5045
+
5046
+ #~ msgid ""
5047
+ #~ "We have teamed up with HackerNinja.com to offer you a free website "
5048
+ #~ "security scan. By clicking on Start Free Scan, your website will be "
5049
+ #~ "analyzed to detect viruses and other treats. Please note that no "
5050
+ #~ "confidential information is being sent to HackerNinja."
5051
+ #~ msgstr ""
5052
+ #~ "میتوانید پایگاه را خود را به صورت رایگاه ویروسیابی کنید (با همکاری "
5053
+ #~ "HackerNinja.com). با فشار دادن دکمه زیر، پایگاه شما برای ویروس و دیگر "
5054
+ #~ "تهدید ها کاوش میشود. هیچ اطلاعات شخصی به HackerNinja فرستاده نمیشود."
5055
+
5056
+ #~ msgid "Security Scan"
5057
+ #~ msgstr "بررسی امنیت"
5058
+
5059
+ #~ msgid "AntiVirus Scan"
5060
+ #~ msgstr "ویروسیابی"
5061
+
5062
+ #~ msgid "Scan for Hostile Strings"
5063
+ #~ msgstr "بررسی برای رشته خطرناک"
5064
+
5065
+ #~ msgid "Google Safe Browsing List"
5066
+ #~ msgstr " فهرست پایگاه های امن گوگل"
5067
+
5068
+ #~ msgid "Hostile External Links"
5069
+ #~ msgstr "پیوند خارجی خطرناک"
5070
+
5071
+ #~ msgid "Other Treats"
5072
+ #~ msgstr " قاقالی‌لی"
5073
+
5074
+ #~ msgid "Passed"
5075
+ #~ msgstr "قبول شد"
5076
+
5077
+ #~ msgid "At Risk"
5078
+ #~ msgstr "در خطر"
5079
+
5080
+ #~ msgid "Chart Annotations"
5081
+ #~ msgstr "حاشیه نمودار"
5082
+
5083
+ #~ msgid ""
5084
+ #~ "Add <em>markings</em> to each chart by specifying a date and its "
5085
+ #~ "description in the field below. Useful to keep track of special events "
5086
+ #~ "and correlate them to your analytics. Please use the following format:"
5087
+ #~ "<code>YYYY MM DD HH:mm=Description 1,YYYY MM DD HH:mm=Description 2</"
5088
+ #~ "code>. For example: 2012 12 31 23:55=New Year's Eve."
5089
+ #~ msgstr ""
5090
+ #~ "اضافه کردن تاریخ و توضیحات در ناحیه های زیر میتواند در رهگیری رویداد ها و "
5091
+ #~ "مرتبط کردن آنها مفید باشد. لطفا از این نگارش استفاده کنید: <code>YYYY MM "
5092
+ #~ "DD HH:mm=Description 1,YYYY MM DD HH:mm=Description 2</code>. 2012 12 31 "
5093
+ #~ "23:55=New Year's Eve برای مثال."
5094
+
5095
+ #~ msgid ""
5096
+ #~ "Paste your export file's content and click on the button below, to import "
5097
+ #~ "your settings."
5098
+ #~ msgstr ""
5099
+ #~ "برای وارد کردن تنظیمات محتوا را از پرونده قبلی برداید و در جعبه بچسبانید، "
5100
+ #~ "سپس دکمه را فشار دهید"
5101
+
5102
+ #~ msgid "Export Settings"
5103
+ #~ msgstr "صادر کردن تنظیمات"
5104
+
5105
+ #~ msgid "Stats"
5106
+ #~ msgstr "آمارها"
5107
+
5108
+ #~ msgid "Hide Stats Link"
5109
+ #~ msgstr "پنهان کردن پیوند آمار"
5110
+
5111
+ #~ msgid ""
5112
+ #~ "Enable this option if your users are confused by the Stats link associate "
5113
+ #~ "to each post in the Edit Posts page."
5114
+ #~ msgstr ""
5115
+ #~ "این گزینه را فعال کنید اگر پیوند آمار در صفحه ویراش ارسال کاربران را گیج "
5116
+ #~ "میکند. "
5117
+
5118
+ #~ msgid "Blacklist"
5119
+ #~ msgstr "فهرست سیاه"
5120
+
5121
+ #~ msgid ""
5122
+ #~ "How valuable is monitoring your visitors for your site? WP SlimStat is "
5123
+ #~ "and will always be free, but consider supporting the author if this "
5124
+ #~ "plugin made your web site better, especially if you are making money out "
5125
+ #~ "of it. Any donation received will be reinvested in the development of WP "
5126
+ #~ "SlimStat, and to buy some food for my hungry family."
5127
+ #~ msgstr ""
5128
+ #~ "تا چه حد ارزشمند است نظارت بر بازدید کنندگان خود را برای سایت شما؟ "
5129
+ #~ "SlimStat WP است و همیشه نیز خواهد بود، اما در نظر نویسنده اگر این افزونه "
5130
+ #~ "وب سایت شما بهتر است، به خصوص اگر شما در حال ساخت پول از آن. هر گونه کمک "
5131
+ #~ "مالی دریافتی در توسعه SlimStat WP دوباره سرمایه گذاری خواهد شد و برای "
5132
+ #~ "خرید برخی از مواد غذایی برای خانواده گرسنه ام."
5133
+
5134
+ #~ msgid "Need help?"
5135
+ #~ msgstr "کمک؟"
5136
+
5137
+ #, fuzzy
5138
+ #~ msgid ""
5139
+ #~ "Please visit our official <a href='http://wordpress.org/support/plugin/wp-"
5140
+ #~ "slimstat' target='_blank'>support forum</a> to see if your question has "
5141
+ #~ "already been answered. If not, feel free to post your request there, I'll "
5142
+ #~ "do my best to address your concerns as soon as possible."
5143
+ #~ msgstr ""
5144
+ #~ "لطفا از پایگاه رسمی ما به نشانی &lt;a href='http://wordpress.org/support/"
5145
+ #~ "plugin/wp-slimstat' target='_blank'&gt;تالار گفتگو&lt;/a&gt; بازدید کنید "
5146
+ #~ "تا ببینید آیا سوال شما پاسخ داده شده است؟ اگر نه، با احساس آزادی کامل "
5147
+ #~ "سوال خود را آن‌جا بپرسید."
5148
+
5149
+ #~ msgid "Recent messages from the support forum"
5150
+ #~ msgstr "پیام‌های اخیر از تالار گفتگو."
5151
+
5152
+ #~ msgid "Don't want or cannot donate?"
5153
+ #~ msgstr "نمی‌خواهید، یا نمی‌توانید اعانه دهید؟"
5154
+
5155
+ #~ msgid ""
5156
+ #~ "If you cannot donate money, please consider blogging about WP SlimStat, "
5157
+ #~ "your visitors may not know you're using it! You can also contribute by "
5158
+ #~ "donating some of your spare time: send me bug reports, localization files "
5159
+ #~ "and ideas on how to improve WP SlimStat."
5160
+ #~ msgstr ""
5161
+ #~ "اگر شما می توانید پول را اهدا نمی کند، لطفا نظر وبلاگ نویسی در مورد "
5162
+ #~ "SlimStat WP، بازدید کنندگان خود را نمی دانند ممکن است شما با استفاده از "
5163
+ #~ "آن! شما همچنین می توانید با اهدای برخی از اوقات فراغت خود را کمک: به من "
5164
+ #~ "گزارش اشکال، فایل ها و محلی سازی ایده ها در مورد چگونگی بهبود SlimStat WP "
5165
+ #~ "ارسال کنید."
5166
+
5167
+ #~ msgid "Show your appreciation"
5168
+ #~ msgstr "قدردانی خود را نشان دهید"
5169
+
5170
+ #, fuzzy
5171
+ #~ msgid ""
5172
+ #~ "Tell other people if WP SlimStat works for you and how good it is. <a "
5173
+ #~ "href=\"http://wordpress.org/extend/plugins/wp-slimstat/\">Rate it</a> on "
5174
+ #~ "its Plugin Directory page."
5175
+ #~ msgstr ""
5176
+ #~ "اگر SlimStat WP خوب کار می کند، به افراد دیگر بگویید.\n"
5177
+ #~ "در صفحه‌ی خود افزونه &lt;a href=\"http://wordpress.org/extend/plugins/wp-"
5178
+ #~ "slimstat/\"&gt;امتیاز بدهید&lt;/a&gt;. "
5179
+
5180
+ #~ msgid "Support"
5181
+ #~ msgstr "پشتیبانی"
5182
+
5183
+ #, fuzzy
5184
+ #~ msgid ""
5185
+ #~ "<a href=\"http://slimstat.getused.to.it/\">WP SlimStat</a> is and will "
5186
+ #~ "always be free, but consider supporting the author if this plugin helped "
5187
+ #~ "you improve your website, or if you are making money out of it. Donations "
5188
+ #~ "will be invested in the development of WP SlimStat, and to buy some food "
5189
+ #~ "for my hungry family. You can also leave <a href=\"http://wordpress.org/"
5190
+ #~ "support/view/plugin-reviews/wp-slimstat\">a review</a> to let other users "
5191
+ #~ "know how this plugin has helped you manage your site."
5192
+ #~ msgstr ""
5193
+ #~ "تا چه حد ارزشمند است نظارت بر بازدید کنندگان خود را برای سایت شما؟ "
5194
+ #~ "SlimStat WP است و همیشه نیز خواهد بود، اما در نظر نویسنده اگر این افزونه "
5195
+ #~ "وب سایت شما بهتر است، به خصوص اگر شما در حال ساخت پول از آن. هر گونه کمک "
5196
+ #~ "مالی دریافتی در توسعه SlimStat WP دوباره سرمایه گذاری خواهد شد و برای "
5197
+ #~ "خرید برخی از مواد غذایی برای خانواده گرسنه ام."
5198
+
5199
+ #~ msgid ""
5200
+ #~ "You may want to prevent WP SlimStat from tracking users, but still be "
5201
+ #~ "able to access your stats."
5202
+ #~ msgstr ""
5203
+ #~ "ممکن است بخواهید از ره‌گیری کاربران توست WP SlimStat جلوگیری کنید، اما "
5204
+ #~ "همچنان قادر به دست‌رسی به آمار باشید."
5205
+
5206
+ #~ msgid "Store Data For"
5207
+ #~ msgstr "ذخیره‌ی داده برای"
5208
+
5209
+ #, fuzzy
5210
+ #~ msgid ""
5211
+ #~ "Automatically deletes pageviews older than <strong>X</strong> days (uses "
5212
+ #~ "Wordpress cron jobs). Zero disables this feature."
5213
+ #~ msgstr ""
5214
+ #~ "به صورت خودکار مشاهده صفحات قبل از &lt;strong&gt;X&lt;/strong&gt; روز را "
5215
+ #~ "حذف می‌کند(با استفاده از cron وردپرس). «صفر» این قابلیت را از کار می‌اندازد."
5216
+
5217
+ #, fuzzy
5218
+ #~ msgid ""
5219
+ #~ "Display hostnames instead of IP addresses. It slows down the rendering of "
5220
+ #~ "your metrics."
5221
+ #~ msgstr ""
5222
+ #~ "مشاهده نام میزبان به جای نشانی آی‌پی. این کار نمایش گزارش را کمی کند می‌کند."
5223
+
5224
+ #, fuzzy
5225
+ #~ msgid ""
5226
+ #~ "Specify the number of results to return for each module. Please use a "
5227
+ #~ "<strong>positive</strong> value."
5228
+ #~ msgstr ""
5229
+ #~ "تعداد نتایجی که برای هر بخش می‌خواهید نشان داده شوند را انتخاب کنید. لطفا "
5230
+ #~ "یک عدد &lt;strong&gt;مثبت&lt;/strong&gt; باشد."
5231
+
5232
+ #, fuzzy
5233
+ #~ msgid "Right Now Rows"
5234
+ #~ msgstr "همین الآن"
5235
+
5236
+ #~ msgid "Customize the IP lookup service URL."
5237
+ #~ msgstr "نشانی خادم دل‌خواه برای مکان‌یابی بر اساس نشانی آی‌پی را وارد کنید."
5238
+
5239
+ #~ msgid "Refresh Every"
5240
+ #~ msgstr "به‌روزآوری هر"
5241
+
5242
+ #~ msgid "Anonymize IP Addresses"
5243
+ #~ msgstr "غیرقابل تشخیص کردن آی‌پی‌ها"
5244
+
5245
+ #~ msgid "Filter Prefetch"
5246
+ #~ msgstr "نادیده گرفتن پیش‌دریافت"
5247
+
5248
+ #~ msgid "IP Addresses"
5249
+ #~ msgstr "نشانی‌های آی‌پی"
5250
+
5251
+ #~ msgid "Users"
5252
+ #~ msgstr "کاربران"
5253
+
5254
+ #~ msgid "Read access"
5255
+ #~ msgstr "دست‌رسی خواندن"
5256
+
5257
+ #~ msgid "Config access"
5258
+ #~ msgstr "دست‌رسی پیکربندی"
5259
+
5260
+ #~ msgid "Track Browser Capabilities"
5261
+ #~ msgstr "ره‌گیری قابلیت‌های مرورگر"
5262
+
5263
+ #, fuzzy
5264
+ #~ msgid ""
5265
+ #~ "Hooks a javascript event handler to each external link on your site, to "
5266
+ #~ "track when visitors click on them. If Browser Capabilities is disabled, "
5267
+ #~ "outbound clicks <strong>will not</strong> be tracked regardless of which "
5268
+ #~ "value you set for this option."
5269
+ #~ msgstr ""
5270
+ #~ "می افزاید: کنترل رویداد جاوا اسکریپت به یک لینک خارجی در سایت خود، به "
5271
+ #~ "پیگیری وقتی که بازدید کننده بر روی آنها کلیک کنید. اگر قابلیت های مرورگر "
5272
+ #~ "غیر فعال است، بین المللی عازم ناحیه دور دست &lt;STRONG&gt; کلیک &lt;/ "
5273
+ #~ "strong&gt; در دنبال بدون در نظر گرفتن که ارزش شما برای این گزینه است."
5274
+
5275
+ #~ msgid "Your WP SlimStat table has been successfully emptied."
5276
+ #~ msgstr "جداول WP SlimStat با موفقیت خالی شدند"
5277
+
5278
+ #~ msgid "Your WP SlimStat tabs have been successfully reset."
5279
+ #~ msgstr "جداول SlimStat به خوبی بازنشانی شدند."
5280
+
5281
+ #~ msgid "Your WP SlimStat table has been successfully reset."
5282
+ #~ msgstr "جداول SlimStat به خوبی بازنشانی شدند."
5283
+
5284
+ #~ msgid "ERROR: Your Slimstat table could not be initialized."
5285
+ #~ msgstr "خطا: جداول SlimStat نمی‌توانند آماده‌سازی شوند."
5286
+
5287
+ #~ msgid "Your WP SlimStat table has been successfully optimized."
5288
+ #~ msgstr "جداول WP SlimStat با موفقیت بهینه‌سازی شد."
5289
+
5290
+ #~ msgid "Your WP SlimStat indexes have been successfully created."
5291
+ #~ msgstr "اندیس‌های WP SlimStat با موفقیت ساخته شد."
5292
+
5293
+ #~ msgid "Your WP SlimStat indexes have been successfully removed."
5294
+ #~ msgstr "اندیس‌های WP SlimStat با موفقیت حذف شد."
5295
+
5296
+ #~ msgid "Your WP SlimStat table has been successfully cleaned. Rows affected:"
5297
+ #~ msgstr "جداول WP SlimStat با موفقیت پاک‌سازی شد. ردیف‌های تحت تاثیر:"
5298
+
5299
+ #~ msgid ", it may take some time and exceed PHP's maximum execution time"
5300
+ #~ msgstr ""
5301
+ #~ "، ممکن است مقداری طول بکشد و از بیشینه مقدار زمان اجرای پی‌اچ‌پی بیش‌تر باشد."
5302
+
5303
+ #~ msgid "Size"
5304
+ #~ msgstr "اندازه"
5305
+
5306
+ #~ msgid "Average Record Length"
5307
+ #~ msgstr "میانگین طول رکورد"
5308
+
5309
+ #~ msgid "Created on"
5310
+ #~ msgstr "ساخته شده در"
5311
+
5312
+ #~ msgid "Approximate Overhead"
5313
+ #~ msgstr "سربار تقریبی"
5314
+
5315
+ #~ msgid "Optimize tables"
5316
+ #~ msgstr "بهینه کردن جداول"
5317
+
5318
+ #~ msgid "Purge Data"
5319
+ #~ msgstr "حذف داده‌های"
5320
+
5321
+ #~ msgid "Is equal to"
5322
+ #~ msgstr "مساوی‌ست با"
5323
+
5324
+ #~ msgid "Contains"
5325
+ #~ msgstr "شامل"
5326
+
5327
+ #~ msgid "Does not contain"
5328
+ #~ msgstr "ناشامل"
5329
+
5330
+ #~ msgid "Starts with"
5331
+ #~ msgstr "شروع می‌شود با"
5332
+
5333
+ #~ msgid "Ends with"
5334
+ #~ msgstr "خاتمه می‌یابد با"
5335
+
5336
+ #~ msgid "Does not start with"
5337
+ #~ msgstr "شروع نمی‌شود با"
5338
+
5339
+ #~ msgid "Does not end with"
5340
+ #~ msgstr "خاتمه نمی‌یابد با"
5341
+
5342
+ #~ msgid "DELETE"
5343
+ #~ msgstr "حذف"
5344
+
5345
+ #~ msgid "Activate Indexes"
5346
+ #~ msgstr "فعال کردن اندیس‌ها"
5347
+
5348
+ #~ msgid "Remove Indexes"
5349
+ #~ msgstr "حذف اندیس‌ها"
5350
+
5351
+ #~ msgid ""
5352
+ #~ "Use this feature if you want to save some DB space, while slightly "
5353
+ #~ "degrading WP SlimStat overall performances."
5354
+ #~ msgstr ""
5355
+ #~ "با استفاده از این ویژگی، می‌توانید بخشی از فضای پایگاه داده را صرفه‌جویی "
5356
+ #~ "کنید، اما کمی از کارایی زمان اجرای افزونه کاسته خواهد شد."
5357
+
5358
+ #~ msgid "Reset Stats"
5359
+ #~ msgstr "بازنشانی آمارها"
5360
+
5361
+ #~ msgid ""
5362
+ #~ "Select this option if you want to empty your WP SlimStat database (does "
5363
+ #~ "not reset your settings)."
5364
+ #~ msgstr ""
5365
+ #~ "این گزینه را انتخاب کنید اگر شما می خواهید برای خالی کردن پایگاه داده WP "
5366
+ #~ "خود را SlimStat (تنظیمات خود را تنظیم مجدد کنید)."
5367
+
5368
+ #~ msgid "Show records where"
5369
+ #~ msgstr "نشان دادن رکوردها وقتی"
5370
+
5371
+ #~ msgid ""
5372
+ #~ "Please refer to the contextual help (available on WP 3.3+) for more "
5373
+ #~ "information on what these filters mean."
5374
+ #~ msgstr ""
5375
+ #~ "لطفا برای کسب اطلاعات بیش‌تر در مورد این فیلترها به متن کمک (قابل دسترس در "
5376
+ #~ "WP 3.3+) مراجعه کنید."
5377
+
5378
+ #~ msgid "Select a day to make the interval field appear."
5379
+ #~ msgstr "یک روز را انتخاب کنید تا انتخاب بازه تاریخ فعال شود"
5380
+
5381
+ #~ msgid "Filter by date"
5382
+ #~ msgstr "فیلتر با تاریخ"
5383
+
5384
+ #~ msgid "Go"
5385
+ #~ msgstr "برو"
5386
+
5387
+ #~ msgid "No records found"
5388
+ #~ msgstr "هیچ رکوردی یافت نشد"
5389
+
5390
+ #~ msgid "refreshing in"
5391
+ #~ msgstr "تازه کردن در"
5392
+
5393
+ #~ msgid "Filter results where IP equals %s"
5394
+ #~ msgstr "نتایج را فیلتر کن وقتی آی‌پی مساوی‌ست با %s"
5395
+
5396
+ #~ msgid "Filter results where user equals %s"
5397
+ #~ msgstr "نتایج را فیلتر کن وقتی کاربر مساوی‌ست با %s"
5398
+
5399
+ #~ msgid "Filter results where ther user's real IP equals %s"
5400
+ #~ msgstr "نتایج را فیلتر کن وقتی نشانی واقعی آی‌پی کاربر مساوی‌ست با %s"
5401
+
5402
+ #~ msgid "Country"
5403
+ #~ msgstr "کشور"
5404
+
5405
+ #~ msgid "Platform"
5406
+ #~ msgstr "بستر"
5407
+
5408
+ #, fuzzy
5409
+ #~ msgid "Filter results where browser type equals %s"
5410
+ #~ msgstr "نتایج را فیلتر کن وقتی نوع محتوا مساوی‌ست با %s"
5411
+
5412
+ #~ msgid "Filter results where screen resolution equals %s"
5413
+ #~ msgstr "نتایح را فیلتر کن وقتی ابعاد صفحه نمایش مساوی‌ست با %s"
5414
+
5415
+ #~ msgid "Filter results where content type equals %s"
5416
+ #~ msgstr "نتایج را فیلتر کن وقتی نوع محتوا مساوی‌ست با %s"
5417
+
5418
+ #~ msgid "Bots, Crawlers and others"
5419
+ #~ msgstr "بات‌ها، خزنده‌ها و سایر..."
5420
+
5421
+ #~ msgid "Recent Known Visitors"
5422
+ #~ msgstr "کاربران آشنای اخیر"
5423
+
5424
+ #~ msgid "Recent 404 URLs"
5425
+ #~ msgstr "نشانی خطاهای ۴۰۴ اخیر"
5426
+
5427
+ #~ msgid "Top 404 URLs"
5428
+ #~ msgstr "بالاترین نشانی‌های خطای ۴۰۴"
5429
+
5430
+ #~ msgid "Remove all filters"
5431
+ #~ msgstr "حذف همه فیلترها"
5432
+
5433
+ #~ msgid "Filter results where domain equals %s"
5434
+ #~ msgstr "نتایج را فیلتر کن وقتی که دامنه مساوی‌ست با %s"
5435
+
5436
+ #~ msgid "Filter results where searchterm equals %s"
5437
+ #~ msgstr "نتایج را فیلتر کن وقتی عبارت جستجو مساوی‌ست با %s"
5438
+
5439
+ #, fuzzy
5440
+ #~ msgid "Filter results where date equals today"
5441
+ #~ msgstr "نتایج را فیلتر کن وقتی که دامنه مساوی‌ست با %s"
5442
+
5443
+ #, fuzzy
5444
+ #~ msgid "Filter results where date equals yesterday"
5445
+ #~ msgstr "نتایج را فیلتر کن وقتی که دامنه مساوی‌ست با %s"
5446
+
5447
+ #, fuzzy
5448
+ #~ msgid "This number includes <strong>human visits</strong> only."
5449
+ #~ msgstr "این عدد فقط شامل مشاهدات انسانی‌ست."
5450
+
5451
+ #~ msgid "10 - 20 minutes"
5452
+ #~ msgstr "۱۰ تا ۲۰ دقیقه"
5453
+
5454
+ #, fuzzy
5455
+ #~ msgid "Your Content"
5456
+ #~ msgstr "محتوا"
5457
+
5458
+ #~ msgid "Users by capability"
5459
+ #~ msgstr "کاربران بر اساس قابلیت"
5460
+
5461
+ #~ msgid "Top Languages - Just Visitors"
5462
+ #~ msgstr "بیش‌ترین زبان‌ها - فقط بینندگان"
5463
+
5464
+ #~ msgid "Resources"
5465
+ #~ msgstr "منابع"
5466
+
5467
+ #~ msgid "Minimum capability"
5468
+ #~ msgstr "حداقل قابلیت"
5469
+
5470
+ #, fuzzy
5471
+ #~ msgid "Records: %d - %d"
5472
+ #~ msgstr "رکوردهای %d تا %d از %d"
5473
+
5474
+ #~ msgid "Open in a new window"
5475
+ #~ msgstr "در پنجره جدید باز کن"
5476
+
5477
+ #~ msgid "Your Geolocation data has been successfully updated."
5478
+ #~ msgstr "داده‌های مکان‌یابی با موفقیت به‌روزرسانی شدند"
5479
+
5480
+ #~ msgid "ERROR: Your Geolocation source file is not readable."
5481
+ #~ msgstr "خطا: فایل مکان‌یابی قابل خواندن نیست."
5482
+
5483
+ #~ msgid "Update Geolocation DB"
5484
+ #~ msgstr "به‌روزآوری پایگاه داده مکان‌یابی"
5485
+
5486
+ #~ msgid "This button loads the new ip2location data."
5487
+ #~ msgstr "این دکمه داده‌های «تبدیل آی‌پی به موقعیت» جدید را بارگزاری می‌کند"
5488
+
5489
+ #~ msgid "Use standalone menu"
5490
+ #~ msgstr "استفاده از منوی مستقل"
5491
+
5492
+ #, fuzzy
5493
+ #~ msgid ""
5494
+ #~ "Specify the number of rows per page to show in the Right Now screen. "
5495
+ #~ "Please use a <strong>positive</strong> value."
5496
+ #~ msgstr ""
5497
+ #~ "تعداد ردیف‌های هر صفحه که در «همین الآن» نمایش داده می‌شوند را انتخاب کنید. "
5498
+ #~ "لطفا عددی&lt;strong&gt;مثبت&lt;/strong&gt; باشد."
admin/lang/wp-slimstat-fr_CA.po CHANGED
@@ -1,7784 +1,7784 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP SlimStat\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-12-12 10:24-0500\n"
6
- "PO-Revision-Date: 2014-12-12 10:24-0500\n"
7
- "Last-Translator: Slobiz <webmaster@sloveniabusinesschannel.com>\n"
8
- "Language-Team: Michael Bastin\n"
9
- "Language: fr_FR\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "Plural-Forms: s;\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Generator: Poedit 1.6.9\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-SearchPath-0: ../..\n"
19
-
20
- #: ../../admin/config/addons.php:14
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:23
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:29 ../../admin/config/index.php:9
37
- #: ../../admin/wp-slimstat-admin.php:512 ../../admin/wp-slimstat-admin.php:529
38
- #: ../../wp-slimstat.php:1351
39
- msgid "Add-ons"
40
- msgstr "Add-ons"
41
-
42
- #: ../../admin/config/addons.php:30
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:36
59
- msgid "Add-on"
60
- msgstr "Add-on"
61
-
62
- #: ../../admin/config/addons.php:36
63
- msgid "Description"
64
- msgstr "Description"
65
-
66
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:18
67
- msgid "General"
68
- msgstr "Général"
69
-
70
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:45
71
- msgid "Views"
72
- msgstr "Vues"
73
-
74
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:69
75
- msgid "Filters"
76
- msgstr "Filtres"
77
-
78
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:140
79
- msgid "Permissions"
80
- msgstr "Permissions"
81
-
82
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:217
83
- msgid "Advanced"
84
- msgstr "Avancé"
85
-
86
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:249
87
- msgid "Maintenance"
88
- msgstr "Maintenance"
89
-
90
- #: ../../admin/config/index.php:14 ../../admin/config/index.php:147
91
- #: ../../admin/wp-slimstat-admin.php:558 ../../admin/wp-slimstat-admin.php:561
92
- #: ../../wp-slimstat.php:1354
93
- msgid "Settings"
94
- msgstr "Réglages"
95
-
96
- #: ../../admin/config/index.php:20 ../../admin/config/index.php:223
97
- msgid "Tracker"
98
- msgstr "Traçage"
99
-
100
- #: ../../admin/config/index.php:21
101
- msgid "Enable Tracking"
102
- msgstr "Activer le traçage"
103
-
104
- #: ../../admin/config/index.php:21
105
- msgid "Turn the tracker on or off, but keep the reports accessible."
106
- msgstr ""
107
- "Activez ou désactivez le Traceur, mais conservez le rapport accessible (Ce "
108
- "que vous n'auriez pas si vous désactiviez le plugin.)"
109
-
110
- #: ../../admin/config/index.php:22
111
- msgid "Monitor Admin Pages"
112
- msgstr "Tracer les pages Administrateur"
113
-
114
- #: ../../admin/config/index.php:22
115
- msgid "Enable this option to track your users' activity within the admin."
116
- msgstr ""
117
- "Activez cette option pour suivre l'activité de vos utilisateurs dans l'admin."
118
-
119
- #: ../../admin/config/index.php:23
120
- msgid "Enable Spy Mode"
121
- msgstr "Activer le mode espion"
122
-
123
- #: ../../admin/config/index.php:23
124
- msgid ""
125
- "Collect information about screen resolutions, outbound links, downloads, "
126
- "etc. If Tracking Mode is set to Javascript, this data will be tracked "
127
- "regardless of which value you set for this option."
128
- msgstr ""
129
- "Collecte des données sur les résolutions d'écran, les liens sortants, les "
130
- "téléchargements et autres informations pertinentes. Si le mode Javascript "
131
- "est activé, ces informations seront suivies indépendamment de la valeur "
132
- "définie pour cette option."
133
-
134
- #: ../../admin/config/index.php:24
135
- msgid "Tracking Mode"
136
- msgstr "Mode traçage"
137
-
138
- #: ../../admin/config/index.php:24
139
- msgid ""
140
- "Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
141
- "Total Cache, WP SuperCache, HyperCache, etc). Slimstat will behave pretty "
142
- "much like Google Analytics, and visitors whose browser does not support "
143
- "Javascript will be ignored. A nice side effect is that <strong>most "
144
- "spammers, search engines and other crawlers</strong> will not be tracked."
145
- msgstr ""
146
- "Activez cette fonction si vous utilisez un plugin de mise en cache (W3 Total "
147
- "Cache et autres). WP SlimStat va se comporter un peu comme Google Analytics, "
148
- "et les visiteurs dont le navigateur ne supporte pas le Javascript seront "
149
- "ignorés. En outre, <strong>la plupart</strong> des spammeurs, moteurs de "
150
- "recherche et autres robots ne seront pas suivis."
151
-
152
- #: ../../admin/config/index.php:24
153
- msgid "Javascript"
154
- msgstr "Mode Javascript"
155
-
156
- #: ../../admin/config/index.php:24
157
- msgid "Server-side"
158
- msgstr "Côté serveur"
159
-
160
- #: ../../admin/config/index.php:26
161
- msgid "WordPress Integration"
162
- msgstr "Intégration WordPress"
163
-
164
- #: ../../admin/config/index.php:27
165
- msgid "Menu Position"
166
- msgstr "Position du Menu"
167
-
168
- #: ../../admin/config/index.php:27
169
- msgid ""
170
- "Choose between a standalone admin menu for Slimstat or a drop down in the "
171
- "admin bar (if visible)."
172
- msgstr ""
173
- "Choisir entre un menu d'administration dans la barre latérale de WordPress "
174
- "ou un menu déroulant dans la barre supérieure (si elle est affichée)."
175
-
176
- #: ../../admin/config/index.php:27
177
- msgid "Side Menu"
178
- msgstr "Menu latéral"
179
-
180
- #: ../../admin/config/index.php:27
181
- msgid "Admin Bar"
182
- msgstr "Barre d'Administration"
183
-
184
- #: ../../admin/config/index.php:28
185
- msgid "Add Stats to Posts and Pages"
186
- msgstr "Etendre les Stats aux articles"
187
-
188
- #: ../../admin/config/index.php:28
189
- msgid ""
190
- "Add a new column to the Edit Posts/Pages screens, with the number of hits "
191
- "per post."
192
- msgstr ""
193
- "Ajoute une colonne à l'écran d'édition des articles, en indiquant le nombre "
194
- "de visites par article (peut ralentir le rendu des pages)."
195
-
196
- #: ../../admin/config/index.php:30
197
- msgid "Database"
198
- msgstr "Base de données"
199
-
200
- #: ../../admin/config/index.php:31
201
- #, fuzzy
202
- msgid "Delete records"
203
- msgstr "Filtrer les pages vues pour que"
204
-
205
- #: ../../admin/config/index.php:31
206
- msgid ""
207
- "If database space is not an issue, you can decide to archive older records "
208
- "in another table, instead of deleting them. This way performance is "
209
- "preserved, but you will still be able to access your data at a later time, "
210
- "if needed."
211
- msgstr ""
212
-
213
- #: ../../admin/config/index.php:32
214
- msgid "Retain data for"
215
- msgstr "Conserver les données pour"
216
-
217
- #: ../../admin/config/index.php:32
218
- #, fuzzy
219
- msgid ""
220
- "Clean-up log entries older than the number of days specified here above. "
221
- "Enter <strong>0</strong> (number zero) if you want to preserve your data "
222
- "regardless of its age."
223
- msgstr ""
224
- "Supprimer les données de log plus anciennes que le nombre de jours indiqués "
225
- "ci-dessus. Entrer <strong>0</strong> (number zero) si vous souhaitez "
226
- "conserver toutes vos données sans limites de durée."
227
-
228
- #: ../../admin/config/index.php:32
229
- msgid "Next clean-up on"
230
- msgstr "Prochain nettoyage le"
231
-
232
- #: ../../admin/config/index.php:32
233
- #, php-format
234
- msgid "Entries logged on or before %s will be permanently deleted."
235
- msgstr ""
236
- "Les données enregistrées le ou avant le %s seront définitivement supprimées. "
237
-
238
- #: ../../admin/config/index.php:32 ../../admin/view/index.php:100
239
- #: ../../admin/view/wp-slimstat-db.php:74
240
- #: ../../admin/view/wp-slimstat-reports.php:800
241
- msgid "days"
242
- msgstr "jours"
243
-
244
- #: ../../admin/config/index.php:47
245
- msgid "Data and Formats"
246
- msgstr "Données et Formats"
247
-
248
- #: ../../admin/config/index.php:48
249
- msgid "Convert IP Addresses"
250
- msgstr "Convertir les adresses IP"
251
-
252
- #: ../../admin/config/index.php:48
253
- msgid "Display provider names instead of IP addresses."
254
- msgstr "Afficher le nom du fournisseur d'accès au lieu de l'adresse IP."
255
-
256
- #: ../../admin/config/index.php:49
257
- msgid "Number Format"
258
- msgstr "Format des nombres"
259
-
260
- #: ../../admin/config/index.php:49
261
- msgid "Choose the number format you want to use for your reports."
262
- msgstr ""
263
- "Choisissez le format numérique que vous souhaitez utiliser, européen ou "
264
- "américain."
265
-
266
- #: ../../admin/config/index.php:50
267
- msgid "Enable SOV"
268
- msgstr "Activer SOV"
269
-
270
- #: ../../admin/config/index.php:50
271
- msgid ""
272
- "In linguistic typology, a subject-object-verb (SOV) language is one in which "
273
- "the subject, object, and verb of a sentence appear in that order, like in "
274
- "Japanese."
275
- msgstr ""
276
- "En typologie linguistique, une langue en sujet-objet-verbe (SOV) est une "
277
- "langue dans laquelle les sujet, objet et verbe d'une phrase apparaissent "
278
- "dans cet ordre, comme en japonais."
279
-
280
- #: ../../admin/config/index.php:51
281
- msgid "Show Display Name"
282
- msgstr "Voir Nom d'affichage"
283
-
284
- #: ../../admin/config/index.php:51
285
- msgid ""
286
- "By default, users are listed by their usernames. Use this option to "
287
- "visualize their display names instead."
288
- msgstr ""
289
- "Par défaut, les utilisateurs sont affichés par Nom d'utilisateur. Utilisez "
290
- "cette option pour basculer au Nom d'affichage."
291
-
292
- #: ../../admin/config/index.php:52
293
- msgid "Show User Agent"
294
- msgstr "Voir User Agent"
295
-
296
- #: ../../admin/config/index.php:52
297
- msgid ""
298
- "Choose if you want to see the browser name or a complete user agent string "
299
- "when hovering on browser icons."
300
- msgstr ""
301
- "Choisissez si vous voulez voir le nom du navigateur ou une chaîne complete "
302
- "de user agent lorsque vous survolez les icônes du navigateur."
303
-
304
- #: ../../admin/config/index.php:53
305
- msgid "Show Titles"
306
- msgstr "Afficher les titres"
307
-
308
- #: ../../admin/config/index.php:53
309
- msgid ""
310
- "Slimstat converts your permalinks into post and page titles. Disable this "
311
- "feature if you need to see the URL in your reports."
312
- msgstr ""
313
- "WP SlimStat convertit vos permalinks en post et en titres de pages. "
314
- "Désactivez cette fonction si vous souhaitez conserver l'URL dans de vos "
315
- "rapports."
316
-
317
- #: ../../admin/config/index.php:54
318
- #, fuzzy
319
- msgid "Date Format"
320
- msgstr "Données et Formats"
321
-
322
- #: ../../admin/config/index.php:54
323
- #, fuzzy
324
- msgid ""
325
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
326
- "Format</a> to use when displaying a pageview's date."
327
- msgstr ""
328
- "<a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank"
329
- "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
330
- "vue."
331
-
332
- #: ../../admin/config/index.php:55
333
- #, fuzzy
334
- msgid "Time Format"
335
- msgstr "Format des nombres"
336
-
337
- #: ../../admin/config/index.php:55
338
- #, fuzzy
339
- msgid ""
340
- "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
341
- "Format</a> to use when displaying a pageview's time."
342
- msgstr ""
343
- "<a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank"
344
- "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
345
- "vue."
346
-
347
- #: ../../admin/config/index.php:57
348
- msgid "Functionality"
349
- msgstr "Fonctionnalité"
350
-
351
- #: ../../admin/config/index.php:58
352
- msgid "Asynchronous Views"
353
- msgstr "Vues asynchrones"
354
-
355
- #: ../../admin/config/index.php:58
356
- msgid ""
357
- "Load all the reports dynamically. It makes the reports render faster, but it "
358
- "increases the load on your server."
359
- msgstr ""
360
- "Utiliser Ajax pour charger dynamiquement les statistiques. Fait apparaitre "
361
- "les rapports plus rapidement, mais consomme plus de ressources sur le "
362
- "serveur."
363
-
364
- #: ../../admin/config/index.php:59
365
- msgid "SlimScroll"
366
- msgstr "SlimScroll"
367
-
368
- #: ../../admin/config/index.php:59
369
- msgid ""
370
- "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
371
- "scrollbar."
372
- msgstr ""
373
- "Activer SlimScroll, une librairie jQuery élégante qui remplace la barre de "
374
- "défilement par défaut des navigateurs."
375
-
376
- #: ../../admin/config/index.php:60
377
- msgid "Expand Details"
378
- msgstr "Développez les détails"
379
-
380
- #: ../../admin/config/index.php:60
381
- msgid "Expand each row's details by default, insted of on mousehover."
382
- msgstr ""
383
- "Développe les détails de chaque ligne par défaut, plutôt que sur survol de "
384
- "souris."
385
-
386
- #: ../../admin/config/index.php:61 ../../admin/config/index.php:65
387
- msgid "Rows to Display"
388
- msgstr "Colonnes à afficher"
389
-
390
- #: ../../admin/config/index.php:61
391
- msgid "Specify the number of items in each report."
392
- msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
393
-
394
- #: ../../admin/config/index.php:63
395
- msgid "Activity Log"
396
- msgstr "Statistiques de fréquentation"
397
-
398
- #: ../../admin/config/index.php:64
399
- msgid "Live Stream"
400
- msgstr "Flux en temps réel (Flux live)"
401
-
402
- #: ../../admin/config/index.php:64
403
- msgid ""
404
- "Enable the Live view, which refreshes the Activity Log every X seconds. "
405
- "Enter <strong>0</strong> (number zero) to deactivate this feature."
406
- msgstr ""
407
- "Actualisez la vue 'Maintenant' toutes les X secondes. Entrer <strong>0</"
408
- "strong> pour désactiver cette fonctionnalité."
409
-
410
- #: ../../admin/config/index.php:64 ../../admin/config/index.php:225
411
- msgid "seconds"
412
- msgstr "secondes"
413
-
414
- #: ../../admin/config/index.php:65
415
- msgid "Specify the number of items in the Activity Log."
416
- msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
417
-
418
- #: ../../admin/config/index.php:66
419
- msgid "Activity Log Extended"
420
- msgstr "Statistiques de fréquentation"
421
-
422
- #: ../../admin/config/index.php:66
423
- msgid ""
424
- "Choose if you want to see outbound links listed in the Activity Log. It "
425
- "might slow down the rendering of this report."
426
- msgstr ""
427
- "Choisissez si vous voulez voir les liens sortants affichés en dessous de "
428
- "Maintenant. Cela ralentit l'affichage du rapport ou donne des erreurs sur "
429
- "les systèmes plus lents."
430
-
431
- #: ../../admin/config/index.php:71
432
- msgid "Visitors and Known Users"
433
- msgstr "Visiteurs et utilisateurs connus"
434
-
435
- #: ../../admin/config/index.php:72
436
- msgid "Track Registered Users"
437
- msgstr "Tracer les utilisateurs enregistrés"
438
-
439
- #: ../../admin/config/index.php:72
440
- msgid "Enable this option to track logged in users."
441
- msgstr "Activez cette option pour tracer les utilisateurs connectés"
442
-
443
- #: ../../admin/config/index.php:73
444
- msgid "Blacklist by Username"
445
- msgstr "Liste noire basée sur le nom d'utilisateur"
446
-
447
- #: ../../admin/config/index.php:73
448
- msgid ""
449
- "List all the usernames you don't want to track, separated by commas. Please "
450
- "be aware that spaces are <em>not</em> ignored and that usernames are case "
451
- "sensitive."
452
- msgstr ""
453
- "Entrez une liste d'utilisateurs WordPress que vous ne voulez pas suivre, "
454
- "séparés par des virgules. Veuillez noter que les espaces <em>sont </em> pris "
455
- "en compte et que les noms d'utilisateurs sont sensibles à la casse. (min-maj)"
456
-
457
- #: ../../admin/config/index.php:74
458
- msgid "Blacklist by IP Address"
459
- msgstr "Liste noire par adresse IP"
460
-
461
- #: ../../admin/config/index.php:74
462
- msgid ""
463
- "List all the IP addresses you don't want to track, separated by commas. Each "
464
- "network <strong>must</strong> be defined using the <a href='http://en."
465
- "wikipedia.org/wiki/Classless_Inter-Domain_Routing' target='_blank'>CIDR "
466
- "notation</a> (i.e. <em>192.168.0.0/24</em>). This filter applies both to the "
467
- "public IP and the originating IP, if available."
468
- msgstr ""
469
- "Énumérer toutes les adresses IP que vous ne souhaitez pas suivre, séparés "
470
- "par des virgules. Chaque réseau <strong>doit</strong> être défini en "
471
- "utilisant le <a href='http://en.wikipedia.org/wiki/Classless_Inter-"
472
- "Domain_Routing' target='_blank'>CIDR notation</a> (par ex : "
473
- "<em>192.168.0.0/24</em>). Si le format est incorrect, WP SlimStat ne peut "
474
- "pas suivre correctement les pages vues."
475
-
476
- #: ../../admin/config/index.php:75
477
- msgid "Blacklist by Capability"
478
- msgstr "Blacklister par Capabilité WordPress"
479
-
480
- #: ../../admin/config/index.php:75
481
- msgid ""
482
- "Users having at least one of the <a href='http://codex.wordpress.org/"
483
- "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
484
- "will not be tracked. Capabilities are case-insensitive."
485
- msgstr ""
486
- "Les utilisateurs ayant au moins une des <a href='http://codex.wordpress.org/"
487
- "Roles_and_Capabilities' target='_new'>capacités</a> listées ci-dessous ne "
488
- "seront pas suivis. Les capacités sont insensibles à la casse."
489
-
490
- #: ../../admin/config/index.php:77
491
- msgid "Profiling"
492
- msgstr "Profiling"
493
-
494
- #: ../../admin/config/index.php:78
495
- msgid "Ignore Spammers"
496
- msgstr "Ignorer les spammeurs"
497
-
498
- #: ../../admin/config/index.php:78
499
- msgid ""
500
- "Enable this option if you don't want to track visits from users identified "
501
- "as spammers by third-party tools like Akismet. Pageviews generated by users "
502
- "whose comments are later marked as spam, will also be removed from the "
503
- "database."
504
- msgstr ""
505
- "Activez cette option si vous ne voulez pas suivre les visites des "
506
- "utilisateurs identifiés comme spammeurs par un outil tiers (par ex. "
507
- "Akismet). Les visites de personnes dont les commentaires sont ensuite marqué "
508
- "comme spam par vous, seront également supprimées de la base."
509
-
510
- #: ../../admin/config/index.php:79
511
- msgid "Permalinks"
512
- msgstr "Rermaliens"
513
-
514
- #: ../../admin/config/index.php:79
515
- msgid ""
516
- "List all the URLs on your website that you don't want to track, separated by "
517
- "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
518
- "Wildcards: <code>*</code> matches 'any string, including the empty string', "
519
- "<code>!</code> matches 'any character'. For example, <code>/abou*</code> "
520
- "will match /about and /abound, <code>/abo*t</code> will match /aboundant "
521
- "and /about, <code>/abo!t</code> will match /about and /abort. Strings are "
522
- "case-insensitive."
523
- msgstr ""
524
- "Liste de tous les URL que vous ne voulez pas suivre, séparées par des "
525
- "virgules. Ne pas inclure le nom de domaine: <em>/about, ?p=1</em>, etc. "
526
- "Caractères génériques: <code> * </code> signifie «n'importe quelle chaîne, y "
527
- "compris la chaîne vide\", <code>!</code> signifie «n'importe quel "
528
- "caractère». Par exemple, <code>/abou*</code> correspondra /about et /abound, "
529
- "<code>/abo*t</code> correspondra /aboundant et /about, <code>/abo!t </code > "
530
- "correspondra /about et /abort. Les chaînes sont insensibles à la casse."
531
-
532
- #: ../../admin/config/index.php:80
533
- msgid "Countries"
534
- msgstr "Pays"
535
-
536
- #: ../../admin/config/index.php:80
537
- msgid ""
538
- "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
539
- "track, separated by commas."
540
- msgstr ""
541
- "Listez tous les codes de pays (p. ex.: <code>en-us, it, es </code>) que vous "
542
- "ne voulez pas suivre, séparées par des virgules."
543
-
544
- #: ../../admin/config/index.php:81
545
- msgid "User Agents"
546
- msgstr "User Agents"
547
-
548
- #: ../../admin/config/index.php:81
549
- msgid ""
550
- "Browsers (user agents) you don't want to track, separated by commas. You can "
551
- "specify the browser's version adding a slash after the name (i.e. "
552
- "<em>Firefox/3.6</em>). Wildcards: <code>*</code> matches 'any string, "
553
- "including the empty string', <code>!</code> matches 'any character'. For "
554
- "example, <code>Chr*</code> will match Chrome and Chromium, <code>IE/!.0</"
555
- "code> will match IE/7.0 and IE/8.0. Strings are case-insensitive."
556
- msgstr ""
557
- "Entrez une liste de navigateurs (user agents), que vous ne voulez pas "
558
- "suivre, séparées par des virgules. Vous pouvez spécifier la version du "
559
- "navigateur en ajoutant une barre oblique après le nom (p. ex.: <em> "
560
- "Firefox/3.6 </em>). Caractères génériques: <code> * </code> signifie "
561
- "«n'importe quelle chaîne, y compris la chaîne vide\", <code>!</code> "
562
- "signifie «n'importe quel caractère». Par exemple, <code>Chr *</code> "
563
- "correspondra à Chrome et Chromium, <code>IE/!.0</Code> correspondra IE/7.0 "
564
- "et IE/8.0. Les chaînes sont insensibles à la casse."
565
-
566
- #: ../../admin/config/index.php:82
567
- msgid "Referring Sites"
568
- msgstr "Sites référents"
569
-
570
- #: ../../admin/config/index.php:82
571
- msgid ""
572
- "Referring URLs that you don't want to track, separated by commas: "
573
- "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
574
- "Wildcards: <code>*</code> matches 'any string, including the empty string', "
575
- "<code>!</code> matches 'any character'. Strings are case-insensitive. Please "
576
- "include either a wildcard or the protocol you want to filter (http://, "
577
- "https://)."
578
- msgstr ""
579
- "Entrez une liste d'URL référents que vous ne voulez pas suivre, séparés par "
580
- "des virgules: <code> http://mysite.com </code>, <code>*/ignore-me-please</"
581
- "code>, etc. Caractères génériques: <code>*</code> signifie «n'importe quelle "
582
- "chaîne, y compris la chaîne vide», <code>!</code> signifie «n'importe quel "
583
- "caractère». Les chaînes sont insensibles à la casse. S'il vous plaît inclure "
584
- "soit un caractère générique ou le protocole que vous voulez filtrer "
585
- "(http://, https://)."
586
-
587
- #: ../../admin/config/index.php:84
588
- #, fuzzy
589
- msgid "Internal and Outbound Links"
590
- msgstr "Liens sortants récents"
591
-
592
- #: ../../admin/config/index.php:85
593
- msgid "Track Outbound Clicks"
594
- msgstr "Tracer les liens sortants"
595
-
596
- #: ../../admin/config/index.php:85
597
- msgid ""
598
- "Track when your visitors click on link to external websites. This option "
599
- "required Spy Mode to be enabled."
600
- msgstr ""
601
- "Détectez vos visiteurs cliquant sur des liens pointant sur des sites "
602
- "externes. Cette fonctionnalité nécéssite que le Mode Espion soit activé."
603
-
604
- #: ../../admin/config/index.php:86
605
- #, fuzzy
606
- msgid "Track Coordinates"
607
- msgstr "Mode traçage"
608
-
609
- #: ../../admin/config/index.php:86
610
- msgid ""
611
- "Collect mouse coordinates and other information for clicks on internal "
612
- "links. Strongly recommended if you're using the heatmap add-on. By default, "
613
- "this information is only collected for external links."
614
- msgstr ""
615
-
616
- #: ../../admin/config/index.php:87
617
- #, fuzzy
618
- msgid "Ignore Classes"
619
- msgstr "Ignorer les utilisateurs"
620
-
621
- #: ../../admin/config/index.php:87
622
- msgid ""
623
- "Track the event but do not invoke the callback function on links marked with "
624
- "one of these classnames (separated by comma). Useful to prevent conflicts "
625
- "with lightbox and similar libraries."
626
- msgstr ""
627
-
628
- #: ../../admin/config/index.php:88
629
- #, fuzzy
630
- msgid "Ignore Rel"
631
- msgstr "Ignorer les utilisateurs"
632
-
633
- #: ../../admin/config/index.php:88
634
- msgid ""
635
- "Track the event but do not invoke the callback function on links having one "
636
- "of these values (separated by comma) as their <em>rel</em> attribute."
637
- msgstr ""
638
-
639
- #: ../../admin/config/index.php:89
640
- #, fuzzy
641
- msgid "Ignore URL"
642
- msgstr "Ignorer les utilisateurs"
643
-
644
- #: ../../admin/config/index.php:89
645
- msgid ""
646
- "Track the event but do not invoke the callback function on links whose "
647
- "<em>href</em> attribute contains one of these strings (separated by comma)."
648
- msgstr ""
649
-
650
- #: ../../admin/config/index.php:91 ../../admin/config/index.php:242
651
- msgid "Miscellaneous"
652
- msgstr "Divers"
653
-
654
- #: ../../admin/config/index.php:92
655
- msgid "Enable Privacy Mode"
656
- msgstr "Activer le mode privé"
657
-
658
- #: ../../admin/config/index.php:92
659
- msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
660
- msgstr ""
661
- "Cette option masque l'adresse IP de vos visiteurs afin de se conformer aux "
662
- "lois de confidentialité européennes."
663
-
664
- #: ../../admin/config/index.php:93
665
- msgid "Ignore Prefetch Requests"
666
- msgstr "Ignorer les requêtes anticipées"
667
-
668
- #: ../../admin/config/index.php:93
669
- msgid ""
670
- "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
671
- "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
672
- "target='_blank'>Link Prefetching functionality</a>."
673
- msgstr ""
674
- "Activer ce filtre si vous voulez éviter à WP SlimStat le suivi des pages "
675
- "vues générées par Firefox <a href='https://developer.mozilla.org/en/"
676
- "Link_prefetching_FAQ' target='_blank'>Link Prefetching functionality</a>."
677
-
678
- #: ../../admin/config/index.php:109
679
- msgid "Ignore users (username not found)"
680
- msgstr "Utilisateur inconnu (nom d'utilisateur non trouvé)"
681
-
682
- #: ../../admin/config/index.php:132
683
- msgid ""
684
- "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
685
- "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
686
- msgstr ""
687
- "Capacité invalide. Rendez-vous <a href=\"http://codex.wordpress.org/"
688
- "Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
689
- "d'informations"
690
-
691
- #: ../../admin/config/index.php:142
692
- msgid "Reports"
693
- msgstr "Rapports"
694
-
695
- #: ../../admin/config/index.php:143
696
- msgid "Restrict Authors"
697
- msgstr "Restriction Auteurs"
698
-
699
- #: ../../admin/config/index.php:143
700
- msgid ""
701
- "Enable this option if you want your authors to only see stats related to "
702
- "their own content."
703
- msgstr ""
704
- "Activez cette option si vous voulez que vos auteurs ne voient que les "
705
- "statistiques relatives à leur propre contenu."
706
-
707
- #: ../../admin/config/index.php:144 ../../admin/config/index.php:148
708
- msgid "Capability"
709
- msgstr "Aptitude"
710
-
711
- #: ../../admin/config/index.php:144
712
- msgid ""
713
- "Specify the minimum <a href='http://codex.wordpress.org/"
714
- "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
715
- "reports (default: <code>activate_plugins</code>). If this field is empty, "
716
- "<strong>all your users</strong> (including subscribers) will have access to "
717
- "the reports, unless a 'Read access' whitelist has been specified here below. "
718
- "In this case, the list has precedence over the capability."
719
- msgstr ""
720
- "Définir la <a href='http://codex.wordpress.org/Roles_and_Capabilities' "
721
- "target='_new'>capacité</a> minimum nécessaire pour visualiser les rapports "
722
- "(par défaut: <code>read</code>). Si ce champ est vide, <strong>tous vos "
723
- "utilisateurs</strong> (y compris les abonnés) auront accès aux rapports, "
724
- "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
725
- "Dans ce cas, la liste a la priorité sur la capacité."
726
-
727
- #: ../../admin/config/index.php:145 ../../admin/config/index.php:149
728
- msgid "Whitelist"
729
- msgstr "Liste blanche"
730
-
731
- #: ../../admin/config/index.php:145
732
- msgid ""
733
- "List all the users who should have access to the reports, separated by "
734
- "commas. Administrators are implicitly allowed, so you don't need to list "
735
- "them in here. Usernames are case sensitive."
736
- msgstr ""
737
- "Lister tous les utilisateurs qui peuvent voir les rapports de WP SlimStat, "
738
- "séparées par des virgules. Les administrateurs sont implicitement autorisés, "
739
- "de sorte que vous n'avez pas besoin de les énumérer ici. Si ce champ est "
740
- "vide, <strong>tous vos utilisateurs</strong> sont autorisés à accéder. Les "
741
- "noms d'utilisateurs sont sensibles à la casse."
742
-
743
- #: ../../admin/config/index.php:148
744
- msgid ""
745
- "Specify the minimum <a href='http://codex.wordpress.org/"
746
- "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
747
- "Slimstat (default: <code>activate_plugins</code>). The whitelist here below "
748
- "can be used to override this option for specific users."
749
- msgstr ""
750
- "Définir la <a href='http://codex.wordpress.org/Roles_and_Capabilities' "
751
- "target='_new'>capacité</a> minimum nécessaire pour visualiser les rapports "
752
- "(par défaut: <code>read</code>). Si ce champ est vide, <strong>tous vos "
753
- "utilisateurs</strong> (y compris les abonnés) auront accès aux rapports, "
754
- "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
755
- "Dans ce cas, la liste a la priorité sur la capacité."
756
-
757
- #: ../../admin/config/index.php:149
758
- msgid ""
759
- "List all the users who can edit these options, separated by commas. Please "
760
- "be advised that admins <strong>are not</strong> implicitly allowed, so do "
761
- "not forget to include yourself! Usernames are case sensitive."
762
- msgstr ""
763
- "Lister tous les utilisateurs qui peuvent modifier ces options, séparés par "
764
- "des virgules. Veuillez noter que les administrateurs <strong>ne sont pas</"
765
- "strong> implicitement autorisés, alors n'oubliez pas, vous même, de vous "
766
- "inscrire! Les noms d'utilisateurs sont sensibles à la casse. (Majuscules-"
767
- "minuscules)"
768
-
769
- #: ../../admin/config/index.php:165
770
- msgid "Read access: username not found"
771
- msgstr "Accès lecture : username inexistant"
772
-
773
- #: ../../admin/config/index.php:178 ../../admin/config/index.php:209
774
- msgid ""
775
- "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
776
- "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
777
- "information"
778
- msgstr ""
779
- "Capacité Minimum invalide. Rendez-vous sur <a href=\"http://codex.wordpress."
780
- "org/Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
781
- "d'informations"
782
-
783
- #: ../../admin/config/index.php:196
784
- msgid "Config access: username not found"
785
- msgstr "Accès configuration : username inexistant"
786
-
787
- #: ../../admin/config/index.php:224
788
- msgid "Detect Smoothing"
789
- msgstr "Détecter Lissage"
790
-
791
- #: ../../admin/config/index.php:224
792
- msgid ""
793
- "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
794
- "This option required Spy Mode to be enabled."
795
- msgstr ""
796
- "Active une fonction côté client pour détecter si le navigateur du visiteur "
797
- "supporte l'anti-crénelage (lissage des polices). Si les Capacités du "
798
- "navigateur ne sont pas tracées, ce paramètre est ignoré."
799
-
800
- #: ../../admin/config/index.php:225
801
- msgid "Session Duration"
802
- msgstr "Durée session"
803
-
804
- #: ../../admin/config/index.php:225
805
- msgid ""
806
- "How many seconds should a human session last? Google Analytics sets it to "
807
- "1800 seconds."
808
- msgstr ""
809
- "Définit le nombre de secondes qu'une visite devrait durer. Google Analytics "
810
- "fixe cette durée à 1800 secondes."
811
-
812
- #: ../../admin/config/index.php:226
813
- msgid "Extend Session"
814
- msgstr "Etendre la session"
815
-
816
- #: ../../admin/config/index.php:226
817
- msgid "Extend the duration of a session each time the user visits a new page."
818
- msgstr ""
819
- "Prolonger la durée d'une session à chaque fois que l'utilisateur visite une "
820
- "page."
821
-
822
- #: ../../admin/config/index.php:227
823
- msgid "Enable CDN"
824
- msgstr "Activer CDN"
825
-
826
- #: ../../admin/config/index.php:227
827
- msgid ""
828
- "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
829
- "by serving our tracking code from their fast and reliable network (free "
830
- "service)."
831
- msgstr ""
832
- "Permet <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a> 's "
833
- "CDN, en servant le traqueur Javascript WP SlimStat à partir de leur réseau "
834
- "rapide et fiable."
835
-
836
- #: ../../admin/config/index.php:228
837
- msgid "Extensions to Track"
838
- msgstr "Extensions du traçage"
839
-
840
- #: ../../admin/config/index.php:228
841
- msgid ""
842
- "List all the file extensions that you want to be treated as Downloads. "
843
- "Please note that links pointing to external resources (i.e. PDFs on a "
844
- "different website) are considered Downloads and not Outbound Links (and "
845
- "tracked as such), if their extension matches one of the ones listed here "
846
- "below."
847
- msgstr ""
848
- "Les extensions de fichiers suivants (valeurs séparées par des virgules pour "
849
- "être répertoriées) seront suivis comme Téléchargements par WP SlimStat. "
850
- "Veuillez noter que les liens pointant vers des ressources externes (par ex. "
851
- "fichiers PDF sur un autre site) sont considérés comme Téléchargements et non "
852
- "comme liens sortants (et suivis en tant que tel), si leur extension "
853
- "correspond à l'une de celles qui sont énumérées ci-dessous."
854
-
855
- #: ../../admin/config/index.php:230
856
- msgid "External Pages"
857
- msgstr "Pages externes"
858
-
859
- #: ../../admin/config/index.php:231
860
- msgid "Add the following code to all the non-WP pages you want to track"
861
- msgstr ""
862
- "Ajouter le code suivant à toutes les pages non-WordPress que vous souhaitez "
863
- "suivre."
864
-
865
- #: ../../admin/config/index.php:243
866
- msgid "Debug Mode"
867
- msgstr "Mode Debug"
868
-
869
- #: ../../admin/config/index.php:243
870
- msgid "Display the SQL queries used to retrieve the data."
871
- msgstr "Afficher les requêtes SQL utilisées pour extraire les données."
872
-
873
- #: ../../admin/config/index.php:244
874
- msgid "IP Lookup"
875
- msgstr "Recherche d'IP"
876
-
877
- #: ../../admin/config/index.php:244
878
- msgid "Customize the Geolocation service to be used in the reports."
879
- msgstr ""
880
- "Personnaliser le service de Géolocalisation à utiliser dans les rapports."
881
-
882
- #: ../../admin/config/index.php:245
883
- msgid "Custom CSS"
884
- msgstr "Personnaliser le style CSS"
885
-
886
- #: ../../admin/config/index.php:245
887
- msgid ""
888
- "Paste here your custom stylesheet to personalize the way your reports look. "
889
- "<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
890
- "target='_blank'>Check the FAQ</a> for more information on how to use this "
891
- "setting."
892
- msgstr ""
893
- "Collez ici votre feuille de style, afin de personnaliser la présentation de "
894
- "vos rapports. <a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
895
- "target='_blank'>Consultez les FAQs</a> pour plus d'informations sur la façon "
896
- "d'utiliser cette fonctionnalité."
897
-
898
- #: ../../admin/config/index.php:246
899
- msgid "Enable UAN"
900
- msgstr "Activer UAN"
901
-
902
- #: ../../admin/config/index.php:246
903
- msgid ""
904
- "Send anonymous data about user agents to our server for analysis. This "
905
- "allows us to contribute to the <a href='http://browscap.org/' "
906
- "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
907
- "Slimstat's browser detection functionality. It also enables our transparent "
908
- "ads network. No worries, your site will not be affected in any way."
909
- msgstr ""
910
- "Envoyer des données anonymes concernant les navigateurs inconnus à nos "
911
- "serveurs pour analyse. Cela nous permet de contribuer au <a href='http://"
912
- "browscap.org/' target='_blank'> projet opensource BrowsCap, et d'améliorer "
913
- "la pertinence de la fonctionnalité de WPStats concernant les navigateurs web."
914
-
915
- #: ../../admin/config/maintenance.php:20
916
- msgid "Your Slimstat tables have been successfully converted to InnoDB."
917
- msgstr "Vos tables WP SlimStat ont été converties en InnoDB avec succès."
918
-
919
- #: ../../admin/config/maintenance.php:30
920
- msgid "records deleted from your database."
921
- msgstr "enregistrements supprimés de votre base de données."
922
-
923
- #: ../../admin/config/maintenance.php:37
924
- msgid "All the records were successfully deleted."
925
- msgstr "Tous les enregistrements ont bien été supprimés"
926
-
927
- #: ../../admin/config/maintenance.php:42
928
- #, fuzzy
929
- msgid "All the archived records were successfully deleted."
930
- msgstr "Tous les enregistrements ont bien été supprimés"
931
-
932
- #: ../../admin/config/maintenance.php:51
933
- #, fuzzy
934
- msgid "All the archived records were successfully restored."
935
- msgstr "Tous les enregistrements ont bien été supprimés"
936
-
937
- #: ../../admin/config/maintenance.php:55
938
- msgid "Your reports were successfully restored to their default arrangement."
939
- msgstr ""
940
- "Vos rapports ont été réinitialisés avec succès dans leur configuration par "
941
- "défaut."
942
-
943
- #: ../../admin/config/maintenance.php:62
944
- msgid ""
945
- "Congrats! Slimstat is now optimized for <a href=\"http://www.youtube.com/"
946
- "watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
947
- msgstr ""
948
- "Félicitations ! WP SlimStat est à présent optimisé pour <a href=\"http://www."
949
- "youtube.com/watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
950
-
951
- #: ../../admin/config/maintenance.php:69
952
- msgid ""
953
- "Indexing has been successfully disabled. Enjoy the extra database space you "
954
- "just gained!"
955
- msgstr ""
956
- "L'indexation a bien été désactivée. Profitez bien de l'espace supplémentaire "
957
- "que vous venez de gagner !"
958
-
959
- #: ../../admin/config/maintenance.php:101
960
- msgid "Database Information"
961
- msgstr "Informations de base de données"
962
-
963
- #: ../../admin/config/maintenance.php:104
964
- msgid "Engine"
965
- msgstr "Moteur"
966
-
967
- #: ../../admin/config/maintenance.php:108
968
- msgid "switch to InnoDB"
969
- msgstr "changer pour InnoDB"
970
-
971
- #: ../../admin/config/maintenance.php:119
972
- msgid "records"
973
- msgstr "Enregistrements"
974
-
975
- #: ../../admin/config/maintenance.php:124
976
- msgid "Data Maintenance"
977
- msgstr "Maintenance des données"
978
-
979
- #: ../../admin/config/maintenance.php:127
980
- msgid "Delete pageviews where"
981
- msgstr "Supprimer les pages où"
982
-
983
- #: ../../admin/config/maintenance.php:141 ../../admin/view/index.php:15
984
- msgid "equals"
985
- msgstr "est égal à"
986
-
987
- #: ../../admin/config/maintenance.php:142 ../../admin/view/index.php:16
988
- msgid "is not equal to"
989
- msgstr "n'est pas égal à"
990
-
991
- #: ../../admin/config/maintenance.php:143 ../../admin/view/index.php:17
992
- msgid "contains"
993
- msgstr "contient"
994
-
995
- #: ../../admin/config/maintenance.php:144 ../../admin/view/index.php:18
996
- msgid "does not contain"
997
- msgstr "ne contient pas"
998
-
999
- #: ../../admin/config/maintenance.php:145 ../../admin/view/index.php:19
1000
- msgid "starts with"
1001
- msgstr "commence par"
1002
-
1003
- #: ../../admin/config/maintenance.php:146 ../../admin/view/index.php:20
1004
- msgid "ends with"
1005
- msgstr "finit par"
1006
-
1007
- #: ../../admin/config/maintenance.php:147 ../../admin/view/index.php:21
1008
- msgid "sounds like"
1009
- msgstr "ressemble à"
1010
-
1011
- #: ../../admin/config/maintenance.php:148 ../../admin/view/index.php:22
1012
- msgid "is greater than"
1013
- msgstr "est plus grand que"
1014
-
1015
- #: ../../admin/config/maintenance.php:149 ../../admin/view/index.php:23
1016
- msgid "is less than"
1017
- msgstr "est plus petit que"
1018
-
1019
- #: ../../admin/config/maintenance.php:150 ../../admin/view/index.php:25
1020
- msgid "matches"
1021
- msgstr "correspond à"
1022
-
1023
- #: ../../admin/config/maintenance.php:151 ../../admin/view/index.php:26
1024
- msgid "does not match"
1025
- msgstr "ne correspond pas à"
1026
-
1027
- #: ../../admin/config/maintenance.php:152 ../../admin/view/index.php:27
1028
- msgid "is empty"
1029
- msgstr "est vide"
1030
-
1031
- #: ../../admin/config/maintenance.php:153 ../../admin/view/index.php:28
1032
- msgid "is not empty"
1033
- msgstr "n'est pas vide"
1034
-
1035
- #: ../../admin/config/maintenance.php:156 ../../admin/view/index.php:40
1036
- #: ../../admin/view/index.php:103
1037
- msgid "Apply"
1038
- msgstr "Appliquer"
1039
-
1040
- #: ../../admin/config/maintenance.php:157
1041
- msgid ""
1042
- "Are you sure you want to PERMANENTLY delete these records from your database?"
1043
- msgstr ""
1044
- "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT ces enregistrement de "
1045
- "votre base de données ?"
1046
-
1047
- #: ../../admin/config/maintenance.php:162
1048
- msgid "Truncate Tables"
1049
- msgstr ""
1050
-
1051
- #: ../../admin/config/maintenance.php:165
1052
- msgid ""
1053
- "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1054
- "database?"
1055
- msgstr ""
1056
- "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1057
- "votre base de données ?"
1058
-
1059
- #: ../../admin/config/maintenance.php:165
1060
- #, fuzzy
1061
- msgid "Delete All Records"
1062
- msgstr "Supprimer toutes les pages vues"
1063
-
1064
- #: ../../admin/config/maintenance.php:166
1065
- #, fuzzy
1066
- msgid ""
1067
- "Erase all the information collected so far by Slimstat, including the "
1068
- "archive. This operation <strong>does not</strong> reset your settings."
1069
- msgstr ""
1070
- "Effacer les informations collecter par WP Slimstat jusqu'à present. Cette "
1071
- "opération <strong>ne réinitialise pas </strong>vos paramétrages."
1072
-
1073
- #: ../../admin/config/maintenance.php:170
1074
- msgid "Restore archive"
1075
- msgstr ""
1076
-
1077
- #: ../../admin/config/maintenance.php:173
1078
- #, fuzzy
1079
- msgid "Are you sure you want to restore all the archived pageviews?"
1080
- msgstr ""
1081
- "Etes-vous sûr de vouloir supprimer toutes les informations concernant vos "
1082
- "hits et visites?"
1083
-
1084
- #: ../../admin/config/maintenance.php:173
1085
- msgid "Get 'em back"
1086
- msgstr ""
1087
-
1088
- #: ../../admin/config/maintenance.php:174
1089
- msgid ""
1090
- "Move all the archived pageviews back to the main Slimstat table. Please note "
1091
- "that, unless you disabled the daily purge, this data will be archived again "
1092
- "at the next scheduled clean-up."
1093
- msgstr ""
1094
-
1095
- #: ../../admin/config/maintenance.php:178
1096
- #, fuzzy
1097
- msgid "Empty Archive"
1098
- msgstr "Mois"
1099
-
1100
- #: ../../admin/config/maintenance.php:181
1101
- #, fuzzy
1102
- msgid ""
1103
- "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1104
- "archive?"
1105
- msgstr ""
1106
- "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1107
- "votre base de données ?"
1108
-
1109
- #: ../../admin/config/maintenance.php:181
1110
- #, fuzzy
1111
- msgid "Delete Archive"
1112
- msgstr "Filtrer les pages vues pour que"
1113
-
1114
- #: ../../admin/config/maintenance.php:182
1115
- msgid "Erase all the archived records. This operation cannot be undone."
1116
- msgstr ""
1117
-
1118
- #: ../../admin/config/maintenance.php:186
1119
- msgid "Performance"
1120
- msgstr "Performance"
1121
-
1122
- #: ../../admin/config/maintenance.php:189
1123
- msgid "Improve Performance"
1124
- msgstr "Improve la performance"
1125
-
1126
- #: ../../admin/config/maintenance.php:190
1127
- msgid ""
1128
- "Please note that you will need about 30% more DB space to store the extra "
1129
- "information required."
1130
- msgstr ""
1131
- "Vous aurez besoin d'environ 30% de plus d'espace de base de données pour "
1132
- "stocker les informations supplémentaires nécessaires."
1133
-
1134
- #: ../../admin/config/maintenance.php:194
1135
- msgid "Save DB Space"
1136
- msgstr "Gagner de l'espace sur la taille de votre base de données"
1137
-
1138
- #: ../../admin/config/maintenance.php:195
1139
- msgid ""
1140
- "Please note that by removing table indexes, Slimstat's performance will be "
1141
- "affected."
1142
- msgstr ""
1143
- "Merci de noter qu'en supprimant les indexes, les performances de WP "
1144
- "SlimStats seront impactées."
1145
-
1146
- #: ../../admin/config/maintenance.php:200
1147
- msgid "Import and Export"
1148
- msgstr "Import-Export"
1149
-
1150
- #: ../../admin/config/maintenance.php:204
1151
- msgid ""
1152
- "Here below you can find the current configuration string for Slimstat. You "
1153
- "can update your settings by pasting a new string here below and clicking on "
1154
- "Import."
1155
- msgstr ""
1156
- "Ci-après vous trouverez la configuration actuelle de la ligne de "
1157
- "configuration. Vous pouvez mettre à jour vos réglages en collant une "
1158
- "nouvelle ligne ci-après et en cliquant sur Import."
1159
-
1160
- #: ../../admin/config/maintenance.php:209
1161
- msgid "Import"
1162
- msgstr "Importer"
1163
-
1164
- #: ../../admin/config/maintenance.php:210
1165
- msgid "Are you sure you want to OVERWRITE your current settings?"
1166
- msgstr "Etes-vous sûr que vous voulez réinitialiser vos onglets?"
1167
-
1168
- #: ../../admin/lang/dynamic_strings.php:3
1169
- msgid "xx"
1170
- msgstr "xx"
1171
-
1172
- #: ../../admin/lang/dynamic_strings.php:4
1173
- msgid "unknown"
1174
- msgstr "Inconnu"
1175
-
1176
- #: ../../admin/lang/dynamic_strings.php:5
1177
- msgid "win8.1"
1178
- msgstr "Windows 8.1"
1179
-
1180
- #: ../../admin/lang/dynamic_strings.php:6
1181
- msgid "win8"
1182
- msgstr "Windows 8"
1183
-
1184
- # Windows 7
1185
- #: ../../admin/lang/dynamic_strings.php:7
1186
- msgid "win7"
1187
- msgstr "Windows 7"
1188
-
1189
- # Windows Vista
1190
- #: ../../admin/lang/dynamic_strings.php:8
1191
- msgid "winvista"
1192
- msgstr "Windows Vista"
1193
-
1194
- # Windows 2003
1195
- #: ../../admin/lang/dynamic_strings.php:9
1196
- msgid "win2003"
1197
- msgstr "Windows 2003"
1198
-
1199
- # Windows XP
1200
- #: ../../admin/lang/dynamic_strings.php:10
1201
- msgid "winxp"
1202
- msgstr "Windows XP"
1203
-
1204
- # Windows NT
1205
- #: ../../admin/lang/dynamic_strings.php:11
1206
- msgid "winnt"
1207
- msgstr "Windows NT"
1208
-
1209
- # Windows 2000
1210
- #: ../../admin/lang/dynamic_strings.php:12
1211
- msgid "win2000"
1212
- msgstr "Windows 2000"
1213
-
1214
- # Windows ME
1215
- #: ../../admin/lang/dynamic_strings.php:13
1216
- msgid "winme"
1217
- msgstr "Windows ME"
1218
-
1219
- # Windows 98
1220
- #: ../../admin/lang/dynamic_strings.php:14
1221
- msgid "win98"
1222
- msgstr "Windows 98"
1223
-
1224
- # Windows 95
1225
- #: ../../admin/lang/dynamic_strings.php:15
1226
- msgid "win95"
1227
- msgstr "Windows 95"
1228
-
1229
- # Windows 3.1
1230
- #: ../../admin/lang/dynamic_strings.php:16
1231
- msgid "win31"
1232
- msgstr "Windows 3.1"
1233
-
1234
- # Windows 32-bit
1235
- #: ../../admin/lang/dynamic_strings.php:17
1236
- msgid "win32"
1237
- msgstr "Windows 32-bit"
1238
-
1239
- # Windows 16-bit
1240
- #: ../../admin/lang/dynamic_strings.php:18
1241
- msgid "win16"
1242
- msgstr "Windows 16-bit"
1243
-
1244
- # Mac 68K
1245
- #: ../../admin/lang/dynamic_strings.php:19
1246
- msgid "mac68k"
1247
- msgstr "Mac 68K"
1248
-
1249
- # Mac OS X
1250
- #: ../../admin/lang/dynamic_strings.php:20
1251
- msgid "macosx"
1252
- msgstr "Mac OS X"
1253
-
1254
- # Mac PowerPC
1255
- #: ../../admin/lang/dynamic_strings.php:21
1256
- msgid "macppc"
1257
- msgstr "Mac PowerPC"
1258
-
1259
- # Mac
1260
- #: ../../admin/lang/dynamic_strings.php:22
1261
- msgid "mac"
1262
- msgstr "Mac"
1263
-
1264
- # IBM OS/2
1265
- #: ../../admin/lang/dynamic_strings.php:23
1266
- msgid "os/2"
1267
- msgstr "IBM OS/2"
1268
-
1269
- # Sun OS
1270
- #: ../../admin/lang/dynamic_strings.php:24
1271
- msgid "sunos"
1272
- msgstr "Sun OS"
1273
-
1274
- # Solaris
1275
- #: ../../admin/lang/dynamic_strings.php:25
1276
- msgid "solaris"
1277
- msgstr "Solaris"
1278
-
1279
- # UNIX
1280
- #: ../../admin/lang/dynamic_strings.php:26
1281
- msgid "unix"
1282
- msgstr "UNIX"
1283
-
1284
- # IRIX
1285
- #: ../../admin/lang/dynamic_strings.php:27
1286
- msgid "irix"
1287
- msgstr "IRIX"
1288
-
1289
- # HP-UX
1290
- #: ../../admin/lang/dynamic_strings.php:28
1291
- msgid "hp-ux"
1292
- msgstr "HP-UX"
1293
-
1294
- # IBM AIX
1295
- #: ../../admin/lang/dynamic_strings.php:29
1296
- msgid "aix"
1297
- msgstr "IBM AIX"
1298
-
1299
- # BeOS
1300
- #: ../../admin/lang/dynamic_strings.php:30
1301
- msgid "beos"
1302
- msgstr "BeOS"
1303
-
1304
- # Cygwin
1305
- #: ../../admin/lang/dynamic_strings.php:31
1306
- msgid "cygwin"
1307
- msgstr "Cygwin"
1308
-
1309
- # Digital Unix
1310
- #: ../../admin/lang/dynamic_strings.php:32
1311
- msgid "digital unix"
1312
- msgstr "Digital Unix"
1313
-
1314
- # Risc OS
1315
- #: ../../admin/lang/dynamic_strings.php:33
1316
- msgid "risc os"
1317
- msgstr "Risc OS"
1318
-
1319
- # openVMS
1320
- #: ../../admin/lang/dynamic_strings.php:34
1321
- msgid "openvms"
1322
- msgstr "openVMS"
1323
-
1324
- # Linux
1325
- #: ../../admin/lang/dynamic_strings.php:35
1326
- msgid "linux"
1327
- msgstr "Linux"
1328
-
1329
- # freeBSD
1330
- #: ../../admin/lang/dynamic_strings.php:36
1331
- msgid "freebsd"
1332
- msgstr "freeBSD"
1333
-
1334
- # openBSD
1335
- #: ../../admin/lang/dynamic_strings.php:37
1336
- msgid "openbsd"
1337
- msgstr "openBSD"
1338
-
1339
- # netBSD
1340
- #: ../../admin/lang/dynamic_strings.php:38
1341
- msgid "netbsd"
1342
- msgstr "netBSD"
1343
-
1344
- # Debian
1345
- #: ../../admin/lang/dynamic_strings.php:39
1346
- msgid "debian"
1347
- msgstr "Debian"
1348
-
1349
- # Amiga
1350
- #: ../../admin/lang/dynamic_strings.php:40
1351
- msgid "amiga"
1352
- msgstr "Amiga"
1353
-
1354
- # Android
1355
- #: ../../admin/lang/dynamic_strings.php:41
1356
- msgid "android"
1357
- msgstr "Android"
1358
-
1359
- # WyderOS
1360
- #: ../../admin/lang/dynamic_strings.php:42
1361
- msgid "wyderos"
1362
- msgstr "WyderOS"
1363
-
1364
- # iPhone
1365
- #: ../../admin/lang/dynamic_strings.php:43
1366
- msgid "iphone osx"
1367
- msgstr "iPhone"
1368
-
1369
- #: ../../admin/lang/dynamic_strings.php:44
1370
- msgid "ios"
1371
- msgstr "Apple iOS"
1372
-
1373
- # Palm
1374
- #: ../../admin/lang/dynamic_strings.php:45
1375
- msgid "palm"
1376
- msgstr "Palm"
1377
-
1378
- # WAP
1379
- #: ../../admin/lang/dynamic_strings.php:46
1380
- msgid "wap"
1381
- msgstr "WAP"
1382
-
1383
- # Java
1384
- #: ../../admin/lang/dynamic_strings.php:47
1385
- msgid "java"
1386
- msgstr "Java"
1387
-
1388
- # iPhone
1389
- #: ../../admin/lang/dynamic_strings.php:48
1390
- msgid "winphone7"
1391
- msgstr "Windows Phone"
1392
-
1393
- # Windows CE
1394
- #: ../../admin/lang/dynamic_strings.php:49
1395
- msgid "wince"
1396
- msgstr "Windows CE"
1397
-
1398
- # Symbian OS
1399
- #: ../../admin/lang/dynamic_strings.php:50
1400
- msgid "symbianos"
1401
- msgstr "Symbian OS"
1402
-
1403
- #: ../../admin/lang/dynamic_strings.php:51
1404
- msgid "blackberry os"
1405
- msgstr "BlackBerry OS"
1406
-
1407
- # webOS
1408
- #: ../../admin/lang/dynamic_strings.php:52
1409
- msgid "webos"
1410
- msgstr "webOS"
1411
-
1412
- #: ../../admin/lang/dynamic_strings.php:53
1413
- msgid "p-and"
1414
- msgstr "Android"
1415
-
1416
- #: ../../admin/lang/dynamic_strings.php:54
1417
- msgid "p-bla"
1418
- msgstr "BlackBerry"
1419
-
1420
- #: ../../admin/lang/dynamic_strings.php:55
1421
- msgid "p-chr"
1422
- msgstr "Chrome OS"
1423
-
1424
- #: ../../admin/lang/dynamic_strings.php:56
1425
- msgid "p-fre"
1426
- msgstr "Linux FreeBSD"
1427
-
1428
- #: ../../admin/lang/dynamic_strings.php:57
1429
- msgid "p-ios"
1430
- msgstr "Apple iOS"
1431
-
1432
- #: ../../admin/lang/dynamic_strings.php:58
1433
- msgid "p-jav"
1434
- msgstr "Java-based OS"
1435
-
1436
- #: ../../admin/lang/dynamic_strings.php:59
1437
- msgid "p-lin"
1438
- msgstr "Linux"
1439
-
1440
- #: ../../admin/lang/dynamic_strings.php:60
1441
- msgid "p-mac"
1442
- msgstr "Apple"
1443
-
1444
- #: ../../admin/lang/dynamic_strings.php:61
1445
- msgid "p-sym"
1446
- msgstr "Symbian OS"
1447
-
1448
- #: ../../admin/lang/dynamic_strings.php:62
1449
- msgid "p-unk"
1450
- msgstr "Unknown"
1451
-
1452
- #: ../../admin/lang/dynamic_strings.php:63
1453
- msgid "p-win"
1454
- msgstr "Microsoft"
1455
-
1456
- # PowerTV
1457
- #: ../../admin/lang/dynamic_strings.php:64
1458
- msgid "powertv"
1459
- msgstr "PowerTV"
1460
-
1461
- #: ../../admin/lang/dynamic_strings.php:65
1462
- msgid "acrobat"
1463
- msgstr "Acrobat Reader"
1464
-
1465
- #: ../../admin/lang/dynamic_strings.php:66
1466
- msgid "director"
1467
- msgstr "Macromedia Director"
1468
-
1469
- #: ../../admin/lang/dynamic_strings.php:67
1470
- msgid "flash"
1471
- msgstr "Flash"
1472
-
1473
- #: ../../admin/lang/dynamic_strings.php:68
1474
- msgid "mediaplayer"
1475
- msgstr "Media Player"
1476
-
1477
- #: ../../admin/lang/dynamic_strings.php:69
1478
- msgid "quicktime"
1479
- msgstr "Quicktime"
1480
-
1481
- #: ../../admin/lang/dynamic_strings.php:70
1482
- msgid "real"
1483
- msgstr "Real Player"
1484
-
1485
- #: ../../admin/lang/dynamic_strings.php:71
1486
- msgid "silverlight"
1487
- msgstr "Silverlight"
1488
-
1489
- # Afrikaans
1490
- #: ../../admin/lang/dynamic_strings.php:72
1491
- msgid "l-af"
1492
- msgstr "Afrikaans"
1493
-
1494
- # Afrikaans
1495
- #: ../../admin/lang/dynamic_strings.php:73
1496
- msgid "l-af-za"
1497
- msgstr "Afrikaans"
1498
-
1499
- # Arabic
1500
- #: ../../admin/lang/dynamic_strings.php:74
1501
- msgid "l-ar"
1502
- msgstr "Arabe"
1503
-
1504
- # Arabic (United Arab Emirates)
1505
- #: ../../admin/lang/dynamic_strings.php:75
1506
- msgid "l-ar-ae"
1507
- msgstr "Arabe (Émirats arabes unis)"
1508
-
1509
- # Arabic (Bahrain)
1510
- #: ../../admin/lang/dynamic_strings.php:76
1511
- msgid "l-ar-bh"
1512
- msgstr "Arabe (Bahreïn)"
1513
-
1514
- # Arabic (Algeria)
1515
- #: ../../admin/lang/dynamic_strings.php:77
1516
- msgid "l-ar-dz"
1517
- msgstr "Arabe (Algérie)"
1518
-
1519
- # Arabic (Egypt)
1520
- #: ../../admin/lang/dynamic_strings.php:78
1521
- msgid "l-ar-eg"
1522
- msgstr "Arabe (Égypte)"
1523
-
1524
- # Arabic (Iraq)
1525
- #: ../../admin/lang/dynamic_strings.php:79
1526
- msgid "l-ar-iq"
1527
- msgstr "Arabe (Irak)"
1528
-
1529
- # Arabic (Jordan)
1530
- #: ../../admin/lang/dynamic_strings.php:80
1531
- msgid "l-ar-jo"
1532
- msgstr "Arabe (Jordanie)"
1533
-
1534
- # Arabic (Kuwait)
1535
- #: ../../admin/lang/dynamic_strings.php:81
1536
- msgid "l-ar-kw"
1537
- msgstr "Arabe (Koweït)"
1538
-
1539
- # Arabic (Lebanon)
1540
- #: ../../admin/lang/dynamic_strings.php:82
1541
- msgid "l-ar-lb"
1542
- msgstr "Arabe (Liban)"
1543
-
1544
- # Arabic (Libya)
1545
- #: ../../admin/lang/dynamic_strings.php:83
1546
- msgid "l-ar-ly"
1547
- msgstr "Arabe (Libye)"
1548
-
1549
- # Arabic (Morocco)
1550
- #: ../../admin/lang/dynamic_strings.php:84
1551
- msgid "l-ar-ma"
1552
- msgstr "Arabe (Maroc)"
1553
-
1554
- # Arabic (Oman)
1555
- #: ../../admin/lang/dynamic_strings.php:85
1556
- msgid "l-ar-om"
1557
- msgstr "Arabe (Oman)"
1558
-
1559
- # Arabic (Qatar)
1560
- #: ../../admin/lang/dynamic_strings.php:86
1561
- msgid "l-ar-qa"
1562
- msgstr "Arabe (Qatar)"
1563
-
1564
- # Arabic (Saudi Arabia)
1565
- #: ../../admin/lang/dynamic_strings.php:87
1566
- msgid "l-ar-sa"
1567
- msgstr "Arabe (Arabie saoudite)"
1568
-
1569
- # Arabic (Syria)
1570
- #: ../../admin/lang/dynamic_strings.php:88
1571
- msgid "l-ar-sy"
1572
- msgstr "Arabe (Syrie)"
1573
-
1574
- # Arabic (Tunisia)
1575
- #: ../../admin/lang/dynamic_strings.php:89
1576
- msgid "l-ar-tn"
1577
- msgstr "Arabe (Tunisie)"
1578
-
1579
- # Arabic (Yemen)
1580
- #: ../../admin/lang/dynamic_strings.php:90
1581
- msgid "l-ar-ye"
1582
- msgstr "Arabe (Yémen)"
1583
-
1584
- # Azerbaijani
1585
- #: ../../admin/lang/dynamic_strings.php:91
1586
- msgid "l-az"
1587
- msgstr "Azéri"
1588
-
1589
- # Azerbaijani
1590
- #: ../../admin/lang/dynamic_strings.php:92
1591
- msgid "l-az-az"
1592
- msgstr "Azéri"
1593
-
1594
- # Belarusian
1595
- #: ../../admin/lang/dynamic_strings.php:93
1596
- msgid "l-be"
1597
- msgstr "Biélorusse"
1598
-
1599
- # Belarusian
1600
- #: ../../admin/lang/dynamic_strings.php:94
1601
- msgid "l-be-by"
1602
- msgstr "Biélorusse"
1603
-
1604
- # Bulgarian
1605
- #: ../../admin/lang/dynamic_strings.php:95
1606
- msgid "l-bg"
1607
- msgstr "Bulgare"
1608
-
1609
- # Bulgarian
1610
- #: ../../admin/lang/dynamic_strings.php:96
1611
- msgid "l-bg-bg"
1612
- msgstr "Bulgare"
1613
-
1614
- # Bosnian
1615
- #: ../../admin/lang/dynamic_strings.php:97
1616
- msgid "l-bs-ba"
1617
- msgstr "Bosnien"
1618
-
1619
- # Catalan; Valencian
1620
- #: ../../admin/lang/dynamic_strings.php:98
1621
- msgid "l-ca"
1622
- msgstr "Catalan; Valencien"
1623
-
1624
- # Catalan; Valencian
1625
- #: ../../admin/lang/dynamic_strings.php:99
1626
- msgid "l-ca-es"
1627
- msgstr "Catalan; Valencien"
1628
-
1629
- # Czech
1630
- #: ../../admin/lang/dynamic_strings.php:100
1631
- msgid "l-cs"
1632
- msgstr "Tchèque"
1633
-
1634
- # Czech
1635
- #: ../../admin/lang/dynamic_strings.php:101
1636
- msgid "l-cs-cz"
1637
- msgstr "Tchèque"
1638
-
1639
- # Welsh
1640
- #: ../../admin/lang/dynamic_strings.php:102
1641
- msgid "l-cy"
1642
- msgstr "Gallois"
1643
-
1644
- # Welsh
1645
- #: ../../admin/lang/dynamic_strings.php:103
1646
- msgid "l-cy-gb"
1647
- msgstr "Gallois"
1648
-
1649
- # Danish
1650
- #: ../../admin/lang/dynamic_strings.php:104
1651
- msgid "l-da"
1652
- msgstr "Danois"
1653
-
1654
- # Danish
1655
- #: ../../admin/lang/dynamic_strings.php:105
1656
- msgid "l-da-dk"
1657
- msgstr "Danois"
1658
-
1659
- # German
1660
- #: ../../admin/lang/dynamic_strings.php:106
1661
- msgid "l-de"
1662
- msgstr "Allemand"
1663
-
1664
- # German (Austria)
1665
- #: ../../admin/lang/dynamic_strings.php:107
1666
- msgid "l-de-at"
1667
- msgstr "Allemand (Autriche)"
1668
-
1669
- # German (Switzerland)
1670
- #: ../../admin/lang/dynamic_strings.php:108
1671
- msgid "l-de-ch"
1672
- msgstr "Allemand (Suisse)"
1673
-
1674
- # German (Germany)
1675
- #: ../../admin/lang/dynamic_strings.php:109
1676
- msgid "l-de-de"
1677
- msgstr "Allemand (Allemagne)"
1678
-
1679
- # German (Liechtenstein)
1680
- #: ../../admin/lang/dynamic_strings.php:110
1681
- msgid "l-de-li"
1682
- msgstr "Allemand (Liechtenstein)"
1683
-
1684
- # German (Luxembourg)
1685
- #: ../../admin/lang/dynamic_strings.php:111
1686
- msgid "l-de-lu"
1687
- msgstr "Allemand (Luxembourg)"
1688
-
1689
- # Dhivehi; Divehi; Maldivian
1690
- #: ../../admin/lang/dynamic_strings.php:112
1691
- msgid "l-dv"
1692
- msgstr "Dhivehi; Divehi; Maldivien"
1693
-
1694
- # Dhivehi; Divehi; Maldivian
1695
- #: ../../admin/lang/dynamic_strings.php:113
1696
- msgid "l-dv-mv"
1697
- msgstr "Dhivehi; Divehi; Maldivien"
1698
-
1699
- # Modern Greek (1453-)
1700
- #: ../../admin/lang/dynamic_strings.php:114
1701
- msgid "l-el"
1702
- msgstr "Grec moderne"
1703
-
1704
- # Greek (Greece)
1705
- #: ../../admin/lang/dynamic_strings.php:115
1706
- msgid "l-el-gr"
1707
- msgstr "Grec moderne (Grèce)"
1708
-
1709
- # English
1710
- #: ../../admin/lang/dynamic_strings.php:116
1711
- msgid "l-en"
1712
- msgstr "Anglais"
1713
-
1714
- # English (Australia)
1715
- #: ../../admin/lang/dynamic_strings.php:117
1716
- msgid "l-en-au"
1717
- msgstr "Anglais (Australie)"
1718
-
1719
- # English (Belize)
1720
- #: ../../admin/lang/dynamic_strings.php:118
1721
- msgid "l-en-bz"
1722
- msgstr "Anglais (Belize)"
1723
-
1724
- # English (Canada)
1725
- #: ../../admin/lang/dynamic_strings.php:119
1726
- msgid "l-en-ca"
1727
- msgstr "Anglais (Canada)"
1728
-
1729
- # English (Canada)
1730
- #: ../../admin/lang/dynamic_strings.php:120
1731
- msgid "l-en-cb"
1732
- msgstr "Anglais (Canada)"
1733
-
1734
- # English (United Kingdom)
1735
- #: ../../admin/lang/dynamic_strings.php:121
1736
- msgid "l-en-gb"
1737
- msgstr "Anglais (Royaume-Uni)"
1738
-
1739
- # English (Ireland)
1740
- #: ../../admin/lang/dynamic_strings.php:122
1741
- msgid "l-en-ie"
1742
- msgstr "Anglais (Irlande)"
1743
-
1744
- # English (Jamaica)
1745
- #: ../../admin/lang/dynamic_strings.php:123
1746
- msgid "l-en-jm"
1747
- msgstr "Anglais (Jamaïque)"
1748
-
1749
- # English (New Zealand)
1750
- #: ../../admin/lang/dynamic_strings.php:124
1751
- msgid "l-en-nz"
1752
- msgstr "Anglais (Nouvelle-Zélande)"
1753
-
1754
- # English
1755
- #: ../../admin/lang/dynamic_strings.php:125
1756
- msgid "l-en-ph"
1757
- msgstr "Anglais"
1758
-
1759
- # English (Trinidad)
1760
- #: ../../admin/lang/dynamic_strings.php:126
1761
- msgid "l-en-tt"
1762
- msgstr "Anglais (Trinité)"
1763
-
1764
- # English (United States)
1765
- #: ../../admin/lang/dynamic_strings.php:127
1766
- msgid "l-en-us"
1767
- msgstr "Anglais (États-Unis)"
1768
-
1769
- # English (South Africa)
1770
- #: ../../admin/lang/dynamic_strings.php:128
1771
- msgid "l-en-za"
1772
- msgstr "Anglais (Afrique du Sud)"
1773
-
1774
- # English (South Africa)
1775
- #: ../../admin/lang/dynamic_strings.php:129
1776
- msgid "l-en-zw"
1777
- msgstr "Anglais (Afrique du Sud)"
1778
-
1779
- # Esperanto
1780
- #: ../../admin/lang/dynamic_strings.php:130
1781
- msgid "l-eo"
1782
- msgstr "Espéranto"
1783
-
1784
- # Spanish; Castilian
1785
- #: ../../admin/lang/dynamic_strings.php:131
1786
- msgid "l-es"
1787
- msgstr "Espagnol; Castillan"
1788
-
1789
- # Spanish (Argentina)
1790
- #: ../../admin/lang/dynamic_strings.php:132
1791
- msgid "l-es-ar"
1792
- msgstr "Espagnol (Argentine)"
1793
-
1794
- # Spanish (Bolivia)
1795
- #: ../../admin/lang/dynamic_strings.php:133
1796
- msgid "l-es-bo"
1797
- msgstr "Espagnol (Bolivie)"
1798
-
1799
- # Spanish (Chile)
1800
- #: ../../admin/lang/dynamic_strings.php:134
1801
- msgid "l-es-cl"
1802
- msgstr "Espagnol (Chili)"
1803
-
1804
- # Spanish (Colombia)
1805
- #: ../../admin/lang/dynamic_strings.php:135
1806
- msgid "l-es-co"
1807
- msgstr "Espagnol (Colombie)"
1808
-
1809
- # Spanish (Costa Rica)
1810
- #: ../../admin/lang/dynamic_strings.php:136
1811
- msgid "l-es-cr"
1812
- msgstr "Espagnol (Costa Rica)"
1813
-
1814
- # Spanish (Dominican Republic)
1815
- #: ../../admin/lang/dynamic_strings.php:137
1816
- msgid "l-es-do"
1817
- msgstr "Espagnol (République dominicaine)"
1818
-
1819
- # Spanish (Ecuador)
1820
- #: ../../admin/lang/dynamic_strings.php:138
1821
- msgid "l-es-ec"
1822
- msgstr "Espagnol (Équateur)"
1823
-
1824
- # Spanish (Spain)
1825
- #: ../../admin/lang/dynamic_strings.php:139
1826
- msgid "l-es-es"
1827
- msgstr "Espagnol (Espagne)"
1828
-
1829
- # Spanish (Guatemala)
1830
- #: ../../admin/lang/dynamic_strings.php:140
1831
- msgid "l-es-gt"
1832
- msgstr "Espagnol (Guatemala)"
1833
-
1834
- # Spanish (Honduras)
1835
- #: ../../admin/lang/dynamic_strings.php:141
1836
- msgid "l-es-hn"
1837
- msgstr "Espagnol (Honduras)"
1838
-
1839
- # Spanish (Mexico)
1840
- #: ../../admin/lang/dynamic_strings.php:142
1841
- msgid "l-es-mx"
1842
- msgstr "Espagnol (Mexique)"
1843
-
1844
- # Spanish (Nicaragua)
1845
- #: ../../admin/lang/dynamic_strings.php:143
1846
- msgid "l-es-ni"
1847
- msgstr "Espagnol (Nicaragua)"
1848
-
1849
- # Spanish (Panama)
1850
- #: ../../admin/lang/dynamic_strings.php:144
1851
- msgid "l-es-pa"
1852
- msgstr "Espagnol (Panama)"
1853
-
1854
- # Spanish (Peru)
1855
- #: ../../admin/lang/dynamic_strings.php:145
1856
- msgid "l-es-pe"
1857
- msgstr "Espagnol (Pérou)"
1858
-
1859
- # Spanish (Puerto Rico)
1860
- #: ../../admin/lang/dynamic_strings.php:146
1861
- msgid "l-es-pr"
1862
- msgstr "Espagnol (Porto Rico)"
1863
-
1864
- # Spanish (Paraguay)
1865
- #: ../../admin/lang/dynamic_strings.php:147
1866
- msgid "l-es-py"
1867
- msgstr "Espagnol (Paraguay)"
1868
-
1869
- # Spanish (El Salvador)
1870
- #: ../../admin/lang/dynamic_strings.php:148
1871
- msgid "l-es-sv"
1872
- msgstr "Espagnol (El Salvador)"
1873
-
1874
- # Spanish (Uruguay)
1875
- #: ../../admin/lang/dynamic_strings.php:149
1876
- msgid "l-es-uy"
1877
- msgstr "Espagnol (Uruguay)"
1878
-
1879
- # Spanish (Venezuela)
1880
- #: ../../admin/lang/dynamic_strings.php:150
1881
- msgid "l-es-ve"
1882
- msgstr "Espagnol (Venezuela)"
1883
-
1884
- # Estonian
1885
- #: ../../admin/lang/dynamic_strings.php:151
1886
- msgid "l-et"
1887
- msgstr "Estonien"
1888
-
1889
- # Estonian
1890
- #: ../../admin/lang/dynamic_strings.php:152
1891
- msgid "l-et-ee"
1892
- msgstr "Estonien"
1893
-
1894
- # Basque
1895
- #: ../../admin/lang/dynamic_strings.php:153
1896
- msgid "l-eu"
1897
- msgstr "Basque"
1898
-
1899
- # Basque
1900
- #: ../../admin/lang/dynamic_strings.php:154
1901
- msgid "l-eu-es"
1902
- msgstr "Basque"
1903
-
1904
- # Persian
1905
- #: ../../admin/lang/dynamic_strings.php:155
1906
- msgid "l-fa"
1907
- msgstr "Persan"
1908
-
1909
- # Persian
1910
- #: ../../admin/lang/dynamic_strings.php:156
1911
- msgid "l-fa-ir"
1912
- msgstr "Persan"
1913
-
1914
- # Finnish
1915
- #: ../../admin/lang/dynamic_strings.php:157
1916
- msgid "l-fi"
1917
- msgstr "Finnois"
1918
-
1919
- # Finnish
1920
- #: ../../admin/lang/dynamic_strings.php:158
1921
- msgid "l-fi-fi"
1922
- msgstr "Finnois"
1923
-
1924
- # Faroese
1925
- #: ../../admin/lang/dynamic_strings.php:159
1926
- msgid "l-fo"
1927
- msgstr "Féringien"
1928
-
1929
- # Faroese
1930
- #: ../../admin/lang/dynamic_strings.php:160
1931
- msgid "l-fo-fo"
1932
- msgstr "Féringien"
1933
-
1934
- # French
1935
- #: ../../admin/lang/dynamic_strings.php:161
1936
- msgid "l-fr"
1937
- msgstr "Français"
1938
-
1939
- # French (Belgium)
1940
- #: ../../admin/lang/dynamic_strings.php:162
1941
- msgid "l-fr-be"
1942
- msgstr "Français (Belgique)"
1943
-
1944
- # French (Canada)
1945
- #: ../../admin/lang/dynamic_strings.php:163
1946
- msgid "l-fr-ca"
1947
- msgstr "Français (Canada)"
1948
-
1949
- # French (Switzerland)
1950
- #: ../../admin/lang/dynamic_strings.php:164
1951
- msgid "l-fr-ch"
1952
- msgstr "Français (Suisse)"
1953
-
1954
- # French (France)
1955
- #: ../../admin/lang/dynamic_strings.php:165
1956
- msgid "l-fr-fr"
1957
- msgstr "Français (France)"
1958
-
1959
- # French (Luxembourg)
1960
- #: ../../admin/lang/dynamic_strings.php:166
1961
- msgid "l-fr-lu"
1962
- msgstr "Français (Luxembourg)"
1963
-
1964
- # French (Switzerland)
1965
- #: ../../admin/lang/dynamic_strings.php:167
1966
- msgid "l-fr-mc"
1967
- msgstr "Français (Suisse)"
1968
-
1969
- # Galician
1970
- #: ../../admin/lang/dynamic_strings.php:168
1971
- msgid "l-gl"
1972
- msgstr "Galicien"
1973
-
1974
- # Spanish; Castilian
1975
- #: ../../admin/lang/dynamic_strings.php:169
1976
- msgid "l-gl-es"
1977
- msgstr "Espagnol ; Castillan"
1978
-
1979
- # Gujarati
1980
- #: ../../admin/lang/dynamic_strings.php:170
1981
- msgid "l-gu"
1982
- msgstr "Gujarati"
1983
-
1984
- # Gujarati
1985
- #: ../../admin/lang/dynamic_strings.php:171
1986
- msgid "l-gu-in"
1987
- msgstr "Gujarati"
1988
-
1989
- # Hebrew
1990
- #: ../../admin/lang/dynamic_strings.php:172
1991
- msgid "l-he"
1992
- msgstr "Hébreu"
1993
-
1994
- # Hebrew (Israel)
1995
- #: ../../admin/lang/dynamic_strings.php:173
1996
- msgid "l-he-il"
1997
- msgstr "Hébreu (Israël)"
1998
-
1999
- # Hindi
2000
- #: ../../admin/lang/dynamic_strings.php:174
2001
- msgid "l-hi"
2002
- msgstr "Hindi"
2003
-
2004
- # Hindi
2005
- #: ../../admin/lang/dynamic_strings.php:175
2006
- msgid "l-hi-in"
2007
- msgstr "Hindi"
2008
-
2009
- # Croatian
2010
- #: ../../admin/lang/dynamic_strings.php:176
2011
- msgid "l-hr"
2012
- msgstr "Croate"
2013
-
2014
- # Croatian
2015
- #: ../../admin/lang/dynamic_strings.php:177
2016
- msgid "l-hr-ba"
2017
- msgstr "Croate"
2018
-
2019
- # Croatian
2020
- #: ../../admin/lang/dynamic_strings.php:178
2021
- msgid "l-hr-hr"
2022
- msgstr "Croate"
2023
-
2024
- # Hungarian
2025
- #: ../../admin/lang/dynamic_strings.php:179
2026
- msgid "l-hu"
2027
- msgstr "Hongrois"
2028
-
2029
- # Hungarian (Hungary)
2030
- #: ../../admin/lang/dynamic_strings.php:180
2031
- msgid "l-hu-hu"
2032
- msgstr "Hongrois (Hongrie)"
2033
-
2034
- # Armenian
2035
- #: ../../admin/lang/dynamic_strings.php:181
2036
- msgid "l-hy"
2037
- msgstr "Arménien"
2038
-
2039
- # Armenian
2040
- #: ../../admin/lang/dynamic_strings.php:182
2041
- msgid "l-hy-am"
2042
- msgstr "Arménien"
2043
-
2044
- # Indonesian
2045
- #: ../../admin/lang/dynamic_strings.php:183
2046
- msgid "l-id"
2047
- msgstr "Indonésien"
2048
-
2049
- # Indonesian
2050
- #: ../../admin/lang/dynamic_strings.php:184
2051
- msgid "l-id-id"
2052
- msgstr "Indonésien"
2053
-
2054
- # Icelandic
2055
- #: ../../admin/lang/dynamic_strings.php:185
2056
- msgid "l-is"
2057
- msgstr "Islandais"
2058
-
2059
- # Icelandic
2060
- #: ../../admin/lang/dynamic_strings.php:186
2061
- msgid "l-is-is"
2062
- msgstr "Islandais"
2063
-
2064
- # Italian
2065
- #: ../../admin/lang/dynamic_strings.php:187
2066
- msgid "l-it"
2067
- msgstr "Italien"
2068
-
2069
- # Italian (Switzerland)
2070
- #: ../../admin/lang/dynamic_strings.php:188
2071
- msgid "l-it-ch"
2072
- msgstr "Italien (Suisse)"
2073
-
2074
- # Italian (Italia)
2075
- #: ../../admin/lang/dynamic_strings.php:189
2076
- msgid "l-it-it"
2077
- msgstr "Italien (Italie)"
2078
-
2079
- # Japanese
2080
- #: ../../admin/lang/dynamic_strings.php:190
2081
- msgid "l-ja"
2082
- msgstr "Japonais"
2083
-
2084
- # Japanese
2085
- #: ../../admin/lang/dynamic_strings.php:191
2086
- msgid "l-ja-jp"
2087
- msgstr "Japonais"
2088
-
2089
- # Georgian
2090
- #: ../../admin/lang/dynamic_strings.php:192
2091
- msgid "l-ka"
2092
- msgstr "Géorgien"
2093
-
2094
- # Georgian
2095
- #: ../../admin/lang/dynamic_strings.php:193
2096
- msgid "l-ka-ge"
2097
- msgstr "Géorgien"
2098
-
2099
- # Kazakh
2100
- #: ../../admin/lang/dynamic_strings.php:194
2101
- msgid "l-kk"
2102
- msgstr "Kazakh"
2103
-
2104
- # Kazakh
2105
- #: ../../admin/lang/dynamic_strings.php:195
2106
- msgid "l-kk-kz"
2107
- msgstr "Kazakh"
2108
-
2109
- # Kannada
2110
- #: ../../admin/lang/dynamic_strings.php:196
2111
- msgid "l-kn"
2112
- msgstr "kannada"
2113
-
2114
- # Kannada
2115
- #: ../../admin/lang/dynamic_strings.php:197
2116
- msgid "l-kn-in"
2117
- msgstr "Kannada"
2118
-
2119
- # Korean
2120
- #: ../../admin/lang/dynamic_strings.php:198
2121
- msgid "l-ko"
2122
- msgstr "Coréen"
2123
-
2124
- # Korean (Republic of Korea)
2125
- #: ../../admin/lang/dynamic_strings.php:199
2126
- msgid "l-ko-kr"
2127
- msgstr "Coréen (République de Corée)"
2128
-
2129
- # Korean
2130
- #: ../../admin/lang/dynamic_strings.php:200
2131
- msgid "l-kok"
2132
- msgstr "Coréen"
2133
-
2134
- # Korean
2135
- #: ../../admin/lang/dynamic_strings.php:201
2136
- msgid "l-kok-in"
2137
- msgstr "Coréen"
2138
-
2139
- # Kirghiz; Kyrgyz
2140
- #: ../../admin/lang/dynamic_strings.php:202
2141
- msgid "l-ky"
2142
- msgstr "Kirghiz"
2143
-
2144
- # Kirghiz; Kyrgyz
2145
- #: ../../admin/lang/dynamic_strings.php:203
2146
- msgid "l-ky-kg"
2147
- msgstr "Kirghiz"
2148
-
2149
- # Lithuanian
2150
- #: ../../admin/lang/dynamic_strings.php:204
2151
- msgid "l-lt"
2152
- msgstr "Lituanien"
2153
-
2154
- # Lithuanian
2155
- #: ../../admin/lang/dynamic_strings.php:205
2156
- msgid "l-lt-lt"
2157
- msgstr "Lituanien"
2158
-
2159
- # Latvian
2160
- #: ../../admin/lang/dynamic_strings.php:206
2161
- msgid "l-lv"
2162
- msgstr "Letton"
2163
-
2164
- # Latvian
2165
- #: ../../admin/lang/dynamic_strings.php:207
2166
- msgid "l-lv-lv"
2167
- msgstr "Letton"
2168
-
2169
- # Maori
2170
- #: ../../admin/lang/dynamic_strings.php:208
2171
- msgid "l-mi"
2172
- msgstr "Maori"
2173
-
2174
- # Maori
2175
- #: ../../admin/lang/dynamic_strings.php:209
2176
- msgid "l-mi-nz"
2177
- msgstr "Maori"
2178
-
2179
- # Macedonian
2180
- #: ../../admin/lang/dynamic_strings.php:210
2181
- msgid "l-mk"
2182
- msgstr "Macédonien"
2183
-
2184
- # Macedonian
2185
- #: ../../admin/lang/dynamic_strings.php:211
2186
- msgid "l-mk-ml"
2187
- msgstr "Macédonien"
2188
-
2189
- # Mongolian
2190
- #: ../../admin/lang/dynamic_strings.php:212
2191
- msgid "l-mn"
2192
- msgstr "Mongol"
2193
-
2194
- # Mongolian
2195
- #: ../../admin/lang/dynamic_strings.php:213
2196
- msgid "l-mn-mn"
2197
- msgstr "Mongol"
2198
-
2199
- # Marathi
2200
- #: ../../admin/lang/dynamic_strings.php:214
2201
- msgid "l-mr"
2202
- msgstr "Marathi"
2203
-
2204
- # Marathi
2205
- #: ../../admin/lang/dynamic_strings.php:215
2206
- msgid "l-mr-in"
2207
- msgstr "Marathi"
2208
-
2209
- # Malay
2210
- #: ../../admin/lang/dynamic_strings.php:216
2211
- msgid "l-ms"
2212
- msgstr "Malais"
2213
-
2214
- # Malay
2215
- #: ../../admin/lang/dynamic_strings.php:217
2216
- msgid "l-ms-bn"
2217
- msgstr "Malais"
2218
-
2219
- # Malay
2220
- #: ../../admin/lang/dynamic_strings.php:218
2221
- msgid "l-ms-my"
2222
- msgstr "Malais"
2223
-
2224
- # Maltese
2225
- #: ../../admin/lang/dynamic_strings.php:219
2226
- msgid "l-mt"
2227
- msgstr "Maltais"
2228
-
2229
- # Maltese
2230
- #: ../../admin/lang/dynamic_strings.php:220
2231
- msgid "l-mt-mt"
2232
- msgstr "Maltais"
2233
-
2234
- # Norwegian Bokmål
2235
- #: ../../admin/lang/dynamic_strings.php:221
2236
- msgid "l-nb"
2237
- msgstr "Norvégien Bokmål"
2238
-
2239
- # Norwegian Bokmål
2240
- #: ../../admin/lang/dynamic_strings.php:222
2241
- msgid "l-nb-no"
2242
- msgstr "Norvégien Bokmål"
2243
-
2244
- # Dutch; Flemish
2245
- #: ../../admin/lang/dynamic_strings.php:223
2246
- msgid "l-nl"
2247
- msgstr "Néerlandais; Flamand"
2248
-
2249
- # Dutch (Belgium)
2250
- #: ../../admin/lang/dynamic_strings.php:224
2251
- msgid "l-nl-be"
2252
- msgstr "Néerlandais (Belgique)"
2253
-
2254
- # Dutch (Netherlands)
2255
- #: ../../admin/lang/dynamic_strings.php:225
2256
- msgid "l-nl-nl"
2257
- msgstr "Néerlandais (Pays-bas)"
2258
-
2259
- # Norwegian Nynorsk
2260
- #: ../../admin/lang/dynamic_strings.php:226
2261
- msgid "l-nn-no"
2262
- msgstr "Norvégien Nynorsk"
2263
-
2264
- #: ../../admin/lang/dynamic_strings.php:227
2265
- msgid "l-ns"
2266
- msgstr "l-ns"
2267
-
2268
- #: ../../admin/lang/dynamic_strings.php:228
2269
- msgid "l-ns-za"
2270
- msgstr "l-ns-za"
2271
-
2272
- # Panjabi; Punjabi
2273
- #: ../../admin/lang/dynamic_strings.php:229
2274
- msgid "l-pa"
2275
- msgstr "Panjabi"
2276
-
2277
- # Panjabi; Punjabi
2278
- #: ../../admin/lang/dynamic_strings.php:230
2279
- msgid "l-pa-in"
2280
- msgstr "Panjabi"
2281
-
2282
- # Polish
2283
- #: ../../admin/lang/dynamic_strings.php:231
2284
- msgid "l-pl"
2285
- msgstr "Polonais"
2286
-
2287
- # Polish
2288
- #: ../../admin/lang/dynamic_strings.php:232
2289
- msgid "l-pl-pl"
2290
- msgstr "Polonais"
2291
-
2292
- # Pushto; Pashto
2293
- #: ../../admin/lang/dynamic_strings.php:233
2294
- msgid "l-ps"
2295
- msgstr "Pachto"
2296
-
2297
- # Spanish (Argentina)
2298
- #: ../../admin/lang/dynamic_strings.php:234
2299
- msgid "l-ps-ar"
2300
- msgstr "Espagnol (Argentine)"
2301
-
2302
- # Portuguese
2303
- #: ../../admin/lang/dynamic_strings.php:235
2304
- msgid "l-pt"
2305
- msgstr "Portugais"
2306
-
2307
- # Portuguese (Brazil)
2308
- #: ../../admin/lang/dynamic_strings.php:236
2309
- msgid "l-pt-br"
2310
- msgstr "Portugais (Brésil)"
2311
-
2312
- # Portuguese
2313
- #: ../../admin/lang/dynamic_strings.php:237
2314
- msgid "l-pt-pt"
2315
- msgstr "Portugais"
2316
-
2317
- # Quechua
2318
- #: ../../admin/lang/dynamic_strings.php:238
2319
- msgid "l-qu"
2320
- msgstr "Quechua"
2321
-
2322
- # Quechua
2323
- #: ../../admin/lang/dynamic_strings.php:239
2324
- msgid "l-qu-bo"
2325
- msgstr "Quechua"
2326
-
2327
- # Quechua
2328
- #: ../../admin/lang/dynamic_strings.php:240
2329
- msgid "l-qu-ec"
2330
- msgstr "Quechua"
2331
-
2332
- # Quechua
2333
- #: ../../admin/lang/dynamic_strings.php:241
2334
- msgid "l-qu-pe"
2335
- msgstr "Quechua"
2336
-
2337
- # Romanian; Moldavian; Moldovan
2338
- #: ../../admin/lang/dynamic_strings.php:242
2339
- msgid "l-ro"
2340
- msgstr "Roumain; Moldave"
2341
-
2342
- # Romanian; Moldavian; Moldovan
2343
- #: ../../admin/lang/dynamic_strings.php:243
2344
- msgid "l-ro-ro"
2345
- msgstr "Roumain"
2346
-
2347
- # Russian
2348
- #: ../../admin/lang/dynamic_strings.php:244
2349
- msgid "l-ru"
2350
- msgstr "Russe"
2351
-
2352
- # Russian (Russia)
2353
- #: ../../admin/lang/dynamic_strings.php:245
2354
- msgid "l-ru-ru"
2355
- msgstr "Russe (Fédération de Russie)"
2356
-
2357
- # Sanskrit
2358
- #: ../../admin/lang/dynamic_strings.php:246
2359
- msgid "l-sa"
2360
- msgstr "Sanskrit"
2361
-
2362
- # Sanskrit
2363
- #: ../../admin/lang/dynamic_strings.php:247
2364
- msgid "l-sa-in"
2365
- msgstr "Sanskrit"
2366
-
2367
- # Northern Sami
2368
- #: ../../admin/lang/dynamic_strings.php:248
2369
- msgid "l-se"
2370
- msgstr "Same du Nord"
2371
-
2372
- # Northern Sami
2373
- #: ../../admin/lang/dynamic_strings.php:249
2374
- msgid "l-se-fi"
2375
- msgstr "Same du Nord"
2376
-
2377
- # Northern Sami
2378
- #: ../../admin/lang/dynamic_strings.php:250
2379
- msgid "l-se-no"
2380
- msgstr "Same du Nord"
2381
-
2382
- # Northern Sami
2383
- #: ../../admin/lang/dynamic_strings.php:251
2384
- msgid "l-se-se"
2385
- msgstr "Same du Nord"
2386
-
2387
- # Slovak
2388
- #: ../../admin/lang/dynamic_strings.php:252
2389
- msgid "l-sk"
2390
- msgstr "Slovaque"
2391
-
2392
- # Slovak
2393
- #: ../../admin/lang/dynamic_strings.php:253
2394
- msgid "l-sk-sk"
2395
- msgstr "Slovaque"
2396
-
2397
- # Slovenian
2398
- #: ../../admin/lang/dynamic_strings.php:254
2399
- msgid "l-sl"
2400
- msgstr "Slovène"
2401
-
2402
- # Slovenian
2403
- #: ../../admin/lang/dynamic_strings.php:255
2404
- msgid "l-sl-si"
2405
- msgstr "Slovène"
2406
-
2407
- # Albanian
2408
- #: ../../admin/lang/dynamic_strings.php:256
2409
- msgid "l-sq"
2410
- msgstr "Albanais"
2411
-
2412
- # Albanian
2413
- #: ../../admin/lang/dynamic_strings.php:257
2414
- msgid "l-sq-al"
2415
- msgstr "Albanais"
2416
-
2417
- # Serbian
2418
- #: ../../admin/lang/dynamic_strings.php:258
2419
- msgid "l-sr-ba"
2420
- msgstr "Serbe"
2421
-
2422
- # Serbian
2423
- #: ../../admin/lang/dynamic_strings.php:259
2424
- msgid "l-sr-sp"
2425
- msgstr "Serbe"
2426
-
2427
- # Swedish
2428
- #: ../../admin/lang/dynamic_strings.php:260
2429
- msgid "l-sv"
2430
- msgstr "Suédois"
2431
-
2432
- # Swedish (Finland)
2433
- #: ../../admin/lang/dynamic_strings.php:261
2434
- msgid "l-sv-fi"
2435
- msgstr "Suédois (Finlande)"
2436
-
2437
- # Swedish (Sweden)
2438
- #: ../../admin/lang/dynamic_strings.php:262
2439
- msgid "l-sv-se"
2440
- msgstr "Suédois (Suède)"
2441
-
2442
- # Swahili
2443
- #: ../../admin/lang/dynamic_strings.php:263
2444
- msgid "l-sw"
2445
- msgstr "Swahili"
2446
-
2447
- # Swahili
2448
- #: ../../admin/lang/dynamic_strings.php:264
2449
- msgid "l-sw-ke"
2450
- msgstr "Swahili"
2451
-
2452
- # Tamil
2453
- #: ../../admin/lang/dynamic_strings.php:265
2454
- msgid "l-ta"
2455
- msgstr "Tamoul"
2456
-
2457
- # Tamil
2458
- #: ../../admin/lang/dynamic_strings.php:266
2459
- msgid "l-ta-in"
2460
- msgstr "Tamoul"
2461
-
2462
- # Telugu
2463
- #: ../../admin/lang/dynamic_strings.php:267
2464
- msgid "l-te"
2465
- msgstr "Télougou"
2466
-
2467
- # Telugu
2468
- #: ../../admin/lang/dynamic_strings.php:268
2469
- msgid "l-te-in"
2470
- msgstr "Télougou"
2471
-
2472
- # Thai
2473
- #: ../../admin/lang/dynamic_strings.php:269
2474
- msgid "l-th"
2475
- msgstr "Thaï"
2476
-
2477
- # Thai
2478
- #: ../../admin/lang/dynamic_strings.php:270
2479
- msgid "l-th-th"
2480
- msgstr "Thai"
2481
-
2482
- # Tagalog
2483
- #: ../../admin/lang/dynamic_strings.php:271
2484
- msgid "l-tl"
2485
- msgstr "Tagalog"
2486
-
2487
- # Tagalog
2488
- #: ../../admin/lang/dynamic_strings.php:272
2489
- msgid "l-tl-ph"
2490
- msgstr "Tagalog"
2491
-
2492
- # Tswana
2493
- #: ../../admin/lang/dynamic_strings.php:273
2494
- msgid "l-tn"
2495
- msgstr "Tswana"
2496
-
2497
- # English (South Africa)
2498
- #: ../../admin/lang/dynamic_strings.php:274
2499
- msgid "l-tn-za"
2500
- msgstr "Anglais (Afrique du Sud)"
2501
-
2502
- # Turkish
2503
- #: ../../admin/lang/dynamic_strings.php:275
2504
- msgid "l-tr"
2505
- msgstr "Turc"
2506
-
2507
- # Turkish
2508
- #: ../../admin/lang/dynamic_strings.php:276
2509
- msgid "l-tr-tr"
2510
- msgstr "Turc"
2511
-
2512
- # Tatar
2513
- #: ../../admin/lang/dynamic_strings.php:277
2514
- msgid "l-tt"
2515
- msgstr "Tatar"
2516
-
2517
- # Tatar
2518
- #: ../../admin/lang/dynamic_strings.php:278
2519
- msgid "l-tt-ru"
2520
- msgstr "Tatar"
2521
-
2522
- # Tsonga
2523
- #: ../../admin/lang/dynamic_strings.php:279
2524
- msgid "l-ts"
2525
- msgstr "Tsonga"
2526
-
2527
- # Ukrainian
2528
- #: ../../admin/lang/dynamic_strings.php:280
2529
- msgid "l-uk"
2530
- msgstr "Ukrainien"
2531
-
2532
- # Ukrainian
2533
- #: ../../admin/lang/dynamic_strings.php:281
2534
- msgid "l-uk-ua"
2535
- msgstr "Ukrainien"
2536
-
2537
- # Urdu
2538
- #: ../../admin/lang/dynamic_strings.php:282
2539
- msgid "l-ur"
2540
- msgstr "Ourdou"
2541
-
2542
- # Urdu
2543
- #: ../../admin/lang/dynamic_strings.php:283
2544
- msgid "l-ur-pk"
2545
- msgstr "Ourdou"
2546
-
2547
- # Uzbek
2548
- #: ../../admin/lang/dynamic_strings.php:284
2549
- msgid "l-uz"
2550
- msgstr "Ouzbek"
2551
-
2552
- # Uzbek
2553
- #: ../../admin/lang/dynamic_strings.php:285
2554
- msgid "l-uz-uz"
2555
- msgstr "Ouzbek"
2556
-
2557
- # Vietnamese
2558
- #: ../../admin/lang/dynamic_strings.php:286
2559
- msgid "l-vi"
2560
- msgstr "Vietnamien"
2561
-
2562
- # Vietnamese
2563
- #: ../../admin/lang/dynamic_strings.php:287
2564
- msgid "l-vi-vn"
2565
- msgstr "Vietnamien"
2566
-
2567
- # Xhosa
2568
- #: ../../admin/lang/dynamic_strings.php:288
2569
- msgid "l-xh"
2570
- msgstr "Xhosa"
2571
-
2572
- # Xhosa
2573
- #: ../../admin/lang/dynamic_strings.php:289
2574
- msgid "l-xh-za"
2575
- msgstr "Xhosa"
2576
-
2577
- # Chinese
2578
- #: ../../admin/lang/dynamic_strings.php:290
2579
- msgid "l-zh"
2580
- msgstr "Chinois"
2581
-
2582
- # Chinese (China)
2583
- #: ../../admin/lang/dynamic_strings.php:291
2584
- msgid "l-zh-cn"
2585
- msgstr "Chinois (Chine)"
2586
-
2587
- # Chinese (Hong Kong)
2588
- #: ../../admin/lang/dynamic_strings.php:292
2589
- msgid "l-zh-hk"
2590
- msgstr "Chinois (Hong Kong)"
2591
-
2592
- # Chinese
2593
- #: ../../admin/lang/dynamic_strings.php:293
2594
- msgid "l-zh-mo"
2595
- msgstr "Chinois"
2596
-
2597
- # Chinese (Singapore)
2598
- #: ../../admin/lang/dynamic_strings.php:294
2599
- msgid "l-zh-sg"
2600
- msgstr "Chinois (Singapour)"
2601
-
2602
- # Chinese (Taiwan)
2603
- #: ../../admin/lang/dynamic_strings.php:295
2604
- msgid "l-zh-tw"
2605
- msgstr "Chinois (Taïwan)"
2606
-
2607
- # Zulu
2608
- #: ../../admin/lang/dynamic_strings.php:296
2609
- msgid "l-zu"
2610
- msgstr "Zoulou"
2611
-
2612
- # Zulu
2613
- #: ../../admin/lang/dynamic_strings.php:297
2614
- msgid "l-zu-za"
2615
- msgstr "Zoulou"
2616
-
2617
- # Unknown
2618
- #: ../../admin/lang/dynamic_strings.php:298
2619
- #: ../../admin/view/wp-slimstat-reports.php:505
2620
- msgid "l-"
2621
- msgstr "Inconnue"
2622
-
2623
- # Unknown
2624
- #: ../../admin/lang/dynamic_strings.php:299
2625
- msgid "l-empty"
2626
- msgstr "Inconnue"
2627
-
2628
- # Unknown
2629
- #: ../../admin/lang/dynamic_strings.php:300
2630
- msgid "l-xx"
2631
- msgstr "Inconnue"
2632
-
2633
- #: ../../admin/lang/dynamic_strings.php:301
2634
- msgid "c-xy"
2635
- msgstr "Local"
2636
-
2637
- #: ../../admin/view/index.php:24
2638
- msgid "is between (x,y)"
2639
- msgstr "est entre (x,y)"
2640
-
2641
- #: ../../admin/view/index.php:44
2642
- msgid "Load"
2643
- msgstr ""
2644
-
2645
- #: ../../admin/view/index.php:64 ../../admin/view/wp-slimstat-reports.php:821
2646
- msgid "Today"
2647
- msgstr "Aujourd'hui"
2648
-
2649
- #: ../../admin/view/index.php:65 ../../admin/view/wp-slimstat-reports.php:822
2650
- msgid "Yesterday"
2651
- msgstr "Hier"
2652
-
2653
- #: ../../admin/view/index.php:66
2654
- msgid "Last 7 Days"
2655
- msgstr "7 derniers jours"
2656
-
2657
- #: ../../admin/view/index.php:67
2658
- msgid "Last 60 Days"
2659
- msgstr "60 derniers jours"
2660
-
2661
- #: ../../admin/view/index.php:68
2662
- msgid "Last 90 Days"
2663
- msgstr "90 derniers jours"
2664
-
2665
- #: ../../admin/view/index.php:69
2666
- msgid "This Year So Far"
2667
- msgstr "Cette année"
2668
-
2669
- #: ../../admin/view/index.php:70
2670
- msgid "Date Range"
2671
- msgstr "Intervalle de date"
2672
-
2673
- #: ../../admin/view/index.php:72 ../../admin/view/wp-slimstat-db.php:70
2674
- msgid "Day"
2675
- msgstr "Jour"
2676
-
2677
- #: ../../admin/view/index.php:82 ../../admin/view/wp-slimstat-db.php:71
2678
- msgid "Month"
2679
- msgstr "Mois"
2680
-
2681
- #: ../../admin/view/index.php:91 ../../admin/view/wp-slimstat-db.php:72
2682
- msgid "Year"
2683
- msgstr "Année"
2684
-
2685
- #: ../../admin/view/index.php:92 ../../admin/view/wp-slimstat-db.php:69
2686
- msgid "Hour"
2687
- msgstr "Heure"
2688
-
2689
- #: ../../admin/view/index.php:93
2690
- #, fuzzy
2691
- msgid "Min"
2692
- msgstr "Mois"
2693
-
2694
- #: ../../admin/view/index.php:101 ../../admin/view/wp-slimstat-db.php:75
2695
- #, fuzzy
2696
- msgid "hours"
2697
- msgstr "Pages vues"
2698
-
2699
- #: ../../admin/view/index.php:102
2700
- msgid "mins"
2701
- msgstr ""
2702
-
2703
- #: ../../admin/view/index.php:110
2704
- msgid "Reset Filters"
2705
- msgstr "Réinitialiser les filtres"
2706
-
2707
- #: ../../admin/view/index.php:151
2708
- msgid "Your report here"
2709
- msgstr "Votre rapport ici"
2710
-
2711
- #: ../../admin/view/index.php:153
2712
- msgid ""
2713
- "Yes, you can! Create and view your personalized analytics for Slimstat. Just "
2714
- "write a new plugin that retrieves the desired information from the database "
2715
- "and then hook it to the action <code>wp_slimstat_custom_report</code>. For "
2716
- "more information, visit my <a href=\"http://wordpress.org/tags/wp-slimstat?"
2717
- "forum_id=10\" target=\"_blank\">support forum</a>."
2718
- msgstr ""
2719
- "Oui, c'est possible! Créer et voir des statistiques personalisées pour WP "
2720
- "SlimStat. Pour ce faire, il suffit d'écrire une extension qui extrait de la "
2721
- "base de données les informations désirées et les envoie à l'action "
2722
- "<code>wp_slimstat_custom_report</code>. Une extension de démonstration est "
2723
- "livrée avec le logiciel. Elle montre comme créer des rapports personnalisés "
2724
- "en 5 minutes. Vous la trouverez dans le répertoire plugin : <code>wp-"
2725
- "slimstat-custom-report-demo.php</code>. Pour plus d'information, visitez "
2726
- "mon <a href=\"http://lab.duechiacchiere.it/\" target=\"_blank\">forum "
2727
- "d'aide</a>."
2728
-
2729
- #: ../../admin/view/index.php:167 ../../admin/view/wp-slimstat-reports.php:812
2730
- #: ../../admin/view/wp-slimstat-reports.php:914
2731
- #: ../../admin/view/wp-slimstat-reports.php:1137
2732
- msgid "Pageviews"
2733
- msgstr "Pages vues"
2734
-
2735
- #: ../../admin/view/index.php:170
2736
- msgid ""
2737
- "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2738
- "Slimstat leverages this information to identify returning visitors. Please "
2739
- "note that visitors also include registered users."
2740
- msgstr ""
2741
- "Lorsque les visiteurs laissent un commentaire sur votre blog, Wordpress leur "
2742
- "attribue un cookie. WP SlimStat exploite ces informations pour identifier "
2743
- "les visiteurs qui reviennent, y compris les utilisateurs enregistrés."
2744
-
2745
- #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2746
- #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2747
- msgid "Color codes"
2748
- msgstr "Codes couleur"
2749
-
2750
- #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2751
- msgid "From search result page"
2752
- msgstr "Depuis un moteur de recherche"
2753
-
2754
- #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2755
- #: ../../admin/wp-slimstat-admin.php:806
2756
- msgid "Known Visitor"
2757
- msgstr "Visiteurs connus"
2758
-
2759
- #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2760
- #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2761
- msgid "Known Users"
2762
- msgstr "Utilisateurs connus"
2763
-
2764
- #: ../../admin/view/index.php:174 ../../admin/view/index.php:212
2765
- #: ../../admin/view/index.php:215 ../../admin/view/right-now.php:21
2766
- msgid "Other Humans"
2767
- msgstr "Autres humains"
2768
-
2769
- #: ../../admin/view/index.php:174 ../../admin/view/right-now.php:21
2770
- msgid "Bot or Crawler"
2771
- msgstr "Robot ou Crawler"
2772
-
2773
- #: ../../admin/view/index.php:178
2774
- msgid "Keywords used by your visitors to find your website on a search engine."
2775
- msgstr ""
2776
- "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
2777
- "de recherche."
2778
-
2779
- #: ../../admin/view/index.php:181
2780
- msgid ""
2781
- "Slimstat retrieves live information from Alexa, Facebook and Google, to "
2782
- "measures your site's rankings. Values are updated every 12 hours. Filters "
2783
- "set above don't apply to this report."
2784
- msgstr ""
2785
- "WP SlimStat récupère les informations d'Alexa, facebook, et Google, pour "
2786
- "mesurer le classement de votre site. Les données sont actualisées toutes les "
2787
- "12 heures. Les filtres indiqués ci-dessus ne sont pas pris en compte dans ce "
2788
- "rapport."
2789
-
2790
- #: ../../admin/view/index.php:184
2791
- msgid "Human Visits"
2792
- msgstr "Visiteurs humains"
2793
-
2794
- #: ../../admin/view/index.php:187
2795
- msgid ""
2796
- "Internet Service Provider: a company which provides other companies or "
2797
- "individuals with access to the Internet. Your DSL or cable internet service "
2798
- "is provided to you by your ISP.<br><br>You can ignore specific IP addresses "
2799
- "by setting the corresponding filter under Settings > Slimstat > Filters."
2800
- msgstr ""
2801
- "Fournisseur d'Accès Internet: une société qui fournit à d'autres entreprises "
2802
- "ou à des particuliers un accès à Internet. Votre DSL ou service Internet par "
2803
- "câble est fourni par votre FAI. <br><br> Vous pouvez ignorer des adresses IP "
2804
- "spécifiques en définissant le filtre correspondant sous SlimStat> Réglages> "
2805
- "Filtres."
2806
-
2807
- #: ../../admin/view/index.php:190
2808
- msgid ""
2809
- "You can configure Slimstat to ignore a specific Country by setting the "
2810
- "corresponding filter under Settings > Slimstat > Filters."
2811
- msgstr ""
2812
- "Vous pouvez configurer WP SlimStat afin d'ignorer un pays spécifique en "
2813
- "définissant le filtre correspondant sous SlimStat> Paramètres> Filtres."
2814
-
2815
- #: ../../admin/view/index.php:193
2816
- msgid ""
2817
- "This report shows you what user agent families (no version considered) are "
2818
- "popular among your visitors."
2819
- msgstr ""
2820
- "Ce rapport affiche quelles familles d'user agent (sans prise en compte de "
2821
- "version) sont populaires chez vos visiteurs."
2822
-
2823
- #: ../../admin/view/index.php:196
2824
- msgid ""
2825
- "This report shows you what operating system families (no version considered) "
2826
- "are popular among your visitors."
2827
- msgstr ""
2828
- "Ce rapport affiche quelles familles de système d'exploitation (sans prise en "
2829
- "compte de version) sont populaires chez vos visiteurs."
2830
-
2831
- #: ../../admin/view/index.php:199 ../../admin/view/wp-slimstat-reports.php:38
2832
- #: ../../admin/wp-slimstat-admin.php:509 ../../admin/wp-slimstat-admin.php:526
2833
- #: ../../wp-slimstat.php:1348
2834
- msgid "Traffic Sources"
2835
- msgstr "Sources de trafic"
2836
-
2837
- #: ../../admin/view/index.php:202
2838
- msgid "Average Pageviews per Visit"
2839
- msgstr "Moyenne des pages vues par visite"
2840
-
2841
- #: ../../admin/view/index.php:205
2842
- msgid ""
2843
- "A <em>bounce page</em> is a single-page visit, or visit in which the person "
2844
- "left your site from the entrance (landing) page."
2845
- msgstr ""
2846
- "Une <em>page de rebond </em> est la visite d'une seule page, ou une visite "
2847
- "au cours de laquelle le visiteur a quitté votre site à partir de la page "
2848
- "d'entrée."
2849
-
2850
- #: ../../admin/view/index.php:208
2851
- msgid "Searches performed using Wordpress' built-in search functionality."
2852
- msgstr ""
2853
- "Recherches effectuées en utilisant la fonctionnalité de recherche intégrée "
2854
- "dans Wordpress."
2855
-
2856
- #: ../../admin/view/index.php:212
2857
- msgid ""
2858
- "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
2859
- "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
2860
- "link has an ID attribute associated to it."
2861
- msgstr ""
2862
- "<strong>Détails de Liens</strong>><br>- <em>A:n</em> signifie que le n-ième "
2863
- "lien dans la page a été cliqué. <br>- <em>ID:xx</em> est affiché lorsque le "
2864
- "lien correspondant possède un attribut ID qui lui est associé."
2865
-
2866
- #: ../../admin/view/index.php:215
2867
- msgid ""
2868
- "This report lists any <em>event</em> occurred on your website. Please refer "
2869
- "to the FAQ for more information on how to leverage this functionality."
2870
- msgstr ""
2871
- "Ce rapport répertorie tous les <em>évènements</em> survenus sur votre site "
2872
- "web. S'il vous plaît se référer à la FAQ pour plus d'informations sur la "
2873
- "façon de tirer parti de cette fonctionnalité."
2874
-
2875
- #: ../../admin/view/index.php:218
2876
- msgid ""
2877
- "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2878
- "this report is not affected by the filters set here above."
2879
- msgstr ""
2880
- "Votre contenu en bref : Posts, commentaires, pingbacks, etc. Merci de noter "
2881
- "que ce rpport ne prend pas en compte les filtres ci-dessus."
2882
-
2883
- #: ../../admin/view/right-now.php:8
2884
- msgid "Human"
2885
- msgstr "Humain"
2886
-
2887
- #: ../../admin/view/right-now.php:8
2888
- msgid "Bot/Crawler"
2889
- msgstr "Robot / Crawler"
2890
-
2891
- #: ../../admin/view/right-now.php:8
2892
- msgid "Mobile Device"
2893
- msgstr "Appareil mobile"
2894
-
2895
- #: ../../admin/view/right-now.php:8
2896
- msgid "Syndication Reader"
2897
- msgstr "Lecteur de Flux (Syndication)"
2898
-
2899
- #: ../../admin/view/right-now.php:30
2900
- #: ../../admin/view/wp-slimstat-reports.php:440
2901
- #: ../../admin/view/wp-slimstat-reports.php:703
2902
- msgid "No data to display"
2903
- msgstr "Aucune donnée à afficher"
2904
-
2905
- # Unknown
2906
- #: ../../admin/view/right-now.php:56
2907
- #: ../../admin/view/wp-slimstat-reports.php:493
2908
- #: ../../admin/view/wp-slimstat-reports.php:746
2909
- #: ../../admin/view/wp-slimstat-reports.php:1025
2910
- msgid "c-"
2911
- msgstr "Inconnu"
2912
-
2913
- #: ../../admin/view/right-now.php:109 ../../admin/view/wp-slimstat-db.php:61
2914
- #: ../../admin/wp-slimstat-admin.php:808 ../../admin/wp-slimstat-admin.php:850
2915
- msgid "Originating IP"
2916
- msgstr "IP d'origine"
2917
-
2918
- #: ../../admin/view/right-now.php:130
2919
- msgid "Server Latency and Page Speed in milliseconds"
2920
- msgstr "Latence du serveur et Rapidité de la page en millisecondes"
2921
-
2922
- #: ../../admin/view/right-now.php:130
2923
- msgid "SL"
2924
- msgstr "SL"
2925
-
2926
- #: ../../admin/view/right-now.php:130
2927
- msgid "PS"
2928
- msgstr "PS"
2929
-
2930
- #: ../../admin/view/right-now.php:142
2931
- #: ../../admin/view/wp-slimstat-reports.php:552
2932
- #: ../../admin/view/wp-slimstat-reports.php:556
2933
- #: ../../admin/view/wp-slimstat-reports.php:728
2934
- #: ../../admin/view/wp-slimstat-reports.php:781
2935
- msgid "Open this URL in a new window"
2936
- msgstr "Ouvir cette URL dans une nouvelle fenêtre"
2937
-
2938
- #: ../../admin/view/right-now.php:145
2939
- msgid "Local search results page"
2940
- msgstr "Page de résultat d'une recherche locale"
2941
-
2942
- #: ../../admin/view/right-now.php:150 ../../admin/view/wp-slimstat-db.php:40
2943
- #: ../../admin/wp-slimstat-admin.php:811 ../../admin/wp-slimstat-admin.php:827
2944
- msgid "Search Terms"
2945
- msgstr "Termes de recherche"
2946
-
2947
- #: ../../admin/view/right-now.php:153
2948
- msgid "Open this referrer in a new window"
2949
- msgstr "Ouvrir ce référent dans une nouvelle fenêtre"
2950
-
2951
- #: ../../admin/view/right-now.php:154
2952
- msgid "Open this outbound link in a new window"
2953
- msgstr "Ouvir cette URL dans une nouvelle fenêtre"
2954
-
2955
- #: ../../admin/view/right-now.php:155
2956
- msgid "Date and Time"
2957
- msgstr "Date/Heure"
2958
-
2959
- #: ../../admin/view/right-now.php:156
2960
- msgid "Content Type"
2961
- msgstr "Type de contenu"
2962
-
2963
- #: ../../admin/view/wp-slimstat-db.php:37
2964
- #: ../../admin/wp-slimstat-admin.php:824
2965
- msgid "Browser"
2966
- msgstr "Navigateur Web"
2967
-
2968
- #: ../../admin/view/wp-slimstat-db.php:38
2969
- #: ../../admin/view/wp-slimstat-reports.php:492
2970
- #: ../../admin/wp-slimstat-admin.php:825
2971
- msgid "Country Code"
2972
- msgstr "Code du pays"
2973
-
2974
- #: ../../admin/view/wp-slimstat-db.php:39
2975
- msgid "IP Address"
2976
- msgstr "Adresse IP"
2977
-
2978
- #: ../../admin/view/wp-slimstat-db.php:41
2979
- #: ../../admin/view/wp-slimstat-reports.php:504
2980
- #: ../../admin/wp-slimstat-admin.php:828
2981
- msgid "Language Code"
2982
- msgstr "Code langue"
2983
-
2984
- #: ../../admin/view/wp-slimstat-db.php:42
2985
- #: ../../admin/wp-slimstat-admin.php:829
2986
- msgid "Operating System"
2987
- msgstr "Système d'exploitation (OS)"
2988
-
2989
- #: ../../admin/view/wp-slimstat-db.php:43
2990
- #: ../../admin/wp-slimstat-admin.php:830
2991
- msgid "Permalink"
2992
- msgstr "Permalien"
2993
-
2994
- #: ../../admin/view/wp-slimstat-db.php:44
2995
- msgid "Domain"
2996
- msgstr "le domaine"
2997
-
2998
- #: ../../admin/view/wp-slimstat-db.php:45
2999
- #: ../../admin/wp-slimstat-admin.php:831
3000
- msgid "Referer"
3001
- msgstr "Référent"
3002
-
3003
- #: ../../admin/view/wp-slimstat-db.php:46
3004
- #: ../../admin/wp-slimstat-admin.php:832
3005
- msgid "Visitor's Name"
3006
- msgstr "le nom des visiteurs"
3007
-
3008
- #: ../../admin/view/wp-slimstat-db.php:47
3009
- msgid "Page Speed"
3010
- msgstr "Pages vues"
3011
-
3012
- #: ../../admin/view/wp-slimstat-db.php:49
3013
- msgid "-- Advanced filters --"
3014
- msgstr "-- Filtres Avancés --"
3015
-
3016
- #: ../../admin/view/wp-slimstat-db.php:50
3017
- #: ../../admin/view/wp-slimstat-reports.php:64
3018
- msgid "Browser Capabilities"
3019
- msgstr "Capacités des Navigateurs"
3020
-
3021
- #: ../../admin/view/wp-slimstat-db.php:51
3022
- #: ../../admin/wp-slimstat-admin.php:843
3023
- msgid "Browser Version"
3024
- msgstr "Version de navigateur"
3025
-
3026
- #: ../../admin/view/wp-slimstat-db.php:52
3027
- #: ../../admin/wp-slimstat-admin.php:844
3028
- msgid "Browser Type"
3029
- msgstr "le type de navigateur Web"
3030
-
3031
- #: ../../admin/view/wp-slimstat-db.php:53
3032
- #: ../../admin/wp-slimstat-admin.php:813
3033
- msgid "User Agent"
3034
- msgstr "User Agent"
3035
-
3036
- #: ../../admin/view/wp-slimstat-db.php:54
3037
- #: ../../admin/wp-slimstat-admin.php:845
3038
- msgid "Color Depth"
3039
- msgstr "Profondeur de couleur"
3040
-
3041
- #: ../../admin/view/wp-slimstat-db.php:55
3042
- #: ../../admin/wp-slimstat-admin.php:846
3043
- msgid "CSS Version"
3044
- msgstr "Version CSS"
3045
-
3046
- #: ../../admin/view/wp-slimstat-db.php:56
3047
- #: ../../admin/wp-slimstat-admin.php:847
3048
- msgid "Pageview Attributes"
3049
- msgstr "l'attribut des Pages Vues"
3050
-
3051
- #: ../../admin/view/wp-slimstat-db.php:57
3052
- msgid "Server Latency"
3053
- msgstr "Latence du serveur"
3054
-
3055
- #: ../../admin/view/wp-slimstat-db.php:58
3056
- #: ../../admin/wp-slimstat-admin.php:814
3057
- msgid "Outbound Link"
3058
- msgstr "Lien sortant"
3059
-
3060
- #: ../../admin/view/wp-slimstat-db.php:59
3061
- #: ../../admin/wp-slimstat-admin.php:848
3062
- msgid "Post Author"
3063
- msgstr "l'auteur de l'article"
3064
-
3065
- #: ../../admin/view/wp-slimstat-db.php:60
3066
- #: ../../admin/wp-slimstat-admin.php:849
3067
- msgid "Post Category ID"
3068
- msgstr "ID de la catégorie de l'article"
3069
-
3070
- #: ../../admin/view/wp-slimstat-db.php:62
3071
- #: ../../admin/wp-slimstat-admin.php:851
3072
- msgid "Resource Content Type"
3073
- msgstr "le type de source de contenu"
3074
-
3075
- #: ../../admin/view/wp-slimstat-db.php:63
3076
- msgid "Resource ID"
3077
- msgstr "l'ID de ressources"
3078
-
3079
- #: ../../admin/view/wp-slimstat-db.php:64
3080
- #: ../../admin/wp-slimstat-admin.php:852
3081
- msgid "Screen Resolution"
3082
- msgstr "la résolution de l'écran"
3083
-
3084
- #: ../../admin/view/wp-slimstat-db.php:65
3085
- #: ../../admin/wp-slimstat-admin.php:853
3086
- msgid "Visit ID"
3087
- msgstr "Visites ID"
3088
-
3089
- #: ../../admin/view/wp-slimstat-db.php:68
3090
- msgid "Minute"
3091
- msgstr ""
3092
-
3093
- #: ../../admin/view/wp-slimstat-db.php:73
3094
- msgid "+/-"
3095
- msgstr ""
3096
-
3097
- #: ../../admin/view/wp-slimstat-db.php:76
3098
- msgid "minutes"
3099
- msgstr "minutes"
3100
-
3101
- #: ../../admin/view/wp-slimstat-db.php:78
3102
- msgid "Order Direction"
3103
- msgstr "Ordre de tri"
3104
-
3105
- #: ../../admin/view/wp-slimstat-db.php:79
3106
- msgid "Limit Results"
3107
- msgstr "Limiter les résultats"
3108
-
3109
- #: ../../admin/view/wp-slimstat-db.php:80
3110
- msgid "Start From"
3111
- msgstr "Commencer à partir de"
3112
-
3113
- #: ../../admin/view/wp-slimstat-reports.php:34
3114
- #: ../../admin/wp-slimstat-admin.php:505 ../../wp-slimstat.php:1344
3115
- msgid "Real-Time Log"
3116
- msgstr "Accès en temps réel"
3117
-
3118
- #: ../../admin/view/wp-slimstat-reports.php:35
3119
- #: ../../admin/wp-slimstat-admin.php:506 ../../admin/wp-slimstat-admin.php:523
3120
- #: ../../wp-slimstat.php:1345
3121
- msgid "Overview"
3122
- msgstr "Vue générale"
3123
-
3124
- #: ../../admin/view/wp-slimstat-reports.php:36
3125
- #: ../../admin/wp-slimstat-admin.php:507 ../../admin/wp-slimstat-admin.php:524
3126
- #: ../../wp-slimstat.php:1346
3127
- msgid "Audience"
3128
- msgstr "Audience"
3129
-
3130
- #: ../../admin/view/wp-slimstat-reports.php:37
3131
- #: ../../admin/wp-slimstat-admin.php:508 ../../admin/wp-slimstat-admin.php:525
3132
- #: ../../wp-slimstat.php:1347
3133
- msgid "Site Analysis"
3134
- msgstr "Analyse du site"
3135
-
3136
- #: ../../admin/view/wp-slimstat-reports.php:39
3137
- #: ../../admin/wp-slimstat-admin.php:510 ../../admin/wp-slimstat-admin.php:527
3138
- #: ../../wp-slimstat.php:1349
3139
- msgid "Map Overlay"
3140
- msgstr "Carte géographique"
3141
-
3142
- #: ../../admin/view/wp-slimstat-reports.php:40
3143
- #: ../../admin/wp-slimstat-admin.php:511 ../../admin/wp-slimstat-admin.php:528
3144
- #: ../../wp-slimstat.php:1350
3145
- msgid "Custom Reports"
3146
- msgstr "Rapports personnalisés"
3147
-
3148
- #: ../../admin/view/wp-slimstat-reports.php:44
3149
- msgid "Pageviews (chart)"
3150
- msgstr "Pages vues (graph)"
3151
-
3152
- #: ../../admin/view/wp-slimstat-reports.php:45
3153
- msgid "About Slimstat"
3154
- msgstr "À propos de WP-SlimStat"
3155
-
3156
- #: ../../admin/view/wp-slimstat-reports.php:46
3157
- msgid "At a Glance"
3158
- msgstr "Brièvement"
3159
-
3160
- #: ../../admin/view/wp-slimstat-reports.php:47
3161
- msgid "Currently Online"
3162
- msgstr "Actuellement en ligne"
3163
-
3164
- #: ../../admin/view/wp-slimstat-reports.php:48
3165
- #: ../../admin/view/wp-slimstat-reports.php:82
3166
- msgid "Spy View"
3167
- msgstr "Vue Espion"
3168
-
3169
- #: ../../admin/view/wp-slimstat-reports.php:49
3170
- #: ../../admin/view/wp-slimstat-reports.php:83
3171
- msgid "Recent Search Terms"
3172
- msgstr "Derniers Termes de Recherches"
3173
-
3174
- #: ../../admin/view/wp-slimstat-reports.php:50
3175
- msgid "Top Pages"
3176
- msgstr "Top Pages Vues"
3177
-
3178
- #: ../../admin/view/wp-slimstat-reports.php:51
3179
- #: ../../admin/view/wp-slimstat-reports.php:80
3180
- msgid "Top Traffic Sources"
3181
- msgstr "Top Sources de Trafic"
3182
-
3183
- #: ../../admin/view/wp-slimstat-reports.php:52
3184
- msgid "Top Known Visitors"
3185
- msgstr "Top Visiteurs Connus"
3186
-
3187
- #: ../../admin/view/wp-slimstat-reports.php:53
3188
- #: ../../admin/view/wp-slimstat-reports.php:78
3189
- #: ../../admin/view/wp-slimstat-reports.php:98
3190
- msgid "Top Search Terms"
3191
- msgstr "Top Termes de Recherche"
3192
-
3193
- #: ../../admin/view/wp-slimstat-reports.php:54
3194
- #: ../../admin/view/wp-slimstat-reports.php:65
3195
- #: ../../admin/view/wp-slimstat-reports.php:79
3196
- msgid "Top Countries"
3197
- msgstr "Pays les plus récurrents"
3198
-
3199
- #: ../../admin/view/wp-slimstat-reports.php:55
3200
- msgid "Rankings"
3201
- msgstr "Classements"
3202
-
3203
- #: ../../admin/view/wp-slimstat-reports.php:56
3204
- msgid "Top Language Families"
3205
- msgstr "Top Langues"
3206
-
3207
- #: ../../admin/view/wp-slimstat-reports.php:57
3208
- msgid "Human Visits (chart)"
3209
- msgstr "Visiteurs Humains (graph)"
3210
-
3211
- #: ../../admin/view/wp-slimstat-reports.php:58
3212
- msgid "Audience Overview"
3213
- msgstr "Vue générale"
3214
-
3215
- #: ../../admin/view/wp-slimstat-reports.php:59
3216
- msgid "Top Languages"
3217
- msgstr "Top Langues"
3218
-
3219
- #: ../../admin/view/wp-slimstat-reports.php:60
3220
- msgid "Top Browsers"
3221
- msgstr "Principaux navigateurs"
3222
-
3223
- #: ../../admin/view/wp-slimstat-reports.php:61
3224
- msgid "Top Service Providers"
3225
- msgstr "Top Fournisseur d'Accès"
3226
-
3227
- #: ../../admin/view/wp-slimstat-reports.php:62
3228
- msgid "Top Operating Systems"
3229
- msgstr "Top Systèmes d'Exploitation"
3230
-
3231
- #: ../../admin/view/wp-slimstat-reports.php:63
3232
- msgid "Top Screen Resolutions"
3233
- msgstr "Top Résolutions d'écran"
3234
-
3235
- #: ../../admin/view/wp-slimstat-reports.php:66
3236
- msgid "Visit Duration"
3237
- msgstr "Durée des Visites"
3238
-
3239
- #: ../../admin/view/wp-slimstat-reports.php:67
3240
- #: ../../admin/view/wp-slimstat-reports.php:84
3241
- msgid "Recent Countries"
3242
- msgstr "Derniers Pays"
3243
-
3244
- #: ../../admin/view/wp-slimstat-reports.php:68
3245
- msgid "Recent Screen Resolutions"
3246
- msgstr "Dernières Résolutions d'écran"
3247
-
3248
- #: ../../admin/view/wp-slimstat-reports.php:69
3249
- msgid "Recent Operating Systems"
3250
- msgstr "Derniers Systèmes d'Exploitation"
3251
-
3252
- #: ../../admin/view/wp-slimstat-reports.php:70
3253
- msgid "Recent Browsers"
3254
- msgstr "Navigateurs récents"
3255
-
3256
- #: ../../admin/view/wp-slimstat-reports.php:71
3257
- msgid "Recent Languages"
3258
- msgstr "Dernier Language"
3259
-
3260
- #: ../../admin/view/wp-slimstat-reports.php:72
3261
- msgid "Top Browser Families"
3262
- msgstr "Principales familles de navigateurs"
3263
-
3264
- #: ../../admin/view/wp-slimstat-reports.php:73
3265
- msgid "Top OS Families"
3266
- msgstr "Principales familles de SO"
3267
-
3268
- #: ../../admin/view/wp-slimstat-reports.php:74
3269
- msgid "Recent Users"
3270
- msgstr "Utilisateurs récents"
3271
-
3272
- #: ../../admin/view/wp-slimstat-reports.php:75
3273
- msgid "Top Users"
3274
- msgstr "Principaux utilisateurs"
3275
-
3276
- #: ../../admin/view/wp-slimstat-reports.php:76
3277
- msgid "Traffic Sources (chart)"
3278
- msgstr "Sources de trafic (graph)"
3279
-
3280
- #: ../../admin/view/wp-slimstat-reports.php:77
3281
- msgid "Summary"
3282
- msgstr "Récapitulatif"
3283
-
3284
- #: ../../admin/view/wp-slimstat-reports.php:81
3285
- msgid "Top Referring Search Engines"
3286
- msgstr "Top Moteurs de Recherche"
3287
-
3288
- #: ../../admin/view/wp-slimstat-reports.php:85
3289
- #: ../../admin/view/wp-slimstat-reports.php:101
3290
- msgid "Top Landing Pages"
3291
- msgstr "Top Pages d'entrées"
3292
-
3293
- #: ../../admin/view/wp-slimstat-reports.php:86
3294
- msgid "Average Pageviews per Visit (chart)"
3295
- msgstr "Moyenne des pages vues par visite (graph)"
3296
-
3297
- #: ../../admin/view/wp-slimstat-reports.php:87
3298
- msgid "Recent Posts"
3299
- msgstr "Contenus récents"
3300
-
3301
- #: ../../admin/view/wp-slimstat-reports.php:88
3302
- msgid "Recent Bounce Pages"
3303
- msgstr "Dernières Pages de Rebonds"
3304
-
3305
- #: ../../admin/view/wp-slimstat-reports.php:89
3306
- msgid "Recent Feeds"
3307
- msgstr "Flux récents"
3308
-
3309
- #: ../../admin/view/wp-slimstat-reports.php:90
3310
- msgid "Recent Pages Not Found"
3311
- msgstr "Dernières pages non trouvées"
3312
-
3313
- #: ../../admin/view/wp-slimstat-reports.php:91
3314
- msgid "Recent Internal Searches"
3315
- msgstr "Recherches internes récentes"
3316
-
3317
- #: ../../admin/view/wp-slimstat-reports.php:92
3318
- msgid "Top Categories"
3319
- msgstr "Top Catégories"
3320
-
3321
- #: ../../admin/view/wp-slimstat-reports.php:93
3322
- msgid "Recent Outbound Links"
3323
- msgstr "Liens sortants récents"
3324
-
3325
- #: ../../admin/view/wp-slimstat-reports.php:94
3326
- msgid "Recent Events"
3327
- msgstr "Evènements Récents"
3328
-
3329
- #: ../../admin/view/wp-slimstat-reports.php:95
3330
- msgid "Top Posts"
3331
- msgstr "Top Posts"
3332
-
3333
- #: ../../admin/view/wp-slimstat-reports.php:96
3334
- msgid "Top Feeds"
3335
- msgstr "Top Feeds"
3336
-
3337
- #: ../../admin/view/wp-slimstat-reports.php:97
3338
- msgid "Top Internal Searches"
3339
- msgstr "Top Recherches Internes"
3340
-
3341
- #: ../../admin/view/wp-slimstat-reports.php:99
3342
- msgid "Recent Categories"
3343
- msgstr "Dernières Catégories"
3344
-
3345
- #: ../../admin/view/wp-slimstat-reports.php:100
3346
- msgid "Top Pages Not Found"
3347
- msgstr "Top Pages non trouvées"
3348
-
3349
- #: ../../admin/view/wp-slimstat-reports.php:102
3350
- msgid "Top Authors"
3351
- msgstr "Top Auteurs"
3352
-
3353
- #: ../../admin/view/wp-slimstat-reports.php:103
3354
- msgid "Top Tags"
3355
- msgstr "Top Mots Clés"
3356
-
3357
- #: ../../admin/view/wp-slimstat-reports.php:104
3358
- msgid "Recent Downloads"
3359
- msgstr "Téléchargements récents"
3360
-
3361
- #: ../../admin/view/wp-slimstat-reports.php:105
3362
- msgid "Top OutLinks and Downloads"
3363
- msgstr "Top des liens \"Outbounds\" et des téléchargements"
3364
-
3365
- #: ../../admin/view/wp-slimstat-reports.php:106
3366
- msgid "Your Website"
3367
- msgstr "Votre site web"
3368
-
3369
- #: ../../admin/view/wp-slimstat-reports.php:107
3370
- msgid "World Map"
3371
- msgstr "Carte du monde"
3372
-
3373
- #: ../../admin/view/wp-slimstat-reports.php:108
3374
- msgid "Activity"
3375
- msgstr "Statistiques de fréquentation"
3376
-
3377
- #: ../../admin/view/wp-slimstat-reports.php:215
3378
- msgid "Chart controls"
3379
- msgstr "Contrôle du graphique"
3380
-
3381
- #: ../../admin/view/wp-slimstat-reports.php:215
3382
- msgid "Use your mouse wheel to zoom in and out"
3383
- msgstr "Utilisez la molette de votre souris pour zoomer et dézoomer"
3384
-
3385
- #: ../../admin/view/wp-slimstat-reports.php:215
3386
- msgid "While zooming in, drag the chart to move to a different area"
3387
- msgstr ""
3388
- "Alors que le zoom avant est activé, faites glisser la carte pour passer à "
3389
- "une autre zone"
3390
-
3391
- #: ../../admin/view/wp-slimstat-reports.php:215
3392
- msgid "Double click on an empty region to reset the zoom level"
3393
- msgstr "Double-cliquez sur une zone vide pour réinitialiser le niveau de zoom"
3394
-
3395
- #: ../../admin/view/wp-slimstat-reports.php:228
3396
- msgid "src"
3397
- msgstr "src"
3398
-
3399
- #: ../../admin/view/wp-slimstat-reports.php:229
3400
- msgid "serp"
3401
- msgstr "serp"
3402
-
3403
- #: ../../admin/view/wp-slimstat-reports.php:234
3404
- msgid "Go to the corresponding search engine result page"
3405
- msgstr ""
3406
- "Aller sur la page correspondant aux résultats du moteur de recherche (SERP)"
3407
-
3408
- #: ../../admin/view/wp-slimstat-reports.php:237
3409
- msgid "Go to the referring page"
3410
- msgstr "Aller sur la page référente"
3411
-
3412
- #: ../../admin/view/wp-slimstat-reports.php:260
3413
- msgid "Remove filter for"
3414
- msgstr "Enlever le filtre pour"
3415
-
3416
- #: ../../admin/view/wp-slimstat-reports.php:264
3417
- msgid "Save"
3418
- msgstr ""
3419
-
3420
- #: ../../admin/view/wp-slimstat-reports.php:267
3421
- msgid "Reset All"
3422
- msgstr "Réinitialiser l'ensemble"
3423
-
3424
- #: ../../admin/view/wp-slimstat-reports.php:271
3425
- msgid "Current filters:"
3426
- msgstr "Filtres actifs :"
3427
-
3428
- #: ../../admin/view/wp-slimstat-reports.php:275
3429
- msgid "Refresh"
3430
- msgstr "Rafraichir"
3431
-
3432
- #: ../../admin/view/wp-slimstat-reports.php:354
3433
- #, php-format
3434
- msgid "Results %s - %s of %s"
3435
- msgstr "Résultats %s - %s de %s"
3436
-
3437
- #: ../../admin/view/wp-slimstat-reports.php:356
3438
- msgid "Refresh in"
3439
- msgstr "Rafraichir dans "
3440
-
3441
- #: ../../admin/view/wp-slimstat-reports.php:378
3442
- #: ../../admin/view/wp-slimstat-reports.php:390
3443
- #, php-format
3444
- msgid "Daily %s"
3445
- msgstr "%s par Jour"
3446
-
3447
- #: ../../admin/view/wp-slimstat-reports.php:381
3448
- #, php-format
3449
- msgid "%s Minute by Minute"
3450
- msgstr "%s minute par minute"
3451
-
3452
- #: ../../admin/view/wp-slimstat-reports.php:384
3453
- #, php-format
3454
- msgid "Hourly %s"
3455
- msgstr "%s par Heure"
3456
-
3457
- #: ../../admin/view/wp-slimstat-reports.php:387
3458
- #, php-format
3459
- msgid "Monthly %s"
3460
- msgstr "%s par Mois"
3461
-
3462
- #: ../../admin/view/wp-slimstat-reports.php:475
3463
- msgid "Category ID"
3464
- msgstr "l'ID de la catégorie de l'article"
3465
-
3466
- #: ../../admin/view/wp-slimstat-reports.php:508
3467
- msgid "OS Code"
3468
- msgstr "Code OS "
3469
-
3470
- #: ../../admin/view/wp-slimstat-reports.php:518
3471
- msgid "Referrer"
3472
- msgstr "Référent"
3473
-
3474
- #: ../../admin/view/wp-slimstat-reports.php:542
3475
- #: ../../admin/view/wp-slimstat-reports.php:849
3476
- #: ../../admin/view/wp-slimstat-reports.php:858
3477
- #: ../../admin/view/wp-slimstat-reports.php:864
3478
- #: ../../admin/view/wp-slimstat-reports.php:870
3479
- #: ../../admin/view/wp-slimstat-reports.php:876
3480
- #: ../../admin/view/wp-slimstat-reports.php:882
3481
- #: ../../admin/view/wp-slimstat-reports.php:888
3482
- #: ../../admin/view/wp-slimstat-reports.php:894
3483
- msgid "Hits"
3484
- msgstr "Hits"
3485
-
3486
- #: ../../admin/view/wp-slimstat-reports.php:720
3487
- msgid "Search for"
3488
- msgstr "Recherche pour"
3489
-
3490
- #: ../../admin/view/wp-slimstat-reports.php:771
3491
- #: ../../admin/view/wp-slimstat-reports.php:781
3492
- msgid "Source"
3493
- msgstr "Source"
3494
-
3495
- #: ../../admin/view/wp-slimstat-reports.php:773
3496
- msgid "Keywords"
3497
- msgstr "les mots clés"
3498
-
3499
- #: ../../admin/view/wp-slimstat-reports.php:781
3500
- #, php-format
3501
- msgid "Filter results where resource equals %s"
3502
- msgstr "Filtrer les résultats où la ressource égale %s"
3503
-
3504
- #: ../../admin/view/wp-slimstat-reports.php:782
3505
- msgid "Link Details"
3506
- msgstr "Détails"
3507
-
3508
- #: ../../admin/view/wp-slimstat-reports.php:795
3509
- msgid "Total Pageviews"
3510
- msgstr "Total Pages Vues"
3511
-
3512
- #: ../../admin/view/wp-slimstat-reports.php:796
3513
- msgid "DB Size"
3514
- msgstr "Taille de la base de données"
3515
-
3516
- #: ../../admin/view/wp-slimstat-reports.php:797
3517
- msgid "Tracking Active"
3518
- msgstr "Traçage actif"
3519
-
3520
- #: ../../admin/view/wp-slimstat-reports.php:798
3521
- msgid "Javascript Mode"
3522
- msgstr "Mode Javascript"
3523
-
3524
- #: ../../admin/view/wp-slimstat-reports.php:799
3525
- msgid "Tracking Browser Caps"
3526
- msgstr "Traçage Capacités Navigateurs"
3527
-
3528
- #: ../../admin/view/wp-slimstat-reports.php:800
3529
- msgid "Auto purge"
3530
- msgstr "Purge automatique"
3531
-
3532
- #: ../../admin/view/wp-slimstat-reports.php:800
3533
- #: ../../admin/wp-slimstat-admin.php:883
3534
- msgid "No"
3535
- msgstr "Non"
3536
-
3537
- #: ../../admin/view/wp-slimstat-reports.php:801
3538
- msgid "Oldest pageview"
3539
- msgstr "Plus ancienne page vue"
3540
-
3541
- #: ../../admin/view/wp-slimstat-reports.php:801
3542
- msgid "No visits"
3543
- msgstr "Aucune visite"
3544
-
3545
- #: ../../admin/view/wp-slimstat-reports.php:811
3546
- #: ../../admin/view/wp-slimstat-reports.php:913
3547
- msgid ""
3548
- "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
3549
- "the tracking code is executed."
3550
- msgstr ""
3551
- "Une demande pour charger un fichier HTML. WP SlimStat enregistre un \"pages "
3552
- "vues \" chaque fois que le code de traçage est exécuté."
3553
-
3554
- #: ../../admin/view/wp-slimstat-reports.php:813
3555
- msgid "How many pages have been visited on average during the current period."
3556
- msgstr ""
3557
- "Combien de pages ont été visitées en moyenne au cours de la période en cours."
3558
-
3559
- #: ../../admin/view/wp-slimstat-reports.php:814
3560
- msgid "Average Pageviews"
3561
- msgstr "Nombre de pages vues en moyenne"
3562
-
3563
- #: ../../admin/view/wp-slimstat-reports.php:815
3564
- msgid ""
3565
- "Visitors who landed on your site after searching for a keyword on Google, "
3566
- "Yahoo, etc."
3567
- msgstr ""
3568
- "Visiteurs qui sont arrivés sur votre site après une recherche par mots clés "
3569
- "sur Google, Yahoo, etc"
3570
-
3571
- #: ../../admin/view/wp-slimstat-reports.php:816
3572
- msgid "From Search Results"
3573
- msgstr "Résultat de recherches"
3574
-
3575
- #: ../../admin/view/wp-slimstat-reports.php:817
3576
- msgid ""
3577
- "Used to differentiate between multiple requests to download a file from one "
3578
- "internet address (IP) and requests originating from many distinct addresses"
3579
- msgstr ""
3580
- "Utilisé pour différencier entre plusieurs demandes de téléchargement d'un "
3581
- "fichier à partir d'une adresse Internet (IP) unique et les demandes "
3582
- "provenant de plusieurs adresses distinctes"
3583
-
3584
- #: ../../admin/view/wp-slimstat-reports.php:818
3585
- #: ../../admin/view/wp-slimstat-reports.php:833
3586
- #: ../../admin/view/wp-slimstat-reports.php:1137
3587
- #: ../../admin/view/wp-slimstat-reports.php:1141
3588
- #: ../../admin/view/wp-slimstat-reports.php:1145
3589
- msgid "Unique IPs"
3590
- msgstr "IPs uniques"
3591
-
3592
- #: ../../admin/view/wp-slimstat-reports.php:819
3593
- msgid "Last 5 minutes"
3594
- msgstr "5 dernières minutes"
3595
-
3596
- #: ../../admin/view/wp-slimstat-reports.php:820
3597
- msgid "Last 30 minutes"
3598
- msgstr "30 dernières minutes"
3599
-
3600
- #: ../../admin/view/wp-slimstat-reports.php:830
3601
- msgid ""
3602
- "A visit is a session of at most 30 minutes. Returning visitors are counted "
3603
- "multiple times if they perform multiple visits."
3604
- msgstr ""
3605
- "Une visite est une session d'au plus 30 minutes. Les visiteurs qui "
3606
- "reviennent sont comptés plusieurs fois s'ils effectuent des visites "
3607
- "multiples."
3608
-
3609
- #: ../../admin/view/wp-slimstat-reports.php:831
3610
- msgid "Human visits"
3611
- msgstr "Visiteurs humains"
3612
-
3613
- #: ../../admin/view/wp-slimstat-reports.php:832
3614
- msgid "It includes only traffic generated by human visitors."
3615
- msgstr "Cela ne comprend que les visites dites humaines."
3616
-
3617
- #: ../../admin/view/wp-slimstat-reports.php:834
3618
- #: ../../admin/view/wp-slimstat-reports.php:925
3619
- msgid ""
3620
- "Percentage of single-page visits, i.e. visits in which the person left your "
3621
- "site from the entrance page."
3622
- msgstr ""
3623
- "Pourcentage de visites d'une seule page, par exemple les visites au cours "
3624
- "desquelles la personne a quitté votre site dès la page d'entrée."
3625
-
3626
- #: ../../admin/view/wp-slimstat-reports.php:835
3627
- msgid "Bounce rate"
3628
- msgstr "Taux de rebond"
3629
-
3630
- #: ../../admin/view/wp-slimstat-reports.php:836
3631
- msgid "Visitors who had previously left a comment on your blog."
3632
- msgstr "Visiteurs qui ont déjà laissé un commentaire sur votre blog."
3633
-
3634
- #: ../../admin/view/wp-slimstat-reports.php:837
3635
- msgid "Known visitors"
3636
- msgstr "Visiteurs connus"
3637
-
3638
- #: ../../admin/view/wp-slimstat-reports.php:838
3639
- msgid "Human users who visited your site only once."
3640
- msgstr "Visiteurs humains qui ont visité votre site une seule fois."
3641
-
3642
- #: ../../admin/view/wp-slimstat-reports.php:839
3643
- msgid "New visitors"
3644
- msgstr "Nouveaux visiteurs"
3645
-
3646
- #: ../../admin/view/wp-slimstat-reports.php:840
3647
- msgid "Bots"
3648
- msgstr "Robots"
3649
-
3650
- #: ../../admin/view/wp-slimstat-reports.php:841
3651
- msgid "Pages per visit"
3652
- msgstr "Pages vues par visite"
3653
-
3654
- #: ../../admin/view/wp-slimstat-reports.php:842
3655
- #: ../../admin/view/wp-slimstat-reports.php:1150
3656
- msgid "Longest visit"
3657
- msgstr "Visite la plus longue"
3658
-
3659
- #: ../../admin/view/wp-slimstat-reports.php:842
3660
- msgid "hits"
3661
- msgstr "hits"
3662
-
3663
- #: ../../admin/view/wp-slimstat-reports.php:860
3664
- msgid "0 - 30 seconds"
3665
- msgstr "0 - 30 secondes"
3666
-
3667
- #: ../../admin/view/wp-slimstat-reports.php:866
3668
- msgid "31 - 60 seconds"
3669
- msgstr "31 - 60 secondes"
3670
-
3671
- #: ../../admin/view/wp-slimstat-reports.php:872
3672
- msgid "1 - 3 minutes"
3673
- msgstr "1 - 3 minutes"
3674
-
3675
- #: ../../admin/view/wp-slimstat-reports.php:878
3676
- msgid "3 - 5 minutes"
3677
- msgstr "3 - 5 minutes"
3678
-
3679
- #: ../../admin/view/wp-slimstat-reports.php:884
3680
- msgid "5 - 7 minutes"
3681
- msgstr "5 - 7 minutes"
3682
-
3683
- #: ../../admin/view/wp-slimstat-reports.php:890
3684
- msgid "7 - 10 minutes"
3685
- msgstr "7 - 10 minutes"
3686
-
3687
- #: ../../admin/view/wp-slimstat-reports.php:896
3688
- msgid "More than 10 minutes"
3689
- msgstr "Plus de 10 minutes"
3690
-
3691
- #: ../../admin/view/wp-slimstat-reports.php:905
3692
- msgid "Average time on site"
3693
- msgstr "Moyenne du temps passé sur le site"
3694
-
3695
- #: ../../admin/view/wp-slimstat-reports.php:915
3696
- msgid ""
3697
- "A referrer (or referring site) is the site that a visitor previously visited "
3698
- "before following a link to your site."
3699
- msgstr ""
3700
- "Un référent (ou site référent) est le site que le visiteur a visité avant de "
3701
- "suivre un lien vers votre site."
3702
-
3703
- #: ../../admin/view/wp-slimstat-reports.php:916
3704
- msgid "Unique Referrers"
3705
- msgstr "Référents uniques"
3706
-
3707
- #: ../../admin/view/wp-slimstat-reports.php:917
3708
- msgid ""
3709
- "Visitors who visited the site by typing the URL directly into their browser. "
3710
- "<em>Direct</em> can also refer to the visitors who clicked on the links from "
3711
- "their bookmarks/favorites, untagged links within emails, or links from "
3712
- "documents that don't include tracking variables."
3713
- msgstr ""
3714
- "Visiteurs qui ont visité le site en tapant l'URL directement dans leur "
3715
- "navigateur. <em>Visite Directe</em> peut également se référer aux visiteurs "
3716
- "qui ont cliqué sur les liens de leurs signets / favoris, des liens dans les "
3717
- "courriels non marquées, ou des liens à partir de documents qui ne "
3718
- "contiennent pas de variables de suivi."
3719
-
3720
- #: ../../admin/view/wp-slimstat-reports.php:918
3721
- msgid "Direct Pageviews"
3722
- msgstr "Pages Vues Directes"
3723
-
3724
- #: ../../admin/view/wp-slimstat-reports.php:919
3725
- msgid ""
3726
- "Visitors who came to your site via searches on Google or some other search "
3727
- "engine."
3728
- msgstr ""
3729
- "Visiteurs qui sont venus sur le site via un moteur de recherche comme Google "
3730
- "ou autre."
3731
-
3732
- #: ../../admin/view/wp-slimstat-reports.php:920
3733
- msgid "From a search result"
3734
- msgstr "Depuis un moteur de recherche"
3735
-
3736
- #: ../../admin/view/wp-slimstat-reports.php:921
3737
- msgid ""
3738
- "The first page that a user views during a session. This is also known as the "
3739
- "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
3740
- "Space,' and they land on your home page, it gets counted (for that visit) as "
3741
- "a landing page."
3742
- msgstr ""
3743
- "La première page vue par un visiteur durant une session. Ceci est aussi "
3744
- "connu comme <em>page d'entrée</em>. Par exemple, si le visiteur cherche les "
3745
- "mots clés 'Brooklyn Office Space' et arrive sur votre page d'accueil, elle "
3746
- "sera comptée (pour cette visite) comme la page d'entrée."
3747
-
3748
- #: ../../admin/view/wp-slimstat-reports.php:922
3749
- msgid "Unique Landing Pages"
3750
- msgstr "Pages d'Entrées Uniques"
3751
-
3752
- #: ../../admin/view/wp-slimstat-reports.php:923
3753
- msgid "Number of single-page visits to your site over the selected period."
3754
- msgstr ""
3755
- "Nombre de visites d'une seule page de votre site au cours de la période "
3756
- "sélectionnée."
3757
-
3758
- #: ../../admin/view/wp-slimstat-reports.php:924
3759
- msgid "Bounce Pages"
3760
- msgstr "Pages de Rebonds"
3761
-
3762
- #: ../../admin/view/wp-slimstat-reports.php:926
3763
- msgid "New Visitors Rate"
3764
- msgstr "Taux de Nouveaux Visiteurs"
3765
-
3766
- #: ../../admin/view/wp-slimstat-reports.php:927
3767
- msgid ""
3768
- "Visitors who visited the site in the last 5 minutes coming from a search "
3769
- "engine."
3770
- msgstr ""
3771
- "Visiteurs qui ont visité le site dans les 5 dernières visites, provenant "
3772
- "d'un moteur de recherche."
3773
-
3774
- #: ../../admin/view/wp-slimstat-reports.php:928
3775
- msgid "Currently from search engines"
3776
- msgstr "Moteurs de recherche récents"
3777
-
3778
- #: ../../admin/view/wp-slimstat-reports.php:996
3779
- msgid "Number of pages in your site included in Google's index."
3780
- msgstr "Nombre de pages de votre site indexées par Google."
3781
-
3782
- #: ../../admin/view/wp-slimstat-reports.php:997
3783
- msgid "Google Index"
3784
- msgstr "Index Google"
3785
-
3786
- #: ../../admin/view/wp-slimstat-reports.php:998
3787
- msgid "Number of pages, according to Google, that link back to your site."
3788
- msgstr ""
3789
- "Nombre de pages qui pointent sur votre site, d'après les informations "
3790
- "fournies par Google."
3791
-
3792
- #: ../../admin/view/wp-slimstat-reports.php:999
3793
- msgid "Google Backlinks"
3794
- msgstr "Backlinks Google"
3795
-
3796
- #: ../../admin/view/wp-slimstat-reports.php:1000
3797
- msgid ""
3798
- "How many times the Facebook Like button has been approximately clicked on "
3799
- "your site."
3800
- msgstr ""
3801
- "Nombre de fois que votre site a été Liké par quelqu'un sur le réseau social."
3802
-
3803
- #: ../../admin/view/wp-slimstat-reports.php:1001
3804
- msgid "Facebook Likes"
3805
- msgstr "\"J'aime\" Facebook"
3806
-
3807
- #: ../../admin/view/wp-slimstat-reports.php:1002
3808
- msgid ""
3809
- "How many times your site has been shared by someone on the social network."
3810
- msgstr ""
3811
- "Nombre de fois que votre site a été partagé par quelqu'un sur le réseau "
3812
- "social."
3813
-
3814
- #: ../../admin/view/wp-slimstat-reports.php:1003
3815
- msgid "Facebook Shares"
3816
- msgstr "Partages Facebook"
3817
-
3818
- #: ../../admin/view/wp-slimstat-reports.php:1004
3819
- msgid "How many times links to your website have been clicked on Facebook."
3820
- msgstr "Nombre de fois que vos liens ont été activés sur Facebook"
3821
-
3822
- #: ../../admin/view/wp-slimstat-reports.php:1005
3823
- msgid "Facebook Clicks"
3824
- msgstr "Clicks Facebook"
3825
-
3826
- #: ../../admin/view/wp-slimstat-reports.php:1006
3827
- msgid ""
3828
- "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3829
- "traffic data."
3830
- msgstr ""
3831
- "Alexa est une filiale d'Amazon.com qui fournit des données commerciales "
3832
- "concernant le trafic web."
3833
-
3834
- #: ../../admin/view/wp-slimstat-reports.php:1007
3835
- msgid "Alexa World Rank"
3836
- msgstr "Alexa, Classement mondial"
3837
-
3838
- #: ../../admin/view/wp-slimstat-reports.php:1008
3839
- msgid "Alexa Country Rank"
3840
- msgstr "Alexa, Classement par pays"
3841
-
3842
- #: ../../admin/view/wp-slimstat-reports.php:1009
3843
- msgid "Alexa Popularity"
3844
- msgstr "Alexa, Popularité"
3845
-
3846
- # Unknown
3847
- #: ../../admin/view/wp-slimstat-reports.php:1016
3848
- msgid "c-xx"
3849
- msgstr "Inconnu"
3850
-
3851
- # Afghanistan
3852
- #: ../../admin/view/wp-slimstat-reports.php:1016
3853
- msgid "c-af"
3854
- msgstr "Afghanistan"
3855
-
3856
- # Åland Islands
3857
- #: ../../admin/view/wp-slimstat-reports.php:1016
3858
- msgid "c-ax"
3859
- msgstr "Îles Åland"
3860
-
3861
- # Albania
3862
- #: ../../admin/view/wp-slimstat-reports.php:1016
3863
- msgid "c-al"
3864
- msgstr "Albanie"
3865
-
3866
- # Algeria
3867
- #: ../../admin/view/wp-slimstat-reports.php:1016
3868
- msgid "c-dz"
3869
- msgstr "Algérie"
3870
-
3871
- # Andorra
3872
- #: ../../admin/view/wp-slimstat-reports.php:1016
3873
- msgid "c-ad"
3874
- msgstr "Andorre"
3875
-
3876
- # Angola
3877
- #: ../../admin/view/wp-slimstat-reports.php:1016
3878
- msgid "c-ao"
3879
- msgstr "Angola"
3880
-
3881
- # Anguilla
3882
- #: ../../admin/view/wp-slimstat-reports.php:1016
3883
- msgid "c-ai"
3884
- msgstr "Anguilla"
3885
-
3886
- # Antigua and Barbuda
3887
- #: ../../admin/view/wp-slimstat-reports.php:1016
3888
- msgid "c-ag"
3889
- msgstr "Antigua et Barbuda"
3890
-
3891
- # Argentina
3892
- #: ../../admin/view/wp-slimstat-reports.php:1016
3893
- msgid "c-ar"
3894
- msgstr "Argentine"
3895
-
3896
- # Armenia
3897
- #: ../../admin/view/wp-slimstat-reports.php:1016
3898
- msgid "c-am"
3899
- msgstr "Arménie"
3900
-
3901
- # Aruba
3902
- #: ../../admin/view/wp-slimstat-reports.php:1016
3903
- msgid "c-aw"
3904
- msgstr "Aruba"
3905
-
3906
- # Australia
3907
- #: ../../admin/view/wp-slimstat-reports.php:1016
3908
- msgid "c-au"
3909
- msgstr "Australie"
3910
-
3911
- # Austria
3912
- #: ../../admin/view/wp-slimstat-reports.php:1016
3913
- msgid "c-at"
3914
- msgstr "Autriche"
3915
-
3916
- # Azerbaijan
3917
- #: ../../admin/view/wp-slimstat-reports.php:1016
3918
- msgid "c-az"
3919
- msgstr "Azerbaïdjan"
3920
-
3921
- # Bahamas
3922
- #: ../../admin/view/wp-slimstat-reports.php:1016
3923
- msgid "c-bs"
3924
- msgstr "Bahamas"
3925
-
3926
- # Bahrain
3927
- #: ../../admin/view/wp-slimstat-reports.php:1016
3928
- msgid "c-bh"
3929
- msgstr "Bahreïn"
3930
-
3931
- # Bangladesh
3932
- #: ../../admin/view/wp-slimstat-reports.php:1016
3933
- msgid "c-bd"
3934
- msgstr "Bangladesh"
3935
-
3936
- # Barbados
3937
- #: ../../admin/view/wp-slimstat-reports.php:1016
3938
- msgid "c-bb"
3939
- msgstr "Barbade"
3940
-
3941
- # Belarus
3942
- #: ../../admin/view/wp-slimstat-reports.php:1016
3943
- msgid "c-by"
3944
- msgstr "Bélarus"
3945
-
3946
- # Belgium
3947
- #: ../../admin/view/wp-slimstat-reports.php:1016
3948
- msgid "c-be"
3949
- msgstr "Belgique"
3950
-
3951
- # Belize
3952
- #: ../../admin/view/wp-slimstat-reports.php:1016
3953
- msgid "c-bz"
3954
- msgstr "Belize"
3955
-
3956
- # Benin
3957
- #: ../../admin/view/wp-slimstat-reports.php:1016
3958
- msgid "c-bj"
3959
- msgstr "Bénin"
3960
-
3961
- # Bermuda
3962
- #: ../../admin/view/wp-slimstat-reports.php:1016
3963
- msgid "c-bm"
3964
- msgstr "Bermudes"
3965
-
3966
- # Bhutan
3967
- #: ../../admin/view/wp-slimstat-reports.php:1016
3968
- msgid "c-bt"
3969
- msgstr "Bhoutan"
3970
-
3971
- # Bolivia
3972
- #: ../../admin/view/wp-slimstat-reports.php:1016
3973
- msgid "c-bo"
3974
- msgstr "État plurinational de Bolivie"
3975
-
3976
- # Bosnia and Herzegovina
3977
- #: ../../admin/view/wp-slimstat-reports.php:1016
3978
- msgid "c-ba"
3979
- msgstr "Bosnie-Herzégovine"
3980
-
3981
- # Botswana
3982
- #: ../../admin/view/wp-slimstat-reports.php:1016
3983
- msgid "c-bw"
3984
- msgstr "Botswana"
3985
-
3986
- # Brazil
3987
- #: ../../admin/view/wp-slimstat-reports.php:1016
3988
- msgid "c-br"
3989
- msgstr "Brésil"
3990
-
3991
- # Brunei Darussalam
3992
- #: ../../admin/view/wp-slimstat-reports.php:1016
3993
- msgid "c-bn"
3994
- msgstr "Brunéi Darussalam"
3995
-
3996
- # Bulgaria
3997
- #: ../../admin/view/wp-slimstat-reports.php:1016
3998
- msgid "c-bg"
3999
- msgstr "Bulgarie"
4000
-
4001
- # Burkina Faso
4002
- #: ../../admin/view/wp-slimstat-reports.php:1016
4003
- msgid "c-bf"
4004
- msgstr "Burkina Faso"
4005
-
4006
- # Burundi
4007
- #: ../../admin/view/wp-slimstat-reports.php:1016
4008
- msgid "c-bi"
4009
- msgstr "Burundi"
4010
-
4011
- # Cambodia
4012
- #: ../../admin/view/wp-slimstat-reports.php:1016
4013
- msgid "c-kh"
4014
- msgstr "Cambodge"
4015
-
4016
- # Cameroon
4017
- #: ../../admin/view/wp-slimstat-reports.php:1016
4018
- msgid "c-cm"
4019
- msgstr "Cameroun"
4020
-
4021
- # Canada
4022
- #: ../../admin/view/wp-slimstat-reports.php:1016
4023
- msgid "c-ca"
4024
- msgstr "Canada"
4025
-
4026
- # Cape Verde
4027
- #: ../../admin/view/wp-slimstat-reports.php:1016
4028
- msgid "c-cv"
4029
- msgstr "Cap-Vert"
4030
-
4031
- # Cayman Islands
4032
- #: ../../admin/view/wp-slimstat-reports.php:1016
4033
- msgid "c-ky"
4034
- msgstr "Îles Caïmans"
4035
-
4036
- # Central African Republic
4037
- #: ../../admin/view/wp-slimstat-reports.php:1016
4038
- msgid "c-cf"
4039
- msgstr "République Centrafricaine"
4040
-
4041
- # Chad
4042
- #: ../../admin/view/wp-slimstat-reports.php:1016
4043
- msgid "c-td"
4044
- msgstr "Tchad"
4045
-
4046
- # Chile
4047
- #: ../../admin/view/wp-slimstat-reports.php:1016
4048
- msgid "c-cl"
4049
- msgstr "Chili"
4050
-
4051
- # China
4052
- #: ../../admin/view/wp-slimstat-reports.php:1016
4053
- msgid "c-cn"
4054
- msgstr "Chine"
4055
-
4056
- # Colombia
4057
- #: ../../admin/view/wp-slimstat-reports.php:1016
4058
- msgid "c-co"
4059
- msgstr "Colombie"
4060
-
4061
- # Comoros
4062
- #: ../../admin/view/wp-slimstat-reports.php:1016
4063
- msgid "c-km"
4064
- msgstr "Comores"
4065
-
4066
- # Congo
4067
- #: ../../admin/view/wp-slimstat-reports.php:1016
4068
- msgid "c-cg"
4069
- msgstr "Congo"
4070
-
4071
- # The Democratic Republic of the Congo
4072
- #: ../../admin/view/wp-slimstat-reports.php:1016
4073
- msgid "c-cd"
4074
- msgstr "République Démocratique du Congo"
4075
-
4076
- # Costa Rica
4077
- #: ../../admin/view/wp-slimstat-reports.php:1016
4078
- msgid "c-cr"
4079
- msgstr "Costa Rica"
4080
-
4081
- # Côte d'Ivoire
4082
- #: ../../admin/view/wp-slimstat-reports.php:1016
4083
- msgid "c-ci"
4084
- msgstr "Côte d'Ivoire"
4085
-
4086
- # Croatia
4087
- #: ../../admin/view/wp-slimstat-reports.php:1016
4088
- msgid "c-hr"
4089
- msgstr "Croatie"
4090
-
4091
- # Cuba
4092
- #: ../../admin/view/wp-slimstat-reports.php:1016
4093
- msgid "c-cu"
4094
- msgstr "Cuba"
4095
-
4096
- # Cyprus
4097
- #: ../../admin/view/wp-slimstat-reports.php:1016
4098
- msgid "c-cy"
4099
- msgstr "Chypre"
4100
-
4101
- # Czech Republic
4102
- #: ../../admin/view/wp-slimstat-reports.php:1016
4103
- msgid "c-cz"
4104
- msgstr "République tchèque"
4105
-
4106
- # Denmark
4107
- #: ../../admin/view/wp-slimstat-reports.php:1016
4108
- msgid "c-dk"
4109
- msgstr "Danemark"
4110
-
4111
- # Djibouti
4112
- #: ../../admin/view/wp-slimstat-reports.php:1016
4113
- msgid "c-dj"
4114
- msgstr "Djibouti"
4115
-
4116
- # Dominica
4117
- #: ../../admin/view/wp-slimstat-reports.php:1016
4118
- msgid "c-dm"
4119
- msgstr "Dominique"
4120
-
4121
- # Dominican Republic
4122
- #: ../../admin/view/wp-slimstat-reports.php:1016
4123
- msgid "c-do"
4124
- msgstr "République dominicaine"
4125
-
4126
- # Ecuador
4127
- #: ../../admin/view/wp-slimstat-reports.php:1016
4128
- msgid "c-ec"
4129
- msgstr "Équateur"
4130
-
4131
- # Egypt
4132
- #: ../../admin/view/wp-slimstat-reports.php:1016
4133
- msgid "c-eg"
4134
- msgstr "Égypte"
4135
-
4136
- # El Salvador
4137
- #: ../../admin/view/wp-slimstat-reports.php:1016
4138
- msgid "c-sv"
4139
- msgstr "El Salvador"
4140
-
4141
- # Equatorial Guinea
4142
- #: ../../admin/view/wp-slimstat-reports.php:1016
4143
- msgid "c-gq"
4144
- msgstr "Guinée équatoriale"
4145
-
4146
- # Eritrea
4147
- #: ../../admin/view/wp-slimstat-reports.php:1016
4148
- msgid "c-er"
4149
- msgstr "Érythrée"
4150
-
4151
- # Estonia
4152
- #: ../../admin/view/wp-slimstat-reports.php:1016
4153
- msgid "c-ee"
4154
- msgstr "Estonie"
4155
-
4156
- # Ethiopia
4157
- #: ../../admin/view/wp-slimstat-reports.php:1016
4158
- msgid "c-et"
4159
- msgstr "Éthiopie"
4160
-
4161
- # Faroe Islands
4162
- #: ../../admin/view/wp-slimstat-reports.php:1016
4163
- msgid "c-fo"
4164
- msgstr "Îles Féroé"
4165
-
4166
- # Falkland Islands (Malvinas)
4167
- #: ../../admin/view/wp-slimstat-reports.php:1016
4168
- msgid "c-fk"
4169
- msgstr "Îles Falkland (Malvinas)"
4170
-
4171
- # Fiji
4172
- #: ../../admin/view/wp-slimstat-reports.php:1016
4173
- msgid "c-fj"
4174
- msgstr "Fidji"
4175
-
4176
- # Finland
4177
- #: ../../admin/view/wp-slimstat-reports.php:1016
4178
- msgid "c-fi"
4179
- msgstr "Finlande"
4180
-
4181
- # France
4182
- #: ../../admin/view/wp-slimstat-reports.php:1016
4183
- msgid "c-fr"
4184
- msgstr "France"
4185
-
4186
- # French Guiana
4187
- #: ../../admin/view/wp-slimstat-reports.php:1016
4188
- msgid "c-gf"
4189
- msgstr "Guyane française"
4190
-
4191
- # Gabon
4192
- #: ../../admin/view/wp-slimstat-reports.php:1016
4193
- msgid "c-ga"
4194
- msgstr "Gabon"
4195
-
4196
- # Gambia
4197
- #: ../../admin/view/wp-slimstat-reports.php:1016
4198
- msgid "c-gm"
4199
- msgstr "Gambie"
4200
-
4201
- # Georgia
4202
- #: ../../admin/view/wp-slimstat-reports.php:1016
4203
- msgid "c-ge"
4204
- msgstr "Géorgie"
4205
-
4206
- # Germany
4207
- #: ../../admin/view/wp-slimstat-reports.php:1016
4208
- msgid "c-de"
4209
- msgstr "Allemagne"
4210
-
4211
- # Ghana
4212
- #: ../../admin/view/wp-slimstat-reports.php:1016
4213
- msgid "c-gh"
4214
- msgstr "Ghana"
4215
-
4216
- # Greece
4217
- #: ../../admin/view/wp-slimstat-reports.php:1016
4218
- msgid "c-gr"
4219
- msgstr "Grèce"
4220
-
4221
- # Greenland
4222
- #: ../../admin/view/wp-slimstat-reports.php:1016
4223
- msgid "c-gl"
4224
- msgstr "Groenland"
4225
-
4226
- # Grenada
4227
- #: ../../admin/view/wp-slimstat-reports.php:1016
4228
- msgid "c-gd"
4229
- msgstr "Grenade"
4230
-
4231
- # Guadeloupe
4232
- #: ../../admin/view/wp-slimstat-reports.php:1016
4233
- msgid "c-gp"
4234
- msgstr "Guadeloupe"
4235
-
4236
- # Guatemala
4237
- #: ../../admin/view/wp-slimstat-reports.php:1016
4238
- msgid "c-gt"
4239
- msgstr "Guatemala"
4240
-
4241
- # Guinea
4242
- #: ../../admin/view/wp-slimstat-reports.php:1016
4243
- msgid "c-gn"
4244
- msgstr "Guinée"
4245
-
4246
- # Guinea-Bissau
4247
- #: ../../admin/view/wp-slimstat-reports.php:1016
4248
- msgid "c-gw"
4249
- msgstr "Guinée-Bissau"
4250
-
4251
- # Guyana
4252
- #: ../../admin/view/wp-slimstat-reports.php:1016
4253
- msgid "c-gy"
4254
- msgstr "Guyana"
4255
-
4256
- # Haiti
4257
- #: ../../admin/view/wp-slimstat-reports.php:1016
4258
- msgid "c-ht"
4259
- msgstr "Haïti"
4260
-
4261
- # Honduras
4262
- #: ../../admin/view/wp-slimstat-reports.php:1016
4263
- msgid "c-hn"
4264
- msgstr "Honduras"
4265
-
4266
- # Hong Kong
4267
- #: ../../admin/view/wp-slimstat-reports.php:1016
4268
- msgid "c-hk"
4269
- msgstr "Hong Kong"
4270
-
4271
- # Hungary
4272
- #: ../../admin/view/wp-slimstat-reports.php:1016
4273
- msgid "c-hu"
4274
- msgstr "Hongrie"
4275
-
4276
- # Iceland
4277
- #: ../../admin/view/wp-slimstat-reports.php:1016
4278
- msgid "c-is"
4279
- msgstr "Islande"
4280
-
4281
- # India
4282
- #: ../../admin/view/wp-slimstat-reports.php:1016
4283
- msgid "c-in"
4284
- msgstr "Inde"
4285
-
4286
- # Indonesia
4287
- #: ../../admin/view/wp-slimstat-reports.php:1016
4288
- msgid "c-id"
4289
- msgstr "Indonésie"
4290
-
4291
- # Islamic Republic of Iran
4292
- #: ../../admin/view/wp-slimstat-reports.php:1016
4293
- msgid "c-ir"
4294
- msgstr "République islamique d'Iran"
4295
-
4296
- # Iraq
4297
- #: ../../admin/view/wp-slimstat-reports.php:1016
4298
- msgid "c-iq"
4299
- msgstr "Irak"
4300
-
4301
- # Ireland
4302
- #: ../../admin/view/wp-slimstat-reports.php:1016
4303
- msgid "c-ie"
4304
- msgstr "Irlande"
4305
-
4306
- # Israel
4307
- #: ../../admin/view/wp-slimstat-reports.php:1016
4308
- msgid "c-il"
4309
- msgstr "Israël"
4310
-
4311
- # Italy
4312
- #: ../../admin/view/wp-slimstat-reports.php:1016
4313
- msgid "c-it"
4314
- msgstr "Italie"
4315
-
4316
- # Jamaica
4317
- #: ../../admin/view/wp-slimstat-reports.php:1016
4318
- msgid "c-jm"
4319
- msgstr "Jamaïque"
4320
-
4321
- # Japan
4322
- #: ../../admin/view/wp-slimstat-reports.php:1016
4323
- msgid "c-jp"
4324
- msgstr "Japon"
4325
-
4326
- # Jordan
4327
- #: ../../admin/view/wp-slimstat-reports.php:1016
4328
- msgid "c-jo"
4329
- msgstr "Jordanie"
4330
-
4331
- # Kazakhstan
4332
- #: ../../admin/view/wp-slimstat-reports.php:1016
4333
- msgid "c-kz"
4334
- msgstr "Kazakhstan"
4335
-
4336
- # Kenya
4337
- #: ../../admin/view/wp-slimstat-reports.php:1016
4338
- msgid "c-ke"
4339
- msgstr "Kenya"
4340
-
4341
- # Nauru
4342
- #: ../../admin/view/wp-slimstat-reports.php:1016
4343
- msgid "c-nr"
4344
- msgstr "Nauru"
4345
-
4346
- # Democratic People's Republic of Korea
4347
- #: ../../admin/view/wp-slimstat-reports.php:1016
4348
- msgid "c-kp"
4349
- msgstr "République populaire démocratique de Corée"
4350
-
4351
- # Republic of Korea
4352
- #: ../../admin/view/wp-slimstat-reports.php:1016
4353
- msgid "c-kr"
4354
- msgstr "République de Corée"
4355
-
4356
- #: ../../admin/view/wp-slimstat-reports.php:1016
4357
- msgid "c-kv"
4358
- msgstr "Kossovo"
4359
-
4360
- # Kuwait
4361
- #: ../../admin/view/wp-slimstat-reports.php:1016
4362
- msgid "c-kw"
4363
- msgstr "Koweït"
4364
-
4365
- # Kyrgyzstan
4366
- #: ../../admin/view/wp-slimstat-reports.php:1016
4367
- msgid "c-kg"
4368
- msgstr "Kirghizistan"
4369
-
4370
- # Lao People's Democratic Republic
4371
- #: ../../admin/view/wp-slimstat-reports.php:1016
4372
- msgid "c-la"
4373
- msgstr "République démocratique populaire lao"
4374
-
4375
- # Latvia
4376
- #: ../../admin/view/wp-slimstat-reports.php:1016
4377
- msgid "c-lv"
4378
- msgstr "Lettonie"
4379
-
4380
- # Lebanon
4381
- #: ../../admin/view/wp-slimstat-reports.php:1016
4382
- msgid "c-lb"
4383
- msgstr "Liban"
4384
-
4385
- # Lesotho
4386
- #: ../../admin/view/wp-slimstat-reports.php:1016
4387
- msgid "c-ls"
4388
- msgstr "Lesotho"
4389
-
4390
- # Liberia
4391
- #: ../../admin/view/wp-slimstat-reports.php:1016
4392
- msgid "c-lr"
4393
- msgstr "Libéria"
4394
-
4395
- # Libyan Arab Jamahiriya
4396
- #: ../../admin/view/wp-slimstat-reports.php:1016
4397
- msgid "c-ly"
4398
- msgstr "Jamahiriya arabe libyenne"
4399
-
4400
- # Liechtenstein
4401
- #: ../../admin/view/wp-slimstat-reports.php:1016
4402
- msgid "c-li"
4403
- msgstr "Liechtenstein"
4404
-
4405
- # Lithuania
4406
- #: ../../admin/view/wp-slimstat-reports.php:1016
4407
- msgid "c-lt"
4408
- msgstr "Lituanie"
4409
-
4410
- # Luxembourg
4411
- #: ../../admin/view/wp-slimstat-reports.php:1016
4412
- msgid "c-lu"
4413
- msgstr "Luxembourg"
4414
-
4415
- # The Former Yugoslav Republic of Macedonia
4416
- #: ../../admin/view/wp-slimstat-reports.php:1016
4417
- msgid "c-mk"
4418
- msgstr "Ex-république yougoslave de Macédoine"
4419
-
4420
- # Madagascar
4421
- #: ../../admin/view/wp-slimstat-reports.php:1016
4422
- msgid "c-mg"
4423
- msgstr "Madagascar"
4424
-
4425
- # Malawi
4426
- #: ../../admin/view/wp-slimstat-reports.php:1016
4427
- msgid "c-mw"
4428
- msgstr "Malawi"
4429
-
4430
- # Malaysia
4431
- #: ../../admin/view/wp-slimstat-reports.php:1016
4432
- msgid "c-my"
4433
- msgstr "Malaisie"
4434
-
4435
- # Mali
4436
- #: ../../admin/view/wp-slimstat-reports.php:1016
4437
- msgid "c-ml"
4438
- msgstr "Mali"
4439
-
4440
- # Malta
4441
- #: ../../admin/view/wp-slimstat-reports.php:1016
4442
- msgid "c-mt"
4443
- msgstr "Malte"
4444
-
4445
- # Martinique
4446
- #: ../../admin/view/wp-slimstat-reports.php:1016
4447
- msgid "c-mq"
4448
- msgstr "Martinique"
4449
-
4450
- # Mauritania
4451
- #: ../../admin/view/wp-slimstat-reports.php:1016
4452
- msgid "c-mr"
4453
- msgstr "Mauritanie"
4454
-
4455
- # Mauritius
4456
- #: ../../admin/view/wp-slimstat-reports.php:1016
4457
- msgid "c-mu"
4458
- msgstr "Maurice"
4459
-
4460
- # Mexico
4461
- #: ../../admin/view/wp-slimstat-reports.php:1016
4462
- msgid "c-mx"
4463
- msgstr "Mexique"
4464
-
4465
- # Moldova
4466
- #: ../../admin/view/wp-slimstat-reports.php:1016
4467
- msgid "c-md"
4468
- msgstr "République de Moldova"
4469
-
4470
- # Mongolia
4471
- #: ../../admin/view/wp-slimstat-reports.php:1016
4472
- msgid "c-mn"
4473
- msgstr "Mongolie"
4474
-
4475
- # Montenegro
4476
- #: ../../admin/view/wp-slimstat-reports.php:1016
4477
- msgid "c-me"
4478
- msgstr "Monténégro"
4479
-
4480
- # Montserrat
4481
- #: ../../admin/view/wp-slimstat-reports.php:1016
4482
- msgid "c-ms"
4483
- msgstr "Montserrat"
4484
-
4485
- # Morocco
4486
- #: ../../admin/view/wp-slimstat-reports.php:1016
4487
- msgid "c-ma"
4488
- msgstr "Maroc"
4489
-
4490
- # Mozambique
4491
- #: ../../admin/view/wp-slimstat-reports.php:1016
4492
- msgid "c-mz"
4493
- msgstr "Mozambique"
4494
-
4495
- # Myanmar
4496
- #: ../../admin/view/wp-slimstat-reports.php:1016
4497
- msgid "c-mm"
4498
- msgstr "Myanmar"
4499
-
4500
- # Namibia
4501
- #: ../../admin/view/wp-slimstat-reports.php:1016
4502
- msgid "c-na"
4503
- msgstr "Namibie"
4504
-
4505
- # Nepal
4506
- #: ../../admin/view/wp-slimstat-reports.php:1016
4507
- msgid "c-np"
4508
- msgstr "Népal"
4509
-
4510
- # Netherlands
4511
- #: ../../admin/view/wp-slimstat-reports.php:1016
4512
- msgid "c-nl"
4513
- msgstr "Pays-bas"
4514
-
4515
- # New Caledonia
4516
- #: ../../admin/view/wp-slimstat-reports.php:1016
4517
- msgid "c-nc"
4518
- msgstr "Nouvelle-Calédonie"
4519
-
4520
- # New Zealand
4521
- #: ../../admin/view/wp-slimstat-reports.php:1016
4522
- msgid "c-nz"
4523
- msgstr "Nouvelle-Zélande"
4524
-
4525
- # Nicaragua
4526
- #: ../../admin/view/wp-slimstat-reports.php:1016
4527
- msgid "c-ni"
4528
- msgstr "Nicaragua"
4529
-
4530
- # Niger
4531
- #: ../../admin/view/wp-slimstat-reports.php:1016
4532
- msgid "c-ne"
4533
- msgstr "Niger"
4534
-
4535
- # Nigeria
4536
- #: ../../admin/view/wp-slimstat-reports.php:1016
4537
- msgid "c-ng"
4538
- msgstr "Nigéria"
4539
-
4540
- # Norway
4541
- #: ../../admin/view/wp-slimstat-reports.php:1016
4542
- msgid "c-no"
4543
- msgstr "Norvège"
4544
-
4545
- # Oman
4546
- #: ../../admin/view/wp-slimstat-reports.php:1016
4547
- msgid "c-om"
4548
- msgstr "Oman"
4549
-
4550
- # Pakistan
4551
- #: ../../admin/view/wp-slimstat-reports.php:1016
4552
- msgid "c-pk"
4553
- msgstr "Pakistan"
4554
-
4555
- # Palau
4556
- #: ../../admin/view/wp-slimstat-reports.php:1016
4557
- msgid "c-pw"
4558
- msgstr "Palaos"
4559
-
4560
- # Occupied Palestinian Territory
4561
- #: ../../admin/view/wp-slimstat-reports.php:1016
4562
- msgid "c-ps"
4563
- msgstr "Territoire palestinien occupé"
4564
-
4565
- # Panama
4566
- #: ../../admin/view/wp-slimstat-reports.php:1016
4567
- msgid "c-pa"
4568
- msgstr "Panama"
4569
-
4570
- # Papua New Guinea
4571
- #: ../../admin/view/wp-slimstat-reports.php:1016
4572
- msgid "c-pg"
4573
- msgstr "Papouasie-Nouvelle-Guinée"
4574
-
4575
- # Paraguay
4576
- #: ../../admin/view/wp-slimstat-reports.php:1016
4577
- msgid "c-py"
4578
- msgstr "Paraguay"
4579
-
4580
- # Peru
4581
- #: ../../admin/view/wp-slimstat-reports.php:1016
4582
- msgid "c-pe"
4583
- msgstr "Pérou"
4584
-
4585
- # Philippines
4586
- #: ../../admin/view/wp-slimstat-reports.php:1016
4587
- msgid "c-ph"
4588
- msgstr "Philippines"
4589
-
4590
- # Poland
4591
- #: ../../admin/view/wp-slimstat-reports.php:1016
4592
- msgid "c-pl"
4593
- msgstr "Pologne"
4594
-
4595
- # Portugal
4596
- #: ../../admin/view/wp-slimstat-reports.php:1016
4597
- msgid "c-pt"
4598
- msgstr "Portugal"
4599
-
4600
- # Puerto Rico
4601
- #: ../../admin/view/wp-slimstat-reports.php:1016
4602
- msgid "c-pr"
4603
- msgstr "Porto Rico"
4604
-
4605
- # Qatar
4606
- #: ../../admin/view/wp-slimstat-reports.php:1016
4607
- msgid "c-qa"
4608
- msgstr "Qatar"
4609
-
4610
- # Réunion
4611
- #: ../../admin/view/wp-slimstat-reports.php:1016
4612
- msgid "c-re"
4613
- msgstr "Réunion"
4614
-
4615
- # Romania
4616
- #: ../../admin/view/wp-slimstat-reports.php:1016
4617
- msgid "c-ro"
4618
- msgstr "Roumanie"
4619
-
4620
- # Russian Federation
4621
- #: ../../admin/view/wp-slimstat-reports.php:1016
4622
- msgid "c-ru"
4623
- msgstr "Fédération de Russie"
4624
-
4625
- # Rwanda
4626
- #: ../../admin/view/wp-slimstat-reports.php:1016
4627
- msgid "c-rw"
4628
- msgstr "Rwanda"
4629
-
4630
- # Saint Kitts and Nevis
4631
- #: ../../admin/view/wp-slimstat-reports.php:1016
4632
- msgid "c-kn"
4633
- msgstr "Saint-Kitts-et-Nevis"
4634
-
4635
- # Saint Lucia
4636
- #: ../../admin/view/wp-slimstat-reports.php:1016
4637
- msgid "c-lc"
4638
- msgstr "Sainte-Lucie"
4639
-
4640
- # Saint Martin
4641
- #: ../../admin/view/wp-slimstat-reports.php:1016
4642
- msgid "c-mf"
4643
- msgstr "Saint-Martin"
4644
-
4645
- # Saint Vincent and the Grenadines
4646
- #: ../../admin/view/wp-slimstat-reports.php:1016
4647
- msgid "c-vc"
4648
- msgstr "Saint-Vincent-et-les Grenadines"
4649
-
4650
- # Samoa
4651
- #: ../../admin/view/wp-slimstat-reports.php:1016
4652
- msgid "c-ws"
4653
- msgstr "Samoa"
4654
-
4655
- # Sao Tome and Principe
4656
- #: ../../admin/view/wp-slimstat-reports.php:1016
4657
- msgid "c-st"
4658
- msgstr "Sao Tomé-et-Principe"
4659
-
4660
- # Saudi Arabia
4661
- #: ../../admin/view/wp-slimstat-reports.php:1016
4662
- msgid "c-sa"
4663
- msgstr "Arabie saoudite"
4664
-
4665
- # Senegal
4666
- #: ../../admin/view/wp-slimstat-reports.php:1016
4667
- msgid "c-sn"
4668
- msgstr "Sénégal"
4669
-
4670
- # Serbia
4671
- #: ../../admin/view/wp-slimstat-reports.php:1016
4672
- msgid "c-rs"
4673
- msgstr "Serbie"
4674
-
4675
- # Sierra Leone
4676
- #: ../../admin/view/wp-slimstat-reports.php:1016
4677
- msgid "c-sl"
4678
- msgstr "Sierra Leone"
4679
-
4680
- # Singapore
4681
- #: ../../admin/view/wp-slimstat-reports.php:1016
4682
- msgid "c-sg"
4683
- msgstr "Singapour"
4684
-
4685
- # Slovakia
4686
- #: ../../admin/view/wp-slimstat-reports.php:1016
4687
- msgid "c-sk"
4688
- msgstr "Slovaquie"
4689
-
4690
- # Slovenia
4691
- #: ../../admin/view/wp-slimstat-reports.php:1016
4692
- msgid "c-si"
4693
- msgstr "Slovénie"
4694
-
4695
- # Solomon Islands
4696
- #: ../../admin/view/wp-slimstat-reports.php:1016
4697
- msgid "c-sb"
4698
- msgstr "Îles Salomon"
4699
-
4700
- # Somalia
4701
- #: ../../admin/view/wp-slimstat-reports.php:1016
4702
- msgid "c-so"
4703
- msgstr "Somalie"
4704
-
4705
- # South Africa
4706
- #: ../../admin/view/wp-slimstat-reports.php:1016
4707
- msgid "c-za"
4708
- msgstr "Afrique du sud"
4709
-
4710
- # South Georgia and the South Sandwich Islands
4711
- #: ../../admin/view/wp-slimstat-reports.php:1016
4712
- msgid "c-gs"
4713
- msgstr "Géorgie du sud et les Îles Sandwich du sud"
4714
-
4715
- # Spain
4716
- #: ../../admin/view/wp-slimstat-reports.php:1016
4717
- msgid "c-es"
4718
- msgstr "Espagne"
4719
-
4720
- # Sri Lanka
4721
- #: ../../admin/view/wp-slimstat-reports.php:1016
4722
- msgid "c-lk"
4723
- msgstr "Sri Lanka"
4724
-
4725
- # Seychelles
4726
- #: ../../admin/view/wp-slimstat-reports.php:1016
4727
- msgid "c-sc"
4728
- msgstr "Seychelles"
4729
-
4730
- # Sudan
4731
- #: ../../admin/view/wp-slimstat-reports.php:1016
4732
- msgid "c-sd"
4733
- msgstr "Soudan"
4734
-
4735
- #: ../../admin/view/wp-slimstat-reports.php:1016
4736
- msgid "c-ss"
4737
- msgstr "Soudan du Sud"
4738
-
4739
- # Suriname
4740
- #: ../../admin/view/wp-slimstat-reports.php:1016
4741
- msgid "c-sr"
4742
- msgstr "Suriname"
4743
-
4744
- # Svalbard and Jan Mayen
4745
- #: ../../admin/view/wp-slimstat-reports.php:1016
4746
- msgid "c-sj"
4747
- msgstr "Svalbard et île Jan Mayen"
4748
-
4749
- # Swaziland
4750
- #: ../../admin/view/wp-slimstat-reports.php:1016
4751
- msgid "c-sz"
4752
- msgstr "Swaziland"
4753
-
4754
- # Sweden
4755
- #: ../../admin/view/wp-slimstat-reports.php:1016
4756
- msgid "c-se"
4757
- msgstr "Suède"
4758
-
4759
- # Switzerland
4760
- #: ../../admin/view/wp-slimstat-reports.php:1016
4761
- msgid "c-ch"
4762
- msgstr "Suisse"
4763
-
4764
- # Syrian Arab Republic
4765
- #: ../../admin/view/wp-slimstat-reports.php:1016
4766
- msgid "c-sy"
4767
- msgstr "République arabe syrienne"
4768
-
4769
- # Taiwan, Province of China
4770
- #: ../../admin/view/wp-slimstat-reports.php:1016
4771
- msgid "c-tw"
4772
- msgstr "Taïwan, province de Chine"
4773
-
4774
- # Tajikistan
4775
- #: ../../admin/view/wp-slimstat-reports.php:1016
4776
- msgid "c-tj"
4777
- msgstr "Tadjikistan"
4778
-
4779
- # United Republic of Tanzania
4780
- #: ../../admin/view/wp-slimstat-reports.php:1016
4781
- msgid "c-tz"
4782
- msgstr "République-unie de Tanzanie"
4783
-
4784
- # Thailand
4785
- #: ../../admin/view/wp-slimstat-reports.php:1016
4786
- msgid "c-th"
4787
- msgstr "Thaïlande"
4788
-
4789
- # Timor-Leste
4790
- #: ../../admin/view/wp-slimstat-reports.php:1016
4791
- msgid "c-tl"
4792
- msgstr "Timor-Leste"
4793
-
4794
- # Togo
4795
- #: ../../admin/view/wp-slimstat-reports.php:1016
4796
- msgid "c-tg"
4797
- msgstr "Togo"
4798
-
4799
- # Tonga
4800
- #: ../../admin/view/wp-slimstat-reports.php:1016
4801
- msgid "c-to"
4802
- msgstr "Tonga"
4803
-
4804
- # Trinidad and Tobago
4805
- #: ../../admin/view/wp-slimstat-reports.php:1016
4806
- msgid "c-tt"
4807
- msgstr "Trinité-et-Tobago "
4808
-
4809
- # Tunisia
4810
- #: ../../admin/view/wp-slimstat-reports.php:1016
4811
- msgid "c-tn"
4812
- msgstr "Tunisie"
4813
-
4814
- # Turkey
4815
- #: ../../admin/view/wp-slimstat-reports.php:1016
4816
- msgid "c-tr"
4817
- msgstr "Turquie "
4818
-
4819
- # Turkmenistan
4820
- #: ../../admin/view/wp-slimstat-reports.php:1016
4821
- msgid "c-tm"
4822
- msgstr "Turkménistan"
4823
-
4824
- # Turks and Caicos Islands
4825
- #: ../../admin/view/wp-slimstat-reports.php:1016
4826
- msgid "c-tc"
4827
- msgstr "Îles Turks et Caïques"
4828
-
4829
- # Uganda
4830
- #: ../../admin/view/wp-slimstat-reports.php:1016
4831
- msgid "c-ug"
4832
- msgstr "Ouganda"
4833
-
4834
- # Ukraine
4835
- #: ../../admin/view/wp-slimstat-reports.php:1016
4836
- msgid "c-ua"
4837
- msgstr "Ukraine"
4838
-
4839
- # United Arab Emirates
4840
- #: ../../admin/view/wp-slimstat-reports.php:1016
4841
- msgid "c-ae"
4842
- msgstr "Émirats arabes unis"
4843
-
4844
- # United Kingdom
4845
- #: ../../admin/view/wp-slimstat-reports.php:1016
4846
- msgid "c-gb"
4847
- msgstr "Royaume-Uni"
4848
-
4849
- # United States
4850
- #: ../../admin/view/wp-slimstat-reports.php:1016
4851
- msgid "c-us"
4852
- msgstr "États-Unis"
4853
-
4854
- # Uruguay
4855
- #: ../../admin/view/wp-slimstat-reports.php:1016
4856
- msgid "c-uy"
4857
- msgstr "Uruguay"
4858
-
4859
- # Uzbekistan
4860
- #: ../../admin/view/wp-slimstat-reports.php:1016
4861
- msgid "c-uz"
4862
- msgstr "Ouzbékistan "
4863
-
4864
- # Vanuatu
4865
- #: ../../admin/view/wp-slimstat-reports.php:1016
4866
- msgid "c-vu"
4867
- msgstr "Vanuatu"
4868
-
4869
- # Venezuela
4870
- #: ../../admin/view/wp-slimstat-reports.php:1016
4871
- msgid "c-ve"
4872
- msgstr "République bolivarienne du Venezuela"
4873
-
4874
- # Viet Nam
4875
- #: ../../admin/view/wp-slimstat-reports.php:1016
4876
- msgid "c-vn"
4877
- msgstr "Viet Nam"
4878
-
4879
- # British Virgin Islands
4880
- #: ../../admin/view/wp-slimstat-reports.php:1016
4881
- msgid "c-vg"
4882
- msgstr "Îles vierges britanniques"
4883
-
4884
- # U.S. Virgin Islands
4885
- #: ../../admin/view/wp-slimstat-reports.php:1016
4886
- msgid "c-vi"
4887
- msgstr "Îles vierges des États-Unis"
4888
-
4889
- # Western Sahara
4890
- #: ../../admin/view/wp-slimstat-reports.php:1016
4891
- msgid "c-eh"
4892
- msgstr "Sahara occidental"
4893
-
4894
- # Yemen
4895
- #: ../../admin/view/wp-slimstat-reports.php:1016
4896
- msgid "c-ye"
4897
- msgstr "Yémen"
4898
-
4899
- # Zambia
4900
- #: ../../admin/view/wp-slimstat-reports.php:1016
4901
- msgid "c-zm"
4902
- msgstr "Zambie"
4903
-
4904
- # Zimbabwe
4905
- #: ../../admin/view/wp-slimstat-reports.php:1016
4906
- msgid "c-zw"
4907
- msgstr "Zimbabwe"
4908
-
4909
- # Guernsey
4910
- #: ../../admin/view/wp-slimstat-reports.php:1016
4911
- msgid "c-gg"
4912
- msgstr "Guernesey"
4913
-
4914
- # Jersey
4915
- #: ../../admin/view/wp-slimstat-reports.php:1016
4916
- msgid "c-je"
4917
- msgstr "Jersey"
4918
-
4919
- # Isle of Man
4920
- #: ../../admin/view/wp-slimstat-reports.php:1016
4921
- msgid "c-im"
4922
- msgstr "Île de Man"
4923
-
4924
- # Maldives
4925
- #: ../../admin/view/wp-slimstat-reports.php:1016
4926
- msgid "c-mv"
4927
- msgstr "Maldives"
4928
-
4929
- # European Union
4930
- #: ../../admin/view/wp-slimstat-reports.php:1017
4931
- msgid "c-eu"
4932
- msgstr "Union européenne"
4933
-
4934
- #: ../../admin/view/wp-slimstat-reports.php:1106
4935
- msgid ""
4936
- "This value includes not only posts, but also custom post types, regardless "
4937
- "of their status"
4938
- msgstr ""
4939
- "Cette valeur n'inclut pas seulement les articles de blog, mais aussi des "
4940
- "types personnalisés d'articles, quel que soit leur statut."
4941
-
4942
- #: ../../admin/view/wp-slimstat-reports.php:1107
4943
- msgid "Content Items"
4944
- msgstr "Contenus"
4945
-
4946
- #: ../../admin/view/wp-slimstat-reports.php:1108
4947
- msgid "Total Comments"
4948
- msgstr "Nombre de commentaires"
4949
-
4950
- #: ../../admin/view/wp-slimstat-reports.php:1109
4951
- msgid "Pingbacks"
4952
- msgstr "Pingbacks"
4953
-
4954
- #: ../../admin/view/wp-slimstat-reports.php:1110
4955
- msgid "Trackbacks"
4956
- msgstr "Trackbacks"
4957
-
4958
- #: ../../admin/view/wp-slimstat-reports.php:1111
4959
- msgid "Avg Comments Per Post"
4960
- msgstr "Moyenne de commentaires par Article"
4961
-
4962
- #: ../../admin/view/wp-slimstat-reports.php:1112
4963
- msgid "Avg Posts Per Day"
4964
- msgstr "Nombre moyen de posts par jour"
4965
-
4966
- #: ../../admin/view/wp-slimstat-reports.php:1113
4967
- msgid "Avg Server Latency"
4968
- msgstr "Latence moyenne du serveur"
4969
-
4970
- #: ../../admin/view/wp-slimstat-reports.php:1114
4971
- msgid "Avg Page Load Time"
4972
- msgstr "Moyenne des pages vues"
4973
-
4974
- #: ../../admin/view/wp-slimstat-reports.php:1141
4975
- msgid "Visits"
4976
- msgstr "Visites"
4977
-
4978
- #: ../../admin/view/wp-slimstat-reports.php:1145
4979
- msgid "Domains"
4980
- msgstr "Domaines"
4981
-
4982
- #: ../../admin/view/wp-slimstat-reports.php:1150
4983
- msgid "Avg Pageviews"
4984
- msgstr "Moyenne des pages vues"
4985
-
4986
- #: ../../admin/wp-slimstat-admin.php:504 ../../admin/wp-slimstat-admin.php:516
4987
- #: ../../admin/wp-slimstat-admin.php:519
4988
- msgid "SlimStat"
4989
- msgstr "À propos de WP-SlimStat"
4990
-
4991
- #: ../../admin/wp-slimstat-admin.php:600
4992
- msgid "Pageviews in the last 365 days"
4993
- msgstr "Pages durant les 365 derniers jours"
4994
-
4995
- #: ../../admin/wp-slimstat-admin.php:628
4996
- msgid "Show on screen"
4997
- msgstr "Montrer à l'écran"
4998
-
4999
- #: ../../admin/wp-slimstat-admin.php:656
5000
- msgid "Hide this notice"
5001
- msgstr "Masquer la notice"
5002
-
5003
- #: ../../admin/wp-slimstat-admin.php:698
5004
- msgid "Already saved"
5005
- msgstr ""
5006
-
5007
- #: ../../admin/wp-slimstat-admin.php:706
5008
- msgid "Saved"
5009
- msgstr ""
5010
-
5011
- #: ../../admin/wp-slimstat-admin.php:725
5012
- #, fuzzy
5013
- msgid "Delete this filter"
5014
- msgstr "Filtrer les pages vues pour que"
5015
-
5016
- #: ../../admin/wp-slimstat-admin.php:759
5017
- msgid "There was an error updating the following options:"
5018
- msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5019
-
5020
- #: ../../admin/wp-slimstat-admin.php:762
5021
- msgid "Your changes have been saved."
5022
- msgstr "Vos réglages ont bien été mis à jour"
5023
-
5024
- #: ../../admin/wp-slimstat-admin.php:785
5025
- msgid "Save Changes"
5026
- msgstr "Enregistrer les modifications"
5027
-
5028
- #: ../../admin/wp-slimstat-admin.php