Ad Inserter – WordPress Ads Management with AdSense Header Integration - Version 2.5.5

Version Description

  • Added support for client list (black/whitelist operating systems, browsers, device names)
  • Fix for replaced tags with default value {name:default-value}
  • Few minor bug fixes, cosmetic changes and code improvements
Download this release

Release Info

Developer spacetime
Plugin Icon 128x128 Ad Inserter – WordPress Ads Management with AdSense Header Integration
Version 2.5.5
Comparing to
See all releases

Code changes from version 2.5.3 to 2.5.5

ad-inserter.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
- Version: 2.5.3
6
  Description: Ad management with many advanced advertising features to insert ads at optimal positions
7
  Author: Igor Funa
8
  Author URI: http://igorfuna.com/
@@ -15,6 +15,14 @@ Domain Path: /languages
15
 
16
  Change Log
17
 
 
 
 
 
 
 
 
 
18
  Ad Inserter 2.5.3 - 2019-09-24
19
  - Added support for warning when Ad Inserter is disabled by AMPforWP Plugin Manager
20
  - Added support for block shortcode attributes
@@ -651,6 +659,7 @@ function ai_block_insertion_status ($block, $ai_last_check) {
651
  case AI_CHECK_URL: $status .= "URL"; break;
652
  case AI_CHECK_URL_PARAMETER: $status .= "URL PARAMETER"; break;
653
  case AI_CHECK_REFERER: $status .= "REFERER ". $obj->get_ad_domain_list(); break;
 
654
  case AI_CHECK_IP_ADDRESS: $status .= "IP ADDRESS ". $obj->get_ad_ip_address_list(); break;
655
  case AI_CHECK_COUNTRY: $status .= "COUNTRY ". $obj->get_ad_country_list (true); break;
656
 
@@ -1693,6 +1702,9 @@ function ai_load_extract ($recreate = true) {
1693
  if (isset ($ai_db_options_extract)) return true;
1694
 
1695
  $expected_extract_version = $version_string . $subversion_string . '-' . '96';
 
 
 
1696
 
1697
  if (isset ($ai_db_options [AI_OPTION_EXTRACT]['VERSION']) && $ai_db_options [AI_OPTION_EXTRACT]['VERSION'] == $expected_extract_version) {
1698
  $ai_db_options_extract = $ai_db_options [AI_OPTION_EXTRACT];
@@ -2316,6 +2328,9 @@ function add_footer_inline_scripts () {
2316
  }
2317
 
2318
  if ($client_side_dynamic_blocks) {
 
 
 
2319
  echo ai_get_js ('ai-lists');
2320
  }
2321
 
@@ -3324,6 +3339,10 @@ function ai_write_debug_info ($write_processing_log = false) {
3324
  echo isset ($ai_db_options [AI_OPTION_GLOBAL]['TIMESTAMP']) ? date ("Y-m-d H:i:s", $ai_db_options [AI_OPTION_GLOBAL]['TIMESTAMP'] + get_option ('gmt_offset') * 3600) : "", "\n";
3325
 
3326
  $expected_extract_version = $version_string . $subversion_string . '-' . '96';
 
 
 
 
3327
  $extract_source = '';
3328
  $saved_settings = get_option (AI_OPTION_NAME);
3329
  if (isset ($saved_settings [AI_OPTION_EXTRACT]['VERSION']) && $saved_settings [AI_OPTION_EXTRACT]['VERSION'] == $expected_extract_version) {
@@ -3563,8 +3582,22 @@ function ai_write_debug_info ($write_processing_log = false) {
3563
  }
3564
  }
3565
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3566
  echo "\n";
3567
 
 
3568
  // if ($block_object [AI_HEADER_OPTION_NAME]->get_enable_manual ()) {
3569
  // echo "HEADER CODE ========================================================\n";
3570
  // echo ai_dump_code ($block_object [AI_HEADER_OPTION_NAME]->ai_getCode ());
@@ -3848,6 +3881,7 @@ function ai_write_debug_info ($write_processing_log = false) {
3848
  foreach ($block_insertion_log as $log_line) {
3849
  echo substr ($log_line, 3), "\n";
3850
  }
 
3851
  echo "\n\n";
3852
 
3853
 
@@ -4763,7 +4797,8 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
4763
  $option == AI_OPTION_PARAGRAPH_TEXT ||
4764
  $option == AI_OPTION_COUNT_INSIDE_ELEMENTS_TEXT ||
4765
  $option == AI_OPTION_AVOID_TEXT_ABOVE ||
4766
- $option == AI_OPTION_AVOID_TEXT_BELOW
 
4767
  ) {
4768
  $value = esc_html ($value);
4769
  }
@@ -5241,6 +5276,7 @@ function ai_generate_extract (&$settings) {
5241
 
5242
  $temp_ai_wp_data = $ai_wp_data;
5243
 
 
5244
  $ai_wp_data [AI_SERVER_SIDE_DETECTION] = false;
5245
  $ai_wp_data [AI_CLIENT_SIDE_DETECTION] = false;
5246
  $ai_wp_data [AI_CLIENT_SIDE_INSERTION] = false;
@@ -5381,6 +5417,7 @@ function ai_generate_extract (&$settings) {
5381
  }
5382
 
5383
  $extract [AI_EXTRACT_FEATURES] = array (
 
5384
  AI_SERVER_SIDE_DETECTION => $ai_wp_data [AI_SERVER_SIDE_DETECTION],
5385
  AI_CLIENT_SIDE_DETECTION => $ai_wp_data [AI_CLIENT_SIDE_DETECTION],
5386
  AI_CLIENT_SIDE_INSERTION => $ai_wp_data [AI_CLIENT_SIDE_INSERTION],
@@ -5429,7 +5466,13 @@ function ai_generate_extract (&$settings) {
5429
  }
5430
  }
5431
 
5432
- $extract ['VERSION'] = $version_string . $subversion_string . '-' . '96';
 
 
 
 
 
 
5433
  $extract ['TIMESTAMP'] = time ();
5434
 
5435
  return ($extract);
@@ -5481,6 +5524,7 @@ function ai_load_settings () {
5481
  $block_object [AI_FOOTER_OPTION_NAME] = $adF;
5482
 
5483
  if ($features_in_extract) {
 
5484
  $ai_wp_data [AI_SERVER_SIDE_DETECTION] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_SERVER_SIDE_DETECTION];
5485
  $ai_wp_data [AI_CLIENT_SIDE_DETECTION] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_CLIENT_SIDE_DETECTION];
5486
  $ai_wp_data [AI_CLIENT_SIDE_INSERTION] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_CLIENT_SIDE_INSERTION];
@@ -7195,6 +7239,7 @@ function ai_process_shortcode (&$block, $atts) {
7195
  "url" => "",
7196
  "url-parameter" => "",
7197
  "referrer" => "",
 
7198
  "ip-address" => "",
7199
  "country" => "",
7200
  ), $atts);
@@ -7938,6 +7983,38 @@ function check_referer_list ($referers, $white_list) {
7938
  return !$return;
7939
  }
7940
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7941
  function ai_check_block ($block) {
7942
  global $ai_delay_showing_pageviews;
7943
 
@@ -8337,6 +8414,7 @@ $ai_wp_data [AI_CONTEXT] = AI_CONTEXT_NONE;
8337
 
8338
  $ai_wp_data [AI_SERVER_SIDE_DETECTION] = false;
8339
  $ai_wp_data [AI_CLIENT_SIDE_DETECTION] = false;
 
8340
  $ai_wp_data [AI_TRACKING] = false;
8341
  $ai_wp_data [AI_STICKY_WIDGETS] = false;
8342
  $ai_wp_data [AI_STICK_TO_THE_CONTENT] = false;
@@ -8428,8 +8506,8 @@ if (get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC) {
8428
  }
8429
  }
8430
 
8431
- if ($ai_wp_data [AI_SERVER_SIDE_DETECTION]) {
8432
- require_once AD_INSERTER_PLUGIN_DIR.'includes/Mobile_Detect.php';
8433
 
8434
  $detect = new ai_Mobile_Detect;
8435
 
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
+ Version: 2.5.5
6
  Description: Ad management with many advanced advertising features to insert ads at optimal positions
7
  Author: Igor Funa
8
  Author URI: http://igorfuna.com/
15
 
16
  Change Log
17
 
18
+ Ad Inserter 2.5.5 - 2019-09-29
19
+ - Added support for client list (black/whitelist operating systems, browsers, device names)
20
+ - Fix for replaced tags with default value {name:default-value}
21
+ - Few minor bug fixes, cosmetic changes and code improvements
22
+
23
+ Ad Inserter 2.5.4 - 2019-09-27
24
+ - Minor bug fix regarding update checks (Pro only)
25
+
26
  Ad Inserter 2.5.3 - 2019-09-24
27
  - Added support for warning when Ad Inserter is disabled by AMPforWP Plugin Manager
28
  - Added support for block shortcode attributes
659
  case AI_CHECK_URL: $status .= "URL"; break;
660
  case AI_CHECK_URL_PARAMETER: $status .= "URL PARAMETER"; break;
661
  case AI_CHECK_REFERER: $status .= "REFERER ". $obj->get_ad_domain_list(); break;
662
+ case AI_CHECK_CLIENT: $status .= "CLIENT ". $obj->get_client_list(); break;
663
  case AI_CHECK_IP_ADDRESS: $status .= "IP ADDRESS ". $obj->get_ad_ip_address_list(); break;
664
  case AI_CHECK_COUNTRY: $status .= "COUNTRY ". $obj->get_ad_country_list (true); break;
665
 
1702
  if (isset ($ai_db_options_extract)) return true;
1703
 
1704
  $expected_extract_version = $version_string . $subversion_string . '-' . '96';
1705
+ if (function_exists ('ai_system_output_check')) {
1706
+ $expected_extract_version .= 'P';
1707
+ }
1708
 
1709
  if (isset ($ai_db_options [AI_OPTION_EXTRACT]['VERSION']) && $ai_db_options [AI_OPTION_EXTRACT]['VERSION'] == $expected_extract_version) {
1710
  $ai_db_options_extract = $ai_db_options [AI_OPTION_EXTRACT];
2328
  }
2329
 
2330
  if ($client_side_dynamic_blocks) {
2331
+ if ($ai_wp_data [AI_MOBILE_DETECT_JS]) {
2332
+ echo ai_get_js ('ai-mobile-detect');
2333
+ }
2334
  echo ai_get_js ('ai-lists');
2335
  }
2336
 
3339
  echo isset ($ai_db_options [AI_OPTION_GLOBAL]['TIMESTAMP']) ? date ("Y-m-d H:i:s", $ai_db_options [AI_OPTION_GLOBAL]['TIMESTAMP'] + get_option ('gmt_offset') * 3600) : "", "\n";
3340
 
3341
  $expected_extract_version = $version_string . $subversion_string . '-' . '96';
3342
+ if (function_exists ('ai_system_output_check')) {
3343
+ $expected_extract_version .= 'P';
3344
+ }
3345
+
3346
  $extract_source = '';
3347
  $saved_settings = get_option (AI_OPTION_NAME);
3348
  if (isset ($saved_settings [AI_OPTION_EXTRACT]['VERSION']) && $saved_settings [AI_OPTION_EXTRACT]['VERSION'] == $expected_extract_version) {
3582
  }
3583
  }
3584
 
3585
+ if (isset ($ai_wp_data [AI_CLIENTS]) && isset ($ai_wp_data [AI_AGENT])) {
3586
+ if (isset ($_SERVER ['HTTP_USER_AGENT'])) {
3587
+ echo 'USER AGENT: ', $_SERVER ['HTTP_USER_AGENT'], "\n";
3588
+ }
3589
+
3590
+ $agent = $ai_wp_data [AI_AGENT];
3591
+ if (!empty ($ai_wp_data [AI_CLIENTS])) {
3592
+ foreach ($ai_wp_data [AI_CLIENTS] as $client) {
3593
+ echo sprintf ("%-25s", $client.':'), $agent->is ($client) ? 'YES' : '', "\n";
3594
+ }
3595
+ }
3596
+ }
3597
+
3598
  echo "\n";
3599
 
3600
+
3601
  // if ($block_object [AI_HEADER_OPTION_NAME]->get_enable_manual ()) {
3602
  // echo "HEADER CODE ========================================================\n";
3603
  // echo ai_dump_code ($block_object [AI_HEADER_OPTION_NAME]->ai_getCode ());
3881
  foreach ($block_insertion_log as $log_line) {
3882
  echo substr ($log_line, 3), "\n";
3883
  }
3884
+
3885
  echo "\n\n";
3886
 
3887
 
4797
  $option == AI_OPTION_PARAGRAPH_TEXT ||
4798
  $option == AI_OPTION_COUNT_INSIDE_ELEMENTS_TEXT ||
4799
  $option == AI_OPTION_AVOID_TEXT_ABOVE ||
4800
+ $option == AI_OPTION_AVOID_TEXT_BELOW ||
4801
+ $option == AI_OPTION_CLIENT_LIST
4802
  ) {
4803
  $value = esc_html ($value);
4804
  }
5276
 
5277
  $temp_ai_wp_data = $ai_wp_data;
5278
 
5279
+ $ai_wp_data [AI_MOBILE_DETECT_JS] = false;
5280
  $ai_wp_data [AI_SERVER_SIDE_DETECTION] = false;
5281
  $ai_wp_data [AI_CLIENT_SIDE_DETECTION] = false;
5282
  $ai_wp_data [AI_CLIENT_SIDE_INSERTION] = false;
5417
  }
5418
 
5419
  $extract [AI_EXTRACT_FEATURES] = array (
5420
+ AI_MOBILE_DETECT_JS => $ai_wp_data [AI_MOBILE_DETECT_JS],
5421
  AI_SERVER_SIDE_DETECTION => $ai_wp_data [AI_SERVER_SIDE_DETECTION],
5422
  AI_CLIENT_SIDE_DETECTION => $ai_wp_data [AI_CLIENT_SIDE_DETECTION],
5423
  AI_CLIENT_SIDE_INSERTION => $ai_wp_data [AI_CLIENT_SIDE_INSERTION],
5466
  }
5467
  }
5468
 
5469
+
5470
+ $extract_version = $version_string . $subversion_string . '-' . '96';
5471
+ if (function_exists ('ai_system_output_check')) {
5472
+ $extract_version .= 'P';
5473
+ }
5474
+ $extract ['VERSION'] = $extract_version;
5475
+
5476
  $extract ['TIMESTAMP'] = time ();
5477
 
5478
  return ($extract);
5524
  $block_object [AI_FOOTER_OPTION_NAME] = $adF;
5525
 
5526
  if ($features_in_extract) {
5527
+ $ai_wp_data [AI_MOBILE_DETECT_JS] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_MOBILE_DETECT_JS];
5528
  $ai_wp_data [AI_SERVER_SIDE_DETECTION] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_SERVER_SIDE_DETECTION];
5529
  $ai_wp_data [AI_CLIENT_SIDE_DETECTION] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_CLIENT_SIDE_DETECTION];
5530
  $ai_wp_data [AI_CLIENT_SIDE_INSERTION] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_CLIENT_SIDE_INSERTION];
7239
  "url" => "",
7240
  "url-parameter" => "",
7241
  "referrer" => "",
7242
+ "client" => "",
7243
  "ip-address" => "",
7244
  "country" => "",
7245
  ), $atts);
7983
  return !$return;
7984
  }
7985
 
7986
+ function check_client_list ($clients, $white_list) {
7987
+ global $ai_wp_data;
7988
+
7989
+ if (!isset ($ai_wp_data [AI_AGENT])) {
7990
+ require_once AD_INSERTER_PLUGIN_DIR.'includes/agent/Agent.php';
7991
+ $agent = new Agent();
7992
+ $ai_wp_data [AI_AGENT] = $agent;
7993
+ } else $agent = $ai_wp_data [AI_AGENT];
7994
+
7995
+ $return = $white_list;
7996
+
7997
+ if ($clients == AD_EMPTY_DATA) return !$return;
7998
+ $clients = explode (",", $clients);
7999
+
8000
+ if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
8001
+ if (!isset ($ai_wp_data [AI_CLIENTS])) $ai_wp_data [AI_CLIENTS] = array ();
8002
+ foreach ($clients as $client) {
8003
+ $client = trim ($client);
8004
+ if ($client == "") continue;
8005
+ $ai_wp_data [AI_CLIENTS][] = $client;
8006
+ }
8007
+ }
8008
+
8009
+ foreach ($clients as $client) {
8010
+ $client = trim ($client);
8011
+ if ($client == "") continue;
8012
+
8013
+ if ($agent->is ($client)) return $return;
8014
+ }
8015
+ return !$return;
8016
+ }
8017
+
8018
  function ai_check_block ($block) {
8019
  global $ai_delay_showing_pageviews;
8020
 
8414
 
8415
  $ai_wp_data [AI_SERVER_SIDE_DETECTION] = false;
8416
  $ai_wp_data [AI_CLIENT_SIDE_DETECTION] = false;
8417
+ $ai_wp_data [AI_MOBILE_DETECT_JS] = false;
8418
  $ai_wp_data [AI_TRACKING] = false;
8419
  $ai_wp_data [AI_STICKY_WIDGETS] = false;
8420
  $ai_wp_data [AI_STICK_TO_THE_CONTENT] = false;
8506
  }
8507
  }
8508
 
8509
+ if ($ai_wp_data [AI_SERVER_SIDE_DETECTION] && !is_admin ()) {
8510
+ require_once AD_INSERTER_PLUGIN_DIR.'includes/mobiledetect/Mobile_Detect.php';
8511
 
8512
  $detect = new ai_Mobile_Detect;
8513
 
class.php CHANGED
@@ -32,6 +32,8 @@ abstract class ai_BaseCodeBlock {
32
  var $check_url_parameter_list_type;
33
  var $check_referers;
34
  var $check_referers_list_type;
 
 
35
  var $check_ip_addresses;
36
  var $check_ip_addresses_list_type;
37
  var $check_countries;
@@ -605,6 +607,8 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
605
  $this->wp_options [AI_OPTION_URL_PARAMETER_LIST_TYPE] = AI_BLACK_LIST;
606
  $this->wp_options [AI_OPTION_DOMAIN_LIST] = AD_EMPTY_DATA;
607
  $this->wp_options [AI_OPTION_DOMAIN_LIST_TYPE] = AI_BLACK_LIST;
 
 
608
  $this->wp_options [AI_OPTION_IP_ADDRESS_LIST] = AD_EMPTY_DATA;
609
  $this->wp_options [AI_OPTION_IP_ADDRESS_LIST_TYPE] = AI_BLACK_LIST;
610
  $this->wp_options [AI_OPTION_COUNTRY_LIST] = AD_EMPTY_DATA;
@@ -2824,28 +2828,34 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2824
  $referers = base64_encode ($referers_raw);
2825
  $referer_list_type = isset ($this->check_referers_list_type) ? $this->check_referers_list_type : $this->get_ad_domain_list_type ();
2826
 
2827
- if ($this->client_side_cookie_check && ($url_parameters != '' || $url_parameter_list_type == AI_WHITE_LIST) || $referers != '' || $referer_list_type == AI_WHITE_LIST) {
 
 
 
 
2828
  switch ($dynamic_blocks) {
2829
  case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW:
2830
  case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT:
2831
  if ($url_parameter_list_type == AI_BLACK_LIST) $url_parameter_list_type = 'B'; else $url_parameter_list_type = 'W';
2832
  if ($referer_list_type == AI_BLACK_LIST) $referer_list_type = 'B'; else $referer_list_type = 'W';
 
2833
 
2834
  if ($this->client_side_cookie_check && ($url_parameters != '' || $url_parameter_list_type == 'W')) $url_parameter_attributes = "parameter-list='$url_parameters' parameter-list-type='$url_parameter_list_type'"; else $url_parameter_attributes = '';
2835
  if ( $referers != '' || $referer_list_type == 'W') $referer_attributes = "referer-list='$referers' referer-list-type='$referer_list_type'"; else $referer_attributes = '';
 
2836
 
2837
  $this->client_side_list_detection = true;
2838
 
2839
  switch ($dynamic_blocks) {
2840
  case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW:
2841
  if (defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ()) {
2842
- $processed_code = "\n<div class='ai-dynamic ai-list-data' $referer_attributes $url_parameter_attributes>$processed_code</div>\n";
2843
- } else $processed_code = "\n<div class='ai-dynamic ai-list-data' $referer_attributes $url_parameter_attributes style='visibility: hidden; position: absolute; width: 100%; height: 100%; z-index: -9999;'>$processed_code</div>\n";
2844
  break;
2845
  case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT:
2846
  $code_data = "data-code='".base64_encode ($processed_code)."'";
2847
 
2848
- $processed_code = "\n<div class='ai-dynamic ai-list-data' $referer_attributes $url_parameter_attributes $code_data></div>\n";
2849
  break;
2850
  }
2851
 
@@ -2854,9 +2864,17 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2854
  if ($this->client_side_cookie_check && ($url_parameters != '' || $url_parameter_list_type == 'W')) $url_parameter_attributes_dbg = sprintf (__ ("parameters='%s' type='%s'", 'ad-inserter'), $url_parameters_raw, $url_parameter_list_type); else $url_parameter_attributes_dbg = '';
2855
  // translators: %s: list parameters and type
2856
  if ( $referers != '' || $referer_list_type == 'W') $referer_attributes_dbg = sprintf (__ ("referers='%s' type='%s'", 'ad-inserter'), $referers_raw, $referer_list_type); else $referer_attributes_dbg = '';
 
 
2857
 
2858
  $debug_list = new ai_block_labels ('ai-debug-lists');
2859
- $processed_code = $debug_list->bar ($url_parameter_attributes_dbg . ' ' . $referer_attributes_dbg, 'B = ' . AI_TEXT_BLACK_LIST .', W = ' . AI_TEXT_WHITE_LIST, '<kbd class="ai-debug-name ai-list-status"></kbd>', '<kbd class="ai-debug-name ai-list-info"></kbd>') . $processed_code;
 
 
 
 
 
 
2860
  }
2861
 
2862
  break;
@@ -2867,6 +2885,10 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2867
  $this->w3tc_code .= ' if ($ai_enabled) $ai_enabled = check_referer_list (base64_decode (\''.$referers.'\'), '.($referer_list_type == AI_WHITE_LIST ? 'true':'false').');';
2868
  } elseif ($referer_list_type == AI_WHITE_LIST) $this->w3tc_code .= ' $ai_enabled = false;';
2869
 
 
 
 
 
2870
  if ($this->client_side_cookie_check) {
2871
  if ($url_parameters != '') {
2872
  $this->w3tc_code .= ' if ($ai_enabled) $ai_enabled = check_cookie_list (base64_decode (\''.$url_parameters.'\'), '.($url_parameter_list_type == AI_WHITE_LIST ? 'true':'false').');';
@@ -3632,6 +3654,17 @@ echo '</body>
3632
  return $option;
3633
  }
3634
 
 
 
 
 
 
 
 
 
 
 
 
3635
  public function get_ad_ip_address_list (){
3636
  $option = isset ($this->wp_options [AI_OPTION_IP_ADDRESS_LIST]) ? $this->wp_options [AI_OPTION_IP_ADDRESS_LIST] : "";
3637
  return $option;
@@ -5996,6 +6029,10 @@ echo '</body>
5996
  return check_referer_list ($this->get_ad_domain_list(), $this->get_ad_domain_list_type() == AI_WHITE_LIST);
5997
  }
5998
 
 
 
 
 
5999
  function check_number_of_words (&$content = null, $number_of_words = 0) {
6000
  global $ai_last_check, $ai_wp_data;
6001
 
@@ -6125,6 +6162,11 @@ echo '</body>
6125
  if (!$this->check_referer ()) return false;
6126
  }
6127
 
 
 
 
 
 
6128
  if (function_exists ('ai_check_lists')) {
6129
  if (!ai_check_lists ($this, $server_side_check)) return false;
6130
  }
@@ -6312,7 +6354,7 @@ echo '</body>
6312
 
6313
  if (isset ($ai_wp_data [AI_SHORTCODES]['atts']) && is_array ($ai_wp_data [AI_SHORTCODES]['atts']) && !empty ($ai_wp_data [AI_SHORTCODES]['atts'])) {
6314
  foreach ($ai_wp_data [AI_SHORTCODES]['atts'] as $name => $value) {
6315
- $content = preg_replace ("/\{$name(\:[^{}]*?)?\}/i", $value, $content);
6316
  }
6317
  }
6318
 
@@ -6498,10 +6540,10 @@ echo '</body>
6498
  if (function_exists ('ai_tags')) ai_tags ($ad_data);
6499
 
6500
  // Replace default values {tag:default}
6501
- $default_value_tags = preg_match_all ("/\{[a-zA-Z\-_][a-zA-Z0-9\-_]*?\:([^}]*?)\}/", $ad_data, $matches);
6502
  if ($default_value_tags) {
6503
  foreach ($matches [0] as $index => $match) {
6504
- $ad_data = str_replace ($match, str_replace ('^)', '}', $matches [1][$index]), $ad_data);
6505
  }
6506
  }
6507
 
@@ -6527,6 +6569,9 @@ echo '</body>
6527
  // return;
6528
 
6529
  if ($this->get_detection_server_side()) $ai_wp_data [AI_SERVER_SIDE_DETECTION] = true;
 
 
 
6530
  if ($this->get_detection_client_side ()) {
6531
  $ai_wp_data [AI_CLIENT_SIDE_DETECTION] = true;
6532
 
@@ -6535,6 +6580,9 @@ echo '</body>
6535
  }
6536
  }
6537
 
 
 
 
6538
  if (function_exists ('ai_extract_features_2')) ai_extract_features_2 ($this);
6539
 
6540
  if ($this->stick_to_the_content_class () != '') $ai_wp_data [AI_STICK_TO_THE_CONTENT] = true;
32
  var $check_url_parameter_list_type;
33
  var $check_referers;
34
  var $check_referers_list_type;
35
+ var $check_clients;
36
+ var $check_clients_list_type;
37
  var $check_ip_addresses;
38
  var $check_ip_addresses_list_type;
39
  var $check_countries;
607
  $this->wp_options [AI_OPTION_URL_PARAMETER_LIST_TYPE] = AI_BLACK_LIST;
608
  $this->wp_options [AI_OPTION_DOMAIN_LIST] = AD_EMPTY_DATA;
609
  $this->wp_options [AI_OPTION_DOMAIN_LIST_TYPE] = AI_BLACK_LIST;
610
+ $this->wp_options [AI_OPTION_CLIENT_LIST] = AD_EMPTY_DATA;
611
+ $this->wp_options [AI_OPTION_CLIENT_LIST_TYPE] = AI_BLACK_LIST;
612
  $this->wp_options [AI_OPTION_IP_ADDRESS_LIST] = AD_EMPTY_DATA;
613
  $this->wp_options [AI_OPTION_IP_ADDRESS_LIST_TYPE] = AI_BLACK_LIST;
614
  $this->wp_options [AI_OPTION_COUNTRY_LIST] = AD_EMPTY_DATA;
2828
  $referers = base64_encode ($referers_raw);
2829
  $referer_list_type = isset ($this->check_referers_list_type) ? $this->check_referers_list_type : $this->get_ad_domain_list_type ();
2830
 
2831
+ $clients_raw = trim (str_replace (' ', '', strtolower (isset ($this->check_clients) ? $this->check_clients : $this->get_client_list ())));
2832
+ $clients = base64_encode ($clients_raw);
2833
+ $client_list_type = isset ($this->check_client_list_type) ? $this->check_clients_list_type : $this->get_client_list_type ();
2834
+
2835
+ if ($this->client_side_cookie_check && ($url_parameters != '' || $url_parameter_list_type == AI_WHITE_LIST) || $referers != '' || $referer_list_type == AI_WHITE_LIST || $clients != '' || $client_list_type == AI_WHITE_LIST) {
2836
  switch ($dynamic_blocks) {
2837
  case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW:
2838
  case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT:
2839
  if ($url_parameter_list_type == AI_BLACK_LIST) $url_parameter_list_type = 'B'; else $url_parameter_list_type = 'W';
2840
  if ($referer_list_type == AI_BLACK_LIST) $referer_list_type = 'B'; else $referer_list_type = 'W';
2841
+ if ($client_list_type == AI_BLACK_LIST) $client_list_type = 'B'; else $client_list_type = 'W';
2842
 
2843
  if ($this->client_side_cookie_check && ($url_parameters != '' || $url_parameter_list_type == 'W')) $url_parameter_attributes = "parameter-list='$url_parameters' parameter-list-type='$url_parameter_list_type'"; else $url_parameter_attributes = '';
2844
  if ( $referers != '' || $referer_list_type == 'W') $referer_attributes = "referer-list='$referers' referer-list-type='$referer_list_type'"; else $referer_attributes = '';
2845
+ if ( $clients != '' || $client_list_type == 'W') $client_attributes = "client-list='$clients' client-list-type='$client_list_type'"; else $client_attributes = '';
2846
 
2847
  $this->client_side_list_detection = true;
2848
 
2849
  switch ($dynamic_blocks) {
2850
  case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW:
2851
  if (defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ()) {
2852
+ $processed_code = "\n<div class='ai-dynamic ai-list-data' $referer_attributes $client_attributes $url_parameter_attributes>$processed_code</div>\n";
2853
+ } else $processed_code = "\n<div class='ai-dynamic ai-list-data' $referer_attributes $client_attributes $url_parameter_attributes style='visibility: hidden; position: absolute; width: 100%; height: 100%; z-index: -9999;'>$processed_code</div>\n";
2854
  break;
2855
  case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT:
2856
  $code_data = "data-code='".base64_encode ($processed_code)."'";
2857
 
2858
+ $processed_code = "\n<div class='ai-dynamic ai-list-data' $referer_attributes $client_attributes $url_parameter_attributes $code_data></div>\n";
2859
  break;
2860
  }
2861
 
2864
  if ($this->client_side_cookie_check && ($url_parameters != '' || $url_parameter_list_type == 'W')) $url_parameter_attributes_dbg = sprintf (__ ("parameters='%s' type='%s'", 'ad-inserter'), $url_parameters_raw, $url_parameter_list_type); else $url_parameter_attributes_dbg = '';
2865
  // translators: %s: list parameters and type
2866
  if ( $referers != '' || $referer_list_type == 'W') $referer_attributes_dbg = sprintf (__ ("referers='%s' type='%s'", 'ad-inserter'), $referers_raw, $referer_list_type); else $referer_attributes_dbg = '';
2867
+ // translators: %s: list parameters and type
2868
+ if ( $clients != '' || $client_list_type == 'W') $client_attributes_dbg = sprintf (__ ("clients='%s' type='%s'", 'ad-inserter'), $clients_raw, $client_list_type); else $client_attributes_dbg = '';
2869
 
2870
  $debug_list = new ai_block_labels ('ai-debug-lists');
2871
+ $debug_processed_code = $debug_list->bar ($url_parameter_attributes_dbg . ' ' . $referer_attributes_dbg . ' ' . $client_attributes_dbg, 'B = ' . AI_TEXT_BLACK_LIST .', W = ' . AI_TEXT_WHITE_LIST, '<kbd class="ai-debug-name ai-list-status"></kbd>', '<kbd class="ai-debug-name ai-list-info"></kbd>');
2872
+ if ($clients != '' || $client_list_type == 'W') {
2873
+ $debug_processed_code .= $debug_list->bar ('', '', '<kbd class="ai-debug-name ai-user-agent">###</kbd>');
2874
+ }
2875
+ $debug_processed_code .= $processed_code;
2876
+
2877
+ $processed_code = $debug_processed_code;
2878
  }
2879
 
2880
  break;
2885
  $this->w3tc_code .= ' if ($ai_enabled) $ai_enabled = check_referer_list (base64_decode (\''.$referers.'\'), '.($referer_list_type == AI_WHITE_LIST ? 'true':'false').');';
2886
  } elseif ($referer_list_type == AI_WHITE_LIST) $this->w3tc_code .= ' $ai_enabled = false;';
2887
 
2888
+ if ($clients != '') {
2889
+ $this->w3tc_code .= ' if ($ai_enabled) $ai_enabled = check_client_list (base64_decode (\''.$clients.'\'), '.($client_list_type == AI_WHITE_LIST ? 'true':'false').');';
2890
+ } elseif ($client_list_type == AI_WHITE_LIST) $this->w3tc_code .= ' $ai_enabled = false;';
2891
+
2892
  if ($this->client_side_cookie_check) {
2893
  if ($url_parameters != '') {
2894
  $this->w3tc_code .= ' if ($ai_enabled) $ai_enabled = check_cookie_list (base64_decode (\''.$url_parameters.'\'), '.($url_parameter_list_type == AI_WHITE_LIST ? 'true':'false').');';
3654
  return $option;
3655
  }
3656
 
3657
+ public function get_client_list(){
3658
+ $option = isset ($this->wp_options [AI_OPTION_CLIENT_LIST]) ? $this->wp_options [AI_OPTION_CLIENT_LIST] : "";
3659
+ return $option;
3660
+ }
3661
+
3662
+ public function get_client_list_type (){
3663
+ $option = isset ($this->wp_options [AI_OPTION_CLIENT_LIST_TYPE]) ? $this->wp_options [AI_OPTION_CLIENT_LIST_TYPE] : AI_BLACK_LIST;
3664
+ if ($option == '') $option = AI_BLACK_LIST;
3665
+ return $option;
3666
+ }
3667
+
3668
  public function get_ad_ip_address_list (){
3669
  $option = isset ($this->wp_options [AI_OPTION_IP_ADDRESS_LIST]) ? $this->wp_options [AI_OPTION_IP_ADDRESS_LIST] : "";
3670
  return $option;
6029
  return check_referer_list ($this->get_ad_domain_list(), $this->get_ad_domain_list_type() == AI_WHITE_LIST);
6030
  }
6031
 
6032
+ function check_client () {
6033
+ return check_client_list ($this->get_client_list(), $this->get_client_list_type() == AI_WHITE_LIST);
6034
+ }
6035
+
6036
  function check_number_of_words (&$content = null, $number_of_words = 0) {
6037
  global $ai_last_check, $ai_wp_data;
6038
 
6162
  if (!$this->check_referer ()) return false;
6163
  }
6164
 
6165
+ if ($server_side_check) {
6166
+ $ai_last_check = AI_CHECK_CLIENT;
6167
+ if (!$this->check_client ()) return false;
6168
+ }
6169
+
6170
  if (function_exists ('ai_check_lists')) {
6171
  if (!ai_check_lists ($this, $server_side_check)) return false;
6172
  }
6354
 
6355
  if (isset ($ai_wp_data [AI_SHORTCODES]['atts']) && is_array ($ai_wp_data [AI_SHORTCODES]['atts']) && !empty ($ai_wp_data [AI_SHORTCODES]['atts'])) {
6356
  foreach ($ai_wp_data [AI_SHORTCODES]['atts'] as $name => $value) {
6357
+ $content = preg_replace ("/\{\#$name(\:[^{}]*?)?\#\}/i", $value, $content);
6358
  }
6359
  }
6360
 
6540
  if (function_exists ('ai_tags')) ai_tags ($ad_data);
6541
 
6542
  // Replace default values {tag:default}
6543
+ $default_value_tags = preg_match_all ("/\{\#[a-zA-Z\-_][a-zA-Z0-9\-_]*?\:(.*?)\#\}/", $ad_data, $matches);
6544
  if ($default_value_tags) {
6545
  foreach ($matches [0] as $index => $match) {
6546
+ $ad_data = str_replace ($match, $matches [1][$index], $ad_data);
6547
  }
6548
  }
6549
 
6569
  // return;
6570
 
6571
  if ($this->get_detection_server_side()) $ai_wp_data [AI_SERVER_SIDE_DETECTION] = true;
6572
+
6573
+ if (trim ($this->get_client_list ()) != '' || $this->get_client_list_type () == AI_WHITE_LIST) $ai_wp_data [AI_MOBILE_DETECT_JS] = true;
6574
+
6575
  if ($this->get_detection_client_side ()) {
6576
  $ai_wp_data [AI_CLIENT_SIDE_DETECTION] = true;
6577
 
6580
  }
6581
  }
6582
 
6583
+
6584
+
6585
+
6586
  if (function_exists ('ai_extract_features_2')) ai_extract_features_2 ($this);
6587
 
6588
  if ($this->stick_to_the_content_class () != '') $ai_wp_data [AI_STICK_TO_THE_CONTENT] = true;
constants.php CHANGED
@@ -31,7 +31,7 @@ if (!defined( 'AD_INSERTER_NAME'))
31
  define ('AD_INSERTER_NAME', 'Ad Inserter');
32
 
33
  if (!defined( 'AD_INSERTER_VERSION'))
34
- define ('AD_INSERTER_VERSION', '2.5.3');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
@@ -130,6 +130,8 @@ define ('AI_OPTION_URL_PARAMETER_LIST', 'url_parameter_list');
130
  define ('AI_OPTION_URL_PARAMETER_LIST_TYPE', 'url_parameter_list_type');
131
  define ('AI_OPTION_DOMAIN_LIST', 'domain_list');
132
  define ('AI_OPTION_DOMAIN_LIST_TYPE', 'domain_list_type');
 
 
133
  define ('AI_OPTION_IP_ADDRESS_LIST', 'ip_address_list');
134
  define ('AI_OPTION_IP_ADDRESS_LIST_TYPE', 'ip_address_list_type');
135
  define ('AI_OPTION_COUNTRY_LIST', 'country_list');
@@ -968,6 +970,7 @@ define ('AI_CHECK_MAX_CLICKS', 59);
968
  define ('AI_CHECK_LIMIT_CLICKS_PER_TIME_PERIOD', 60);
969
  define ('AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE_ELEMENTS', 61);
970
  define ('AI_CHECK_PARAGRAPHS_MAX_NUMBER', 62);
 
971
 
972
 
973
  define ('AI_PT_NONE', - 1);
@@ -1041,6 +1044,9 @@ define ('AI_ACTIVE_GROUP_NAMES', 51);
1041
  define ('AI_ADB_SHORTCODE_DISABLED', 52);
1042
  define ('AI_CHECK_BLOCK', 53);
1043
  define ('AI_CUSTOM_FIELDS', 54);
 
 
 
1044
 
1045
  define ('AI_CONTEXT_NONE', 0);
1046
  define ('AI_CONTEXT_CONTENT', 1);
31
  define ('AD_INSERTER_NAME', 'Ad Inserter');
32
 
33
  if (!defined( 'AD_INSERTER_VERSION'))
34
+ define ('AD_INSERTER_VERSION', '2.5.5');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
130
  define ('AI_OPTION_URL_PARAMETER_LIST_TYPE', 'url_parameter_list_type');
131
  define ('AI_OPTION_DOMAIN_LIST', 'domain_list');
132
  define ('AI_OPTION_DOMAIN_LIST_TYPE', 'domain_list_type');
133
+ define ('AI_OPTION_CLIENT_LIST', 'client_list');
134
+ define ('AI_OPTION_CLIENT_LIST_TYPE', 'client_list_type');
135
  define ('AI_OPTION_IP_ADDRESS_LIST', 'ip_address_list');
136
  define ('AI_OPTION_IP_ADDRESS_LIST_TYPE', 'ip_address_list_type');
137
  define ('AI_OPTION_COUNTRY_LIST', 'country_list');
970
  define ('AI_CHECK_LIMIT_CLICKS_PER_TIME_PERIOD', 60);
971
  define ('AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE_ELEMENTS', 61);
972
  define ('AI_CHECK_PARAGRAPHS_MAX_NUMBER', 62);
973
+ define ('AI_CHECK_CLIENT', 63);
974
 
975
 
976
  define ('AI_PT_NONE', - 1);
1044
  define ('AI_ADB_SHORTCODE_DISABLED', 52);
1045
  define ('AI_CHECK_BLOCK', 53);
1046
  define ('AI_CUSTOM_FIELDS', 54);
1047
+ define ('AI_AGENT', 55);
1048
+ define ('AI_CLIENTS', 56);
1049
+ define ('AI_MOBILE_DETECT_JS', 57);
1050
 
1051
  define ('AI_CONTEXT_NONE', 0);
1052
  define ('AI_CONTEXT_CONTENT', 1);
css/ai-settings.css CHANGED
@@ -1,5 +1,5 @@
1
  #ai-data {
2
- font-family: "2.5.3"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
1
  #ai-data {
2
+ font-family: "2.5.5"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
includes/ace/mode-ai-html.js CHANGED
@@ -36,7 +36,7 @@ function add_ai_highlighting_rules (highlighter, highlight_rules) {
36
  highlighter.$ai_separators1 = highlighter.$lang.arrayToMap ("http|count".split ("|"));
37
  highlighter.$ai_separators2 = highlighter.$lang.arrayToMap ("head|amp".split ("|"));
38
  highlighter.$ai_separators3 = highlighter.$lang.arrayToMap ("rotate".split ("|"));
39
- highlighter.$ai_attributes = highlighter.$lang.arrayToMap ("block|code|name|group|ignore|check|debugger|adb|css|text|selectors|custom-field|data|share|time|counter|category|tag|taxonomy|id|url|url-parameter|referrer|ip-address|country".split ("|"));
40
 
41
  //WP shortcodes
42
  highlighter.$rules ['start'].unshift (
@@ -62,11 +62,11 @@ function add_ai_highlighting_rules (highlighter, highlight_rules) {
62
  }
63
  ]);
64
 
65
- //AI {data}
66
  highlighter.$rules ['start'].unshift (
67
  {
68
- token: ["data", "data", "paren", "string", "data"],
69
- regex: "(\\{)([a-zA-Z][a-zA-Z0-9_-]*)(\\:)?([^\\}]*)?(\\})",
70
  },
71
  );
72
 
36
  highlighter.$ai_separators1 = highlighter.$lang.arrayToMap ("http|count".split ("|"));
37
  highlighter.$ai_separators2 = highlighter.$lang.arrayToMap ("head|amp".split ("|"));
38
  highlighter.$ai_separators3 = highlighter.$lang.arrayToMap ("rotate".split ("|"));
39
+ highlighter.$ai_attributes = highlighter.$lang.arrayToMap ("block|code|name|group|ignore|check|debugger|adb|css|text|selectors|custom-field|data|share|time|counter|category|tag|taxonomy|id|url|url-parameter|referrer|client|ip-address|country".split ("|"));
40
 
41
  //WP shortcodes
42
  highlighter.$rules ['start'].unshift (
62
  }
63
  ]);
64
 
65
+ //AI {#data:#}
66
  highlighter.$rules ['start'].unshift (
67
  {
68
+ token: ["paren", "data", "paren", "string", "paren"],
69
+ regex: "(\\{\\#)([a-zA-Z][a-zA-Z0-9_-]*)(\\:)?(.*)?(\\#\\})",
70
  },
71
  );
72
 
includes/agent/Agent.php ADDED
@@ -0,0 +1,392 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+
5
+ based on Agent
6
+ https://github.com/jenssegers/agent
7
+
8
+ */
9
+
10
+ //namespace Jenssegers\Agent;
11
+
12
+ //use BadMethodCallException;
13
+ //use Jaybizzle\CrawlerDetect\CrawlerDetect;
14
+ //use ai_Mobile_Detect;
15
+
16
+ require_once AD_INSERTER_PLUGIN_DIR.'includes/mobiledetect/Mobile_Detect.php';
17
+
18
+ class Agent extends ai_Mobile_Detect
19
+ {
20
+ /**
21
+ * List of desktop devices.
22
+ * @var array
23
+ */
24
+ protected static $desktopDevices = [
25
+ 'Macintosh' => 'Macintosh',
26
+ ];
27
+
28
+ /**
29
+ * List of additional operating systems.
30
+ * @var array
31
+ */
32
+ protected static $additionalOperatingSystems = [
33
+ 'Windows' => 'Windows',
34
+ 'Windows NT' => 'Windows NT',
35
+ 'OS X' => 'Mac OS X',
36
+ 'Debian' => 'Debian',
37
+ 'Ubuntu' => 'Ubuntu',
38
+ 'Macintosh' => 'PPC',
39
+ 'OpenBSD' => 'OpenBSD',
40
+ 'Linux' => 'Linux',
41
+ 'ChromeOS' => 'CrOS',
42
+ ];
43
+
44
+ /**
45
+ * List of additional browsers.
46
+ * @var array
47
+ */
48
+ protected static $additionalBrowsers = [
49
+ 'Opera Mini' => 'Opera Mini',
50
+ 'Opera' => 'Opera|OPR',
51
+ 'Edge' => 'Edge',
52
+ 'UCBrowser' => 'UCBrowser',
53
+ 'Vivaldi' => 'Vivaldi',
54
+ 'Chrome' => 'Chrome',
55
+ 'Firefox' => 'Firefox',
56
+ 'Safari' => 'Safari',
57
+ 'IE' => 'MSIE|IEMobile|MSIEMobile|Trident/[.0-9]+',
58
+ 'Netscape' => 'Netscape',
59
+ 'Mozilla' => 'Mozilla',
60
+ ];
61
+
62
+ /**
63
+ * List of additional properties.
64
+ * @var array
65
+ */
66
+ protected static $additionalProperties = [
67
+ // Operating systems
68
+ 'Windows' => 'Windows NT [VER]',
69
+ 'Windows NT' => 'Windows NT [VER]',
70
+ 'OS X' => 'OS X [VER]',
71
+ 'BlackBerryOS' => ['BlackBerry[\w]+/[VER]', 'BlackBerry.*Version/[VER]', 'Version/[VER]'],
72
+ 'AndroidOS' => 'Android [VER]',
73
+ 'ChromeOS' => 'CrOS x86_64 [VER]',
74
+
75
+ // Browsers
76
+ 'Opera Mini' => 'Opera Mini/[VER]',
77
+ 'Opera' => [' OPR/[VER]', 'Opera Mini/[VER]', 'Version/[VER]', 'Opera [VER]'],
78
+ 'Netscape' => 'Netscape/[VER]',
79
+ 'Mozilla' => 'rv:[VER]',
80
+ 'IE' => ['IEMobile/[VER];', 'IEMobile [VER]', 'MSIE [VER];', 'rv:[VER]'],
81
+ 'Edge' => 'Edge/[VER]',
82
+ 'Vivaldi' => 'Vivaldi/[VER]',
83
+ ];
84
+
85
+ /**
86
+ * @var CrawlerDetect
87
+ */
88
+ protected static $crawlerDetect;
89
+
90
+ /**
91
+ * Get all detection rules. These rules include the additional
92
+ * platforms and browsers and utilities.
93
+ * @return array
94
+ */
95
+ public static function getDetectionRulesExtended()
96
+ {
97
+ static $rules;
98
+
99
+ if (!$rules) {
100
+ $rules = static::mergeRules(
101
+ static::$desktopDevices, // NEW
102
+ static::$phoneDevices,
103
+ static::$tabletDevices,
104
+ static::$operatingSystems,
105
+ static::$additionalOperatingSystems, // NEW
106
+ static::$browsers,
107
+ static::$additionalBrowsers, // NEW
108
+ static::$utilities
109
+ );
110
+ }
111
+
112
+ return $rules;
113
+ }
114
+
115
+ public function getRules()
116
+ {
117
+ if ($this->detectionType === static::DETECTION_TYPE_EXTENDED) {
118
+ return static::getDetectionRulesExtended();
119
+ }
120
+
121
+ return static::getMobileDetectionRules();
122
+ }
123
+
124
+ /**
125
+ * @return CrawlerDetect
126
+ */
127
+ public function getCrawlerDetect()
128
+ {
129
+ if (static::$crawlerDetect === null) {
130
+ static::$crawlerDetect = new CrawlerDetect();
131
+ }
132
+
133
+ return static::$crawlerDetect;
134
+ }
135
+
136
+ public static function getBrowsers()
137
+ {
138
+ return static::mergeRules(
139
+ static::$additionalBrowsers,
140
+ static::$browsers
141
+ );
142
+ }
143
+
144
+ public static function getOperatingSystems()
145
+ {
146
+ return static::mergeRules(
147
+ static::$operatingSystems,
148
+ static::$additionalOperatingSystems
149
+ );
150
+ }
151
+
152
+ public static function getPlatforms()
153
+ {
154
+ return static::mergeRules(
155
+ static::$operatingSystems,
156
+ static::$additionalOperatingSystems
157
+ );
158
+ }
159
+
160
+ public static function getDesktopDevices()
161
+ {
162
+ return static::$desktopDevices;
163
+ }
164
+
165
+ public static function getProperties()
166
+ {
167
+ return static::mergeRules(
168
+ static::$additionalProperties,
169
+ static::$properties
170
+ );
171
+ }
172
+
173
+ /**
174
+ * Get accept languages.
175
+ * @param string $acceptLanguage
176
+ * @return array
177
+ */
178
+ public function languages($acceptLanguage = null)
179
+ {
180
+ if ($acceptLanguage === null) {
181
+ $acceptLanguage = $this->getHttpHeader('HTTP_ACCEPT_LANGUAGE');
182
+ }
183
+
184
+ if (!$acceptLanguage) {
185
+ return [];
186
+ }
187
+
188
+ $languages = [];
189
+
190
+ // Parse accept language string.
191
+ foreach (explode(',', $acceptLanguage) as $piece) {
192
+ $parts = explode(';', $piece);
193
+ $language = strtolower($parts[0]);
194
+ $priority = empty($parts[1]) ? 1. : floatval(str_replace('q=', '', $parts[1]));
195
+
196
+ $languages[$language] = $priority;
197
+ }
198
+
199
+ // Sort languages by priority.
200
+ arsort($languages);
201
+
202
+ return array_keys($languages);
203
+ }
204
+
205
+ /**
206
+ * Match a detection rule and return the matched key.
207
+ * @param array $rules
208
+ * @param string|null $userAgent
209
+ * @return string
210
+ */
211
+ protected function findDetectionRulesAgainstUA(array $rules, $userAgent = null)
212
+ {
213
+ // Loop given rules
214
+ foreach ($rules as $key => $regex) {
215
+ if (empty($regex)) {
216
+ continue;
217
+ }
218
+
219
+ // Check match
220
+ if ($this->match($regex, $userAgent)) {
221
+ return $key ?: reset($this->matchesArray);
222
+ }
223
+ }
224
+
225
+ return false;
226
+ }
227
+
228
+ /**
229
+ * Get the browser name.
230
+ * @param string|null $userAgent
231
+ * @return string
232
+ */
233
+ public function browser($userAgent = null)
234
+ {
235
+ return $this->findDetectionRulesAgainstUA(static::getBrowsers(), $userAgent);
236
+ }
237
+
238
+ /**
239
+ * Get the platform name.
240
+ * @param string|null $userAgent
241
+ * @return string
242
+ */
243
+ public function platform($userAgent = null)
244
+ {
245
+ return $this->findDetectionRulesAgainstUA(static::getPlatforms(), $userAgent);
246
+ }
247
+
248
+ /**
249
+ * Get the device name.
250
+ * @param string|null $userAgent
251
+ * @return string
252
+ */
253
+ public function device($userAgent = null)
254
+ {
255
+ $rules = static::mergeRules(
256
+ static::getDesktopDevices(),
257
+ static::getPhoneDevices(),
258
+ static::getTabletDevices(),
259
+ static::getUtilities()
260
+ );
261
+
262
+ return $this->findDetectionRulesAgainstUA($rules, $userAgent);
263
+ }
264
+
265
+ /**
266
+ * Check if the device is a desktop computer.
267
+ * @param string|null $userAgent deprecated
268
+ * @param array $httpHeaders deprecated
269
+ * @return bool
270
+ */
271
+ public function isDesktop($userAgent = null, $httpHeaders = null)
272
+ {
273
+ return !$this->isMobile($userAgent, $httpHeaders) && !$this->isTablet($userAgent, $httpHeaders) && !$this->isRobot($userAgent);
274
+ }
275
+
276
+ /**
277
+ * Check if the device is a mobile phone.
278
+ * @param string|null $userAgent deprecated
279
+ * @param array $httpHeaders deprecated
280
+ * @return bool
281
+ */
282
+ public function isPhone($userAgent = null, $httpHeaders = null)
283
+ {
284
+ return $this->isMobile($userAgent, $httpHeaders) && !$this->isTablet($userAgent, $httpHeaders);
285
+ }
286
+
287
+ /**
288
+ * Get the robot name.
289
+ * @param string|null $userAgent
290
+ * @return string|bool
291
+ */
292
+ public function robot($userAgent = null)
293
+ {
294
+ if ($this->getCrawlerDetect()->isCrawler($userAgent ?: $this->userAgent)) {
295
+ return ucfirst($this->getCrawlerDetect()->getMatches());
296
+ }
297
+
298
+ return false;
299
+ }
300
+
301
+ /**
302
+ * Check if device is a robot.
303
+ * @param string|null $userAgent
304
+ * @return bool
305
+ */
306
+ public function isRobot($userAgent = null)
307
+ {
308
+ return $this->getCrawlerDetect()->isCrawler($userAgent ?: $this->userAgent);
309
+ }
310
+
311
+ public function version($propertyName, $type = self::VERSION_TYPE_STRING)
312
+ {
313
+ if (empty($propertyName)) {
314
+ return false;
315
+ }
316
+
317
+ // set the $type to the default if we don't recognize the type
318
+ if ($type !== self::VERSION_TYPE_STRING && $type !== self::VERSION_TYPE_FLOAT) {
319
+ $type = self::VERSION_TYPE_STRING;
320
+ }
321
+
322
+ $properties = self::getProperties();
323
+
324
+ // Check if the property exists in the properties array.
325
+ if (true === isset($properties[$propertyName])) {
326
+
327
+ // Prepare the pattern to be matched.
328
+ // Make sure we always deal with an array (string is converted).
329
+ $properties[$propertyName] = (array) $properties[$propertyName];
330
+
331
+ foreach ($properties[$propertyName] as $propertyMatchString) {
332
+ if (is_array($propertyMatchString)) {
333
+ $propertyMatchString = implode("|", $propertyMatchString);
334
+ }
335
+
336
+ $propertyPattern = str_replace('[VER]', self::VER, $propertyMatchString);
337
+
338
+ // Identify and extract the version.
339
+ preg_match(sprintf('#%s#is', $propertyPattern), $this->userAgent, $match);
340
+
341
+ if (false === empty($match[1])) {
342
+ $version = ($type === self::VERSION_TYPE_FLOAT ? $this->prepareVersionNo($match[1]) : $match[1]);
343
+
344
+ return $version;
345
+ }
346
+ }
347
+ }
348
+
349
+ return false;
350
+ }
351
+
352
+ /**
353
+ * Merge multiple rules into one array.
354
+ * @param array $all
355
+ * @return array
356
+ */
357
+ protected static function mergeRules(...$all)
358
+ {
359
+ $merged = [];
360
+
361
+ foreach ($all as $rules) {
362
+ foreach ($rules as $key => $value) {
363
+ if (empty($merged[$key])) {
364
+ $merged[$key] = $value;
365
+ } elseif (is_array($merged[$key])) {
366
+ $merged[$key][] = $value;
367
+ } else {
368
+ $merged[$key] .= '|' . $value;
369
+ }
370
+ }
371
+ }
372
+
373
+ return $merged;
374
+ }
375
+
376
+ /**
377
+ * @inheritdoc
378
+ */
379
+ public function __call($name, $arguments)
380
+ {
381
+ // Make sure the name starts with 'is', otherwise
382
+ if (strpos($name, 'is') !== 0) {
383
+ throw new BadMethodCallException("No such method exists: $name");
384
+ }
385
+
386
+ $this->setDetectionType(self::DETECTION_TYPE_EXTENDED);
387
+
388
+ $key = substr($name, 2);
389
+
390
+ return $this->matchUAAgainstKey($key);
391
+ }
392
+ }
includes/agent/LICENSE ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Jens Segers
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
includes/agent/README.md ADDED
@@ -0,0 +1,180 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Agent
2
+ =====
3
+
4
+ [![Latest Stable Version](http://img.shields.io/packagist/v/jenssegers/agent.svg)](https://packagist.org/packages/jenssegers/agent) [![Total Downloads](http://img.shields.io/packagist/dm/jenssegers/agent.svg)](https://packagist.org/packages/jenssegers/agent) [![Build Status](http://img.shields.io/travis/jenssegers/agent.svg)](https://travis-ci.org/jenssegers/agent) [![Coverage Status](http://img.shields.io/coveralls/jenssegers/agent.svg)](https://coveralls.io/r/jenssegers/agent) [![Donate](https://img.shields.io/badge/donate-paypal-blue.svg)](https://www.paypal.me/jenssegers)
5
+
6
+ A PHP desktop/mobile user agent parser with support for Laravel, based on [Mobile Detect](https://github.com/serbanghita/Mobile-Detect) with desktop support and additional functionality.
7
+
8
+ <p align="center">
9
+ <img src="http://jenssegers.be/uploads/images/agent.png?v4" height="275">
10
+ </p>
11
+
12
+ Installation
13
+ ------------
14
+
15
+ Install using composer:
16
+
17
+ ```bash
18
+ composer require jenssegers/agent
19
+ ```
20
+
21
+ Laravel (optional)
22
+ ------------------
23
+
24
+ Add the service provider in `config/app.php`:
25
+
26
+ ```php
27
+ Jenssegers\Agent\AgentServiceProvider::class,
28
+ ```
29
+
30
+ And add the Agent alias to `config/app.php`:
31
+
32
+ ```php
33
+ 'Agent' => Jenssegers\Agent\Facades\Agent::class,
34
+ ```
35
+
36
+ Basic Usage
37
+ -----------
38
+
39
+ Start by creating an `Agent` instance (or use the `Agent` Facade if you are using Laravel):
40
+
41
+ ```php
42
+ use Jenssegers\Agent\Agent;
43
+
44
+ $agent = new Agent();
45
+ ```
46
+
47
+ If you want to parse user agents other than the current request in CLI scripts for example, you can use the `setUserAgent` and `setHttpHeaders` methods:
48
+
49
+ ```php
50
+ $agent->setUserAgent('Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.13+ (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2');
51
+ $agent->setHttpHeaders($headers);
52
+ ```
53
+
54
+ All of the original [Mobile Detect](https://github.com/serbanghita/Mobile-Detect) methods are still available, check out some original examples at https://github.com/serbanghita/Mobile-Detect/wiki/Code-examples
55
+
56
+ ### Is?
57
+
58
+ Check for a certain property in the user agent.
59
+
60
+ ```php
61
+ $agent->is('Windows');
62
+ $agent->is('Firefox');
63
+ $agent->is('iPhone');
64
+ $agent->is('OS X');
65
+ ```
66
+
67
+ ### Magic is-method
68
+
69
+ Magic method that does the same as the previous `is()` method:
70
+
71
+ ```php
72
+ $agent->isAndroidOS();
73
+ $agent->isNexus();
74
+ $agent->isSafari();
75
+ ```
76
+
77
+ ### Mobile detection
78
+
79
+ Check for mobile device:
80
+
81
+ ```php
82
+ $agent->isMobile();
83
+ $agent->isTablet();
84
+ ```
85
+
86
+ ### Match user agent
87
+
88
+ Search the user agent with a regular expression:
89
+
90
+ ```php
91
+ $agent->match('regexp');
92
+ ```
93
+
94
+ Additional Functionality
95
+ ------------------------
96
+
97
+ ### Accept languages
98
+
99
+ Get the browser's accept languages. Example:
100
+
101
+ ```php
102
+ $languages = $agent->languages();
103
+ // ['nl-nl', 'nl', 'en-us', 'en']
104
+ ```
105
+
106
+ ### Device name
107
+
108
+ Get the device name, if mobile. (iPhone, Nexus, AsusTablet, ...)
109
+
110
+ ```php
111
+ $device = $agent->device();
112
+ ```
113
+
114
+ ### Operating system name
115
+
116
+ Get the operating system. (Ubuntu, Windows, OS X, ...)
117
+
118
+ ```php
119
+ $platform = $agent->platform();
120
+ ```
121
+
122
+ ### Browser name
123
+
124
+ Get the browser name. (Chrome, IE, Safari, Firefox, ...)
125
+
126
+ ```php
127
+ $browser = $agent->browser();
128
+ ```
129
+
130
+ ### Desktop detection
131
+
132
+ Check if the user is using a desktop device.
133
+
134
+ ```php
135
+ $agent->isDesktop();
136
+ ```
137
+
138
+ *This checks if a user is not a mobile device, tablet or robot.*
139
+
140
+ ### Phone detection
141
+
142
+ Check if the user is using a phone device.
143
+
144
+ ```php
145
+ $agent->isPhone();
146
+ ```
147
+
148
+ ### Robot detection
149
+
150
+ Check if the user is a robot. This uses [jaybizzle/crawler-detect](https://github.com/JayBizzle/Crawler-Detect) to do the actual robot detection.
151
+
152
+ ```php
153
+ $agent->isRobot();
154
+ ```
155
+
156
+ ### Robot name
157
+
158
+ Get the robot name.
159
+
160
+ ```php
161
+ $robot = $agent->robot();
162
+ ```
163
+
164
+ ### Browser/platform version
165
+
166
+ MobileDetect recently added a `version` method that can get the version number for components. To get the browser or platform version you can use:
167
+
168
+ ```php
169
+ $browser = $agent->browser();
170
+ $version = $agent->version($browser);
171
+
172
+ $platform = $agent->platform();
173
+ $version = $agent->version($platform);
174
+ ```
175
+
176
+ *Note, the version method is still in beta, so it might not return the correct result.*
177
+
178
+ ## License
179
+
180
+ Laravel User Agent is licensed under [The MIT License (MIT)](LICENSE).
includes/js/ai-lists.js CHANGED
@@ -27,29 +27,14 @@ jQuery (function ($) {
27
  }
28
 
29
  ai_process_lists = function (ai_list_blocks) {
30
- // var ai_debug = typeof ai_debugging !== 'undefined';
31
- // var cookies = document.cookie.split (";");
32
-
33
- // cookies.forEach (function (cookie, index) {
34
- // cookies [index] = cookie.trim();
35
- // });
36
-
37
- // console.log ('window.location.search', window.location.search);
38
-
39
- // var url_parameters = getAllUrlParams (window.location.search);
40
- // if (url_parameters ['referrer'] != null) {
41
- // var referrer = url_parameters ['referrer'];
42
- // } else {
43
- // var referrer = document.referrer;
44
- // if (referrer != '') referrer = getHostName (referrer);
45
- // }
46
-
47
  if (ai_list_blocks == null) {
48
  ai_list_blocks = $("div.ai-list-data");
49
  }
50
  if (ai_list_blocks.length) {
51
 
52
  var ai_debug = typeof ai_debugging !== 'undefined';
 
 
53
  var cookies = document.cookie.split (";");
54
 
55
  cookies.forEach (function (cookie, index) {
@@ -64,6 +49,8 @@ jQuery (function ($) {
64
  if (referrer != '') referrer = getHostName (referrer);
65
  }
66
 
 
 
67
  ai_list_blocks.each (function () {
68
 
69
  var block_wrapping_div = $(this).closest ('div.ai-list-block');
@@ -131,6 +118,40 @@ jQuery (function ($) {
131
  if (ai_debug) console.log ("AI LISTS list pass", enable_block);
132
  }
133
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
134
  if (enable_block) {
135
  var parameter_list = $(this).attr ("parameter-list");
136
  if (typeof parameter_list != "undefined") {
@@ -179,6 +200,7 @@ jQuery (function ($) {
179
  // block_wrapping_div.css ({"visibility": "", "position": "", "z-index": ""}).removeClass ('ai-list-block');
180
  block_wrapping_div.removeClass ('ai-list-block');
181
  block_wrapping_div.find ('.ai-debug-name.ai-list-info').text (referrer);
 
182
  block_wrapping_div.find ('.ai-debug-name.ai-list-status').text (enable_block ? ai_front.visible : ai_front.hidden);
183
  if (!enable_block) {
184
  $(this).hide ();
27
  }
28
 
29
  ai_process_lists = function (ai_list_blocks) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  if (ai_list_blocks == null) {
31
  ai_list_blocks = $("div.ai-list-data");
32
  }
33
  if (ai_list_blocks.length) {
34
 
35
  var ai_debug = typeof ai_debugging !== 'undefined';
36
+ // var ai_debug = false;
37
+
38
  var cookies = document.cookie.split (";");
39
 
40
  cookies.forEach (function (cookie, index) {
49
  if (referrer != '') referrer = getHostName (referrer);
50
  }
51
 
52
+ var md = new MobileDetect (window.navigator.userAgent);
53
+
54
  ai_list_blocks.each (function () {
55
 
56
  var block_wrapping_div = $(this).closest ('div.ai-list-block');
118
  if (ai_debug) console.log ("AI LISTS list pass", enable_block);
119
  }
120
 
121
+ var client_list = $(this).attr ("client-list");
122
+ if (typeof client_list != "undefined") {
123
+ var client_list_array = b64d (client_list).split (",");
124
+ var clients_list_type = $(this).attr ("client-list-type");
125
+
126
+ if (ai_debug) console.log ("AI LISTS client: ", window.navigator.userAgent);
127
+ if (ai_debug) console.log ("AI LISTS client list:", b64d (client_list), clients_list_type);
128
+
129
+
130
+
131
+ $.each (client_list_array, function (index, list_client) {
132
+ if (list_client == '') return true;
133
+
134
+ if (md.is (list_client)) {
135
+ if (ai_debug) console.log ("AI LISTS FOUND:", list_client);
136
+
137
+ found = true;
138
+ return false;
139
+ }
140
+ });
141
+
142
+ switch (clients_list_type) {
143
+ case "B":
144
+ if (found) enable_block = false;
145
+ break;
146
+ case "W":
147
+ if (!found) enable_block = false;
148
+ break;
149
+ }
150
+
151
+ if (ai_debug) console.log ("AI LISTS list found", found);
152
+ if (ai_debug) console.log ("AI LISTS list pass", enable_block);
153
+ }
154
+
155
  if (enable_block) {
156
  var parameter_list = $(this).attr ("parameter-list");
157
  if (typeof parameter_list != "undefined") {
200
  // block_wrapping_div.css ({"visibility": "", "position": "", "z-index": ""}).removeClass ('ai-list-block');
201
  block_wrapping_div.removeClass ('ai-list-block');
202
  block_wrapping_div.find ('.ai-debug-name.ai-list-info').text (referrer);
203
+ block_wrapping_div.find ('.ai-debug-name.ai-user-agent').text (window.navigator.userAgent);
204
  block_wrapping_div.find ('.ai-debug-name.ai-list-status').text (enable_block ? ai_front.visible : ai_front.hidden);
205
  if (!enable_block) {
206
  $(this).hide ();
includes/js/ai-lists.min.js CHANGED
@@ -1,11 +1,6 @@
1
- jQuery(function($){function b64e(str){return btoa(encodeURIComponent(str).replace(/%([0-9A-F]{2})/g,function toSolidBytes(match,p1){return String.fromCharCode("0x"+p1)}))}function b64d(str){return decodeURIComponent(atob(str).split("").map(function(c){return"%"+("00"+c.charCodeAt(0).toString(16)).slice(-2)}).join(""))}function getHostName(url){var match=url.match(/:\/\/(.[^/:]+)/i);if(match!=null&&match.length>1&&typeof match[1]==="string"&&match[1].length>0)return match[1];else return null}ai_process_lists=
2
- function(ai_list_blocks){if(ai_list_blocks==null)ai_list_blocks=$("div.ai-list-data");if(ai_list_blocks.length){var ai_debug=typeof ai_debugging!=="undefined";var cookies=document.cookie.split(";");cookies.forEach(function(cookie,index){cookies[index]=cookie.trim()});var url_parameters=getAllUrlParams(window.location.search);if(url_parameters["referrer"]!=null)var referrer=url_parameters["referrer"];else{var referrer=document.referrer;if(referrer!="")referrer=getHostName(referrer)}ai_list_blocks.each(function(){var block_wrapping_div=
3
- $(this).closest("div.ai-list-block");if(ai_debug)console.log("AI LISTS BLOCK",block_wrapping_div.attr("class"));var enable_block=true;var found=false;var referer_list=$(this).attr("referer-list");if(typeof referer_list!="undefined"){var referer_list_array=b64d(referer_list).split(",");var referers_list_type=$(this).attr("referer-list-type");if(ai_debug)console.log("AI LISTS referer: ",referrer);if(ai_debug)console.log("AI LISTS referer list:",b64d(referer_list),referers_list_type);$.each(referer_list_array,
4
- function(index,list_referer){if(list_referer=="")return true;if(list_referer.charAt(0)=="*")if(list_referer.charAt(list_referer.length-1)=="*"){list_referer=list_referer.substr(1,list_referer.length-2);if(referrer.indexOf(list_referer)!=-1){found=true;return false}}else{list_referer=list_referer.substr(1);if(referrer.substr(-list_referer.length)==list_referer){found=true;return false}}else if(list_referer.charAt(list_referer.length-1)=="*"){list_referer=list_referer.substr(0,list_referer.length-1);
5
- if(referrer.indexOf(list_referer)==0){found=true;return false}}else if(list_referer=="#"){if(referrer==""){found=true;return false}}else if(list_referer==referrer){found=true;return false}});switch(referers_list_type){case "B":if(found)enable_block=false;break;case "W":if(!found)enable_block=false;break}if(ai_debug)console.log("AI LISTS list found",found);if(ai_debug)console.log("AI LISTS list pass",enable_block)}if(enable_block){var parameter_list=$(this).attr("parameter-list");if(typeof parameter_list!=
6
- "undefined"){var parameter_list_array=b64d(parameter_list).split(",");var parameter_list_type=$(this).attr("parameter-list-type");if(ai_debug)console.log("");if(ai_debug)console.log("AI LISTS cookies: ",cookies);if(ai_debug)console.log("AI LISTS parameter list:",b64d(parameter_list),parameter_list_type);var found=false;$.each(parameter_list_array,function(index,list_parameter){if(list_parameter.indexOf("=")!=-1){if(cookies.indexOf(list_parameter)!=-1){found=true;return false}}else cookies.forEach(function(cookie){var cookie_data=
7
- cookie.split("=");if(list_parameter==cookie_data[0]){found=true;return false}})});switch(parameter_list_type){case "B":if(found)enable_block=false;break;case "W":if(!found)enable_block=false;break}if(ai_debug)console.log("AI LISTS list found",found);if(ai_debug)console.log("AI LISTS list pass",enable_block)}}$(this).css({"visibility":"","position":"","width":"","height":"","z-index":""}).removeClass("ai-list-data");block_wrapping_div.removeClass("ai-list-block");block_wrapping_div.find(".ai-debug-name.ai-list-info").text(referrer);
8
- block_wrapping_div.find(".ai-debug-name.ai-list-status").text(enable_block?ai_front.visible:ai_front.hidden);if(!enable_block){$(this).hide();block_wrapping_div.removeAttr("data-ai");if(block_wrapping_div.find(".ai-debug-block")){block_wrapping_div.css({"visibility":""}).removeClass("ai-close");if(block_wrapping_div.hasClass("ai-remove-position"))block_wrapping_div.css({"position":""})}else block_wrapping_div.hide()}else{block_wrapping_div.css({"visibility":""});if(block_wrapping_div.hasClass("ai-remove-position"))block_wrapping_div.css({"position":""});
9
- if(typeof $(this).data("code")!="undefined"){var block_code=b64d($(this).data("code"));$(this).append(block_code);$(this).attr("data-code","");if(ai_debug)console.log("AI INSERT CODE",$(block_code).attr("class"));if(ai_debug)console.log("")}}})}};$(document).ready(function($){setTimeout(function(){ai_process_lists()},5)})});
10
- function getAllUrlParams(url){var queryString=url?url.split("?")[1]:window.location.search.slice(1);var obj={};if(queryString){queryString=queryString.split("#")[0];var arr=queryString.split("&");for(var i=0;i<arr.length;i++){var a=arr[i].split("=");var paramNum=undefined;var paramName=a[0].replace(/\[\d*\]/,function(v){paramNum=v.slice(1,-1);return""});var paramValue=typeof a[1]==="undefined"?"":a[1];paramName=paramName.toLowerCase();paramValue=paramValue.toLowerCase();if(obj[paramName]){if(typeof obj[paramName]===
11
- "string")obj[paramName]=[obj[paramName]];if(typeof paramNum==="undefined")obj[paramName].push(paramValue);else obj[paramName][paramNum]=paramValue}else obj[paramName]=paramValue}}return obj};
1
+ jQuery(function(b){function f(b){return decodeURIComponent(atob(b).split("").map(function(b){return"%"+("00"+b.charCodeAt(0).toString(16)).slice(-2)}).join(""))}function g(b){b=b.match(/:\/\/(.[^/:]+)/i);return null!=b&&1<b.length&&"string"===typeof b[1]&&0<b[1].length?b[1]:null}ai_process_lists=function(a){null==a&&(a=b("div.ai-list-data"));if(a.length){var k=document.cookie.split(";");k.forEach(function(b,a){k[a]=b.trim()});var c=getAllUrlParams(window.location.search);if(null!=c.referrer)var h=
2
+ c.referrer;else h=document.referrer,""!=h&&(h=g(h));var l=new MobileDetect(window.navigator.userAgent);a.each(function(){var a=b(this).closest("div.ai-list-block"),c=!0,d=!1,e=b(this).attr("referer-list");if("undefined"!=typeof e){e=f(e).split(",");var g=b(this).attr("referer-list-type");b.each(e,function(b,a){if(""==a)return!0;if("*"==a.charAt(0))if("*"==a.charAt(a.length-1)){if(a=a.substr(1,a.length-2),-1!=h.indexOf(a))return d=!0,!1}else{if(a=a.substr(1),h.substr(-a.length)==a)return d=!0,!1}else if("*"==
3
+ a.charAt(a.length-1)){if(a=a.substr(0,a.length-1),0==h.indexOf(a))return d=!0,!1}else if("#"==a){if(""==h)return d=!0,!1}else if(a==h)return d=!0,!1});switch(g){case "B":d&&(c=!1);break;case "W":d||(c=!1)}}e=b(this).attr("client-list");if("undefined"!=typeof e)switch(e=f(e).split(","),g=b(this).attr("client-list-type"),b.each(e,function(a,b){if(""==b)return!0;if(l.is(b))return d=!0,!1}),g){case "B":d&&(c=!1);break;case "W":d||(c=!1)}if(c&&(e=b(this).attr("parameter-list"),"undefined"!=typeof e))switch(e=
4
+ f(e).split(","),g=b(this).attr("parameter-list-type"),d=!1,b.each(e,function(a,b){if(-1!=b.indexOf("=")){if(-1!=k.indexOf(b))return d=!0,!1}else k.forEach(function(a){a=a.split("=");if(b==a[0])return d=!0,!1})}),g){case "B":d&&(c=!1);break;case "W":d||(c=!1)}b(this).css({visibility:"",position:"",width:"",height:"","z-index":""}).removeClass("ai-list-data");a.removeClass("ai-list-block");a.find(".ai-debug-name.ai-list-info").text(h);a.find(".ai-debug-name.ai-user-agent").text(window.navigator.userAgent);
5
+ a.find(".ai-debug-name.ai-list-status").text(c?ai_front.visible:ai_front.hidden);c?(a.css({visibility:""}),a.hasClass("ai-remove-position")&&a.css({position:""}),"undefined"!=typeof b(this).data("code")&&(a=f(b(this).data("code")),b(this).append(a),b(this).attr("data-code",""))):(b(this).hide(),a.removeAttr("data-ai"),a.find(".ai-debug-block")?(a.css({visibility:""}).removeClass("ai-close"),a.hasClass("ai-remove-position")&&a.css({position:""})):a.hide())})}};b(document).ready(function(a){setTimeout(function(){ai_process_lists()},
6
+ 5)})});function getAllUrlParams(b){var f=b?b.split("?")[1]:window.location.search.slice(1);b={};if(f){f=f.split("#")[0];f=f.split("&");for(var g=0;g<f.length;g++){var a=f[g].split("="),k=void 0,c=a[0].replace(/\[\d*\]/,function(a){k=a.slice(1,-1);return""});a="undefined"===typeof a[1]?"":a[1];c=c.toLowerCase();a=a.toLowerCase();b[c]?("string"===typeof b[c]&&(b[c]=[b[c]]),"undefined"===typeof k?b[c].push(a):b[c][k]=a):b[c]=a}}return b};
 
 
 
 
 
includes/js/ai-mobile-detect.js ADDED
@@ -0,0 +1,1050 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // THIS FILE IS GENERATED - DO NOT EDIT!
2
+ /*!mobile-detect v1.4.4 2019-09-21*/
3
+ /*global module:false, define:false*/
4
+ /*jshint latedef:false*/
5
+ /*!@license Copyright 2013, Heinrich Goebl, License: MIT, see https://github.com/hgoebl/mobile-detect.js*/
6
+ (function (define, undefined) {
7
+ define(function () {
8
+ 'use strict';
9
+
10
+ var impl = {};
11
+
12
+ impl.mobileDetectRules = {
13
+ "phones": {
14
+ "iPhone": "\\biPhone\\b|\\biPod\\b",
15
+ "BlackBerry": "BlackBerry|\\bBB10\\b|rim[0-9]+|\\b(BBA100|BBB100|BBD100|BBE100|BBF100|STH100)\\b-[0-9]+",
16
+ "HTC": "HTC|HTC.*(Sensation|Evo|Vision|Explorer|6800|8100|8900|A7272|S510e|C110e|Legend|Desire|T8282)|APX515CKT|Qtek9090|APA9292KT|HD_mini|Sensation.*Z710e|PG86100|Z715e|Desire.*(A8181|HD)|ADR6200|ADR6400L|ADR6425|001HT|Inspire 4G|Android.*\\bEVO\\b|T-Mobile G1|Z520m|Android [0-9.]+; Pixel",
17
+ "Nexus": "Nexus One|Nexus S|Galaxy.*Nexus|Android.*Nexus.*Mobile|Nexus 4|Nexus 5|Nexus 6",
18
+ "Dell": "Dell[;]? (Streak|Aero|Venue|Venue Pro|Flash|Smoke|Mini 3iX)|XCD28|XCD35|\\b001DL\\b|\\b101DL\\b|\\bGS01\\b",
19
+ "Motorola": "Motorola|DROIDX|DROID BIONIC|\\bDroid\\b.*Build|Android.*Xoom|HRI39|MOT-|A1260|A1680|A555|A853|A855|A953|A955|A956|Motorola.*ELECTRIFY|Motorola.*i1|i867|i940|MB200|MB300|MB501|MB502|MB508|MB511|MB520|MB525|MB526|MB611|MB612|MB632|MB810|MB855|MB860|MB861|MB865|MB870|ME501|ME502|ME511|ME525|ME600|ME632|ME722|ME811|ME860|ME863|ME865|MT620|MT710|MT716|MT720|MT810|MT870|MT917|Motorola.*TITANIUM|WX435|WX445|XT300|XT301|XT311|XT316|XT317|XT319|XT320|XT390|XT502|XT530|XT531|XT532|XT535|XT603|XT610|XT611|XT615|XT681|XT701|XT702|XT711|XT720|XT800|XT806|XT860|XT862|XT875|XT882|XT883|XT894|XT901|XT907|XT909|XT910|XT912|XT928|XT926|XT915|XT919|XT925|XT1021|\\bMoto E\\b|XT1068|XT1092|XT1052",
20
+ "Samsung": "\\bSamsung\\b|SM-G950F|SM-G955F|SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B3730|GT-B3740|GT-B5510|GT-B5512|GT-B5722|GT-B6520|GT-B7300|GT-B7320|GT-B7330|GT-B7350|GT-B7510|GT-B7722|GT-B7800|GT-C3010|GT-C3011|GT-C3060|GT-C3200|GT-C3212|GT-C3212I|GT-C3262|GT-C3222|GT-C3300|GT-C3300K|GT-C3303|GT-C3303K|GT-C3310|GT-C3322|GT-C3330|GT-C3350|GT-C3500|GT-C3510|GT-C3530|GT-C3630|GT-C3780|GT-C5010|GT-C5212|GT-C6620|GT-C6625|GT-C6712|GT-E1050|GT-E1070|GT-E1075|GT-E1080|GT-E1081|GT-E1085|GT-E1087|GT-E1100|GT-E1107|GT-E1110|GT-E1120|GT-E1125|GT-E1130|GT-E1160|GT-E1170|GT-E1175|GT-E1180|GT-E1182|GT-E1200|GT-E1210|GT-E1225|GT-E1230|GT-E1390|GT-E2100|GT-E2120|GT-E2121|GT-E2152|GT-E2220|GT-E2222|GT-E2230|GT-E2232|GT-E2250|GT-E2370|GT-E2550|GT-E2652|GT-E3210|GT-E3213|GT-I5500|GT-I5503|GT-I5700|GT-I5800|GT-I5801|GT-I6410|GT-I6420|GT-I7110|GT-I7410|GT-I7500|GT-I8000|GT-I8150|GT-I8160|GT-I8190|GT-I8320|GT-I8330|GT-I8350|GT-I8530|GT-I8700|GT-I8703|GT-I8910|GT-I9000|GT-I9001|GT-I9003|GT-I9010|GT-I9020|GT-I9023|GT-I9070|GT-I9082|GT-I9100|GT-I9103|GT-I9220|GT-I9250|GT-I9300|GT-I9305|GT-I9500|GT-I9505|GT-M3510|GT-M5650|GT-M7500|GT-M7600|GT-M7603|GT-M8800|GT-M8910|GT-N7000|GT-S3110|GT-S3310|GT-S3350|GT-S3353|GT-S3370|GT-S3650|GT-S3653|GT-S3770|GT-S3850|GT-S5210|GT-S5220|GT-S5229|GT-S5230|GT-S5233|GT-S5250|GT-S5253|GT-S5260|GT-S5263|GT-S5270|GT-S5300|GT-S5330|GT-S5350|GT-S5360|GT-S5363|GT-S5369|GT-S5380|GT-S5380D|GT-S5560|GT-S5570|GT-S5600|GT-S5603|GT-S5610|GT-S5620|GT-S5660|GT-S5670|GT-S5690|GT-S5750|GT-S5780|GT-S5830|GT-S5839|GT-S6102|GT-S6500|GT-S7070|GT-S7200|GT-S7220|GT-S7230|GT-S7233|GT-S7250|GT-S7500|GT-S7530|GT-S7550|GT-S7562|GT-S7710|GT-S8000|GT-S8003|GT-S8500|GT-S8530|GT-S8600|SCH-A310|SCH-A530|SCH-A570|SCH-A610|SCH-A630|SCH-A650|SCH-A790|SCH-A795|SCH-A850|SCH-A870|SCH-A890|SCH-A930|SCH-A950|SCH-A970|SCH-A990|SCH-I100|SCH-I110|SCH-I400|SCH-I405|SCH-I500|SCH-I510|SCH-I515|SCH-I600|SCH-I730|SCH-I760|SCH-I770|SCH-I830|SCH-I910|SCH-I920|SCH-I959|SCH-LC11|SCH-N150|SCH-N300|SCH-R100|SCH-R300|SCH-R351|SCH-R400|SCH-R410|SCH-T300|SCH-U310|SCH-U320|SCH-U350|SCH-U360|SCH-U365|SCH-U370|SCH-U380|SCH-U410|SCH-U430|SCH-U450|SCH-U460|SCH-U470|SCH-U490|SCH-U540|SCH-U550|SCH-U620|SCH-U640|SCH-U650|SCH-U660|SCH-U700|SCH-U740|SCH-U750|SCH-U810|SCH-U820|SCH-U900|SCH-U940|SCH-U960|SCS-26UC|SGH-A107|SGH-A117|SGH-A127|SGH-A137|SGH-A157|SGH-A167|SGH-A177|SGH-A187|SGH-A197|SGH-A227|SGH-A237|SGH-A257|SGH-A437|SGH-A517|SGH-A597|SGH-A637|SGH-A657|SGH-A667|SGH-A687|SGH-A697|SGH-A707|SGH-A717|SGH-A727|SGH-A737|SGH-A747|SGH-A767|SGH-A777|SGH-A797|SGH-A817|SGH-A827|SGH-A837|SGH-A847|SGH-A867|SGH-A877|SGH-A887|SGH-A897|SGH-A927|SGH-B100|SGH-B130|SGH-B200|SGH-B220|SGH-C100|SGH-C110|SGH-C120|SGH-C130|SGH-C140|SGH-C160|SGH-C170|SGH-C180|SGH-C200|SGH-C207|SGH-C210|SGH-C225|SGH-C230|SGH-C417|SGH-C450|SGH-D307|SGH-D347|SGH-D357|SGH-D407|SGH-D415|SGH-D780|SGH-D807|SGH-D980|SGH-E105|SGH-E200|SGH-E315|SGH-E316|SGH-E317|SGH-E335|SGH-E590|SGH-E635|SGH-E715|SGH-E890|SGH-F300|SGH-F480|SGH-I200|SGH-I300|SGH-I320|SGH-I550|SGH-I577|SGH-I600|SGH-I607|SGH-I617|SGH-I627|SGH-I637|SGH-I677|SGH-I700|SGH-I717|SGH-I727|SGH-i747M|SGH-I777|SGH-I780|SGH-I827|SGH-I847|SGH-I857|SGH-I896|SGH-I897|SGH-I900|SGH-I907|SGH-I917|SGH-I927|SGH-I937|SGH-I997|SGH-J150|SGH-J200|SGH-L170|SGH-L700|SGH-M110|SGH-M150|SGH-M200|SGH-N105|SGH-N500|SGH-N600|SGH-N620|SGH-N625|SGH-N700|SGH-N710|SGH-P107|SGH-P207|SGH-P300|SGH-P310|SGH-P520|SGH-P735|SGH-P777|SGH-Q105|SGH-R210|SGH-R220|SGH-R225|SGH-S105|SGH-S307|SGH-T109|SGH-T119|SGH-T139|SGH-T209|SGH-T219|SGH-T229|SGH-T239|SGH-T249|SGH-T259|SGH-T309|SGH-T319|SGH-T329|SGH-T339|SGH-T349|SGH-T359|SGH-T369|SGH-T379|SGH-T409|SGH-T429|SGH-T439|SGH-T459|SGH-T469|SGH-T479|SGH-T499|SGH-T509|SGH-T519|SGH-T539|SGH-T559|SGH-T589|SGH-T609|SGH-T619|SGH-T629|SGH-T639|SGH-T659|SGH-T669|SGH-T679|SGH-T709|SGH-T719|SGH-T729|SGH-T739|SGH-T746|SGH-T749|SGH-T759|SGH-T769|SGH-T809|SGH-T819|SGH-T839|SGH-T919|SGH-T929|SGH-T939|SGH-T959|SGH-T989|SGH-U100|SGH-U200|SGH-U800|SGH-V205|SGH-V206|SGH-X100|SGH-X105|SGH-X120|SGH-X140|SGH-X426|SGH-X427|SGH-X475|SGH-X495|SGH-X497|SGH-X507|SGH-X600|SGH-X610|SGH-X620|SGH-X630|SGH-X700|SGH-X820|SGH-X890|SGH-Z130|SGH-Z150|SGH-Z170|SGH-ZX10|SGH-ZX20|SHW-M110|SPH-A120|SPH-A400|SPH-A420|SPH-A460|SPH-A500|SPH-A560|SPH-A600|SPH-A620|SPH-A660|SPH-A700|SPH-A740|SPH-A760|SPH-A790|SPH-A800|SPH-A820|SPH-A840|SPH-A880|SPH-A900|SPH-A940|SPH-A960|SPH-D600|SPH-D700|SPH-D710|SPH-D720|SPH-I300|SPH-I325|SPH-I330|SPH-I350|SPH-I500|SPH-I600|SPH-I700|SPH-L700|SPH-M100|SPH-M220|SPH-M240|SPH-M300|SPH-M305|SPH-M320|SPH-M330|SPH-M350|SPH-M360|SPH-M370|SPH-M380|SPH-M510|SPH-M540|SPH-M550|SPH-M560|SPH-M570|SPH-M580|SPH-M610|SPH-M620|SPH-M630|SPH-M800|SPH-M810|SPH-M850|SPH-M900|SPH-M910|SPH-M920|SPH-M930|SPH-N100|SPH-N200|SPH-N240|SPH-N300|SPH-N400|SPH-Z400|SWC-E100|SCH-i909|GT-N7100|GT-N7105|SCH-I535|SM-N900A|SGH-I317|SGH-T999L|GT-S5360B|GT-I8262|GT-S6802|GT-S6312|GT-S6310|GT-S5312|GT-S5310|GT-I9105|GT-I8510|GT-S6790N|SM-G7105|SM-N9005|GT-S5301|GT-I9295|GT-I9195|SM-C101|GT-S7392|GT-S7560|GT-B7610|GT-I5510|GT-S7582|GT-S7530E|GT-I8750|SM-G9006V|SM-G9008V|SM-G9009D|SM-G900A|SM-G900D|SM-G900F|SM-G900H|SM-G900I|SM-G900J|SM-G900K|SM-G900L|SM-G900M|SM-G900P|SM-G900R4|SM-G900S|SM-G900T|SM-G900V|SM-G900W8|SHV-E160K|SCH-P709|SCH-P729|SM-T2558|GT-I9205|SM-G9350|SM-J120F|SM-G920F|SM-G920V|SM-G930F|SM-N910C|SM-A310F|GT-I9190|SM-J500FN|SM-G903F|SM-J330F",
21
+ "LG": "\\bLG\\b;|LG[- ]?(C800|C900|E400|E610|E900|E-900|F160|F180K|F180L|F180S|730|855|L160|LS740|LS840|LS970|LU6200|MS690|MS695|MS770|MS840|MS870|MS910|P500|P700|P705|VM696|AS680|AS695|AX840|C729|E970|GS505|272|C395|E739BK|E960|L55C|L75C|LS696|LS860|P769BK|P350|P500|P509|P870|UN272|US730|VS840|VS950|LN272|LN510|LS670|LS855|LW690|MN270|MN510|P509|P769|P930|UN200|UN270|UN510|UN610|US670|US740|US760|UX265|UX840|VN271|VN530|VS660|VS700|VS740|VS750|VS910|VS920|VS930|VX9200|VX11000|AX840A|LW770|P506|P925|P999|E612|D955|D802|MS323|M257)|LM-G710",
22
+ "Sony": "SonyST|SonyLT|SonyEricsson|SonyEricssonLT15iv|LT18i|E10i|LT28h|LT26w|SonyEricssonMT27i|C5303|C6902|C6903|C6906|C6943|D2533",
23
+ "Asus": "Asus.*Galaxy|PadFone.*Mobile",
24
+ "NokiaLumia": "Lumia [0-9]{3,4}",
25
+ "Micromax": "Micromax.*\\b(A210|A92|A88|A72|A111|A110Q|A115|A116|A110|A90S|A26|A51|A35|A54|A25|A27|A89|A68|A65|A57|A90)\\b",
26
+ "Palm": "PalmSource|Palm",
27
+ "Vertu": "Vertu|Vertu.*Ltd|Vertu.*Ascent|Vertu.*Ayxta|Vertu.*Constellation(F|Quest)?|Vertu.*Monika|Vertu.*Signature",
28
+ "Pantech": "PANTECH|IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|IM-A725L|IM-A780L|IM-A775C|IM-A770K|IM-A760S|IM-A750K|IM-A740S|IM-A730S|IM-A720L|IM-A710K|IM-A690L|IM-A690S|IM-A650S|IM-A630K|IM-A600S|VEGA PTL21|PT003|P8010|ADR910L|P6030|P6020|P9070|P4100|P9060|P5000|CDM8992|TXT8045|ADR8995|IS11PT|P2030|P6010|P8000|PT002|IS06|CDM8999|P9050|PT001|TXT8040|P2020|P9020|P2000|P7040|P7000|C790",
29
+ "Fly": "IQ230|IQ444|IQ450|IQ440|IQ442|IQ441|IQ245|IQ256|IQ236|IQ255|IQ235|IQ245|IQ275|IQ240|IQ285|IQ280|IQ270|IQ260|IQ250",
30
+ "Wiko": "KITE 4G|HIGHWAY|GETAWAY|STAIRWAY|DARKSIDE|DARKFULL|DARKNIGHT|DARKMOON|SLIDE|WAX 4G|RAINBOW|BLOOM|SUNSET|GOA(?!nna)|LENNY|BARRY|IGGY|OZZY|CINK FIVE|CINK PEAX|CINK PEAX 2|CINK SLIM|CINK SLIM 2|CINK +|CINK KING|CINK PEAX|CINK SLIM|SUBLIM",
31
+ "iMobile": "i-mobile (IQ|i-STYLE|idea|ZAA|Hitz)",
32
+ "SimValley": "\\b(SP-80|XT-930|SX-340|XT-930|SX-310|SP-360|SP60|SPT-800|SP-120|SPT-800|SP-140|SPX-5|SPX-8|SP-100|SPX-8|SPX-12)\\b",
33
+ "Wolfgang": "AT-B24D|AT-AS50HD|AT-AS40W|AT-AS55HD|AT-AS45q2|AT-B26D|AT-AS50Q",
34
+ "Alcatel": "Alcatel",
35
+ "Nintendo": "Nintendo (3DS|Switch)",
36
+ "Amoi": "Amoi",
37
+ "INQ": "INQ",
38
+ "OnePlus": "ONEPLUS",
39
+ "GenericPhone": "Tapatalk|PDA;|SAGEM|\\bmmp\\b|pocket|\\bpsp\\b|symbian|Smartphone|smartfon|treo|up.browser|up.link|vodafone|\\bwap\\b|nokia|Series40|Series60|S60|SonyEricsson|N900|MAUI.*WAP.*Browser"
40
+ },
41
+ "tablets": {
42
+ "iPad": "iPad|iPad.*Mobile",
43
+ "NexusTablet": "Android.*Nexus[\\s]+(7|9|10)",
44
+ "GoogleTablet": "Android.*Pixel C",
45
+ "SamsungTablet": "SAMSUNG.*Tablet|Galaxy.*Tab|SC-01C|GT-P1000|GT-P1003|GT-P1010|GT-P3105|GT-P6210|GT-P6800|GT-P6810|GT-P7100|GT-P7300|GT-P7310|GT-P7500|GT-P7510|SCH-I800|SCH-I815|SCH-I905|SGH-I957|SGH-I987|SGH-T849|SGH-T859|SGH-T869|SPH-P100|GT-P3100|GT-P3108|GT-P3110|GT-P5100|GT-P5110|GT-P6200|GT-P7320|GT-P7511|GT-N8000|GT-P8510|SGH-I497|SPH-P500|SGH-T779|SCH-I705|SCH-I915|GT-N8013|GT-P3113|GT-P5113|GT-P8110|GT-N8010|GT-N8005|GT-N8020|GT-P1013|GT-P6201|GT-P7501|GT-N5100|GT-N5105|GT-N5110|SHV-E140K|SHV-E140L|SHV-E140S|SHV-E150S|SHV-E230K|SHV-E230L|SHV-E230S|SHW-M180K|SHW-M180L|SHW-M180S|SHW-M180W|SHW-M300W|SHW-M305W|SHW-M380K|SHW-M380S|SHW-M380W|SHW-M430W|SHW-M480K|SHW-M480S|SHW-M480W|SHW-M485W|SHW-M486W|SHW-M500W|GT-I9228|SCH-P739|SCH-I925|GT-I9200|GT-P5200|GT-P5210|GT-P5210X|SM-T311|SM-T310|SM-T310X|SM-T210|SM-T210R|SM-T211|SM-P600|SM-P601|SM-P605|SM-P900|SM-P901|SM-T217|SM-T217A|SM-T217S|SM-P6000|SM-T3100|SGH-I467|XE500|SM-T110|GT-P5220|GT-I9200X|GT-N5110X|GT-N5120|SM-P905|SM-T111|SM-T2105|SM-T315|SM-T320|SM-T320X|SM-T321|SM-T520|SM-T525|SM-T530NU|SM-T230NU|SM-T330NU|SM-T900|XE500T1C|SM-P605V|SM-P905V|SM-T337V|SM-T537V|SM-T707V|SM-T807V|SM-P600X|SM-P900X|SM-T210X|SM-T230|SM-T230X|SM-T325|GT-P7503|SM-T531|SM-T330|SM-T530|SM-T705|SM-T705C|SM-T535|SM-T331|SM-T800|SM-T700|SM-T537|SM-T807|SM-P907A|SM-T337A|SM-T537A|SM-T707A|SM-T807A|SM-T237|SM-T807P|SM-P607T|SM-T217T|SM-T337T|SM-T807T|SM-T116NQ|SM-T116BU|SM-P550|SM-T350|SM-T550|SM-T9000|SM-P9000|SM-T705Y|SM-T805|GT-P3113|SM-T710|SM-T810|SM-T815|SM-T360|SM-T533|SM-T113|SM-T335|SM-T715|SM-T560|SM-T670|SM-T677|SM-T377|SM-T567|SM-T357T|SM-T555|SM-T561|SM-T713|SM-T719|SM-T813|SM-T819|SM-T580|SM-T355Y?|SM-T280|SM-T817A|SM-T820|SM-W700|SM-P580|SM-T587|SM-P350|SM-P555M|SM-P355M|SM-T113NU|SM-T815Y|SM-T585|SM-T285|SM-T825|SM-W708|SM-T835|SM-T830|SM-T837V|SM-T720|SM-T510|SM-T387V",
46
+ "Kindle": "Kindle|Silk.*Accelerated|Android.*\\b(KFOT|KFTT|KFJWI|KFJWA|KFOTE|KFSOWI|KFTHWI|KFTHWA|KFAPWI|KFAPWA|WFJWAE|KFSAWA|KFSAWI|KFASWI|KFARWI|KFFOWI|KFGIWI|KFMEWI)\\b|Android.*Silk\/[0-9.]+ like Chrome\/[0-9.]+ (?!Mobile)",
47
+ "SurfaceTablet": "Windows NT [0-9.]+; ARM;.*(Tablet|ARMBJS)",
48
+ "HPTablet": "HP Slate (7|8|10)|HP ElitePad 900|hp-tablet|EliteBook.*Touch|HP 8|Slate 21|HP SlateBook 10",
49
+ "AsusTablet": "^.*PadFone((?!Mobile).)*$|Transformer|TF101|TF101G|TF300T|TF300TG|TF300TL|TF700T|TF700KL|TF701T|TF810C|ME171|ME301T|ME302C|ME371MG|ME370T|ME372MG|ME172V|ME173X|ME400C|Slider SL101|\\bK00F\\b|\\bK00C\\b|\\bK00E\\b|\\bK00L\\b|TX201LA|ME176C|ME102A|\\bM80TA\\b|ME372CL|ME560CG|ME372CG|ME302KL| K010 | K011 | K017 | K01E |ME572C|ME103K|ME170C|ME171C|\\bME70C\\b|ME581C|ME581CL|ME8510C|ME181C|P01Y|PO1MA|P01Z|\\bP027\\b|\\bP024\\b|\\bP00C\\b",
50
+ "BlackBerryTablet": "PlayBook|RIM Tablet",
51
+ "HTCtablet": "HTC_Flyer_P512|HTC Flyer|HTC Jetstream|HTC-P715a|HTC EVO View 4G|PG41200|PG09410",
52
+ "MotorolaTablet": "xoom|sholest|MZ615|MZ605|MZ505|MZ601|MZ602|MZ603|MZ604|MZ606|MZ607|MZ608|MZ609|MZ615|MZ616|MZ617",
53
+ "NookTablet": "Android.*Nook|NookColor|nook browser|BNRV200|BNRV200A|BNTV250|BNTV250A|BNTV400|BNTV600|LogicPD Zoom2",
54
+ "AcerTablet": "Android.*; \\b(A100|A101|A110|A200|A210|A211|A500|A501|A510|A511|A700|A701|W500|W500P|W501|W501P|W510|W511|W700|G100|G100W|B1-A71|B1-710|B1-711|A1-810|A1-811|A1-830)\\b|W3-810|\\bA3-A10\\b|\\bA3-A11\\b|\\bA3-A20\\b|\\bA3-A30",
55
+ "ToshibaTablet": "Android.*(AT100|AT105|AT200|AT205|AT270|AT275|AT300|AT305|AT1S5|AT500|AT570|AT700|AT830)|TOSHIBA.*FOLIO",
56
+ "LGTablet": "\\bL-06C|LG-V909|LG-V900|LG-V700|LG-V510|LG-V500|LG-V410|LG-V400|LG-VK810\\b",
57
+ "FujitsuTablet": "Android.*\\b(F-01D|F-02F|F-05E|F-10D|M532|Q572)\\b",
58
+ "PrestigioTablet": "PMP3170B|PMP3270B|PMP3470B|PMP7170B|PMP3370B|PMP3570C|PMP5870C|PMP3670B|PMP5570C|PMP5770D|PMP3970B|PMP3870C|PMP5580C|PMP5880D|PMP5780D|PMP5588C|PMP7280C|PMP7280C3G|PMP7280|PMP7880D|PMP5597D|PMP5597|PMP7100D|PER3464|PER3274|PER3574|PER3884|PER5274|PER5474|PMP5097CPRO|PMP5097|PMP7380D|PMP5297C|PMP5297C_QUAD|PMP812E|PMP812E3G|PMP812F|PMP810E|PMP880TD|PMT3017|PMT3037|PMT3047|PMT3057|PMT7008|PMT5887|PMT5001|PMT5002",
59
+ "LenovoTablet": "Lenovo TAB|Idea(Tab|Pad)( A1|A10| K1|)|ThinkPad([ ]+)?Tablet|YT3-850M|YT3-X90L|YT3-X90F|YT3-X90X|Lenovo.*(S2109|S2110|S5000|S6000|K3011|A3000|A3500|A1000|A2107|A2109|A1107|A5500|A7600|B6000|B8000|B8080)(-|)(FL|F|HV|H|)|TB-X103F|TB-X304X|TB-X304F|TB-X304L|TB-X505F|TB-X505L|TB-X505X|TB-X605F|TB-X605L|TB-8703F|TB-8703X|TB-8703N|TB-8704N|TB-8704F|TB-8704X|TB-8704V|TB-7304F|TB-7304I|TB-7304X|Tab2A7-10F|Tab2A7-20F|TB2-X30L|YT3-X50L|YT3-X50F|YT3-X50M|YT-X705F|YT-X703F|YT-X703L|YT-X705L|YT-X705X|TB2-X30F|TB2-X30L|TB2-X30M|A2107A-F|A2107A-H|TB3-730F|TB3-730M|TB3-730X|TB-7504F|TB-7504X",
60
+ "DellTablet": "Venue 11|Venue 8|Venue 7|Dell Streak 10|Dell Streak 7",
61
+ "YarvikTablet": "Android.*\\b(TAB210|TAB211|TAB224|TAB250|TAB260|TAB264|TAB310|TAB360|TAB364|TAB410|TAB411|TAB420|TAB424|TAB450|TAB460|TAB461|TAB464|TAB465|TAB467|TAB468|TAB07-100|TAB07-101|TAB07-150|TAB07-151|TAB07-152|TAB07-200|TAB07-201-3G|TAB07-210|TAB07-211|TAB07-212|TAB07-214|TAB07-220|TAB07-400|TAB07-485|TAB08-150|TAB08-200|TAB08-201-3G|TAB08-201-30|TAB09-100|TAB09-211|TAB09-410|TAB10-150|TAB10-201|TAB10-211|TAB10-400|TAB10-410|TAB13-201|TAB274EUK|TAB275EUK|TAB374EUK|TAB462EUK|TAB474EUK|TAB9-200)\\b",
62
+ "MedionTablet": "Android.*\\bOYO\\b|LIFE.*(P9212|P9514|P9516|S9512)|LIFETAB",
63
+ "ArnovaTablet": "97G4|AN10G2|AN7bG3|AN7fG3|AN8G3|AN8cG3|AN7G3|AN9G3|AN7dG3|AN7dG3ST|AN7dG3ChildPad|AN10bG3|AN10bG3DT|AN9G2",
64
+ "IntensoTablet": "INM8002KP|INM1010FP|INM805ND|Intenso Tab|TAB1004",
65
+ "IRUTablet": "M702pro",
66
+ "MegafonTablet": "MegaFon V9|\\bZTE V9\\b|Android.*\\bMT7A\\b",
67
+ "EbodaTablet": "E-Boda (Supreme|Impresspeed|Izzycomm|Essential)",
68
+ "AllViewTablet": "Allview.*(Viva|Alldro|City|Speed|All TV|Frenzy|Quasar|Shine|TX1|AX1|AX2)",
69
+ "ArchosTablet": "\\b(101G9|80G9|A101IT)\\b|Qilive 97R|Archos5|\\bARCHOS (70|79|80|90|97|101|FAMILYPAD|)(b|c|)(G10| Cobalt| TITANIUM(HD|)| Xenon| Neon|XSK| 2| XS 2| PLATINUM| CARBON|GAMEPAD)\\b",
70
+ "AinolTablet": "NOVO7|NOVO8|NOVO10|Novo7Aurora|Novo7Basic|NOVO7PALADIN|novo9-Spark",
71
+ "NokiaLumiaTablet": "Lumia 2520",
72
+ "SonyTablet": "Sony.*Tablet|Xperia Tablet|Sony Tablet S|SO-03E|SGPT12|SGPT13|SGPT114|SGPT121|SGPT122|SGPT123|SGPT111|SGPT112|SGPT113|SGPT131|SGPT132|SGPT133|SGPT211|SGPT212|SGPT213|SGP311|SGP312|SGP321|EBRD1101|EBRD1102|EBRD1201|SGP351|SGP341|SGP511|SGP512|SGP521|SGP541|SGP551|SGP621|SGP641|SGP612|SOT31|SGP771|SGP611|SGP612|SGP712",
73
+ "PhilipsTablet": "\\b(PI2010|PI3000|PI3100|PI3105|PI3110|PI3205|PI3210|PI3900|PI4010|PI7000|PI7100)\\b",
74
+ "CubeTablet": "Android.*(K8GT|U9GT|U10GT|U16GT|U17GT|U18GT|U19GT|U20GT|U23GT|U30GT)|CUBE U8GT",
75
+ "CobyTablet": "MID1042|MID1045|MID1125|MID1126|MID7012|MID7014|MID7015|MID7034|MID7035|MID7036|MID7042|MID7048|MID7127|MID8042|MID8048|MID8127|MID9042|MID9740|MID9742|MID7022|MID7010",
76
+ "MIDTablet": "M9701|M9000|M9100|M806|M1052|M806|T703|MID701|MID713|MID710|MID727|MID760|MID830|MID728|MID933|MID125|MID810|MID732|MID120|MID930|MID800|MID731|MID900|MID100|MID820|MID735|MID980|MID130|MID833|MID737|MID960|MID135|MID860|MID736|MID140|MID930|MID835|MID733|MID4X10",
77
+ "MSITablet": "MSI \\b(Primo 73K|Primo 73L|Primo 81L|Primo 77|Primo 93|Primo 75|Primo 76|Primo 73|Primo 81|Primo 91|Primo 90|Enjoy 71|Enjoy 7|Enjoy 10)\\b",
78
+ "SMiTTablet": "Android.*(\\bMID\\b|MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)",
79
+ "RockChipTablet": "Android.*(RK2818|RK2808A|RK2918|RK3066)|RK2738|RK2808A",
80
+ "FlyTablet": "IQ310|Fly Vision",
81
+ "bqTablet": "Android.*(bq)?.*\\b(Elcano|Curie|Edison|Maxwell|Kepler|Pascal|Tesla|Hypatia|Platon|Newton|Livingstone|Cervantes|Avant|Aquaris ([E|M]10|M8))\\b|Maxwell.*Lite|Maxwell.*Plus",
82
+ "HuaweiTablet": "MediaPad|MediaPad 7 Youth|IDEOS S7|S7-201c|S7-202u|S7-101|S7-103|S7-104|S7-105|S7-106|S7-201|S7-Slim|M2-A01L|BAH-L09|BAH-W09|AGS-L09|CMR-AL19",
83
+ "NecTablet": "\\bN-06D|\\bN-08D",
84
+ "PantechTablet": "Pantech.*P4100",
85
+ "BronchoTablet": "Broncho.*(N701|N708|N802|a710)",
86
+ "VersusTablet": "TOUCHPAD.*[78910]|\\bTOUCHTAB\\b",
87
+ "ZyncTablet": "z1000|Z99 2G|z930|z990|z909|Z919|z900",
88
+ "PositivoTablet": "TB07STA|TB10STA|TB07FTA|TB10FTA",
89
+ "NabiTablet": "Android.*\\bNabi",
90
+ "KoboTablet": "Kobo Touch|\\bK080\\b|\\bVox\\b Build|\\bArc\\b Build",
91
+ "DanewTablet": "DSlide.*\\b(700|701R|702|703R|704|802|970|971|972|973|974|1010|1012)\\b",
92
+ "TexetTablet": "NaviPad|TB-772A|TM-7045|TM-7055|TM-9750|TM-7016|TM-7024|TM-7026|TM-7041|TM-7043|TM-7047|TM-8041|TM-9741|TM-9747|TM-9748|TM-9751|TM-7022|TM-7021|TM-7020|TM-7011|TM-7010|TM-7023|TM-7025|TM-7037W|TM-7038W|TM-7027W|TM-9720|TM-9725|TM-9737W|TM-1020|TM-9738W|TM-9740|TM-9743W|TB-807A|TB-771A|TB-727A|TB-725A|TB-719A|TB-823A|TB-805A|TB-723A|TB-715A|TB-707A|TB-705A|TB-709A|TB-711A|TB-890HD|TB-880HD|TB-790HD|TB-780HD|TB-770HD|TB-721HD|TB-710HD|TB-434HD|TB-860HD|TB-840HD|TB-760HD|TB-750HD|TB-740HD|TB-730HD|TB-722HD|TB-720HD|TB-700HD|TB-500HD|TB-470HD|TB-431HD|TB-430HD|TB-506|TB-504|TB-446|TB-436|TB-416|TB-146SE|TB-126SE",
93
+ "PlaystationTablet": "Playstation.*(Portable|Vita)",
94
+ "TrekstorTablet": "ST10416-1|VT10416-1|ST70408-1|ST702xx-1|ST702xx-2|ST80208|ST97216|ST70104-2|VT10416-2|ST10216-2A|SurfTab",
95
+ "PyleAudioTablet": "\\b(PTBL10CEU|PTBL10C|PTBL72BC|PTBL72BCEU|PTBL7CEU|PTBL7C|PTBL92BC|PTBL92BCEU|PTBL9CEU|PTBL9CUK|PTBL9C)\\b",
96
+ "AdvanTablet": "Android.* \\b(E3A|T3X|T5C|T5B|T3E|T3C|T3B|T1J|T1F|T2A|T1H|T1i|E1C|T1-E|T5-A|T4|E1-B|T2Ci|T1-B|T1-D|O1-A|E1-A|T1-A|T3A|T4i)\\b ",
97
+ "DanyTechTablet": "Genius Tab G3|Genius Tab S2|Genius Tab Q3|Genius Tab G4|Genius Tab Q4|Genius Tab G-II|Genius TAB GII|Genius TAB GIII|Genius Tab S1",
98
+ "GalapadTablet": "Android.*\\bG1\\b(?!\\))",
99
+ "MicromaxTablet": "Funbook|Micromax.*\\b(P250|P560|P360|P362|P600|P300|P350|P500|P275)\\b",
100
+ "KarbonnTablet": "Android.*\\b(A39|A37|A34|ST8|ST10|ST7|Smart Tab3|Smart Tab2)\\b",
101
+ "AllFineTablet": "Fine7 Genius|Fine7 Shine|Fine7 Air|Fine8 Style|Fine9 More|Fine10 Joy|Fine11 Wide",
102
+ "PROSCANTablet": "\\b(PEM63|PLT1023G|PLT1041|PLT1044|PLT1044G|PLT1091|PLT4311|PLT4311PL|PLT4315|PLT7030|PLT7033|PLT7033D|PLT7035|PLT7035D|PLT7044K|PLT7045K|PLT7045KB|PLT7071KG|PLT7072|PLT7223G|PLT7225G|PLT7777G|PLT7810K|PLT7849G|PLT7851G|PLT7852G|PLT8015|PLT8031|PLT8034|PLT8036|PLT8080K|PLT8082|PLT8088|PLT8223G|PLT8234G|PLT8235G|PLT8816K|PLT9011|PLT9045K|PLT9233G|PLT9735|PLT9760G|PLT9770G)\\b",
103
+ "YONESTablet": "BQ1078|BC1003|BC1077|RK9702|BC9730|BC9001|IT9001|BC7008|BC7010|BC708|BC728|BC7012|BC7030|BC7027|BC7026",
104
+ "ChangJiaTablet": "TPC7102|TPC7103|TPC7105|TPC7106|TPC7107|TPC7201|TPC7203|TPC7205|TPC7210|TPC7708|TPC7709|TPC7712|TPC7110|TPC8101|TPC8103|TPC8105|TPC8106|TPC8203|TPC8205|TPC8503|TPC9106|TPC9701|TPC97101|TPC97103|TPC97105|TPC97106|TPC97111|TPC97113|TPC97203|TPC97603|TPC97809|TPC97205|TPC10101|TPC10103|TPC10106|TPC10111|TPC10203|TPC10205|TPC10503",
105
+ "GUTablet": "TX-A1301|TX-M9002|Q702|kf026",
106
+ "PointOfViewTablet": "TAB-P506|TAB-navi-7-3G-M|TAB-P517|TAB-P-527|TAB-P701|TAB-P703|TAB-P721|TAB-P731N|TAB-P741|TAB-P825|TAB-P905|TAB-P925|TAB-PR945|TAB-PL1015|TAB-P1025|TAB-PI1045|TAB-P1325|TAB-PROTAB[0-9]+|TAB-PROTAB25|TAB-PROTAB26|TAB-PROTAB27|TAB-PROTAB26XL|TAB-PROTAB2-IPS9|TAB-PROTAB30-IPS9|TAB-PROTAB25XXL|TAB-PROTAB26-IPS10|TAB-PROTAB30-IPS10",
107
+ "OvermaxTablet": "OV-(SteelCore|NewBase|Basecore|Baseone|Exellen|Quattor|EduTab|Solution|ACTION|BasicTab|TeddyTab|MagicTab|Stream|TB-08|TB-09)|Qualcore 1027",
108
+ "HCLTablet": "HCL.*Tablet|Connect-3G-2.0|Connect-2G-2.0|ME Tablet U1|ME Tablet U2|ME Tablet G1|ME Tablet X1|ME Tablet Y2|ME Tablet Sync",
109
+ "DPSTablet": "DPS Dream 9|DPS Dual 7",
110
+ "VistureTablet": "V97 HD|i75 3G|Visture V4( HD)?|Visture V5( HD)?|Visture V10",
111
+ "CrestaTablet": "CTP(-)?810|CTP(-)?818|CTP(-)?828|CTP(-)?838|CTP(-)?888|CTP(-)?978|CTP(-)?980|CTP(-)?987|CTP(-)?988|CTP(-)?989",
112
+ "MediatekTablet": "\\bMT8125|MT8389|MT8135|MT8377\\b",
113
+ "ConcordeTablet": "Concorde([ ]+)?Tab|ConCorde ReadMan",
114
+ "GoCleverTablet": "GOCLEVER TAB|A7GOCLEVER|M1042|M7841|M742|R1042BK|R1041|TAB A975|TAB A7842|TAB A741|TAB A741L|TAB M723G|TAB M721|TAB A1021|TAB I921|TAB R721|TAB I720|TAB T76|TAB R70|TAB R76.2|TAB R106|TAB R83.2|TAB M813G|TAB I721|GCTA722|TAB I70|TAB I71|TAB S73|TAB R73|TAB R74|TAB R93|TAB R75|TAB R76.1|TAB A73|TAB A93|TAB A93.2|TAB T72|TAB R83|TAB R974|TAB R973|TAB A101|TAB A103|TAB A104|TAB A104.2|R105BK|M713G|A972BK|TAB A971|TAB R974.2|TAB R104|TAB R83.3|TAB A1042",
115
+ "ModecomTablet": "FreeTAB 9000|FreeTAB 7.4|FreeTAB 7004|FreeTAB 7800|FreeTAB 2096|FreeTAB 7.5|FreeTAB 1014|FreeTAB 1001 |FreeTAB 8001|FreeTAB 9706|FreeTAB 9702|FreeTAB 7003|FreeTAB 7002|FreeTAB 1002|FreeTAB 7801|FreeTAB 1331|FreeTAB 1004|FreeTAB 8002|FreeTAB 8014|FreeTAB 9704|FreeTAB 1003",
116
+ "VoninoTablet": "\\b(Argus[ _]?S|Diamond[ _]?79HD|Emerald[ _]?78E|Luna[ _]?70C|Onyx[ _]?S|Onyx[ _]?Z|Orin[ _]?HD|Orin[ _]?S|Otis[ _]?S|SpeedStar[ _]?S|Magnet[ _]?M9|Primus[ _]?94[ _]?3G|Primus[ _]?94HD|Primus[ _]?QS|Android.*\\bQ8\\b|Sirius[ _]?EVO[ _]?QS|Sirius[ _]?QS|Spirit[ _]?S)\\b",
117
+ "ECSTablet": "V07OT2|TM105A|S10OT1|TR10CS1",
118
+ "StorexTablet": "eZee[_']?(Tab|Go)[0-9]+|TabLC7|Looney Tunes Tab",
119
+ "VodafoneTablet": "SmartTab([ ]+)?[0-9]+|SmartTabII10|SmartTabII7|VF-1497|VFD 1400",
120
+ "EssentielBTablet": "Smart[ ']?TAB[ ]+?[0-9]+|Family[ ']?TAB2",
121
+ "RossMoorTablet": "RM-790|RM-997|RMD-878G|RMD-974R|RMT-705A|RMT-701|RME-601|RMT-501|RMT-711",
122
+ "iMobileTablet": "i-mobile i-note",
123
+ "TolinoTablet": "tolino tab [0-9.]+|tolino shine",
124
+ "AudioSonicTablet": "\\bC-22Q|T7-QC|T-17B|T-17P\\b",
125
+ "AMPETablet": "Android.* A78 ",
126
+ "SkkTablet": "Android.* (SKYPAD|PHOENIX|CYCLOPS)",
127
+ "TecnoTablet": "TECNO P9|TECNO DP8D",
128
+ "JXDTablet": "Android.* \\b(F3000|A3300|JXD5000|JXD3000|JXD2000|JXD300B|JXD300|S5800|S7800|S602b|S5110b|S7300|S5300|S602|S603|S5100|S5110|S601|S7100a|P3000F|P3000s|P101|P200s|P1000m|P200m|P9100|P1000s|S6600b|S908|P1000|P300|S18|S6600|S9100)\\b",
129
+ "iJoyTablet": "Tablet (Spirit 7|Essentia|Galatea|Fusion|Onix 7|Landa|Titan|Scooby|Deox|Stella|Themis|Argon|Unique 7|Sygnus|Hexen|Finity 7|Cream|Cream X2|Jade|Neon 7|Neron 7|Kandy|Scape|Saphyr 7|Rebel|Biox|Rebel|Rebel 8GB|Myst|Draco 7|Myst|Tab7-004|Myst|Tadeo Jones|Tablet Boing|Arrow|Draco Dual Cam|Aurix|Mint|Amity|Revolution|Finity 9|Neon 9|T9w|Amity 4GB Dual Cam|Stone 4GB|Stone 8GB|Andromeda|Silken|X2|Andromeda II|Halley|Flame|Saphyr 9,7|Touch 8|Planet|Triton|Unique 10|Hexen 10|Memphis 4GB|Memphis 8GB|Onix 10)",
130
+ "FX2Tablet": "FX2 PAD7|FX2 PAD10",
131
+ "XoroTablet": "KidsPAD 701|PAD[ ]?712|PAD[ ]?714|PAD[ ]?716|PAD[ ]?717|PAD[ ]?718|PAD[ ]?720|PAD[ ]?721|PAD[ ]?722|PAD[ ]?790|PAD[ ]?792|PAD[ ]?900|PAD[ ]?9715D|PAD[ ]?9716DR|PAD[ ]?9718DR|PAD[ ]?9719QR|PAD[ ]?9720QR|TelePAD1030|Telepad1032|TelePAD730|TelePAD731|TelePAD732|TelePAD735Q|TelePAD830|TelePAD9730|TelePAD795|MegaPAD 1331|MegaPAD 1851|MegaPAD 2151",
132
+ "ViewsonicTablet": "ViewPad 10pi|ViewPad 10e|ViewPad 10s|ViewPad E72|ViewPad7|ViewPad E100|ViewPad 7e|ViewSonic VB733|VB100a",
133
+ "VerizonTablet": "QTAQZ3|QTAIR7|QTAQTZ3|QTASUN1|QTASUN2|QTAXIA1",
134
+ "OdysTablet": "LOOX|XENO10|ODYS[ -](Space|EVO|Xpress|NOON)|\\bXELIO\\b|Xelio10Pro|XELIO7PHONETAB|XELIO10EXTREME|XELIOPT2|NEO_QUAD10",
135
+ "CaptivaTablet": "CAPTIVA PAD",
136
+ "IconbitTablet": "NetTAB|NT-3702|NT-3702S|NT-3702S|NT-3603P|NT-3603P|NT-0704S|NT-0704S|NT-3805C|NT-3805C|NT-0806C|NT-0806C|NT-0909T|NT-0909T|NT-0907S|NT-0907S|NT-0902S|NT-0902S",
137
+ "TeclastTablet": "T98 4G|\\bP80\\b|\\bX90HD\\b|X98 Air|X98 Air 3G|\\bX89\\b|P80 3G|\\bX80h\\b|P98 Air|\\bX89HD\\b|P98 3G|\\bP90HD\\b|P89 3G|X98 3G|\\bP70h\\b|P79HD 3G|G18d 3G|\\bP79HD\\b|\\bP89s\\b|\\bA88\\b|\\bP10HD\\b|\\bP19HD\\b|G18 3G|\\bP78HD\\b|\\bA78\\b|\\bP75\\b|G17s 3G|G17h 3G|\\bP85t\\b|\\bP90\\b|\\bP11\\b|\\bP98t\\b|\\bP98HD\\b|\\bG18d\\b|\\bP85s\\b|\\bP11HD\\b|\\bP88s\\b|\\bA80HD\\b|\\bA80se\\b|\\bA10h\\b|\\bP89\\b|\\bP78s\\b|\\bG18\\b|\\bP85\\b|\\bA70h\\b|\\bA70\\b|\\bG17\\b|\\bP18\\b|\\bA80s\\b|\\bA11s\\b|\\bP88HD\\b|\\bA80h\\b|\\bP76s\\b|\\bP76h\\b|\\bP98\\b|\\bA10HD\\b|\\bP78\\b|\\bP88\\b|\\bA11\\b|\\bA10t\\b|\\bP76a\\b|\\bP76t\\b|\\bP76e\\b|\\bP85HD\\b|\\bP85a\\b|\\bP86\\b|\\bP75HD\\b|\\bP76v\\b|\\bA12\\b|\\bP75a\\b|\\bA15\\b|\\bP76Ti\\b|\\bP81HD\\b|\\bA10\\b|\\bT760VE\\b|\\bT720HD\\b|\\bP76\\b|\\bP73\\b|\\bP71\\b|\\bP72\\b|\\bT720SE\\b|\\bC520Ti\\b|\\bT760\\b|\\bT720VE\\b|T720-3GE|T720-WiFi",
138
+ "OndaTablet": "\\b(V975i|Vi30|VX530|V701|Vi60|V701s|Vi50|V801s|V719|Vx610w|VX610W|V819i|Vi10|VX580W|Vi10|V711s|V813|V811|V820w|V820|Vi20|V711|VI30W|V712|V891w|V972|V819w|V820w|Vi60|V820w|V711|V813s|V801|V819|V975s|V801|V819|V819|V818|V811|V712|V975m|V101w|V961w|V812|V818|V971|V971s|V919|V989|V116w|V102w|V973|Vi40)\\b[\\s]+|V10 \\b4G\\b",
139
+ "JaytechTablet": "TPC-PA762",
140
+ "BlaupunktTablet": "Endeavour 800NG|Endeavour 1010",
141
+ "DigmaTablet": "\\b(iDx10|iDx9|iDx8|iDx7|iDxD7|iDxD8|iDsQ8|iDsQ7|iDsQ8|iDsD10|iDnD7|3TS804H|iDsQ11|iDj7|iDs10)\\b",
142
+ "EvolioTablet": "ARIA_Mini_wifi|Aria[ _]Mini|Evolio X10|Evolio X7|Evolio X8|\\bEvotab\\b|\\bNeura\\b",
143
+ "LavaTablet": "QPAD E704|\\bIvoryS\\b|E-TAB IVORY|\\bE-TAB\\b",
144
+ "AocTablet": "MW0811|MW0812|MW0922|MTK8382|MW1031|MW0831|MW0821|MW0931|MW0712",
145
+ "MpmanTablet": "MP11 OCTA|MP10 OCTA|MPQC1114|MPQC1004|MPQC994|MPQC974|MPQC973|MPQC804|MPQC784|MPQC780|\\bMPG7\\b|MPDCG75|MPDCG71|MPDC1006|MP101DC|MPDC9000|MPDC905|MPDC706HD|MPDC706|MPDC705|MPDC110|MPDC100|MPDC99|MPDC97|MPDC88|MPDC8|MPDC77|MP709|MID701|MID711|MID170|MPDC703|MPQC1010",
146
+ "CelkonTablet": "CT695|CT888|CT[\\s]?910|CT7 Tab|CT9 Tab|CT3 Tab|CT2 Tab|CT1 Tab|C820|C720|\\bCT-1\\b",
147
+ "WolderTablet": "miTab \\b(DIAMOND|SPACE|BROOKLYN|NEO|FLY|MANHATTAN|FUNK|EVOLUTION|SKY|GOCAR|IRON|GENIUS|POP|MINT|EPSILON|BROADWAY|JUMP|HOP|LEGEND|NEW AGE|LINE|ADVANCE|FEEL|FOLLOW|LIKE|LINK|LIVE|THINK|FREEDOM|CHICAGO|CLEVELAND|BALTIMORE-GH|IOWA|BOSTON|SEATTLE|PHOENIX|DALLAS|IN 101|MasterChef)\\b",
148
+ "MediacomTablet": "M-MPI10C3G|M-SP10EG|M-SP10EGP|M-SP10HXAH|M-SP7HXAH|M-SP10HXBH|M-SP8HXAH|M-SP8MXA",
149
+ "MiTablet": "\\bMI PAD\\b|\\bHM NOTE 1W\\b",
150
+ "NibiruTablet": "Nibiru M1|Nibiru Jupiter One",
151
+ "NexoTablet": "NEXO NOVA|NEXO 10|NEXO AVIO|NEXO FREE|NEXO GO|NEXO EVO|NEXO 3G|NEXO SMART|NEXO KIDDO|NEXO MOBI",
152
+ "LeaderTablet": "TBLT10Q|TBLT10I|TBL-10WDKB|TBL-10WDKBO2013|TBL-W230V2|TBL-W450|TBL-W500|SV572|TBLT7I|TBA-AC7-8G|TBLT79|TBL-8W16|TBL-10W32|TBL-10WKB|TBL-W100",
153
+ "UbislateTablet": "UbiSlate[\\s]?7C",
154
+ "PocketBookTablet": "Pocketbook",
155
+ "KocasoTablet": "\\b(TB-1207)\\b",
156
+ "HisenseTablet": "\\b(F5281|E2371)\\b",
157
+ "Hudl": "Hudl HT7S3|Hudl 2",
158
+ "TelstraTablet": "T-Hub2",
159
+ "GenericTablet": "Android.*\\b97D\\b|Tablet(?!.*PC)|BNTV250A|MID-WCDMA|LogicPD Zoom2|\\bA7EB\\b|CatNova8|A1_07|CT704|CT1002|\\bM721\\b|rk30sdk|\\bEVOTAB\\b|M758A|ET904|ALUMIUM10|Smartfren Tab|Endeavour 1010|Tablet-PC-4|Tagi Tab|\\bM6pro\\b|CT1020W|arc 10HD|\\bTP750\\b|\\bQTAQZ3\\b|WVT101|TM1088|KT107"
160
+ },
161
+ "oss": {
162
+ "AndroidOS": "Android",
163
+ "BlackBerryOS": "blackberry|\\bBB10\\b|rim tablet os",
164
+ "PalmOS": "PalmOS|avantgo|blazer|elaine|hiptop|palm|plucker|xiino",
165
+ "SymbianOS": "Symbian|SymbOS|Series60|Series40|SYB-[0-9]+|\\bS60\\b",
166
+ "WindowsMobileOS": "Windows CE.*(PPC|Smartphone|Mobile|[0-9]{3}x[0-9]{3})|Windows Mobile|Windows Phone [0-9.]+|WCE;",
167
+ "WindowsPhoneOS": "Windows Phone 10.0|Windows Phone 8.1|Windows Phone 8.0|Windows Phone OS|XBLWP7|ZuneWP7|Windows NT 6.[23]; ARM;",
168
+ "iOS": "\\biPhone.*Mobile|\\biPod|\\biPad|AppleCoreMedia",
169
+ "iPadOS": "CPU OS 13",
170
+ "MeeGoOS": "MeeGo",
171
+ "MaemoOS": "Maemo",
172
+ "JavaOS": "J2ME\/|\\bMIDP\\b|\\bCLDC\\b",
173
+ "webOS": "webOS|hpwOS",
174
+ "badaOS": "\\bBada\\b",
175
+ "BREWOS": "BREW",
176
+
177
+ // AI added
178
+ 'Windows': 'Windows',
179
+ 'Windows NT': 'Windows NT',
180
+ 'OS X': 'Mac OS X',
181
+ 'Debian': 'Debian',
182
+ 'Ubuntu': 'Ubuntu',
183
+ 'Macintosh': 'PPC',
184
+ 'OpenBSD': 'OpenBSD',
185
+ 'Linux': 'Linux',
186
+ 'ChromeOS': 'CrOS'
187
+ },
188
+ "uas": {
189
+ // "Chrome": "\\bCrMo\\b|CriOS|Android.*Chrome\/[.0-9]* (Mobile)?",
190
+ "Dolfin": "\\bDolfin\\b",
191
+ // "Opera": "Opera.*Mini|Opera.*Mobi|Android.*Opera|Mobile.*OPR\/[0-9.]+$|Coast\/[0-9.]+",
192
+ "Skyfire": "Skyfire",
193
+ // "Edge": "Mobile Safari\/[.0-9]* Edge",
194
+ // "IE": "IEMobile|MSIEMobile",
195
+ // "Firefox": "fennec|firefox.*maemo|(Mobile|Tablet).*Firefox|Firefox.*Mobile|FxiOS",
196
+ "Bolt": "bolt",
197
+ "TeaShark": "teashark",
198
+ "Blazer": "Blazer",
199
+ // "Safari": "Version.*Mobile.*Safari|Safari.*Mobile|MobileSafari",
200
+ "WeChat": "\\bMicroMessenger\\b",
201
+ // "UCBrowser": "UC.*Browser|UCWEB",
202
+ "baiduboxapp": "baiduboxapp",
203
+ "baidubrowser": "baidubrowser",
204
+ "DiigoBrowser": "DiigoBrowser",
205
+ "Mercury": "\\bMercury\\b",
206
+ "ObigoBrowser": "Obigo",
207
+ "NetFront": "NF-Browser",
208
+ "GenericBrowser": "NokiaBrowser|OviBrowser|OneBrowser|TwonkyBeamBrowser|SEMC.*Browser|FlyFlow|Minimo|NetFront|Novarra-Vision|MQQBrowser|MicroMessenger",
209
+ "PaleMoon": "Android.*PaleMoon|Mobile.*PaleMoon",
210
+
211
+ // AI added
212
+ 'Opera Mini': 'Opera Mini',
213
+ 'Opera': 'Opera|OPR',
214
+ 'Edge': 'Edge',
215
+ 'UCBrowser': 'UCBrowser',
216
+ 'Vivaldi': 'Vivaldi',
217
+ 'Chrome': 'Chrome',
218
+ 'Firefox': 'Firefox',
219
+ 'Safari': 'Safari',
220
+ 'IE': 'MSIE|IEMobile|MSIEMobile|Trident/[.0-9]+',
221
+ 'Netscape': 'Netscape',
222
+ 'Mozilla': 'Mozilla'
223
+ },
224
+ "props": {
225
+ "Mobile": "Mobile\/[VER]",
226
+ "Build": "Build\/[VER]",
227
+ "Version": "Version\/[VER]",
228
+ "VendorID": "VendorID\/[VER]",
229
+ "iPad": "iPad.*CPU[a-z ]+[VER]",
230
+ "iPhone": "iPhone.*CPU[a-z ]+[VER]",
231
+ "iPod": "iPod.*CPU[a-z ]+[VER]",
232
+ "Kindle": "Kindle\/[VER]",
233
+ "Chrome": [
234
+ "Chrome\/[VER]",
235
+ "CriOS\/[VER]",
236
+ "CrMo\/[VER]"
237
+ ],
238
+ "Coast": [
239
+ "Coast\/[VER]"
240
+ ],
241
+ "Dolfin": "Dolfin\/[VER]",
242
+ "Firefox": [
243
+ "Firefox\/[VER]",
244
+ "FxiOS\/[VER]"
245
+ ],
246
+ "Fennec": "Fennec\/[VER]",
247
+ // "Edge": "Edge\/[VER]",
248
+ // "IE": [
249
+ // "IEMobile\/[VER];",
250
+ // "IEMobile [VER]",
251
+ // "MSIE [VER];",
252
+ // "Trident\/[0-9.]+;.*rv:[VER]"
253
+ // ],
254
+ "NetFront": "NetFront\/[VER]",
255
+ "NokiaBrowser": "NokiaBrowser\/[VER]",
256
+ // "Opera": [
257
+ // " OPR\/[VER]",
258
+ // "Opera Mini\/[VER]",
259
+ // "Version\/[VER]"
260
+ // ],
261
+ // "Opera Mini": "Opera Mini\/[VER]",
262
+ "Opera Mobi": "Version\/[VER]",
263
+ "UCBrowser": [
264
+ "UCWEB[VER]",
265
+ "UC.*Browser\/[VER]"
266
+ ],
267
+ "MQQBrowser": "MQQBrowser\/[VER]",
268
+ "MicroMessenger": "MicroMessenger\/[VER]",
269
+ "baiduboxapp": "baiduboxapp\/[VER]",
270
+ "baidubrowser": "baidubrowser\/[VER]",
271
+ "SamsungBrowser": "SamsungBrowser\/[VER]",
272
+ "Iron": "Iron\/[VER]",
273
+ "Safari": [
274
+ "Version\/[VER]",
275
+ "Safari\/[VER]"
276
+ ],
277
+ "Skyfire": "Skyfire\/[VER]",
278
+ "Tizen": "Tizen\/[VER]",
279
+ "Webkit": "webkit[ \/][VER]",
280
+ "PaleMoon": "PaleMoon\/[VER]",
281
+ "Gecko": "Gecko\/[VER]",
282
+ "Trident": "Trident\/[VER]",
283
+ "Presto": "Presto\/[VER]",
284
+ "Goanna": "Goanna\/[VER]",
285
+ "iOS": " \\bi?OS\\b [VER][ ;]{1}",
286
+ "Android": "Android [VER]",
287
+ "BlackBerry": [
288
+ "BlackBerry[\\w]+\/[VER]",
289
+ "BlackBerry.*Version\/[VER]",
290
+ "Version\/[VER]"
291
+ ],
292
+ "BREW": "BREW [VER]",
293
+ "Java": "Java\/[VER]",
294
+ "Windows Phone OS": [
295
+ "Windows Phone OS [VER]",
296
+ "Windows Phone [VER]"
297
+ ],
298
+ "Windows Phone": "Windows Phone [VER]",
299
+ "Windows CE": "Windows CE\/[VER]",
300
+ // "Windows NT": "Windows NT [VER]",
301
+ "Symbian": [
302
+ "SymbianOS\/[VER]",
303
+ "Symbian\/[VER]"
304
+ ],
305
+ "webOS": [
306
+ "webOS\/[VER]",
307
+ "hpwOS\/[VER];"
308
+ ],
309
+
310
+ // AI added
311
+ // Operating systems
312
+ 'Windows': 'Windows NT [VER]',
313
+ 'Windows NT': 'Windows NT [VER]',
314
+ 'OS X': 'OS X [VER]',
315
+ 'BlackBerryOS': ['BlackBerry[\w]+/[VER]', 'BlackBerry.*Version/[VER]', 'Version/[VER]'],
316
+ 'AndroidOS': 'Android [VER]',
317
+ 'ChromeOS': 'CrOS x86_64 [VER]',
318
+
319
+ // Browsers
320
+ 'Opera Mini': 'Opera Mini/[VER]',
321
+ 'Opera': [' OPR/[VER]', 'Opera Mini/[VER]', 'Version/[VER]', 'Opera [VER]'],
322
+ 'Netscape': 'Netscape/[VER]',
323
+ 'Mozilla': 'rv:[VER]',
324
+ 'IE': ['IEMobile/[VER];', 'IEMobile [VER]', 'MSIE [VER];', 'rv:[VER]'],
325
+ 'Edge': 'Edge/[VER]',
326
+ 'Vivaldi': 'Vivaldi/[VER]'
327
+ },
328
+ "utils": {
329
+ "Bot": "Googlebot|facebookexternalhit|Google-AMPHTML|s~amp-validator|AdsBot-Google|Google Keyword Suggestion|Facebot|YandexBot|YandexMobileBot|bingbot|ia_archiver|AhrefsBot|Ezooms|GSLFbot|WBSearchBot|Twitterbot|TweetmemeBot|Twikle|PaperLiBot|Wotbox|UnwindFetchor|Exabot|MJ12bot|YandexImages|TurnitinBot|Pingdom|contentkingapp",
330
+ "MobileBot": "Googlebot-Mobile|AdsBot-Google-Mobile|YahooSeeker\/M1A1-R2D2",
331
+ "DesktopMode": "WPDesktop",
332
+ "TV": "SonyDTV|HbbTV",
333
+ "WebKit": "(webkit)[ \/]([\\w.]+)",
334
+ "Console": "\\b(Nintendo|Nintendo WiiU|Nintendo 3DS|Nintendo Switch|PLAYSTATION|Xbox)\\b",
335
+ "Watch": "SM-V700",
336
+
337
+ // AI added
338
+ 'Macintosh': 'Macintosh'
339
+ }
340
+ };
341
+
342
+ // following patterns come from http://detectmobilebrowsers.com/
343
+ impl.detectMobileBrowsers = {
344
+ fullPattern: /(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i,
345
+ shortPattern: /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i,
346
+ tabletPattern: /android|ipad|playbook|silk/i
347
+ };
348
+
349
+ var hasOwnProp = Object.prototype.hasOwnProperty,
350
+ isArray;
351
+
352
+ impl.FALLBACK_PHONE = 'UnknownPhone';
353
+ impl.FALLBACK_TABLET = 'UnknownTablet';
354
+ impl.FALLBACK_MOBILE = 'UnknownMobile';
355
+
356
+ isArray = ('isArray' in Array) ?
357
+ Array.isArray : function (value) { return Object.prototype.toString.call(value) === '[object Array]'; };
358
+
359
+ function equalIC(a, b) {
360
+ return a != null && b != null && a.toLowerCase() === b.toLowerCase();
361
+ }
362
+
363
+ function containsIC(array, value) {
364
+ var valueLC, i, len = array.length;
365
+ if (!len || !value) {
366
+ return false;
367
+ }
368
+ valueLC = value.toLowerCase();
369
+ for (i = 0; i < len; ++i) {
370
+ if (valueLC === array[i].toLowerCase()) {
371
+ return true;
372
+ }
373
+ }
374
+ return false;
375
+ }
376
+
377
+ function convertPropsToRegExp(object) {
378
+ for (var key in object) {
379
+ if (hasOwnProp.call(object, key)) {
380
+ object[key] = new RegExp(object[key], 'i');
381
+ }
382
+ }
383
+ }
384
+
385
+ function prepareUserAgent(userAgent) {
386
+ return (userAgent || '').substr(0, 500); // mitigate vulnerable to ReDoS
387
+ }
388
+
389
+ (function init() {
390
+ var key, values, value, i, len, verPos, mobileDetectRules = impl.mobileDetectRules;
391
+ for (key in mobileDetectRules.props) {
392
+ if (hasOwnProp.call(mobileDetectRules.props, key)) {
393
+ values = mobileDetectRules.props[key];
394
+ if (!isArray(values)) {
395
+ values = [values];
396
+ }
397
+ len = values.length;
398
+ for (i = 0; i < len; ++i) {
399
+ value = values[i];
400
+ verPos = value.indexOf('[VER]');
401
+ if (verPos >= 0) {
402
+ value = value.substring(0, verPos) + '([\\w._\\+]+)' + value.substring(verPos + 5);
403
+ }
404
+ values[i] = new RegExp(value, 'i');
405
+ }
406
+ mobileDetectRules.props[key] = values;
407
+ }
408
+ }
409
+ convertPropsToRegExp(mobileDetectRules.oss);
410
+ convertPropsToRegExp(mobileDetectRules.phones);
411
+ convertPropsToRegExp(mobileDetectRules.tablets);
412
+ convertPropsToRegExp(mobileDetectRules.uas);
413
+ convertPropsToRegExp(mobileDetectRules.utils);
414
+
415
+ // copy some patterns to oss0 which are tested first (see issue#15)
416
+ mobileDetectRules.oss0 = {
417
+ WindowsPhoneOS: mobileDetectRules.oss.WindowsPhoneOS,
418
+ WindowsMobileOS: mobileDetectRules.oss.WindowsMobileOS
419
+ };
420
+ }());
421
+
422
+ /**
423
+ * Test userAgent string against a set of rules and find the first matched key.
424
+ * @param {Object} rules (key is String, value is RegExp)
425
+ * @param {String} userAgent the navigator.userAgent (or HTTP-Header 'User-Agent').
426
+ * @returns {String|null} the matched key if found, otherwise <tt>null</tt>
427
+ * @private
428
+ */
429
+ impl.findMatch = function(rules, userAgent) {
430
+ for (var key in rules) {
431
+ if (hasOwnProp.call(rules, key)) {
432
+ if (rules[key].test(userAgent)) {
433
+ return key;
434
+ }
435
+ }
436
+ }
437
+ return null;
438
+ };
439
+
440
+ /**
441
+ * Test userAgent string against a set of rules and return an array of matched keys.
442
+ * @param {Object} rules (key is String, value is RegExp)
443
+ * @param {String} userAgent the navigator.userAgent (or HTTP-Header 'User-Agent').
444
+ * @returns {Array} an array of matched keys, may be empty when there is no match, but not <tt>null</tt>
445
+ * @private
446
+ */
447
+ impl.findMatches = function(rules, userAgent) {
448
+ var result = [];
449
+ for (var key in rules) {
450
+ if (hasOwnProp.call(rules, key)) {
451
+ if (rules[key].test(userAgent)) {
452
+ result.push(key);
453
+ }
454
+ }
455
+ }
456
+ return result;
457
+ };
458
+
459
+ /**
460
+ * Check the version of the given property in the User-Agent.
461
+ *
462
+ * @param {String} propertyName
463
+ * @param {String} userAgent
464
+ * @return {String} version or <tt>null</tt> if version not found
465
+ * @private
466
+ */
467
+ impl.getVersionStr = function (propertyName, userAgent) {
468
+ var props = impl.mobileDetectRules.props, patterns, i, len, match;
469
+ if (hasOwnProp.call(props, propertyName)) {
470
+ patterns = props[propertyName];
471
+ len = patterns.length;
472
+ for (i = 0; i < len; ++i) {
473
+ match = patterns[i].exec(userAgent);
474
+ if (match !== null) {
475
+ return match[1];
476
+ }
477
+ }
478
+ }
479
+ return null;
480
+ };
481
+
482
+ /**
483
+ * Check the version of the given property in the User-Agent.
484
+ * Will return a float number. (eg. 2_0 will return 2.0, 4.3.1 will return 4.31)
485
+ *
486
+ * @param {String} propertyName
487
+ * @param {String} userAgent
488
+ * @return {Number} version or <tt>NaN</tt> if version not found
489
+ * @private
490
+ */
491
+ impl.getVersion = function (propertyName, userAgent) {
492
+ var version = impl.getVersionStr(propertyName, userAgent);
493
+ return version ? impl.prepareVersionNo(version) : NaN;
494
+ };
495
+
496
+ /**
497
+ * Prepare the version number.
498
+ *
499
+ * @param {String} version
500
+ * @return {Number} the version number as a floating number
501
+ * @private
502
+ */
503
+ impl.prepareVersionNo = function (version) {
504
+ var numbers;
505
+
506
+ numbers = version.split(/[a-z._ \/\-]/i);
507
+ if (numbers.length === 1) {
508
+ version = numbers[0];
509
+ }
510
+ if (numbers.length > 1) {
511
+ version = numbers[0] + '.';
512
+ numbers.shift();
513
+ version += numbers.join('');
514
+ }
515
+ return Number(version);
516
+ };
517
+
518
+ impl.isMobileFallback = function (userAgent) {
519
+ return impl.detectMobileBrowsers.fullPattern.test(userAgent) ||
520
+ impl.detectMobileBrowsers.shortPattern.test(userAgent.substr(0,4));
521
+ };
522
+
523
+ impl.isTabletFallback = function (userAgent) {
524
+ return impl.detectMobileBrowsers.tabletPattern.test(userAgent);
525
+ };
526
+
527
+ impl.prepareDetectionCache = function (cache, userAgent, maxPhoneWidth) {
528
+ if (cache.mobile !== undefined) {
529
+ return;
530
+ }
531
+ var phone, tablet, phoneSized;
532
+
533
+ // first check for stronger tablet rules, then phone (see issue#5)
534
+ tablet = impl.findMatch(impl.mobileDetectRules.tablets, userAgent);
535
+ if (tablet) {
536
+ cache.mobile = cache.tablet = tablet;
537
+ cache.phone = null;
538
+ return; // unambiguously identified as tablet
539
+ }
540
+
541
+ phone = impl.findMatch(impl.mobileDetectRules.phones, userAgent);
542
+ if (phone) {
543
+ cache.mobile = cache.phone = phone;
544
+ cache.tablet = null;
545
+ return; // unambiguously identified as phone
546
+ }
547
+
548
+ // our rules haven't found a match -> try more general fallback rules
549
+ if (impl.isMobileFallback(userAgent)) {
550
+ phoneSized = MobileDetect.isPhoneSized(maxPhoneWidth);
551
+ if (phoneSized === undefined) {
552
+ cache.mobile = impl.FALLBACK_MOBILE;
553
+ cache.tablet = cache.phone = null;
554
+ } else if (phoneSized) {
555
+ cache.mobile = cache.phone = impl.FALLBACK_PHONE;
556
+ cache.tablet = null;
557
+ } else {
558
+ cache.mobile = cache.tablet = impl.FALLBACK_TABLET;
559
+ cache.phone = null;
560
+ }
561
+ } else if (impl.isTabletFallback(userAgent)) {
562
+ cache.mobile = cache.tablet = impl.FALLBACK_TABLET;
563
+ cache.phone = null;
564
+ } else {
565
+ // not mobile at all!
566
+ cache.mobile = cache.tablet = cache.phone = null;
567
+ }
568
+ };
569
+
570
+ // t is a reference to a MobileDetect instance
571
+ impl.mobileGrade = function (t) {
572
+ // impl note:
573
+ // To keep in sync w/ Mobile_Detect.php easily, the following code is tightly aligned to the PHP version.
574
+ // When changes are made in Mobile_Detect.php, copy this method and replace:
575
+ // $this-> / t.
576
+ // self::MOBILE_GRADE_(.) / '$1'
577
+ // , self::VERSION_TYPE_FLOAT / (nothing)
578
+ // isIOS() / os('iOS')
579
+ // [reg] / (nothing) <-- jsdelivr complaining about unescaped unicode character U+00AE
580
+ var $isMobile = t.mobile() !== null;
581
+
582
+ if (
583
+ // Apple iOS 3.2-5.1 - Tested on the original iPad (4.3 / 5.0), iPad 2 (4.3), iPad 3 (5.1), original iPhone (3.1), iPhone 3 (3.2), 3GS (4.3), 4 (4.3 / 5.0), and 4S (5.1)
584
+ t.os('iOS') && t.version('iPad')>=4.3 ||
585
+ t.os('iOS') && t.version('iPhone')>=3.1 ||
586
+ t.os('iOS') && t.version('iPod')>=3.1 ||
587
+
588
+ // Android 2.1-2.3 - Tested on the HTC Incredible (2.2), original Droid (2.2), HTC Aria (2.1), Google Nexus S (2.3). Functional on 1.5 & 1.6 but performance may be sluggish, tested on Google G1 (1.5)
589
+ // Android 3.1 (Honeycomb) - Tested on the Samsung Galaxy Tab 10.1 and Motorola XOOM
590
+ // Android 4.0 (ICS) - Tested on a Galaxy Nexus. Note: transition performance can be poor on upgraded devices
591
+ // Android 4.1 (Jelly Bean) - Tested on a Galaxy Nexus and Galaxy 7
592
+ ( t.version('Android')>2.1 && t.is('Webkit') ) ||
593
+
594
+ // Windows Phone 7-7.5 - Tested on the HTC Surround (7.0) HTC Trophy (7.5), LG-E900 (7.5), Nokia Lumia 800
595
+ t.version('Windows Phone OS')>=7.0 ||
596
+
597
+ // Blackberry 7 - Tested on BlackBerry Torch 9810
598
+ // Blackberry 6.0 - Tested on the Torch 9800 and Style 9670
599
+ t.is('BlackBerry') && t.version('BlackBerry')>=6.0 ||
600
+ // Blackberry Playbook (1.0-2.0) - Tested on PlayBook
601
+ t.match('Playbook.*Tablet') ||
602
+
603
+ // Palm WebOS (1.4-2.0) - Tested on the Palm Pixi (1.4), Pre (1.4), Pre 2 (2.0)
604
+ ( t.version('webOS')>=1.4 && t.match('Palm|Pre|Pixi') ) ||
605
+ // Palm WebOS 3.0 - Tested on HP TouchPad
606
+ t.match('hp.*TouchPad') ||
607
+
608
+ // Firefox Mobile (12 Beta) - Tested on Android 2.3 device
609
+ ( t.is('Firefox') && t.version('Firefox')>=12 ) ||
610
+
611
+ // Chrome for Android - Tested on Android 4.0, 4.1 device
612
+ ( t.is('Chrome') && t.is('AndroidOS') && t.version('Android')>=4.0 ) ||
613
+
614
+ // Skyfire 4.1 - Tested on Android 2.3 device
615
+ ( t.is('Skyfire') && t.version('Skyfire')>=4.1 && t.is('AndroidOS') && t.version('Android')>=2.3 ) ||
616
+
617
+ // Opera Mobile 11.5-12: Tested on Android 2.3
618
+ ( t.is('Opera') && t.version('Opera Mobi')>11 && t.is('AndroidOS') ) ||
619
+
620
+ // Meego 1.2 - Tested on Nokia 950 and N9
621
+ t.is('MeeGoOS') ||
622
+
623
+ // Tizen (pre-release) - Tested on early hardware
624
+ t.is('Tizen') ||
625
+
626
+ // Samsung Bada 2.0 - Tested on a Samsung Wave 3, Dolphin browser
627
+ // @todo: more tests here!
628
+ t.is('Dolfin') && t.version('Bada')>=2.0 ||
629
+
630
+ // UC Browser - Tested on Android 2.3 device
631
+ ( (t.is('UC Browser') || t.is('Dolfin')) && t.version('Android')>=2.3 ) ||
632
+
633
+ // Kindle 3 and Fire - Tested on the built-in WebKit browser for each
634
+ ( t.match('Kindle Fire') ||
635
+ t.is('Kindle') && t.version('Kindle')>=3.0 ) ||
636
+
637
+ // Nook Color 1.4.1 - Tested on original Nook Color, not Nook Tablet
638
+ t.is('AndroidOS') && t.is('NookTablet') ||
639
+
640
+ // Chrome Desktop 11-21 - Tested on OS X 10.7 and Windows 7
641
+ t.version('Chrome')>=11 && !$isMobile ||
642
+
643
+ // Safari Desktop 4-5 - Tested on OS X 10.7 and Windows 7
644
+ t.version('Safari')>=5.0 && !$isMobile ||
645
+
646
+ // Firefox Desktop 4-13 - Tested on OS X 10.7 and Windows 7
647
+ t.version('Firefox')>=4.0 && !$isMobile ||
648
+
649
+ // Internet Explorer 7-9 - Tested on Windows XP, Vista and 7
650
+ t.version('MSIE')>=7.0 && !$isMobile ||
651
+
652
+ // Opera Desktop 10-12 - Tested on OS X 10.7 and Windows 7
653
+ // @reference: http://my.opera.com/community/openweb/idopera/
654
+ t.version('Opera')>=10 && !$isMobile
655
+
656
+ ){
657
+ return 'A';
658
+ }
659
+
660
+ if (
661
+ t.os('iOS') && t.version('iPad')<4.3 ||
662
+ t.os('iOS') && t.version('iPhone')<3.1 ||
663
+ t.os('iOS') && t.version('iPod')<3.1 ||
664
+
665
+ // Blackberry 5.0: Tested on the Storm 2 9550, Bold 9770
666
+ t.is('Blackberry') && t.version('BlackBerry')>=5 && t.version('BlackBerry')<6 ||
667
+
668
+ //Opera Mini (5.0-6.5) - Tested on iOS 3.2/4.3 and Android 2.3
669
+ ( t.version('Opera Mini')>=5.0 && t.version('Opera Mini')<=6.5 &&
670
+ (t.version('Android')>=2.3 || t.is('iOS')) ) ||
671
+
672
+ // Nokia Symbian^3 - Tested on Nokia N8 (Symbian^3), C7 (Symbian^3), also works on N97 (Symbian^1)
673
+ t.match('NokiaN8|NokiaC7|N97.*Series60|Symbian/3') ||
674
+
675
+ // @todo: report this (tested on Nokia N71)
676
+ t.version('Opera Mobi')>=11 && t.is('SymbianOS')
677
+ ){
678
+ return 'B';
679
+ }
680
+
681
+ if (
682
+ // Blackberry 4.x - Tested on the Curve 8330
683
+ t.version('BlackBerry')<5.0 ||
684
+ // Windows Mobile - Tested on the HTC Leo (WinMo 5.2)
685
+ t.match('MSIEMobile|Windows CE.*Mobile') || t.version('Windows Mobile')<=5.2
686
+
687
+ ){
688
+ return 'C';
689
+ }
690
+
691
+ //All older smartphone platforms and featurephones - Any device that doesn't support media queries
692
+ //will receive the basic, C grade experience.
693
+ return 'C';
694
+ };
695
+
696
+ impl.detectOS = function (ua) {
697
+ return impl.findMatch(impl.mobileDetectRules.oss0, ua) ||
698
+ impl.findMatch(impl.mobileDetectRules.oss, ua);
699
+ };
700
+
701
+ impl.getDeviceSmallerSide = function () {
702
+ return window.screen.width < window.screen.height ?
703
+ window.screen.width :
704
+ window.screen.height;
705
+ };
706
+
707
+ /**
708
+ * Constructor for MobileDetect object.
709
+ * <br>
710
+ * Such an object will keep a reference to the given user-agent string and cache most of the detect queries.<br>
711
+ * <div style="background-color: #d9edf7; border: 1px solid #bce8f1; color: #3a87ad; padding: 14px; border-radius: 2px; margin-top: 20px">
712
+ * <strong>Find information how to download and install:</strong>
713
+ * <a href="https://github.com/hgoebl/mobile-detect.js/">github.com/hgoebl/mobile-detect.js/</a>
714
+ * </div>
715
+ *
716
+ * @example <pre>
717
+ * var md = new MobileDetect(window.navigator.userAgent);
718
+ * if (md.mobile()) {
719
+ * location.href = (md.mobileGrade() === 'A') ? '/mobile/' : '/lynx/';
720
+ * }
721
+ * </pre>
722
+ *
723
+ * @param {string} userAgent typically taken from window.navigator.userAgent or http_header['User-Agent']
724
+ * @param {number} [maxPhoneWidth=600] <strong>only for browsers</strong> specify a value for the maximum
725
+ * width of smallest device side (in logical "CSS" pixels) until a device detected as mobile will be handled
726
+ * as phone.
727
+ * This is only used in cases where the device cannot be classified as phone or tablet.<br>
728
+ * See <a href="http://developer.android.com/guide/practices/screens_support.html">Declaring Tablet Layouts
729
+ * for Android</a>.<br>
730
+ * If you provide a value < 0, then this "fuzzy" check is disabled.
731
+ * @constructor
732
+ * @global
733
+ */
734
+ function MobileDetect(userAgent, maxPhoneWidth) {
735
+ this.ua = prepareUserAgent(userAgent);
736
+ this._cache = {};
737
+ //600dp is typical 7" tablet minimum width
738
+ this.maxPhoneWidth = maxPhoneWidth || 600;
739
+ }
740
+
741
+ MobileDetect.prototype = {
742
+ constructor: MobileDetect,
743
+
744
+ /**
745
+ * Returns the detected phone or tablet type or <tt>null</tt> if it is not a mobile device.
746
+ * <br>
747
+ * For a list of possible return values see {@link MobileDetect#phone} and {@link MobileDetect#tablet}.<br>
748
+ * <br>
749
+ * If the device is not detected by the regular expressions from Mobile-Detect, a test is made against
750
+ * the patterns of <a href="http://detectmobilebrowsers.com/">detectmobilebrowsers.com</a>. If this test
751
+ * is positive, a value of <code>UnknownPhone</code>, <code>UnknownTablet</code> or
752
+ * <code>UnknownMobile</code> is returned.<br>
753
+ * When used in browser, the decision whether phone or tablet is made based on <code>screen.width/height</code>.<br>
754
+ * <br>
755
+ * When used server-side (node.js), there is no way to tell the difference between <code>UnknownTablet</code>
756
+ * and <code>UnknownMobile</code>, so you will get <code>UnknownMobile</code> here.<br>
757
+ * Be aware that since v1.0.0 in this special case you will get <code>UnknownMobile</code> only for:
758
+ * {@link MobileDetect#mobile}, not for {@link MobileDetect#phone} and {@link MobileDetect#tablet}.
759
+ * In versions before v1.0.0 all 3 methods returned <code>UnknownMobile</code> which was tedious to use.
760
+ * <br>
761
+ * In most cases you will use the return value just as a boolean.
762
+ *
763
+ * @returns {String} the key for the phone family or tablet family, e.g. "Nexus".
764
+ * @function MobileDetect#mobile
765
+ */
766
+ mobile: function () {
767
+ impl.prepareDetectionCache(this._cache, this.ua, this.maxPhoneWidth);
768
+ return this._cache.mobile;
769
+ },
770
+
771
+ /**
772
+ * Returns the detected phone type/family string or <tt>null</tt>.
773
+ * <br>
774
+ * The returned tablet (family or producer) is one of following keys:<br>
775
+ * <br><tt>iPhone, BlackBerry, HTC, Nexus, Dell, Motorola, Samsung, LG, Sony, Asus,
776
+ * NokiaLumia, Micromax, Palm, Vertu, Pantech, Fly, Wiko, iMobile, SimValley,
777
+ * Wolfgang, Alcatel, Nintendo, Amoi, INQ, OnePlus, GenericPhone</tt><br>
778
+ * <br>
779
+ * If the device is not detected by the regular expressions from Mobile-Detect, a test is made against
780
+ * the patterns of <a href="http://detectmobilebrowsers.com/">detectmobilebrowsers.com</a>. If this test
781
+ * is positive, a value of <code>UnknownPhone</code> or <code>UnknownMobile</code> is returned.<br>
782
+ * When used in browser, the decision whether phone or tablet is made based on <code>screen.width/height</code>.<br>
783
+ * <br>
784
+ * When used server-side (node.js), there is no way to tell the difference between <code>UnknownTablet</code>
785
+ * and <code>UnknownMobile</code>, so you will get <code>null</code> here, while {@link MobileDetect#mobile}
786
+ * will return <code>UnknownMobile</code>.<br>
787
+ * Be aware that since v1.0.0 in this special case you will get <code>UnknownMobile</code> only for:
788
+ * {@link MobileDetect#mobile}, not for {@link MobileDetect#phone} and {@link MobileDetect#tablet}.
789
+ * In versions before v1.0.0 all 3 methods returned <code>UnknownMobile</code> which was tedious to use.
790
+ * <br>
791
+ * In most cases you will use the return value just as a boolean.
792
+ *
793
+ * @returns {String} the key of the phone family or producer, e.g. "iPhone"
794
+ * @function MobileDetect#phone
795
+ */
796
+ phone: function () {
797
+ impl.prepareDetectionCache(this._cache, this.ua, this.maxPhoneWidth);
798
+ return this._cache.phone;
799
+ },
800
+
801
+ /**
802
+ * Returns the detected tablet type/family string or <tt>null</tt>.
803
+ * <br>
804
+ * The returned tablet (family or producer) is one of following keys:<br>
805
+ * <br><tt>iPad, NexusTablet, GoogleTablet, SamsungTablet, Kindle, SurfaceTablet,
806
+ * HPTablet, AsusTablet, BlackBerryTablet, HTCtablet, MotorolaTablet, NookTablet,
807
+ * AcerTablet, ToshibaTablet, LGTablet, FujitsuTablet, PrestigioTablet,
808
+ * LenovoTablet, DellTablet, YarvikTablet, MedionTablet, ArnovaTablet,
809
+ * IntensoTablet, IRUTablet, MegafonTablet, EbodaTablet, AllViewTablet,
810
+ * ArchosTablet, AinolTablet, NokiaLumiaTablet, SonyTablet, PhilipsTablet,
811
+ * CubeTablet, CobyTablet, MIDTablet, MSITablet, SMiTTablet, RockChipTablet,
812
+ * FlyTablet, bqTablet, HuaweiTablet, NecTablet, PantechTablet, BronchoTablet,
813
+ * VersusTablet, ZyncTablet, PositivoTablet, NabiTablet, KoboTablet, DanewTablet,
814
+ * TexetTablet, PlaystationTablet, TrekstorTablet, PyleAudioTablet, AdvanTablet,
815
+ * DanyTechTablet, GalapadTablet, MicromaxTablet, KarbonnTablet, AllFineTablet,
816
+ * PROSCANTablet, YONESTablet, ChangJiaTablet, GUTablet, PointOfViewTablet,
817
+ * OvermaxTablet, HCLTablet, DPSTablet, VistureTablet, CrestaTablet,
818
+ * MediatekTablet, ConcordeTablet, GoCleverTablet, ModecomTablet, VoninoTablet,
819
+ * ECSTablet, StorexTablet, VodafoneTablet, EssentielBTablet, RossMoorTablet,
820
+ * iMobileTablet, TolinoTablet, AudioSonicTablet, AMPETablet, SkkTablet,
821
+ * TecnoTablet, JXDTablet, iJoyTablet, FX2Tablet, XoroTablet, ViewsonicTablet,
822
+ * VerizonTablet, OdysTablet, CaptivaTablet, IconbitTablet, TeclastTablet,
823
+ * OndaTablet, JaytechTablet, BlaupunktTablet, DigmaTablet, EvolioTablet,
824
+ * LavaTablet, AocTablet, MpmanTablet, CelkonTablet, WolderTablet, MediacomTablet,
825
+ * MiTablet, NibiruTablet, NexoTablet, LeaderTablet, UbislateTablet,
826
+ * PocketBookTablet, KocasoTablet, HisenseTablet, Hudl, TelstraTablet,
827
+ * GenericTablet</tt><br>
828
+ * <br>
829
+ * If the device is not detected by the regular expressions from Mobile-Detect, a test is made against
830
+ * the patterns of <a href="http://detectmobilebrowsers.com/">detectmobilebrowsers.com</a>. If this test
831
+ * is positive, a value of <code>UnknownTablet</code> or <code>UnknownMobile</code> is returned.<br>
832
+ * When used in browser, the decision whether phone or tablet is made based on <code>screen.width/height</code>.<br>
833
+ * <br>
834
+ * When used server-side (node.js), there is no way to tell the difference between <code>UnknownTablet</code>
835
+ * and <code>UnknownMobile</code>, so you will get <code>null</code> here, while {@link MobileDetect#mobile}
836
+ * will return <code>UnknownMobile</code>.<br>
837
+ * Be aware that since v1.0.0 in this special case you will get <code>UnknownMobile</code> only for:
838
+ * {@link MobileDetect#mobile}, not for {@link MobileDetect#phone} and {@link MobileDetect#tablet}.
839
+ * In versions before v1.0.0 all 3 methods returned <code>UnknownMobile</code> which was tedious to use.
840
+ * <br>
841
+ * In most cases you will use the return value just as a boolean.
842
+ *
843
+ * @returns {String} the key of the tablet family or producer, e.g. "SamsungTablet"
844
+ * @function MobileDetect#tablet
845
+ */
846
+ tablet: function () {
847
+ impl.prepareDetectionCache(this._cache, this.ua, this.maxPhoneWidth);
848
+ return this._cache.tablet;
849
+ },
850
+
851
+ /**
852
+ * Returns the (first) detected user-agent string or <tt>null</tt>.
853
+ * <br>
854
+ * The returned user-agent is one of following keys:<br>
855
+ * <br><tt>Chrome, Dolfin, Opera, Skyfire, Edge, IE, Firefox, Bolt, TeaShark, Blazer,
856
+ * Safari, WeChat, UCBrowser, baiduboxapp, baidubrowser, DiigoBrowser, Mercury,
857
+ * ObigoBrowser, NetFront, GenericBrowser, PaleMoon</tt><br>
858
+ * <br>
859
+ * In most cases calling {@link MobileDetect#userAgent} will be sufficient. But there are rare
860
+ * cases where a mobile device pretends to be more than one particular browser. You can get the
861
+ * list of all matches with {@link MobileDetect#userAgents} or check for a particular value by
862
+ * providing one of the defined keys as first argument to {@link MobileDetect#is}.
863
+ *
864
+ * @returns {String} the key for the detected user-agent or <tt>null</tt>
865
+ * @function MobileDetect#userAgent
866
+ */
867
+ userAgent: function () {
868
+ if (this._cache.userAgent === undefined) {
869
+ this._cache.userAgent = impl.findMatch(impl.mobileDetectRules.uas, this.ua);
870
+ }
871
+ return this._cache.userAgent;
872
+ },
873
+
874
+ /**
875
+ * Returns all detected user-agent strings.
876
+ * <br>
877
+ * The array is empty or contains one or more of following keys:<br>
878
+ * <br><tt>Chrome, Dolfin, Opera, Skyfire, Edge, IE, Firefox, Bolt, TeaShark, Blazer,
879
+ * Safari, WeChat, UCBrowser, baiduboxapp, baidubrowser, DiigoBrowser, Mercury,
880
+ * ObigoBrowser, NetFront, GenericBrowser, PaleMoon</tt><br>
881
+ * <br>
882
+ * In most cases calling {@link MobileDetect#userAgent} will be sufficient. But there are rare
883
+ * cases where a mobile device pretends to be more than one particular browser. You can get the
884
+ * list of all matches with {@link MobileDetect#userAgents} or check for a particular value by
885
+ * providing one of the defined keys as first argument to {@link MobileDetect#is}.
886
+ *
887
+ * @returns {Array} the array of detected user-agent keys or <tt>[]</tt>
888
+ * @function MobileDetect#userAgents
889
+ */
890
+ userAgents: function () {
891
+ if (this._cache.userAgents === undefined) {
892
+ this._cache.userAgents = impl.findMatches(impl.mobileDetectRules.uas, this.ua);
893
+ }
894
+ return this._cache.userAgents;
895
+ },
896
+
897
+ /**
898
+ * Returns the detected operating system string or <tt>null</tt>.
899
+ * <br>
900
+ * The operating system is one of following keys:<br>
901
+ * <br><tt>AndroidOS, BlackBerryOS, PalmOS, SymbianOS, WindowsMobileOS, WindowsPhoneOS,
902
+ * iOS, iPadOS, MeeGoOS, MaemoOS, JavaOS, webOS, badaOS, BREWOS</tt><br>
903
+ *
904
+ * @returns {String} the key for the detected operating system.
905
+ * @function MobileDetect#os
906
+ */
907
+ os: function () {
908
+ if (this._cache.os === undefined) {
909
+ this._cache.os = impl.detectOS(this.ua);
910
+ }
911
+ return this._cache.os;
912
+ },
913
+
914
+ /**
915
+ * Get the version (as Number) of the given property in the User-Agent.
916
+ * <br>
917
+ * Will return a float number. (eg. 2_0 will return 2.0, 4.3.1 will return 4.31)
918
+ *
919
+ * @param {String} key a key defining a thing which has a version.<br>
920
+ * You can use one of following keys:<br>
921
+ * <br><tt>Mobile, Build, Version, VendorID, iPad, iPhone, iPod, Kindle, Chrome, Coast,
922
+ * Dolfin, Firefox, Fennec, Edge, IE, NetFront, NokiaBrowser, Opera, Opera Mini,
923
+ * Opera Mobi, UCBrowser, MQQBrowser, MicroMessenger, baiduboxapp, baidubrowser,
924
+ * SamsungBrowser, Iron, Safari, Skyfire, Tizen, Webkit, PaleMoon, Gecko, Trident,
925
+ * Presto, Goanna, iOS, Android, BlackBerry, BREW, Java, Windows Phone OS, Windows
926
+ * Phone, Windows CE, Windows NT, Symbian, webOS</tt><br>
927
+ *
928
+ * @returns {Number} the version as float or <tt>NaN</tt> if User-Agent doesn't contain this version.
929
+ * Be careful when comparing this value with '==' operator!
930
+ * @function MobileDetect#version
931
+ */
932
+ version: function (key) {
933
+ return impl.getVersion(key, this.ua);
934
+ },
935
+
936
+ /**
937
+ * Get the version (as String) of the given property in the User-Agent.
938
+ * <br>
939
+ *
940
+ * @param {String} key a key defining a thing which has a version.<br>
941
+ * You can use one of following keys:<br>
942
+ * <br><tt>Mobile, Build, Version, VendorID, iPad, iPhone, iPod, Kindle, Chrome, Coast,
943
+ * Dolfin, Firefox, Fennec, Edge, IE, NetFront, NokiaBrowser, Opera, Opera Mini,
944
+ * Opera Mobi, UCBrowser, MQQBrowser, MicroMessenger, baiduboxapp, baidubrowser,
945
+ * SamsungBrowser, Iron, Safari, Skyfire, Tizen, Webkit, PaleMoon, Gecko, Trident,
946
+ * Presto, Goanna, iOS, Android, BlackBerry, BREW, Java, Windows Phone OS, Windows
947
+ * Phone, Windows CE, Windows NT, Symbian, webOS</tt><br>
948
+ *
949
+ * @returns {String} the "raw" version as String or <tt>null</tt> if User-Agent doesn't contain this version.
950
+ *
951
+ * @function MobileDetect#versionStr
952
+ */
953
+ versionStr: function (key) {
954
+ return impl.getVersionStr(key, this.ua);
955
+ },
956
+
957
+ /**
958
+ * Global test key against userAgent, os, phone, tablet and some other properties of userAgent string.
959
+ *
960
+ * @param {String} key the key (case-insensitive) of a userAgent, an operating system, phone or
961
+ * tablet family.<br>
962
+ * For a complete list of possible values, see {@link MobileDetect#userAgent},
963
+ * {@link MobileDetect#os}, {@link MobileDetect#phone}, {@link MobileDetect#tablet}.<br>
964
+ * Additionally you have following keys:<br>
965
+ * <br><tt>Bot, MobileBot, DesktopMode, TV, WebKit, Console, Watch</tt><br>
966
+ *
967
+ * @returns {boolean} <tt>true</tt> when the given key is one of the defined keys of userAgent, os, phone,
968
+ * tablet or one of the listed additional keys, otherwise <tt>false</tt>
969
+ * @function MobileDetect#is
970
+ */
971
+ is: function (key) {
972
+ return containsIC(this.userAgents(), key) ||
973
+ equalIC(key, this.os()) ||
974
+ equalIC(key, this.phone()) ||
975
+ equalIC(key, this.tablet()) ||
976
+ containsIC(impl.findMatches(impl.mobileDetectRules.utils, this.ua), key);
977
+ },
978
+
979
+ /**
980
+ * Do a quick test against navigator::userAgent.
981
+ *
982
+ * @param {String|RegExp} pattern the pattern, either as String or RegExp
983
+ * (a string will be converted to a case-insensitive RegExp).
984
+ * @returns {boolean} <tt>true</tt> when the pattern matches, otherwise <tt>false</tt>
985
+ * @function MobileDetect#match
986
+ */
987
+ match: function (pattern) {
988
+ if (!(pattern instanceof RegExp)) {
989
+ pattern = new RegExp(pattern, 'i');
990
+ }
991
+ return pattern.test(this.ua);
992
+ },
993
+
994
+ /**
995
+ * Checks whether the mobile device can be considered as phone regarding <code>screen.width</code>.
996
+ * <br>
997
+ * Obviously this method makes sense in browser environments only (not for Node.js)!
998
+ * @param {number} [maxPhoneWidth] the maximum logical pixels (aka. CSS-pixels) to be considered as phone.<br>
999
+ * The argument is optional and if not present or falsy, the value of the constructor is taken.
1000
+ * @returns {boolean|undefined} <code>undefined</code> if screen size wasn't detectable, else <code>true</code>
1001
+ * when screen.width is less or equal to maxPhoneWidth, otherwise <code>false</code>.<br>
1002
+ * Will always return <code>undefined</code> server-side.
1003
+ */
1004
+ isPhoneSized: function (maxPhoneWidth) {
1005
+ return MobileDetect.isPhoneSized(maxPhoneWidth || this.maxPhoneWidth);
1006
+ },
1007
+
1008
+ /**
1009
+ * Returns the mobile grade ('A', 'B', 'C').
1010
+ *
1011
+ * @returns {String} one of the mobile grades ('A', 'B', 'C').
1012
+ * @function MobileDetect#mobileGrade
1013
+ */
1014
+ mobileGrade: function () {
1015
+ if (this._cache.grade === undefined) {
1016
+ this._cache.grade = impl.mobileGrade(this);
1017
+ }
1018
+ return this._cache.grade;
1019
+ }
1020
+ };
1021
+
1022
+ // environment-dependent
1023
+ if (typeof window !== 'undefined' && window.screen) {
1024
+ MobileDetect.isPhoneSized = function (maxPhoneWidth) {
1025
+ return maxPhoneWidth < 0 ? undefined : impl.getDeviceSmallerSide() <= maxPhoneWidth;
1026
+ };
1027
+ } else {
1028
+ MobileDetect.isPhoneSized = function () {};
1029
+ }
1030
+
1031
+ // should not be replaced by a completely new object - just overwrite existing methods
1032
+ MobileDetect._impl = impl;
1033
+
1034
+ MobileDetect.version = '1.4.4 2019-09-21';
1035
+
1036
+ return MobileDetect;
1037
+ }); // end of call of define()
1038
+ })((function (undefined) {
1039
+ if (typeof module !== 'undefined' && module.exports) {
1040
+ return function (factory) { module.exports = factory(); };
1041
+ } else if (typeof define === 'function' && define.amd) {
1042
+ return define;
1043
+ } else if (typeof window !== 'undefined') {
1044
+ return function (factory) { window.MobileDetect = factory(); };
1045
+ } else {
1046
+ // please file a bug if you get this error!
1047
+ throw new Error('unknown environment');
1048
+ }
1049
+ })());
1050
+
includes/js/ai-mobile-detect.min.js ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ (function(h,f){h(function(){function m(a,b){return null!=a&&null!=b&&a.toLowerCase()===b.toLowerCase()}function h(a,b){var c,d=a.length;if(!d||!b)return!1;var f=b.toLowerCase();for(c=0;c<d;++c)if(f===a[c].toLowerCase())return!0;return!1}function k(a){for(var b in a)l.call(a,b)&&(a[b]=new RegExp(a[b],"i"))}function g(a,b){this.ua=(a||"").substr(0,500);this._cache={};this.maxPhoneWidth=b||600}var b={mobileDetectRules:{phones:{iPhone:"\\biPhone\\b|\\biPod\\b",BlackBerry:"BlackBerry|\\bBB10\\b|rim[0-9]+|\\b(BBA100|BBB100|BBD100|BBE100|BBF100|STH100)\\b-[0-9]+",
2
+ HTC:"HTC|HTC.*(Sensation|Evo|Vision|Explorer|6800|8100|8900|A7272|S510e|C110e|Legend|Desire|T8282)|APX515CKT|Qtek9090|APA9292KT|HD_mini|Sensation.*Z710e|PG86100|Z715e|Desire.*(A8181|HD)|ADR6200|ADR6400L|ADR6425|001HT|Inspire 4G|Android.*\\bEVO\\b|T-Mobile G1|Z520m|Android [0-9.]+; Pixel",Nexus:"Nexus One|Nexus S|Galaxy.*Nexus|Android.*Nexus.*Mobile|Nexus 4|Nexus 5|Nexus 6",Dell:"Dell[;]? (Streak|Aero|Venue|Venue Pro|Flash|Smoke|Mini 3iX)|XCD28|XCD35|\\b001DL\\b|\\b101DL\\b|\\bGS01\\b",Motorola:"Motorola|DROIDX|DROID BIONIC|\\bDroid\\b.*Build|Android.*Xoom|HRI39|MOT-|A1260|A1680|A555|A853|A855|A953|A955|A956|Motorola.*ELECTRIFY|Motorola.*i1|i867|i940|MB200|MB300|MB501|MB502|MB508|MB511|MB520|MB525|MB526|MB611|MB612|MB632|MB810|MB855|MB860|MB861|MB865|MB870|ME501|ME502|ME511|ME525|ME600|ME632|ME722|ME811|ME860|ME863|ME865|MT620|MT710|MT716|MT720|MT810|MT870|MT917|Motorola.*TITANIUM|WX435|WX445|XT300|XT301|XT311|XT316|XT317|XT319|XT320|XT390|XT502|XT530|XT531|XT532|XT535|XT603|XT610|XT611|XT615|XT681|XT701|XT702|XT711|XT720|XT800|XT806|XT860|XT862|XT875|XT882|XT883|XT894|XT901|XT907|XT909|XT910|XT912|XT928|XT926|XT915|XT919|XT925|XT1021|\\bMoto E\\b|XT1068|XT1092|XT1052",
3
+ Samsung:"\\bSamsung\\b|SM-G950F|SM-G955F|SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B3730|GT-B3740|GT-B5510|GT-B5512|GT-B5722|GT-B6520|GT-B7300|GT-B7320|GT-B7330|GT-B7350|GT-B7510|GT-B7722|GT-B7800|GT-C3010|GT-C3011|GT-C3060|GT-C3200|GT-C3212|GT-C3212I|GT-C3262|GT-C3222|GT-C3300|GT-C3300K|GT-C3303|GT-C3303K|GT-C3310|GT-C3322|GT-C3330|GT-C3350|GT-C3500|GT-C3510|GT-C3530|GT-C3630|GT-C3780|GT-C5010|GT-C5212|GT-C6620|GT-C6625|GT-C6712|GT-E1050|GT-E1070|GT-E1075|GT-E1080|GT-E1081|GT-E1085|GT-E1087|GT-E1100|GT-E1107|GT-E1110|GT-E1120|GT-E1125|GT-E1130|GT-E1160|GT-E1170|GT-E1175|GT-E1180|GT-E1182|GT-E1200|GT-E1210|GT-E1225|GT-E1230|GT-E1390|GT-E2100|GT-E2120|GT-E2121|GT-E2152|GT-E2220|GT-E2222|GT-E2230|GT-E2232|GT-E2250|GT-E2370|GT-E2550|GT-E2652|GT-E3210|GT-E3213|GT-I5500|GT-I5503|GT-I5700|GT-I5800|GT-I5801|GT-I6410|GT-I6420|GT-I7110|GT-I7410|GT-I7500|GT-I8000|GT-I8150|GT-I8160|GT-I8190|GT-I8320|GT-I8330|GT-I8350|GT-I8530|GT-I8700|GT-I8703|GT-I8910|GT-I9000|GT-I9001|GT-I9003|GT-I9010|GT-I9020|GT-I9023|GT-I9070|GT-I9082|GT-I9100|GT-I9103|GT-I9220|GT-I9250|GT-I9300|GT-I9305|GT-I9500|GT-I9505|GT-M3510|GT-M5650|GT-M7500|GT-M7600|GT-M7603|GT-M8800|GT-M8910|GT-N7000|GT-S3110|GT-S3310|GT-S3350|GT-S3353|GT-S3370|GT-S3650|GT-S3653|GT-S3770|GT-S3850|GT-S5210|GT-S5220|GT-S5229|GT-S5230|GT-S5233|GT-S5250|GT-S5253|GT-S5260|GT-S5263|GT-S5270|GT-S5300|GT-S5330|GT-S5350|GT-S5360|GT-S5363|GT-S5369|GT-S5380|GT-S5380D|GT-S5560|GT-S5570|GT-S5600|GT-S5603|GT-S5610|GT-S5620|GT-S5660|GT-S5670|GT-S5690|GT-S5750|GT-S5780|GT-S5830|GT-S5839|GT-S6102|GT-S6500|GT-S7070|GT-S7200|GT-S7220|GT-S7230|GT-S7233|GT-S7250|GT-S7500|GT-S7530|GT-S7550|GT-S7562|GT-S7710|GT-S8000|GT-S8003|GT-S8500|GT-S8530|GT-S8600|SCH-A310|SCH-A530|SCH-A570|SCH-A610|SCH-A630|SCH-A650|SCH-A790|SCH-A795|SCH-A850|SCH-A870|SCH-A890|SCH-A930|SCH-A950|SCH-A970|SCH-A990|SCH-I100|SCH-I110|SCH-I400|SCH-I405|SCH-I500|SCH-I510|SCH-I515|SCH-I600|SCH-I730|SCH-I760|SCH-I770|SCH-I830|SCH-I910|SCH-I920|SCH-I959|SCH-LC11|SCH-N150|SCH-N300|SCH-R100|SCH-R300|SCH-R351|SCH-R400|SCH-R410|SCH-T300|SCH-U310|SCH-U320|SCH-U350|SCH-U360|SCH-U365|SCH-U370|SCH-U380|SCH-U410|SCH-U430|SCH-U450|SCH-U460|SCH-U470|SCH-U490|SCH-U540|SCH-U550|SCH-U620|SCH-U640|SCH-U650|SCH-U660|SCH-U700|SCH-U740|SCH-U750|SCH-U810|SCH-U820|SCH-U900|SCH-U940|SCH-U960|SCS-26UC|SGH-A107|SGH-A117|SGH-A127|SGH-A137|SGH-A157|SGH-A167|SGH-A177|SGH-A187|SGH-A197|SGH-A227|SGH-A237|SGH-A257|SGH-A437|SGH-A517|SGH-A597|SGH-A637|SGH-A657|SGH-A667|SGH-A687|SGH-A697|SGH-A707|SGH-A717|SGH-A727|SGH-A737|SGH-A747|SGH-A767|SGH-A777|SGH-A797|SGH-A817|SGH-A827|SGH-A837|SGH-A847|SGH-A867|SGH-A877|SGH-A887|SGH-A897|SGH-A927|SGH-B100|SGH-B130|SGH-B200|SGH-B220|SGH-C100|SGH-C110|SGH-C120|SGH-C130|SGH-C140|SGH-C160|SGH-C170|SGH-C180|SGH-C200|SGH-C207|SGH-C210|SGH-C225|SGH-C230|SGH-C417|SGH-C450|SGH-D307|SGH-D347|SGH-D357|SGH-D407|SGH-D415|SGH-D780|SGH-D807|SGH-D980|SGH-E105|SGH-E200|SGH-E315|SGH-E316|SGH-E317|SGH-E335|SGH-E590|SGH-E635|SGH-E715|SGH-E890|SGH-F300|SGH-F480|SGH-I200|SGH-I300|SGH-I320|SGH-I550|SGH-I577|SGH-I600|SGH-I607|SGH-I617|SGH-I627|SGH-I637|SGH-I677|SGH-I700|SGH-I717|SGH-I727|SGH-i747M|SGH-I777|SGH-I780|SGH-I827|SGH-I847|SGH-I857|SGH-I896|SGH-I897|SGH-I900|SGH-I907|SGH-I917|SGH-I927|SGH-I937|SGH-I997|SGH-J150|SGH-J200|SGH-L170|SGH-L700|SGH-M110|SGH-M150|SGH-M200|SGH-N105|SGH-N500|SGH-N600|SGH-N620|SGH-N625|SGH-N700|SGH-N710|SGH-P107|SGH-P207|SGH-P300|SGH-P310|SGH-P520|SGH-P735|SGH-P777|SGH-Q105|SGH-R210|SGH-R220|SGH-R225|SGH-S105|SGH-S307|SGH-T109|SGH-T119|SGH-T139|SGH-T209|SGH-T219|SGH-T229|SGH-T239|SGH-T249|SGH-T259|SGH-T309|SGH-T319|SGH-T329|SGH-T339|SGH-T349|SGH-T359|SGH-T369|SGH-T379|SGH-T409|SGH-T429|SGH-T439|SGH-T459|SGH-T469|SGH-T479|SGH-T499|SGH-T509|SGH-T519|SGH-T539|SGH-T559|SGH-T589|SGH-T609|SGH-T619|SGH-T629|SGH-T639|SGH-T659|SGH-T669|SGH-T679|SGH-T709|SGH-T719|SGH-T729|SGH-T739|SGH-T746|SGH-T749|SGH-T759|SGH-T769|SGH-T809|SGH-T819|SGH-T839|SGH-T919|SGH-T929|SGH-T939|SGH-T959|SGH-T989|SGH-U100|SGH-U200|SGH-U800|SGH-V205|SGH-V206|SGH-X100|SGH-X105|SGH-X120|SGH-X140|SGH-X426|SGH-X427|SGH-X475|SGH-X495|SGH-X497|SGH-X507|SGH-X600|SGH-X610|SGH-X620|SGH-X630|SGH-X700|SGH-X820|SGH-X890|SGH-Z130|SGH-Z150|SGH-Z170|SGH-ZX10|SGH-ZX20|SHW-M110|SPH-A120|SPH-A400|SPH-A420|SPH-A460|SPH-A500|SPH-A560|SPH-A600|SPH-A620|SPH-A660|SPH-A700|SPH-A740|SPH-A760|SPH-A790|SPH-A800|SPH-A820|SPH-A840|SPH-A880|SPH-A900|SPH-A940|SPH-A960|SPH-D600|SPH-D700|SPH-D710|SPH-D720|SPH-I300|SPH-I325|SPH-I330|SPH-I350|SPH-I500|SPH-I600|SPH-I700|SPH-L700|SPH-M100|SPH-M220|SPH-M240|SPH-M300|SPH-M305|SPH-M320|SPH-M330|SPH-M350|SPH-M360|SPH-M370|SPH-M380|SPH-M510|SPH-M540|SPH-M550|SPH-M560|SPH-M570|SPH-M580|SPH-M610|SPH-M620|SPH-M630|SPH-M800|SPH-M810|SPH-M850|SPH-M900|SPH-M910|SPH-M920|SPH-M930|SPH-N100|SPH-N200|SPH-N240|SPH-N300|SPH-N400|SPH-Z400|SWC-E100|SCH-i909|GT-N7100|GT-N7105|SCH-I535|SM-N900A|SGH-I317|SGH-T999L|GT-S5360B|GT-I8262|GT-S6802|GT-S6312|GT-S6310|GT-S5312|GT-S5310|GT-I9105|GT-I8510|GT-S6790N|SM-G7105|SM-N9005|GT-S5301|GT-I9295|GT-I9195|SM-C101|GT-S7392|GT-S7560|GT-B7610|GT-I5510|GT-S7582|GT-S7530E|GT-I8750|SM-G9006V|SM-G9008V|SM-G9009D|SM-G900A|SM-G900D|SM-G900F|SM-G900H|SM-G900I|SM-G900J|SM-G900K|SM-G900L|SM-G900M|SM-G900P|SM-G900R4|SM-G900S|SM-G900T|SM-G900V|SM-G900W8|SHV-E160K|SCH-P709|SCH-P729|SM-T2558|GT-I9205|SM-G9350|SM-J120F|SM-G920F|SM-G920V|SM-G930F|SM-N910C|SM-A310F|GT-I9190|SM-J500FN|SM-G903F|SM-J330F",
4
+ LG:"\\bLG\\b;|LG[- ]?(C800|C900|E400|E610|E900|E-900|F160|F180K|F180L|F180S|730|855|L160|LS740|LS840|LS970|LU6200|MS690|MS695|MS770|MS840|MS870|MS910|P500|P700|P705|VM696|AS680|AS695|AX840|C729|E970|GS505|272|C395|E739BK|E960|L55C|L75C|LS696|LS860|P769BK|P350|P500|P509|P870|UN272|US730|VS840|VS950|LN272|LN510|LS670|LS855|LW690|MN270|MN510|P509|P769|P930|UN200|UN270|UN510|UN610|US670|US740|US760|UX265|UX840|VN271|VN530|VS660|VS700|VS740|VS750|VS910|VS920|VS930|VX9200|VX11000|AX840A|LW770|P506|P925|P999|E612|D955|D802|MS323|M257)|LM-G710",
5
+ Sony:"SonyST|SonyLT|SonyEricsson|SonyEricssonLT15iv|LT18i|E10i|LT28h|LT26w|SonyEricssonMT27i|C5303|C6902|C6903|C6906|C6943|D2533",Asus:"Asus.*Galaxy|PadFone.*Mobile",NokiaLumia:"Lumia [0-9]{3,4}",Micromax:"Micromax.*\\b(A210|A92|A88|A72|A111|A110Q|A115|A116|A110|A90S|A26|A51|A35|A54|A25|A27|A89|A68|A65|A57|A90)\\b",Palm:"PalmSource|Palm",Vertu:"Vertu|Vertu.*Ltd|Vertu.*Ascent|Vertu.*Ayxta|Vertu.*Constellation(F|Quest)?|Vertu.*Monika|Vertu.*Signature",Pantech:"PANTECH|IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|IM-A725L|IM-A780L|IM-A775C|IM-A770K|IM-A760S|IM-A750K|IM-A740S|IM-A730S|IM-A720L|IM-A710K|IM-A690L|IM-A690S|IM-A650S|IM-A630K|IM-A600S|VEGA PTL21|PT003|P8010|ADR910L|P6030|P6020|P9070|P4100|P9060|P5000|CDM8992|TXT8045|ADR8995|IS11PT|P2030|P6010|P8000|PT002|IS06|CDM8999|P9050|PT001|TXT8040|P2020|P9020|P2000|P7040|P7000|C790",
6
+ Fly:"IQ230|IQ444|IQ450|IQ440|IQ442|IQ441|IQ245|IQ256|IQ236|IQ255|IQ235|IQ245|IQ275|IQ240|IQ285|IQ280|IQ270|IQ260|IQ250",Wiko:"KITE 4G|HIGHWAY|GETAWAY|STAIRWAY|DARKSIDE|DARKFULL|DARKNIGHT|DARKMOON|SLIDE|WAX 4G|RAINBOW|BLOOM|SUNSET|GOA(?!nna)|LENNY|BARRY|IGGY|OZZY|CINK FIVE|CINK PEAX|CINK PEAX 2|CINK SLIM|CINK SLIM 2|CINK +|CINK KING|CINK PEAX|CINK SLIM|SUBLIM",iMobile:"i-mobile (IQ|i-STYLE|idea|ZAA|Hitz)",SimValley:"\\b(SP-80|XT-930|SX-340|XT-930|SX-310|SP-360|SP60|SPT-800|SP-120|SPT-800|SP-140|SPX-5|SPX-8|SP-100|SPX-8|SPX-12)\\b",
7
+ Wolfgang:"AT-B24D|AT-AS50HD|AT-AS40W|AT-AS55HD|AT-AS45q2|AT-B26D|AT-AS50Q",Alcatel:"Alcatel",Nintendo:"Nintendo (3DS|Switch)",Amoi:"Amoi",INQ:"INQ",OnePlus:"ONEPLUS",GenericPhone:"Tapatalk|PDA;|SAGEM|\\bmmp\\b|pocket|\\bpsp\\b|symbian|Smartphone|smartfon|treo|up.browser|up.link|vodafone|\\bwap\\b|nokia|Series40|Series60|S60|SonyEricsson|N900|MAUI.*WAP.*Browser"},tablets:{iPad:"iPad|iPad.*Mobile",NexusTablet:"Android.*Nexus[\\s]+(7|9|10)",GoogleTablet:"Android.*Pixel C",SamsungTablet:"SAMSUNG.*Tablet|Galaxy.*Tab|SC-01C|GT-P1000|GT-P1003|GT-P1010|GT-P3105|GT-P6210|GT-P6800|GT-P6810|GT-P7100|GT-P7300|GT-P7310|GT-P7500|GT-P7510|SCH-I800|SCH-I815|SCH-I905|SGH-I957|SGH-I987|SGH-T849|SGH-T859|SGH-T869|SPH-P100|GT-P3100|GT-P3108|GT-P3110|GT-P5100|GT-P5110|GT-P6200|GT-P7320|GT-P7511|GT-N8000|GT-P8510|SGH-I497|SPH-P500|SGH-T779|SCH-I705|SCH-I915|GT-N8013|GT-P3113|GT-P5113|GT-P8110|GT-N8010|GT-N8005|GT-N8020|GT-P1013|GT-P6201|GT-P7501|GT-N5100|GT-N5105|GT-N5110|SHV-E140K|SHV-E140L|SHV-E140S|SHV-E150S|SHV-E230K|SHV-E230L|SHV-E230S|SHW-M180K|SHW-M180L|SHW-M180S|SHW-M180W|SHW-M300W|SHW-M305W|SHW-M380K|SHW-M380S|SHW-M380W|SHW-M430W|SHW-M480K|SHW-M480S|SHW-M480W|SHW-M485W|SHW-M486W|SHW-M500W|GT-I9228|SCH-P739|SCH-I925|GT-I9200|GT-P5200|GT-P5210|GT-P5210X|SM-T311|SM-T310|SM-T310X|SM-T210|SM-T210R|SM-T211|SM-P600|SM-P601|SM-P605|SM-P900|SM-P901|SM-T217|SM-T217A|SM-T217S|SM-P6000|SM-T3100|SGH-I467|XE500|SM-T110|GT-P5220|GT-I9200X|GT-N5110X|GT-N5120|SM-P905|SM-T111|SM-T2105|SM-T315|SM-T320|SM-T320X|SM-T321|SM-T520|SM-T525|SM-T530NU|SM-T230NU|SM-T330NU|SM-T900|XE500T1C|SM-P605V|SM-P905V|SM-T337V|SM-T537V|SM-T707V|SM-T807V|SM-P600X|SM-P900X|SM-T210X|SM-T230|SM-T230X|SM-T325|GT-P7503|SM-T531|SM-T330|SM-T530|SM-T705|SM-T705C|SM-T535|SM-T331|SM-T800|SM-T700|SM-T537|SM-T807|SM-P907A|SM-T337A|SM-T537A|SM-T707A|SM-T807A|SM-T237|SM-T807P|SM-P607T|SM-T217T|SM-T337T|SM-T807T|SM-T116NQ|SM-T116BU|SM-P550|SM-T350|SM-T550|SM-T9000|SM-P9000|SM-T705Y|SM-T805|GT-P3113|SM-T710|SM-T810|SM-T815|SM-T360|SM-T533|SM-T113|SM-T335|SM-T715|SM-T560|SM-T670|SM-T677|SM-T377|SM-T567|SM-T357T|SM-T555|SM-T561|SM-T713|SM-T719|SM-T813|SM-T819|SM-T580|SM-T355Y?|SM-T280|SM-T817A|SM-T820|SM-W700|SM-P580|SM-T587|SM-P350|SM-P555M|SM-P355M|SM-T113NU|SM-T815Y|SM-T585|SM-T285|SM-T825|SM-W708|SM-T835|SM-T830|SM-T837V|SM-T720|SM-T510|SM-T387V",
8
+ Kindle:"Kindle|Silk.*Accelerated|Android.*\\b(KFOT|KFTT|KFJWI|KFJWA|KFOTE|KFSOWI|KFTHWI|KFTHWA|KFAPWI|KFAPWA|WFJWAE|KFSAWA|KFSAWI|KFASWI|KFARWI|KFFOWI|KFGIWI|KFMEWI)\\b|Android.*Silk/[0-9.]+ like Chrome/[0-9.]+ (?!Mobile)",SurfaceTablet:"Windows NT [0-9.]+; ARM;.*(Tablet|ARMBJS)",HPTablet:"HP Slate (7|8|10)|HP ElitePad 900|hp-tablet|EliteBook.*Touch|HP 8|Slate 21|HP SlateBook 10",AsusTablet:"^.*PadFone((?!Mobile).)*$|Transformer|TF101|TF101G|TF300T|TF300TG|TF300TL|TF700T|TF700KL|TF701T|TF810C|ME171|ME301T|ME302C|ME371MG|ME370T|ME372MG|ME172V|ME173X|ME400C|Slider SL101|\\bK00F\\b|\\bK00C\\b|\\bK00E\\b|\\bK00L\\b|TX201LA|ME176C|ME102A|\\bM80TA\\b|ME372CL|ME560CG|ME372CG|ME302KL| K010 | K011 | K017 | K01E |ME572C|ME103K|ME170C|ME171C|\\bME70C\\b|ME581C|ME581CL|ME8510C|ME181C|P01Y|PO1MA|P01Z|\\bP027\\b|\\bP024\\b|\\bP00C\\b",
9
+ BlackBerryTablet:"PlayBook|RIM Tablet",HTCtablet:"HTC_Flyer_P512|HTC Flyer|HTC Jetstream|HTC-P715a|HTC EVO View 4G|PG41200|PG09410",MotorolaTablet:"xoom|sholest|MZ615|MZ605|MZ505|MZ601|MZ602|MZ603|MZ604|MZ606|MZ607|MZ608|MZ609|MZ615|MZ616|MZ617",NookTablet:"Android.*Nook|NookColor|nook browser|BNRV200|BNRV200A|BNTV250|BNTV250A|BNTV400|BNTV600|LogicPD Zoom2",AcerTablet:"Android.*; \\b(A100|A101|A110|A200|A210|A211|A500|A501|A510|A511|A700|A701|W500|W500P|W501|W501P|W510|W511|W700|G100|G100W|B1-A71|B1-710|B1-711|A1-810|A1-811|A1-830)\\b|W3-810|\\bA3-A10\\b|\\bA3-A11\\b|\\bA3-A20\\b|\\bA3-A30",
10
+ ToshibaTablet:"Android.*(AT100|AT105|AT200|AT205|AT270|AT275|AT300|AT305|AT1S5|AT500|AT570|AT700|AT830)|TOSHIBA.*FOLIO",LGTablet:"\\bL-06C|LG-V909|LG-V900|LG-V700|LG-V510|LG-V500|LG-V410|LG-V400|LG-VK810\\b",FujitsuTablet:"Android.*\\b(F-01D|F-02F|F-05E|F-10D|M532|Q572)\\b",PrestigioTablet:"PMP3170B|PMP3270B|PMP3470B|PMP7170B|PMP3370B|PMP3570C|PMP5870C|PMP3670B|PMP5570C|PMP5770D|PMP3970B|PMP3870C|PMP5580C|PMP5880D|PMP5780D|PMP5588C|PMP7280C|PMP7280C3G|PMP7280|PMP7880D|PMP5597D|PMP5597|PMP7100D|PER3464|PER3274|PER3574|PER3884|PER5274|PER5474|PMP5097CPRO|PMP5097|PMP7380D|PMP5297C|PMP5297C_QUAD|PMP812E|PMP812E3G|PMP812F|PMP810E|PMP880TD|PMT3017|PMT3037|PMT3047|PMT3057|PMT7008|PMT5887|PMT5001|PMT5002",
11
+ LenovoTablet:"Lenovo TAB|Idea(Tab|Pad)( A1|A10| K1|)|ThinkPad([ ]+)?Tablet|YT3-850M|YT3-X90L|YT3-X90F|YT3-X90X|Lenovo.*(S2109|S2110|S5000|S6000|K3011|A3000|A3500|A1000|A2107|A2109|A1107|A5500|A7600|B6000|B8000|B8080)(-|)(FL|F|HV|H|)|TB-X103F|TB-X304X|TB-X304F|TB-X304L|TB-X505F|TB-X505L|TB-X505X|TB-X605F|TB-X605L|TB-8703F|TB-8703X|TB-8703N|TB-8704N|TB-8704F|TB-8704X|TB-8704V|TB-7304F|TB-7304I|TB-7304X|Tab2A7-10F|Tab2A7-20F|TB2-X30L|YT3-X50L|YT3-X50F|YT3-X50M|YT-X705F|YT-X703F|YT-X703L|YT-X705L|YT-X705X|TB2-X30F|TB2-X30L|TB2-X30M|A2107A-F|A2107A-H|TB3-730F|TB3-730M|TB3-730X|TB-7504F|TB-7504X",
12
+ DellTablet:"Venue 11|Venue 8|Venue 7|Dell Streak 10|Dell Streak 7",YarvikTablet:"Android.*\\b(TAB210|TAB211|TAB224|TAB250|TAB260|TAB264|TAB310|TAB360|TAB364|TAB410|TAB411|TAB420|TAB424|TAB450|TAB460|TAB461|TAB464|TAB465|TAB467|TAB468|TAB07-100|TAB07-101|TAB07-150|TAB07-151|TAB07-152|TAB07-200|TAB07-201-3G|TAB07-210|TAB07-211|TAB07-212|TAB07-214|TAB07-220|TAB07-400|TAB07-485|TAB08-150|TAB08-200|TAB08-201-3G|TAB08-201-30|TAB09-100|TAB09-211|TAB09-410|TAB10-150|TAB10-201|TAB10-211|TAB10-400|TAB10-410|TAB13-201|TAB274EUK|TAB275EUK|TAB374EUK|TAB462EUK|TAB474EUK|TAB9-200)\\b",
13
+ MedionTablet:"Android.*\\bOYO\\b|LIFE.*(P9212|P9514|P9516|S9512)|LIFETAB",ArnovaTablet:"97G4|AN10G2|AN7bG3|AN7fG3|AN8G3|AN8cG3|AN7G3|AN9G3|AN7dG3|AN7dG3ST|AN7dG3ChildPad|AN10bG3|AN10bG3DT|AN9G2",IntensoTablet:"INM8002KP|INM1010FP|INM805ND|Intenso Tab|TAB1004",IRUTablet:"M702pro",MegafonTablet:"MegaFon V9|\\bZTE V9\\b|Android.*\\bMT7A\\b",EbodaTablet:"E-Boda (Supreme|Impresspeed|Izzycomm|Essential)",AllViewTablet:"Allview.*(Viva|Alldro|City|Speed|All TV|Frenzy|Quasar|Shine|TX1|AX1|AX2)",ArchosTablet:"\\b(101G9|80G9|A101IT)\\b|Qilive 97R|Archos5|\\bARCHOS (70|79|80|90|97|101|FAMILYPAD|)(b|c|)(G10| Cobalt| TITANIUM(HD|)| Xenon| Neon|XSK| 2| XS 2| PLATINUM| CARBON|GAMEPAD)\\b",
14
+ AinolTablet:"NOVO7|NOVO8|NOVO10|Novo7Aurora|Novo7Basic|NOVO7PALADIN|novo9-Spark",NokiaLumiaTablet:"Lumia 2520",SonyTablet:"Sony.*Tablet|Xperia Tablet|Sony Tablet S|SO-03E|SGPT12|SGPT13|SGPT114|SGPT121|SGPT122|SGPT123|SGPT111|SGPT112|SGPT113|SGPT131|SGPT132|SGPT133|SGPT211|SGPT212|SGPT213|SGP311|SGP312|SGP321|EBRD1101|EBRD1102|EBRD1201|SGP351|SGP341|SGP511|SGP512|SGP521|SGP541|SGP551|SGP621|SGP641|SGP612|SOT31|SGP771|SGP611|SGP612|SGP712",PhilipsTablet:"\\b(PI2010|PI3000|PI3100|PI3105|PI3110|PI3205|PI3210|PI3900|PI4010|PI7000|PI7100)\\b",
15
+ CubeTablet:"Android.*(K8GT|U9GT|U10GT|U16GT|U17GT|U18GT|U19GT|U20GT|U23GT|U30GT)|CUBE U8GT",CobyTablet:"MID1042|MID1045|MID1125|MID1126|MID7012|MID7014|MID7015|MID7034|MID7035|MID7036|MID7042|MID7048|MID7127|MID8042|MID8048|MID8127|MID9042|MID9740|MID9742|MID7022|MID7010",MIDTablet:"M9701|M9000|M9100|M806|M1052|M806|T703|MID701|MID713|MID710|MID727|MID760|MID830|MID728|MID933|MID125|MID810|MID732|MID120|MID930|MID800|MID731|MID900|MID100|MID820|MID735|MID980|MID130|MID833|MID737|MID960|MID135|MID860|MID736|MID140|MID930|MID835|MID733|MID4X10",
16
+ MSITablet:"MSI \\b(Primo 73K|Primo 73L|Primo 81L|Primo 77|Primo 93|Primo 75|Primo 76|Primo 73|Primo 81|Primo 91|Primo 90|Enjoy 71|Enjoy 7|Enjoy 10)\\b",SMiTTablet:"Android.*(\\bMID\\b|MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)",RockChipTablet:"Android.*(RK2818|RK2808A|RK2918|RK3066)|RK2738|RK2808A",FlyTablet:"IQ310|Fly Vision",bqTablet:"Android.*(bq)?.*\\b(Elcano|Curie|Edison|Maxwell|Kepler|Pascal|Tesla|Hypatia|Platon|Newton|Livingstone|Cervantes|Avant|Aquaris ([E|M]10|M8))\\b|Maxwell.*Lite|Maxwell.*Plus",
17
+ HuaweiTablet:"MediaPad|MediaPad 7 Youth|IDEOS S7|S7-201c|S7-202u|S7-101|S7-103|S7-104|S7-105|S7-106|S7-201|S7-Slim|M2-A01L|BAH-L09|BAH-W09|AGS-L09|CMR-AL19",NecTablet:"\\bN-06D|\\bN-08D",PantechTablet:"Pantech.*P4100",BronchoTablet:"Broncho.*(N701|N708|N802|a710)",VersusTablet:"TOUCHPAD.*[78910]|\\bTOUCHTAB\\b",ZyncTablet:"z1000|Z99 2G|z930|z990|z909|Z919|z900",PositivoTablet:"TB07STA|TB10STA|TB07FTA|TB10FTA",NabiTablet:"Android.*\\bNabi",KoboTablet:"Kobo Touch|\\bK080\\b|\\bVox\\b Build|\\bArc\\b Build",
18
+ DanewTablet:"DSlide.*\\b(700|701R|702|703R|704|802|970|971|972|973|974|1010|1012)\\b",TexetTablet:"NaviPad|TB-772A|TM-7045|TM-7055|TM-9750|TM-7016|TM-7024|TM-7026|TM-7041|TM-7043|TM-7047|TM-8041|TM-9741|TM-9747|TM-9748|TM-9751|TM-7022|TM-7021|TM-7020|TM-7011|TM-7010|TM-7023|TM-7025|TM-7037W|TM-7038W|TM-7027W|TM-9720|TM-9725|TM-9737W|TM-1020|TM-9738W|TM-9740|TM-9743W|TB-807A|TB-771A|TB-727A|TB-725A|TB-719A|TB-823A|TB-805A|TB-723A|TB-715A|TB-707A|TB-705A|TB-709A|TB-711A|TB-890HD|TB-880HD|TB-790HD|TB-780HD|TB-770HD|TB-721HD|TB-710HD|TB-434HD|TB-860HD|TB-840HD|TB-760HD|TB-750HD|TB-740HD|TB-730HD|TB-722HD|TB-720HD|TB-700HD|TB-500HD|TB-470HD|TB-431HD|TB-430HD|TB-506|TB-504|TB-446|TB-436|TB-416|TB-146SE|TB-126SE",
19
+ PlaystationTablet:"Playstation.*(Portable|Vita)",TrekstorTablet:"ST10416-1|VT10416-1|ST70408-1|ST702xx-1|ST702xx-2|ST80208|ST97216|ST70104-2|VT10416-2|ST10216-2A|SurfTab",PyleAudioTablet:"\\b(PTBL10CEU|PTBL10C|PTBL72BC|PTBL72BCEU|PTBL7CEU|PTBL7C|PTBL92BC|PTBL92BCEU|PTBL9CEU|PTBL9CUK|PTBL9C)\\b",AdvanTablet:"Android.* \\b(E3A|T3X|T5C|T5B|T3E|T3C|T3B|T1J|T1F|T2A|T1H|T1i|E1C|T1-E|T5-A|T4|E1-B|T2Ci|T1-B|T1-D|O1-A|E1-A|T1-A|T3A|T4i)\\b ",DanyTechTablet:"Genius Tab G3|Genius Tab S2|Genius Tab Q3|Genius Tab G4|Genius Tab Q4|Genius Tab G-II|Genius TAB GII|Genius TAB GIII|Genius Tab S1",
20
+ GalapadTablet:"Android.*\\bG1\\b(?!\\))",MicromaxTablet:"Funbook|Micromax.*\\b(P250|P560|P360|P362|P600|P300|P350|P500|P275)\\b",KarbonnTablet:"Android.*\\b(A39|A37|A34|ST8|ST10|ST7|Smart Tab3|Smart Tab2)\\b",AllFineTablet:"Fine7 Genius|Fine7 Shine|Fine7 Air|Fine8 Style|Fine9 More|Fine10 Joy|Fine11 Wide",PROSCANTablet:"\\b(PEM63|PLT1023G|PLT1041|PLT1044|PLT1044G|PLT1091|PLT4311|PLT4311PL|PLT4315|PLT7030|PLT7033|PLT7033D|PLT7035|PLT7035D|PLT7044K|PLT7045K|PLT7045KB|PLT7071KG|PLT7072|PLT7223G|PLT7225G|PLT7777G|PLT7810K|PLT7849G|PLT7851G|PLT7852G|PLT8015|PLT8031|PLT8034|PLT8036|PLT8080K|PLT8082|PLT8088|PLT8223G|PLT8234G|PLT8235G|PLT8816K|PLT9011|PLT9045K|PLT9233G|PLT9735|PLT9760G|PLT9770G)\\b",
21
+ YONESTablet:"BQ1078|BC1003|BC1077|RK9702|BC9730|BC9001|IT9001|BC7008|BC7010|BC708|BC728|BC7012|BC7030|BC7027|BC7026",ChangJiaTablet:"TPC7102|TPC7103|TPC7105|TPC7106|TPC7107|TPC7201|TPC7203|TPC7205|TPC7210|TPC7708|TPC7709|TPC7712|TPC7110|TPC8101|TPC8103|TPC8105|TPC8106|TPC8203|TPC8205|TPC8503|TPC9106|TPC9701|TPC97101|TPC97103|TPC97105|TPC97106|TPC97111|TPC97113|TPC97203|TPC97603|TPC97809|TPC97205|TPC10101|TPC10103|TPC10106|TPC10111|TPC10203|TPC10205|TPC10503",GUTablet:"TX-A1301|TX-M9002|Q702|kf026",
22
+ PointOfViewTablet:"TAB-P506|TAB-navi-7-3G-M|TAB-P517|TAB-P-527|TAB-P701|TAB-P703|TAB-P721|TAB-P731N|TAB-P741|TAB-P825|TAB-P905|TAB-P925|TAB-PR945|TAB-PL1015|TAB-P1025|TAB-PI1045|TAB-P1325|TAB-PROTAB[0-9]+|TAB-PROTAB25|TAB-PROTAB26|TAB-PROTAB27|TAB-PROTAB26XL|TAB-PROTAB2-IPS9|TAB-PROTAB30-IPS9|TAB-PROTAB25XXL|TAB-PROTAB26-IPS10|TAB-PROTAB30-IPS10",OvermaxTablet:"OV-(SteelCore|NewBase|Basecore|Baseone|Exellen|Quattor|EduTab|Solution|ACTION|BasicTab|TeddyTab|MagicTab|Stream|TB-08|TB-09)|Qualcore 1027",
23
+ HCLTablet:"HCL.*Tablet|Connect-3G-2.0|Connect-2G-2.0|ME Tablet U1|ME Tablet U2|ME Tablet G1|ME Tablet X1|ME Tablet Y2|ME Tablet Sync",DPSTablet:"DPS Dream 9|DPS Dual 7",VistureTablet:"V97 HD|i75 3G|Visture V4( HD)?|Visture V5( HD)?|Visture V10",CrestaTablet:"CTP(-)?810|CTP(-)?818|CTP(-)?828|CTP(-)?838|CTP(-)?888|CTP(-)?978|CTP(-)?980|CTP(-)?987|CTP(-)?988|CTP(-)?989",MediatekTablet:"\\bMT8125|MT8389|MT8135|MT8377\\b",ConcordeTablet:"Concorde([ ]+)?Tab|ConCorde ReadMan",GoCleverTablet:"GOCLEVER TAB|A7GOCLEVER|M1042|M7841|M742|R1042BK|R1041|TAB A975|TAB A7842|TAB A741|TAB A741L|TAB M723G|TAB M721|TAB A1021|TAB I921|TAB R721|TAB I720|TAB T76|TAB R70|TAB R76.2|TAB R106|TAB R83.2|TAB M813G|TAB I721|GCTA722|TAB I70|TAB I71|TAB S73|TAB R73|TAB R74|TAB R93|TAB R75|TAB R76.1|TAB A73|TAB A93|TAB A93.2|TAB T72|TAB R83|TAB R974|TAB R973|TAB A101|TAB A103|TAB A104|TAB A104.2|R105BK|M713G|A972BK|TAB A971|TAB R974.2|TAB R104|TAB R83.3|TAB A1042",
24
+ ModecomTablet:"FreeTAB 9000|FreeTAB 7.4|FreeTAB 7004|FreeTAB 7800|FreeTAB 2096|FreeTAB 7.5|FreeTAB 1014|FreeTAB 1001 |FreeTAB 8001|FreeTAB 9706|FreeTAB 9702|FreeTAB 7003|FreeTAB 7002|FreeTAB 1002|FreeTAB 7801|FreeTAB 1331|FreeTAB 1004|FreeTAB 8002|FreeTAB 8014|FreeTAB 9704|FreeTAB 1003",VoninoTablet:"\\b(Argus[ _]?S|Diamond[ _]?79HD|Emerald[ _]?78E|Luna[ _]?70C|Onyx[ _]?S|Onyx[ _]?Z|Orin[ _]?HD|Orin[ _]?S|Otis[ _]?S|SpeedStar[ _]?S|Magnet[ _]?M9|Primus[ _]?94[ _]?3G|Primus[ _]?94HD|Primus[ _]?QS|Android.*\\bQ8\\b|Sirius[ _]?EVO[ _]?QS|Sirius[ _]?QS|Spirit[ _]?S)\\b",
25
+ ECSTablet:"V07OT2|TM105A|S10OT1|TR10CS1",StorexTablet:"eZee[_']?(Tab|Go)[0-9]+|TabLC7|Looney Tunes Tab",VodafoneTablet:"SmartTab([ ]+)?[0-9]+|SmartTabII10|SmartTabII7|VF-1497|VFD 1400",EssentielBTablet:"Smart[ ']?TAB[ ]+?[0-9]+|Family[ ']?TAB2",RossMoorTablet:"RM-790|RM-997|RMD-878G|RMD-974R|RMT-705A|RMT-701|RME-601|RMT-501|RMT-711",iMobileTablet:"i-mobile i-note",TolinoTablet:"tolino tab [0-9.]+|tolino shine",AudioSonicTablet:"\\bC-22Q|T7-QC|T-17B|T-17P\\b",AMPETablet:"Android.* A78 ",SkkTablet:"Android.* (SKYPAD|PHOENIX|CYCLOPS)",
26
+ TecnoTablet:"TECNO P9|TECNO DP8D",JXDTablet:"Android.* \\b(F3000|A3300|JXD5000|JXD3000|JXD2000|JXD300B|JXD300|S5800|S7800|S602b|S5110b|S7300|S5300|S602|S603|S5100|S5110|S601|S7100a|P3000F|P3000s|P101|P200s|P1000m|P200m|P9100|P1000s|S6600b|S908|P1000|P300|S18|S6600|S9100)\\b",iJoyTablet:"Tablet (Spirit 7|Essentia|Galatea|Fusion|Onix 7|Landa|Titan|Scooby|Deox|Stella|Themis|Argon|Unique 7|Sygnus|Hexen|Finity 7|Cream|Cream X2|Jade|Neon 7|Neron 7|Kandy|Scape|Saphyr 7|Rebel|Biox|Rebel|Rebel 8GB|Myst|Draco 7|Myst|Tab7-004|Myst|Tadeo Jones|Tablet Boing|Arrow|Draco Dual Cam|Aurix|Mint|Amity|Revolution|Finity 9|Neon 9|T9w|Amity 4GB Dual Cam|Stone 4GB|Stone 8GB|Andromeda|Silken|X2|Andromeda II|Halley|Flame|Saphyr 9,7|Touch 8|Planet|Triton|Unique 10|Hexen 10|Memphis 4GB|Memphis 8GB|Onix 10)",
27
+ FX2Tablet:"FX2 PAD7|FX2 PAD10",XoroTablet:"KidsPAD 701|PAD[ ]?712|PAD[ ]?714|PAD[ ]?716|PAD[ ]?717|PAD[ ]?718|PAD[ ]?720|PAD[ ]?721|PAD[ ]?722|PAD[ ]?790|PAD[ ]?792|PAD[ ]?900|PAD[ ]?9715D|PAD[ ]?9716DR|PAD[ ]?9718DR|PAD[ ]?9719QR|PAD[ ]?9720QR|TelePAD1030|Telepad1032|TelePAD730|TelePAD731|TelePAD732|TelePAD735Q|TelePAD830|TelePAD9730|TelePAD795|MegaPAD 1331|MegaPAD 1851|MegaPAD 2151",ViewsonicTablet:"ViewPad 10pi|ViewPad 10e|ViewPad 10s|ViewPad E72|ViewPad7|ViewPad E100|ViewPad 7e|ViewSonic VB733|VB100a",
28
+ VerizonTablet:"QTAQZ3|QTAIR7|QTAQTZ3|QTASUN1|QTASUN2|QTAXIA1",OdysTablet:"LOOX|XENO10|ODYS[ -](Space|EVO|Xpress|NOON)|\\bXELIO\\b|Xelio10Pro|XELIO7PHONETAB|XELIO10EXTREME|XELIOPT2|NEO_QUAD10",CaptivaTablet:"CAPTIVA PAD",IconbitTablet:"NetTAB|NT-3702|NT-3702S|NT-3702S|NT-3603P|NT-3603P|NT-0704S|NT-0704S|NT-3805C|NT-3805C|NT-0806C|NT-0806C|NT-0909T|NT-0909T|NT-0907S|NT-0907S|NT-0902S|NT-0902S",TeclastTablet:"T98 4G|\\bP80\\b|\\bX90HD\\b|X98 Air|X98 Air 3G|\\bX89\\b|P80 3G|\\bX80h\\b|P98 Air|\\bX89HD\\b|P98 3G|\\bP90HD\\b|P89 3G|X98 3G|\\bP70h\\b|P79HD 3G|G18d 3G|\\bP79HD\\b|\\bP89s\\b|\\bA88\\b|\\bP10HD\\b|\\bP19HD\\b|G18 3G|\\bP78HD\\b|\\bA78\\b|\\bP75\\b|G17s 3G|G17h 3G|\\bP85t\\b|\\bP90\\b|\\bP11\\b|\\bP98t\\b|\\bP98HD\\b|\\bG18d\\b|\\bP85s\\b|\\bP11HD\\b|\\bP88s\\b|\\bA80HD\\b|\\bA80se\\b|\\bA10h\\b|\\bP89\\b|\\bP78s\\b|\\bG18\\b|\\bP85\\b|\\bA70h\\b|\\bA70\\b|\\bG17\\b|\\bP18\\b|\\bA80s\\b|\\bA11s\\b|\\bP88HD\\b|\\bA80h\\b|\\bP76s\\b|\\bP76h\\b|\\bP98\\b|\\bA10HD\\b|\\bP78\\b|\\bP88\\b|\\bA11\\b|\\bA10t\\b|\\bP76a\\b|\\bP76t\\b|\\bP76e\\b|\\bP85HD\\b|\\bP85a\\b|\\bP86\\b|\\bP75HD\\b|\\bP76v\\b|\\bA12\\b|\\bP75a\\b|\\bA15\\b|\\bP76Ti\\b|\\bP81HD\\b|\\bA10\\b|\\bT760VE\\b|\\bT720HD\\b|\\bP76\\b|\\bP73\\b|\\bP71\\b|\\bP72\\b|\\bT720SE\\b|\\bC520Ti\\b|\\bT760\\b|\\bT720VE\\b|T720-3GE|T720-WiFi",
29
+ OndaTablet:"\\b(V975i|Vi30|VX530|V701|Vi60|V701s|Vi50|V801s|V719|Vx610w|VX610W|V819i|Vi10|VX580W|Vi10|V711s|V813|V811|V820w|V820|Vi20|V711|VI30W|V712|V891w|V972|V819w|V820w|Vi60|V820w|V711|V813s|V801|V819|V975s|V801|V819|V819|V818|V811|V712|V975m|V101w|V961w|V812|V818|V971|V971s|V919|V989|V116w|V102w|V973|Vi40)\\b[\\s]+|V10 \\b4G\\b",JaytechTablet:"TPC-PA762",BlaupunktTablet:"Endeavour 800NG|Endeavour 1010",DigmaTablet:"\\b(iDx10|iDx9|iDx8|iDx7|iDxD7|iDxD8|iDsQ8|iDsQ7|iDsQ8|iDsD10|iDnD7|3TS804H|iDsQ11|iDj7|iDs10)\\b",
30
+ EvolioTablet:"ARIA_Mini_wifi|Aria[ _]Mini|Evolio X10|Evolio X7|Evolio X8|\\bEvotab\\b|\\bNeura\\b",LavaTablet:"QPAD E704|\\bIvoryS\\b|E-TAB IVORY|\\bE-TAB\\b",AocTablet:"MW0811|MW0812|MW0922|MTK8382|MW1031|MW0831|MW0821|MW0931|MW0712",MpmanTablet:"MP11 OCTA|MP10 OCTA|MPQC1114|MPQC1004|MPQC994|MPQC974|MPQC973|MPQC804|MPQC784|MPQC780|\\bMPG7\\b|MPDCG75|MPDCG71|MPDC1006|MP101DC|MPDC9000|MPDC905|MPDC706HD|MPDC706|MPDC705|MPDC110|MPDC100|MPDC99|MPDC97|MPDC88|MPDC8|MPDC77|MP709|MID701|MID711|MID170|MPDC703|MPQC1010",
31
+ CelkonTablet:"CT695|CT888|CT[\\s]?910|CT7 Tab|CT9 Tab|CT3 Tab|CT2 Tab|CT1 Tab|C820|C720|\\bCT-1\\b",WolderTablet:"miTab \\b(DIAMOND|SPACE|BROOKLYN|NEO|FLY|MANHATTAN|FUNK|EVOLUTION|SKY|GOCAR|IRON|GENIUS|POP|MINT|EPSILON|BROADWAY|JUMP|HOP|LEGEND|NEW AGE|LINE|ADVANCE|FEEL|FOLLOW|LIKE|LINK|LIVE|THINK|FREEDOM|CHICAGO|CLEVELAND|BALTIMORE-GH|IOWA|BOSTON|SEATTLE|PHOENIX|DALLAS|IN 101|MasterChef)\\b",MediacomTablet:"M-MPI10C3G|M-SP10EG|M-SP10EGP|M-SP10HXAH|M-SP7HXAH|M-SP10HXBH|M-SP8HXAH|M-SP8MXA",MiTablet:"\\bMI PAD\\b|\\bHM NOTE 1W\\b",
32
+ NibiruTablet:"Nibiru M1|Nibiru Jupiter One",NexoTablet:"NEXO NOVA|NEXO 10|NEXO AVIO|NEXO FREE|NEXO GO|NEXO EVO|NEXO 3G|NEXO SMART|NEXO KIDDO|NEXO MOBI",LeaderTablet:"TBLT10Q|TBLT10I|TBL-10WDKB|TBL-10WDKBO2013|TBL-W230V2|TBL-W450|TBL-W500|SV572|TBLT7I|TBA-AC7-8G|TBLT79|TBL-8W16|TBL-10W32|TBL-10WKB|TBL-W100",UbislateTablet:"UbiSlate[\\s]?7C",PocketBookTablet:"Pocketbook",KocasoTablet:"\\b(TB-1207)\\b",HisenseTablet:"\\b(F5281|E2371)\\b",Hudl:"Hudl HT7S3|Hudl 2",TelstraTablet:"T-Hub2",GenericTablet:"Android.*\\b97D\\b|Tablet(?!.*PC)|BNTV250A|MID-WCDMA|LogicPD Zoom2|\\bA7EB\\b|CatNova8|A1_07|CT704|CT1002|\\bM721\\b|rk30sdk|\\bEVOTAB\\b|M758A|ET904|ALUMIUM10|Smartfren Tab|Endeavour 1010|Tablet-PC-4|Tagi Tab|\\bM6pro\\b|CT1020W|arc 10HD|\\bTP750\\b|\\bQTAQZ3\\b|WVT101|TM1088|KT107"},
33
+ oss:{AndroidOS:"Android",BlackBerryOS:"blackberry|\\bBB10\\b|rim tablet os",PalmOS:"PalmOS|avantgo|blazer|elaine|hiptop|palm|plucker|xiino",SymbianOS:"Symbian|SymbOS|Series60|Series40|SYB-[0-9]+|\\bS60\\b",WindowsMobileOS:"Windows CE.*(PPC|Smartphone|Mobile|[0-9]{3}x[0-9]{3})|Windows Mobile|Windows Phone [0-9.]+|WCE;",WindowsPhoneOS:"Windows Phone 10.0|Windows Phone 8.1|Windows Phone 8.0|Windows Phone OS|XBLWP7|ZuneWP7|Windows NT 6.[23]; ARM;",iOS:"\\biPhone.*Mobile|\\biPod|\\biPad|AppleCoreMedia",
34
+ iPadOS:"CPU OS 13",MeeGoOS:"MeeGo",MaemoOS:"Maemo",JavaOS:"J2ME/|\\bMIDP\\b|\\bCLDC\\b",webOS:"webOS|hpwOS",badaOS:"\\bBada\\b",BREWOS:"BREW",Windows:"Windows","Windows NT":"Windows NT","OS X":"Mac OS X",Debian:"Debian",Ubuntu:"Ubuntu",Macintosh:"PPC",OpenBSD:"OpenBSD",Linux:"Linux",ChromeOS:"CrOS"},uas:{Dolfin:"\\bDolfin\\b",Skyfire:"Skyfire",Bolt:"bolt",TeaShark:"teashark",Blazer:"Blazer",WeChat:"\\bMicroMessenger\\b",baiduboxapp:"baiduboxapp",baidubrowser:"baidubrowser",DiigoBrowser:"DiigoBrowser",
35
+ Mercury:"\\bMercury\\b",ObigoBrowser:"Obigo",NetFront:"NF-Browser",GenericBrowser:"NokiaBrowser|OviBrowser|OneBrowser|TwonkyBeamBrowser|SEMC.*Browser|FlyFlow|Minimo|NetFront|Novarra-Vision|MQQBrowser|MicroMessenger",PaleMoon:"Android.*PaleMoon|Mobile.*PaleMoon","Opera Mini":"Opera Mini",Opera:"Opera|OPR",Edge:"Edge",UCBrowser:"UCBrowser",Vivaldi:"Vivaldi",Chrome:"Chrome",Firefox:"Firefox",Safari:"Safari",IE:"MSIE|IEMobile|MSIEMobile|Trident/[.0-9]+",Netscape:"Netscape",Mozilla:"Mozilla"},props:{Mobile:"Mobile/[VER]",
36
+ Build:"Build/[VER]",Version:"Version/[VER]",VendorID:"VendorID/[VER]",iPad:"iPad.*CPU[a-z ]+[VER]",iPhone:"iPhone.*CPU[a-z ]+[VER]",iPod:"iPod.*CPU[a-z ]+[VER]",Kindle:"Kindle/[VER]",Chrome:["Chrome/[VER]","CriOS/[VER]","CrMo/[VER]"],Coast:["Coast/[VER]"],Dolfin:"Dolfin/[VER]",Firefox:["Firefox/[VER]","FxiOS/[VER]"],Fennec:"Fennec/[VER]",NetFront:"NetFront/[VER]",NokiaBrowser:"NokiaBrowser/[VER]","Opera Mobi":"Version/[VER]",UCBrowser:["UCWEB[VER]","UC.*Browser/[VER]"],MQQBrowser:"MQQBrowser/[VER]",
37
+ MicroMessenger:"MicroMessenger/[VER]",baiduboxapp:"baiduboxapp/[VER]",baidubrowser:"baidubrowser/[VER]",SamsungBrowser:"SamsungBrowser/[VER]",Iron:"Iron/[VER]",Safari:["Version/[VER]","Safari/[VER]"],Skyfire:"Skyfire/[VER]",Tizen:"Tizen/[VER]",Webkit:"webkit[ /][VER]",PaleMoon:"PaleMoon/[VER]",Gecko:"Gecko/[VER]",Trident:"Trident/[VER]",Presto:"Presto/[VER]",Goanna:"Goanna/[VER]",iOS:" \\bi?OS\\b [VER][ ;]{1}",Android:"Android [VER]",BlackBerry:["BlackBerry[\\w]+/[VER]","BlackBerry.*Version/[VER]",
38
+ "Version/[VER]"],BREW:"BREW [VER]",Java:"Java/[VER]","Windows Phone OS":["Windows Phone OS [VER]","Windows Phone [VER]"],"Windows Phone":"Windows Phone [VER]","Windows CE":"Windows CE/[VER]",Symbian:["SymbianOS/[VER]","Symbian/[VER]"],webOS:["webOS/[VER]","hpwOS/[VER];"],Windows:"Windows NT [VER]","Windows NT":"Windows NT [VER]","OS X":"OS X [VER]",BlackBerryOS:["BlackBerry[w]+/[VER]","BlackBerry.*Version/[VER]","Version/[VER]"],AndroidOS:"Android [VER]",ChromeOS:"CrOS x86_64 [VER]","Opera Mini":"Opera Mini/[VER]",
39
+ Opera:[" OPR/[VER]","Opera Mini/[VER]","Version/[VER]","Opera [VER]"],Netscape:"Netscape/[VER]",Mozilla:"rv:[VER]",IE:["IEMobile/[VER];","IEMobile [VER]","MSIE [VER];","rv:[VER]"],Edge:"Edge/[VER]",Vivaldi:"Vivaldi/[VER]"},utils:{Bot:"Googlebot|facebookexternalhit|Google-AMPHTML|s~amp-validator|AdsBot-Google|Google Keyword Suggestion|Facebot|YandexBot|YandexMobileBot|bingbot|ia_archiver|AhrefsBot|Ezooms|GSLFbot|WBSearchBot|Twitterbot|TweetmemeBot|Twikle|PaperLiBot|Wotbox|UnwindFetchor|Exabot|MJ12bot|YandexImages|TurnitinBot|Pingdom|contentkingapp",
40
+ MobileBot:"Googlebot-Mobile|AdsBot-Google-Mobile|YahooSeeker/M1A1-R2D2",DesktopMode:"WPDesktop",TV:"SonyDTV|HbbTV",WebKit:"(webkit)[ /]([\\w.]+)",Console:"\\b(Nintendo|Nintendo WiiU|Nintendo 3DS|Nintendo Switch|PLAYSTATION|Xbox)\\b",Watch:"SM-V700",Macintosh:"Macintosh"}},detectMobileBrowsers:{fullPattern:/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i,
41
+ shortPattern:/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i,
42
+ tabletPattern:/android|ipad|playbook|silk/i}},l=Object.prototype.hasOwnProperty;b.FALLBACK_PHONE="UnknownPhone";b.FALLBACK_TABLET="UnknownTablet";b.FALLBACK_MOBILE="UnknownMobile";var n="isArray"in Array?Array.isArray:function(a){return"[object Array]"===Object.prototype.toString.call(a)};(function(){var a,c,e=b.mobileDetectRules;for(a in e.props)if(l.call(e.props,a)){var d=e.props[a];n(d)||(d=[d]);var f=d.length;for(c=0;c<f;++c){var g=d[c];var h=g.indexOf("[VER]");0<=h&&(g=g.substring(0,h)+"([\\w._\\+]+)"+
43
+ g.substring(h+5));d[c]=new RegExp(g,"i")}e.props[a]=d}k(e.oss);k(e.phones);k(e.tablets);k(e.uas);k(e.utils);e.oss0={WindowsPhoneOS:e.oss.WindowsPhoneOS,WindowsMobileOS:e.oss.WindowsMobileOS}})();b.findMatch=function(a,b){for(var c in a)if(l.call(a,c)&&a[c].test(b))return c;return null};b.findMatches=function(a,b){var c=[],d;for(d in a)l.call(a,d)&&a[d].test(b)&&c.push(d);return c};b.getVersionStr=function(a,c){var e=b.mobileDetectRules.props,d;if(l.call(e,a)){e=e[a];var f=e.length;for(d=0;d<f;++d){var g=
44
+ e[d].exec(c);if(null!==g)return g[1]}}return null};b.getVersion=function(a,c){var e=b.getVersionStr(a,c);return e?b.prepareVersionNo(e):NaN};b.prepareVersionNo=function(a){var b=a.split(/[a-z._ \/\-]/i);1===b.length&&(a=b[0]);1<b.length&&(a=b[0]+".",b.shift(),a+=b.join(""));return Number(a)};b.isMobileFallback=function(a){return b.detectMobileBrowsers.fullPattern.test(a)||b.detectMobileBrowsers.shortPattern.test(a.substr(0,4))};b.isTabletFallback=function(a){return b.detectMobileBrowsers.tabletPattern.test(a)};
45
+ b.prepareDetectionCache=function(a,c,e){if(a.mobile===f){var d;(d=b.findMatch(b.mobileDetectRules.tablets,c))?(a.mobile=a.tablet=d,a.phone=null):(d=b.findMatch(b.mobileDetectRules.phones,c))?(a.mobile=a.phone=d,a.tablet=null):b.isMobileFallback(c)?(c=g.isPhoneSized(e),c===f?(a.mobile=b.FALLBACK_MOBILE,a.tablet=a.phone=null):c?(a.mobile=a.phone=b.FALLBACK_PHONE,a.tablet=null):(a.mobile=a.tablet=b.FALLBACK_TABLET,a.phone=null)):b.isTabletFallback(c)?(a.mobile=a.tablet=b.FALLBACK_TABLET,a.phone=null):
46
+ a.mobile=a.tablet=a.phone=null}};b.mobileGrade=function(a){var b=null!==a.mobile();if(a.os("iOS")&&4.3<=a.version("iPad")||a.os("iOS")&&3.1<=a.version("iPhone")||a.os("iOS")&&3.1<=a.version("iPod")||2.1<a.version("Android")&&a.is("Webkit")||7<=a.version("Windows Phone OS")||a.is("BlackBerry")&&6<=a.version("BlackBerry")||a.match("Playbook.*Tablet")||1.4<=a.version("webOS")&&a.match("Palm|Pre|Pixi")||a.match("hp.*TouchPad")||a.is("Firefox")&&12<=a.version("Firefox")||a.is("Chrome")&&a.is("AndroidOS")&&
47
+ 4<=a.version("Android")||a.is("Skyfire")&&4.1<=a.version("Skyfire")&&a.is("AndroidOS")&&2.3<=a.version("Android")||a.is("Opera")&&11<a.version("Opera Mobi")&&a.is("AndroidOS")||a.is("MeeGoOS")||a.is("Tizen")||a.is("Dolfin")&&2<=a.version("Bada")||(a.is("UC Browser")||a.is("Dolfin"))&&2.3<=a.version("Android")||a.match("Kindle Fire")||a.is("Kindle")&&3<=a.version("Kindle")||a.is("AndroidOS")&&a.is("NookTablet")||11<=a.version("Chrome")&&!b||5<=a.version("Safari")&&!b||4<=a.version("Firefox")&&!b||
48
+ 7<=a.version("MSIE")&&!b||10<=a.version("Opera")&&!b)return"A";if(a.os("iOS")&&4.3>a.version("iPad")||a.os("iOS")&&3.1>a.version("iPhone")||a.os("iOS")&&3.1>a.version("iPod")||a.is("Blackberry")&&5<=a.version("BlackBerry")&&6>a.version("BlackBerry")||5<=a.version("Opera Mini")&&6.5>=a.version("Opera Mini")&&(2.3<=a.version("Android")||a.is("iOS"))||a.match("NokiaN8|NokiaC7|N97.*Series60|Symbian/3")||11<=a.version("Opera Mobi")&&a.is("SymbianOS"))return"B";5>a.version("BlackBerry")||a.match("MSIEMobile|Windows CE.*Mobile")||
49
+ a.version("Windows Mobile");return"C"};b.detectOS=function(a){return b.findMatch(b.mobileDetectRules.oss0,a)||b.findMatch(b.mobileDetectRules.oss,a)};b.getDeviceSmallerSide=function(){return window.screen.width<window.screen.height?window.screen.width:window.screen.height};g.prototype={constructor:g,mobile:function(){b.prepareDetectionCache(this._cache,this.ua,this.maxPhoneWidth);return this._cache.mobile},phone:function(){b.prepareDetectionCache(this._cache,this.ua,this.maxPhoneWidth);return this._cache.phone},
50
+ tablet:function(){b.prepareDetectionCache(this._cache,this.ua,this.maxPhoneWidth);return this._cache.tablet},userAgent:function(){this._cache.userAgent===f&&(this._cache.userAgent=b.findMatch(b.mobileDetectRules.uas,this.ua));return this._cache.userAgent},userAgents:function(){this._cache.userAgents===f&&(this._cache.userAgents=b.findMatches(b.mobileDetectRules.uas,this.ua));return this._cache.userAgents},os:function(){this._cache.os===f&&(this._cache.os=b.detectOS(this.ua));return this._cache.os},
51
+ version:function(a){return b.getVersion(a,this.ua)},versionStr:function(a){return b.getVersionStr(a,this.ua)},is:function(a){return h(this.userAgents(),a)||m(a,this.os())||m(a,this.phone())||m(a,this.tablet())||h(b.findMatches(b.mobileDetectRules.utils,this.ua),a)},match:function(a){a instanceof RegExp||(a=new RegExp(a,"i"));return a.test(this.ua)},isPhoneSized:function(a){return g.isPhoneSized(a||this.maxPhoneWidth)},mobileGrade:function(){this._cache.grade===f&&(this._cache.grade=b.mobileGrade(this));
52
+ return this._cache.grade}};g.isPhoneSized="undefined"!==typeof window&&window.screen?function(a){return 0>a?f:b.getDeviceSmallerSide()<=a}:function(){};g._impl=b;g.version="1.4.4 2019-09-21";return g})})(function(h){if("undefined"!==typeof module&&module.exports)return function(f){module.exports=f()};if("function"===typeof define&&define.amd)return define;if("undefined"!==typeof window)return function(f){window.MobileDetect=f()};throw Error("unknown environment");}());
includes/mobiledetect/LICENSE.txt ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) <2011-2015> Serban Ghita, Nick Ilyin and contributors.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included
14
+ in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
+
24
+ Developer’s Certificate of Origin 1.1
25
+
26
+ By making a contribution to this project, I certify that:
27
+
28
+ (a) The contribution was created in whole or in part by me and I
29
+ have the right to submit it under the open source license
30
+ indicated in the file; or
31
+
32
+ (b) The contribution is based upon previous work that, to the best
33
+ of my knowledge, is covered under an appropriate open source
34
+ license and I have the right under that license to submit that
35
+ work with modifications, whether created in whole or in part
36
+ by me, under the same open source license (unless I am
37
+ permitted to submit under a different license), as indicated
38
+ in the file; or
39
+
40
+ (c) The contribution was provided directly to me by some other
41
+ person who certified (a), (b) or (c) and I have not modified
42
+ it.
43
+
44
+ (d) I understand and agree that this project and the contribution
45
+ are public and that a record of the contribution (including all
46
+ personal information I submit with it, including my sign-off) is
47
+ maintained indefinitely and may be redistributed consistent with
48
+ this project or the open source license(s) involved.
includes/{Mobile_Detect.php → mobiledetect/Mobile_Detect.php} RENAMED
@@ -18,7 +18,7 @@
18
  * @author Nick Ilyin <nick.ilyin@gmail.com>
19
  * Original author: Victor Stanciu <vic.stanciu@gmail.com>
20
  *
21
- * @version 2.8.33
22
  */
23
  class ai_Mobile_Detect
24
  {
@@ -61,7 +61,7 @@ class ai_Mobile_Detect
61
  /**
62
  * Stores the version number of the current release.
63
  */
64
- const VERSION = '2.8.33';
65
 
66
  /**
67
  * A type for the version() method indicating a string return value.
@@ -164,14 +164,14 @@ class ai_Mobile_Detect
164
  */
165
  protected static $phoneDevices = array(
166
  'iPhone' => '\biPhone\b|\biPod\b', // |\biTunes
167
- 'BlackBerry' => 'BlackBerry|\bBB10\b|rim[0-9]+',
168
  'HTC' => 'HTC|HTC.*(Sensation|Evo|Vision|Explorer|6800|8100|8900|A7272|S510e|C110e|Legend|Desire|T8282)|APX515CKT|Qtek9090|APA9292KT|HD_mini|Sensation.*Z710e|PG86100|Z715e|Desire.*(A8181|HD)|ADR6200|ADR6400L|ADR6425|001HT|Inspire 4G|Android.*\bEVO\b|T-Mobile G1|Z520m|Android [0-9.]+; Pixel',
169
  'Nexus' => 'Nexus One|Nexus S|Galaxy.*Nexus|Android.*Nexus.*Mobile|Nexus 4|Nexus 5|Nexus 6',
170
  // @todo: Is 'Dell Streak' a tablet or a phone? ;)
171
  'Dell' => 'Dell[;]? (Streak|Aero|Venue|Venue Pro|Flash|Smoke|Mini 3iX)|XCD28|XCD35|\b001DL\b|\b101DL\b|\bGS01\b',
172
  'Motorola' => 'Motorola|DROIDX|DROID BIONIC|\bDroid\b.*Build|Android.*Xoom|HRI39|MOT-|A1260|A1680|A555|A853|A855|A953|A955|A956|Motorola.*ELECTRIFY|Motorola.*i1|i867|i940|MB200|MB300|MB501|MB502|MB508|MB511|MB520|MB525|MB526|MB611|MB612|MB632|MB810|MB855|MB860|MB861|MB865|MB870|ME501|ME502|ME511|ME525|ME600|ME632|ME722|ME811|ME860|ME863|ME865|MT620|MT710|MT716|MT720|MT810|MT870|MT917|Motorola.*TITANIUM|WX435|WX445|XT300|XT301|XT311|XT316|XT317|XT319|XT320|XT390|XT502|XT530|XT531|XT532|XT535|XT603|XT610|XT611|XT615|XT681|XT701|XT702|XT711|XT720|XT800|XT806|XT860|XT862|XT875|XT882|XT883|XT894|XT901|XT907|XT909|XT910|XT912|XT928|XT926|XT915|XT919|XT925|XT1021|\bMoto E\b|XT1068|XT1092|XT1052',
173
  'Samsung' => '\bSamsung\b|SM-G950F|SM-G955F|SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B3730|GT-B3740|GT-B5510|GT-B5512|GT-B5722|GT-B6520|GT-B7300|GT-B7320|GT-B7330|GT-B7350|GT-B7510|GT-B7722|GT-B7800|GT-C3010|GT-C3011|GT-C3060|GT-C3200|GT-C3212|GT-C3212I|GT-C3262|GT-C3222|GT-C3300|GT-C3300K|GT-C3303|GT-C3303K|GT-C3310|GT-C3322|GT-C3330|GT-C3350|GT-C3500|GT-C3510|GT-C3530|GT-C3630|GT-C3780|GT-C5010|GT-C5212|GT-C6620|GT-C6625|GT-C6712|GT-E1050|GT-E1070|GT-E1075|GT-E1080|GT-E1081|GT-E1085|GT-E1087|GT-E1100|GT-E1107|GT-E1110|GT-E1120|GT-E1125|GT-E1130|GT-E1160|GT-E1170|GT-E1175|GT-E1180|GT-E1182|GT-E1200|GT-E1210|GT-E1225|GT-E1230|GT-E1390|GT-E2100|GT-E2120|GT-E2121|GT-E2152|GT-E2220|GT-E2222|GT-E2230|GT-E2232|GT-E2250|GT-E2370|GT-E2550|GT-E2652|GT-E3210|GT-E3213|GT-I5500|GT-I5503|GT-I5700|GT-I5800|GT-I5801|GT-I6410|GT-I6420|GT-I7110|GT-I7410|GT-I7500|GT-I8000|GT-I8150|GT-I8160|GT-I8190|GT-I8320|GT-I8330|GT-I8350|GT-I8530|GT-I8700|GT-I8703|GT-I8910|GT-I9000|GT-I9001|GT-I9003|GT-I9010|GT-I9020|GT-I9023|GT-I9070|GT-I9082|GT-I9100|GT-I9103|GT-I9220|GT-I9250|GT-I9300|GT-I9305|GT-I9500|GT-I9505|GT-M3510|GT-M5650|GT-M7500|GT-M7600|GT-M7603|GT-M8800|GT-M8910|GT-N7000|GT-S3110|GT-S3310|GT-S3350|GT-S3353|GT-S3370|GT-S3650|GT-S3653|GT-S3770|GT-S3850|GT-S5210|GT-S5220|GT-S5229|GT-S5230|GT-S5233|GT-S5250|GT-S5253|GT-S5260|GT-S5263|GT-S5270|GT-S5300|GT-S5330|GT-S5350|GT-S5360|GT-S5363|GT-S5369|GT-S5380|GT-S5380D|GT-S5560|GT-S5570|GT-S5600|GT-S5603|GT-S5610|GT-S5620|GT-S5660|GT-S5670|GT-S5690|GT-S5750|GT-S5780|GT-S5830|GT-S5839|GT-S6102|GT-S6500|GT-S7070|GT-S7200|GT-S7220|GT-S7230|GT-S7233|GT-S7250|GT-S7500|GT-S7530|GT-S7550|GT-S7562|GT-S7710|GT-S8000|GT-S8003|GT-S8500|GT-S8530|GT-S8600|SCH-A310|SCH-A530|SCH-A570|SCH-A610|SCH-A630|SCH-A650|SCH-A790|SCH-A795|SCH-A850|SCH-A870|SCH-A890|SCH-A930|SCH-A950|SCH-A970|SCH-A990|SCH-I100|SCH-I110|SCH-I400|SCH-I405|SCH-I500|SCH-I510|SCH-I515|SCH-I600|SCH-I730|SCH-I760|SCH-I770|SCH-I830|SCH-I910|SCH-I920|SCH-I959|SCH-LC11|SCH-N150|SCH-N300|SCH-R100|SCH-R300|SCH-R351|SCH-R400|SCH-R410|SCH-T300|SCH-U310|SCH-U320|SCH-U350|SCH-U360|SCH-U365|SCH-U370|SCH-U380|SCH-U410|SCH-U430|SCH-U450|SCH-U460|SCH-U470|SCH-U490|SCH-U540|SCH-U550|SCH-U620|SCH-U640|SCH-U650|SCH-U660|SCH-U700|SCH-U740|SCH-U750|SCH-U810|SCH-U820|SCH-U900|SCH-U940|SCH-U960|SCS-26UC|SGH-A107|SGH-A117|SGH-A127|SGH-A137|SGH-A157|SGH-A167|SGH-A177|SGH-A187|SGH-A197|SGH-A227|SGH-A237|SGH-A257|SGH-A437|SGH-A517|SGH-A597|SGH-A637|SGH-A657|SGH-A667|SGH-A687|SGH-A697|SGH-A707|SGH-A717|SGH-A727|SGH-A737|SGH-A747|SGH-A767|SGH-A777|SGH-A797|SGH-A817|SGH-A827|SGH-A837|SGH-A847|SGH-A867|SGH-A877|SGH-A887|SGH-A897|SGH-A927|SGH-B100|SGH-B130|SGH-B200|SGH-B220|SGH-C100|SGH-C110|SGH-C120|SGH-C130|SGH-C140|SGH-C160|SGH-C170|SGH-C180|SGH-C200|SGH-C207|SGH-C210|SGH-C225|SGH-C230|SGH-C417|SGH-C450|SGH-D307|SGH-D347|SGH-D357|SGH-D407|SGH-D415|SGH-D780|SGH-D807|SGH-D980|SGH-E105|SGH-E200|SGH-E315|SGH-E316|SGH-E317|SGH-E335|SGH-E590|SGH-E635|SGH-E715|SGH-E890|SGH-F300|SGH-F480|SGH-I200|SGH-I300|SGH-I320|SGH-I550|SGH-I577|SGH-I600|SGH-I607|SGH-I617|SGH-I627|SGH-I637|SGH-I677|SGH-I700|SGH-I717|SGH-I727|SGH-i747M|SGH-I777|SGH-I780|SGH-I827|SGH-I847|SGH-I857|SGH-I896|SGH-I897|SGH-I900|SGH-I907|SGH-I917|SGH-I927|SGH-I937|SGH-I997|SGH-J150|SGH-J200|SGH-L170|SGH-L700|SGH-M110|SGH-M150|SGH-M200|SGH-N105|SGH-N500|SGH-N600|SGH-N620|SGH-N625|SGH-N700|SGH-N710|SGH-P107|SGH-P207|SGH-P300|SGH-P310|SGH-P520|SGH-P735|SGH-P777|SGH-Q105|SGH-R210|SGH-R220|SGH-R225|SGH-S105|SGH-S307|SGH-T109|SGH-T119|SGH-T139|SGH-T209|SGH-T219|SGH-T229|SGH-T239|SGH-T249|SGH-T259|SGH-T309|SGH-T319|SGH-T329|SGH-T339|SGH-T349|SGH-T359|SGH-T369|SGH-T379|SGH-T409|SGH-T429|SGH-T439|SGH-T459|SGH-T469|SGH-T479|SGH-T499|SGH-T509|SGH-T519|SGH-T539|SGH-T559|SGH-T589|SGH-T609|SGH-T619|SGH-T629|SGH-T639|SGH-T659|SGH-T669|SGH-T679|SGH-T709|SGH-T719|SGH-T729|SGH-T739|SGH-T746|SGH-T749|SGH-T759|SGH-T769|SGH-T809|SGH-T819|SGH-T839|SGH-T919|SGH-T929|SGH-T939|SGH-T959|SGH-T989|SGH-U100|SGH-U200|SGH-U800|SGH-V205|SGH-V206|SGH-X100|SGH-X105|SGH-X120|SGH-X140|SGH-X426|SGH-X427|SGH-X475|SGH-X495|SGH-X497|SGH-X507|SGH-X600|SGH-X610|SGH-X620|SGH-X630|SGH-X700|SGH-X820|SGH-X890|SGH-Z130|SGH-Z150|SGH-Z170|SGH-ZX10|SGH-ZX20|SHW-M110|SPH-A120|SPH-A400|SPH-A420|SPH-A460|SPH-A500|SPH-A560|SPH-A600|SPH-A620|SPH-A660|SPH-A700|SPH-A740|SPH-A760|SPH-A790|SPH-A800|SPH-A820|SPH-A840|SPH-A880|SPH-A900|SPH-A940|SPH-A960|SPH-D600|SPH-D700|SPH-D710|SPH-D720|SPH-I300|SPH-I325|SPH-I330|SPH-I350|SPH-I500|SPH-I600|SPH-I700|SPH-L700|SPH-M100|SPH-M220|SPH-M240|SPH-M300|SPH-M305|SPH-M320|SPH-M330|SPH-M350|SPH-M360|SPH-M370|SPH-M380|SPH-M510|SPH-M540|SPH-M550|SPH-M560|SPH-M570|SPH-M580|SPH-M610|SPH-M620|SPH-M630|SPH-M800|SPH-M810|SPH-M850|SPH-M900|SPH-M910|SPH-M920|SPH-M930|SPH-N100|SPH-N200|SPH-N240|SPH-N300|SPH-N400|SPH-Z400|SWC-E100|SCH-i909|GT-N7100|GT-N7105|SCH-I535|SM-N900A|SGH-I317|SGH-T999L|GT-S5360B|GT-I8262|GT-S6802|GT-S6312|GT-S6310|GT-S5312|GT-S5310|GT-I9105|GT-I8510|GT-S6790N|SM-G7105|SM-N9005|GT-S5301|GT-I9295|GT-I9195|SM-C101|GT-S7392|GT-S7560|GT-B7610|GT-I5510|GT-S7582|GT-S7530E|GT-I8750|SM-G9006V|SM-G9008V|SM-G9009D|SM-G900A|SM-G900D|SM-G900F|SM-G900H|SM-G900I|SM-G900J|SM-G900K|SM-G900L|SM-G900M|SM-G900P|SM-G900R4|SM-G900S|SM-G900T|SM-G900V|SM-G900W8|SHV-E160K|SCH-P709|SCH-P729|SM-T2558|GT-I9205|SM-G9350|SM-J120F|SM-G920F|SM-G920V|SM-G930F|SM-N910C|SM-A310F|GT-I9190|SM-J500FN|SM-G903F|SM-J330F',
174
- 'LG' => '\bLG\b;|LG[- ]?(C800|C900|E400|E610|E900|E-900|F160|F180K|F180L|F180S|730|855|L160|LS740|LS840|LS970|LU6200|MS690|MS695|MS770|MS840|MS870|MS910|P500|P700|P705|VM696|AS680|AS695|AX840|C729|E970|GS505|272|C395|E739BK|E960|L55C|L75C|LS696|LS860|P769BK|P350|P500|P509|P870|UN272|US730|VS840|VS950|LN272|LN510|LS670|LS855|LW690|MN270|MN510|P509|P769|P930|UN200|UN270|UN510|UN610|US670|US740|US760|UX265|UX840|VN271|VN530|VS660|VS700|VS740|VS750|VS910|VS920|VS930|VX9200|VX11000|AX840A|LW770|P506|P925|P999|E612|D955|D802|MS323|M257)',
175
  'Sony' => 'SonyST|SonyLT|SonyEricsson|SonyEricssonLT15iv|LT18i|E10i|LT28h|LT26w|SonyEricssonMT27i|C5303|C6902|C6903|C6906|C6943|D2533',
176
  'Asus' => 'Asus.*Galaxy|PadFone.*Mobile',
177
  'NokiaLumia' => 'Lumia [0-9]{3,4}',
@@ -201,6 +201,7 @@ class ai_Mobile_Detect
201
  'Amoi' => 'Amoi',
202
  // http://en.wikipedia.org/wiki/INQ
203
  'INQ' => 'INQ',
 
204
  // @Tapatalk is a mobile app; http://support.tapatalk.com/threads/smf-2-0-2-os-and-browser-detection-plugin-and-tapatalk.15565/#post-79039
205
  'GenericPhone' => 'Tapatalk|PDA;|SAGEM|\bmmp\b|pocket|\bpsp\b|symbian|Smartphone|smartfon|treo|up.browser|up.link|vodafone|\bwap\b|nokia|Series40|Series60|S60|SonyEricsson|N900|MAUI.*WAP.*Browser',
206
  );
@@ -219,7 +220,7 @@ class ai_Mobile_Detect
219
  'NexusTablet' => 'Android.*Nexus[\s]+(7|9|10)',
220
  // https://en.wikipedia.org/wiki/Pixel_C
221
  'GoogleTablet' => 'Android.*Pixel C',
222
- 'SamsungTablet' => 'SAMSUNG.*Tablet|Galaxy.*Tab|SC-01C|GT-P1000|GT-P1003|GT-P1010|GT-P3105|GT-P6210|GT-P6800|GT-P6810|GT-P7100|GT-P7300|GT-P7310|GT-P7500|GT-P7510|SCH-I800|SCH-I815|SCH-I905|SGH-I957|SGH-I987|SGH-T849|SGH-T859|SGH-T869|SPH-P100|GT-P3100|GT-P3108|GT-P3110|GT-P5100|GT-P5110|GT-P6200|GT-P7320|GT-P7511|GT-N8000|GT-P8510|SGH-I497|SPH-P500|SGH-T779|SCH-I705|SCH-I915|GT-N8013|GT-P3113|GT-P5113|GT-P8110|GT-N8010|GT-N8005|GT-N8020|GT-P1013|GT-P6201|GT-P7501|GT-N5100|GT-N5105|GT-N5110|SHV-E140K|SHV-E140L|SHV-E140S|SHV-E150S|SHV-E230K|SHV-E230L|SHV-E230S|SHW-M180K|SHW-M180L|SHW-M180S|SHW-M180W|SHW-M300W|SHW-M305W|SHW-M380K|SHW-M380S|SHW-M380W|SHW-M430W|SHW-M480K|SHW-M480S|SHW-M480W|SHW-M485W|SHW-M486W|SHW-M500W|GT-I9228|SCH-P739|SCH-I925|GT-I9200|GT-P5200|GT-P5210|GT-P5210X|SM-T311|SM-T310|SM-T310X|SM-T210|SM-T210R|SM-T211|SM-P600|SM-P601|SM-P605|SM-P900|SM-P901|SM-T217|SM-T217A|SM-T217S|SM-P6000|SM-T3100|SGH-I467|XE500|SM-T110|GT-P5220|GT-I9200X|GT-N5110X|GT-N5120|SM-P905|SM-T111|SM-T2105|SM-T315|SM-T320|SM-T320X|SM-T321|SM-T520|SM-T525|SM-T530NU|SM-T230NU|SM-T330NU|SM-T900|XE500T1C|SM-P605V|SM-P905V|SM-T337V|SM-T537V|SM-T707V|SM-T807V|SM-P600X|SM-P900X|SM-T210X|SM-T230|SM-T230X|SM-T325|GT-P7503|SM-T531|SM-T330|SM-T530|SM-T705|SM-T705C|SM-T535|SM-T331|SM-T800|SM-T700|SM-T537|SM-T807|SM-P907A|SM-T337A|SM-T537A|SM-T707A|SM-T807A|SM-T237|SM-T807P|SM-P607T|SM-T217T|SM-T337T|SM-T807T|SM-T116NQ|SM-T116BU|SM-P550|SM-T350|SM-T550|SM-T9000|SM-P9000|SM-T705Y|SM-T805|GT-P3113|SM-T710|SM-T810|SM-T815|SM-T360|SM-T533|SM-T113|SM-T335|SM-T715|SM-T560|SM-T670|SM-T677|SM-T377|SM-T567|SM-T357T|SM-T555|SM-T561|SM-T713|SM-T719|SM-T813|SM-T819|SM-T580|SM-T355Y?|SM-T280|SM-T817A|SM-T820|SM-W700|SM-P580|SM-T587|SM-P350|SM-P555M|SM-P355M|SM-T113NU|SM-T815Y|SM-T585|SM-T285|SM-T825|SM-W708|SM-T835', // SCH-P709|SCH-P729|SM-T2558|GT-I9205 - Samsung Mega - treat them like a regular phone.
223
  // http://docs.aws.amazon.com/silk/latest/developerguide/user-agent.html
224
  'Kindle' => 'Kindle|Silk.*Accelerated|Android.*\b(KFOT|KFTT|KFJWI|KFJWA|KFOTE|KFSOWI|KFTHWI|KFTHWA|KFAPWI|KFAPWA|WFJWAE|KFSAWA|KFSAWI|KFASWI|KFARWI|KFFOWI|KFGIWI|KFMEWI)\b|Android.*Silk/[0-9.]+ like Chrome/[0-9.]+ (?!Mobile)',
225
  // Only the Surface tablets with Windows RT are considered mobile.
@@ -251,7 +252,7 @@ class ai_Mobile_Detect
251
  // Prestigio Tablets http://www.prestigio.com/support
252
  'PrestigioTablet' => 'PMP3170B|PMP3270B|PMP3470B|PMP7170B|PMP3370B|PMP3570C|PMP5870C|PMP3670B|PMP5570C|PMP5770D|PMP3970B|PMP3870C|PMP5580C|PMP5880D|PMP5780D|PMP5588C|PMP7280C|PMP7280C3G|PMP7280|PMP7880D|PMP5597D|PMP5597|PMP7100D|PER3464|PER3274|PER3574|PER3884|PER5274|PER5474|PMP5097CPRO|PMP5097|PMP7380D|PMP5297C|PMP5297C_QUAD|PMP812E|PMP812E3G|PMP812F|PMP810E|PMP880TD|PMT3017|PMT3037|PMT3047|PMT3057|PMT7008|PMT5887|PMT5001|PMT5002',
253
  // http://support.lenovo.com/en_GB/downloads/default.page?#
254
- 'LenovoTablet' => 'Lenovo TAB|Idea(Tab|Pad)( A1|A10| K1|)|ThinkPad([ ]+)?Tablet|YT3-850M|YT3-X90L|YT3-X90F|YT3-X90X|Lenovo.*(S2109|S2110|S5000|S6000|K3011|A3000|A3500|A1000|A2107|A2109|A1107|A5500|A7600|B6000|B8000|B8080)(-|)(FL|F|HV|H|)|TB-X103F|TB-X304F|TB-X304L|TB-8703F|Tab2A7-10F|TB2-X30L',
255
  // http://www.dell.com/support/home/us/en/04/Products/tab_mob/tablets
256
  'DellTablet' => 'Venue 11|Venue 8|Venue 7|Dell Streak 10|Dell Streak 7',
257
  // http://www.yarvik.com/en/matrix/tablets/
@@ -301,10 +302,10 @@ class ai_Mobile_Detect
301
  // http://www.fly-phone.com/devices/tablets/ ; http://www.fly-phone.com/service/
302
  'FlyTablet' => 'IQ310|Fly Vision',
303
  // http://www.bqreaders.com/gb/tablets-prices-sale.html
304
- 'bqTablet' => 'Android.*(bq)?.*(Elcano|Curie|Edison|Maxwell|Kepler|Pascal|Tesla|Hypatia|Platon|Newton|Livingstone|Cervantes|Avant|Aquaris ([E|M]10|M8))|Maxwell.*Lite|Maxwell.*Plus',
305
  // http://www.huaweidevice.com/worldwide/productFamily.do?method=index&directoryId=5011&treeId=3290
306
  // http://www.huaweidevice.com/worldwide/downloadCenter.do?method=index&directoryId=3372&treeId=0&tb=1&type=software (including legacy tablets)
307
- 'HuaweiTablet' => 'MediaPad|MediaPad 7 Youth|IDEOS S7|S7-201c|S7-202u|S7-101|S7-103|S7-104|S7-105|S7-106|S7-201|S7-Slim|M2-A01L|BAH-L09|BAH-W09',
308
  // Nec or Medias Tab
309
  'NecTablet' => '\bN-06D|\bN-08D',
310
  // Pantech Tablets: http://www.pantechusa.com/phones/
@@ -314,7 +315,7 @@ class ai_Mobile_Detect
314
  // http://versusuk.com/support.html
315
  'VersusTablet' => 'TOUCHPAD.*[78910]|\bTOUCHTAB\b',
316
  // http://www.zync.in/index.php/our-products/tablet-phablets
317
- 'ZyncTablet' => 'z1000|Z99 2G|z99|z930|z999|z990|z909|Z919|z900',
318
  // http://www.positivoinformatica.com.br/www/pessoal/tablet-ypy/
319
  'PositivoTablet' => 'TB07STA|TB10STA|TB07FTA|TB10FTA',
320
  // https://www.nabitablet.com/
@@ -377,7 +378,7 @@ class ai_Mobile_Detect
377
  'GoCleverTablet' => 'GOCLEVER TAB|A7GOCLEVER|M1042|M7841|M742|R1042BK|R1041|TAB A975|TAB A7842|TAB A741|TAB A741L|TAB M723G|TAB M721|TAB A1021|TAB I921|TAB R721|TAB I720|TAB T76|TAB R70|TAB R76.2|TAB R106|TAB R83.2|TAB M813G|TAB I721|GCTA722|TAB I70|TAB I71|TAB S73|TAB R73|TAB R74|TAB R93|TAB R75|TAB R76.1|TAB A73|TAB A93|TAB A93.2|TAB T72|TAB R83|TAB R974|TAB R973|TAB A101|TAB A103|TAB A104|TAB A104.2|R105BK|M713G|A972BK|TAB A971|TAB R974.2|TAB R104|TAB R83.3|TAB A1042',
378
  // Modecom Tablets - http://www.modecom.eu/tablets/portal/
379
  'ModecomTablet' => 'FreeTAB 9000|FreeTAB 7.4|FreeTAB 7004|FreeTAB 7800|FreeTAB 2096|FreeTAB 7.5|FreeTAB 1014|FreeTAB 1001 |FreeTAB 8001|FreeTAB 9706|FreeTAB 9702|FreeTAB 7003|FreeTAB 7002|FreeTAB 1002|FreeTAB 7801|FreeTAB 1331|FreeTAB 1004|FreeTAB 8002|FreeTAB 8014|FreeTAB 9704|FreeTAB 1003',
380
- // Vonino Tablets - http://www.vonino.eu/tablets
381
  'VoninoTablet' => '\b(Argus[ _]?S|Diamond[ _]?79HD|Emerald[ _]?78E|Luna[ _]?70C|Onyx[ _]?S|Onyx[ _]?Z|Orin[ _]?HD|Orin[ _]?S|Otis[ _]?S|SpeedStar[ _]?S|Magnet[ _]?M9|Primus[ _]?94[ _]?3G|Primus[ _]?94HD|Primus[ _]?QS|Android.*\bQ8\b|Sirius[ _]?EVO[ _]?QS|Sirius[ _]?QS|Spirit[ _]?S)\b',
382
  // ECS Tablets - http://www.ecs.com.tw/ECSWebSite/Product/Product_Tablet_List.aspx?CategoryID=14&MenuID=107&childid=M_107&LanID=0
383
  'ECSTablet' => 'V07OT2|TM105A|S10OT1|TR10CS1',
@@ -385,7 +386,7 @@ class ai_Mobile_Detect
385
  // @note: no need to add all the tablet codes since they are guided by the first regex.
386
  'StorexTablet' => 'eZee[_\']?(Tab|Go)[0-9]+|TabLC7|Looney Tunes Tab',
387
  // Generic Vodafone tablets.
388
- 'VodafoneTablet' => 'SmartTab([ ]+)?[0-9]+|SmartTabII10|SmartTabII7|VF-1497',
389
  // French tablets - Essentiel B http://www.boulanger.fr/tablette_tactile_e-book/tablette_tactile_essentiel_b/cl_68908.htm?multiChoiceToDelete=brand&mc_brand=essentielb
390
  // Aka: http://www.essentielb.fr/
391
  'EssentielBTablet' => 'Smart[ \']?TAB[ ]+?[0-9]+|Family[ \']?TAB2',
@@ -484,7 +485,7 @@ class ai_Mobile_Detect
484
  'PalmOS' => 'PalmOS|avantgo|blazer|elaine|hiptop|palm|plucker|xiino',
485
  'SymbianOS' => 'Symbian|SymbOS|Series60|Series40|SYB-[0-9]+|\bS60\b',
486
  // @reference: http://en.wikipedia.org/wiki/Windows_Mobile
487
- 'WindowsMobileOS' => 'Windows CE.*(PPC|Smartphone|Mobile|[0-9]{3}x[0-9]{3})|Window Mobile|Windows Phone [0-9.]+|WCE;',
488
  // @reference: http://en.wikipedia.org/wiki/Windows_Phone
489
  // http://wifeng.cn/?r=blog&a=view&id=106
490
  // http://nicksnettravels.builttoroam.com/post/2011/01/10/Bogus-Windows-Phone-7-User-Agent-String.aspx
@@ -492,6 +493,8 @@ class ai_Mobile_Detect
492
  // https://msdn.microsoft.com/en-us/library/hh869301(v=vs.85).aspx
493
  'WindowsPhoneOS' => 'Windows Phone 10.0|Windows Phone 8.1|Windows Phone 8.0|Windows Phone OS|XBLWP7|ZuneWP7|Windows NT 6.[23]; ARM;',
494
  'iOS' => '\biPhone.*Mobile|\biPod|\biPad|AppleCoreMedia',
 
 
495
  // http://en.wikipedia.org/wiki/MeeGo
496
  // @todo: research MeeGo in UAs
497
  'MeeGoOS' => 'MeeGo',
@@ -539,7 +542,8 @@ class ai_Mobile_Detect
539
  // https://github.com/serbanghita/Mobile-Detect/issues/7
540
  'DiigoBrowser' => 'DiigoBrowser',
541
  // http://www.puffinbrowser.com/index.php
542
- 'Puffin' => 'Puffin',
 
543
  // http://mercury-browser.com/index.html
544
  'Mercury' => '\bMercury\b',
545
  // http://en.wikipedia.org/wiki/Obigo_Browser
@@ -563,7 +567,7 @@ class ai_Mobile_Detect
563
  // http://scottcate.com/technology/windows-phone-8-ie10-desktop-or-mobile/
564
  // https://github.com/serbanghita/Mobile-Detect/issues/57#issuecomment-15024011
565
  // https://developers.facebook.com/docs/sharing/best-practices
566
- 'Bot' => 'Googlebot|facebookexternalhit|AdsBot-Google|Google Keyword Suggestion|Facebot|YandexBot|YandexMobileBot|bingbot|ia_archiver|AhrefsBot|Ezooms|GSLFbot|WBSearchBot|Twitterbot|TweetmemeBot|Twikle|PaperLiBot|Wotbox|UnwindFetchor|Exabot|MJ12bot|YandexImages|TurnitinBot|Pingdom',
567
  'MobileBot' => 'Googlebot-Mobile|AdsBot-Google-Mobile|YahooSeeker/M1A1-R2D2',
568
  'DesktopMode' => 'WPDesktop',
569
  'TV' => 'SonyDTV|HbbTV', // experimental
18
  * @author Nick Ilyin <nick.ilyin@gmail.com>
19
  * Original author: Victor Stanciu <vic.stanciu@gmail.com>
20
  *
21
+ * @version 2.8.34
22
  */
23
  class ai_Mobile_Detect
24
  {
61
  /**
62
  * Stores the version number of the current release.
63
  */
64
+ const VERSION = '2.8.34';
65
 
66
  /**
67
  * A type for the version() method indicating a string return value.
164
  */
165
  protected static $phoneDevices = array(
166
  'iPhone' => '\biPhone\b|\biPod\b', // |\biTunes
167
+ 'BlackBerry' => 'BlackBerry|\bBB10\b|rim[0-9]+|\b(BBA100|BBB100|BBD100|BBE100|BBF100|STH100)\b-[0-9]+',
168
  'HTC' => 'HTC|HTC.*(Sensation|Evo|Vision|Explorer|6800|8100|8900|A7272|S510e|C110e|Legend|Desire|T8282)|APX515CKT|Qtek9090|APA9292KT|HD_mini|Sensation.*Z710e|PG86100|Z715e|Desire.*(A8181|HD)|ADR6200|ADR6400L|ADR6425|001HT|Inspire 4G|Android.*\bEVO\b|T-Mobile G1|Z520m|Android [0-9.]+; Pixel',
169
  'Nexus' => 'Nexus One|Nexus S|Galaxy.*Nexus|Android.*Nexus.*Mobile|Nexus 4|Nexus 5|Nexus 6',
170
  // @todo: Is 'Dell Streak' a tablet or a phone? ;)
171
  'Dell' => 'Dell[;]? (Streak|Aero|Venue|Venue Pro|Flash|Smoke|Mini 3iX)|XCD28|XCD35|\b001DL\b|\b101DL\b|\bGS01\b',
172
  'Motorola' => 'Motorola|DROIDX|DROID BIONIC|\bDroid\b.*Build|Android.*Xoom|HRI39|MOT-|A1260|A1680|A555|A853|A855|A953|A955|A956|Motorola.*ELECTRIFY|Motorola.*i1|i867|i940|MB200|MB300|MB501|MB502|MB508|MB511|MB520|MB525|MB526|MB611|MB612|MB632|MB810|MB855|MB860|MB861|MB865|MB870|ME501|ME502|ME511|ME525|ME600|ME632|ME722|ME811|ME860|ME863|ME865|MT620|MT710|MT716|MT720|MT810|MT870|MT917|Motorola.*TITANIUM|WX435|WX445|XT300|XT301|XT311|XT316|XT317|XT319|XT320|XT390|XT502|XT530|XT531|XT532|XT535|XT603|XT610|XT611|XT615|XT681|XT701|XT702|XT711|XT720|XT800|XT806|XT860|XT862|XT875|XT882|XT883|XT894|XT901|XT907|XT909|XT910|XT912|XT928|XT926|XT915|XT919|XT925|XT1021|\bMoto E\b|XT1068|XT1092|XT1052',
173
  'Samsung' => '\bSamsung\b|SM-G950F|SM-G955F|SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B3730|GT-B3740|GT-B5510|GT-B5512|GT-B5722|GT-B6520|GT-B7300|GT-B7320|GT-B7330|GT-B7350|GT-B7510|GT-B7722|GT-B7800|GT-C3010|GT-C3011|GT-C3060|GT-C3200|GT-C3212|GT-C3212I|GT-C3262|GT-C3222|GT-C3300|GT-C3300K|GT-C3303|GT-C3303K|GT-C3310|GT-C3322|GT-C3330|GT-C3350|GT-C3500|GT-C3510|GT-C3530|GT-C3630|GT-C3780|GT-C5010|GT-C5212|GT-C6620|GT-C6625|GT-C6712|GT-E1050|GT-E1070|GT-E1075|GT-E1080|GT-E1081|GT-E1085|GT-E1087|GT-E1100|GT-E1107|GT-E1110|GT-E1120|GT-E1125|GT-E1130|GT-E1160|GT-E1170|GT-E1175|GT-E1180|GT-E1182|GT-E1200|GT-E1210|GT-E1225|GT-E1230|GT-E1390|GT-E2100|GT-E2120|GT-E2121|GT-E2152|GT-E2220|GT-E2222|GT-E2230|GT-E2232|GT-E2250|GT-E2370|GT-E2550|GT-E2652|GT-E3210|GT-E3213|GT-I5500|GT-I5503|GT-I5700|GT-I5800|GT-I5801|GT-I6410|GT-I6420|GT-I7110|GT-I7410|GT-I7500|GT-I8000|GT-I8150|GT-I8160|GT-I8190|GT-I8320|GT-I8330|GT-I8350|GT-I8530|GT-I8700|GT-I8703|GT-I8910|GT-I9000|GT-I9001|GT-I9003|GT-I9010|GT-I9020|GT-I9023|GT-I9070|GT-I9082|GT-I9100|GT-I9103|GT-I9220|GT-I9250|GT-I9300|GT-I9305|GT-I9500|GT-I9505|GT-M3510|GT-M5650|GT-M7500|GT-M7600|GT-M7603|GT-M8800|GT-M8910|GT-N7000|GT-S3110|GT-S3310|GT-S3350|GT-S3353|GT-S3370|GT-S3650|GT-S3653|GT-S3770|GT-S3850|GT-S5210|GT-S5220|GT-S5229|GT-S5230|GT-S5233|GT-S5250|GT-S5253|GT-S5260|GT-S5263|GT-S5270|GT-S5300|GT-S5330|GT-S5350|GT-S5360|GT-S5363|GT-S5369|GT-S5380|GT-S5380D|GT-S5560|GT-S5570|GT-S5600|GT-S5603|GT-S5610|GT-S5620|GT-S5660|GT-S5670|GT-S5690|GT-S5750|GT-S5780|GT-S5830|GT-S5839|GT-S6102|GT-S6500|GT-S7070|GT-S7200|GT-S7220|GT-S7230|GT-S7233|GT-S7250|GT-S7500|GT-S7530|GT-S7550|GT-S7562|GT-S7710|GT-S8000|GT-S8003|GT-S8500|GT-S8530|GT-S8600|SCH-A310|SCH-A530|SCH-A570|SCH-A610|SCH-A630|SCH-A650|SCH-A790|SCH-A795|SCH-A850|SCH-A870|SCH-A890|SCH-A930|SCH-A950|SCH-A970|SCH-A990|SCH-I100|SCH-I110|SCH-I400|SCH-I405|SCH-I500|SCH-I510|SCH-I515|SCH-I600|SCH-I730|SCH-I760|SCH-I770|SCH-I830|SCH-I910|SCH-I920|SCH-I959|SCH-LC11|SCH-N150|SCH-N300|SCH-R100|SCH-R300|SCH-R351|SCH-R400|SCH-R410|SCH-T300|SCH-U310|SCH-U320|SCH-U350|SCH-U360|SCH-U365|SCH-U370|SCH-U380|SCH-U410|SCH-U430|SCH-U450|SCH-U460|SCH-U470|SCH-U490|SCH-U540|SCH-U550|SCH-U620|SCH-U640|SCH-U650|SCH-U660|SCH-U700|SCH-U740|SCH-U750|SCH-U810|SCH-U820|SCH-U900|SCH-U940|SCH-U960|SCS-26UC|SGH-A107|SGH-A117|SGH-A127|SGH-A137|SGH-A157|SGH-A167|SGH-A177|SGH-A187|SGH-A197|SGH-A227|SGH-A237|SGH-A257|SGH-A437|SGH-A517|SGH-A597|SGH-A637|SGH-A657|SGH-A667|SGH-A687|SGH-A697|SGH-A707|SGH-A717|SGH-A727|SGH-A737|SGH-A747|SGH-A767|SGH-A777|SGH-A797|SGH-A817|SGH-A827|SGH-A837|SGH-A847|SGH-A867|SGH-A877|SGH-A887|SGH-A897|SGH-A927|SGH-B100|SGH-B130|SGH-B200|SGH-B220|SGH-C100|SGH-C110|SGH-C120|SGH-C130|SGH-C140|SGH-C160|SGH-C170|SGH-C180|SGH-C200|SGH-C207|SGH-C210|SGH-C225|SGH-C230|SGH-C417|SGH-C450|SGH-D307|SGH-D347|SGH-D357|SGH-D407|SGH-D415|SGH-D780|SGH-D807|SGH-D980|SGH-E105|SGH-E200|SGH-E315|SGH-E316|SGH-E317|SGH-E335|SGH-E590|SGH-E635|SGH-E715|SGH-E890|SGH-F300|SGH-F480|SGH-I200|SGH-I300|SGH-I320|SGH-I550|SGH-I577|SGH-I600|SGH-I607|SGH-I617|SGH-I627|SGH-I637|SGH-I677|SGH-I700|SGH-I717|SGH-I727|SGH-i747M|SGH-I777|SGH-I780|SGH-I827|SGH-I847|SGH-I857|SGH-I896|SGH-I897|SGH-I900|SGH-I907|SGH-I917|SGH-I927|SGH-I937|SGH-I997|SGH-J150|SGH-J200|SGH-L170|SGH-L700|SGH-M110|SGH-M150|SGH-M200|SGH-N105|SGH-N500|SGH-N600|SGH-N620|SGH-N625|SGH-N700|SGH-N710|SGH-P107|SGH-P207|SGH-P300|SGH-P310|SGH-P520|SGH-P735|SGH-P777|SGH-Q105|SGH-R210|SGH-R220|SGH-R225|SGH-S105|SGH-S307|SGH-T109|SGH-T119|SGH-T139|SGH-T209|SGH-T219|SGH-T229|SGH-T239|SGH-T249|SGH-T259|SGH-T309|SGH-T319|SGH-T329|SGH-T339|SGH-T349|SGH-T359|SGH-T369|SGH-T379|SGH-T409|SGH-T429|SGH-T439|SGH-T459|SGH-T469|SGH-T479|SGH-T499|SGH-T509|SGH-T519|SGH-T539|SGH-T559|SGH-T589|SGH-T609|SGH-T619|SGH-T629|SGH-T639|SGH-T659|SGH-T669|SGH-T679|SGH-T709|SGH-T719|SGH-T729|SGH-T739|SGH-T746|SGH-T749|SGH-T759|SGH-T769|SGH-T809|SGH-T819|SGH-T839|SGH-T919|SGH-T929|SGH-T939|SGH-T959|SGH-T989|SGH-U100|SGH-U200|SGH-U800|SGH-V205|SGH-V206|SGH-X100|SGH-X105|SGH-X120|SGH-X140|SGH-X426|SGH-X427|SGH-X475|SGH-X495|SGH-X497|SGH-X507|SGH-X600|SGH-X610|SGH-X620|SGH-X630|SGH-X700|SGH-X820|SGH-X890|SGH-Z130|SGH-Z150|SGH-Z170|SGH-ZX10|SGH-ZX20|SHW-M110|SPH-A120|SPH-A400|SPH-A420|SPH-A460|SPH-A500|SPH-A560|SPH-A600|SPH-A620|SPH-A660|SPH-A700|SPH-A740|SPH-A760|SPH-A790|SPH-A800|SPH-A820|SPH-A840|SPH-A880|SPH-A900|SPH-A940|SPH-A960|SPH-D600|SPH-D700|SPH-D710|SPH-D720|SPH-I300|SPH-I325|SPH-I330|SPH-I350|SPH-I500|SPH-I600|SPH-I700|SPH-L700|SPH-M100|SPH-M220|SPH-M240|SPH-M300|SPH-M305|SPH-M320|SPH-M330|SPH-M350|SPH-M360|SPH-M370|SPH-M380|SPH-M510|SPH-M540|SPH-M550|SPH-M560|SPH-M570|SPH-M580|SPH-M610|SPH-M620|SPH-M630|SPH-M800|SPH-M810|SPH-M850|SPH-M900|SPH-M910|SPH-M920|SPH-M930|SPH-N100|SPH-N200|SPH-N240|SPH-N300|SPH-N400|SPH-Z400|SWC-E100|SCH-i909|GT-N7100|GT-N7105|SCH-I535|SM-N900A|SGH-I317|SGH-T999L|GT-S5360B|GT-I8262|GT-S6802|GT-S6312|GT-S6310|GT-S5312|GT-S5310|GT-I9105|GT-I8510|GT-S6790N|SM-G7105|SM-N9005|GT-S5301|GT-I9295|GT-I9195|SM-C101|GT-S7392|GT-S7560|GT-B7610|GT-I5510|GT-S7582|GT-S7530E|GT-I8750|SM-G9006V|SM-G9008V|SM-G9009D|SM-G900A|SM-G900D|SM-G900F|SM-G900H|SM-G900I|SM-G900J|SM-G900K|SM-G900L|SM-G900M|SM-G900P|SM-G900R4|SM-G900S|SM-G900T|SM-G900V|SM-G900W8|SHV-E160K|SCH-P709|SCH-P729|SM-T2558|GT-I9205|SM-G9350|SM-J120F|SM-G920F|SM-G920V|SM-G930F|SM-N910C|SM-A310F|GT-I9190|SM-J500FN|SM-G903F|SM-J330F',
174
+ 'LG' => '\bLG\b;|LG[- ]?(C800|C900|E400|E610|E900|E-900|F160|F180K|F180L|F180S|730|855|L160|LS740|LS840|LS970|LU6200|MS690|MS695|MS770|MS840|MS870|MS910|P500|P700|P705|VM696|AS680|AS695|AX840|C729|E970|GS505|272|C395|E739BK|E960|L55C|L75C|LS696|LS860|P769BK|P350|P500|P509|P870|UN272|US730|VS840|VS950|LN272|LN510|LS670|LS855|LW690|MN270|MN510|P509|P769|P930|UN200|UN270|UN510|UN610|US670|US740|US760|UX265|UX840|VN271|VN530|VS660|VS700|VS740|VS750|VS910|VS920|VS930|VX9200|VX11000|AX840A|LW770|P506|P925|P999|E612|D955|D802|MS323|M257)|LM-G710',
175
  'Sony' => 'SonyST|SonyLT|SonyEricsson|SonyEricssonLT15iv|LT18i|E10i|LT28h|LT26w|SonyEricssonMT27i|C5303|C6902|C6903|C6906|C6943|D2533',
176
  'Asus' => 'Asus.*Galaxy|PadFone.*Mobile',
177
  'NokiaLumia' => 'Lumia [0-9]{3,4}',
201
  'Amoi' => 'Amoi',
202
  // http://en.wikipedia.org/wiki/INQ
203
  'INQ' => 'INQ',
204
+ 'OnePlus' => 'ONEPLUS',
205
  // @Tapatalk is a mobile app; http://support.tapatalk.com/threads/smf-2-0-2-os-and-browser-detection-plugin-and-tapatalk.15565/#post-79039
206
  'GenericPhone' => 'Tapatalk|PDA;|SAGEM|\bmmp\b|pocket|\bpsp\b|symbian|Smartphone|smartfon|treo|up.browser|up.link|vodafone|\bwap\b|nokia|Series40|Series60|S60|SonyEricsson|N900|MAUI.*WAP.*Browser',
207
  );
220
  'NexusTablet' => 'Android.*Nexus[\s]+(7|9|10)',
221
  // https://en.wikipedia.org/wiki/Pixel_C
222
  'GoogleTablet' => 'Android.*Pixel C',
223
+ 'SamsungTablet' => 'SAMSUNG.*Tablet|Galaxy.*Tab|SC-01C|GT-P1000|GT-P1003|GT-P1010|GT-P3105|GT-P6210|GT-P6800|GT-P6810|GT-P7100|GT-P7300|GT-P7310|GT-P7500|GT-P7510|SCH-I800|SCH-I815|SCH-I905|SGH-I957|SGH-I987|SGH-T849|SGH-T859|SGH-T869|SPH-P100|GT-P3100|GT-P3108|GT-P3110|GT-P5100|GT-P5110|GT-P6200|GT-P7320|GT-P7511|GT-N8000|GT-P8510|SGH-I497|SPH-P500|SGH-T779|SCH-I705|SCH-I915|GT-N8013|GT-P3113|GT-P5113|GT-P8110|GT-N8010|GT-N8005|GT-N8020|GT-P1013|GT-P6201|GT-P7501|GT-N5100|GT-N5105|GT-N5110|SHV-E140K|SHV-E140L|SHV-E140S|SHV-E150S|SHV-E230K|SHV-E230L|SHV-E230S|SHW-M180K|SHW-M180L|SHW-M180S|SHW-M180W|SHW-M300W|SHW-M305W|SHW-M380K|SHW-M380S|SHW-M380W|SHW-M430W|SHW-M480K|SHW-M480S|SHW-M480W|SHW-M485W|SHW-M486W|SHW-M500W|GT-I9228|SCH-P739|SCH-I925|GT-I9200|GT-P5200|GT-P5210|GT-P5210X|SM-T311|SM-T310|SM-T310X|SM-T210|SM-T210R|SM-T211|SM-P600|SM-P601|SM-P605|SM-P900|SM-P901|SM-T217|SM-T217A|SM-T217S|SM-P6000|SM-T3100|SGH-I467|XE500|SM-T110|GT-P5220|GT-I9200X|GT-N5110X|GT-N5120|SM-P905|SM-T111|SM-T2105|SM-T315|SM-T320|SM-T320X|SM-T321|SM-T520|SM-T525|SM-T530NU|SM-T230NU|SM-T330NU|SM-T900|XE500T1C|SM-P605V|SM-P905V|SM-T337V|SM-T537V|SM-T707V|SM-T807V|SM-P600X|SM-P900X|SM-T210X|SM-T230|SM-T230X|SM-T325|GT-P7503|SM-T531|SM-T330|SM-T530|SM-T705|SM-T705C|SM-T535|SM-T331|SM-T800|SM-T700|SM-T537|SM-T807|SM-P907A|SM-T337A|SM-T537A|SM-T707A|SM-T807A|SM-T237|SM-T807P|SM-P607T|SM-T217T|SM-T337T|SM-T807T|SM-T116NQ|SM-T116BU|SM-P550|SM-T350|SM-T550|SM-T9000|SM-P9000|SM-T705Y|SM-T805|GT-P3113|SM-T710|SM-T810|SM-T815|SM-T360|SM-T533|SM-T113|SM-T335|SM-T715|SM-T560|SM-T670|SM-T677|SM-T377|SM-T567|SM-T357T|SM-T555|SM-T561|SM-T713|SM-T719|SM-T813|SM-T819|SM-T580|SM-T355Y?|SM-T280|SM-T817A|SM-T820|SM-W700|SM-P580|SM-T587|SM-P350|SM-P555M|SM-P355M|SM-T113NU|SM-T815Y|SM-T585|SM-T285|SM-T825|SM-W708|SM-T835|SM-T830|SM-T837V|SM-T720|SM-T510|SM-T387V', // SCH-P709|SCH-P729|SM-T2558|GT-I9205 - Samsung Mega - treat them like a regular phone.
224
  // http://docs.aws.amazon.com/silk/latest/developerguide/user-agent.html
225
  'Kindle' => 'Kindle|Silk.*Accelerated|Android.*\b(KFOT|KFTT|KFJWI|KFJWA|KFOTE|KFSOWI|KFTHWI|KFTHWA|KFAPWI|KFAPWA|WFJWAE|KFSAWA|KFSAWI|KFASWI|KFARWI|KFFOWI|KFGIWI|KFMEWI)\b|Android.*Silk/[0-9.]+ like Chrome/[0-9.]+ (?!Mobile)',
226
  // Only the Surface tablets with Windows RT are considered mobile.
252
  // Prestigio Tablets http://www.prestigio.com/support
253
  'PrestigioTablet' => 'PMP3170B|PMP3270B|PMP3470B|PMP7170B|PMP3370B|PMP3570C|PMP5870C|PMP3670B|PMP5570C|PMP5770D|PMP3970B|PMP3870C|PMP5580C|PMP5880D|PMP5780D|PMP5588C|PMP7280C|PMP7280C3G|PMP7280|PMP7880D|PMP5597D|PMP5597|PMP7100D|PER3464|PER3274|PER3574|PER3884|PER5274|PER5474|PMP5097CPRO|PMP5097|PMP7380D|PMP5297C|PMP5297C_QUAD|PMP812E|PMP812E3G|PMP812F|PMP810E|PMP880TD|PMT3017|PMT3037|PMT3047|PMT3057|PMT7008|PMT5887|PMT5001|PMT5002',
254
  // http://support.lenovo.com/en_GB/downloads/default.page?#
255
+ 'LenovoTablet' => 'Lenovo TAB|Idea(Tab|Pad)( A1|A10| K1|)|ThinkPad([ ]+)?Tablet|YT3-850M|YT3-X90L|YT3-X90F|YT3-X90X|Lenovo.*(S2109|S2110|S5000|S6000|K3011|A3000|A3500|A1000|A2107|A2109|A1107|A5500|A7600|B6000|B8000|B8080)(-|)(FL|F|HV|H|)|TB-X103F|TB-X304X|TB-X304F|TB-X304L|TB-X505F|TB-X505L|TB-X505X|TB-X605F|TB-X605L|TB-8703F|TB-8703X|TB-8703N|TB-8704N|TB-8704F|TB-8704X|TB-8704V|TB-7304F|TB-7304I|TB-7304X|Tab2A7-10F|Tab2A7-20F|TB2-X30L|YT3-X50L|YT3-X50F|YT3-X50M|YT-X705F|YT-X703F|YT-X703L|YT-X705L|YT-X705X|TB2-X30F|TB2-X30L|TB2-X30M|A2107A-F|A2107A-H|TB3-730F|TB3-730M|TB3-730X|TB-7504F|TB-7504X',
256
  // http://www.dell.com/support/home/us/en/04/Products/tab_mob/tablets
257
  'DellTablet' => 'Venue 11|Venue 8|Venue 7|Dell Streak 10|Dell Streak 7',
258
  // http://www.yarvik.com/en/matrix/tablets/
302
  // http://www.fly-phone.com/devices/tablets/ ; http://www.fly-phone.com/service/
303
  'FlyTablet' => 'IQ310|Fly Vision',
304
  // http://www.bqreaders.com/gb/tablets-prices-sale.html
305
+ 'bqTablet' => 'Android.*(bq)?.*\b(Elcano|Curie|Edison|Maxwell|Kepler|Pascal|Tesla|Hypatia|Platon|Newton|Livingstone|Cervantes|Avant|Aquaris ([E|M]10|M8))\b|Maxwell.*Lite|Maxwell.*Plus',
306
  // http://www.huaweidevice.com/worldwide/productFamily.do?method=index&directoryId=5011&treeId=3290
307
  // http://www.huaweidevice.com/worldwide/downloadCenter.do?method=index&directoryId=3372&treeId=0&tb=1&type=software (including legacy tablets)
308
+ 'HuaweiTablet' => 'MediaPad|MediaPad 7 Youth|IDEOS S7|S7-201c|S7-202u|S7-101|S7-103|S7-104|S7-105|S7-106|S7-201|S7-Slim|M2-A01L|BAH-L09|BAH-W09|AGS-L09|CMR-AL19',
309
  // Nec or Medias Tab
310
  'NecTablet' => '\bN-06D|\bN-08D',
311
  // Pantech Tablets: http://www.pantechusa.com/phones/
315
  // http://versusuk.com/support.html
316
  'VersusTablet' => 'TOUCHPAD.*[78910]|\bTOUCHTAB\b',
317
  // http://www.zync.in/index.php/our-products/tablet-phablets
318
+ 'ZyncTablet' => 'z1000|Z99 2G|z930|z990|z909|Z919|z900', // Removed "z999" because of https://github.com/serbanghita/Mobile-Detect/issues/717
319
  // http://www.positivoinformatica.com.br/www/pessoal/tablet-ypy/
320
  'PositivoTablet' => 'TB07STA|TB10STA|TB07FTA|TB10FTA',
321
  // https://www.nabitablet.com/
378
  'GoCleverTablet' => 'GOCLEVER TAB|A7GOCLEVER|M1042|M7841|M742|R1042BK|R1041|TAB A975|TAB A7842|TAB A741|TAB A741L|TAB M723G|TAB M721|TAB A1021|TAB I921|TAB R721|TAB I720|TAB T76|TAB R70|TAB R76.2|TAB R106|TAB R83.2|TAB M813G|TAB I721|GCTA722|TAB I70|TAB I71|TAB S73|TAB R73|TAB R74|TAB R93|TAB R75|TAB R76.1|TAB A73|TAB A93|TAB A93.2|TAB T72|TAB R83|TAB R974|TAB R973|TAB A101|TAB A103|TAB A104|TAB A104.2|R105BK|M713G|A972BK|TAB A971|TAB R974.2|TAB R104|TAB R83.3|TAB A1042',
379
  // Modecom Tablets - http://www.modecom.eu/tablets/portal/
380
  'ModecomTablet' => 'FreeTAB 9000|FreeTAB 7.4|FreeTAB 7004|FreeTAB 7800|FreeTAB 2096|FreeTAB 7.5|FreeTAB 1014|FreeTAB 1001 |FreeTAB 8001|FreeTAB 9706|FreeTAB 9702|FreeTAB 7003|FreeTAB 7002|FreeTAB 1002|FreeTAB 7801|FreeTAB 1331|FreeTAB 1004|FreeTAB 8002|FreeTAB 8014|FreeTAB 9704|FreeTAB 1003',
381
+ // Vonino Tablets
382
  'VoninoTablet' => '\b(Argus[ _]?S|Diamond[ _]?79HD|Emerald[ _]?78E|Luna[ _]?70C|Onyx[ _]?S|Onyx[ _]?Z|Orin[ _]?HD|Orin[ _]?S|Otis[ _]?S|SpeedStar[ _]?S|Magnet[ _]?M9|Primus[ _]?94[ _]?3G|Primus[ _]?94HD|Primus[ _]?QS|Android.*\bQ8\b|Sirius[ _]?EVO[ _]?QS|Sirius[ _]?QS|Spirit[ _]?S)\b',
383
  // ECS Tablets - http://www.ecs.com.tw/ECSWebSite/Product/Product_Tablet_List.aspx?CategoryID=14&MenuID=107&childid=M_107&LanID=0
384
  'ECSTablet' => 'V07OT2|TM105A|S10OT1|TR10CS1',
386
  // @note: no need to add all the tablet codes since they are guided by the first regex.
387
  'StorexTablet' => 'eZee[_\']?(Tab|Go)[0-9]+|TabLC7|Looney Tunes Tab',
388
  // Generic Vodafone tablets.
389
+ 'VodafoneTablet' => 'SmartTab([ ]+)?[0-9]+|SmartTabII10|SmartTabII7|VF-1497|VFD 1400',
390
  // French tablets - Essentiel B http://www.boulanger.fr/tablette_tactile_e-book/tablette_tactile_essentiel_b/cl_68908.htm?multiChoiceToDelete=brand&mc_brand=essentielb
391
  // Aka: http://www.essentielb.fr/
392
  'EssentielBTablet' => 'Smart[ \']?TAB[ ]+?[0-9]+|Family[ \']?TAB2',
485
  'PalmOS' => 'PalmOS|avantgo|blazer|elaine|hiptop|palm|plucker|xiino',
486
  'SymbianOS' => 'Symbian|SymbOS|Series60|Series40|SYB-[0-9]+|\bS60\b',
487
  // @reference: http://en.wikipedia.org/wiki/Windows_Mobile
488
+ 'WindowsMobileOS' => 'Windows CE.*(PPC|Smartphone|Mobile|[0-9]{3}x[0-9]{3})|Windows Mobile|Windows Phone [0-9.]+|WCE;',
489
  // @reference: http://en.wikipedia.org/wiki/Windows_Phone
490
  // http://wifeng.cn/?r=blog&a=view&id=106
491
  // http://nicksnettravels.builttoroam.com/post/2011/01/10/Bogus-Windows-Phone-7-User-Agent-String.aspx
493
  // https://msdn.microsoft.com/en-us/library/hh869301(v=vs.85).aspx
494
  'WindowsPhoneOS' => 'Windows Phone 10.0|Windows Phone 8.1|Windows Phone 8.0|Windows Phone OS|XBLWP7|ZuneWP7|Windows NT 6.[23]; ARM;',
495
  'iOS' => '\biPhone.*Mobile|\biPod|\biPad|AppleCoreMedia',
496
+ // https://en.wikipedia.org/wiki/IPadOS
497
+ 'iPadOS' => 'CPU OS 13',
498
  // http://en.wikipedia.org/wiki/MeeGo
499
  // @todo: research MeeGo in UAs
500
  'MeeGoOS' => 'MeeGo',
542
  // https://github.com/serbanghita/Mobile-Detect/issues/7
543
  'DiigoBrowser' => 'DiigoBrowser',
544
  // http://www.puffinbrowser.com/index.php
545
+ // https://github.com/serbanghita/Mobile-Detect/issues/752
546
+ // 'Puffin' => 'Puffin',
547
  // http://mercury-browser.com/index.html
548
  'Mercury' => '\bMercury\b',
549
  // http://en.wikipedia.org/wiki/Obigo_Browser
567
  // http://scottcate.com/technology/windows-phone-8-ie10-desktop-or-mobile/
568
  // https://github.com/serbanghita/Mobile-Detect/issues/57#issuecomment-15024011
569
  // https://developers.facebook.com/docs/sharing/best-practices
570
+ 'Bot' => 'Googlebot|facebookexternalhit|Google-AMPHTML|s~amp-validator|AdsBot-Google|Google Keyword Suggestion|Facebot|YandexBot|YandexMobileBot|bingbot|ia_archiver|AhrefsBot|Ezooms|GSLFbot|WBSearchBot|Twitterbot|TweetmemeBot|Twikle|PaperLiBot|Wotbox|UnwindFetchor|Exabot|MJ12bot|YandexImages|TurnitinBot|Pingdom|contentkingapp',
571
  'MobileBot' => 'Googlebot-Mobile|AdsBot-Google-Mobile|YahooSeeker/M1A1-R2D2',
572
  'DesktopMode' => 'WPDesktop',
573
  'TV' => 'SonyDTV|HbbTV', // experimental
includes/mobiledetect/README.md ADDED
@@ -0,0 +1,344 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ![Mobile Detect](http://demo.mobiledetect.net/logo-github.png)
2
+
3
+ > Motto: "Every business should have a detection script to detect mobile readers."
4
+
5
+ [![Build Status](https://travis-ci.org/serbanghita/Mobile-Detect.svg?branch=devel)](https://travis-ci.org/serbanghita/Mobile-Detect)
6
+ [![Latest Stable Version](https://poser.pugx.org/mobiledetect/mobiledetectlib/v/stable.svg)](https://packagist.org/packages/mobiledetect/mobiledetectlib)
7
+ [![Total Downloads](https://poser.pugx.org/mobiledetect/mobiledetectlib/downloads.svg)](https://packagist.org/packages/mobiledetect/mobiledetectlib)
8
+ [![Daily Downloads](https://poser.pugx.org/mobiledetect/mobiledetectlib/d/daily.png)](https://packagist.org/packages/mobiledetect/mobiledetectlib)
9
+ [![License](https://poser.pugx.org/mobiledetect/mobiledetectlib/license.svg)](https://packagist.org/packages/mobiledetect/mobiledetectlib)
10
+ [![Chat on Slack](https://img.shields.io/badge/Slack%20%23general-join-orange.svg)](https://join.slack.com/t/mobiledetect/shared_invite/enQtMjg1NDY0OTg5NzgzLTcwMzEzMWJjZjRlOWFkY2ZiNzE1ZmRmNzEwM2VhOGY5OGVkYWMxNjdkZDU5YjQ5MmM5MGUxYjhlZDQwOGVjZjE)
11
+
12
+ #### About
13
+
14
+ Mobile Detect is a lightweight PHP class for detecting mobile devices (including tablets).
15
+ It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.
16
+
17
+ *Why*
18
+
19
+ Your website's _content strategy_ is important! You need a complete toolkit to deliver an experience that is _optimized_,
20
+ _fast_ and _relevant_ to your users. Mobile Detect class is a
21
+ [server-side detection](http://www.w3.org/TR/mwabp/#bp-devcap-detection) tool that can help you with your RWD strategy,
22
+ it is not a replacement for CSS3 media queries or other forms of client-side feature detection.
23
+
24
+ *How*
25
+
26
+ We're committed to make Mobile_Detect the best open-source mobile detection resource and this is why before
27
+ each release we're running [unit tests](./tests) and research and update the detection rules on **monthly** basis.
28
+
29
+ *Who*
30
+
31
+ See [the history](./docs/HISTORY.md) of the project.
32
+
33
+ #### Announcements
34
+
35
+ * **JetBrains** is sponsoring the project by providing licenses for [PHPStorm](https://www.jetbrains.com/phpstorm/) and
36
+ [DataGrip](https://www.jetbrains.com/datagrip/).
37
+ * **Mobile_Detect `2.x.x`** is only integrating new regexes, User-Agents and tests. We are focusing on **new tablets only**.
38
+ The rest of the PRs about TVs, bots or optimizations will be closed and analyzed after `3.0.0-beta` is released.
39
+ * **Mobile_Detect `3.x.x`** is experimental and WIP.
40
+
41
+
42
+ #### Install
43
+
44
+ **Download and include manually**
45
+ > Use this to quickly test the demo.
46
+
47
+ * [Download latest release](../../tags)
48
+ * [Mobile_Detect.php](./Mobile_Detect.php)
49
+
50
+ ```php
51
+ require_once "libs/Mobile_Detect.php";
52
+ ```
53
+
54
+ **Install as a [composer package](https://packagist.org/packages/mobiledetect/mobiledetectlib)**
55
+ > Use this method to get continuous updates.
56
+
57
+ ```
58
+ composer require mobiledetect/mobiledetectlib
59
+ ```
60
+ or include the dependency in the `composer.json` file:
61
+ ```json
62
+ {
63
+ "require": {
64
+ "mobiledetect/mobiledetectlib": "^2.8"
65
+ }
66
+ }
67
+ ```
68
+
69
+ #### Demo
70
+
71
+ * [:iphone: Live demo!](https://demo.mobiledetect.net)
72
+ * [Code examples](../../wiki/Code-examples)
73
+
74
+ #### Contribute
75
+
76
+ *Submit a PR*
77
+ > Submit a pull request but before make sure you read [how to contribute](docs/CONTRIBUTING.md) guide.
78
+
79
+ *Donate*
80
+
81
+ |Paypal|
82
+ |------|
83
+ |[Donate :+1:](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mobiledetectlib%40gmail%2ecom&lc=US&item_name=Mobile%20Detect&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted)|
84
+
85
+
86
+ I'm currently paying for hosting and spend a lot of my family time to maintain the project and planning the future releases.
87
+ I would highly appreciate any money donations that will keep the research going.
88
+
89
+ Special thanks to the community :+1: for donations, JetBrains team for the continuous support and [Dragos Gavrila](https://twitter.com/grafician) who contributed with the logo.
90
+
91
+ #### Modules, plugins, ports
92
+ > [Submit new module, plugin, port](../../issues/new?title=New%203rd%20party%20module&body=Name,%20Link%20and%20Description%20of%20the%20module.)
93
+
94
+ :point_right: Keep `Mobile_Detect.php` class in a separate `module` and do NOT include it in your script core because of the high frequency of updates.
95
+ :point_right: When including the class into your `web application` or `module` always use `include_once '../path/to/Mobile_Detect.php` to prevent conflicts.
96
+
97
+ **JavaScript**
98
+
99
+ * mobile-detect.js - A [JavaScript port](https://github.com/hgoebl/mobile-detect.js) of Mobile-Detect class. Made by [Heinrich Goebl](https://github.com/hgoebl).
100
+
101
+ **Varnish Cache**
102
+
103
+ * [Varnish Mobile Detect](https://github.com/willemk/varnish-mobiletranslate) - Drop-in varnish solution to mobile user
104
+ detection based on the Mobile-Detect library. Made by [willemk](https://github.com/willemk).
105
+ * [mobiledetect2vcl](https://github.com/carlosabalde/mobiledetect2vcl) - Python script to transform the Mobile
106
+ Detect JSON database into an UA-based mobile detection VCL subroutine easily integrable in any Varnish Cache
107
+ configuration. Made by [Carlos Abalde](https://github.com/carlosabalde).
108
+
109
+ **LUA**
110
+
111
+ * [mobile-detect.lua](https://github.com/yourpalmark/mobile-detect.lua) is a port of Mobile-Detect to Lua for
112
+ NGINX HTTP servers. Follows closely to mobile-detect.js. Supports all methods that server-side
113
+ mobile-detect.js supports. Fully unit-tested and synced with Travis CI (Build Passing badge included).
114
+ Made by [Mark Walters](https://github.com/yourpalmark).
115
+
116
+ **PHP**
117
+
118
+ **WordPress**
119
+
120
+ * [Mobile Detect for WordPress](https://wordpress.org/plugins/tinywp-mobile-detect/) - WordPress has a built-in function
121
+ (`wp_is_mobile()`) to detect mobile devices. There is (at least) one catch, though. It considers iPad (iPad pro,
122
+ and any tablet) as a mobile. So, this 3rd party module changes the way `wp_is_mobile()` works with the help of
123
+ Mobile Detect PHP library!
124
+ Made by [Pothi Kalimuthu](https://github.com/pothi)
125
+
126
+ * [WordPress Mobile Detect](https://wordpress.org/plugins/wp-mobile-detect/) - Gives you the ability to wrap that
127
+ infographic in a `[notdevice][/notdevice]` shortcode so at the server level WordPress will
128
+ decide to show that content only if the user is NOT on a phone or tablet.
129
+ Made by [Jesse Friedman](https://profiles.wordpress.org/professor44/).
130
+
131
+ * [mobble](https://wordpress.org/plugins/mobble/) - provides mobile related conditional functions for your site.
132
+ e.g. `is_iphone()`, `is_mobile()` and `is_tablet()`. Made by Scott Evans.
133
+
134
+ * [WordPress Responsage](https://github.com/iamspacehead/responsage) - A small WordPress theme plugin that allows
135
+ you to make your images responsive. Made by [Adrian Ciaschetti](https://github.com/iamspacehead).
136
+
137
+ * [WP247 Body Classes](https://wordpress.org/plugins/wp247-body-classes/) - Add unique classes to the `body` tag for
138
+ easy styling based on various attributes (archive, user, post, mobile) and various WordPress "is" functions.
139
+ Mobile attributes include type of device, Operating System, Browser, etc. Examples: .is-mobile, .is-not-mobile,
140
+ .is-tablet, .is-ios, .is-not-ios, .is-androidos, .is-chromebrowser.
141
+ Made by [wescleveland56](https://github.com/wescleveland56).
142
+
143
+ * [Adaptive Content](https://wordpress.org/plugins/addfunc-adaptive-content/) for WordPress provides the most
144
+ intuitive set of shortcodes for including/excluding content on mobile devices, tablets desktops and other
145
+ more specific device parameters. This lightweight plugin lets content writers and theme authors choose when
146
+ WordPress should or shouldn’t show any give content item using shortcodes and quicktags or theme elements using functions.
147
+ Made by [AddFunc](https://profiles.wordpress.org/addfunc).
148
+
149
+ * [AddFunc Mobile Detect](https://wordpress.org/plugins/addfunc-mobile-detect/) for WordPress redirects
150
+ mobile traffic to your mobile website and, basically, gives you loads of control over your mobile redirects.
151
+ Made by [AddFunc](https://profiles.wordpress.org/addfunc).
152
+
153
+ **Drupal**
154
+
155
+ * [Drupal Mobile Switch](https://www.drupal.org/project/mobile_switch) - The Mobile Switch Drupal module provides a
156
+ automatic theme switch functionality for mobile devices, detected by Browscap or Mobile Detect.
157
+ Made by [Siegfried Neumann](https://www.drupal.org/user/45267).
158
+
159
+ * [Drupal Context Mobile Detect](https://www.drupal.org/project/context_mobile_detect) - This is a Drupal context module
160
+ which integrates Context and PHP Mobile Detect library.
161
+ Created by [Artem Shymko](https://www.drupal.org/user/432492).
162
+
163
+ * [Drupal Mobile Detect](https://www.drupal.org/project/mobile_detect) - Lightweight mobile detect module for Drupal
164
+ created by [Matthew Donadio](https://www.drupal.org/user/325244).
165
+
166
+ **Joomla**
167
+
168
+ * [yagendoo Joomla! Mobile Detection Plugin](http://www.yagendoo.com/en/blog/free-mobile-detection-plugin-for-joomla.html) - Lightweight PHP plugin for Joomla!
169
+ that detects a mobile browser using the Mobile Detect class.
170
+ Made by yagendoo media.
171
+
172
+ * [User Agent Detector plugin](https://github.com/renekreijveld/UserAgentDetector) - This system plugin detects the user
173
+ agent of your website visitor and sets a session variable accordingly. Based on the user agent, the plugin detects if the
174
+ site is running on a desktop pc, tablet or smartphone. It can also detect if the visitor is a spider bot (search engine).
175
+ Session variable that is set: `ualayout`. Possible values: desktop, tablet, mobile, bot.
176
+ Made by @ReneKreijveld.
177
+
178
+ **Magento**
179
+
180
+ * [Magento helper](http://www.magentocommerce.com/magento-connect/catalog/product/view/id/16835/) from Optimise Web enables
181
+ the use of all functions provided by Mobile Detect. Made by [Kathir Vel](http://www.kathirvel.com).
182
+
183
+ * [Magento 2 Mobile Detect Theme Change](https://github.com/EaDesgin/magento2-mobiledetect) is an extension for Magento 2
184
+ that will change the theme or redirect to a different URL. Also containing a helper to check for the device type.
185
+
186
+ **PrestaShop**
187
+
188
+ * [PrestaShop](https://www.prestashop.com) is a free, secure and open source shopping cart platform. Mobile_Detect
189
+ is included in the default package since 1.5.x.
190
+
191
+ **Laravel**
192
+
193
+ * [Agent](https://github.com/jenssegers/agent) is a user agent class for Laravel based on Mobile Detect with some
194
+ additional functionality.
195
+ Made by [Jens Segers](https://github.com/jenssegers).
196
+
197
+ * [Laravel Mobile Detect](https://github.com/riverskies/laravel-mobile-detect) is a package that enables you to use device detection right in your Laravel Blade templates. (Utilises the well-known, constantly updated PHP mobile detection library.)
198
+ Made by [Barnabas Kecskes](https://github.com/barnabaskecskes).
199
+
200
+ * [BrowserDetect](https://github.com/hisorange/browser-detect) is a browser and mobile detection package, collects
201
+ and wrap together the best user-agent identifiers for Laravel.
202
+ Created by [Varga Zsolt](https://github.com/hisorange).
203
+
204
+ **Zend Framework**
205
+
206
+ * [ZF2 Mobile-Detect](https://github.com/neilime/zf2-mobile-detect.git) is a Zend Framework 2 module that provides
207
+ Mobile-Detect features (Mobile_Detect class as a service, helper for views and plugin controllers).
208
+ Made by [neilime](https://github.com/neilime).
209
+
210
+ * [ZF2 MobileDetectModule](https://github.com/nikolaposa/MobileDetectModule) facilitates integration of a PHP MobileDetect
211
+ class with some ZF2-based application. Has similar idea like the existing ZF2 Mobile-Detect module,
212
+ but differs in initialization and provision routine of the actual Mobile_Detect class.
213
+ Appropriate view helper and controller plugin also have different conceptions.
214
+ Made by [Nikola Posa](https://github.com/nikolaposa).
215
+
216
+ **Symfony**
217
+
218
+ * [Symfony2 Mobile Detect Bundle](https://github.com/suncat2000/MobileDetectBundle) is a bundle for detecting mobile devices,
219
+ manage mobile view and redirect to the mobile and tablet version.
220
+ Made by [Nikolay Ivlev](https://github.com/suncat2000).
221
+
222
+ * [Silex Mobile Detect Service Provider](https://github.com/jbinfo/MobileDetectServiceProvider) is a service provider to
223
+ interact with Mobile detect class methods.
224
+ Made by [Lhassan Baazzi](https://github.com/jbinfo).
225
+
226
+ **Slim Framework**
227
+
228
+ * [Slim_Mobile_Detect](https://github.com/zguillez/slim_mobile_detect) implements Mobile_Detect lib for different
229
+ responses write on Slim Framework App.
230
+
231
+ **ExpressionEngine**
232
+
233
+ * [EE2 Detect Mobile](https://github.com/garethtdavies/detect-mobile) is a lightweight PHP plugin for EE2 that detects
234
+ a mobile browser using the Mobile Detect class. Made by [Gareth Davies](https://github.com/garethtdavies).
235
+
236
+ **Yii Framework**
237
+
238
+ * [Yii Extension](https://github.com/iamsalnikov/MobileDetect) - Mobile detect plugin for Yii framework.
239
+ Made by [Alexey Salnikov](https://github.com/iamsalnikov).
240
+
241
+ * [Yii Extension](https://github.com/candasm/yii1-mobile-detect-component) - Mobile detect component for Yii framework
242
+ 1.x version which supports composer package manager. Made by [Candas Minareci](https://github.com/candasm).
243
+
244
+ * [Yii2 Device Detect](https://github.com/alexandernst/yii2-device-detect/) - Yii2 extension for Mobile-Detect library.
245
+ Made by [Alexander Nestorov](https://github.com/alexandernst).
246
+
247
+ **CakePHP**
248
+
249
+ * [CakePHP MobileDetect](https://github.com/chronon/CakePHP-MobileDetectComponent-Plugin) is a plugin component for
250
+ CakePHP 2.x. Made by [Gregory Gaskill](https://github.com/chronon).
251
+
252
+ **FuelPHP**
253
+
254
+ * [Special Agent](https://github.com/rob-bar/special_agent) is a FuelPHP package which uses php-mobile-detect to
255
+ determine whether a device is mobile or not. It overrides the Fuelphp Agent class its methods.
256
+ Made by [Robbie Bardjin](https://github.com/rob-bar).
257
+
258
+
259
+ **TYPO3**
260
+
261
+ * [px_mobiledetect](https://typo3.org/extensions/repository/view/px_mobiledetect) is an extension that helps to detect
262
+ visitor's mobile device class (if that’s tablet or mobile device like smartphone). Made by Alexander Tretyak.
263
+
264
+ **Other**
265
+
266
+ * [PageCache](https://github.com/mmamedov/page-cache) is a lightweight PHP library for full page cache,
267
+ with built-in Mobile-Detect support. Made by [Muhammed Mamedov](https://github.com/mmamedov).
268
+
269
+ * [Statamic CMS Mobile Detect](https://github.com/haikulab/statamic-mobile-detect) is a plugin.
270
+ Made by [Sergei Filippov](https://github.com/haikulab/statamic-mobile-detect) of Haiku Lab.
271
+
272
+ * [Kohana Mobile Detect](https://github.com/madeinnordeste/kohana-mobile-detect) is an example of implementation of
273
+ Mobile_Detect class with Kohana framework.
274
+ Written by [Luiz Alberto S. Ribeiro](https://github.com/madeinnordeste).
275
+
276
+ * [MemHT](https://www.memht.com) is a Free PHP CMS and Blog that permit the creation and the management online
277
+ of websites with few and easy steps. Has the class included in the core.
278
+
279
+ * [concrete5](https://www.concrete5.org) is a CMS that is free and open source. The library is included in the core.
280
+
281
+ * [engine7](https://github.com/QOXCorp/exengine) is PHP Open Source Framework. The Mobile_Detect class is included in
282
+ the engine.
283
+
284
+ * [Zikula](http://zikula.org) is a free and open-source Content Management Framework, which allows you to run
285
+ impressive websites and build powerful online applications. The core uses Mobile-Detect to switch to a special
286
+ Mobile theme, using jQueryMobile.
287
+
288
+ * [UserAgentInfo](https://github.com/quentin389/UserAgentInfo) is a PHP class for parsing user agent strings
289
+ (HTTP_USER_AGENT). Includes mobile checks, bot checks, browser types/versions and more.
290
+ Based on browscap, Mobile_Detect and ua-parser. Created for high traffic websites and fast batch processing.
291
+ Made by [quentin389](https://github.com/quentin389).
292
+
293
+ * [LJ Mobile Detect](https://github.com/lewisjenkins/craft-lj-mobiledetect) is a simple implementation of Mobile Detect
294
+ for Craft CMS. Made by [Lewis Jenkins](https://github.com/lewisjenkins).
295
+
296
+ * [Detect Craft](https://github.com/mmikkel/Detect-Craft) is a Craft CMS wrapper for the Mobile_Detect library. Made by [Mikkel Rummelhoff](https://github.com/mmikkel).
297
+
298
+ * [Grav Plugin Mobile Detect](https://github.com/dimitrilongo/grav-plugin-mobile-detect/) is a simple implementation
299
+ of Mobile Detect for Grav CMS. Made by [Dimitri Longo](https://github.com/dimitrilongo).
300
+
301
+ * [Mobile_Detect module for UliCMS](https://github.com/derUli/ulicms-Mobile_Detect).
302
+ Made by [derUli](https://github.com/derUli).
303
+
304
+ **Perl**
305
+
306
+ * [MobileDetect.pm](https://www.buzzerstar.com/development/) is a Perl module for Mobile Detect.
307
+ Made by [Sebastian Enger](https://devop.tools/).
308
+
309
+ **Python**
310
+
311
+ * [pymobiledetect](https://pypi.python.org/pypi/pymobiledetect) - Mobile detect python package.
312
+ Made by Bas van Oostveen.
313
+
314
+ **Ruby**
315
+
316
+ * [mobile_detect.rb](https://github.com/ktaragorn/mobile_detect) is a Ruby gem using the JSON data exposed by the
317
+ php project and implementing a basic subset of the API (as much as can be done by the exposed data).
318
+ Made by [Karthik T](https://github.com/ktaragorn).
319
+
320
+ **Go**
321
+
322
+ * [GoMobileDetect](https://github.com/Shaked/gomobiledetect) is a Go port of Mobile Detect class.
323
+ Made by [https://github.com/Shaked](Shaked).
324
+
325
+
326
+ **LUA**
327
+
328
+ * [ua-lua](https://github.com/robinef/ua-lua) is a small lib written in LUA providing device type detection.
329
+ ua-lua is detecting mobile or tablet devices based on user-agent inside nginx daemon.
330
+ Made by [Frédéric Robinet](https://github.com/robinef).
331
+
332
+ **.Net**
333
+
334
+ * [mobile-detect](https://github.com/validide/mobile-detect) is a .Net partial port written in C#.
335
+ Made by [Valentin Dide](https://github.com/validide).
336
+
337
+ **ColdFusion**
338
+
339
+ * [MobileDetect](https://github.com/GiancarloGomez/ColdFusion-MobileDetect) is a CFC port of the
340
+ Mobile_Detect PHP Library. Made by [Giancarlo Gomez](https://github.com/GiancarloGomez).
341
+
342
+ **Experiments** :bulb:
343
+
344
+ * [Mobile Detect Fast](https://bitbucket.org/lanaguani/mobile-detect-fast/) (See: [#474](https://github.com/serbanghita/Mobile-Detect/issues/474)) is a class to increase the performance of Mobile Detect lib. Made by [LanaGuani](https://github.com/lanaguanifw).
js/ad-inserter.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version = "2.5.3";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
@@ -2746,6 +2746,7 @@ jQuery(document).ready(function($) {
2746
  create_list_editor ('url', tab);
2747
  create_list_editor ('url-parameter',tab);
2748
  create_list_editor ('referer', tab);
 
2749
  create_list_editor ('ip-address', tab);
2750
  create_list_selector ('country', tab);
2751
  create_list_selector ('city', tab);
1
+ var javascript_version = "2.5.5";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
2746
  create_list_editor ('url', tab);
2747
  create_list_editor ('url-parameter',tab);
2748
  create_list_editor ('referer', tab);
2749
+ create_list_selector ('client', tab);
2750
  create_list_editor ('ip-address', tab);
2751
  create_list_selector ('country', tab);
2752
  create_list_selector ('city', tab);
languages/ad-inserter-sl_SI.mo CHANGED
Binary file
languages/ad-inserter-sl_SI.po CHANGED
@@ -4,141 +4,141 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.5.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2019-09-22 10:05:32+00:00\n"
8
- "PO-Revision-Date: 2019-09-22 12:11+0200\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 2.2.3\n"
16
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
17
  "%100<=4 ? 2 : 3);\n"
18
 
19
- #: ad-inserter.php:403
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
- #: ad-inserter.php:419
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
- #: ad-inserter.php:426
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
- #: ad-inserter.php:497
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
- #: ad-inserter.php:504
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
- #: ad-inserter.php:513
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
- #: ad-inserter.php:520
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
- #: ad-inserter.php:530
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
  #. translators: Debugging position name Before HTML element
60
- #: ad-inserter.php:1133
61
  msgid "Before"
62
  msgstr "Pred"
63
 
64
  #. translators: Debugging position name After HTML element
65
- #: ad-inserter.php:1138
66
  msgid "After"
67
  msgstr "Za"
68
 
69
  #. translators: Debugging position name Prepend content of HTML element (before
70
  #. the content of the HTML element)
71
- #: ad-inserter.php:1143 strings.php:103
72
  msgid "Prepend content"
73
  msgstr "Dodaj pred vsebino"
74
 
75
  #. translators: Debugging position name Append content of HTML element (after
76
  #. the content of the HTML element)
77
- #: ad-inserter.php:1148 strings.php:104
78
  msgid "Append content"
79
  msgstr "Dodaj za vsebino"
80
 
81
  #. translators: Debugging position name Replace content of HTML element
82
- #: ad-inserter.php:1153 strings.php:105
83
  msgid "Replace content"
84
  msgstr "Nadomesti vsebino"
85
 
86
  #. translators: Debugging position name Replace HTML element
87
- #: ad-inserter.php:1158 strings.php:155
88
  msgid "Replace"
89
  msgstr "Nadomesti"
90
 
91
  #. translators: Debugging message when output buffering is enabled
92
- #: ad-inserter.php:1205
93
  msgid "OUTPUT BUFFERING"
94
  msgstr "PREDPOMNJENJE IZHODA"
95
 
96
  #. translators: Debugging position
97
- #: ad-inserter.php:1209
98
  msgid "Above Header"
99
  msgstr "Nad Glavo"
100
 
101
- #: ad-inserter.php:1418
102
  msgctxt "Menu item"
103
  msgid "Log In"
104
  msgstr "Prijava"
105
 
106
  #. translators: %s: Ad Inserter
107
- #: ad-inserter.php:1743 ad-inserter.php:2669
108
  msgid "%s Settings"
109
  msgstr "%s Nastavitve"
110
 
111
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
112
- #: ad-inserter.php:2190
113
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
114
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
115
 
116
- #: ad-inserter.php:2190
117
  msgid "NO ACTION"
118
  msgstr "NI AKCIJE"
119
 
120
- #: ad-inserter.php:2191
121
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
122
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
123
 
124
- #: ad-inserter.php:2192
125
  msgid "AD BLOCKING DETECTED - ACTION"
126
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
127
 
128
- #: ad-inserter.php:2193
129
  msgid "AD BLOCKING NOT DETECTED"
130
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
131
 
132
- #: ad-inserter.php:2194
133
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
134
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
135
 
136
- #: ad-inserter.php:2195
137
  msgid "AD BLOCKING DETECTED - NO ACTION"
138
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
139
 
140
  #. Translators: 1: number of blocks, 2: Ad Inserter
141
- #: ad-inserter.php:2394
142
  msgid "Hey, you are now using %1$s %2$s block."
143
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
144
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
@@ -146,27 +146,27 @@ msgstr[1] "Hej, trenutno uporabljate %1$s %2$s bloka."
146
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
147
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
148
 
149
- #: ad-inserter.php:2395 includes/functions.old.php:1652
150
- #: includes/functions.php:1697
151
  msgid "No, thank you."
152
  msgstr "Ne, hvala."
153
 
154
  #. Translators: %s: Ad Inserter
155
- #: ad-inserter.php:2398
156
  msgid ""
157
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
158
  msgstr "Hej, %s uporabljate že kar nekaj časa. Upam, da ste zadovoljni z njim."
159
 
160
- #: ad-inserter.php:2399 includes/functions.old.php:1655
161
- #: includes/functions.php:1700
162
  msgid "Not now, maybe later."
163
  msgstr "Ne zdaj, mogoče kasneje."
164
 
165
- #: ad-inserter.php:2409
166
  msgid "I would really appreciate if you could rate the plugin on WordPres."
167
  msgstr "Res bi bil vesel, če bi lahko ocenili vtičnik na WordPress-u."
168
 
169
- #: ad-inserter.php:2411
170
  msgid ""
171
  "Positive reviews are a great incentive to fix bugs and to add new features "
172
  "for better monetization of your website. Thank you, Igor"
@@ -175,92 +175,92 @@ msgstr ""
175
  "funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
176
 
177
  #. translators: %s: Ad Inserter
178
- #: ad-inserter.php:2417
179
  msgid "Rate %s"
180
  msgstr "Ocenite %s"
181
 
182
- #: ad-inserter.php:2422
183
  msgid "I already did."
184
  msgstr "Sem že."
185
 
186
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
187
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
188
- #: ad-inserter.php:2434 ad-inserter.php:2460
189
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
190
  msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
191
 
192
- #: ad-inserter.php:2442
193
  msgctxt "Menu item"
194
  msgid "Settings"
195
  msgstr "Nastavitve"
196
 
197
  #. translators: %s: Ad Inserter
198
- #: ad-inserter.php:2560
199
  msgctxt "Meta box name"
200
  msgid "%s Individual Exceptions"
201
  msgstr "Posamezne Izjeme za %s"
202
 
203
- #: ad-inserter.php:2589 ad-inserter.php:8656 class.php:2060
204
  #: includes/preview.php:1976 includes/preview.php:2020
205
- #: includes/preview.php:2057 settings.php:4051 strings.php:3
206
  msgid "Block"
207
  msgstr "Blok"
208
 
209
- #: ad-inserter.php:2590 settings.php:4052 settings.php:4137
210
  msgid "Name"
211
  msgstr "Ime"
212
 
213
- #: ad-inserter.php:2593 settings.php:1123
214
  msgid "Default insertion"
215
  msgstr "Privzeto vstavljanje"
216
 
217
  #. translators: For this post or page
218
- #: ad-inserter.php:2596
219
  msgctxt "Page"
220
  msgid "For this"
221
  msgstr "Za to"
222
 
223
- #: ad-inserter.php:2597
224
  msgctxt "Post"
225
  msgid "For this"
226
  msgstr "Za ta"
227
 
228
- #: ad-inserter.php:2609
229
  msgctxt "Enabled/disabled on all"
230
  msgid "pages"
231
  msgstr "straneh"
232
 
233
- #: ad-inserter.php:2612
234
  msgctxt "Enabled/disabled on all"
235
  msgid "posts"
236
  msgstr "prispevkih"
237
 
238
- #: ad-inserter.php:2630 ad-inserter.php:2642 strings.php:161
239
  msgid "Enabled"
240
  msgstr "Omogočeno"
241
 
242
  #. translators: Menu items
243
- #: ad-inserter.php:2630 ad-inserter.php:2642 includes/functions.old.php:2326
244
- #: includes/functions.php:2373 strings.php:16
245
  msgid "Disabled"
246
  msgstr "Onemogočeno"
247
 
248
- #: ad-inserter.php:2632
249
  msgid "No individual exceptions"
250
  msgstr "Ni posameznih izjem"
251
 
252
  #. translators: Not enabled for pages or posts
253
- #: ad-inserter.php:2634
254
  msgid "Not enabled for"
255
  msgstr "Ni omogočeno za"
256
 
257
  #. translators: No individual exceptions enabled for pages or posts
258
- #: ad-inserter.php:2662
259
  msgid "No block has individual exceptions enabled"
260
  msgstr "Noben blok nima omogočenih posameznih izjem"
261
 
262
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
263
- #: ad-inserter.php:2667
264
  msgid ""
265
  "Default insertion can be configured for each block on %1$s page - button "
266
  "next to %2$s checkbox."
@@ -268,11 +268,11 @@ msgstr ""
268
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
269
  "poleg kljukice za vklop %2$s."
270
 
271
- #: ad-inserter.php:2670 settings.php:1101
272
  msgid "Tag / Archive pages"
273
  msgstr "Strani oznak / arhiva"
274
 
275
- #: ad-inserter.php:2672
276
  msgid ""
277
  "When individual exceptions for a block are enabled, a checkbox will be "
278
  "listed here to change default insertion for this post or page."
@@ -280,7 +280,7 @@ msgstr ""
280
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
281
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
282
 
283
- #: ad-inserter.php:2673
284
  msgid ""
285
  "This way you can individually enable or disable blocks on specific posts or "
286
  "pages."
@@ -288,61 +288,61 @@ msgstr ""
288
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
289
  "prispevku ali strani."
290
 
291
- #: ad-inserter.php:2675
292
  msgid "For more information check page %s"
293
  msgstr "Za več informacij poglejte stran %s"
294
 
295
  #. translators: Ad Inserter Exceptions documentation page
296
- #: ad-inserter.php:2677
297
  msgid "Individual Exceptions"
298
  msgstr "Posamezne Izjeme"
299
 
300
- #: ad-inserter.php:2724
301
  msgid "STATIC PAGE"
302
  msgstr "STATIČNA STRAN"
303
 
304
- #: ad-inserter.php:2727
305
  msgid "POST"
306
  msgstr "PRISPEVEK"
307
 
308
- #: ad-inserter.php:2730
309
  msgid "HOMEPAGE"
310
  msgstr "DOMAČA STRAN"
311
 
312
- #: ad-inserter.php:2733
313
  msgid "CATEGORY PAGE"
314
  msgstr "STRAN KATEGORIJE"
315
 
316
- #: ad-inserter.php:2736
317
  msgid "SEARCH PAGE"
318
  msgstr "STRAN ISKANJE"
319
 
320
- #: ad-inserter.php:2739
321
  msgid "ARCHIVE PAGE"
322
  msgstr "STRAN ARHIVA"
323
 
324
- #: ad-inserter.php:2742
325
  msgid "ERROR 404 PAGE"
326
  msgstr "STRAN NAPAKA 404"
327
 
328
- #: ad-inserter.php:2745
329
  msgid "AJAX CALL"
330
  msgstr "AJAX KLIC"
331
 
332
- #: ad-inserter.php:2748
333
  msgid "UNKNOWN PAGE TYPE"
334
  msgstr "NEZNAN TIP STRANI"
335
 
336
- #: ad-inserter.php:2765
337
  msgid "Click to delete ad blocking detection cokies"
338
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
339
 
340
- #: ad-inserter.php:2766
341
  msgid "AD BLOCKING STATUS UNKNOWN"
342
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
343
 
344
  #. translators: %s: AdSense Auto Ads
345
- #: ad-inserter.php:2790
346
  msgid ""
347
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
348
  "positions"
@@ -350,11 +350,11 @@ msgstr ""
350
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
351
  "položaje"
352
 
353
- #: ad-inserter.php:2929
354
  msgid "Code for insertion"
355
  msgstr "Koda za vstavljanje"
356
 
357
- #: ad-inserter.php:2929
358
  msgid "character"
359
  msgid_plural "characters"
360
  msgstr[0] "znak"
@@ -362,16 +362,16 @@ msgstr[1] "znaka"
362
  msgstr[2] "znaki"
363
  msgstr[3] "znakov"
364
 
365
- #: ad-inserter.php:2972
366
  msgid "Header code"
367
  msgstr "Koda v glavi"
368
 
369
- #: ad-inserter.php:2972
370
  msgctxt "Header code"
371
  msgid "DISABLED"
372
  msgstr "ONEMOGOČENA"
373
 
374
- #: ad-inserter.php:2972 ad-inserter.php:3195
375
  msgid "character inserted"
376
  msgid_plural "characters inserted"
377
  msgstr[0] "znak vstavljen"
@@ -379,43 +379,43 @@ msgstr[1] "znaka vstavljena"
379
  msgstr[2] "znaki vstavljeni"
380
  msgstr[3] "znakov vstavljenih"
381
 
382
- #: ad-inserter.php:3006
383
  msgid "Automatically placed by AdSense Auto ads code"
384
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
385
 
386
- #: ad-inserter.php:3195
387
  msgid "Footer code"
388
  msgstr "Koda v nogi"
389
 
390
- #: ad-inserter.php:3195
391
  msgctxt "Footer code"
392
  msgid "DISABLED"
393
  msgstr "ONEMOGOČENA"
394
 
395
- #: ad-inserter.php:3201
396
  msgid "JAVASCRIPT NOT WORKING"
397
  msgstr "JAVASCRIPT NE DELA"
398
 
399
- #: ad-inserter.php:3201
400
  msgid "NO JAVASCRIPT ERRORS"
401
  msgstr "BREZ JAVASCRIPT NAPAK"
402
 
403
- #: ad-inserter.php:3201
404
  msgid "JAVASCRIPT ERRORS"
405
  msgstr "JAVASCRIPT NAPAKE"
406
 
407
  #. translators: block name (block with default settings)
408
- #: ad-inserter.php:5457
409
  msgctxt "Block name"
410
  msgid "Default"
411
  msgstr "Privzeti"
412
 
413
  #. translators: %s: Ad Inserter
414
- #: ad-inserter.php:6072
415
  msgid "Error importing %s settings."
416
  msgstr "Napaka pri uvozu %s nastavitev."
417
 
418
- #: ad-inserter.php:6073
419
  msgid "Error importing settings for block"
420
  msgid_plural "Error importing settings for blocks:"
421
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
@@ -423,22 +423,22 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
423
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
424
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
425
 
426
- #: ad-inserter.php:6123
427
  msgid "Settings saved."
428
  msgstr "Nastavitve shranjene."
429
 
430
  #. translators: %s: Ad Inserter
431
- #: ad-inserter.php:6125
432
  msgid "Invalid data received - %s settings not saved."
433
  msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
434
 
435
- #: ad-inserter.php:6213
436
  msgid "Settings cleared."
437
  msgstr "Nastavitve ponastavljene."
438
 
439
  #. Translators: Post/Static page must have between X and Y words
440
- #: ad-inserter.php:6558 ad-inserter.php:6560 ad-inserter.php:6583
441
- #: settings.php:2053
442
  msgid "word"
443
  msgid_plural "words"
444
  msgstr[0] "besedo"
@@ -446,38 +446,38 @@ msgstr[1] "besedi"
446
  msgstr[2] "besede"
447
  msgstr[3] "besed"
448
 
449
- #: ad-inserter.php:6597 ad-inserter.php:6709
450
  msgid "HTML TAGS REMOVED"
451
  msgstr "HTML ZNAČKE ODSTRANJENE"
452
 
453
- #: ad-inserter.php:6785
454
  msgid "BEFORE COMMENTS"
455
  msgstr "PRED KOMENTARJI"
456
 
457
- #: ad-inserter.php:6893
458
  msgid "AFTER COMMENTS"
459
  msgstr "PO KOMETARJIH"
460
 
461
- #: ad-inserter.php:6956
462
  msgid "BETWEEN COMMENTS"
463
  msgstr "MED KOMENTARJI"
464
 
465
- #: ad-inserter.php:8288
466
  msgid "requires WordPress 4.6 or newer"
467
  msgstr "potrebuje WordPress 4.6 ali novejši"
468
 
469
- #: ad-inserter.php:8288
470
  msgid "Please update!"
471
  msgstr "Prosimo, posodobite!"
472
 
473
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
474
  #. name with HTML tags will be added)
475
- #: ad-inserter.php:8529
476
  msgid "Thank you for installing"
477
  msgstr "Hvala za namestitev vtičnika"
478
 
479
  #. translators: Opt-in message: %s: HTML tags
480
- #: ad-inserter.php:8531
481
  msgid ""
482
  "We would like to %s track its usage %s on your site. This is completely "
483
  "optional and can be disabled at any time."
@@ -485,7 +485,7 @@ msgstr ""
485
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
486
  "izbirno in se lahko izključi kadarkoli."
487
 
488
- #: ad-inserter.php:8533
489
  msgid ""
490
  "We don't record any sensitive data, only information regarding the WordPress "
491
  "environment and plugin usage, which will help us to make improvements to the "
@@ -495,7 +495,7 @@ msgstr ""
495
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
496
 
497
  #. translators: Deactivation message: %s: HTML tags
498
- #: ad-inserter.php:8570
499
  msgid ""
500
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
501
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -506,50 +506,50 @@ msgstr ""
506
  "nam %s in poskušali vam bomo pomagati."
507
 
508
  #. translators: %s: Ad Inserter
509
- #: ad-inserter.php:8613
510
  msgid "%s block."
511
  msgstr "%s blok."
512
 
513
  #. translators: widget title
514
- #: ad-inserter.php:8629 ad-inserter.php:8665
515
  msgid "Processing log"
516
  msgstr "Dnevnik procesiranja"
517
 
518
  #. translators: widget title
519
- #: ad-inserter.php:8631 ad-inserter.php:8666
520
  msgid "Dummy widget"
521
  msgstr "Prazen gradnik"
522
 
523
  #. translators: widget title
524
- #: ad-inserter.php:8633 ad-inserter.php:8664
525
  msgid "Debugging tools"
526
  msgstr "Orodja za razhroščevanje"
527
 
528
  #. translators: block status (widget title)
529
- #: ad-inserter.php:8640
530
  msgctxt "block"
531
  msgid "PAUSED"
532
  msgstr "USTAVLJEN"
533
 
534
- #: ad-inserter.php:8641
535
  msgid "WIDGET DISABLED"
536
  msgstr "GRADNIK ONEMOGOČEN"
537
 
538
- #: ad-inserter.php:8642
539
  msgid "Unknown block"
540
  msgstr "Neznan blok"
541
 
542
- #: ad-inserter.php:8651 includes/functions.old.php:3186
543
- #: includes/functions.php:3233 settings.php:1153
544
  msgid "Title"
545
  msgstr "Naslov"
546
 
547
- #: ad-inserter.php:8673
548
  msgctxt "Widget"
549
  msgid "Sticky"
550
  msgstr "Lepljiv"
551
 
552
- #: ad-inserter.php:8722
553
  msgid ""
554
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
555
  "Inserter you need to first deactivate Ad Inserter Pro."
@@ -558,7 +558,7 @@ msgstr ""
558
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
559
  "Inserter Pro."
560
 
561
- #: ad-inserter.php:8723
562
  msgid ""
563
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
564
  "will clear all settings that are available only in the Pro version "
@@ -569,134 +569,139 @@ msgstr ""
569
  "različici (dodatne nastavitve blokov in vtičnika)!"
570
 
571
  #. translators: %s: Ad Inserter
572
- #: class.php:503 class.php:512 class.php:515
573
  msgid "PHP error in %s block"
574
  msgstr "PHP napaka v bloku %s"
575
 
576
- #: class.php:2026
577
  msgid "Counters"
578
  msgstr "Števci"
579
 
580
- #: class.php:2030
581
  msgid "Content"
582
  msgstr "Vsebina"
583
 
584
- #: class.php:2035
585
  msgid "Excerpt"
586
  msgstr "Izvleček"
587
 
588
- #: class.php:2040 strings.php:17
589
  msgid "Before post"
590
  msgstr "Pred prispevkom"
591
 
592
- #: class.php:2045 strings.php:18
593
  msgid "After post"
594
  msgstr "Za prispevkom"
595
 
596
- #: class.php:2050 settings.php:1796 settings.php:4069
597
  msgid "Widget"
598
  msgstr "Gradnik"
599
 
600
- #: class.php:2055 settings.php:4067
601
  msgid "PHP function call"
602
  msgstr "Klic PHP funkcije"
603
 
604
- #: class.php:2090
605
  msgid "AJAX REQUEST"
606
  msgstr "AJAX ZAHTEVEK"
607
 
608
- #: class.php:2093
609
  msgid "Ajax request for block in iframe"
610
  msgstr "Ajax zahtevek za blok v iframe-u"
611
 
612
- #: class.php:2123
613
  msgid "Ajax request url, click to open it in a new tab"
614
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
615
 
616
- #: class.php:2126
617
  msgid "IN THE LOOP"
618
  msgstr "V ZANKI"
619
 
620
- #: class.php:2126
621
  msgid "YES"
622
  msgstr "DA"
623
 
624
- #: class.php:2126
625
  msgid "NO"
626
  msgstr "NE"
627
 
628
- #: class.php:2162
629
  msgid "BLOCK"
630
  msgstr "BLOK"
631
 
632
- #: class.php:2162
633
  msgctxt "block or widget"
634
  msgid "INSERTED BUT NOT VISIBLE"
635
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
636
 
637
- #: class.php:2611 class.php:2674
638
  msgid "ACTIVE GROUPS"
639
  msgstr "AKTIVNE SKUPINE"
640
 
641
  #. translators: %s: list parameters and type
642
- #: class.php:2854
643
  msgid "parameters='%s' type='%s'"
644
  msgstr "parametri='%s' tip='%s'"
645
 
646
  #. translators: %s: list parameters and type
647
- #: class.php:2856
648
  msgid "referers='%s' type='%s'"
649
  msgstr "napotitelji='%s' tip='%s'"
650
 
651
  #. translators: %s: list parameters and type
652
- #: class.php:2917
 
 
 
 
 
653
  msgid "countries='%s' type='%s'"
654
  msgstr "države='%s' tip='%s'"
655
 
656
  #. translators: %s: list parameters and type
657
- #: class.php:2919
658
  msgid "ip addresses='%s' type='%s'"
659
  msgstr "ip naslovi='%s' tip='%s'"
660
 
661
- #: class.php:3188 strings.php:239
662
  msgid "BEFORE"
663
  msgstr "PRED"
664
 
665
- #: class.php:3196 strings.php:241
666
  msgid "PREPEND CONTENT"
667
  msgstr "DODAJ PRED VSEBINO"
668
 
669
- #: class.php:3200 strings.php:242
670
  msgid "APPEND CONTENT"
671
  msgstr "DODAJ ZA VSEBINO"
672
 
673
- #: class.php:3204 strings.php:243
674
  msgid "REPLACE CONTENT"
675
  msgstr "NADOMESTI VSEBINO"
676
 
677
- #: class.php:3208 strings.php:244
678
  msgid "REPLACE ELEMENT"
679
  msgstr "NADOMESTI ELEMENT"
680
 
681
- #: class.php:3219 strings.php:240
682
  msgid "AFTER"
683
  msgstr "ZA"
684
 
685
- #: class.php:3286
686
  msgctxt "JavaScript"
687
  msgid "script"
688
  msgstr "skripta"
689
 
690
- #: class.php:3289 settings.php:2065
691
  msgid "for"
692
  msgstr "za"
693
 
694
- #: class.php:6332 class.php:6384
695
  msgctxt "category name"
696
  msgid "Uncategorized"
697
  msgstr "Nekategorizirano"
698
 
699
- #: class.php:6893
700
  msgid ""
701
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
702
  "extension for PHP."
@@ -714,7 +719,7 @@ msgid "Reset"
714
  msgstr "Ponastavi"
715
 
716
  #: includes/editor.php:9 includes/placeholders.php:354
717
- #: includes/preview.php:1965 settings.php:3464 strings.php:208 strings.php:245
718
  msgid "Cancel"
719
  msgstr "Prekliči"
720
 
@@ -774,23 +779,23 @@ msgstr "Licenčni Ključ"
774
  msgid "License Key for"
775
  msgstr "Licenčni Ključ za"
776
 
777
- #: includes/functions.old.php:413 includes/functions.php:415
778
  msgid "Open license page"
779
  msgstr "Odpri licenčno stran"
780
 
781
- #: includes/functions.old.php:421 includes/functions.php:423
782
  msgid "Hide license key"
783
  msgstr "Skrij licenčni ključ"
784
 
785
- #: includes/functions.old.php:421 includes/functions.php:423
786
  msgid "Hide key"
787
  msgstr "Skrij ključ"
788
 
789
- #: includes/functions.old.php:436 includes/functions.php:438
790
  msgid "Main content element"
791
  msgstr "Glavni element vsebine"
792
 
793
- #: includes/functions.old.php:439 includes/functions.php:441
794
  msgid ""
795
  "Main content element (#id or .class) for 'Stick to the content' position. "
796
  "Leave empty unless position is not properly calculated."
@@ -798,74 +803,74 @@ msgstr ""
798
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
799
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
800
 
801
- #: includes/functions.old.php:440 includes/functions.php:442 settings.php:1304
802
- #: settings.php:2679
803
  msgid "Open HTML element selector"
804
  msgstr "Odpri izbirnik HTML elementa"
805
 
806
- #: includes/functions.old.php:445 includes/functions.php:447
807
  msgid "Lazy loading offset"
808
  msgstr "Zamik za leno nalaganje"
809
 
810
- #: includes/functions.old.php:448 includes/functions.php:450
811
  msgid "Offset of the block from the visible viewport when it should be loaded"
812
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
813
 
814
- #: includes/functions.old.php:459 includes/functions.php:461
815
  msgid "Export / Import Block Settings"
816
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
817
 
818
- #: includes/functions.old.php:474 includes/functions.php:476
819
  msgid "Track impressions and clicks for this block"
820
  msgstr "Sledi prikazom in klikom za ta blok"
821
 
822
- #: includes/functions.old.php:474 includes/functions.php:476
823
  msgid " - global tracking disabled"
824
  msgstr " - globalno sledenje onemogočeno"
825
 
826
- #: includes/functions.old.php:481 includes/functions.php:483
827
  msgid "Generate PDF report"
828
  msgstr "Generiraj PDF poročilo"
829
 
830
- #: includes/functions.old.php:486 includes/functions.php:488
831
  msgid "Open public report"
832
  msgstr "Odpri javno poročilo"
833
 
834
- #: includes/functions.old.php:500 includes/functions.php:502
835
  msgid "Toggle Ad Blocking Statistics"
836
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
837
 
838
  #: includes/functions.old.php:508 includes/functions.old.php:2960
839
- #: includes/functions.php:510 includes/functions.php:3007
840
  msgid "Toggle Statistics"
841
  msgstr "Preklopi Statistiko"
842
 
843
  #. translators: %s: Ad Inserter Pro
844
- #: includes/functions.old.php:524 includes/functions.php:534
845
  msgid "%s license key is not set. Continue?"
846
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
847
 
848
  #. translators: %s: Ad Inserter Pro
849
- #: includes/functions.old.php:528 includes/functions.php:538
850
  msgid "Invalid %s license key. Continue?"
851
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
852
 
853
  #. translators: %s: Ad Inserter Pro
854
- #: includes/functions.old.php:532 includes/functions.php:542
855
  msgid "%s license overused. Continue?"
856
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
857
 
858
- #: includes/functions.old.php:536 includes/functions.php:546 settings.php:1058
859
- #: settings.php:2136
860
  msgid "Save Settings"
861
  msgstr "Shrani Nastavitve"
862
 
863
- #: includes/functions.old.php:596 includes/functions.php:606
864
  #: includes/preview.php:2106
865
  msgid "Horizontal position"
866
  msgstr "Vodoravni položaj"
867
 
868
- #: includes/functions.old.php:619 includes/functions.php:629
869
  msgid ""
870
  "Horizontal margin from the content or screen edge, empty means default value "
871
  "from CSS"
@@ -873,12 +878,12 @@ msgstr ""
873
  "Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
874
  "iz CSS"
875
 
876
- #: includes/functions.old.php:627 includes/functions.php:637
877
  #: includes/preview.php:2161
878
  msgid "Vertical position"
879
  msgstr "Navpični položaj"
880
 
881
- #: includes/functions.old.php:642 includes/functions.php:652
882
  msgid ""
883
  "Vertical margin from the top or bottom screen edge, empty means default "
884
  "value from CSS"
@@ -886,16 +891,16 @@ msgstr ""
886
  "Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
887
  "iz CSS"
888
 
889
- #: includes/functions.old.php:667 includes/functions.php:677
890
  #: includes/preview.php:2212
891
  msgid "Animation"
892
  msgstr "Animacija"
893
 
894
- #: includes/functions.old.php:685 includes/functions.php:695
895
  msgid "Trigger"
896
  msgstr "Sporžilec"
897
 
898
- #: includes/functions.old.php:694 includes/functions.php:704
899
  msgid ""
900
  "Trigger value: page scroll in %, page scroll in px or element with selector "
901
  "(#id or .class) becomes visible"
@@ -903,52 +908,52 @@ msgstr ""
903
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
904
  "selektorjem (#id ali .razred) postane viden"
905
 
906
- #: includes/functions.old.php:698 includes/functions.php:708
907
  msgid "Offset"
908
  msgstr "Zamik"
909
 
910
- #: includes/functions.old.php:698 includes/functions.php:708
911
  msgid "Offset of trigger element"
912
  msgstr "Zamik sprožilnega elementa"
913
 
914
- #: includes/functions.old.php:702 includes/functions.php:712
915
  msgid "Delay"
916
  msgstr "Zakasnitev"
917
 
918
- #: includes/functions.old.php:702 includes/functions.php:712
919
  msgid "Delay animation after trigger condition"
920
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
921
 
922
- #: includes/functions.old.php:706 includes/functions.php:716
923
  msgid "Trigger once"
924
  msgstr "Sproži enkrat"
925
 
926
- #: includes/functions.old.php:708 includes/functions.php:718
927
  msgid "Trigger animation only once"
928
  msgstr "Sproži animacijo samo enkrat"
929
 
930
  #: includes/functions.old.php:750 includes/functions.old.php:2453
931
- #: includes/functions.old.php:2470 includes/functions.php:760
932
- #: includes/functions.php:2500 includes/functions.php:2517
933
  msgid "Tracking is globally disabled"
934
  msgstr "Sledenje je globalno onemogočeno"
935
 
936
  #: includes/functions.old.php:754 includes/functions.old.php:2457
937
- #: includes/functions.old.php:2474 includes/functions.php:764
938
- #: includes/functions.php:2504 includes/functions.php:2521
939
  msgid "Tracking for this block is disabled"
940
  msgstr "Sledenje za ta blok je onemogočeno"
941
 
942
- #: includes/functions.old.php:761 includes/functions.php:771
943
  msgid "Double click to toggle controls in public reports"
944
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
945
 
946
- #: includes/functions.old.php:767 includes/functions.php:777 settings.php:3399
947
- #: settings.php:3435 settings.php:3477 strings.php:218
948
  msgid "Loading..."
949
  msgstr "Nalagam..."
950
 
951
- #: includes/functions.old.php:788 includes/functions.php:798
952
  msgid ""
953
  "Clear statistics data for the selected range - clear both dates to delete "
954
  "all data for this block"
@@ -956,71 +961,71 @@ msgstr ""
956
  "Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
957
  "brisanje vseh podatkov za ta blok"
958
 
959
- #: includes/functions.old.php:792 includes/functions.php:802
960
  msgid "Auto refresh data for the selected range every 60 seconds"
961
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
962
 
963
  #: includes/functions.old.php:795 includes/functions.old.php:5262
964
- #: includes/functions.php:805 includes/functions.php:5322
965
  msgid "Load data for last month"
966
  msgstr "Naloži podatke za zadnji mesec"
967
 
968
  #: includes/functions.old.php:795 includes/functions.old.php:5262
969
- #: includes/functions.php:805 includes/functions.php:5322
970
  msgid "Last Month"
971
  msgstr "Zadnji Mesec"
972
 
973
  #: includes/functions.old.php:798 includes/functions.old.php:5265
974
- #: includes/functions.php:808 includes/functions.php:5325
975
  msgid "Load data for this month"
976
  msgstr "Naloži podatke za ta mesec"
977
 
978
  #: includes/functions.old.php:798 includes/functions.old.php:5265
979
- #: includes/functions.php:808 includes/functions.php:5325
980
  msgid "This Month"
981
  msgstr "Ta Mesec"
982
 
983
  #: includes/functions.old.php:801 includes/functions.old.php:5268
984
- #: includes/functions.php:811 includes/functions.php:5328
985
  msgid "Load data for this year"
986
  msgstr "Naloži podatke za to leto"
987
 
988
  #: includes/functions.old.php:801 includes/functions.old.php:5268
989
- #: includes/functions.php:811 includes/functions.php:5328
990
  msgid "This Year"
991
  msgstr "To Leto"
992
 
993
  #: includes/functions.old.php:804 includes/functions.old.php:5271
994
- #: includes/functions.php:814 includes/functions.php:5331
995
  msgid "Load data for the last 15 days"
996
  msgstr "Naloži podatke za zadnjih 15 dni"
997
 
998
  #: includes/functions.old.php:807 includes/functions.old.php:5274
999
- #: includes/functions.php:817 includes/functions.php:5334
1000
  msgid "Load data for the last 30 days"
1001
  msgstr "Naloži podatke za zadnjih 30 dni"
1002
 
1003
  #: includes/functions.old.php:810 includes/functions.old.php:5277
1004
- #: includes/functions.php:820 includes/functions.php:5337
1005
  msgid "Load data for the last 90 days"
1006
  msgstr "Naloži podatke za zadnjih 90 dni"
1007
 
1008
  #: includes/functions.old.php:813 includes/functions.old.php:5280
1009
- #: includes/functions.php:823 includes/functions.php:5340
1010
  msgid "Load data for the last 180 days"
1011
  msgstr "Naloži podatke za zadnjih 180 dni"
1012
 
1013
  #: includes/functions.old.php:816 includes/functions.old.php:5283
1014
- #: includes/functions.php:826 includes/functions.php:5343
1015
  msgid "Load data for the last 365 days"
1016
  msgstr "Naloži podatke za zadnjih 365 dni"
1017
 
1018
  #: includes/functions.old.php:826 includes/functions.old.php:5293
1019
- #: includes/functions.php:836 includes/functions.php:5353
1020
  msgid "Load data for the selected range"
1021
  msgstr "Naloži podatke za izbrano obdobje"
1022
 
1023
- #: includes/functions.old.php:842 includes/functions.php:852
1024
  msgid ""
1025
  "Import settings when saving - if checked, the encoded settings below will be "
1026
  "imported for this block"
@@ -1028,11 +1033,11 @@ msgstr ""
1028
  "Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
1029
  "nastavitve spodaj uvozile za ta blok"
1030
 
1031
- #: includes/functions.old.php:842 includes/functions.php:852
1032
  msgid "Import settings for block"
1033
  msgstr "Uvozi nastavitve za blok"
1034
 
1035
- #: includes/functions.old.php:846 includes/functions.php:856
1036
  msgid ""
1037
  "Import block name when saving - if checked and 'Import settings for block' "
1038
  "is also checked, the name from encoded settings below will be imported for "
@@ -1042,41 +1047,41 @@ msgstr ""
1042
  "nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
1043
  "uvozilo za ta blok"
1044
 
1045
- #: includes/functions.old.php:846 includes/functions.php:856
1046
  msgid "Import block name"
1047
  msgstr "Uvozi ime bloka"
1048
 
1049
- #: includes/functions.old.php:850 includes/functions.php:860
1050
  msgid "Saved settings for block"
1051
  msgstr "Shranjene nastavitve za blok"
1052
 
1053
- #: includes/functions.old.php:863 includes/functions.php:873
1054
  msgid "Export / Import Ad Inserter Pro Settings"
1055
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1056
 
1057
- #: includes/functions.old.php:873 includes/functions.php:883
1058
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1059
  msgstr ""
1060
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1061
  "bloke?"
1062
 
1063
- #: includes/functions.old.php:875 includes/functions.php:885
1064
  msgid "Clear All Statistics Data"
1065
  msgstr "Pobriši Vse Podatke o Statistiki"
1066
 
1067
- #: includes/functions.old.php:902 includes/functions.php:912
1068
  msgid "Toggle country/city editor"
1069
  msgstr "Preklopi urejevalnik držav/mest"
1070
 
1071
- #: includes/functions.old.php:908 includes/functions.php:918
1072
  msgid "IP Addresses"
1073
  msgstr "IP Naslovi"
1074
 
1075
- #: includes/functions.old.php:911 includes/functions.php:921
1076
  msgid "Toggle IP address editor"
1077
  msgstr "Preklopi urejevalnik IP nslovov"
1078
 
1079
- #: includes/functions.old.php:914 includes/functions.php:924
1080
  msgid ""
1081
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1082
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
@@ -1084,51 +1089,51 @@ msgstr ""
1084
  "Z vejico ločeni IP naslovi, uporabite lahko tudi delne IP naslove z * (ip-"
1085
  "naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
1086
 
1087
- #: includes/functions.old.php:918 includes/functions.php:928
1088
  msgid "Blacklist IP addresses"
1089
  msgstr "Črni seznam IP naslovov"
1090
 
1091
- #: includes/functions.old.php:922 includes/functions.php:932
1092
  msgid "Whitelist IP addresses"
1093
  msgstr "Beli seznam IP naslovov"
1094
 
1095
- #: includes/functions.old.php:933 includes/functions.php:943
1096
  msgid "Countries"
1097
  msgstr "Države"
1098
 
1099
- #: includes/functions.old.php:934 includes/functions.php:944
1100
  msgid "Cities"
1101
  msgstr "Mesta"
1102
 
1103
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1104
- #: includes/functions.php:948 includes/functions.php:2972
1105
  msgid "Toggle country editor"
1106
  msgstr "Preklopi urejevalnik držav"
1107
 
1108
- #: includes/functions.old.php:941 includes/functions.php:951
1109
  msgid "Toggle city editor"
1110
  msgstr "Preklopi urejevalnik mest"
1111
 
1112
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1113
- #: includes/functions.php:955 includes/functions.php:2975
1114
  msgid "Comma separated country ISO Alpha-2 codes"
1115
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1116
 
1117
- #: includes/functions.old.php:949 includes/functions.php:959
1118
  msgid "Blacklist countries"
1119
  msgstr "Črni seznam držav"
1120
 
1121
- #: includes/functions.old.php:953 includes/functions.php:963
1122
  msgid "Whitelist countries"
1123
  msgstr "Beli seznam držav"
1124
 
1125
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1126
- #: includes/functions.php:1373 includes/functions.php:1653
1127
  msgid "Enter license key"
1128
  msgstr "Vnesite licenčni ključ"
1129
 
1130
  #. translators: %s: Ad Inserter Pro
1131
- #: includes/functions.old.php:1367 includes/functions.php:1379
1132
  msgid ""
1133
  "%s license key is not set. Plugin functionality is limited and updates are "
1134
  "disabled."
@@ -1137,40 +1142,40 @@ msgstr ""
1137
  "posodobitve onemogočene."
1138
 
1139
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1140
- #: includes/functions.php:1402 includes/functions.php:1662
1141
  msgid "Check license key"
1142
  msgstr "Preverite licenčni ključ"
1143
 
1144
  #. translators: %s: Ad Inserter Pro
1145
- #: includes/functions.old.php:1385 includes/functions.php:1408
1146
  msgid "Invalid %s license key."
1147
  msgstr "Neveljaven %s licenčni ključ."
1148
 
1149
  #. translators: %s: Ad Inserter Pro
1150
- #: includes/functions.old.php:1394 includes/functions.php:1417
1151
  msgid "%s license expired. Plugin updates are disabled."
1152
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1153
 
1154
- #: includes/functions.old.php:1395 includes/functions.php:1418
1155
  msgid "Renew license"
1156
  msgstr "Obnovite licenco"
1157
 
1158
  #. translators: %s: Ad Inserter Pro
1159
- #: includes/functions.old.php:1403 includes/functions.php:1426
1160
  msgid "%s license overused. Plugin updates are disabled."
1161
  msgstr ""
1162
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1163
 
1164
- #: includes/functions.old.php:1404 includes/functions.php:1427
1165
  msgid "Manage licenses"
1166
  msgstr "Upravljajte z licencami"
1167
 
1168
- #: includes/functions.old.php:1404 includes/functions.php:1427
1169
  msgid "Upgrade license"
1170
  msgstr "Nadgradite licenco"
1171
 
1172
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1173
- #: includes/functions.old.php:1610 includes/functions.php:1655
1174
  msgid ""
1175
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1176
  "limited and updates are disabled."
@@ -1179,12 +1184,12 @@ msgstr ""
1179
  "so omejene in posodobitve onemogočene."
1180
 
1181
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1182
- #: includes/functions.old.php:1619 includes/functions.php:1664
1183
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1184
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1185
 
1186
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1187
- #: includes/functions.old.php:1635 includes/functions.php:1680
1188
  msgid ""
1189
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1190
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
@@ -1194,7 +1199,7 @@ msgstr ""
1194
  "pogrešate. %3$s"
1195
 
1196
  #. translators: 1, 3: HTML tags, 2: percentage
1197
- #: includes/functions.old.php:1642 includes/functions.php:1687
1198
  msgid ""
1199
  "During the license period and 30 days after the license has expired we offer "
1200
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
@@ -1202,16 +1207,16 @@ msgstr ""
1202
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1203
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1204
 
1205
- #: includes/functions.old.php:1669 includes/functions.php:1714
1206
  msgid "Renew the licence"
1207
  msgstr "Obnovi licenco"
1208
 
1209
- #: includes/functions.old.php:1671 includes/functions.php:1716
1210
  msgid "Update license status"
1211
  msgstr "Posodobi status licence"
1212
 
1213
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1214
- #: includes/functions.old.php:1682 includes/functions.php:1727
1215
  msgid ""
1216
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1217
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
@@ -1221,105 +1226,105 @@ msgstr ""
1221
  "Nadgradite licenco %7$s"
1222
 
1223
  #. Translators: %s: HTML tag
1224
- #: includes/functions.old.php:1704 includes/functions.php:1749
1225
  msgid "Warning: %s MaxMind IP geolocation database not found."
1226
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1227
 
1228
- #: includes/functions.old.php:2255 includes/functions.php:2302
1229
  msgid "Geolocation"
1230
  msgstr "Geolokacija"
1231
 
1232
- #: includes/functions.old.php:2259 includes/functions.php:2306
1233
- #: settings.php:4056
1234
  msgid "Exceptions"
1235
  msgstr "Izjeme"
1236
 
1237
- #: includes/functions.old.php:2264 includes/functions.php:2311
1238
  msgid "Multisite"
1239
  msgstr "Multisite"
1240
 
1241
- #: includes/functions.old.php:2269 includes/functions.php:2316
1242
- #: settings.php:4062
1243
  msgid "Tracking"
1244
  msgstr "Sledenje"
1245
 
1246
  #. translators: %d: days, hours, minutes
1247
- #: includes/functions.old.php:2300 includes/functions.php:2347
1248
  msgid "Scheduled in %d days %d hours %d minutes"
1249
  msgstr "Planirano v %d dneh %d urah %d minutah"
1250
 
1251
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1252
  #. HTML code for long dash separator
1253
- #: includes/functions.old.php:2309 includes/functions.php:2356
1254
  msgid "Active %s expires in %d days %d hours %d minutes"
1255
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1256
 
1257
- #: includes/functions.old.php:2313 includes/functions.php:2360
1258
  msgid "Expired"
1259
  msgstr "Poteklo"
1260
 
1261
- #: includes/functions.old.php:2321 includes/functions.php:2368
1262
- #: settings.php:1387 settings.php:1402 settings.php:1491 settings.php:2051
1263
  msgid "and"
1264
  msgstr "in"
1265
 
1266
- #: includes/functions.old.php:2324 includes/functions.php:2371
1267
  msgid "fallback"
1268
  msgstr "rezerva"
1269
 
1270
- #: includes/functions.old.php:2325 includes/functions.php:2372
1271
  msgid "Block to be used when scheduling expires"
1272
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1273
 
1274
- #: includes/functions.old.php:2350 includes/functions.php:2397
1275
  msgid "Load in iframe"
1276
  msgstr "Naloži v iframe-u"
1277
 
1278
- #: includes/functions.old.php:2354 includes/functions.php:2401
1279
  #: includes/placeholders.php:389
1280
  msgid "Width"
1281
  msgstr "Širina"
1282
 
1283
- #: includes/functions.old.php:2355 includes/functions.php:2402
1284
  msgid "iframe width, empty means full width (100%)"
1285
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1286
 
1287
- #: includes/functions.old.php:2361 includes/functions.php:2408
1288
  #: includes/placeholders.php:384
1289
  msgid "Height"
1290
  msgstr "Višina"
1291
 
1292
- #: includes/functions.old.php:2362 includes/functions.php:2409
1293
  msgid "iframe height, empty means adjust it to iframe content height"
1294
  msgstr ""
1295
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1296
 
1297
- #: includes/functions.old.php:2369 includes/functions.php:2416
1298
  msgid "Ad label in iframe"
1299
  msgstr "Oznaka oglasa v iframe-u"
1300
 
1301
- #: includes/functions.old.php:2374 includes/functions.php:2421
1302
  msgid "Preview iframe code"
1303
  msgstr "Predpreglej kodo iframe"
1304
 
1305
- #: includes/functions.old.php:2374 includes/functions.php:2421
1306
- #: includes/preview.php:1974 settings.php:1053 settings.php:2741
1307
  msgid "Preview"
1308
  msgstr "Predogled"
1309
 
1310
- #: includes/functions.old.php:2388 includes/functions.php:2435
1311
- #: settings.php:4063
1312
  msgid "Limits"
1313
  msgstr "Omejitve"
1314
 
1315
  #: includes/functions.old.php:2393 includes/functions.old.php:4266
1316
- #: includes/functions.old.php:4329 includes/functions.php:2440
1317
- #: includes/functions.php:4313 includes/functions.php:4376 settings.php:2183
1318
  msgid "Ad Blocking"
1319
  msgstr "Blokiranje Oglasov"
1320
 
1321
  #. translators: 1, 2 and 3, 4: HTML tags
1322
- #: includes/functions.old.php:2402 includes/functions.php:2449
1323
  msgid ""
1324
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1325
  "for tracking!"
@@ -1329,7 +1334,7 @@ msgstr ""
1329
 
1330
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1331
  #. header
1332
- #: includes/functions.old.php:2411 includes/functions.php:2458
1333
  msgid ""
1334
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1335
  "enabled and automatic insertion %6$s!"
@@ -1337,23 +1342,23 @@ msgstr ""
1337
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1338
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1339
 
1340
- #: includes/functions.old.php:2478 includes/functions.php:2525
1341
  msgid "Click fraud protection is globally disabled"
1342
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1343
 
1344
- #: includes/functions.old.php:2482 includes/functions.php:2529
1345
  msgid "Max clicks per time period are not defined"
1346
  msgstr "Največje število klikov na časovno enoto ni definirano"
1347
 
1348
  #. Translators: Max n impressions
1349
- #: includes/functions.old.php:2496 includes/functions.php:2543
1350
  msgid "General limits"
1351
  msgstr "Splošne omejitve"
1352
 
1353
  #. Translators: Max n impressions per x days
1354
  #: includes/functions.old.php:2502 includes/functions.old.php:2514
1355
- #: includes/functions.old.php:2599 includes/functions.php:2549
1356
- #: includes/functions.php:2561 includes/functions.php:2646
1357
  msgid "Current value"
1358
  msgstr "Trenutna vrednost"
1359
 
@@ -1369,14 +1374,14 @@ msgstr "Trenutna vrednost"
1369
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1370
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1371
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1372
- #: includes/functions.php:2568 includes/functions.php:2578
1373
- #: includes/functions.php:2597 includes/functions.php:2607
1374
- #: includes/functions.php:2653 includes/functions.php:2662
1375
- #: includes/functions.php:2680 includes/functions.php:2689 settings.php:1972
1376
  msgid "Max"
1377
  msgstr "Največ"
1378
 
1379
- #: includes/functions.old.php:2522 includes/functions.php:2569
1380
  msgid ""
1381
  "Maximum number of impressions for this block. Empty means no general "
1382
  "impression limit."
@@ -1390,8 +1395,8 @@ msgstr ""
1390
  #. Translators: Max n impressions per x days
1391
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1392
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1393
- #: includes/functions.php:2571 includes/functions.php:2581
1394
- #: includes/functions.php:2656 includes/functions.php:2665
1395
  msgid "impression"
1396
  msgid_plural "impressions"
1397
  msgstr[0] "prikaz"
@@ -1399,7 +1404,7 @@ msgstr[1] "prikaza"
1399
  msgstr[2] "prikazi"
1400
  msgstr[3] "prikazov"
1401
 
1402
- #: includes/functions.old.php:2532 includes/functions.php:2579
1403
  msgid ""
1404
  "Maximum number of impressions per time period. Empty means no time limit."
1405
  msgstr ""
@@ -1412,13 +1417,13 @@ msgstr ""
1412
  #. Translators: Max n clicks per x days
1413
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1414
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1415
- #: includes/functions.php:2585 includes/functions.php:2614
1416
- #: includes/functions.php:2669 includes/functions.php:2696
1417
  msgid "per"
1418
  msgstr "na"
1419
 
1420
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1421
- #: includes/functions.php:2586 includes/functions.php:2615
1422
  msgid "Time period in days. Empty means no time limit."
1423
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1424
 
@@ -1430,9 +1435,9 @@ msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1430
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1431
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1432
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1433
- #: includes/functions.php:2588 includes/functions.php:2617
1434
- #: includes/functions.php:2672 includes/functions.php:2699
1435
- #: includes/functions.php:2805 includes/functions.php:3133 strings.php:199
1436
  #: strings.php:200 strings.php:201 strings.php:202 strings.php:203
1437
  #: strings.php:204
1438
  msgid "day"
@@ -1442,7 +1447,7 @@ msgstr[1] "dni"
1442
  msgstr[2] "dni"
1443
  msgstr[3] "dni"
1444
 
1445
- #: includes/functions.old.php:2551 includes/functions.php:2598
1446
  msgid ""
1447
  "Maximum number of clicks on this block. Empty means no general click limit."
1448
  msgstr ""
@@ -1455,9 +1460,9 @@ msgstr ""
1455
  #. Translators: Max n clicks per x days
1456
  #: includes/functions.old.php:2553 includes/functions.old.php:2563
1457
  #: includes/functions.old.php:2636 includes/functions.old.php:2645
1458
- #: includes/functions.old.php:4477 includes/functions.php:2600
1459
- #: includes/functions.php:2610 includes/functions.php:2683
1460
- #: includes/functions.php:2692 includes/functions.php:4524
1461
  msgid "click"
1462
  msgid_plural "clicks"
1463
  msgstr[0] "klik"
@@ -1465,18 +1470,18 @@ msgstr[1] "klika"
1465
  msgstr[2] "kliki"
1466
  msgstr[3] "klikov"
1467
 
1468
- #: includes/functions.old.php:2561 includes/functions.php:2608
1469
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1470
  msgstr ""
1471
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1472
  "omejitev."
1473
 
1474
- #: includes/functions.old.php:2586 includes/functions.php:2633
1475
  msgid "Individual visitor limits"
1476
  msgstr "Omejitve posameznih obiskovalcev"
1477
 
1478
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1479
- #: includes/functions.php:2637 includes/functions.php:2639
1480
  msgid ""
1481
  "When specified number of clicks on this block for a visitor will be reached "
1482
  "in the specified time period, all blocks that have click fraud protection "
@@ -1488,11 +1493,11 @@ msgstr ""
1488
  "splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
1489
  "pred goljufijo s kliki."
1490
 
1491
- #: includes/functions.old.php:2592 includes/functions.php:2639
1492
  msgid "Trigger click fraud protection"
1493
  msgstr "Sproži zaščito pred goljufijo s kliki"
1494
 
1495
- #: includes/functions.old.php:2607 includes/functions.php:2654
1496
  msgid ""
1497
  "Maximum number of impressions of this block for each visitor. Empty means no "
1498
  "impression limit."
@@ -1500,7 +1505,7 @@ msgstr ""
1500
  "Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
1501
  "pomeni brez omejitev prikazov."
1502
 
1503
- #: includes/functions.old.php:2616 includes/functions.php:2663
1504
  msgid ""
1505
  "Maximum number of impressions per time period for each visitor. Empty means "
1506
  "no impression limit per time period for visitors."
@@ -1509,7 +1514,7 @@ msgstr ""
1509
  "Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
1510
 
1511
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1512
- #: includes/functions.php:2670 includes/functions.php:2697
1513
  msgid ""
1514
  "Time period in days. Use decimal value (with decimal point) for shorter "
1515
  "periods. Empty means no time limit."
@@ -1517,7 +1522,7 @@ msgstr ""
1517
  "Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
1518
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1519
 
1520
- #: includes/functions.old.php:2634 includes/functions.php:2681
1521
  msgid ""
1522
  "Maximum number of clicks on this block for each visitor. Empty means no "
1523
  "click limit."
@@ -1525,7 +1530,7 @@ msgstr ""
1525
  "Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
1526
  "brez omejitev klikov."
1527
 
1528
- #: includes/functions.old.php:2643 includes/functions.php:2690
1529
  msgid ""
1530
  "Maximum number of clicks per time period for each visitor. Empty means no "
1531
  "click limit per time period for visitors."
@@ -1533,33 +1538,33 @@ msgstr ""
1533
  "Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
1534
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1535
 
1536
- #: includes/functions.old.php:2669 includes/functions.php:2716
1537
  msgid "When ad blocking is detected"
1538
  msgstr "Ko je blokiranje oglasov zaznano"
1539
 
1540
- #: includes/functions.old.php:2678 includes/functions.php:2725
1541
  msgid "replacement"
1542
  msgstr "nadomestek"
1543
 
1544
- #: includes/functions.old.php:2679 includes/functions.php:2726
1545
  msgid "Block to be shown when ad blocking is detected"
1546
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1547
 
1548
- #: includes/functions.old.php:2680 includes/functions.php:2727
1549
  msgctxt "replacement"
1550
  msgid "None"
1551
  msgstr "Noben"
1552
 
1553
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1554
- #: includes/functions.php:2744 includes/functions.php:5544
1555
  msgid "Close button"
1556
  msgstr "Gumb Zapri"
1557
 
1558
- #: includes/functions.old.php:2749 includes/functions.php:2796
1559
  msgid "Auto close after"
1560
  msgstr "Ssamodejno zapri po"
1561
 
1562
- #: includes/functions.old.php:2750 includes/functions.php:2797
1563
  msgid ""
1564
  "Time in seconds in which the ad will automatically close. Leave empty to "
1565
  "disable auto closing."
@@ -1568,11 +1573,11 @@ msgstr ""
1568
  "izključitev samodejnega zapiranja."
1569
 
1570
  #. Translators: Don't show for x days
1571
- #: includes/functions.old.php:2755 includes/functions.php:2802
1572
  msgid "Don't show for"
1573
  msgstr "Ne prikaži"
1574
 
1575
- #: includes/functions.old.php:2756 includes/functions.php:2803
1576
  msgid ""
1577
  "Time in days in which closed ad will not be shown again. Use decimal value "
1578
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1583,11 +1588,11 @@ msgstr ""
1583
  "prazno, da se spet prikaže pri ponovnem nalaganju strani."
1584
 
1585
  #. Translators: Delay showing for x pageviews
1586
- #: includes/functions.old.php:2776 includes/functions.php:2823
1587
  msgid "Delay showing for"
1588
  msgstr "Zakasni prikaz za"
1589
 
1590
- #: includes/functions.old.php:2777 includes/functions.php:2824
1591
  msgid ""
1592
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1593
  "empty to insert the code for the first pageview."
@@ -1598,7 +1603,7 @@ msgstr ""
1598
  #. Translators: Delay showing for x pageviews
1599
  #. Translators: Show every x pageviews
1600
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1601
- #: includes/functions.php:2826 includes/functions.php:2833
1602
  msgid "pageview"
1603
  msgid_plural "pageviews"
1604
  msgstr[0] "ogled strani"
@@ -1607,7 +1612,7 @@ msgstr[2] "oglede strani"
1607
  msgstr[3] "ogledov strani"
1608
 
1609
  #. Translators: Show every x pageviews
1610
- #: includes/functions.old.php:2783 includes/functions.php:2830
1611
  msgid "Show every"
1612
  msgid_plural "Show every"
1613
  msgstr[0] "Prikaži vsak"
@@ -1615,7 +1620,7 @@ msgstr[1] "Prikaži vsaka"
1615
  msgstr[2] "Prikaži vsake"
1616
  msgstr[3] "Prikaži vsakih"
1617
 
1618
- #: includes/functions.old.php:2784 includes/functions.php:2831
1619
  msgid ""
1620
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1621
  "for every pageview."
@@ -1623,28 +1628,28 @@ msgstr ""
1623
  "Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
1624
  "vstavljanje kode pri vsakem ogledu strani."
1625
 
1626
- #: includes/functions.old.php:2803 includes/functions.php:2850
1627
  msgid "Lazy loading"
1628
  msgstr "Leno nalaganje"
1629
 
1630
  #. Translators: %s MaxMind
1631
- #: includes/functions.old.php:2860 includes/functions.php:2907
1632
  msgid "This product includes GeoLite2 data created by %s"
1633
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1634
 
1635
- #: includes/functions.old.php:2871 includes/functions.php:2918
1636
  msgid "IP geolocation database"
1637
  msgstr "Podatkovna baza za IP geolokacijo"
1638
 
1639
- #: includes/functions.old.php:2874 includes/functions.php:2921
1640
  msgid "Select IP geolocation database."
1641
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1642
 
1643
- #: includes/functions.old.php:2885 includes/functions.php:2932
1644
  msgid "Automatic database updates"
1645
  msgstr "Samodejna posodobitev podatkovne baze"
1646
 
1647
- #: includes/functions.old.php:2888 includes/functions.php:2935
1648
  msgid ""
1649
  "Automatically download and update free GeoLite2 IP geolocation database by "
1650
  "MaxMind"
@@ -1652,11 +1657,11 @@ msgstr ""
1652
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1653
  "podatkovno bazo MaxMind"
1654
 
1655
- #: includes/functions.old.php:2896 includes/functions.php:2943
1656
  msgid "Database"
1657
  msgstr "Podatkovna baza"
1658
 
1659
- #: includes/functions.old.php:2899 includes/functions.php:2946
1660
  msgid ""
1661
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1662
  "file"
@@ -1665,15 +1670,15 @@ msgstr ""
1665
  "podatkovne baze"
1666
 
1667
  #. translators: %d: group number
1668
- #: includes/functions.old.php:2917 includes/functions.php:2964
1669
  msgid "Group %d"
1670
  msgstr "Skupina %d"
1671
 
1672
- #: includes/functions.old.php:2923 includes/functions.php:2970
1673
  msgid "countries"
1674
  msgstr "države"
1675
 
1676
- #: includes/functions.old.php:2968 includes/functions.php:3015
1677
  msgid ""
1678
  "Enable impression and click tracking. You also need to enable tracking for "
1679
  "each block you want to track."
@@ -1681,33 +1686,33 @@ msgstr ""
1681
  "Omogočite sledenje prikazom in klikom. Omogočiti morate tudi sledenje za "
1682
  "vsak blok, ki bi ga radi sledili."
1683
 
1684
- #: includes/functions.old.php:2975 includes/functions.php:3022
1685
  msgid "Generate report"
1686
  msgstr "Generiraj poročilo"
1687
 
1688
- #: includes/functions.old.php:2983 includes/functions.php:3030
1689
  msgid "Impression and Click Tracking"
1690
  msgstr "Sledenje Prikazov in Klikov"
1691
 
1692
- #: includes/functions.old.php:2984 includes/functions.php:3031
1693
- #: settings.php:2629
1694
  msgctxt "ad blocking detection"
1695
  msgid "NOT ENABLED"
1696
  msgstr "NI OMOGOČENO"
1697
 
1698
- #: includes/functions.old.php:3000 includes/functions.php:3047
1699
  msgid "Internal"
1700
  msgstr "Notranje"
1701
 
1702
- #: includes/functions.old.php:3004 includes/functions.php:3051
1703
  msgid "Track impressions and clicks with internal tracking and statistics"
1704
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1705
 
1706
- #: includes/functions.old.php:3009 includes/functions.php:3056
1707
  msgid "External"
1708
  msgstr "Zunanje"
1709
 
1710
- #: includes/functions.old.php:3013 includes/functions.php:3060
1711
  msgid ""
1712
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1713
  "code installed)"
@@ -1715,27 +1720,27 @@ msgstr ""
1715
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1716
  "kodo za sledenje)"
1717
 
1718
- #: includes/functions.old.php:3018 includes/functions.php:3065
1719
  msgid "Track Pageviews"
1720
  msgstr "Sledi Ogledom Strani"
1721
 
1722
- #: includes/functions.old.php:3024 includes/functions.php:3071
1723
  msgid "Track Pageviews by Device (as configured for viewports)"
1724
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1725
 
1726
- #: includes/functions.old.php:3034 includes/functions.php:3081
1727
  msgid "Track for Logged in Users"
1728
  msgstr "Sledi za Prijavljene Upor."
1729
 
1730
- #: includes/functions.old.php:3040 includes/functions.php:3087
1731
  msgid "Track impressions and clicks from logged in users"
1732
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1733
 
1734
- #: includes/functions.old.php:3050 includes/functions.php:3097
1735
  msgid "Click Detection"
1736
  msgstr "Zaznavanje klikov"
1737
 
1738
- #: includes/functions.old.php:3056 includes/functions.php:3103
1739
  msgid ""
1740
  "Standard method detects clicks only on banners with links, Advanced method "
1741
  "can detect clicks on any kind of ads, but it is slightly less accurate"
@@ -1743,19 +1748,19 @@ msgstr ""
1743
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1744
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1745
 
1746
- #: includes/functions.old.php:3075 includes/functions.php:3122
1747
  msgid "Click fraud protection"
1748
  msgstr "Zaščita pred goljufijo s kliki"
1749
 
1750
- #: includes/functions.old.php:3079 includes/functions.php:3126
1751
  msgid "Globally enable click fraud protection for selected blocks."
1752
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
1753
 
1754
- #: includes/functions.old.php:3085 includes/functions.php:3132
1755
  msgid "Protection time"
1756
  msgstr "Čas zaščite"
1757
 
1758
- #: includes/functions.old.php:3086 includes/functions.php:3133
1759
  msgid ""
1760
  "Time period in days in which blocks with enabled click fraud protection will "
1761
  "be hidden. Use decimal value (with decimal point) for shorter periods."
@@ -1764,11 +1769,11 @@ msgstr ""
1764
  "goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
1765
  "za krajša obdobja."
1766
 
1767
- #: includes/functions.old.php:3105 includes/functions.php:3152
1768
  msgid "Report header image"
1769
  msgstr "Slika v glavi poročila"
1770
 
1771
- #: includes/functions.old.php:3108 includes/functions.php:3155
1772
  msgid ""
1773
  "Image or logo to be displayed in the header of the statistins report. "
1774
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
@@ -1778,15 +1783,15 @@ msgstr ""
1778
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1779
  "ponastavitev na privzeto sliko."
1780
 
1781
- #: includes/functions.old.php:3109 includes/functions.php:3156 strings.php:230
1782
  msgid "Select or upload header image"
1783
  msgstr "Izberi ali naloži sliko glave"
1784
 
1785
- #: includes/functions.old.php:3114 includes/functions.php:3161
1786
  msgid "Report header title"
1787
  msgstr "Naslov v glavi poročila"
1788
 
1789
- #: includes/functions.old.php:3117 includes/functions.php:3164
1790
  msgid ""
1791
  "Title to be displayed in the header of the statistics report. Text or HTML "
1792
  "code, clear to reset to default text."
@@ -1794,11 +1799,11 @@ msgstr ""
1794
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1795
  "pobrišite za ponastavitev na privzeto besedilo."
1796
 
1797
- #: includes/functions.old.php:3122 includes/functions.php:3169
1798
  msgid "Report header description"
1799
  msgstr "Opis v glavi poročila"
1800
 
1801
- #: includes/functions.old.php:3125 includes/functions.php:3172
1802
  msgid ""
1803
  "Description to be displayed in the header of the statistics report. Text or "
1804
  "HTML code, clear to reset to default text."
@@ -1806,11 +1811,11 @@ msgstr ""
1806
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1807
  "pobrišite za ponastavitev na privzeto besedilo."
1808
 
1809
- #: includes/functions.old.php:3130 includes/functions.php:3177
1810
  msgid "Report footer"
1811
  msgstr "Noga poročila"
1812
 
1813
- #: includes/functions.old.php:3133 includes/functions.php:3180
1814
  msgid ""
1815
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1816
  "to default text."
@@ -1818,118 +1823,118 @@ msgstr ""
1818
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1819
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1820
 
1821
- #: includes/functions.old.php:3138 includes/functions.php:3185
1822
  msgid "Public report key"
1823
  msgstr "Ključ za javno poročilo"
1824
 
1825
- #: includes/functions.old.php:3141 includes/functions.php:3188
1826
  msgid "String to generate unique report IDs. Clear to reset to default value."
1827
  msgstr ""
1828
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1829
  "privzeto vrednost."
1830
 
1831
- #: includes/functions.old.php:3173 includes/functions.php:3220
1832
  msgid "Are you sure you want to clear all exceptions for block"
1833
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1834
 
1835
- #: includes/functions.old.php:3174 includes/functions.php:3221
1836
- #: settings.php:1156
1837
  msgid "Clear all exceptions for block"
1838
  msgstr "Pobriši vse izjeme za blok"
1839
 
1840
- #: includes/functions.old.php:3181 includes/functions.php:3228
1841
  msgid "Are you sure you want to clear all exceptions?"
1842
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1843
 
1844
- #: includes/functions.old.php:3181 includes/functions.php:3228
1845
  msgid "Clear all exceptions for all blocks"
1846
  msgstr "Pobriši vse izjeme za vse bloke"
1847
 
1848
- #: includes/functions.old.php:3186 includes/functions.php:3233
1849
- #: settings.php:3708 settings.php:4139
1850
  msgid "Type"
1851
  msgstr "Vrsta"
1852
 
1853
- #: includes/functions.old.php:3204 includes/functions.php:3251
1854
  msgid "View"
1855
  msgstr "Poglej"
1856
 
1857
  #: includes/functions.old.php:3205 includes/functions.old.php:3212
1858
- #: includes/functions.old.php:3216 includes/functions.php:3252
1859
- #: includes/functions.php:3259 includes/functions.php:3263
1860
- #: includes/placeholders.php:353 includes/preview.php:2281 settings.php:1290
1861
- #: settings.php:3468
1862
  msgid "Edit"
1863
  msgstr "Uredi"
1864
 
1865
- #: includes/functions.old.php:3235 includes/functions.php:3282
1866
  msgid "Are you sure you want to clear all exceptions for"
1867
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1868
 
1869
- #: includes/functions.old.php:3236 includes/functions.php:3283
1870
  msgid "Clear all exceptions for"
1871
  msgstr "Pobriši vse izjeme za"
1872
 
1873
- #: includes/functions.old.php:3249 includes/functions.php:3296
1874
  msgid "No exceptions"
1875
  msgstr "Brez izjem"
1876
 
1877
  #. translators: %s: Ad Inserter Pro
1878
- #: includes/functions.old.php:3260 includes/functions.php:3307
1879
  msgid "%s options for network blogs"
1880
  msgstr "%s izbire za omrežne bloge"
1881
 
1882
  #. translators: %s: Ad Inserter Pro
1883
- #: includes/functions.old.php:3265 includes/functions.php:3312
1884
  msgid "Enable %s widgets for sub-sites"
1885
  msgstr "Omogoči %s gradnik za pod-spletišča"
1886
 
1887
- #: includes/functions.old.php:3265 includes/functions.php:3312
1888
  msgid "Widgets"
1889
  msgstr "Gradniki"
1890
 
1891
- #: includes/functions.old.php:3270 includes/functions.php:3317
1892
  msgid "Enable PHP code processing for sub-sites"
1893
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
1894
 
1895
- #: includes/functions.old.php:3270 includes/functions.php:3317
1896
  msgid "PHP Processing"
1897
  msgstr "PHP Procesiranje"
1898
 
1899
  #. translators: %s: Ad Inserter Pro
1900
- #: includes/functions.old.php:3275 includes/functions.php:3322
1901
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1902
  msgstr ""
1903
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
1904
 
1905
- #: includes/functions.old.php:3275 includes/functions.php:3322
1906
  msgid "Post/Page exceptions"
1907
  msgstr "Izjeme prispevkov/strani"
1908
 
1909
  #. translators: %s: Ad Inserter Pro
1910
- #: includes/functions.old.php:3280 includes/functions.php:3327
1911
  msgid "Enable %s settings page for sub-sites"
1912
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
1913
 
1914
- #: includes/functions.old.php:3280 includes/functions.php:3327
1915
  msgid "Settings page"
1916
  msgstr "Stran z nastavitvami"
1917
 
1918
  #. translators: %s: Ad Inserter Pro
1919
- #: includes/functions.old.php:3285 includes/functions.php:3332
1920
  msgid "Enable %s settings of main site to be used for all blogs"
1921
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
1922
 
1923
- #: includes/functions.old.php:3285 includes/functions.php:3332
1924
  msgid "Main site settings used for all blogs"
1925
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
1926
 
1927
- #: includes/functions.old.php:3296 includes/functions.php:3343
1928
- #: settings.php:2628
1929
  msgid "Ad Blocking Detection"
1930
  msgstr "Zaznavanje Blokiranja Oglasov"
1931
 
1932
- #: includes/functions.old.php:3302 includes/functions.php:3349
1933
  msgid ""
1934
  "Standard method is reliable but should be used only if Advanced method does "
1935
  "not work. Advanced method recreates files used for detection with random "
@@ -1942,78 +1947,78 @@ msgstr ""
1942
  "dostopna"
1943
 
1944
  #: includes/functions.old.php:3929 includes/functions.old.php:4019
1945
- #: includes/functions.old.php:4039 includes/functions.php:3976
1946
- #: includes/functions.php:4066 includes/functions.php:4086
1947
  msgid "AD BLOCKING"
1948
  msgstr "BLOKIRANJE OGLASOV"
1949
 
1950
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
1951
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
1952
- #: includes/functions.php:3977 includes/functions.php:4017
1953
- #: includes/functions.php:4060 includes/functions.php:4087
1954
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1955
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
1956
 
1957
  #: includes/functions.old.php:3933 includes/functions.old.php:4012
1958
- #: includes/functions.old.php:4046 includes/functions.php:3980
1959
- #: includes/functions.php:4059 includes/functions.php:4093
1960
  msgid "NO AD BLOCKING"
1961
  msgstr "NI BLOKIRANJA OGLASOV"
1962
 
1963
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
1964
- #: includes/functions.php:4016 includes/functions.php:4023
1965
  msgid "AD BLOCKING REPLACEMENT"
1966
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
1967
 
1968
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
1969
- #: includes/functions.php:4166 includes/functions.php:4375
1970
  msgid "Pageviews"
1971
  msgstr "Ogledi strani"
1972
 
1973
- #: includes/functions.old.php:4265 includes/functions.php:4312
1974
  msgctxt "Version"
1975
  msgid "Unknown"
1976
  msgstr "Neznana"
1977
 
1978
- #: includes/functions.old.php:4265 includes/functions.php:4312
1979
  msgctxt "Times"
1980
  msgid "DISPLAYED"
1981
  msgstr "PRIKAZANO"
1982
 
1983
- #: includes/functions.old.php:4265 includes/functions.php:4312
1984
  msgid "No version"
1985
  msgstr "Brez različice"
1986
 
1987
- #: includes/functions.old.php:4266 includes/functions.php:4313
1988
  msgctxt "Times"
1989
  msgid "BLOCKED"
1990
  msgstr "BLOKIRANO"
1991
 
1992
- #: includes/functions.old.php:4328 includes/functions.php:4375
1993
  msgid "Impressions"
1994
  msgstr "Prikazi"
1995
 
1996
  #: includes/functions.old.php:4329 includes/functions.old.php:4330
1997
- #: includes/functions.old.php:4385 includes/functions.php:4376
1998
- #: includes/functions.php:4377 includes/functions.php:4432
1999
  msgid "Clicks"
2000
  msgstr "Kliki"
2001
 
2002
- #: includes/functions.old.php:4330 includes/functions.php:4377
2003
  msgid "events"
2004
  msgstr "dogodki"
2005
 
2006
- #: includes/functions.old.php:4331 includes/functions.php:4378
2007
  msgid "Ad Blocking Share"
2008
  msgstr "Delež blokiranja oglasov"
2009
 
2010
  #. translators: CTR as Click Through Rate
2011
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
2012
- #: includes/functions.php:4378 includes/functions.php:4438
2013
  msgid "CTR"
2014
  msgstr "CTR"
2015
 
2016
- #: includes/functions.old.php:4473 includes/functions.php:4520
2017
  msgid "pageviews"
2018
  msgid_plural "pageviews"
2019
  msgstr[0] "ogled strani"
@@ -2021,7 +2026,7 @@ msgstr[1] "ogleda strani"
2021
  msgstr[2] "oglede strani"
2022
  msgstr[3] "ogledov strani"
2023
 
2024
- #: includes/functions.old.php:4473 includes/functions.php:4520
2025
  msgid "impressions"
2026
  msgid_plural "impressions"
2027
  msgstr[0] "prikaz"
@@ -2029,7 +2034,7 @@ msgstr[1] "prikaza"
2029
  msgstr[2] "prikazi"
2030
  msgstr[3] "prikazov"
2031
 
2032
- #: includes/functions.old.php:4477 includes/functions.php:4524
2033
  msgid "event"
2034
  msgid_plural "events"
2035
  msgstr[0] "dogodek"
@@ -2037,76 +2042,76 @@ msgstr[1] "dogodka"
2037
  msgstr[2] "dogodki"
2038
  msgstr[3] "dogodkov"
2039
 
2040
- #: includes/functions.old.php:4572 includes/functions.php:4619
2041
  msgctxt "Pageviews / Impressions"
2042
  msgid "Average"
2043
  msgstr "Povprečni"
2044
 
2045
- #: includes/functions.old.php:4593 includes/functions.php:4640
2046
  msgctxt "Ad Blocking / Clicks"
2047
  msgid "Average"
2048
  msgstr "Povprečno"
2049
 
2050
- #: includes/functions.old.php:4617 includes/functions.php:4664
2051
  msgctxt "Ad Blocking Share / CTR"
2052
  msgid "Average"
2053
  msgstr "Povprečni"
2054
 
2055
  #. Translators: %s: Ad Inserter Pro
2056
  #: includes/functions.old.php:4799 includes/functions.old.php:4891
2057
- #: includes/functions.old.php:5207 includes/functions.php:4846
2058
- #: includes/functions.php:4938 includes/functions.php:5267 strings.php:184
2059
  msgid "%s Report"
2060
  msgstr "%s Poročilo"
2061
 
2062
- #: includes/functions.old.php:5113 includes/functions.php:5173
2063
  msgid "for last month"
2064
  msgstr "za zadnji mesec"
2065
 
2066
- #: includes/functions.old.php:5118 includes/functions.php:5178
2067
  msgid "for this month"
2068
  msgstr "za ta mesec"
2069
 
2070
- #: includes/functions.old.php:5123 includes/functions.php:5183
2071
  msgid "for this year"
2072
  msgstr "za to leto"
2073
 
2074
- #: includes/functions.old.php:5128 includes/functions.php:5188
2075
  msgid "for the last 15 days"
2076
  msgstr "za zadnjih 15 dni"
2077
 
2078
- #: includes/functions.old.php:5133 includes/functions.php:5193
2079
  msgid "for the last 30 days"
2080
  msgstr "za zadnjih 30 dni"
2081
 
2082
- #: includes/functions.old.php:5138 includes/functions.php:5198
2083
  msgid "for the last 90 days"
2084
  msgstr "za zadnjih 90 dni"
2085
 
2086
- #: includes/functions.old.php:5143 includes/functions.php:5203
2087
  msgid "for the last 180 days"
2088
  msgstr "za zadnjih 180 dni"
2089
 
2090
- #: includes/functions.old.php:5148 includes/functions.php:5208
2091
  msgid "for the last 365 days"
2092
  msgstr "za zadnjih 365 dni"
2093
 
2094
- #: includes/functions.php:519
2095
  msgid "Pin list"
2096
  msgstr "Pripni seznam"
2097
 
2098
  #. translators: %s: Ad Inserter Pro
2099
- #: includes/functions.php:1393
2100
  msgid "Warning: %s plugin update server is not accessible"
2101
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
2102
 
2103
  #. translators: updates are not available
2104
- #: includes/functions.php:1395
2105
  msgid "updates"
2106
  msgstr "posodobitve"
2107
 
2108
  #. translators: updates are not available
2109
- #: includes/functions.php:1397
2110
  msgid "are not available"
2111
  msgstr "niso na razpolago"
2112
 
@@ -2134,7 +2139,7 @@ msgstr "Zapri urejevalnik polnila"
2134
  msgid "Placeholder"
2135
  msgstr "Polnilo"
2136
 
2137
- #: includes/placeholders.php:363 settings.php:900 settings.php:4140
2138
  msgid "Size"
2139
  msgstr "Velikost"
2140
 
@@ -2267,11 +2272,11 @@ msgstr "Prekliči"
2267
  msgid "Ad Blocking Detected Message Preview"
2268
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2269
 
2270
- #: includes/preview-adb.php:348 settings.php:2754
2271
  msgid "Message CSS"
2272
  msgstr "CSS sporočila"
2273
 
2274
- #: includes/preview-adb.php:353 settings.php:2762
2275
  msgid "Overlay CSS"
2276
  msgstr "CSS prevleke"
2277
 
@@ -2311,7 +2316,7 @@ msgstr "div za ovijanje"
2311
  msgid "background"
2312
  msgstr "ozadje"
2313
 
2314
- #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1251
2315
  msgid "Alignment"
2316
  msgstr "Poravnava"
2317
 
@@ -2456,7 +2461,7 @@ msgstr ""
2456
  "Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
2457
  "Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
2458
 
2459
- #: settings.php:172 settings.php:1140
2460
  msgid ""
2461
  "Settings for individual exceptions have been updated. Please check all "
2462
  "blocks that have exceptions and and then save settings."
@@ -2468,7 +2473,7 @@ msgstr ""
2468
  msgid "Online documentation"
2469
  msgstr "Spletna Dokumentacija"
2470
 
2471
- #: settings.php:218 settings.php:736 settings.php:2150
2472
  msgid "Show AdSense ad units"
2473
  msgstr "Pokaži oglasne enote AdSense"
2474
 
@@ -2476,7 +2481,7 @@ msgstr "Pokaži oglasne enote AdSense"
2476
  msgid "Edit ads.txt file"
2477
  msgstr "Uredi datoteko ads.txt"
2478
 
2479
- #: settings.php:226 settings.php:1083
2480
  msgid "Check theme for available positions for automatic insertion"
2481
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2482
 
@@ -2615,158 +2620,158 @@ msgstr ""
2615
  msgid "General Settings"
2616
  msgstr "Splošne Nastavitve"
2617
 
2618
- #: settings.php:684 settings.php:2481 settings.php:2548 settings.php:2734
2619
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2620
  msgstr ""
2621
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
2622
 
2623
- #: settings.php:691
2624
  msgid "Toggle tools"
2625
  msgstr "Preklopi orodja"
2626
 
2627
- #: settings.php:699
2628
  msgid "Process PHP code in block"
2629
  msgstr "Procesiraj PHP kodo v bloku"
2630
 
2631
- #: settings.php:706
2632
  msgid "Disable insertion of this block"
2633
  msgstr "Onemogoči vstavljanje tega bloka"
2634
 
2635
- #: settings.php:718
2636
  msgid "Toggle code generator"
2637
  msgstr "Preklopi generator kode"
2638
 
2639
- #: settings.php:722
2640
  msgid "Toggle rotation editor"
2641
  msgstr "Preklopi urejevalnik rotacije"
2642
 
2643
- #: settings.php:726
2644
  msgid "Open visual HTML editor"
2645
  msgstr "Odpri vizualni HTML urejevalnik"
2646
 
2647
- #: settings.php:745
2648
  msgid "Clear block"
2649
  msgstr "Počisti blok"
2650
 
2651
- #: settings.php:750 settings.php:4012
2652
  msgid "Copy block"
2653
  msgstr "Kopiraj blok"
2654
 
2655
- #: settings.php:754
2656
  msgid "Paste name"
2657
  msgstr "Prilepi ime"
2658
 
2659
- #: settings.php:758
2660
  msgid "Paste code"
2661
  msgstr "Prilepi kodo"
2662
 
2663
- #: settings.php:762
2664
  msgid "Paste settings"
2665
  msgstr "Prilepi nastavitve"
2666
 
2667
- #: settings.php:766
2668
  msgid "Paste block (name, code and settings)"
2669
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
2670
 
2671
- #: settings.php:785
2672
  msgid "Rotation groups"
2673
  msgstr "Skupine za rotacijo"
2674
 
2675
- #: settings.php:789
2676
  msgid "Remove option"
2677
  msgstr "Odstrani različico"
2678
 
2679
- #: settings.php:793
2680
  msgid "Add option"
2681
  msgstr "Dodaj različico"
2682
 
2683
- #: settings.php:808
2684
  msgid "Import code"
2685
  msgstr "Uvozi kodo"
2686
 
2687
- #: settings.php:812
2688
  msgid "Generate code"
2689
  msgstr "Generiraj kodo"
2690
 
2691
- #: settings.php:817
2692
  msgid "Banner"
2693
  msgstr "Pasica"
2694
 
2695
- #: settings.php:828
2696
  msgid "Image"
2697
  msgstr "Slika"
2698
 
2699
- #: settings.php:836
2700
  msgid "Link"
2701
  msgstr "Povezava"
2702
 
2703
- #: settings.php:847
2704
  msgid "Open link in a new tab"
2705
  msgstr "Odpri povezavo v novem zavihku"
2706
 
2707
- #: settings.php:848
2708
  msgid "Select Image"
2709
  msgstr "Izberi Sliko"
2710
 
2711
- #: settings.php:849
2712
  msgid "Select Placeholder"
2713
  msgstr "Izberi Polnilo"
2714
 
2715
- #: settings.php:861
2716
  msgid "Comment"
2717
  msgstr "Komentar"
2718
 
2719
- #: settings.php:870
2720
  msgctxt "AdSense"
2721
  msgid "Publisher ID"
2722
  msgstr "ID založnika"
2723
 
2724
- #: settings.php:879
2725
  msgctxt "AdSense"
2726
  msgid "Ad Slot ID"
2727
  msgstr "ID mesta"
2728
 
2729
- #: settings.php:888
2730
  msgid "Ad Type"
2731
  msgstr "Vrsta"
2732
 
2733
- #: settings.php:912
2734
  msgid "AMP Ad"
2735
  msgstr "AMP Oglas"
2736
 
2737
- #: settings.php:929
2738
  msgid "Show ad units from your AdSense account"
2739
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
2740
 
2741
- #: settings.php:929
2742
  msgid "AdSense ad units"
2743
  msgstr "Oglasne enote AdSense"
2744
 
2745
- #: settings.php:946
2746
  msgctxt "AdSense"
2747
  msgid "Layout"
2748
  msgstr "Postavitev"
2749
 
2750
- #: settings.php:955
2751
  msgctxt "AdSense"
2752
  msgid "Layout Key"
2753
  msgstr "Ključ postavitve"
2754
 
2755
- #: settings.php:965
2756
  msgid "Full width"
2757
  msgstr "Celotna širina"
2758
 
2759
- #: settings.php:967
2760
  msgctxt "Full width"
2761
  msgid "Enabled"
2762
  msgstr "Omogočena"
2763
 
2764
- #: settings.php:968
2765
  msgctxt "Full width"
2766
  msgid "Disabled"
2767
  msgstr "Onemogočena"
2768
 
2769
- #: settings.php:1049
2770
  msgid ""
2771
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2772
  "Cookie or Referer (domain)"
@@ -2774,28 +2779,28 @@ msgstr ""
2774
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
2775
  "parametrov, Piškotkov ali napotiteljev (domen)"
2776
 
2777
- #: settings.php:1049
2778
  msgid "Lists"
2779
  msgstr "Seznami"
2780
 
2781
- #: settings.php:1050
2782
  msgid "Widget, Shortcode and PHP function call"
2783
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
2784
 
2785
- #: settings.php:1050
2786
  msgid "Manual"
2787
  msgstr "Ročno"
2788
 
2789
- #: settings.php:1051
2790
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2791
  msgstr ""
2792
  "Zaznavanje Naprave na strani Strežnika/Klienta (Namizni, Tablica, Telefon)"
2793
 
2794
- #: settings.php:1051
2795
  msgid "Devices"
2796
  msgstr "Naprave"
2797
 
2798
- #: settings.php:1052
2799
  msgid ""
2800
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2801
  "feeds), Filter, Scheduling, General tag"
@@ -2803,15 +2808,15 @@ msgstr ""
2803
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
2804
  "RSS), Filter, Urnik, Splošna oznaka"
2805
 
2806
- #: settings.php:1052
2807
  msgid "Misc"
2808
  msgstr "Razno"
2809
 
2810
- #: settings.php:1053
2811
  msgid "Preview code and alignment"
2812
  msgstr "Predogled kode in poravnave"
2813
 
2814
- #: settings.php:1056 settings.php:2134
2815
  msgid ""
2816
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2817
  "editor is active before saving settings."
@@ -2819,15 +2824,15 @@ msgstr ""
2819
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
2820
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
2821
 
2822
- #: settings.php:1069 settings.php:1070
2823
  msgid "Enable insertion on posts"
2824
  msgstr "Omogoči vstavljanje na prispevkih"
2825
 
2826
- #: settings.php:1070 settings.php:3280
2827
  msgid "Posts"
2828
  msgstr "Prispevki"
2829
 
2830
- #: settings.php:1074 settings.php:1075
2831
  msgid ""
2832
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2833
  "page or theme homepage (available positions may depend on hooks used by the "
@@ -2837,43 +2842,43 @@ msgstr ""
2837
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
2838
  "lahko odvisni od ročic, ki jih tema uporablja)"
2839
 
2840
- #: settings.php:1075 settings.php:3282
2841
  msgid "Homepage"
2842
  msgstr "Domača stran"
2843
 
2844
- #: settings.php:1079 settings.php:1080
2845
  msgid "Enable insertion on category blog pages (including sub-pages)"
2846
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
2847
 
2848
- #: settings.php:1080 settings.php:3283
2849
  msgid "Category pages"
2850
  msgstr "Strani kategorij"
2851
 
2852
- #: settings.php:1090 settings.php:1091
2853
  msgid "Enable insertion on static pages"
2854
  msgstr "Omogoči vstavljanje na statičnih straneh"
2855
 
2856
- #: settings.php:1091 settings.php:3281
2857
  msgid "Static pages"
2858
  msgstr "Statične strani"
2859
 
2860
- #: settings.php:1095 settings.php:1096
2861
  msgid "Enable insertion on search blog pages"
2862
  msgstr "Omogoči vstavljanje na iskalnih straneh"
2863
 
2864
- #: settings.php:1096 settings.php:3285
2865
  msgid "Search pages"
2866
  msgstr "Iskalne strani"
2867
 
2868
- #: settings.php:1100 settings.php:1101
2869
  msgid "Enable insertion on tag or archive blog pages"
2870
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
2871
 
2872
- #: settings.php:1104
2873
  msgid "Toggle settings for default insertion and list of individual exceptions"
2874
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
2875
 
2876
- #: settings.php:1116
2877
  msgid ""
2878
  "Enable individual post/page exceptions for insertion of this block. They can "
2879
  "be configured on the individual post/page editor page (in the settings below "
@@ -2883,7 +2888,7 @@ msgstr ""
2883
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
2884
  "nastavitvah pod urejevalnikom)."
2885
 
2886
- #: settings.php:1117
2887
  msgid ""
2888
  "Enable individual post/page exceptions for insertion of this block. When "
2889
  "enabled they can be configured on the individual post/page editor page (in "
@@ -2893,13 +2898,13 @@ msgstr ""
2893
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
2894
  "strani (v nastavitvah pod urejevalnikom)."
2895
 
2896
- #: settings.php:1117
2897
  msgid "Use exceptions for individual posts or pages to change insertion"
2898
  msgstr ""
2899
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
2900
 
2901
  #. Translators: Enabled means...
2902
- #: settings.php:1125
2903
  msgid ""
2904
  "means the insertion for this block is enabled by default and disabled for "
2905
  "exceptions."
@@ -2908,7 +2913,7 @@ msgstr ""
2908
  "izjeme."
2909
 
2910
  #. Translators: Disabled means...
2911
- #: settings.php:1126
2912
  msgid ""
2913
  "means the insertion for this block is disabled by default and enabled for "
2914
  "exceptions."
@@ -2916,7 +2921,7 @@ msgstr ""
2916
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
2917
  "izjeme."
2918
 
2919
- #: settings.php:1127
2920
  msgid ""
2921
  "When individual post/page exceptions are enabled they can be configured on "
2922
  "the individual post/page editor page (in the settings below the editor)."
@@ -2925,27 +2930,27 @@ msgstr ""
2925
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
2926
  "urejevalnikom)."
2927
 
2928
- #: settings.php:1135
2929
  msgid ""
2930
  "No exception for post or static page defined. Block will not be inserted."
2931
  msgstr ""
2932
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
2933
 
2934
- #: settings.php:1153
2935
  msgctxt "post"
2936
  msgid "Type"
2937
  msgstr "Vrsta"
2938
 
2939
  #. translators: %d: block number
2940
- #: settings.php:1155
2941
  msgid "Are you sure you want to clear all exceptions for block %d?"
2942
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok %d?"
2943
 
2944
- #: settings.php:1182 settings.php:1330 settings.php:1926
2945
  msgid "Insertion"
2946
  msgstr "Vstavljanje"
2947
 
2948
- #: settings.php:1220
2949
  msgid ""
2950
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2951
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -2961,7 +2966,7 @@ msgstr ""
2961
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
2962
  "število pomeni štetje z nasprotne smeri"
2963
 
2964
- #: settings.php:1221
2965
  msgid ""
2966
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2967
  "means every N images, empty means all images, 0 means random image, value "
@@ -2976,7 +2981,7 @@ msgstr ""
2976
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
2977
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
2978
 
2979
- #: settings.php:1234
2980
  msgid ""
2981
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2982
  "numbers, %N means every N excerpts, empty means all excerpts"
@@ -2985,7 +2990,7 @@ msgstr ""
2985
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
2986
  "izvlečki"
2987
 
2988
- #: settings.php:1235
2989
  msgid ""
2990
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2991
  "numbers, %N means every N posts, empty means all posts"
@@ -2994,7 +2999,7 @@ msgstr ""
2994
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
2995
  "prispevki"
2996
 
2997
- #: settings.php:1236
2998
  msgid ""
2999
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3000
  "numbers, %N means every N comments, empty means all comments"
@@ -3003,44 +3008,44 @@ msgstr ""
3003
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
3004
  "vsi komentarji"
3005
 
3006
- #: settings.php:1243
3007
  msgid "Toggle paragraph counting settings"
3008
  msgstr "Preklopi nastavitve za štetje odstavkov"
3009
 
3010
- #: settings.php:1244
3011
  msgid "Toggle paragraph clearance settings"
3012
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
3013
 
3014
- #: settings.php:1247
3015
  msgid "Toggle insertion filter settings"
3016
  msgstr "Preklopi nastavitve filtra vstavljanja"
3017
 
3018
- #: settings.php:1265
3019
  msgid "Toggle insertion and alignment icons"
3020
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
3021
 
3022
- #: settings.php:1279
3023
  msgid "Custom CSS code for the wrapping div"
3024
  msgstr "CSS koda po meri za div za ovijanje"
3025
 
3026
- #: settings.php:1282 settings.php:1283 settings.php:1284 settings.php:1285
3027
- #: settings.php:1286 settings.php:1287
3028
  msgid "CSS code for the wrapping div, click to edit"
3029
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3030
 
3031
- #: settings.php:1300
3032
  msgid "HTML element"
3033
  msgstr "HTML element"
3034
 
3035
- #: settings.php:1313
3036
  msgid "HTML element selector or comma separated list of selectors"
3037
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3038
 
3039
- #: settings.php:1319 settings.php:2639
3040
  msgid "Action"
3041
  msgstr "Akcija"
3042
 
3043
- #: settings.php:1331
3044
  msgid ""
3045
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3046
  "Server-side insertion inserts block when the page is generated but needs "
@@ -3050,11 +3055,11 @@ msgstr ""
3050
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3051
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3052
 
3053
- #: settings.php:1341
3054
  msgid "JavaScript code position"
3055
  msgstr "Položaj JavaScript kode"
3056
 
3057
- #: settings.php:1342
3058
  msgid ""
3059
  "Page position where the JavaScript code for client-side insertion will be "
3060
  "inserted. Should be after the HTML element if not waiting for DOM ready."
@@ -3063,80 +3068,80 @@ msgstr ""
3063
  "strani klienta. Biti mora za HTML elementom, če se ne čaka na pripravljen "
3064
  "DOM."
3065
 
3066
- #: settings.php:1357
3067
  msgid "Count"
3068
  msgstr "Štej"
3069
 
3070
- #: settings.php:1363
3071
  msgid "paragraphs with tags"
3072
  msgstr "odstavke z značkami"
3073
 
3074
- #: settings.php:1369
3075
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3076
  msgstr ""
3077
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3078
 
3079
- #: settings.php:1378
3080
  msgid "that have between"
3081
  msgstr "ki imajo med"
3082
 
3083
- #: settings.php:1384
3084
  msgid "Minimum number of paragraph words, leave empty for no limit"
3085
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3086
 
3087
- #: settings.php:1393
3088
  msgid "Maximum number of paragraph words, leave empty for no limit"
3089
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3090
 
3091
- #: settings.php:1396
3092
  msgid "words"
3093
  msgstr "besed"
3094
 
3095
- #: settings.php:1411 settings.php:1469 settings.php:1539 settings.php:1565
3096
  msgid "Comma separated texts"
3097
  msgstr "Z vejico ločena besedila"
3098
 
3099
- #: settings.php:1424
3100
  msgid ""
3101
  "Count also paragraphs inside these elements - defined on general plugin "
3102
  "settings page - tab [*] / tab General"
3103
  msgstr ""
3104
- "Štej tudi odstavke znotraj elementov %s - določeni na strani splošnih "
3105
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3106
 
3107
  #. Translators: %s: HTML tags
3108
- #: settings.php:1429
3109
  msgid "Count inside %s elements"
3110
  msgstr "Štej znotraj elementov %s"
3111
 
3112
  #. translators: inside [HTML tags] elements that contain
3113
- #: settings.php:1441
3114
  msgid "inside"
3115
  msgstr "znotraj"
3116
 
3117
- #: settings.php:1447
3118
  msgid "Comma separated HTML tag names of container elements"
3119
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3120
 
3121
  #. translators: inside [HTML tags] elements that contain
3122
- #: settings.php:1456
3123
  msgid "elements that"
3124
  msgstr "elementov, ki"
3125
 
3126
- #: settings.php:1482 settings.php:2049
3127
  msgid "Post/Static page must have between"
3128
  msgstr "Prispevek/Statična stran mora imeti med"
3129
 
3130
- #: settings.php:1488
3131
  msgid "Minimum number of paragraphs, leave empty for no limit"
3132
  msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
3133
 
3134
- #: settings.php:1497
3135
  msgid "Maximum number of paragraphs, leave empty for no limit"
3136
  msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
3137
 
3138
  #. Translators: Post/Static page must have between X and Y paragraphs
3139
- #: settings.php:1500
3140
  msgid "paragraph"
3141
  msgid_plural "paragraphs"
3142
  msgstr[0] "odstavek"
@@ -3144,11 +3149,11 @@ msgstr[1] "odstavka"
3144
  msgstr[2] "odstavke"
3145
  msgstr[3] "odstavkov"
3146
 
3147
- #: settings.php:1508
3148
  msgid "Minimum number of words in paragraphs above"
3149
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3150
 
3151
- #: settings.php:1514
3152
  msgid ""
3153
  "Used only with automatic insertion After paragraph and empty paragraph "
3154
  "numbers"
@@ -3156,128 +3161,128 @@ msgstr ""
3156
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3157
  "številkami odstavkov"
3158
 
3159
- #: settings.php:1524 settings.php:1550
3160
  msgid "In"
3161
  msgstr "V"
3162
 
3163
- #: settings.php:1530
3164
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3165
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3166
 
3167
- #: settings.php:1533
3168
  msgid "paragraphs above avoid"
3169
  msgstr "odstavkih zgoraj se izogni"
3170
 
3171
- #: settings.php:1556
3172
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3173
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3174
 
3175
- #: settings.php:1559
3176
  msgid "paragraphs below avoid"
3177
  msgstr "odstavkih spodaj se izogni"
3178
 
3179
- #: settings.php:1575
3180
  msgid "If text is found"
3181
  msgstr "Če je besedilo najdeno"
3182
 
3183
- #: settings.php:1582
3184
  msgid "check up to"
3185
  msgstr "preveri do"
3186
 
3187
- #: settings.php:1590
3188
  msgctxt "check up to"
3189
  msgid "paragraphs"
3190
  msgstr "odstavkov"
3191
 
3192
- #: settings.php:1606
3193
  msgid "Categories"
3194
  msgstr "Kategorije"
3195
 
3196
- #: settings.php:1609
3197
  msgid "Toggle category editor"
3198
  msgstr "Preklopi urejevalnik kategorij"
3199
 
3200
- #: settings.php:1612
3201
  msgid "Comma separated category slugs"
3202
  msgstr "Z vejico ločeni ključi kategorij"
3203
 
3204
- #: settings.php:1616
3205
  msgid "Blacklist categories"
3206
  msgstr "Črni seznam kategorij"
3207
 
3208
- #: settings.php:1620
3209
  msgid "Whitelist categories"
3210
  msgstr "Beli seznam kategorij"
3211
 
3212
- #: settings.php:1632
3213
  msgid "Tags"
3214
  msgstr "Oznake"
3215
 
3216
- #: settings.php:1635
3217
  msgid "Toggle tag editor"
3218
  msgstr "Preklopi urejevalnik oznak"
3219
 
3220
- #: settings.php:1638
3221
  msgid "Comma separated tag slugs"
3222
  msgstr "Z vejico ločeni ključi oznak"
3223
 
3224
- #: settings.php:1642
3225
  msgid "Blacklist tags"
3226
  msgstr "Črni seznam oznak"
3227
 
3228
- #: settings.php:1646
3229
  msgid "Whitelist tags"
3230
  msgstr "Beli seznam oznak"
3231
 
3232
- #: settings.php:1658
3233
  msgid "Taxonomies"
3234
  msgstr "Taksonomije"
3235
 
3236
- #: settings.php:1661
3237
  msgid "Toggle taxonomy editor"
3238
  msgstr "Preklopi urejevalnik taksonomij"
3239
 
3240
- #: settings.php:1664
3241
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3242
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3243
 
3244
- #: settings.php:1668
3245
  msgid "Blacklist taxonomies"
3246
  msgstr "Črni seznam taksonomij"
3247
 
3248
- #: settings.php:1672
3249
  msgid "Whitelist taxonomies"
3250
  msgstr "Beli seznam taksonomij"
3251
 
3252
- #: settings.php:1684
3253
  msgid "Post IDs"
3254
  msgstr "ID-ji prispevkov"
3255
 
3256
- #: settings.php:1687
3257
  msgid "Toggle post/page ID editor"
3258
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3259
 
3260
- #: settings.php:1690
3261
  msgid "Comma separated post/page IDs"
3262
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3263
 
3264
- #: settings.php:1694
3265
  msgid "Blacklist IDs"
3266
  msgstr "Črni seznam ID-jev"
3267
 
3268
- #: settings.php:1698
3269
  msgid "Whitelist IDs"
3270
  msgstr "Beli seznam ID-jev"
3271
 
3272
- #: settings.php:1710
3273
  msgid "Urls"
3274
  msgstr "Url-ji"
3275
 
3276
- #: settings.php:1713
3277
  msgid "Toggle url editor"
3278
  msgstr "Preklopi urejevalnik url-jev"
3279
 
3280
- #: settings.php:1716
3281
  msgid ""
3282
  "Comma separated urls (page addresses) starting with / after domain name (e."
3283
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -3289,23 +3294,23 @@ msgstr ""
3289
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3290
  "začetek*. *url-vzorec*, *url-konec)"
3291
 
3292
- #: settings.php:1720
3293
  msgid "Blacklist urls"
3294
  msgstr "Črni seznam url-jev"
3295
 
3296
- #: settings.php:1724
3297
  msgid "Whitelist urls"
3298
  msgstr "Beli seznam url-jev"
3299
 
3300
- #: settings.php:1735
3301
  msgid "Url parameters"
3302
  msgstr "Url parametri"
3303
 
3304
- #: settings.php:1739
3305
  msgid "Toggle url parameter and cookie editor"
3306
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3307
 
3308
- #: settings.php:1742
3309
  msgid ""
3310
  "Comma separated url query parameters or cookies with optional values (use "
3311
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
@@ -3314,23 +3319,23 @@ msgstr ""
3314
  "vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
3315
  "'piškotek=vrednost')"
3316
 
3317
- #: settings.php:1746
3318
  msgid "Blacklist url parameters"
3319
  msgstr "Črni seznam url parametrov"
3320
 
3321
- #: settings.php:1750
3322
  msgid "Whitelist url parameters"
3323
  msgstr "Beli seznam url parametrov"
3324
 
3325
- #: settings.php:1761
3326
  msgid "Referrers"
3327
  msgstr "Napotitelji"
3328
 
3329
- #: settings.php:1764
3330
  msgid "Toggle referer editor"
3331
  msgstr "Preklopi urejevalnik napotiteljev"
3332
 
3333
- #: settings.php:1767
3334
  msgid ""
3335
  "Comma separated domains, use # for no referrer, you can also use partial "
3336
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
@@ -3338,28 +3343,48 @@ msgstr ""
3338
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3339
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3340
 
3341
- #: settings.php:1771
3342
  msgid "Blacklist referers"
3343
  msgstr "Črni seznam napotiteljev"
3344
 
3345
- #: settings.php:1775
3346
  msgid "Whitelist referers"
3347
  msgstr "Beli seznam napotiteljev"
3348
 
3349
- #: settings.php:1795
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3350
  msgid "Enable widget for this block"
3351
  msgstr "Omogočite gradnik za ta blok"
3352
 
3353
- #: settings.php:1807
3354
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3355
  msgstr ""
3356
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3357
 
3358
- #: settings.php:1808 settings.php:4068
3359
  msgid "Shortcode"
3360
  msgstr "Kratka koda"
3361
 
3362
- #: settings.php:1823
3363
  msgid ""
3364
  "Enable PHP function call to insert this block at any position in theme file. "
3365
  "If function is disabled for block it will return empty string."
@@ -3368,66 +3393,66 @@ msgstr ""
3368
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3369
  "prazen niz."
3370
 
3371
- #: settings.php:1824
3372
  msgid "PHP function"
3373
  msgstr "PHP funkcija"
3374
 
3375
- #: settings.php:1839
3376
  msgid "Client-side device detection"
3377
  msgstr "Zaznavanje naprave na strani klienta"
3378
 
3379
- #: settings.php:1840
3380
  msgid "Server-side device detection"
3381
  msgstr "Zaznavanje naprave na strani strežnika"
3382
 
3383
- #: settings.php:1847
3384
  msgid "Use client-side detection to"
3385
  msgstr "Uporabi zaznavanje na strani klienta in"
3386
 
3387
- #: settings.php:1849
3388
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3389
  msgstr ""
3390
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3391
 
3392
  #. Translators: only on (the following devices): viewport names (devices)
3393
  #. listed
3394
- #: settings.php:1854
3395
  msgid "only on"
3396
  msgstr "samo na"
3397
 
3398
- #: settings.php:1882
3399
  msgid "Device min width %s px"
3400
  msgstr "Najmanjša širina naprave %s px"
3401
 
3402
- #: settings.php:1908
3403
  msgid "Use server-side detection to insert block only for"
3404
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3405
 
3406
- #: settings.php:1927
3407
  msgid "Filter"
3408
  msgstr "Filter"
3409
 
3410
- #: settings.php:1928
3411
  msgid "Word Count"
3412
  msgstr "Število Besed"
3413
 
3414
- #: settings.php:1929 settings.php:4058
3415
  msgid "Scheduling"
3416
  msgstr "Urnik"
3417
 
3418
- #: settings.php:1930
3419
  msgid "Display"
3420
  msgstr "Prikaz"
3421
 
3422
- #: settings.php:1932 settings.php:2176
3423
  msgid "General"
3424
  msgstr "Splošno"
3425
 
3426
- #: settings.php:1944
3427
  msgid "Old settings for AMP pages detected"
3428
  msgstr "Zaznane stare nastavitve za AMP strani"
3429
 
3430
- #: settings.php:1944
3431
  msgid ""
3432
  "To insert different codes on normal and AMP pages separate them with "
3433
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
@@ -3438,44 +3463,44 @@ msgstr ""
3438
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
3439
  "separatorja)."
3440
 
3441
- #: settings.php:1944
3442
  msgid "AMP pages"
3443
  msgstr "AMP strani"
3444
 
3445
- #: settings.php:1949
3446
  msgid "Enable insertion for Ajax requests"
3447
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
3448
 
3449
- #: settings.php:1949
3450
  msgid "Ajax requests"
3451
  msgstr "Ajax zahteve"
3452
 
3453
- #: settings.php:1954
3454
  msgid "Enable insertion in RSS feeds"
3455
  msgstr "Omogoči vstavljanje v RSS virih"
3456
 
3457
- #: settings.php:1954
3458
  msgid "RSS Feed"
3459
  msgstr "RSS Vir"
3460
 
3461
- #: settings.php:1959
3462
  msgid "Enable insertion on page for Error 404: Page not found"
3463
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
3464
 
3465
- #: settings.php:1959
3466
  msgid "Error 404 page"
3467
  msgstr "Stran napake 404"
3468
 
3469
- #: settings.php:1971
3470
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3471
  msgstr ""
3472
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
3473
 
3474
- #: settings.php:1972
3475
  msgid "insertions"
3476
  msgstr "vstavljanj"
3477
 
3478
- #: settings.php:1974
3479
  msgid ""
3480
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3481
  "General)"
@@ -3483,15 +3508,15 @@ msgstr ""
3483
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
3484
  "zavihek Splošno)"
3485
 
3486
- #: settings.php:1977 settings.php:2345
3487
  msgid "Max blocks per page"
3488
  msgstr "Največ blokov na stran"
3489
 
3490
- #: settings.php:1989
3491
  msgid "Insert for"
3492
  msgstr "Vstavi za"
3493
 
3494
- #: settings.php:1997
3495
  msgid ""
3496
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3497
  "currently active). Might speed up insertion on content pages when "
@@ -3501,26 +3526,26 @@ msgstr ""
3501
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
3502
  "filter the_content večkrat klican."
3503
 
3504
- #: settings.php:2000
3505
  msgid "Insert only in the loop"
3506
  msgstr "Vstavi samo v zanki"
3507
 
3508
- #: settings.php:2006
3509
  msgid ""
3510
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3511
  msgstr ""
3512
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
3513
  "Rocket"
3514
 
3515
- #: settings.php:2006
3516
  msgid "Disable caching"
3517
  msgstr "Onemogoči predpomnjenje"
3518
 
3519
- #: settings.php:2018
3520
  msgid "Filter insertions"
3521
  msgstr "Filtriraj vstavljanja"
3522
 
3523
- #: settings.php:2021
3524
  msgid ""
3525
  "Filter multiple insertions by specifying wanted insertions for this block - "
3526
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -3532,52 +3557,52 @@ msgstr ""
3532
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
3533
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
3534
 
3535
- #: settings.php:2024
3536
  msgid "using"
3537
  msgstr "z uporabo"
3538
 
3539
- #: settings.php:2043
3540
  msgid "Checked means specified calls are unwanted"
3541
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
3542
 
3543
- #: settings.php:2043
3544
  msgid "Invert filter"
3545
  msgstr "Obrni filter"
3546
 
3547
- #: settings.php:2050
3548
  msgid "Minimum number of post/static page words, leave empty for no limit"
3549
  msgstr ""
3550
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3551
  "omejitev"
3552
 
3553
- #: settings.php:2052
3554
  msgid "Maximum number of post/static page words, leave empty for no limit"
3555
  msgstr ""
3556
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3557
  "omejitev"
3558
 
3559
- #: settings.php:2065
3560
  msgid "days after publishing"
3561
  msgstr "dni po objavi"
3562
 
3563
- #: settings.php:2067
3564
  msgid "Not available"
3565
  msgstr "Ni na razpolago"
3566
 
3567
- #: settings.php:2080 settings.php:2337
3568
  msgid "Ad label"
3569
  msgstr "Oznaka oglasa"
3570
 
3571
- #: settings.php:2100
3572
  msgid "General tag"
3573
  msgstr "Splošna oznaka"
3574
 
3575
- #: settings.php:2104
3576
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3577
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
3578
 
3579
  #. translators: %s: HTML tags
3580
- #: settings.php:2113
3581
  msgid ""
3582
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
3583
  "side device detection!"
@@ -3585,86 +3610,86 @@ msgstr ""
3585
  "%s OPOZORILO: slog %s Brez Ovijanja %s nima kode za ovijanje , ki je "
3586
  "potrebna za zaznavanje naprave na strani klienta!"
3587
 
3588
- #: settings.php:2125
3589
  msgid "Settings"
3590
  msgstr "Nastavitve"
3591
 
3592
- #: settings.php:2128
3593
  msgid "Settings timestamp"
3594
  msgstr "Časovni žig nastavitev"
3595
 
3596
- #: settings.php:2141
3597
  msgid "Are you sure you want to reset all settings?"
3598
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
3599
 
3600
- #: settings.php:2141
3601
  msgid "Reset All Settings"
3602
  msgstr "Ponastavi Vse Nastavitve"
3603
 
3604
- #: settings.php:2177
3605
  msgid "Viewports"
3606
  msgstr "Pogledi"
3607
 
3608
- #: settings.php:2178
3609
  msgid "Hooks"
3610
  msgstr "Ročice"
3611
 
3612
- #: settings.php:2179
3613
  msgid "Header"
3614
  msgstr "Glava"
3615
 
3616
- #: settings.php:2180 strings.php:30
3617
  msgid "Footer"
3618
  msgstr "Noga"
3619
 
3620
- #: settings.php:2185
3621
  msgid "Debugging"
3622
  msgstr "Razhroščevanje"
3623
 
3624
- #: settings.php:2195
3625
  msgid "Plugin priority"
3626
  msgstr "Prednost vtičnika"
3627
 
3628
- #: settings.php:2203
3629
  msgid "Output buffering"
3630
  msgstr "Predpomnjenje izhoda"
3631
 
3632
- #: settings.php:2206
3633
  msgid "Needed for position Above header but may not work with all themes"
3634
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
3635
 
3636
- #: settings.php:2214
3637
  msgid "Syntax highlighting theme"
3638
  msgstr "Tema za poudarjanje sintakse"
3639
 
3640
- #: settings.php:2221
3641
  msgctxt "no syntax highlighting themes"
3642
  msgid "None"
3643
  msgstr "Brez"
3644
 
3645
- #: settings.php:2222
3646
  msgid "No Syntax Highlighting"
3647
  msgstr "Brez Poudarjanja Sintakse"
3648
 
3649
- #: settings.php:2224
3650
  msgctxt "syntax highlighting themes"
3651
  msgid "Light"
3652
  msgstr "Svetle"
3653
 
3654
- #: settings.php:2239
3655
  msgctxt "syntax highlighting themes"
3656
  msgid "Dark"
3657
  msgstr "Temne"
3658
 
3659
- #: settings.php:2265
3660
  msgid "Min. user role for ind. exceptions editing"
3661
  msgstr "Najm. uporabniška vloga za urejanje izjem"
3662
 
3663
- #: settings.php:2275
3664
  msgid "Disable caching for logged in administrators"
3665
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
3666
 
3667
- #: settings.php:2278
3668
  msgid ""
3669
  "Enabled means that logged in administrators will see non-cached (live) pages "
3670
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
@@ -3672,11 +3697,11 @@ msgstr ""
3672
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
3673
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
3674
 
3675
- #: settings.php:2286
3676
  msgid "Sticky widget mode"
3677
  msgstr "Način za lepljive gradnike"
3678
 
3679
- #: settings.php:2289
3680
  msgid ""
3681
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3682
  "mode works with most themes but may reload ads on page load."
@@ -3685,19 +3710,19 @@ msgstr ""
3685
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
3686
  "nalaganju strani."
3687
 
3688
- #: settings.php:2297
3689
  msgid "Sticky widget top margin"
3690
  msgstr "Zgornji rob za lepljiv gradnik"
3691
 
3692
- #: settings.php:2305
3693
  msgid "Dynamic blocks"
3694
  msgstr "Dinamični bloki"
3695
 
3696
- #: settings.php:2318
3697
  msgid "Functions for paragraph counting"
3698
  msgstr "Funkcije za štetje odstavkov"
3699
 
3700
- #: settings.php:2321
3701
  msgid ""
3702
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3703
  "functions if paragraphs are not counted properly on non-english pages."
@@ -3706,15 +3731,15 @@ msgstr ""
3706
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
3707
  "šteti."
3708
 
3709
- #: settings.php:2329
3710
  msgid "No paragraph counting inside"
3711
  msgstr "Ni štetja odstavkov znotraj"
3712
 
3713
- #: settings.php:2340
3714
  msgid "Label text or HTML code"
3715
  msgstr "Besedilo oznake ali HTML koda"
3716
 
3717
- #: settings.php:2348
3718
  msgid ""
3719
  "Maximum number of inserted blocks per page. You need to enable Max page "
3720
  "insertions (button Misc / tab Insertion) to count block for this limit."
@@ -3723,12 +3748,12 @@ msgstr ""
3723
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
3724
  "omejitev."
3725
 
3726
- #: settings.php:2362
3727
  msgid "Plugin usage tracking"
3728
  msgstr "Sledenje uporabe vtičnika"
3729
 
3730
  #. translators: %s: Ad Inserter
3731
- #: settings.php:2365
3732
  msgid ""
3733
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3734
  "Only information regarding the WordPress environment and %s usage is "
@@ -3738,125 +3763,125 @@ msgstr ""
3738
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
3739
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
3740
 
3741
- #: settings.php:2383
3742
  msgid "CSS class name for the wrapping div"
3743
  msgstr "Ime CSS razreda za div za ovijanje"
3744
 
3745
- #: settings.php:2383
3746
  msgid "Block class name"
3747
  msgstr "Ime razreda za blok"
3748
 
3749
- #: settings.php:2387
3750
  msgid "Include general plugin block class"
3751
  msgstr "Vključi splošni razred vtičnika za blok"
3752
 
3753
- #: settings.php:2387
3754
  msgid "Block class"
3755
  msgstr "Razred bloka"
3756
 
3757
- #: settings.php:2392
3758
  msgid "Include block number class"
3759
  msgstr "Vključi razred številke bloka"
3760
 
3761
- #: settings.php:2392
3762
  msgid "Block number class"
3763
  msgstr "Razred številke bloka"
3764
 
3765
- #: settings.php:2397
3766
  msgid ""
3767
  "Instead of alignment classes generate inline alignment styles for blocks"
3768
  msgstr ""
3769
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
3770
 
3771
- #: settings.php:2397
3772
  msgid "Inline styles"
3773
  msgstr "Medvrstični slogi"
3774
 
3775
- #: settings.php:2403
3776
  msgid "Preview of the block wrapping code"
3777
  msgstr "Predogled kode za ovijanje blokov"
3778
 
3779
- #: settings.php:2404
3780
  msgid "Wrapping div"
3781
  msgstr "div za ovijanje"
3782
 
3783
- #: settings.php:2405 settings.php:2845
3784
  msgid "BLOCK CODE"
3785
  msgstr "KODA BLOKA"
3786
 
3787
- #: settings.php:2413
3788
  msgid "Viewport Settings used for client-side device detection"
3789
  msgstr ""
3790
  "Nastavitve Pogledov, uporabljene za zaznavanje naprav na strani klienta"
3791
 
3792
  #. Translators: %d: viewport number
3793
- #: settings.php:2421
3794
  msgid "Viewport %d name"
3795
  msgstr "Ime pogleda %d"
3796
 
3797
- #: settings.php:2424
3798
  msgid "min width"
3799
  msgstr "najmanjša širina"
3800
 
3801
- #: settings.php:2435
3802
  msgid "Custom Hooks"
3803
  msgstr "Ročice Po Meri"
3804
 
3805
- #: settings.php:2447 settings.php:2450
3806
  msgid "Enable hook"
3807
  msgstr "Omogoči ročico"
3808
 
3809
  #. translators: %d: hook number
3810
- #: settings.php:2450
3811
  msgid "Hook %d name"
3812
  msgstr "Ime ročice %d"
3813
 
3814
- #: settings.php:2453
3815
  msgid "Hook name for automatic insertion selection"
3816
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
3817
 
3818
- #: settings.php:2456
3819
  msgid "action"
3820
  msgstr "akcija"
3821
 
3822
- #: settings.php:2459
3823
  msgid "Action name as used in the do_action () function"
3824
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
3825
 
3826
- #: settings.php:2462
3827
  msgid "priority"
3828
  msgstr "prednost"
3829
 
3830
- #: settings.php:2465
3831
  msgid "Priority for the hook (default is 10)"
3832
  msgstr "Prednost za ročico (privzeta je 10)"
3833
 
3834
- #: settings.php:2486
3835
  msgid "Enable insertion of this code into HTML page header"
3836
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
3837
 
3838
- #: settings.php:2490 settings.php:2557 settings.php:2739
3839
  msgid "Process PHP code"
3840
  msgstr "Procesiraj PHP kodo"
3841
 
3842
- #: settings.php:2494
3843
  msgid "HTML Page Header Code"
3844
  msgstr "Koda v Glavi HTML Strani"
3845
 
3846
- #: settings.php:2502
3847
  msgid "Code in the %s section of the HTML page"
3848
  msgstr "Koda v %s delu HTML strani"
3849
 
3850
- #: settings.php:2503
3851
  msgctxt "code in the header"
3852
  msgid "NOT ENABLED"
3853
  msgstr "NI OMOGOČENA"
3854
 
3855
- #: settings.php:2520 settings.php:2588
3856
  msgid "Use server-side detection to insert code only for"
3857
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
3858
 
3859
- #: settings.php:2535
3860
  msgid ""
3861
  "Enable insertion of this code into HTML page header on page for Error 404: "
3862
  "Page not found"
@@ -3864,29 +3889,29 @@ msgstr ""
3864
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
3865
  "obstaja"
3866
 
3867
- #: settings.php:2535 settings.php:2603
3868
  msgid "Insert on Error 404 page"
3869
  msgstr "Vstavi na strani Napake 404"
3870
 
3871
- #: settings.php:2553
3872
  msgid "Enable insertion of this code into HTML page footer"
3873
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
3874
 
3875
- #: settings.php:2561
3876
  msgid "HTML Page Footer Code"
3877
  msgstr "Koda v Nogi HTML Strani"
3878
 
3879
  #. translators: %s: HTML tags
3880
- #: settings.php:2569
3881
  msgid "Code before the %s tag of the the HTML page"
3882
  msgstr "Koda pred %s značko HTML strani"
3883
 
3884
- #: settings.php:2570
3885
  msgctxt "code in the footer"
3886
  msgid "NOT ENABLED"
3887
  msgstr "NI OMOGOČENA"
3888
 
3889
- #: settings.php:2603
3890
  msgid ""
3891
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3892
  "Page not found"
@@ -3894,32 +3919,32 @@ msgstr ""
3894
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
3895
  "Stran ne obstaja"
3896
 
3897
- #: settings.php:2619
3898
  msgid "Code for ad blocking detection inserted. Click for details."
3899
  msgstr ""
3900
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
3901
 
3902
- #: settings.php:2624
3903
  msgid "Enable detection of ad blocking"
3904
  msgstr "Omogoči zaznavanje blokiranja oglasov"
3905
 
3906
- #: settings.php:2642
3907
  msgid "Global action when ad blocking is detected"
3908
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
3909
 
3910
- #: settings.php:2648
3911
  msgid "No action for"
3912
  msgstr "Ni akcije za"
3913
 
3914
- #: settings.php:2649
3915
  msgid "Exceptions for global action when ad blocking is detected."
3916
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
3917
 
3918
- #: settings.php:2659
3919
  msgid "Delay Action"
3920
  msgstr "Zakasni Akcijo"
3921
 
3922
- #: settings.php:2662
3923
  msgid ""
3924
  "Number of page views to delay action when ad blocking is detected. Leave "
3925
  "empty for no delay (action fires on first page view). Sets cookie."
@@ -3928,16 +3953,16 @@ msgstr ""
3928
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
3929
  "strani). Nastavi piškotek."
3930
 
3931
- #: settings.php:2662
3932
  msgctxt "Delay Action for x "
3933
  msgid "page views"
3934
  msgstr "ogledov strani"
3935
 
3936
- #: settings.php:2667
3937
  msgid "No Action Period"
3938
  msgstr "Obdobje Brez Akcije"
3939
 
3940
- #: settings.php:2670
3941
  msgid ""
3942
  "Number of days to supress action when ad blocking is detected. Leave empty "
3943
  "for no no-action period (action fires always after defined page view delay). "
@@ -3947,16 +3972,16 @@ msgstr ""
3947
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
3948
  "strani). Nastavi piškotek."
3949
 
3950
- #: settings.php:2670
3951
  msgctxt "no action period"
3952
  msgid "days"
3953
  msgstr "dni"
3954
 
3955
- #: settings.php:2675
3956
  msgid "Custom Selectors"
3957
  msgstr "Selektorji Po Meri"
3958
 
3959
- #: settings.php:2678
3960
  msgid ""
3961
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3962
  "blocking detection. Invisible element or element with zero height means ad "
@@ -3966,15 +3991,15 @@ msgstr ""
3966
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
3967
  "pomeni prisotnost blokiranja oglasov."
3968
 
3969
- #: settings.php:2690
3970
  msgid "Redirection Page"
3971
  msgstr "Stran za Preusmeritev"
3972
 
3973
- #: settings.php:2702
3974
  msgid "Custom Url"
3975
  msgstr "Url Po Meri"
3976
 
3977
- #: settings.php:2707
3978
  msgid ""
3979
  "Static page for redirection when ad blocking is detected. For other pages "
3980
  "select Custom url and set it below."
@@ -3982,35 +4007,35 @@ msgstr ""
3982
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
3983
  "strani izberite Url Po Meri in ga nastavite spodaj."
3984
 
3985
- #: settings.php:2716
3986
  msgid "Custom Redirection Url"
3987
  msgstr "Url za Preusmeritev Po Meri"
3988
 
3989
- #: settings.php:2728
3990
  msgid "Message HTML code"
3991
  msgstr "HTML koda sporočila"
3992
 
3993
- #: settings.php:2741
3994
  msgid "Preview message when ad blocking is detected"
3995
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
3996
 
3997
- #: settings.php:2770
3998
  msgid "Prevent visitors from closing the warning message"
3999
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
4000
 
4001
- #: settings.php:2770
4002
  msgid "Undismissible Message"
4003
  msgstr "Neodstranljivo Sporočilo"
4004
 
4005
- #: settings.php:2776
4006
  msgid "Not undismissible for"
4007
  msgstr "Ni neodstranljivo za"
4008
 
4009
- #: settings.php:2777
4010
  msgid "Users which can close the warning message."
4011
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
4012
 
4013
- #: settings.php:2791
4014
  msgid ""
4015
  "Force showing admin toolbar for administrators when viewing site. Enable "
4016
  "this option when you are logged in as admin and you don't see admin toolbar."
@@ -4019,84 +4044,84 @@ msgstr ""
4019
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
4020
  "skrbnike."
4021
 
4022
- #: settings.php:2799
4023
  msgid "Disable header code (Header tab)"
4024
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
4025
 
4026
- #: settings.php:2803
4027
  msgid "Disable footer code (Footer tab)"
4028
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
4029
 
4030
  #. translators: %s: Ad Inserter
4031
- #: settings.php:2807
4032
  msgid "Disable %s JavaScript code"
4033
  msgstr "Onemogoči %s JavaScript kodo"
4034
 
4035
  #. translators: %s: Ad Inserter
4036
- #: settings.php:2811
4037
  msgid "Disable %s CSS code"
4038
  msgstr "Onemogoči %s CSS kodo"
4039
 
4040
- #: settings.php:2815
4041
  msgid ""
4042
  "Disable PHP code processing (in all blocks including header and footer code)"
4043
  msgstr ""
4044
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4045
 
4046
- #: settings.php:2819
4047
  msgid "Disable insertion of all blocks"
4048
  msgstr "Onemogoči vstavljanje vseh blokov"
4049
 
4050
- #: settings.php:2823
4051
  msgid "Disable insertions"
4052
  msgstr "Onemogoči vstavljanja"
4053
 
4054
  #. translators: %s: Ad Inserter
4055
- #: settings.php:2835
4056
  msgid "%s CSS CODE"
4057
  msgstr "%s CSS KODA"
4058
 
4059
- #: settings.php:2838
4060
  msgid "HEADER CODE"
4061
  msgstr "KODA GLAVE"
4062
 
4063
  #. translators: %s: PHP tags
4064
- #: settings.php:2844
4065
  msgid "BLOCK PHP CODE"
4066
  msgstr "PHP KODA BLOKA"
4067
 
4068
  #. translators: %s: Ad Inserter
4069
- #: settings.php:2850
4070
  msgid "%s JS CODE"
4071
  msgstr "%s JS KODA"
4072
 
4073
- #: settings.php:2853
4074
  msgid "FOOTER CODE"
4075
  msgstr "KODA NOGE"
4076
 
4077
- #: settings.php:2862
4078
  msgid "Force showing admin toolbar when viewing site"
4079
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4080
 
4081
- #: settings.php:2869
4082
  msgid "Enable debugging functions in admin toolbar"
4083
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4084
 
4085
- #: settings.php:2871
4086
  msgid "Debugging functions in admin toolbar"
4087
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4088
 
4089
- #: settings.php:2878
4090
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4091
  msgstr ""
4092
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4093
  "zaslonih"
4094
 
4095
- #: settings.php:2880
4096
  msgid "Debugging functions on mobile screens"
4097
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4098
 
4099
- #: settings.php:2887
4100
  msgid ""
4101
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4102
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -4111,11 +4136,11 @@ msgstr ""
4111
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
4112
  "vedno omogočeno."
4113
 
4114
- #: settings.php:2889
4115
  msgid "Remote debugging"
4116
  msgstr "Oddaljeno razhroščevanje"
4117
 
4118
- #: settings.php:2896
4119
  msgid ""
4120
  "Disable translation to see original texts for the settings and messages in "
4121
  "English"
@@ -4123,202 +4148,202 @@ msgstr ""
4123
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4124
  "angleščini"
4125
 
4126
- #: settings.php:2898
4127
  msgid "Disable translation"
4128
  msgstr "Onemogoči prevod"
4129
 
4130
- #: settings.php:3268
4131
  msgid "Available positions for current theme"
4132
  msgstr "Razpoložljivi položaji za trenutno temo"
4133
 
4134
- #: settings.php:3269
4135
  msgid "Error checking pages"
4136
  msgstr "Napaka pri preverjanju strani"
4137
 
4138
- #: settings.php:3272
4139
  msgid "Toggle theme checker for available positions for automatic insertion"
4140
  msgstr ""
4141
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4142
 
4143
- #: settings.php:3272
4144
  msgctxt "Button"
4145
  msgid "Check"
4146
  msgstr "Preveri"
4147
 
4148
- #: settings.php:3279
4149
  msgid "Position"
4150
  msgstr "Položaj"
4151
 
4152
- #: settings.php:3284
4153
  msgid "Archive pages"
4154
  msgstr "Strani arhiva"
4155
 
4156
- #: settings.php:3343
4157
  msgid ""
4158
  "Position not available because output buffering (tab [*]) is not enabled"
4159
  msgstr ""
4160
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4161
 
4162
- #: settings.php:3346 strings.php:226
4163
  msgid "Position not checked yet"
4164
  msgstr "Položaj še ni bil preverjen"
4165
 
4166
- #: settings.php:3382
4167
  msgid "Toggle active/all blocks"
4168
  msgstr "Preklopi aktive/vse bloke"
4169
 
4170
- #: settings.php:3386 strings.php:213
4171
  msgid "Rearrange block order"
4172
  msgstr "Preuredi vrstni red blokov"
4173
 
4174
- #: settings.php:3391
4175
  msgid "Save new block order"
4176
  msgstr "Shrani vrstni red blokov"
4177
 
4178
- #: settings.php:3417
4179
  msgid "Toggle active/all ad units"
4180
  msgstr "Preklopi aktivne/vse oglasne enote"
4181
 
4182
- #: settings.php:3421
4183
  msgid "Reload AdSense ad units"
4184
  msgstr "Ponovno naloži oglasne enote AdSense"
4185
 
4186
- #: settings.php:3425
4187
  msgid "Clear authorization to access AdSense account"
4188
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4189
 
4190
- #: settings.php:3429 settings.php:4225 settings.php:4292 strings.php:221
4191
  msgid "Google AdSense Homepage"
4192
  msgstr "Google AdSense Domača Stran"
4193
 
4194
- #: settings.php:3445
4195
  msgid "Switch to physical ads.txt file"
4196
  msgstr "Preklopi na fizično datoteko ads.txt"
4197
 
4198
- #: settings.php:3446
4199
  msgid "Switch to virtual ads.txt file"
4200
  msgstr "Preklopi na navidezno datoteko ads.txt"
4201
 
4202
  #. translators: %s: ads.txt
4203
- #: settings.php:3456
4204
  msgid "Open %s"
4205
  msgstr "Odpri %s"
4206
 
4207
- #: settings.php:3464
4208
  msgid "Reload ads.txt file"
4209
  msgstr "Ponovno naloži datoteko ads.txt"
4210
 
4211
- #: settings.php:3468 settings.php:4352
4212
  msgid "Save"
4213
  msgstr "Shrani"
4214
 
4215
  #. translators: %s: Ad Inserter
4216
- #: settings.php:3643
4217
  msgid "ads.txt file: %s virtual ads.txt file"
4218
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4219
 
4220
- #: settings.php:3648 settings.php:3668 strings.php:205
4221
  msgid "Warning"
4222
  msgstr "Opozorilo"
4223
 
4224
  #. translators: %s: Ad Inserter
4225
- #: settings.php:3648
4226
  msgid "%s virtual file ads.txt not found"
4227
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4228
 
4229
- #: settings.php:3656
4230
  msgid "IMPORTANT"
4231
  msgstr "POMEMBNO"
4232
 
4233
- #: settings.php:3656
4234
  msgid "ads.txt file must be placed on the root domain"
4235
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4236
 
4237
- #: settings.php:3661
4238
  msgid "ads.txt file"
4239
  msgstr "datoteka ads.txt"
4240
 
4241
- #: settings.php:3668
4242
  msgid "file %s not found"
4243
  msgstr "datoteka %s ni najdena"
4244
 
4245
- #: settings.php:3678
4246
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4247
  msgstr ""
4248
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4249
 
4250
  #. translators: %s: Ad Inserter
4251
- #: settings.php:3684
4252
  msgid "%s virtual ads.txt file"
4253
  msgstr "%s navidezna datoteka ads.txt"
4254
 
4255
- #: settings.php:3706
4256
  msgid "Advertising system"
4257
  msgstr "Oglaševalski sistem"
4258
 
4259
- #: settings.php:3707
4260
  msgid "Account ID"
4261
  msgstr "ID Računa"
4262
 
4263
- #: settings.php:3709
4264
  msgid "Certification authority ID"
4265
  msgstr "ID organa za potrjevanje"
4266
 
4267
- #: settings.php:3724
4268
  msgid "Account ID found in block and present in ads.txt"
4269
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4270
 
4271
- #: settings.php:3728
4272
  msgid "Account ID found in block but not present in ads.txt"
4273
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4274
 
4275
- #: settings.php:4015
4276
  msgid "Preview block"
4277
  msgstr "Predogled bloka"
4278
 
4279
- #: settings.php:4024
4280
  msgid "Insertion disabled"
4281
  msgstr "Vstavljanje onemogočeno"
4282
 
4283
- #: settings.php:4054
4284
  msgid "Automatic insertion"
4285
  msgstr "Samodejno vstavljanje"
4286
 
4287
  #. translators: %s HTML tags
4288
- #: settings.php:4055 settings.php:4968
4289
  msgid "PHP code processing"
4290
  msgstr "Procesiranje PHP kode"
4291
 
4292
- #: settings.php:4057
4293
  msgid "Device detection"
4294
  msgstr "Zaznavanje naprave"
4295
 
4296
- #: settings.php:4070
4297
  msgid "Widget positions"
4298
  msgstr "Položaji gradnikov"
4299
 
4300
- #: settings.php:4136
4301
  msgid "Ad unit"
4302
  msgstr "Enota"
4303
 
4304
- #: settings.php:4138
4305
  msgid "Slot ID"
4306
  msgstr "ID mesta"
4307
 
4308
- #: settings.php:4164
4309
  msgid "Copy AdSense code"
4310
  msgstr "Kopiraj kodo AdSense"
4311
 
4312
- #: settings.php:4167
4313
  msgid "Preview AdSense ad"
4314
  msgstr "Predogled oglasa AdSense"
4315
 
4316
- #: settings.php:4170
4317
  msgid "Get AdSense code"
4318
  msgstr "Pridobi kodo AdSense"
4319
 
4320
  #. translators: %s: HTML tags
4321
- #: settings.php:4202
4322
  msgid ""
4323
  "Please %s clear authorization %s with the button %s above and once again "
4324
  "authorize access to your AdSense account."
@@ -4326,16 +4351,16 @@ msgstr ""
4326
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4327
  "avtorizirajte dostop do vašega računa AdSense."
4328
 
4329
- #: settings.php:4221
4330
  msgid "AdSense Integration"
4331
  msgstr "Integracija AdSense"
4332
 
4333
- #: settings.php:4223
4334
  msgid "AdSense Integration - Step 2"
4335
  msgstr "Integracija AdSense - Korak 2"
4336
 
4337
  #. translators: %s: HTML tags
4338
- #: settings.php:4229
4339
  msgid ""
4340
  "Authorize %s to access your AdSense account. Click on the %s Get "
4341
  "Authorization Code %s button to open a new window where you can allow "
@@ -4348,7 +4373,7 @@ msgstr ""
4348
  "Avtoriziraj. %s"
4349
 
4350
  #. translators: %s: HTML tags
4351
- #: settings.php:4236
4352
  msgid ""
4353
  "If you get error, can't access ad units or would like to use own Google API "
4354
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -4359,7 +4384,7 @@ msgstr ""
4359
  "je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
4360
 
4361
  #. translators: %s: HTML tags
4362
- #: settings.php:4238
4363
  msgid ""
4364
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4365
  "Authorization Code %s button to open a new window where you can allow "
@@ -4372,7 +4397,7 @@ msgstr ""
4372
  "gumb %s Avtoriziraj. %s"
4373
 
4374
  #. translators: %s: HTML tags
4375
- #: settings.php:4245
4376
  msgid ""
4377
  "If you get error %s invalid client %s click on the button %s Clear and "
4378
  "return to Step 1 %s to re-enter Client ID and Client Secret."
@@ -4380,32 +4405,32 @@ msgstr ""
4380
  "Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
4381
  "se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
4382
 
4383
- #: settings.php:4256
4384
  msgid "Get Authorization Code"
4385
  msgstr "Pridobi Avtoriazcijsko Kodo"
4386
 
4387
- #: settings.php:4259
4388
  msgid "Enter Authorization Code"
4389
  msgstr "Vnesi Avorizacijsko Kodo"
4390
 
4391
- #: settings.php:4269
4392
  msgid "Use own API IDs"
4393
  msgstr "Uporabi lastne API ID-je"
4394
 
4395
- #: settings.php:4271
4396
  msgid "Clear and return to Step 1"
4397
  msgstr "Odstrani in se vrni na Korak 1"
4398
 
4399
- #: settings.php:4275
4400
  msgid "Authorize"
4401
  msgstr "Avtoriziraj"
4402
 
4403
- #: settings.php:4291
4404
  msgid "AdSense Integration - Step 1"
4405
  msgstr "Integracija AdSense - Korak 1"
4406
 
4407
  #. translators: %s: Ad Inserter
4408
- #: settings.php:4295
4409
  msgid ""
4410
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4411
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -4418,12 +4443,12 @@ msgstr ""
4418
  "Klienta in Skrivnost Klienta."
4419
 
4420
  #. translators: %s: HTML tags
4421
- #: settings.php:4304
4422
  msgid "Go to %s Google APIs and Services console %s"
4423
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
4424
 
4425
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4426
- #: settings.php:4305
4427
  msgid ""
4428
  "Create %1$s project - if the project and IDs are already created click on "
4429
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
@@ -4432,7 +4457,7 @@ msgstr ""
4432
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
4433
 
4434
  #. translators: %s: HTML tags
4435
- #: settings.php:4306
4436
  msgid ""
4437
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4438
  "create a new project"
@@ -4441,12 +4466,12 @@ msgstr ""
4441
  "ustvaritev novega projekta"
4442
 
4443
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4444
- #: settings.php:4307
4445
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4446
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4447
 
4448
  #. translators: %s: HTML tags
4449
- #: settings.php:4308
4450
  msgid ""
4451
  "Click on project selection, wait for the project to be created and then and "
4452
  "select %s as the current project"
@@ -4455,39 +4480,39 @@ msgstr ""
4455
  "izberite %s kot trenutni projekt"
4456
 
4457
  #. translators: %s: HTML tags
4458
- #: settings.php:4309
4459
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4460
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4461
 
4462
  #. translators: %s: HTML tags
4463
- #: settings.php:4310
4464
  msgid "Search for adsense and enable %s"
4465
  msgstr "Poiščite adsense in omogočite %s"
4466
 
4467
  #. translators: %s: HTML tags
4468
- #: settings.php:4311
4469
  msgid "Click on %s CREATE CREDENTIALS %s"
4470
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4471
 
4472
  #. translators: %s: HTML tags
4473
- #: settings.php:4312
4474
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4475
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
4476
 
4477
  #. translators: %s: HTML tags
4478
- #: settings.php:4313
4479
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4480
  msgstr ""
4481
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
4482
  "podatki %s"
4483
 
4484
  #. translators: %s: HTML tags
4485
- #: settings.php:4314
4486
  msgid "Click on %s What credentials do I need? %s"
4487
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
4488
 
4489
  #. translators: %s: HTML tags
4490
- #: settings.php:4315
4491
  msgid ""
4492
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4493
  "Ad Inserter client %s"
@@ -4496,7 +4521,7 @@ msgstr ""
4496
  "%s Ad Inserter klient %s"
4497
 
4498
  #. translators: %s: HTML tags
4499
- #: settings.php:4316
4500
  msgid ""
4501
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4502
  "enter %s"
@@ -4505,17 +4530,17 @@ msgstr ""
4505
  "uporabnikom %s vnesite %s"
4506
 
4507
  #. translators: %s: HTML tags
4508
- #: settings.php:4317
4509
  msgid "Click on %s Continue %s"
4510
  msgstr "Kliknite na %s Nadaljuj %s"
4511
 
4512
  #. translators: %s: HTML tags
4513
- #: settings.php:4318
4514
  msgid "Click on %s Done %s"
4515
  msgstr "Kliknite na %s Končaj %s"
4516
 
4517
  #. translators: %s: HTML tags
4518
- #: settings.php:4319
4519
  msgid ""
4520
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4521
  "secret %s"
@@ -4523,62 +4548,62 @@ msgstr ""
4523
  "Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
4524
  "Skrivnost klienta %s"
4525
 
4526
- #: settings.php:4320
4527
  msgid "Copy them to the appropriate fields below"
4528
  msgstr "Skopirajte ju na ustrezni polji spodaj"
4529
 
4530
- #: settings.php:4326
4531
  msgid "Client ID"
4532
  msgstr "ID klienta"
4533
 
4534
- #: settings.php:4329
4535
  msgid "Enter Client ID"
4536
  msgstr "Vnesite ID klienta"
4537
 
4538
- #: settings.php:4334
4539
  msgid "Client secret"
4540
  msgstr "Skrivnost klienta"
4541
 
4542
- #: settings.php:4337
4543
  msgid "Enter Client secret"
4544
  msgstr "Vnesite Skrivnost klienta"
4545
 
4546
- #: settings.php:4347
4547
  msgid "Use default API IDs"
4548
  msgstr "Uporabi privzete API ID-je"
4549
 
4550
- #: settings.php:4500
4551
  msgid "All posts"
4552
  msgstr "Vsi prispevki"
4553
 
4554
- #: settings.php:4501
4555
  msgid "All static pages"
4556
  msgstr "Vse statične strani"
4557
 
4558
- #: settings.php:4635 settings.php:4648 settings.php:4661 settings.php:4676
4559
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4560
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
4561
 
4562
- #: settings.php:4640 settings.php:4653 settings.php:4666 settings.php:4681
4563
- #: settings.php:4861 settings.php:4865 settings.php:4883 settings.php:4887
4564
- #: settings.php:4895 settings.php:4898 settings.php:4904 settings.php:4916
4565
  msgid "Looking for AdSense alternative?"
4566
  msgstr "Iščete alternativo za AdSense?"
4567
 
4568
- #: settings.php:4692
4569
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4570
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
4571
 
4572
- #: settings.php:4697 settings.php:4863 settings.php:4867 settings.php:4875
4573
- #: settings.php:4901
4574
  msgid "Use Infolinks ads with Adsense to earn more"
4575
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
4576
 
4577
- #: settings.php:4716 settings.php:4754
4578
  msgid "Support plugin development"
4579
  msgstr "Podprite razvoj vtičnika"
4580
 
4581
- #: settings.php:4717 settings.php:4755
4582
  msgid ""
4583
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4584
  "reviewing the plugin on WordPres"
@@ -4586,12 +4611,12 @@ msgstr ""
4586
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
4587
  "razširiti novico z oceno vtičnika na WordPress-u"
4588
 
4589
- #: settings.php:4717
4590
  msgctxt "Review ad Inserter"
4591
  msgid "Review"
4592
  msgstr "Oceni"
4593
 
4594
- #: settings.php:4718
4595
  msgid ""
4596
  "Support free Ad Inserter development. If you are making money with Ad "
4597
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
@@ -4600,16 +4625,16 @@ msgstr ""
4600
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
4601
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
4602
 
4603
- #: settings.php:4718
4604
  msgid "Donate"
4605
  msgstr "Donirajte"
4606
 
4607
- #: settings.php:4725 settings.php:4770
4608
  msgid "Average rating of the plugin - Thank you!"
4609
  msgstr "Povprečna ocena vtičnika - Hvala!"
4610
 
4611
  #. translators: %s: Ad Inserter, HTML tags
4612
- #: settings.php:4736
4613
  msgid ""
4614
  "You've been using %s for a while now, and I hope you're happy with it. "
4615
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4623,24 +4648,24 @@ msgstr ""
4623
  "vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
4624
  "monetizacijo vašega spletnega mesta. %s Hvala!"
4625
 
4626
- #: settings.php:4755
4627
  msgid "Review"
4628
  msgstr "Ocena"
4629
 
4630
- #: settings.php:4759
4631
  msgid "Ad Inserter on Twitter"
4632
  msgstr "Ad Inserter na Twitter-ju"
4633
 
4634
- #: settings.php:4760
4635
  msgid "Ad Inserter on Facebook"
4636
  msgstr "Ad Inserter na Facebook-u"
4637
 
4638
- #: settings.php:4763
4639
  msgid "Follow Ad Inserter"
4640
  msgstr "Sledi Ad Inserter-ju"
4641
 
4642
  #. translators: %s: HTML tags
4643
- #: settings.php:4790
4644
  msgid ""
4645
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4646
  "and %s Common Settings %s pages"
@@ -4649,7 +4674,7 @@ msgstr ""
4649
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
4650
 
4651
  #. translators: %s: HTML tags
4652
- #: settings.php:4802
4653
  msgid ""
4654
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4655
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
@@ -4660,7 +4685,7 @@ msgstr ""
4660
  "%s Infolinks %s oglasno kodo %s"
4661
 
4662
  #. translators: %s: HTML tags
4663
- #: settings.php:4823
4664
  msgid ""
4665
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4666
  "purchase you refer to us"
@@ -4669,7 +4694,7 @@ msgstr ""
4669
  "nakup, ki nam ga posredujete"
4670
 
4671
  #. translators: %s: HTML tags
4672
- #: settings.php:4830
4673
  msgid ""
4674
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4675
  "diagnose and fix the problem."
@@ -4678,7 +4703,7 @@ msgstr ""
4678
  "navodili za diagnozo in rešitvami za težave."
4679
 
4680
  #. translators: %s: HTML tags
4681
- #: settings.php:4834
4682
  msgid ""
4683
  "If you need any kind of help or support, please do not hesitate to open a "
4684
  "thread on the %s support forum. %s"
@@ -4686,44 +4711,44 @@ msgstr ""
4686
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
4687
  "nit na %s podpornem forumu. %s"
4688
 
4689
- #: settings.php:4879 settings.php:4920
4690
  msgid "A/B testing - Track ad impressions and clicks"
4691
  msgstr "A/B testiranje - Sledi prikazom in klikom"
4692
 
4693
- #: settings.php:4912 settings.php:4924
4694
  msgid "Code preview with visual CSS editor"
4695
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
4696
 
4697
- #: settings.php:4932
4698
  msgid "Looking for Pro Ad Management plugin?"
4699
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
4700
 
4701
- #: settings.php:4933
4702
  msgid "To Optimally Monetize your WordPress website?"
4703
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
4704
 
4705
  #. translators: %s HTML tags
4706
- #: settings.php:4936
4707
  msgid "%s AdSense Integration %s"
4708
  msgstr "%s Integracija AdSense %s"
4709
 
4710
  #. translators: %s HTML tags
4711
- #: settings.php:4937
4712
  msgid "Syntax highlighting %s editor %s"
4713
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
4714
 
4715
  #. translators: %s HTML tags
4716
- #: settings.php:4938
4717
  msgid "%s Code preview %s with visual CSS editor"
4718
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
4719
 
4720
  #. translators: %s HTML tags
4721
- #: settings.php:4939
4722
  msgid "Simple user interface - all settings on a single page"
4723
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
4724
 
4725
  #. translators: %s HTML tags
4726
- #: settings.php:4940
4727
  msgid ""
4728
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4729
  "image / excerpt"
@@ -4732,27 +4757,27 @@ msgstr ""
4732
  "%s / sliko / izvlečkom"
4733
 
4734
  #. translators: %s HTML tags
4735
- #: settings.php:4941
4736
  msgid "%s Automatic insertion %s between posts on blog pages"
4737
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
4738
 
4739
  #. translators: %s HTML tags
4740
- #: settings.php:4942
4741
  msgid "%s Automatic insertion %s before, between and after comments"
4742
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
4743
 
4744
  #. translators: %s HTML tags
4745
- #: settings.php:4943
4746
  msgid "%s Automatic insertion %s after %s or before %s tag"
4747
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
4748
 
4749
  #. translators: %s HTML tags
4750
- #: settings.php:4944
4751
  msgid "Automatic insertion at %s custom hook positions %s"
4752
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
4753
 
4754
  #. translators: %s HTML tags
4755
- #: settings.php:4945
4756
  msgid ""
4757
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4758
  "selectors)"
@@ -4761,17 +4786,17 @@ msgstr ""
4761
  "selektorjev)"
4762
 
4763
  #. translators: %s HTML tags
4764
- #: settings.php:4946
4765
  msgid "%s Insertion exceptions %s for individual posts and pages"
4766
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
4767
 
4768
  #. translators: %s HTML tags
4769
- #: settings.php:4947
4770
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4771
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
4772
 
4773
  #. translators: %s HTML tags
4774
- #: settings.php:4948
4775
  msgid ""
4776
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4777
  "scrolls)"
@@ -4780,19 +4805,19 @@ msgstr ""
4780
  "se stran pomika)"
4781
 
4782
  #. translators: %s HTML tags
4783
- #: settings.php:4949
4784
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4785
  msgstr ""
4786
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
4787
 
4788
  #. translators: %s HTML tags
4789
- #: settings.php:4950
4790
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4791
  msgstr ""
4792
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
4793
 
4794
  #. translators: %s HTML tags
4795
- #: settings.php:4951
4796
  msgid ""
4797
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4798
  "visible)"
@@ -4801,7 +4826,7 @@ msgstr ""
4801
  "postane viden)"
4802
 
4803
  #. translators: %s HTML tags
4804
- #: settings.php:4952
4805
  msgid ""
4806
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4807
  msgstr ""
@@ -4809,12 +4834,12 @@ msgstr ""
4809
  "strani)"
4810
 
4811
  #. translators: %s HTML tags
4812
- #: settings.php:4953
4813
  msgid "Block %s alignment and style %s customizations"
4814
  msgstr "%s Poravnave in slogi %s bloka po meri"
4815
 
4816
  #. translators: %s HTML tags
4817
- #: settings.php:4954
4818
  msgid ""
4819
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4820
  "TOS)"
@@ -4822,7 +4847,7 @@ msgstr ""
4822
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
4823
 
4824
  #. translators: %s HTML tags
4825
- #: settings.php:4955
4826
  msgid ""
4827
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4828
  "feeds"
@@ -4831,17 +4856,17 @@ msgstr ""
4831
  "virih"
4832
 
4833
  #. translators: %s HTML tags
4834
- #: settings.php:4956
4835
  msgid "%s Ad rotation %s (works also with caching)"
4836
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
4837
 
4838
  #. translators: %s HTML tags
4839
- #: settings.php:4957
4840
  msgid "Create, edit and check %s ads.txt %s file"
4841
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
4842
 
4843
  #. translators: %s HTML tags
4844
- #: settings.php:4958
4845
  msgid ""
4846
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4847
  "AdSense)"
@@ -4850,81 +4875,81 @@ msgstr ""
4850
  "AdSense)"
4851
 
4852
  #. translators: %s HTML tags
4853
- #: settings.php:4959
4854
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4855
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
4856
 
4857
  #. translators: %s HTML tags
4858
- #: settings.php:4960
4859
  msgid "%s Public web reports %s for clients, export to PDF"
4860
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
4861
 
4862
  #. translators: %s HTML tags
4863
- #: settings.php:4961
4864
  msgid "Support for %s A/B testing %s"
4865
  msgstr "Podpora za %s A/B testiranje %s"
4866
 
4867
  #. translators: %s HTML tags
4868
- #: settings.php:4962
4869
  msgid "Frequency capping - %s limit impressions or clicks %s"
4870
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
4871
 
4872
  #. translators: %s HTML tags
4873
- #: settings.php:4963
4874
  msgid "Click fraud %s protection %s"
4875
  msgstr "%s Zaščita %s pred goljufijo s kliki"
4876
 
4877
  #. translators: %s HTML tags
4878
- #: settings.php:4964
4879
  msgid "Support for %s lazy loading %s"
4880
  msgstr "Podpora za %s leno nalaganje %s"
4881
 
4882
  #. translators: %s HTML tags
4883
- #: settings.php:4965
4884
  msgid "Support for ads on %s AMP pages %s"
4885
  msgstr "Podpora za oglase na %s AMP straneh %s"
4886
 
4887
  #. translators: %s HTML tags
4888
- #: settings.php:4966
4889
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4890
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
4891
 
4892
  #. translators: %s HTML tags
4893
- #: settings.php:4967
4894
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4895
  msgstr ""
4896
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
4897
 
4898
  #. translators: %s HTML tags
4899
- #: settings.php:4969
4900
  msgid "%s Banner %s code generator"
4901
  msgstr "Generator kode za %s pasice %s"
4902
 
4903
  #. translators: %s HTML tags
4904
- #: settings.php:4970
4905
  msgid "Support for %s header and footer %s code"
4906
  msgstr "Podpora za kodo v %s glavi in nogi %s"
4907
 
4908
  #. translators: %s HTML tags
4909
- #: settings.php:4971
4910
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4911
  msgstr ""
4912
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
4913
 
4914
  #. translators: %s HTML tags
4915
- #: settings.php:4972
4916
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4917
  msgstr ""
4918
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
4919
  "strežnika"
4920
 
4921
  #. translators: %s HTML tags
4922
- #: settings.php:4973
4923
  msgid "Client-side %s mobile device detection %s (works with caching)"
4924
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
4925
 
4926
  #. translators: %s HTML tags
4927
- #: settings.php:4974
4928
  msgid ""
4929
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4930
  "protection"
@@ -4933,12 +4958,12 @@ msgstr ""
4933
  "vsebine"
4934
 
4935
  #. translators: %s HTML tags
4936
- #: settings.php:4975
4937
  msgid "%s Ad blocking statistics %s"
4938
  msgstr "%s Statistika blokiranja oglasov %s"
4939
 
4940
  #. translators: %s HTML tags
4941
- #: settings.php:4976
4942
  msgid ""
4943
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4944
  "referers"
@@ -4946,75 +4971,75 @@ msgstr ""
4946
  "%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
4947
 
4948
  #. translators: %s HTML tags
4949
- #: settings.php:4977
4950
  msgid ""
4951
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4952
  msgstr ""
4953
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
4954
 
4955
  #. translators: %s HTML tags
4956
- #: settings.php:4978
4957
  msgid "%s Multisite options %s to limit settings on the sites"
4958
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
4959
 
4960
  #. translators: %s HTML tags
4961
- #: settings.php:4979
4962
  msgid "%s Import/Export %s block or plugin settings"
4963
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
4964
 
4965
  #. translators: %s HTML tags
4966
- #: settings.php:4980
4967
  msgid "%s Insertion scheduling %s with fallback option"
4968
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
4969
 
4970
  #. translators: %s HTML tags
4971
- #: settings.php:4981
4972
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4973
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
4974
 
4975
  #. translators: %s HTML tags
4976
- #: settings.php:4982
4977
  msgid "Simple troubleshooting with many %s debugging functions %s"
4978
  msgstr ""
4979
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
4980
 
4981
  #. translators: %s HTML tags
4982
- #: settings.php:4983
4983
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4984
  msgstr ""
4985
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
4986
 
4987
  #. translators: %s HTML tags
4988
- #: settings.php:4984
4989
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4990
  msgstr ""
4991
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
4992
 
4993
  #. translators: %s HTML tags
4994
- #: settings.php:4985
4995
  msgid ""
4996
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4997
  msgstr ""
4998
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
4999
 
5000
  #. translators: %s HTML tags
5001
- #: settings.php:4986
5002
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5003
  msgstr ""
5004
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5005
 
5006
  #. translators: %s HTML tags
5007
- #: settings.php:4987
5008
  msgid "No ads on the settings page"
5009
  msgstr "Stran z nastavitvami brez oglasov"
5010
 
5011
  #. translators: %s HTML tags
5012
- #: settings.php:4988
5013
  msgid "Premium support"
5014
  msgstr "Vrhunska podpora"
5015
 
5016
  #. translators: %s HTML tags
5017
- #: settings.php:4991
5018
  msgid ""
5019
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5020
  "website with many advertising features to automatically insert adverts on "
@@ -5041,82 +5066,82 @@ msgstr ""
5041
  "bodo ohranile)."
5042
 
5043
  #. translators: %s HTML tags
5044
- #: settings.php:5004
5045
  msgid "Looking for %s Pro Ad Management plugin? %s"
5046
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5047
 
5048
  #. translators: %s HTML tags
5049
- #: settings.php:5009
5050
  msgid "Ads between posts"
5051
  msgstr "Oglasi med prispevki"
5052
 
5053
  #. translators: %s HTML tags
5054
- #: settings.php:5010
5055
  msgid "Ads between comments"
5056
  msgstr "Oglasi med komentarji"
5057
 
5058
  #. translators: %s HTML tags
5059
- #: settings.php:5011
5060
  msgid "Support via email"
5061
  msgstr "Podpora prek elektronske pošte"
5062
 
5063
  #. translators: %s HTML tags
5064
- #: settings.php:5017
5065
  msgid "%s Sticky positions %s"
5066
  msgstr "%s Lepljivi položaji %s"
5067
 
5068
  #. translators: %s HTML tags
5069
- #: settings.php:5018
5070
  msgid "%s Limit insertions %s"
5071
  msgstr "%s Omeji vstavljanja %s"
5072
 
5073
  #. translators: %s HTML tags
5074
- #: settings.php:5019
5075
  msgid "%s Clearance %s options"
5076
  msgstr "Možnosti %s izogibanja %s"
5077
 
5078
  #. translators: %s HTML tags
5079
- #: settings.php:5025
5080
  msgid "Ad rotation"
5081
  msgstr "Vrtenje oglasov"
5082
 
5083
  #. translators: %s HTML tags
5084
- #: settings.php:5026
5085
  msgid "%s A/B testing %s"
5086
  msgstr "%s A/B testiranje %s"
5087
 
5088
  #. translators: %s HTML tags
5089
- #: settings.php:5027
5090
  msgid "%s Ad tracking %s"
5091
  msgstr "%s Sledenje oglasom %s"
5092
 
5093
  #. translators: %s HTML tags
5094
- #: settings.php:5033
5095
  msgid "Support for %s AMP pages %s"
5096
  msgstr "Podpora za %s AMP strani %s"
5097
 
5098
  #. translators: %s HTML tags
5099
- #: settings.php:5034
5100
  msgid "%s Ad blocking detection %s"
5101
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5102
 
5103
  #. translators: %s HTML tags
5104
- #: settings.php:5035
5105
  msgid "%s Mobile device detection %s"
5106
  msgstr "%s Zaznavanje mobilne naprave %s"
5107
 
5108
  #. translators: %s HTML tags
5109
- #: settings.php:5042
5110
  msgid "64 code blocks"
5111
  msgstr "64 kodnih blokov"
5112
 
5113
  #. translators: %s HTML tags
5114
- #: settings.php:5043
5115
  msgid "%s GEO targeting %s"
5116
  msgstr "%s GEO ciljanje %s"
5117
 
5118
  #. translators: %s HTML tags
5119
- #: settings.php:5044
5120
  msgid "%s Scheduling %s"
5121
  msgstr "%s Urnik %s"
5122
 
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.5.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2019-09-29 18:43:46+00:00\n"
8
+ "PO-Revision-Date: 2019-09-29 20:44+0200\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 2.2.4\n"
16
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
17
  "%100<=4 ? 2 : 3);\n"
18
 
19
+ #: ad-inserter.php:411
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
+ #: ad-inserter.php:427
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
+ #: ad-inserter.php:434
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
+ #: ad-inserter.php:505
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
+ #: ad-inserter.php:512
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
+ #: ad-inserter.php:521
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
+ #: ad-inserter.php:528
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
+ #: ad-inserter.php:538
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
  #. translators: Debugging position name Before HTML element
60
+ #: ad-inserter.php:1142
61
  msgid "Before"
62
  msgstr "Pred"
63
 
64
  #. translators: Debugging position name After HTML element
65
+ #: ad-inserter.php:1147
66
  msgid "After"
67
  msgstr "Za"
68
 
69
  #. translators: Debugging position name Prepend content of HTML element (before
70
  #. the content of the HTML element)
71
+ #: ad-inserter.php:1152 strings.php:103
72
  msgid "Prepend content"
73
  msgstr "Dodaj pred vsebino"
74
 
75
  #. translators: Debugging position name Append content of HTML element (after
76
  #. the content of the HTML element)
77
+ #: ad-inserter.php:1157 strings.php:104
78
  msgid "Append content"
79
  msgstr "Dodaj za vsebino"
80
 
81
  #. translators: Debugging position name Replace content of HTML element
82
+ #: ad-inserter.php:1162 strings.php:105
83
  msgid "Replace content"
84
  msgstr "Nadomesti vsebino"
85
 
86
  #. translators: Debugging position name Replace HTML element
87
+ #: ad-inserter.php:1167 strings.php:155
88
  msgid "Replace"
89
  msgstr "Nadomesti"
90
 
91
  #. translators: Debugging message when output buffering is enabled
92
+ #: ad-inserter.php:1214
93
  msgid "OUTPUT BUFFERING"
94
  msgstr "PREDPOMNJENJE IZHODA"
95
 
96
  #. translators: Debugging position
97
+ #: ad-inserter.php:1218
98
  msgid "Above Header"
99
  msgstr "Nad Glavo"
100
 
101
+ #: ad-inserter.php:1427
102
  msgctxt "Menu item"
103
  msgid "Log In"
104
  msgstr "Prijava"
105
 
106
  #. translators: %s: Ad Inserter
107
+ #: ad-inserter.php:1755 ad-inserter.php:2686
108
  msgid "%s Settings"
109
  msgstr "%s Nastavitve"
110
 
111
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
112
+ #: ad-inserter.php:2202
113
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
114
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
115
 
116
+ #: ad-inserter.php:2202
117
  msgid "NO ACTION"
118
  msgstr "NI AKCIJE"
119
 
120
+ #: ad-inserter.php:2203
121
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
122
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
123
 
124
+ #: ad-inserter.php:2204
125
  msgid "AD BLOCKING DETECTED - ACTION"
126
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
127
 
128
+ #: ad-inserter.php:2205
129
  msgid "AD BLOCKING NOT DETECTED"
130
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
131
 
132
+ #: ad-inserter.php:2206
133
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
134
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
135
 
136
+ #: ad-inserter.php:2207
137
  msgid "AD BLOCKING DETECTED - NO ACTION"
138
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
139
 
140
  #. Translators: 1: number of blocks, 2: Ad Inserter
141
+ #: ad-inserter.php:2409
142
  msgid "Hey, you are now using %1$s %2$s block."
143
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
144
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
146
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
147
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
148
 
149
+ #: ad-inserter.php:2410 includes/functions.old.php:1652
150
+ #: includes/functions.php:1701
151
  msgid "No, thank you."
152
  msgstr "Ne, hvala."
153
 
154
  #. Translators: %s: Ad Inserter
155
+ #: ad-inserter.php:2413
156
  msgid ""
157
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
158
  msgstr "Hej, %s uporabljate že kar nekaj časa. Upam, da ste zadovoljni z njim."
159
 
160
+ #: ad-inserter.php:2414 includes/functions.old.php:1655
161
+ #: includes/functions.php:1704
162
  msgid "Not now, maybe later."
163
  msgstr "Ne zdaj, mogoče kasneje."
164
 
165
+ #: ad-inserter.php:2424
166
  msgid "I would really appreciate if you could rate the plugin on WordPres."
167
  msgstr "Res bi bil vesel, če bi lahko ocenili vtičnik na WordPress-u."
168
 
169
+ #: ad-inserter.php:2426
170
  msgid ""
171
  "Positive reviews are a great incentive to fix bugs and to add new features "
172
  "for better monetization of your website. Thank you, Igor"
175
  "funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
176
 
177
  #. translators: %s: Ad Inserter
178
+ #: ad-inserter.php:2432
179
  msgid "Rate %s"
180
  msgstr "Ocenite %s"
181
 
182
+ #: ad-inserter.php:2437
183
  msgid "I already did."
184
  msgstr "Sem že."
185
 
186
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
187
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
188
+ #: ad-inserter.php:2450 ad-inserter.php:2477
189
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
190
  msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
191
 
192
+ #: ad-inserter.php:2459
193
  msgctxt "Menu item"
194
  msgid "Settings"
195
  msgstr "Nastavitve"
196
 
197
  #. translators: %s: Ad Inserter
198
+ #: ad-inserter.php:2577
199
  msgctxt "Meta box name"
200
  msgid "%s Individual Exceptions"
201
  msgstr "Posamezne Izjeme za %s"
202
 
203
+ #: ad-inserter.php:2606 ad-inserter.php:8753 class.php:2064
204
  #: includes/preview.php:1976 includes/preview.php:2020
205
+ #: includes/preview.php:2057 settings.php:4082 strings.php:3
206
  msgid "Block"
207
  msgstr "Blok"
208
 
209
+ #: ad-inserter.php:2607 settings.php:4083 settings.php:4168
210
  msgid "Name"
211
  msgstr "Ime"
212
 
213
+ #: ad-inserter.php:2610 settings.php:1127
214
  msgid "Default insertion"
215
  msgstr "Privzeto vstavljanje"
216
 
217
  #. translators: For this post or page
218
+ #: ad-inserter.php:2613
219
  msgctxt "Page"
220
  msgid "For this"
221
  msgstr "Za to"
222
 
223
+ #: ad-inserter.php:2614
224
  msgctxt "Post"
225
  msgid "For this"
226
  msgstr "Za ta"
227
 
228
+ #: ad-inserter.php:2626
229
  msgctxt "Enabled/disabled on all"
230
  msgid "pages"
231
  msgstr "straneh"
232
 
233
+ #: ad-inserter.php:2629
234
  msgctxt "Enabled/disabled on all"
235
  msgid "posts"
236
  msgstr "prispevkih"
237
 
238
+ #: ad-inserter.php:2647 ad-inserter.php:2659 strings.php:161
239
  msgid "Enabled"
240
  msgstr "Omogočeno"
241
 
242
  #. translators: Menu items
243
+ #: ad-inserter.php:2647 ad-inserter.php:2659 includes/functions.old.php:2326
244
+ #: includes/functions.php:2377 strings.php:16
245
  msgid "Disabled"
246
  msgstr "Onemogočeno"
247
 
248
+ #: ad-inserter.php:2649
249
  msgid "No individual exceptions"
250
  msgstr "Ni posameznih izjem"
251
 
252
  #. translators: Not enabled for pages or posts
253
+ #: ad-inserter.php:2651
254
  msgid "Not enabled for"
255
  msgstr "Ni omogočeno za"
256
 
257
  #. translators: No individual exceptions enabled for pages or posts
258
+ #: ad-inserter.php:2679
259
  msgid "No block has individual exceptions enabled"
260
  msgstr "Noben blok nima omogočenih posameznih izjem"
261
 
262
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
263
+ #: ad-inserter.php:2684
264
  msgid ""
265
  "Default insertion can be configured for each block on %1$s page - button "
266
  "next to %2$s checkbox."
268
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
269
  "poleg kljukice za vklop %2$s."
270
 
271
+ #: ad-inserter.php:2687 settings.php:1105
272
  msgid "Tag / Archive pages"
273
  msgstr "Strani oznak / arhiva"
274
 
275
+ #: ad-inserter.php:2689
276
  msgid ""
277
  "When individual exceptions for a block are enabled, a checkbox will be "
278
  "listed here to change default insertion for this post or page."
280
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
281
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
282
 
283
+ #: ad-inserter.php:2690
284
  msgid ""
285
  "This way you can individually enable or disable blocks on specific posts or "
286
  "pages."
288
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
289
  "prispevku ali strani."
290
 
291
+ #: ad-inserter.php:2692
292
  msgid "For more information check page %s"
293
  msgstr "Za več informacij poglejte stran %s"
294
 
295
  #. translators: Ad Inserter Exceptions documentation page
296
+ #: ad-inserter.php:2694
297
  msgid "Individual Exceptions"
298
  msgstr "Posamezne Izjeme"
299
 
300
+ #: ad-inserter.php:2741
301
  msgid "STATIC PAGE"
302
  msgstr "STATIČNA STRAN"
303
 
304
+ #: ad-inserter.php:2744
305
  msgid "POST"
306
  msgstr "PRISPEVEK"
307
 
308
+ #: ad-inserter.php:2747
309
  msgid "HOMEPAGE"
310
  msgstr "DOMAČA STRAN"
311
 
312
+ #: ad-inserter.php:2750
313
  msgid "CATEGORY PAGE"
314
  msgstr "STRAN KATEGORIJE"
315
 
316
+ #: ad-inserter.php:2753
317
  msgid "SEARCH PAGE"
318
  msgstr "STRAN ISKANJE"
319
 
320
+ #: ad-inserter.php:2756
321
  msgid "ARCHIVE PAGE"
322
  msgstr "STRAN ARHIVA"
323
 
324
+ #: ad-inserter.php:2759
325
  msgid "ERROR 404 PAGE"
326
  msgstr "STRAN NAPAKA 404"
327
 
328
+ #: ad-inserter.php:2762
329
  msgid "AJAX CALL"
330
  msgstr "AJAX KLIC"
331
 
332
+ #: ad-inserter.php:2765
333
  msgid "UNKNOWN PAGE TYPE"
334
  msgstr "NEZNAN TIP STRANI"
335
 
336
+ #: ad-inserter.php:2782
337
  msgid "Click to delete ad blocking detection cokies"
338
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
339
 
340
+ #: ad-inserter.php:2783
341
  msgid "AD BLOCKING STATUS UNKNOWN"
342
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
343
 
344
  #. translators: %s: AdSense Auto Ads
345
+ #: ad-inserter.php:2812
346
  msgid ""
347
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
348
  "positions"
350
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
351
  "položaje"
352
 
353
+ #: ad-inserter.php:2951
354
  msgid "Code for insertion"
355
  msgstr "Koda za vstavljanje"
356
 
357
+ #: ad-inserter.php:2951
358
  msgid "character"
359
  msgid_plural "characters"
360
  msgstr[0] "znak"
362
  msgstr[2] "znaki"
363
  msgstr[3] "znakov"
364
 
365
+ #: ad-inserter.php:2994
366
  msgid "Header code"
367
  msgstr "Koda v glavi"
368
 
369
+ #: ad-inserter.php:2994
370
  msgctxt "Header code"
371
  msgid "DISABLED"
372
  msgstr "ONEMOGOČENA"
373
 
374
+ #: ad-inserter.php:2994 ad-inserter.php:3217
375
  msgid "character inserted"
376
  msgid_plural "characters inserted"
377
  msgstr[0] "znak vstavljen"
379
  msgstr[2] "znaki vstavljeni"
380
  msgstr[3] "znakov vstavljenih"
381
 
382
+ #: ad-inserter.php:3028
383
  msgid "Automatically placed by AdSense Auto ads code"
384
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
385
 
386
+ #: ad-inserter.php:3217
387
  msgid "Footer code"
388
  msgstr "Koda v nogi"
389
 
390
+ #: ad-inserter.php:3217
391
  msgctxt "Footer code"
392
  msgid "DISABLED"
393
  msgstr "ONEMOGOČENA"
394
 
395
+ #: ad-inserter.php:3223
396
  msgid "JAVASCRIPT NOT WORKING"
397
  msgstr "JAVASCRIPT NE DELA"
398
 
399
+ #: ad-inserter.php:3223
400
  msgid "NO JAVASCRIPT ERRORS"
401
  msgstr "BREZ JAVASCRIPT NAPAK"
402
 
403
+ #: ad-inserter.php:3223
404
  msgid "JAVASCRIPT ERRORS"
405
  msgstr "JAVASCRIPT NAPAKE"
406
 
407
  #. translators: block name (block with default settings)
408
+ #: ad-inserter.php:5507
409
  msgctxt "Block name"
410
  msgid "Default"
411
  msgstr "Privzeti"
412
 
413
  #. translators: %s: Ad Inserter
414
+ #: ad-inserter.php:6123
415
  msgid "Error importing %s settings."
416
  msgstr "Napaka pri uvozu %s nastavitev."
417
 
418
+ #: ad-inserter.php:6124
419
  msgid "Error importing settings for block"
420
  msgid_plural "Error importing settings for blocks:"
421
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
423
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
424
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
425
 
426
+ #: ad-inserter.php:6174
427
  msgid "Settings saved."
428
  msgstr "Nastavitve shranjene."
429
 
430
  #. translators: %s: Ad Inserter
431
+ #: ad-inserter.php:6176
432
  msgid "Invalid data received - %s settings not saved."
433
  msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
434
 
435
+ #: ad-inserter.php:6264
436
  msgid "Settings cleared."
437
  msgstr "Nastavitve ponastavljene."
438
 
439
  #. Translators: Post/Static page must have between X and Y words
440
+ #: ad-inserter.php:6609 ad-inserter.php:6611 ad-inserter.php:6634
441
+ #: settings.php:2084
442
  msgid "word"
443
  msgid_plural "words"
444
  msgstr[0] "besedo"
446
  msgstr[2] "besede"
447
  msgstr[3] "besed"
448
 
449
+ #: ad-inserter.php:6648 ad-inserter.php:6760
450
  msgid "HTML TAGS REMOVED"
451
  msgstr "HTML ZNAČKE ODSTRANJENE"
452
 
453
+ #: ad-inserter.php:6836
454
  msgid "BEFORE COMMENTS"
455
  msgstr "PRED KOMENTARJI"
456
 
457
+ #: ad-inserter.php:6944
458
  msgid "AFTER COMMENTS"
459
  msgstr "PO KOMETARJIH"
460
 
461
+ #: ad-inserter.php:7007
462
  msgid "BETWEEN COMMENTS"
463
  msgstr "MED KOMENTARJI"
464
 
465
+ #: ad-inserter.php:8384
466
  msgid "requires WordPress 4.6 or newer"
467
  msgstr "potrebuje WordPress 4.6 ali novejši"
468
 
469
+ #: ad-inserter.php:8384
470
  msgid "Please update!"
471
  msgstr "Prosimo, posodobite!"
472
 
473
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
474
  #. name with HTML tags will be added)
475
+ #: ad-inserter.php:8626
476
  msgid "Thank you for installing"
477
  msgstr "Hvala za namestitev vtičnika"
478
 
479
  #. translators: Opt-in message: %s: HTML tags
480
+ #: ad-inserter.php:8628
481
  msgid ""
482
  "We would like to %s track its usage %s on your site. This is completely "
483
  "optional and can be disabled at any time."
485
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
486
  "izbirno in se lahko izključi kadarkoli."
487
 
488
+ #: ad-inserter.php:8630
489
  msgid ""
490
  "We don't record any sensitive data, only information regarding the WordPress "
491
  "environment and plugin usage, which will help us to make improvements to the "
495
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
496
 
497
  #. translators: Deactivation message: %s: HTML tags
498
+ #: ad-inserter.php:8667
499
  msgid ""
500
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
501
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
506
  "nam %s in poskušali vam bomo pomagati."
507
 
508
  #. translators: %s: Ad Inserter
509
+ #: ad-inserter.php:8710
510
  msgid "%s block."
511
  msgstr "%s blok."
512
 
513
  #. translators: widget title
514
+ #: ad-inserter.php:8726 ad-inserter.php:8762
515
  msgid "Processing log"
516
  msgstr "Dnevnik procesiranja"
517
 
518
  #. translators: widget title
519
+ #: ad-inserter.php:8728 ad-inserter.php:8763
520
  msgid "Dummy widget"
521
  msgstr "Prazen gradnik"
522
 
523
  #. translators: widget title
524
+ #: ad-inserter.php:8730 ad-inserter.php:8761
525
  msgid "Debugging tools"
526
  msgstr "Orodja za razhroščevanje"
527
 
528
  #. translators: block status (widget title)
529
+ #: ad-inserter.php:8737
530
  msgctxt "block"
531
  msgid "PAUSED"
532
  msgstr "USTAVLJEN"
533
 
534
+ #: ad-inserter.php:8738
535
  msgid "WIDGET DISABLED"
536
  msgstr "GRADNIK ONEMOGOČEN"
537
 
538
+ #: ad-inserter.php:8739
539
  msgid "Unknown block"
540
  msgstr "Neznan blok"
541
 
542
+ #: ad-inserter.php:8748 includes/functions.old.php:3186
543
+ #: includes/functions.php:3237 settings.php:1157
544
  msgid "Title"
545
  msgstr "Naslov"
546
 
547
+ #: ad-inserter.php:8770
548
  msgctxt "Widget"
549
  msgid "Sticky"
550
  msgstr "Lepljiv"
551
 
552
+ #: ad-inserter.php:8819
553
  msgid ""
554
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
555
  "Inserter you need to first deactivate Ad Inserter Pro."
558
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
559
  "Inserter Pro."
560
 
561
+ #: ad-inserter.php:8820
562
  msgid ""
563
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
564
  "will clear all settings that are available only in the Pro version "
569
  "različici (dodatne nastavitve blokov in vtičnika)!"
570
 
571
  #. translators: %s: Ad Inserter
572
+ #: class.php:505 class.php:514 class.php:517
573
  msgid "PHP error in %s block"
574
  msgstr "PHP napaka v bloku %s"
575
 
576
+ #: class.php:2030
577
  msgid "Counters"
578
  msgstr "Števci"
579
 
580
+ #: class.php:2034
581
  msgid "Content"
582
  msgstr "Vsebina"
583
 
584
+ #: class.php:2039
585
  msgid "Excerpt"
586
  msgstr "Izvleček"
587
 
588
+ #: class.php:2044 strings.php:17
589
  msgid "Before post"
590
  msgstr "Pred prispevkom"
591
 
592
+ #: class.php:2049 strings.php:18
593
  msgid "After post"
594
  msgstr "Za prispevkom"
595
 
596
+ #: class.php:2054 settings.php:1827 settings.php:4100
597
  msgid "Widget"
598
  msgstr "Gradnik"
599
 
600
+ #: class.php:2059 settings.php:4098
601
  msgid "PHP function call"
602
  msgstr "Klic PHP funkcije"
603
 
604
+ #: class.php:2094
605
  msgid "AJAX REQUEST"
606
  msgstr "AJAX ZAHTEVEK"
607
 
608
+ #: class.php:2097
609
  msgid "Ajax request for block in iframe"
610
  msgstr "Ajax zahtevek za blok v iframe-u"
611
 
612
+ #: class.php:2127
613
  msgid "Ajax request url, click to open it in a new tab"
614
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
615
 
616
+ #: class.php:2130
617
  msgid "IN THE LOOP"
618
  msgstr "V ZANKI"
619
 
620
+ #: class.php:2130
621
  msgid "YES"
622
  msgstr "DA"
623
 
624
+ #: class.php:2130
625
  msgid "NO"
626
  msgstr "NE"
627
 
628
+ #: class.php:2166
629
  msgid "BLOCK"
630
  msgstr "BLOK"
631
 
632
+ #: class.php:2166
633
  msgctxt "block or widget"
634
  msgid "INSERTED BUT NOT VISIBLE"
635
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
636
 
637
+ #: class.php:2615 class.php:2678
638
  msgid "ACTIVE GROUPS"
639
  msgstr "AKTIVNE SKUPINE"
640
 
641
  #. translators: %s: list parameters and type
642
+ #: class.php:2864
643
  msgid "parameters='%s' type='%s'"
644
  msgstr "parametri='%s' tip='%s'"
645
 
646
  #. translators: %s: list parameters and type
647
+ #: class.php:2866
648
  msgid "referers='%s' type='%s'"
649
  msgstr "napotitelji='%s' tip='%s'"
650
 
651
  #. translators: %s: list parameters and type
652
+ #: class.php:2868
653
+ msgid "clients='%s' type='%s'"
654
+ msgstr "odjemalci='%s' tip='%s'"
655
+
656
+ #. translators: %s: list parameters and type
657
+ #: class.php:2939
658
  msgid "countries='%s' type='%s'"
659
  msgstr "države='%s' tip='%s'"
660
 
661
  #. translators: %s: list parameters and type
662
+ #: class.php:2941
663
  msgid "ip addresses='%s' type='%s'"
664
  msgstr "ip naslovi='%s' tip='%s'"
665
 
666
+ #: class.php:3210 strings.php:239
667
  msgid "BEFORE"
668
  msgstr "PRED"
669
 
670
+ #: class.php:3218 strings.php:241
671
  msgid "PREPEND CONTENT"
672
  msgstr "DODAJ PRED VSEBINO"
673
 
674
+ #: class.php:3222 strings.php:242
675
  msgid "APPEND CONTENT"
676
  msgstr "DODAJ ZA VSEBINO"
677
 
678
+ #: class.php:3226 strings.php:243
679
  msgid "REPLACE CONTENT"
680
  msgstr "NADOMESTI VSEBINO"
681
 
682
+ #: class.php:3230 strings.php:244
683
  msgid "REPLACE ELEMENT"
684
  msgstr "NADOMESTI ELEMENT"
685
 
686
+ #: class.php:3241 strings.php:240
687
  msgid "AFTER"
688
  msgstr "ZA"
689
 
690
+ #: class.php:3308
691
  msgctxt "JavaScript"
692
  msgid "script"
693
  msgstr "skripta"
694
 
695
+ #: class.php:3311 settings.php:2096
696
  msgid "for"
697
  msgstr "za"
698
 
699
+ #: class.php:6374 class.php:6426
700
  msgctxt "category name"
701
  msgid "Uncategorized"
702
  msgstr "Nekategorizirano"
703
 
704
+ #: class.php:6933
705
  msgid ""
706
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
707
  "extension for PHP."
719
  msgstr "Ponastavi"
720
 
721
  #: includes/editor.php:9 includes/placeholders.php:354
722
+ #: includes/preview.php:1965 settings.php:3495 strings.php:208 strings.php:245
723
  msgid "Cancel"
724
  msgstr "Prekliči"
725
 
779
  msgid "License Key for"
780
  msgstr "Licenčni Ključ za"
781
 
782
+ #: includes/functions.old.php:413 includes/functions.php:414
783
  msgid "Open license page"
784
  msgstr "Odpri licenčno stran"
785
 
786
+ #: includes/functions.old.php:421 includes/functions.php:421
787
  msgid "Hide license key"
788
  msgstr "Skrij licenčni ključ"
789
 
790
+ #: includes/functions.old.php:421 includes/functions.php:421
791
  msgid "Hide key"
792
  msgstr "Skrij ključ"
793
 
794
+ #: includes/functions.old.php:436 includes/functions.php:436
795
  msgid "Main content element"
796
  msgstr "Glavni element vsebine"
797
 
798
+ #: includes/functions.old.php:439 includes/functions.php:439
799
  msgid ""
800
  "Main content element (#id or .class) for 'Stick to the content' position. "
801
  "Leave empty unless position is not properly calculated."
803
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
804
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
805
 
806
+ #: includes/functions.old.php:440 includes/functions.php:440 settings.php:1308
807
+ #: settings.php:2710
808
  msgid "Open HTML element selector"
809
  msgstr "Odpri izbirnik HTML elementa"
810
 
811
+ #: includes/functions.old.php:445 includes/functions.php:445
812
  msgid "Lazy loading offset"
813
  msgstr "Zamik za leno nalaganje"
814
 
815
+ #: includes/functions.old.php:448 includes/functions.php:448
816
  msgid "Offset of the block from the visible viewport when it should be loaded"
817
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
818
 
819
+ #: includes/functions.old.php:459 includes/functions.php:459
820
  msgid "Export / Import Block Settings"
821
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
822
 
823
+ #: includes/functions.old.php:474 includes/functions.php:474
824
  msgid "Track impressions and clicks for this block"
825
  msgstr "Sledi prikazom in klikom za ta blok"
826
 
827
+ #: includes/functions.old.php:474 includes/functions.php:474
828
  msgid " - global tracking disabled"
829
  msgstr " - globalno sledenje onemogočeno"
830
 
831
+ #: includes/functions.old.php:481 includes/functions.php:481
832
  msgid "Generate PDF report"
833
  msgstr "Generiraj PDF poročilo"
834
 
835
+ #: includes/functions.old.php:486 includes/functions.php:486
836
  msgid "Open public report"
837
  msgstr "Odpri javno poročilo"
838
 
839
+ #: includes/functions.old.php:500 includes/functions.php:500
840
  msgid "Toggle Ad Blocking Statistics"
841
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
842
 
843
  #: includes/functions.old.php:508 includes/functions.old.php:2960
844
+ #: includes/functions.php:508 includes/functions.php:3011
845
  msgid "Toggle Statistics"
846
  msgstr "Preklopi Statistiko"
847
 
848
  #. translators: %s: Ad Inserter Pro
849
+ #: includes/functions.old.php:524 includes/functions.php:532
850
  msgid "%s license key is not set. Continue?"
851
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
852
 
853
  #. translators: %s: Ad Inserter Pro
854
+ #: includes/functions.old.php:528 includes/functions.php:536
855
  msgid "Invalid %s license key. Continue?"
856
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
857
 
858
  #. translators: %s: Ad Inserter Pro
859
+ #: includes/functions.old.php:532 includes/functions.php:540
860
  msgid "%s license overused. Continue?"
861
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
862
 
863
+ #: includes/functions.old.php:536 includes/functions.php:544 settings.php:1062
864
+ #: settings.php:2167
865
  msgid "Save Settings"
866
  msgstr "Shrani Nastavitve"
867
 
868
+ #: includes/functions.old.php:596 includes/functions.php:604
869
  #: includes/preview.php:2106
870
  msgid "Horizontal position"
871
  msgstr "Vodoravni položaj"
872
 
873
+ #: includes/functions.old.php:619 includes/functions.php:627
874
  msgid ""
875
  "Horizontal margin from the content or screen edge, empty means default value "
876
  "from CSS"
878
  "Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
879
  "iz CSS"
880
 
881
+ #: includes/functions.old.php:627 includes/functions.php:635
882
  #: includes/preview.php:2161
883
  msgid "Vertical position"
884
  msgstr "Navpični položaj"
885
 
886
+ #: includes/functions.old.php:642 includes/functions.php:650
887
  msgid ""
888
  "Vertical margin from the top or bottom screen edge, empty means default "
889
  "value from CSS"
891
  "Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
892
  "iz CSS"
893
 
894
+ #: includes/functions.old.php:667 includes/functions.php:675
895
  #: includes/preview.php:2212
896
  msgid "Animation"
897
  msgstr "Animacija"
898
 
899
+ #: includes/functions.old.php:685 includes/functions.php:693
900
  msgid "Trigger"
901
  msgstr "Sporžilec"
902
 
903
+ #: includes/functions.old.php:694 includes/functions.php:702
904
  msgid ""
905
  "Trigger value: page scroll in %, page scroll in px or element with selector "
906
  "(#id or .class) becomes visible"
908
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
909
  "selektorjem (#id ali .razred) postane viden"
910
 
911
+ #: includes/functions.old.php:698 includes/functions.php:706
912
  msgid "Offset"
913
  msgstr "Zamik"
914
 
915
+ #: includes/functions.old.php:698 includes/functions.php:706
916
  msgid "Offset of trigger element"
917
  msgstr "Zamik sprožilnega elementa"
918
 
919
+ #: includes/functions.old.php:702 includes/functions.php:710
920
  msgid "Delay"
921
  msgstr "Zakasnitev"
922
 
923
+ #: includes/functions.old.php:702 includes/functions.php:710
924
  msgid "Delay animation after trigger condition"
925
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
926
 
927
+ #: includes/functions.old.php:706 includes/functions.php:714
928
  msgid "Trigger once"
929
  msgstr "Sproži enkrat"
930
 
931
+ #: includes/functions.old.php:708 includes/functions.php:716
932
  msgid "Trigger animation only once"
933
  msgstr "Sproži animacijo samo enkrat"
934
 
935
  #: includes/functions.old.php:750 includes/functions.old.php:2453
936
+ #: includes/functions.old.php:2470 includes/functions.php:758
937
+ #: includes/functions.php:2504 includes/functions.php:2521
938
  msgid "Tracking is globally disabled"
939
  msgstr "Sledenje je globalno onemogočeno"
940
 
941
  #: includes/functions.old.php:754 includes/functions.old.php:2457
942
+ #: includes/functions.old.php:2474 includes/functions.php:762
943
+ #: includes/functions.php:2508 includes/functions.php:2525
944
  msgid "Tracking for this block is disabled"
945
  msgstr "Sledenje za ta blok je onemogočeno"
946
 
947
+ #: includes/functions.old.php:761 includes/functions.php:769
948
  msgid "Double click to toggle controls in public reports"
949
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
950
 
951
+ #: includes/functions.old.php:767 includes/functions.php:775 settings.php:3430
952
+ #: settings.php:3466 settings.php:3508 strings.php:218
953
  msgid "Loading..."
954
  msgstr "Nalagam..."
955
 
956
+ #: includes/functions.old.php:788 includes/functions.php:796
957
  msgid ""
958
  "Clear statistics data for the selected range - clear both dates to delete "
959
  "all data for this block"
961
  "Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
962
  "brisanje vseh podatkov za ta blok"
963
 
964
+ #: includes/functions.old.php:792 includes/functions.php:800
965
  msgid "Auto refresh data for the selected range every 60 seconds"
966
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
967
 
968
  #: includes/functions.old.php:795 includes/functions.old.php:5262
969
+ #: includes/functions.php:803 includes/functions.php:5361
970
  msgid "Load data for last month"
971
  msgstr "Naloži podatke za zadnji mesec"
972
 
973
  #: includes/functions.old.php:795 includes/functions.old.php:5262
974
+ #: includes/functions.php:803 includes/functions.php:5361
975
  msgid "Last Month"
976
  msgstr "Zadnji Mesec"
977
 
978
  #: includes/functions.old.php:798 includes/functions.old.php:5265
979
+ #: includes/functions.php:806 includes/functions.php:5364
980
  msgid "Load data for this month"
981
  msgstr "Naloži podatke za ta mesec"
982
 
983
  #: includes/functions.old.php:798 includes/functions.old.php:5265
984
+ #: includes/functions.php:806 includes/functions.php:5364
985
  msgid "This Month"
986
  msgstr "Ta Mesec"
987
 
988
  #: includes/functions.old.php:801 includes/functions.old.php:5268
989
+ #: includes/functions.php:809 includes/functions.php:5367
990
  msgid "Load data for this year"
991
  msgstr "Naloži podatke za to leto"
992
 
993
  #: includes/functions.old.php:801 includes/functions.old.php:5268
994
+ #: includes/functions.php:809 includes/functions.php:5367
995
  msgid "This Year"
996
  msgstr "To Leto"
997
 
998
  #: includes/functions.old.php:804 includes/functions.old.php:5271
999
+ #: includes/functions.php:812 includes/functions.php:5370
1000
  msgid "Load data for the last 15 days"
1001
  msgstr "Naloži podatke za zadnjih 15 dni"
1002
 
1003
  #: includes/functions.old.php:807 includes/functions.old.php:5274
1004
+ #: includes/functions.php:815 includes/functions.php:5373
1005
  msgid "Load data for the last 30 days"
1006
  msgstr "Naloži podatke za zadnjih 30 dni"
1007
 
1008
  #: includes/functions.old.php:810 includes/functions.old.php:5277
1009
+ #: includes/functions.php:818 includes/functions.php:5376
1010
  msgid "Load data for the last 90 days"
1011
  msgstr "Naloži podatke za zadnjih 90 dni"
1012
 
1013
  #: includes/functions.old.php:813 includes/functions.old.php:5280
1014
+ #: includes/functions.php:821 includes/functions.php:5379
1015
  msgid "Load data for the last 180 days"
1016
  msgstr "Naloži podatke za zadnjih 180 dni"
1017
 
1018
  #: includes/functions.old.php:816 includes/functions.old.php:5283
1019
+ #: includes/functions.php:824 includes/functions.php:5382
1020
  msgid "Load data for the last 365 days"
1021
  msgstr "Naloži podatke za zadnjih 365 dni"
1022
 
1023
  #: includes/functions.old.php:826 includes/functions.old.php:5293
1024
+ #: includes/functions.php:834 includes/functions.php:5392
1025
  msgid "Load data for the selected range"
1026
  msgstr "Naloži podatke za izbrano obdobje"
1027
 
1028
+ #: includes/functions.old.php:842 includes/functions.php:850
1029
  msgid ""
1030
  "Import settings when saving - if checked, the encoded settings below will be "
1031
  "imported for this block"
1033
  "Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
1034
  "nastavitve spodaj uvozile za ta blok"
1035
 
1036
+ #: includes/functions.old.php:842 includes/functions.php:850
1037
  msgid "Import settings for block"
1038
  msgstr "Uvozi nastavitve za blok"
1039
 
1040
+ #: includes/functions.old.php:846 includes/functions.php:854
1041
  msgid ""
1042
  "Import block name when saving - if checked and 'Import settings for block' "
1043
  "is also checked, the name from encoded settings below will be imported for "
1047
  "nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
1048
  "uvozilo za ta blok"
1049
 
1050
+ #: includes/functions.old.php:846 includes/functions.php:854
1051
  msgid "Import block name"
1052
  msgstr "Uvozi ime bloka"
1053
 
1054
+ #: includes/functions.old.php:850 includes/functions.php:858
1055
  msgid "Saved settings for block"
1056
  msgstr "Shranjene nastavitve za blok"
1057
 
1058
+ #: includes/functions.old.php:863 includes/functions.php:871
1059
  msgid "Export / Import Ad Inserter Pro Settings"
1060
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1061
 
1062
+ #: includes/functions.old.php:873 includes/functions.php:881
1063
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1064
  msgstr ""
1065
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1066
  "bloke?"
1067
 
1068
+ #: includes/functions.old.php:875 includes/functions.php:883
1069
  msgid "Clear All Statistics Data"
1070
  msgstr "Pobriši Vse Podatke o Statistiki"
1071
 
1072
+ #: includes/functions.old.php:902 includes/functions.php:910
1073
  msgid "Toggle country/city editor"
1074
  msgstr "Preklopi urejevalnik držav/mest"
1075
 
1076
+ #: includes/functions.old.php:908 includes/functions.php:916
1077
  msgid "IP Addresses"
1078
  msgstr "IP Naslovi"
1079
 
1080
+ #: includes/functions.old.php:911 includes/functions.php:919
1081
  msgid "Toggle IP address editor"
1082
  msgstr "Preklopi urejevalnik IP nslovov"
1083
 
1084
+ #: includes/functions.old.php:914 includes/functions.php:922
1085
  msgid ""
1086
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1087
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1089
  "Z vejico ločeni IP naslovi, uporabite lahko tudi delne IP naslove z * (ip-"
1090
  "naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
1091
 
1092
+ #: includes/functions.old.php:918 includes/functions.php:926
1093
  msgid "Blacklist IP addresses"
1094
  msgstr "Črni seznam IP naslovov"
1095
 
1096
+ #: includes/functions.old.php:922 includes/functions.php:930
1097
  msgid "Whitelist IP addresses"
1098
  msgstr "Beli seznam IP naslovov"
1099
 
1100
+ #: includes/functions.old.php:933 includes/functions.php:941
1101
  msgid "Countries"
1102
  msgstr "Države"
1103
 
1104
+ #: includes/functions.old.php:934 includes/functions.php:942
1105
  msgid "Cities"
1106
  msgstr "Mesta"
1107
 
1108
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1109
+ #: includes/functions.php:946 includes/functions.php:2976
1110
  msgid "Toggle country editor"
1111
  msgstr "Preklopi urejevalnik držav"
1112
 
1113
+ #: includes/functions.old.php:941 includes/functions.php:949
1114
  msgid "Toggle city editor"
1115
  msgstr "Preklopi urejevalnik mest"
1116
 
1117
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1118
+ #: includes/functions.php:953 includes/functions.php:2979
1119
  msgid "Comma separated country ISO Alpha-2 codes"
1120
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1121
 
1122
+ #: includes/functions.old.php:949 includes/functions.php:957
1123
  msgid "Blacklist countries"
1124
  msgstr "Črni seznam držav"
1125
 
1126
+ #: includes/functions.old.php:953 includes/functions.php:961
1127
  msgid "Whitelist countries"
1128
  msgstr "Beli seznam držav"
1129
 
1130
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1131
+ #: includes/functions.php:1371 includes/functions.php:1657
1132
  msgid "Enter license key"
1133
  msgstr "Vnesite licenčni ključ"
1134
 
1135
  #. translators: %s: Ad Inserter Pro
1136
+ #: includes/functions.old.php:1367 includes/functions.php:1377
1137
  msgid ""
1138
  "%s license key is not set. Plugin functionality is limited and updates are "
1139
  "disabled."
1142
  "posodobitve onemogočene."
1143
 
1144
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1145
+ #: includes/functions.php:1400 includes/functions.php:1666
1146
  msgid "Check license key"
1147
  msgstr "Preverite licenčni ključ"
1148
 
1149
  #. translators: %s: Ad Inserter Pro
1150
+ #: includes/functions.old.php:1385 includes/functions.php:1406
1151
  msgid "Invalid %s license key."
1152
  msgstr "Neveljaven %s licenčni ključ."
1153
 
1154
  #. translators: %s: Ad Inserter Pro
1155
+ #: includes/functions.old.php:1394 includes/functions.php:1415
1156
  msgid "%s license expired. Plugin updates are disabled."
1157
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1158
 
1159
+ #: includes/functions.old.php:1395 includes/functions.php:1416
1160
  msgid "Renew license"
1161
  msgstr "Obnovite licenco"
1162
 
1163
  #. translators: %s: Ad Inserter Pro
1164
+ #: includes/functions.old.php:1403 includes/functions.php:1424
1165
  msgid "%s license overused. Plugin updates are disabled."
1166
  msgstr ""
1167
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1168
 
1169
+ #: includes/functions.old.php:1404 includes/functions.php:1425
1170
  msgid "Manage licenses"
1171
  msgstr "Upravljajte z licencami"
1172
 
1173
+ #: includes/functions.old.php:1404 includes/functions.php:1425
1174
  msgid "Upgrade license"
1175
  msgstr "Nadgradite licenco"
1176
 
1177
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1178
+ #: includes/functions.old.php:1610 includes/functions.php:1659
1179
  msgid ""
1180
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1181
  "limited and updates are disabled."
1184
  "so omejene in posodobitve onemogočene."
1185
 
1186
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1187
+ #: includes/functions.old.php:1619 includes/functions.php:1668
1188
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1189
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1190
 
1191
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1192
+ #: includes/functions.old.php:1635 includes/functions.php:1684
1193
  msgid ""
1194
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1195
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1199
  "pogrešate. %3$s"
1200
 
1201
  #. translators: 1, 3: HTML tags, 2: percentage
1202
+ #: includes/functions.old.php:1642 includes/functions.php:1691
1203
  msgid ""
1204
  "During the license period and 30 days after the license has expired we offer "
1205
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1207
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1208
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1209
 
1210
+ #: includes/functions.old.php:1669 includes/functions.php:1718
1211
  msgid "Renew the licence"
1212
  msgstr "Obnovi licenco"
1213
 
1214
+ #: includes/functions.old.php:1671 includes/functions.php:1720
1215
  msgid "Update license status"
1216
  msgstr "Posodobi status licence"
1217
 
1218
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1219
+ #: includes/functions.old.php:1682 includes/functions.php:1731
1220
  msgid ""
1221
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1222
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1226
  "Nadgradite licenco %7$s"
1227
 
1228
  #. Translators: %s: HTML tag
1229
+ #: includes/functions.old.php:1704 includes/functions.php:1753
1230
  msgid "Warning: %s MaxMind IP geolocation database not found."
1231
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1232
 
1233
+ #: includes/functions.old.php:2255 includes/functions.php:2306
1234
  msgid "Geolocation"
1235
  msgstr "Geolokacija"
1236
 
1237
+ #: includes/functions.old.php:2259 includes/functions.php:2310
1238
+ #: settings.php:4087
1239
  msgid "Exceptions"
1240
  msgstr "Izjeme"
1241
 
1242
+ #: includes/functions.old.php:2264 includes/functions.php:2315
1243
  msgid "Multisite"
1244
  msgstr "Multisite"
1245
 
1246
+ #: includes/functions.old.php:2269 includes/functions.php:2320
1247
+ #: settings.php:4093
1248
  msgid "Tracking"
1249
  msgstr "Sledenje"
1250
 
1251
  #. translators: %d: days, hours, minutes
1252
+ #: includes/functions.old.php:2300 includes/functions.php:2351
1253
  msgid "Scheduled in %d days %d hours %d minutes"
1254
  msgstr "Planirano v %d dneh %d urah %d minutah"
1255
 
1256
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1257
  #. HTML code for long dash separator
1258
+ #: includes/functions.old.php:2309 includes/functions.php:2360
1259
  msgid "Active %s expires in %d days %d hours %d minutes"
1260
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1261
 
1262
+ #: includes/functions.old.php:2313 includes/functions.php:2364
1263
  msgid "Expired"
1264
  msgstr "Poteklo"
1265
 
1266
+ #: includes/functions.old.php:2321 includes/functions.php:2372
1267
+ #: settings.php:1391 settings.php:1406 settings.php:1496 settings.php:2082
1268
  msgid "and"
1269
  msgstr "in"
1270
 
1271
+ #: includes/functions.old.php:2324 includes/functions.php:2375
1272
  msgid "fallback"
1273
  msgstr "rezerva"
1274
 
1275
+ #: includes/functions.old.php:2325 includes/functions.php:2376
1276
  msgid "Block to be used when scheduling expires"
1277
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1278
 
1279
+ #: includes/functions.old.php:2350 includes/functions.php:2401
1280
  msgid "Load in iframe"
1281
  msgstr "Naloži v iframe-u"
1282
 
1283
+ #: includes/functions.old.php:2354 includes/functions.php:2405
1284
  #: includes/placeholders.php:389
1285
  msgid "Width"
1286
  msgstr "Širina"
1287
 
1288
+ #: includes/functions.old.php:2355 includes/functions.php:2406
1289
  msgid "iframe width, empty means full width (100%)"
1290
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1291
 
1292
+ #: includes/functions.old.php:2361 includes/functions.php:2412
1293
  #: includes/placeholders.php:384
1294
  msgid "Height"
1295
  msgstr "Višina"
1296
 
1297
+ #: includes/functions.old.php:2362 includes/functions.php:2413
1298
  msgid "iframe height, empty means adjust it to iframe content height"
1299
  msgstr ""
1300
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1301
 
1302
+ #: includes/functions.old.php:2369 includes/functions.php:2420
1303
  msgid "Ad label in iframe"
1304
  msgstr "Oznaka oglasa v iframe-u"
1305
 
1306
+ #: includes/functions.old.php:2374 includes/functions.php:2425
1307
  msgid "Preview iframe code"
1308
  msgstr "Predpreglej kodo iframe"
1309
 
1310
+ #: includes/functions.old.php:2374 includes/functions.php:2425
1311
+ #: includes/preview.php:1974 settings.php:1057 settings.php:2772
1312
  msgid "Preview"
1313
  msgstr "Predogled"
1314
 
1315
+ #: includes/functions.old.php:2388 includes/functions.php:2439
1316
+ #: settings.php:4094
1317
  msgid "Limits"
1318
  msgstr "Omejitve"
1319
 
1320
  #: includes/functions.old.php:2393 includes/functions.old.php:4266
1321
+ #: includes/functions.old.php:4329 includes/functions.php:2444
1322
+ #: includes/functions.php:4340 includes/functions.php:4403 settings.php:2214
1323
  msgid "Ad Blocking"
1324
  msgstr "Blokiranje Oglasov"
1325
 
1326
  #. translators: 1, 2 and 3, 4: HTML tags
1327
+ #: includes/functions.old.php:2402 includes/functions.php:2453
1328
  msgid ""
1329
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1330
  "for tracking!"
1334
 
1335
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1336
  #. header
1337
+ #: includes/functions.old.php:2411 includes/functions.php:2462
1338
  msgid ""
1339
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1340
  "enabled and automatic insertion %6$s!"
1342
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1343
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1344
 
1345
+ #: includes/functions.old.php:2478 includes/functions.php:2529
1346
  msgid "Click fraud protection is globally disabled"
1347
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1348
 
1349
+ #: includes/functions.old.php:2482 includes/functions.php:2533
1350
  msgid "Max clicks per time period are not defined"
1351
  msgstr "Največje število klikov na časovno enoto ni definirano"
1352
 
1353
  #. Translators: Max n impressions
1354
+ #: includes/functions.old.php:2496 includes/functions.php:2547
1355
  msgid "General limits"
1356
  msgstr "Splošne omejitve"
1357
 
1358
  #. Translators: Max n impressions per x days
1359
  #: includes/functions.old.php:2502 includes/functions.old.php:2514
1360
+ #: includes/functions.old.php:2599 includes/functions.php:2553
1361
+ #: includes/functions.php:2565 includes/functions.php:2650
1362
  msgid "Current value"
1363
  msgstr "Trenutna vrednost"
1364
 
1374
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1375
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1376
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1377
+ #: includes/functions.php:2572 includes/functions.php:2582
1378
+ #: includes/functions.php:2601 includes/functions.php:2611
1379
+ #: includes/functions.php:2657 includes/functions.php:2666
1380
+ #: includes/functions.php:2684 includes/functions.php:2693 settings.php:2003
1381
  msgid "Max"
1382
  msgstr "Največ"
1383
 
1384
+ #: includes/functions.old.php:2522 includes/functions.php:2573
1385
  msgid ""
1386
  "Maximum number of impressions for this block. Empty means no general "
1387
  "impression limit."
1395
  #. Translators: Max n impressions per x days
1396
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1397
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1398
+ #: includes/functions.php:2575 includes/functions.php:2585
1399
+ #: includes/functions.php:2660 includes/functions.php:2669
1400
  msgid "impression"
1401
  msgid_plural "impressions"
1402
  msgstr[0] "prikaz"
1404
  msgstr[2] "prikazi"
1405
  msgstr[3] "prikazov"
1406
 
1407
+ #: includes/functions.old.php:2532 includes/functions.php:2583
1408
  msgid ""
1409
  "Maximum number of impressions per time period. Empty means no time limit."
1410
  msgstr ""
1417
  #. Translators: Max n clicks per x days
1418
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1419
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1420
+ #: includes/functions.php:2589 includes/functions.php:2618
1421
+ #: includes/functions.php:2673 includes/functions.php:2700
1422
  msgid "per"
1423
  msgstr "na"
1424
 
1425
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1426
+ #: includes/functions.php:2590 includes/functions.php:2619
1427
  msgid "Time period in days. Empty means no time limit."
1428
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1429
 
1435
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1436
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1437
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1438
+ #: includes/functions.php:2592 includes/functions.php:2621
1439
+ #: includes/functions.php:2676 includes/functions.php:2703
1440
+ #: includes/functions.php:2809 includes/functions.php:3137 strings.php:199
1441
  #: strings.php:200 strings.php:201 strings.php:202 strings.php:203
1442
  #: strings.php:204
1443
  msgid "day"
1447
  msgstr[2] "dni"
1448
  msgstr[3] "dni"
1449
 
1450
+ #: includes/functions.old.php:2551 includes/functions.php:2602
1451
  msgid ""
1452
  "Maximum number of clicks on this block. Empty means no general click limit."
1453
  msgstr ""
1460
  #. Translators: Max n clicks per x days
1461
  #: includes/functions.old.php:2553 includes/functions.old.php:2563
1462
  #: includes/functions.old.php:2636 includes/functions.old.php:2645
1463
+ #: includes/functions.old.php:4477 includes/functions.php:2604
1464
+ #: includes/functions.php:2614 includes/functions.php:2687
1465
+ #: includes/functions.php:2696 includes/functions.php:4551
1466
  msgid "click"
1467
  msgid_plural "clicks"
1468
  msgstr[0] "klik"
1470
  msgstr[2] "kliki"
1471
  msgstr[3] "klikov"
1472
 
1473
+ #: includes/functions.old.php:2561 includes/functions.php:2612
1474
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1475
  msgstr ""
1476
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1477
  "omejitev."
1478
 
1479
+ #: includes/functions.old.php:2586 includes/functions.php:2637
1480
  msgid "Individual visitor limits"
1481
  msgstr "Omejitve posameznih obiskovalcev"
1482
 
1483
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1484
+ #: includes/functions.php:2641 includes/functions.php:2643
1485
  msgid ""
1486
  "When specified number of clicks on this block for a visitor will be reached "
1487
  "in the specified time period, all blocks that have click fraud protection "
1493
  "splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
1494
  "pred goljufijo s kliki."
1495
 
1496
+ #: includes/functions.old.php:2592 includes/functions.php:2643
1497
  msgid "Trigger click fraud protection"
1498
  msgstr "Sproži zaščito pred goljufijo s kliki"
1499
 
1500
+ #: includes/functions.old.php:2607 includes/functions.php:2658
1501
  msgid ""
1502
  "Maximum number of impressions of this block for each visitor. Empty means no "
1503
  "impression limit."
1505
  "Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
1506
  "pomeni brez omejitev prikazov."
1507
 
1508
+ #: includes/functions.old.php:2616 includes/functions.php:2667
1509
  msgid ""
1510
  "Maximum number of impressions per time period for each visitor. Empty means "
1511
  "no impression limit per time period for visitors."
1514
  "Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
1515
 
1516
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1517
+ #: includes/functions.php:2674 includes/functions.php:2701
1518
  msgid ""
1519
  "Time period in days. Use decimal value (with decimal point) for shorter "
1520
  "periods. Empty means no time limit."
1522
  "Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
1523
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1524
 
1525
+ #: includes/functions.old.php:2634 includes/functions.php:2685
1526
  msgid ""
1527
  "Maximum number of clicks on this block for each visitor. Empty means no "
1528
  "click limit."
1530
  "Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
1531
  "brez omejitev klikov."
1532
 
1533
+ #: includes/functions.old.php:2643 includes/functions.php:2694
1534
  msgid ""
1535
  "Maximum number of clicks per time period for each visitor. Empty means no "
1536
  "click limit per time period for visitors."
1538
  "Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
1539
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1540
 
1541
+ #: includes/functions.old.php:2669 includes/functions.php:2720
1542
  msgid "When ad blocking is detected"
1543
  msgstr "Ko je blokiranje oglasov zaznano"
1544
 
1545
+ #: includes/functions.old.php:2678 includes/functions.php:2729
1546
  msgid "replacement"
1547
  msgstr "nadomestek"
1548
 
1549
+ #: includes/functions.old.php:2679 includes/functions.php:2730
1550
  msgid "Block to be shown when ad blocking is detected"
1551
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1552
 
1553
+ #: includes/functions.old.php:2680 includes/functions.php:2731
1554
  msgctxt "replacement"
1555
  msgid "None"
1556
  msgstr "Noben"
1557
 
1558
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1559
+ #: includes/functions.php:2748 includes/functions.php:5583
1560
  msgid "Close button"
1561
  msgstr "Gumb Zapri"
1562
 
1563
+ #: includes/functions.old.php:2749 includes/functions.php:2800
1564
  msgid "Auto close after"
1565
  msgstr "Ssamodejno zapri po"
1566
 
1567
+ #: includes/functions.old.php:2750 includes/functions.php:2801
1568
  msgid ""
1569
  "Time in seconds in which the ad will automatically close. Leave empty to "
1570
  "disable auto closing."
1573
  "izključitev samodejnega zapiranja."
1574
 
1575
  #. Translators: Don't show for x days
1576
+ #: includes/functions.old.php:2755 includes/functions.php:2806
1577
  msgid "Don't show for"
1578
  msgstr "Ne prikaži"
1579
 
1580
+ #: includes/functions.old.php:2756 includes/functions.php:2807
1581
  msgid ""
1582
  "Time in days in which closed ad will not be shown again. Use decimal value "
1583
  "(with decimal point) for shorter time period or leave empty to show it again "
1588
  "prazno, da se spet prikaže pri ponovnem nalaganju strani."
1589
 
1590
  #. Translators: Delay showing for x pageviews
1591
+ #: includes/functions.old.php:2776 includes/functions.php:2827
1592
  msgid "Delay showing for"
1593
  msgstr "Zakasni prikaz za"
1594
 
1595
+ #: includes/functions.old.php:2777 includes/functions.php:2828
1596
  msgid ""
1597
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1598
  "empty to insert the code for the first pageview."
1603
  #. Translators: Delay showing for x pageviews
1604
  #. Translators: Show every x pageviews
1605
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1606
+ #: includes/functions.php:2830 includes/functions.php:2837
1607
  msgid "pageview"
1608
  msgid_plural "pageviews"
1609
  msgstr[0] "ogled strani"
1612
  msgstr[3] "ogledov strani"
1613
 
1614
  #. Translators: Show every x pageviews
1615
+ #: includes/functions.old.php:2783 includes/functions.php:2834
1616
  msgid "Show every"
1617
  msgid_plural "Show every"
1618
  msgstr[0] "Prikaži vsak"
1620
  msgstr[2] "Prikaži vsake"
1621
  msgstr[3] "Prikaži vsakih"
1622
 
1623
+ #: includes/functions.old.php:2784 includes/functions.php:2835
1624
  msgid ""
1625
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1626
  "for every pageview."
1628
  "Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
1629
  "vstavljanje kode pri vsakem ogledu strani."
1630
 
1631
+ #: includes/functions.old.php:2803 includes/functions.php:2854
1632
  msgid "Lazy loading"
1633
  msgstr "Leno nalaganje"
1634
 
1635
  #. Translators: %s MaxMind
1636
+ #: includes/functions.old.php:2860 includes/functions.php:2911
1637
  msgid "This product includes GeoLite2 data created by %s"
1638
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1639
 
1640
+ #: includes/functions.old.php:2871 includes/functions.php:2922
1641
  msgid "IP geolocation database"
1642
  msgstr "Podatkovna baza za IP geolokacijo"
1643
 
1644
+ #: includes/functions.old.php:2874 includes/functions.php:2925
1645
  msgid "Select IP geolocation database."
1646
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1647
 
1648
+ #: includes/functions.old.php:2885 includes/functions.php:2936
1649
  msgid "Automatic database updates"
1650
  msgstr "Samodejna posodobitev podatkovne baze"
1651
 
1652
+ #: includes/functions.old.php:2888 includes/functions.php:2939
1653
  msgid ""
1654
  "Automatically download and update free GeoLite2 IP geolocation database by "
1655
  "MaxMind"
1657
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1658
  "podatkovno bazo MaxMind"
1659
 
1660
+ #: includes/functions.old.php:2896 includes/functions.php:2947
1661
  msgid "Database"
1662
  msgstr "Podatkovna baza"
1663
 
1664
+ #: includes/functions.old.php:2899 includes/functions.php:2950
1665
  msgid ""
1666
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1667
  "file"
1670
  "podatkovne baze"
1671
 
1672
  #. translators: %d: group number
1673
+ #: includes/functions.old.php:2917 includes/functions.php:2968
1674
  msgid "Group %d"
1675
  msgstr "Skupina %d"
1676
 
1677
+ #: includes/functions.old.php:2923 includes/functions.php:2974
1678
  msgid "countries"
1679
  msgstr "države"
1680
 
1681
+ #: includes/functions.old.php:2968 includes/functions.php:3019
1682
  msgid ""
1683
  "Enable impression and click tracking. You also need to enable tracking for "
1684
  "each block you want to track."
1686
  "Omogočite sledenje prikazom in klikom. Omogočiti morate tudi sledenje za "
1687
  "vsak blok, ki bi ga radi sledili."
1688
 
1689
+ #: includes/functions.old.php:2975 includes/functions.php:3026
1690
  msgid "Generate report"
1691
  msgstr "Generiraj poročilo"
1692
 
1693
+ #: includes/functions.old.php:2983 includes/functions.php:3034
1694
  msgid "Impression and Click Tracking"
1695
  msgstr "Sledenje Prikazov in Klikov"
1696
 
1697
+ #: includes/functions.old.php:2984 includes/functions.php:3035
1698
+ #: settings.php:2660
1699
  msgctxt "ad blocking detection"
1700
  msgid "NOT ENABLED"
1701
  msgstr "NI OMOGOČENO"
1702
 
1703
+ #: includes/functions.old.php:3000 includes/functions.php:3051
1704
  msgid "Internal"
1705
  msgstr "Notranje"
1706
 
1707
+ #: includes/functions.old.php:3004 includes/functions.php:3055
1708
  msgid "Track impressions and clicks with internal tracking and statistics"
1709
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1710
 
1711
+ #: includes/functions.old.php:3009 includes/functions.php:3060
1712
  msgid "External"
1713
  msgstr "Zunanje"
1714
 
1715
+ #: includes/functions.old.php:3013 includes/functions.php:3064
1716
  msgid ""
1717
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1718
  "code installed)"
1720
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1721
  "kodo za sledenje)"
1722
 
1723
+ #: includes/functions.old.php:3018 includes/functions.php:3069
1724
  msgid "Track Pageviews"
1725
  msgstr "Sledi Ogledom Strani"
1726
 
1727
+ #: includes/functions.old.php:3024 includes/functions.php:3075
1728
  msgid "Track Pageviews by Device (as configured for viewports)"
1729
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1730
 
1731
+ #: includes/functions.old.php:3034 includes/functions.php:3085
1732
  msgid "Track for Logged in Users"
1733
  msgstr "Sledi za Prijavljene Upor."
1734
 
1735
+ #: includes/functions.old.php:3040 includes/functions.php:3091
1736
  msgid "Track impressions and clicks from logged in users"
1737
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1738
 
1739
+ #: includes/functions.old.php:3050 includes/functions.php:3101
1740
  msgid "Click Detection"
1741
  msgstr "Zaznavanje klikov"
1742
 
1743
+ #: includes/functions.old.php:3056 includes/functions.php:3107
1744
  msgid ""
1745
  "Standard method detects clicks only on banners with links, Advanced method "
1746
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1748
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1749
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1750
 
1751
+ #: includes/functions.old.php:3075 includes/functions.php:3126
1752
  msgid "Click fraud protection"
1753
  msgstr "Zaščita pred goljufijo s kliki"
1754
 
1755
+ #: includes/functions.old.php:3079 includes/functions.php:3130
1756
  msgid "Globally enable click fraud protection for selected blocks."
1757
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
1758
 
1759
+ #: includes/functions.old.php:3085 includes/functions.php:3136
1760
  msgid "Protection time"
1761
  msgstr "Čas zaščite"
1762
 
1763
+ #: includes/functions.old.php:3086 includes/functions.php:3137
1764
  msgid ""
1765
  "Time period in days in which blocks with enabled click fraud protection will "
1766
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1769
  "goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
1770
  "za krajša obdobja."
1771
 
1772
+ #: includes/functions.old.php:3105 includes/functions.php:3156
1773
  msgid "Report header image"
1774
  msgstr "Slika v glavi poročila"
1775
 
1776
+ #: includes/functions.old.php:3108 includes/functions.php:3159
1777
  msgid ""
1778
  "Image or logo to be displayed in the header of the statistins report. "
1779
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
1783
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1784
  "ponastavitev na privzeto sliko."
1785
 
1786
+ #: includes/functions.old.php:3109 includes/functions.php:3160 strings.php:230
1787
  msgid "Select or upload header image"
1788
  msgstr "Izberi ali naloži sliko glave"
1789
 
1790
+ #: includes/functions.old.php:3114 includes/functions.php:3165
1791
  msgid "Report header title"
1792
  msgstr "Naslov v glavi poročila"
1793
 
1794
+ #: includes/functions.old.php:3117 includes/functions.php:3168
1795
  msgid ""
1796
  "Title to be displayed in the header of the statistics report. Text or HTML "
1797
  "code, clear to reset to default text."
1799
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1800
  "pobrišite za ponastavitev na privzeto besedilo."
1801
 
1802
+ #: includes/functions.old.php:3122 includes/functions.php:3173
1803
  msgid "Report header description"
1804
  msgstr "Opis v glavi poročila"
1805
 
1806
+ #: includes/functions.old.php:3125 includes/functions.php:3176
1807
  msgid ""
1808
  "Description to be displayed in the header of the statistics report. Text or "
1809
  "HTML code, clear to reset to default text."
1811
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1812
  "pobrišite za ponastavitev na privzeto besedilo."
1813
 
1814
+ #: includes/functions.old.php:3130 includes/functions.php:3181
1815
  msgid "Report footer"
1816
  msgstr "Noga poročila"
1817
 
1818
+ #: includes/functions.old.php:3133 includes/functions.php:3184
1819
  msgid ""
1820
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1821
  "to default text."
1823
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1824
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1825
 
1826
+ #: includes/functions.old.php:3138 includes/functions.php:3189
1827
  msgid "Public report key"
1828
  msgstr "Ključ za javno poročilo"
1829
 
1830
+ #: includes/functions.old.php:3141 includes/functions.php:3192
1831
  msgid "String to generate unique report IDs. Clear to reset to default value."
1832
  msgstr ""
1833
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1834
  "privzeto vrednost."
1835
 
1836
+ #: includes/functions.old.php:3173 includes/functions.php:3224
1837
  msgid "Are you sure you want to clear all exceptions for block"
1838
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1839
 
1840
+ #: includes/functions.old.php:3174 includes/functions.php:3225
1841
+ #: settings.php:1160
1842
  msgid "Clear all exceptions for block"
1843
  msgstr "Pobriši vse izjeme za blok"
1844
 
1845
+ #: includes/functions.old.php:3181 includes/functions.php:3232
1846
  msgid "Are you sure you want to clear all exceptions?"
1847
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1848
 
1849
+ #: includes/functions.old.php:3181 includes/functions.php:3232
1850
  msgid "Clear all exceptions for all blocks"
1851
  msgstr "Pobriši vse izjeme za vse bloke"
1852
 
1853
+ #: includes/functions.old.php:3186 includes/functions.php:3237
1854
+ #: settings.php:3739 settings.php:4170
1855
  msgid "Type"
1856
  msgstr "Vrsta"
1857
 
1858
+ #: includes/functions.old.php:3204 includes/functions.php:3255
1859
  msgid "View"
1860
  msgstr "Poglej"
1861
 
1862
  #: includes/functions.old.php:3205 includes/functions.old.php:3212
1863
+ #: includes/functions.old.php:3216 includes/functions.php:3256
1864
+ #: includes/functions.php:3263 includes/functions.php:3267
1865
+ #: includes/placeholders.php:353 includes/preview.php:2281 settings.php:1294
1866
+ #: settings.php:3499
1867
  msgid "Edit"
1868
  msgstr "Uredi"
1869
 
1870
+ #: includes/functions.old.php:3235 includes/functions.php:3286
1871
  msgid "Are you sure you want to clear all exceptions for"
1872
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1873
 
1874
+ #: includes/functions.old.php:3236 includes/functions.php:3287
1875
  msgid "Clear all exceptions for"
1876
  msgstr "Pobriši vse izjeme za"
1877
 
1878
+ #: includes/functions.old.php:3249 includes/functions.php:3300
1879
  msgid "No exceptions"
1880
  msgstr "Brez izjem"
1881
 
1882
  #. translators: %s: Ad Inserter Pro
1883
+ #: includes/functions.old.php:3260 includes/functions.php:3311
1884
  msgid "%s options for network blogs"
1885
  msgstr "%s izbire za omrežne bloge"
1886
 
1887
  #. translators: %s: Ad Inserter Pro
1888
+ #: includes/functions.old.php:3265 includes/functions.php:3316
1889
  msgid "Enable %s widgets for sub-sites"
1890
  msgstr "Omogoči %s gradnik za pod-spletišča"
1891
 
1892
+ #: includes/functions.old.php:3265 includes/functions.php:3316
1893
  msgid "Widgets"
1894
  msgstr "Gradniki"
1895
 
1896
+ #: includes/functions.old.php:3270 includes/functions.php:3321
1897
  msgid "Enable PHP code processing for sub-sites"
1898
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
1899
 
1900
+ #: includes/functions.old.php:3270 includes/functions.php:3321
1901
  msgid "PHP Processing"
1902
  msgstr "PHP Procesiranje"
1903
 
1904
  #. translators: %s: Ad Inserter Pro
1905
+ #: includes/functions.old.php:3275 includes/functions.php:3326
1906
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1907
  msgstr ""
1908
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
1909
 
1910
+ #: includes/functions.old.php:3275 includes/functions.php:3326
1911
  msgid "Post/Page exceptions"
1912
  msgstr "Izjeme prispevkov/strani"
1913
 
1914
  #. translators: %s: Ad Inserter Pro
1915
+ #: includes/functions.old.php:3280 includes/functions.php:3331
1916
  msgid "Enable %s settings page for sub-sites"
1917
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
1918
 
1919
+ #: includes/functions.old.php:3280 includes/functions.php:3331
1920
  msgid "Settings page"
1921
  msgstr "Stran z nastavitvami"
1922
 
1923
  #. translators: %s: Ad Inserter Pro
1924
+ #: includes/functions.old.php:3285 includes/functions.php:3336
1925
  msgid "Enable %s settings of main site to be used for all blogs"
1926
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
1927
 
1928
+ #: includes/functions.old.php:3285 includes/functions.php:3336
1929
  msgid "Main site settings used for all blogs"
1930
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
1931
 
1932
+ #: includes/functions.old.php:3296 includes/functions.php:3347
1933
+ #: settings.php:2659
1934
  msgid "Ad Blocking Detection"
1935
  msgstr "Zaznavanje Blokiranja Oglasov"
1936
 
1937
+ #: includes/functions.old.php:3302 includes/functions.php:3353
1938
  msgid ""
1939
  "Standard method is reliable but should be used only if Advanced method does "
1940
  "not work. Advanced method recreates files used for detection with random "
1947
  "dostopna"
1948
 
1949
  #: includes/functions.old.php:3929 includes/functions.old.php:4019
1950
+ #: includes/functions.old.php:4039 includes/functions.php:4003
1951
+ #: includes/functions.php:4093 includes/functions.php:4113
1952
  msgid "AD BLOCKING"
1953
  msgstr "BLOKIRANJE OGLASOV"
1954
 
1955
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
1956
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
1957
+ #: includes/functions.php:4004 includes/functions.php:4044
1958
+ #: includes/functions.php:4087 includes/functions.php:4114
1959
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1960
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
1961
 
1962
  #: includes/functions.old.php:3933 includes/functions.old.php:4012
1963
+ #: includes/functions.old.php:4046 includes/functions.php:4007
1964
+ #: includes/functions.php:4086 includes/functions.php:4120
1965
  msgid "NO AD BLOCKING"
1966
  msgstr "NI BLOKIRANJA OGLASOV"
1967
 
1968
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
1969
+ #: includes/functions.php:4043 includes/functions.php:4050
1970
  msgid "AD BLOCKING REPLACEMENT"
1971
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
1972
 
1973
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
1974
+ #: includes/functions.php:4193 includes/functions.php:4402
1975
  msgid "Pageviews"
1976
  msgstr "Ogledi strani"
1977
 
1978
+ #: includes/functions.old.php:4265 includes/functions.php:4339
1979
  msgctxt "Version"
1980
  msgid "Unknown"
1981
  msgstr "Neznana"
1982
 
1983
+ #: includes/functions.old.php:4265 includes/functions.php:4339
1984
  msgctxt "Times"
1985
  msgid "DISPLAYED"
1986
  msgstr "PRIKAZANO"
1987
 
1988
+ #: includes/functions.old.php:4265 includes/functions.php:4339
1989
  msgid "No version"
1990
  msgstr "Brez različice"
1991
 
1992
+ #: includes/functions.old.php:4266 includes/functions.php:4340
1993
  msgctxt "Times"
1994
  msgid "BLOCKED"
1995
  msgstr "BLOKIRANO"
1996
 
1997
+ #: includes/functions.old.php:4328 includes/functions.php:4402
1998
  msgid "Impressions"
1999
  msgstr "Prikazi"
2000
 
2001
  #: includes/functions.old.php:4329 includes/functions.old.php:4330
2002
+ #: includes/functions.old.php:4385 includes/functions.php:4403
2003
+ #: includes/functions.php:4404 includes/functions.php:4459
2004
  msgid "Clicks"
2005
  msgstr "Kliki"
2006
 
2007
+ #: includes/functions.old.php:4330 includes/functions.php:4404
2008
  msgid "events"
2009
  msgstr "dogodki"
2010
 
2011
+ #: includes/functions.old.php:4331 includes/functions.php:4405
2012
  msgid "Ad Blocking Share"
2013
  msgstr "Delež blokiranja oglasov"
2014
 
2015
  #. translators: CTR as Click Through Rate
2016
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
2017
+ #: includes/functions.php:4405 includes/functions.php:4465
2018
  msgid "CTR"
2019
  msgstr "CTR"
2020
 
2021
+ #: includes/functions.old.php:4473 includes/functions.php:4547
2022
  msgid "pageviews"
2023
  msgid_plural "pageviews"
2024
  msgstr[0] "ogled strani"
2026
  msgstr[2] "oglede strani"
2027
  msgstr[3] "ogledov strani"
2028
 
2029
+ #: includes/functions.old.php:4473 includes/functions.php:4547
2030
  msgid "impressions"
2031
  msgid_plural "impressions"
2032
  msgstr[0] "prikaz"
2034
  msgstr[2] "prikazi"
2035
  msgstr[3] "prikazov"
2036
 
2037
+ #: includes/functions.old.php:4477 includes/functions.php:4551
2038
  msgid "event"
2039
  msgid_plural "events"
2040
  msgstr[0] "dogodek"
2042
  msgstr[2] "dogodki"
2043
  msgstr[3] "dogodkov"
2044
 
2045
+ #: includes/functions.old.php:4572 includes/functions.php:4646
2046
  msgctxt "Pageviews / Impressions"
2047
  msgid "Average"
2048
  msgstr "Povprečni"
2049
 
2050
+ #: includes/functions.old.php:4593 includes/functions.php:4667
2051
  msgctxt "Ad Blocking / Clicks"
2052
  msgid "Average"
2053
  msgstr "Povprečno"
2054
 
2055
+ #: includes/functions.old.php:4617 includes/functions.php:4691
2056
  msgctxt "Ad Blocking Share / CTR"
2057
  msgid "Average"
2058
  msgstr "Povprečni"
2059
 
2060
  #. Translators: %s: Ad Inserter Pro
2061
  #: includes/functions.old.php:4799 includes/functions.old.php:4891
2062
+ #: includes/functions.old.php:5207 includes/functions.php:4873
2063
+ #: includes/functions.php:4965 includes/functions.php:5306 strings.php:184
2064
  msgid "%s Report"
2065
  msgstr "%s Poročilo"
2066
 
2067
+ #: includes/functions.old.php:5113 includes/functions.php:5212
2068
  msgid "for last month"
2069
  msgstr "za zadnji mesec"
2070
 
2071
+ #: includes/functions.old.php:5118 includes/functions.php:5217
2072
  msgid "for this month"
2073
  msgstr "za ta mesec"
2074
 
2075
+ #: includes/functions.old.php:5123 includes/functions.php:5222
2076
  msgid "for this year"
2077
  msgstr "za to leto"
2078
 
2079
+ #: includes/functions.old.php:5128 includes/functions.php:5227
2080
  msgid "for the last 15 days"
2081
  msgstr "za zadnjih 15 dni"
2082
 
2083
+ #: includes/functions.old.php:5133 includes/functions.php:5232
2084
  msgid "for the last 30 days"
2085
  msgstr "za zadnjih 30 dni"
2086
 
2087
+ #: includes/functions.old.php:5138 includes/functions.php:5237
2088
  msgid "for the last 90 days"
2089
  msgstr "za zadnjih 90 dni"
2090
 
2091
+ #: includes/functions.old.php:5143 includes/functions.php:5242
2092
  msgid "for the last 180 days"
2093
  msgstr "za zadnjih 180 dni"
2094
 
2095
+ #: includes/functions.old.php:5148 includes/functions.php:5247
2096
  msgid "for the last 365 days"
2097
  msgstr "za zadnjih 365 dni"
2098
 
2099
+ #: includes/functions.php:517
2100
  msgid "Pin list"
2101
  msgstr "Pripni seznam"
2102
 
2103
  #. translators: %s: Ad Inserter Pro
2104
+ #: includes/functions.php:1391
2105
  msgid "Warning: %s plugin update server is not accessible"
2106
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
2107
 
2108
  #. translators: updates are not available
2109
+ #: includes/functions.php:1393
2110
  msgid "updates"
2111
  msgstr "posodobitve"
2112
 
2113
  #. translators: updates are not available
2114
+ #: includes/functions.php:1395
2115
  msgid "are not available"
2116
  msgstr "niso na razpolago"
2117
 
2139
  msgid "Placeholder"
2140
  msgstr "Polnilo"
2141
 
2142
+ #: includes/placeholders.php:363 settings.php:904 settings.php:4171
2143
  msgid "Size"
2144
  msgstr "Velikost"
2145
 
2272
  msgid "Ad Blocking Detected Message Preview"
2273
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2274
 
2275
+ #: includes/preview-adb.php:348 settings.php:2785
2276
  msgid "Message CSS"
2277
  msgstr "CSS sporočila"
2278
 
2279
+ #: includes/preview-adb.php:353 settings.php:2793
2280
  msgid "Overlay CSS"
2281
  msgstr "CSS prevleke"
2282
 
2316
  msgid "background"
2317
  msgstr "ozadje"
2318
 
2319
+ #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1255
2320
  msgid "Alignment"
2321
  msgstr "Poravnava"
2322
 
2461
  "Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
2462
  "Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
2463
 
2464
+ #: settings.php:172 settings.php:1144
2465
  msgid ""
2466
  "Settings for individual exceptions have been updated. Please check all "
2467
  "blocks that have exceptions and and then save settings."
2473
  msgid "Online documentation"
2474
  msgstr "Spletna Dokumentacija"
2475
 
2476
+ #: settings.php:218 settings.php:740 settings.php:2181
2477
  msgid "Show AdSense ad units"
2478
  msgstr "Pokaži oglasne enote AdSense"
2479
 
2481
  msgid "Edit ads.txt file"
2482
  msgstr "Uredi datoteko ads.txt"
2483
 
2484
+ #: settings.php:226 settings.php:1087
2485
  msgid "Check theme for available positions for automatic insertion"
2486
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2487
 
2620
  msgid "General Settings"
2621
  msgstr "Splošne Nastavitve"
2622
 
2623
+ #: settings.php:688 settings.php:2512 settings.php:2579 settings.php:2765
2624
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2625
  msgstr ""
2626
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
2627
 
2628
+ #: settings.php:695
2629
  msgid "Toggle tools"
2630
  msgstr "Preklopi orodja"
2631
 
2632
+ #: settings.php:703
2633
  msgid "Process PHP code in block"
2634
  msgstr "Procesiraj PHP kodo v bloku"
2635
 
2636
+ #: settings.php:710
2637
  msgid "Disable insertion of this block"
2638
  msgstr "Onemogoči vstavljanje tega bloka"
2639
 
2640
+ #: settings.php:722
2641
  msgid "Toggle code generator"
2642
  msgstr "Preklopi generator kode"
2643
 
2644
+ #: settings.php:726
2645
  msgid "Toggle rotation editor"
2646
  msgstr "Preklopi urejevalnik rotacije"
2647
 
2648
+ #: settings.php:730
2649
  msgid "Open visual HTML editor"
2650
  msgstr "Odpri vizualni HTML urejevalnik"
2651
 
2652
+ #: settings.php:749
2653
  msgid "Clear block"
2654
  msgstr "Počisti blok"
2655
 
2656
+ #: settings.php:754 settings.php:4043
2657
  msgid "Copy block"
2658
  msgstr "Kopiraj blok"
2659
 
2660
+ #: settings.php:758
2661
  msgid "Paste name"
2662
  msgstr "Prilepi ime"
2663
 
2664
+ #: settings.php:762
2665
  msgid "Paste code"
2666
  msgstr "Prilepi kodo"
2667
 
2668
+ #: settings.php:766
2669
  msgid "Paste settings"
2670
  msgstr "Prilepi nastavitve"
2671
 
2672
+ #: settings.php:770
2673
  msgid "Paste block (name, code and settings)"
2674
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
2675
 
2676
+ #: settings.php:789
2677
  msgid "Rotation groups"
2678
  msgstr "Skupine za rotacijo"
2679
 
2680
+ #: settings.php:793
2681
  msgid "Remove option"
2682
  msgstr "Odstrani različico"
2683
 
2684
+ #: settings.php:797
2685
  msgid "Add option"
2686
  msgstr "Dodaj različico"
2687
 
2688
+ #: settings.php:812
2689
  msgid "Import code"
2690
  msgstr "Uvozi kodo"
2691
 
2692
+ #: settings.php:816
2693
  msgid "Generate code"
2694
  msgstr "Generiraj kodo"
2695
 
2696
+ #: settings.php:821
2697
  msgid "Banner"
2698
  msgstr "Pasica"
2699
 
2700
+ #: settings.php:832
2701
  msgid "Image"
2702
  msgstr "Slika"
2703
 
2704
+ #: settings.php:840
2705
  msgid "Link"
2706
  msgstr "Povezava"
2707
 
2708
+ #: settings.php:851
2709
  msgid "Open link in a new tab"
2710
  msgstr "Odpri povezavo v novem zavihku"
2711
 
2712
+ #: settings.php:852
2713
  msgid "Select Image"
2714
  msgstr "Izberi Sliko"
2715
 
2716
+ #: settings.php:853
2717
  msgid "Select Placeholder"
2718
  msgstr "Izberi Polnilo"
2719
 
2720
+ #: settings.php:865
2721
  msgid "Comment"
2722
  msgstr "Komentar"
2723
 
2724
+ #: settings.php:874
2725
  msgctxt "AdSense"
2726
  msgid "Publisher ID"
2727
  msgstr "ID založnika"
2728
 
2729
+ #: settings.php:883
2730
  msgctxt "AdSense"
2731
  msgid "Ad Slot ID"
2732
  msgstr "ID mesta"
2733
 
2734
+ #: settings.php:892
2735
  msgid "Ad Type"
2736
  msgstr "Vrsta"
2737
 
2738
+ #: settings.php:916
2739
  msgid "AMP Ad"
2740
  msgstr "AMP Oglas"
2741
 
2742
+ #: settings.php:933
2743
  msgid "Show ad units from your AdSense account"
2744
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
2745
 
2746
+ #: settings.php:933
2747
  msgid "AdSense ad units"
2748
  msgstr "Oglasne enote AdSense"
2749
 
2750
+ #: settings.php:950
2751
  msgctxt "AdSense"
2752
  msgid "Layout"
2753
  msgstr "Postavitev"
2754
 
2755
+ #: settings.php:959
2756
  msgctxt "AdSense"
2757
  msgid "Layout Key"
2758
  msgstr "Ključ postavitve"
2759
 
2760
+ #: settings.php:969
2761
  msgid "Full width"
2762
  msgstr "Celotna širina"
2763
 
2764
+ #: settings.php:971
2765
  msgctxt "Full width"
2766
  msgid "Enabled"
2767
  msgstr "Omogočena"
2768
 
2769
+ #: settings.php:972
2770
  msgctxt "Full width"
2771
  msgid "Disabled"
2772
  msgstr "Onemogočena"
2773
 
2774
+ #: settings.php:1053
2775
  msgid ""
2776
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2777
  "Cookie or Referer (domain)"
2779
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
2780
  "parametrov, Piškotkov ali napotiteljev (domen)"
2781
 
2782
+ #: settings.php:1053
2783
  msgid "Lists"
2784
  msgstr "Seznami"
2785
 
2786
+ #: settings.php:1054
2787
  msgid "Widget, Shortcode and PHP function call"
2788
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
2789
 
2790
+ #: settings.php:1054
2791
  msgid "Manual"
2792
  msgstr "Ročno"
2793
 
2794
+ #: settings.php:1055
2795
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2796
  msgstr ""
2797
  "Zaznavanje Naprave na strani Strežnika/Klienta (Namizni, Tablica, Telefon)"
2798
 
2799
+ #: settings.php:1055
2800
  msgid "Devices"
2801
  msgstr "Naprave"
2802
 
2803
+ #: settings.php:1056
2804
  msgid ""
2805
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2806
  "feeds), Filter, Scheduling, General tag"
2808
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
2809
  "RSS), Filter, Urnik, Splošna oznaka"
2810
 
2811
+ #: settings.php:1056
2812
  msgid "Misc"
2813
  msgstr "Razno"
2814
 
2815
+ #: settings.php:1057
2816
  msgid "Preview code and alignment"
2817
  msgstr "Predogled kode in poravnave"
2818
 
2819
+ #: settings.php:1060 settings.php:2165
2820
  msgid ""
2821
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2822
  "editor is active before saving settings."
2824
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
2825
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
2826
 
2827
+ #: settings.php:1073 settings.php:1074
2828
  msgid "Enable insertion on posts"
2829
  msgstr "Omogoči vstavljanje na prispevkih"
2830
 
2831
+ #: settings.php:1074 settings.php:3311
2832
  msgid "Posts"
2833
  msgstr "Prispevki"
2834
 
2835
+ #: settings.php:1078 settings.php:1079
2836
  msgid ""
2837
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2838
  "page or theme homepage (available positions may depend on hooks used by the "
2842
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
2843
  "lahko odvisni od ročic, ki jih tema uporablja)"
2844
 
2845
+ #: settings.php:1079 settings.php:3313
2846
  msgid "Homepage"
2847
  msgstr "Domača stran"
2848
 
2849
+ #: settings.php:1083 settings.php:1084
2850
  msgid "Enable insertion on category blog pages (including sub-pages)"
2851
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
2852
 
2853
+ #: settings.php:1084 settings.php:3314
2854
  msgid "Category pages"
2855
  msgstr "Strani kategorij"
2856
 
2857
+ #: settings.php:1094 settings.php:1095
2858
  msgid "Enable insertion on static pages"
2859
  msgstr "Omogoči vstavljanje na statičnih straneh"
2860
 
2861
+ #: settings.php:1095 settings.php:3312
2862
  msgid "Static pages"
2863
  msgstr "Statične strani"
2864
 
2865
+ #: settings.php:1099 settings.php:1100
2866
  msgid "Enable insertion on search blog pages"
2867
  msgstr "Omogoči vstavljanje na iskalnih straneh"
2868
 
2869
+ #: settings.php:1100 settings.php:3316
2870
  msgid "Search pages"
2871
  msgstr "Iskalne strani"
2872
 
2873
+ #: settings.php:1104 settings.php:1105
2874
  msgid "Enable insertion on tag or archive blog pages"
2875
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
2876
 
2877
+ #: settings.php:1108
2878
  msgid "Toggle settings for default insertion and list of individual exceptions"
2879
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
2880
 
2881
+ #: settings.php:1120
2882
  msgid ""
2883
  "Enable individual post/page exceptions for insertion of this block. They can "
2884
  "be configured on the individual post/page editor page (in the settings below "
2888
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
2889
  "nastavitvah pod urejevalnikom)."
2890
 
2891
+ #: settings.php:1121
2892
  msgid ""
2893
  "Enable individual post/page exceptions for insertion of this block. When "
2894
  "enabled they can be configured on the individual post/page editor page (in "
2898
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
2899
  "strani (v nastavitvah pod urejevalnikom)."
2900
 
2901
+ #: settings.php:1121
2902
  msgid "Use exceptions for individual posts or pages to change insertion"
2903
  msgstr ""
2904
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
2905
 
2906
  #. Translators: Enabled means...
2907
+ #: settings.php:1129
2908
  msgid ""
2909
  "means the insertion for this block is enabled by default and disabled for "
2910
  "exceptions."
2913
  "izjeme."
2914
 
2915
  #. Translators: Disabled means...
2916
+ #: settings.php:1130
2917
  msgid ""
2918
  "means the insertion for this block is disabled by default and enabled for "
2919
  "exceptions."
2921
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
2922
  "izjeme."
2923
 
2924
+ #: settings.php:1131
2925
  msgid ""
2926
  "When individual post/page exceptions are enabled they can be configured on "
2927
  "the individual post/page editor page (in the settings below the editor)."
2930
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
2931
  "urejevalnikom)."
2932
 
2933
+ #: settings.php:1139
2934
  msgid ""
2935
  "No exception for post or static page defined. Block will not be inserted."
2936
  msgstr ""
2937
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
2938
 
2939
+ #: settings.php:1157
2940
  msgctxt "post"
2941
  msgid "Type"
2942
  msgstr "Vrsta"
2943
 
2944
  #. translators: %d: block number
2945
+ #: settings.php:1159
2946
  msgid "Are you sure you want to clear all exceptions for block %d?"
2947
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok %d?"
2948
 
2949
+ #: settings.php:1186 settings.php:1334 settings.php:1957
2950
  msgid "Insertion"
2951
  msgstr "Vstavljanje"
2952
 
2953
+ #: settings.php:1224
2954
  msgid ""
2955
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2956
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
2966
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
2967
  "število pomeni štetje z nasprotne smeri"
2968
 
2969
+ #: settings.php:1225
2970
  msgid ""
2971
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2972
  "means every N images, empty means all images, 0 means random image, value "
2981
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
2982
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
2983
 
2984
+ #: settings.php:1238
2985
  msgid ""
2986
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2987
  "numbers, %N means every N excerpts, empty means all excerpts"
2990
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
2991
  "izvlečki"
2992
 
2993
+ #: settings.php:1239
2994
  msgid ""
2995
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2996
  "numbers, %N means every N posts, empty means all posts"
2999
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
3000
  "prispevki"
3001
 
3002
+ #: settings.php:1240
3003
  msgid ""
3004
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3005
  "numbers, %N means every N comments, empty means all comments"
3008
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
3009
  "vsi komentarji"
3010
 
3011
+ #: settings.php:1247
3012
  msgid "Toggle paragraph counting settings"
3013
  msgstr "Preklopi nastavitve za štetje odstavkov"
3014
 
3015
+ #: settings.php:1248
3016
  msgid "Toggle paragraph clearance settings"
3017
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
3018
 
3019
+ #: settings.php:1251
3020
  msgid "Toggle insertion filter settings"
3021
  msgstr "Preklopi nastavitve filtra vstavljanja"
3022
 
3023
+ #: settings.php:1269
3024
  msgid "Toggle insertion and alignment icons"
3025
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
3026
 
3027
+ #: settings.php:1283
3028
  msgid "Custom CSS code for the wrapping div"
3029
  msgstr "CSS koda po meri za div za ovijanje"
3030
 
3031
+ #: settings.php:1286 settings.php:1287 settings.php:1288 settings.php:1289
3032
+ #: settings.php:1290 settings.php:1291
3033
  msgid "CSS code for the wrapping div, click to edit"
3034
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3035
 
3036
+ #: settings.php:1304
3037
  msgid "HTML element"
3038
  msgstr "HTML element"
3039
 
3040
+ #: settings.php:1317
3041
  msgid "HTML element selector or comma separated list of selectors"
3042
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3043
 
3044
+ #: settings.php:1323 settings.php:2670
3045
  msgid "Action"
3046
  msgstr "Akcija"
3047
 
3048
+ #: settings.php:1335
3049
  msgid ""
3050
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3051
  "Server-side insertion inserts block when the page is generated but needs "
3055
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3056
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3057
 
3058
+ #: settings.php:1345
3059
  msgid "JavaScript code position"
3060
  msgstr "Položaj JavaScript kode"
3061
 
3062
+ #: settings.php:1346
3063
  msgid ""
3064
  "Page position where the JavaScript code for client-side insertion will be "
3065
  "inserted. Should be after the HTML element if not waiting for DOM ready."
3068
  "strani klienta. Biti mora za HTML elementom, če se ne čaka na pripravljen "
3069
  "DOM."
3070
 
3071
+ #: settings.php:1361
3072
  msgid "Count"
3073
  msgstr "Štej"
3074
 
3075
+ #: settings.php:1367
3076
  msgid "paragraphs with tags"
3077
  msgstr "odstavke z značkami"
3078
 
3079
+ #: settings.php:1373
3080
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3081
  msgstr ""
3082
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3083
 
3084
+ #: settings.php:1382
3085
  msgid "that have between"
3086
  msgstr "ki imajo med"
3087
 
3088
+ #: settings.php:1388
3089
  msgid "Minimum number of paragraph words, leave empty for no limit"
3090
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3091
 
3092
+ #: settings.php:1397
3093
  msgid "Maximum number of paragraph words, leave empty for no limit"
3094
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3095
 
3096
+ #: settings.php:1400
3097
  msgid "words"
3098
  msgstr "besed"
3099
 
3100
+ #: settings.php:1415 settings.php:1474 settings.php:1544 settings.php:1570
3101
  msgid "Comma separated texts"
3102
  msgstr "Z vejico ločena besedila"
3103
 
3104
+ #: settings.php:1428
3105
  msgid ""
3106
  "Count also paragraphs inside these elements - defined on general plugin "
3107
  "settings page - tab [*] / tab General"
3108
  msgstr ""
3109
+ "Štej tudi odstavke znotraj teh elementov - določeni na strani splošnih "
3110
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3111
 
3112
  #. Translators: %s: HTML tags
3113
+ #: settings.php:1434
3114
  msgid "Count inside %s elements"
3115
  msgstr "Štej znotraj elementov %s"
3116
 
3117
  #. translators: inside [HTML tags] elements that contain
3118
+ #: settings.php:1446
3119
  msgid "inside"
3120
  msgstr "znotraj"
3121
 
3122
+ #: settings.php:1452
3123
  msgid "Comma separated HTML tag names of container elements"
3124
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3125
 
3126
  #. translators: inside [HTML tags] elements that contain
3127
+ #: settings.php:1461
3128
  msgid "elements that"
3129
  msgstr "elementov, ki"
3130
 
3131
+ #: settings.php:1487 settings.php:2080
3132
  msgid "Post/Static page must have between"
3133
  msgstr "Prispevek/Statična stran mora imeti med"
3134
 
3135
+ #: settings.php:1493
3136
  msgid "Minimum number of paragraphs, leave empty for no limit"
3137
  msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
3138
 
3139
+ #: settings.php:1502
3140
  msgid "Maximum number of paragraphs, leave empty for no limit"
3141
  msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
3142
 
3143
  #. Translators: Post/Static page must have between X and Y paragraphs
3144
+ #: settings.php:1505
3145
  msgid "paragraph"
3146
  msgid_plural "paragraphs"
3147
  msgstr[0] "odstavek"
3149
  msgstr[2] "odstavke"
3150
  msgstr[3] "odstavkov"
3151
 
3152
+ #: settings.php:1513
3153
  msgid "Minimum number of words in paragraphs above"
3154
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3155
 
3156
+ #: settings.php:1519
3157
  msgid ""
3158
  "Used only with automatic insertion After paragraph and empty paragraph "
3159
  "numbers"
3161
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3162
  "številkami odstavkov"
3163
 
3164
+ #: settings.php:1529 settings.php:1555
3165
  msgid "In"
3166
  msgstr "V"
3167
 
3168
+ #: settings.php:1535
3169
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3170
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3171
 
3172
+ #: settings.php:1538
3173
  msgid "paragraphs above avoid"
3174
  msgstr "odstavkih zgoraj se izogni"
3175
 
3176
+ #: settings.php:1561
3177
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3178
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3179
 
3180
+ #: settings.php:1564
3181
  msgid "paragraphs below avoid"
3182
  msgstr "odstavkih spodaj se izogni"
3183
 
3184
+ #: settings.php:1580
3185
  msgid "If text is found"
3186
  msgstr "Če je besedilo najdeno"
3187
 
3188
+ #: settings.php:1587
3189
  msgid "check up to"
3190
  msgstr "preveri do"
3191
 
3192
+ #: settings.php:1595
3193
  msgctxt "check up to"
3194
  msgid "paragraphs"
3195
  msgstr "odstavkov"
3196
 
3197
+ #: settings.php:1611
3198
  msgid "Categories"
3199
  msgstr "Kategorije"
3200
 
3201
+ #: settings.php:1614
3202
  msgid "Toggle category editor"
3203
  msgstr "Preklopi urejevalnik kategorij"
3204
 
3205
+ #: settings.php:1617
3206
  msgid "Comma separated category slugs"
3207
  msgstr "Z vejico ločeni ključi kategorij"
3208
 
3209
+ #: settings.php:1621
3210
  msgid "Blacklist categories"
3211
  msgstr "Črni seznam kategorij"
3212
 
3213
+ #: settings.php:1625
3214
  msgid "Whitelist categories"
3215
  msgstr "Beli seznam kategorij"
3216
 
3217
+ #: settings.php:1637
3218
  msgid "Tags"
3219
  msgstr "Oznake"
3220
 
3221
+ #: settings.php:1640
3222
  msgid "Toggle tag editor"
3223
  msgstr "Preklopi urejevalnik oznak"
3224
 
3225
+ #: settings.php:1643
3226
  msgid "Comma separated tag slugs"
3227
  msgstr "Z vejico ločeni ključi oznak"
3228
 
3229
+ #: settings.php:1647
3230
  msgid "Blacklist tags"
3231
  msgstr "Črni seznam oznak"
3232
 
3233
+ #: settings.php:1651
3234
  msgid "Whitelist tags"
3235
  msgstr "Beli seznam oznak"
3236
 
3237
+ #: settings.php:1663
3238
  msgid "Taxonomies"
3239
  msgstr "Taksonomije"
3240
 
3241
+ #: settings.php:1666
3242
  msgid "Toggle taxonomy editor"
3243
  msgstr "Preklopi urejevalnik taksonomij"
3244
 
3245
+ #: settings.php:1669
3246
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3247
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3248
 
3249
+ #: settings.php:1673
3250
  msgid "Blacklist taxonomies"
3251
  msgstr "Črni seznam taksonomij"
3252
 
3253
+ #: settings.php:1677
3254
  msgid "Whitelist taxonomies"
3255
  msgstr "Beli seznam taksonomij"
3256
 
3257
+ #: settings.php:1689
3258
  msgid "Post IDs"
3259
  msgstr "ID-ji prispevkov"
3260
 
3261
+ #: settings.php:1692
3262
  msgid "Toggle post/page ID editor"
3263
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3264
 
3265
+ #: settings.php:1695
3266
  msgid "Comma separated post/page IDs"
3267
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3268
 
3269
+ #: settings.php:1699
3270
  msgid "Blacklist IDs"
3271
  msgstr "Črni seznam ID-jev"
3272
 
3273
+ #: settings.php:1703
3274
  msgid "Whitelist IDs"
3275
  msgstr "Beli seznam ID-jev"
3276
 
3277
+ #: settings.php:1715
3278
  msgid "Urls"
3279
  msgstr "Url-ji"
3280
 
3281
+ #: settings.php:1718
3282
  msgid "Toggle url editor"
3283
  msgstr "Preklopi urejevalnik url-jev"
3284
 
3285
+ #: settings.php:1721
3286
  msgid ""
3287
  "Comma separated urls (page addresses) starting with / after domain name (e."
3288
  "g. /permalink-url, use only when you need to taget a specific url not "
3294
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3295
  "začetek*. *url-vzorec*, *url-konec)"
3296
 
3297
+ #: settings.php:1725
3298
  msgid "Blacklist urls"
3299
  msgstr "Črni seznam url-jev"
3300
 
3301
+ #: settings.php:1729
3302
  msgid "Whitelist urls"
3303
  msgstr "Beli seznam url-jev"
3304
 
3305
+ #: settings.php:1740
3306
  msgid "Url parameters"
3307
  msgstr "Url parametri"
3308
 
3309
+ #: settings.php:1744
3310
  msgid "Toggle url parameter and cookie editor"
3311
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3312
 
3313
+ #: settings.php:1747
3314
  msgid ""
3315
  "Comma separated url query parameters or cookies with optional values (use "
3316
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
3319
  "vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
3320
  "'piškotek=vrednost')"
3321
 
3322
+ #: settings.php:1751
3323
  msgid "Blacklist url parameters"
3324
  msgstr "Črni seznam url parametrov"
3325
 
3326
+ #: settings.php:1755
3327
  msgid "Whitelist url parameters"
3328
  msgstr "Beli seznam url parametrov"
3329
 
3330
+ #: settings.php:1766
3331
  msgid "Referrers"
3332
  msgstr "Napotitelji"
3333
 
3334
+ #: settings.php:1769
3335
  msgid "Toggle referer editor"
3336
  msgstr "Preklopi urejevalnik napotiteljev"
3337
 
3338
+ #: settings.php:1772
3339
  msgid ""
3340
  "Comma separated domains, use # for no referrer, you can also use partial "
3341
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3343
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3344
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3345
 
3346
+ #: settings.php:1776
3347
  msgid "Blacklist referers"
3348
  msgstr "Črni seznam napotiteljev"
3349
 
3350
+ #: settings.php:1780
3351
  msgid "Whitelist referers"
3352
  msgstr "Beli seznam napotiteljev"
3353
 
3354
+ #: settings.php:1791
3355
+ msgid "Clients"
3356
+ msgstr "Odjemalci"
3357
+
3358
+ #: settings.php:1794
3359
+ msgid "Toggle client editor"
3360
+ msgstr "Preklopi urejevalnik odjemalcev"
3361
+
3362
+ #: settings.php:1797
3363
+ msgid "Comma separated names (operating systems, browsers, devices)"
3364
+ msgstr "Z vejico ločena imena (operacijski sistemi, brskalniki, naprave)"
3365
+
3366
+ #: settings.php:1801
3367
+ msgid "Blacklist clients"
3368
+ msgstr "Črni seznam odjemalcev"
3369
+
3370
+ #: settings.php:1805
3371
+ msgid "Whitelist clients"
3372
+ msgstr "Beli seznam odjemalcev"
3373
+
3374
+ #: settings.php:1826
3375
  msgid "Enable widget for this block"
3376
  msgstr "Omogočite gradnik za ta blok"
3377
 
3378
+ #: settings.php:1838
3379
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3380
  msgstr ""
3381
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3382
 
3383
+ #: settings.php:1839 settings.php:4099
3384
  msgid "Shortcode"
3385
  msgstr "Kratka koda"
3386
 
3387
+ #: settings.php:1854
3388
  msgid ""
3389
  "Enable PHP function call to insert this block at any position in theme file. "
3390
  "If function is disabled for block it will return empty string."
3393
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3394
  "prazen niz."
3395
 
3396
+ #: settings.php:1855
3397
  msgid "PHP function"
3398
  msgstr "PHP funkcija"
3399
 
3400
+ #: settings.php:1870
3401
  msgid "Client-side device detection"
3402
  msgstr "Zaznavanje naprave na strani klienta"
3403
 
3404
+ #: settings.php:1871
3405
  msgid "Server-side device detection"
3406
  msgstr "Zaznavanje naprave na strani strežnika"
3407
 
3408
+ #: settings.php:1878
3409
  msgid "Use client-side detection to"
3410
  msgstr "Uporabi zaznavanje na strani klienta in"
3411
 
3412
+ #: settings.php:1880
3413
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3414
  msgstr ""
3415
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3416
 
3417
  #. Translators: only on (the following devices): viewport names (devices)
3418
  #. listed
3419
+ #: settings.php:1885
3420
  msgid "only on"
3421
  msgstr "samo na"
3422
 
3423
+ #: settings.php:1913
3424
  msgid "Device min width %s px"
3425
  msgstr "Najmanjša širina naprave %s px"
3426
 
3427
+ #: settings.php:1939
3428
  msgid "Use server-side detection to insert block only for"
3429
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3430
 
3431
+ #: settings.php:1958
3432
  msgid "Filter"
3433
  msgstr "Filter"
3434
 
3435
+ #: settings.php:1959
3436
  msgid "Word Count"
3437
  msgstr "Število Besed"
3438
 
3439
+ #: settings.php:1960 settings.php:4089
3440
  msgid "Scheduling"
3441
  msgstr "Urnik"
3442
 
3443
+ #: settings.php:1961
3444
  msgid "Display"
3445
  msgstr "Prikaz"
3446
 
3447
+ #: settings.php:1963 settings.php:2207
3448
  msgid "General"
3449
  msgstr "Splošno"
3450
 
3451
+ #: settings.php:1975
3452
  msgid "Old settings for AMP pages detected"
3453
  msgstr "Zaznane stare nastavitve za AMP strani"
3454
 
3455
+ #: settings.php:1975
3456
  msgid ""
3457
  "To insert different codes on normal and AMP pages separate them with "
3458
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3463
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
3464
  "separatorja)."
3465
 
3466
+ #: settings.php:1975
3467
  msgid "AMP pages"
3468
  msgstr "AMP strani"
3469
 
3470
+ #: settings.php:1980
3471
  msgid "Enable insertion for Ajax requests"
3472
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
3473
 
3474
+ #: settings.php:1980
3475
  msgid "Ajax requests"
3476
  msgstr "Ajax zahteve"
3477
 
3478
+ #: settings.php:1985
3479
  msgid "Enable insertion in RSS feeds"
3480
  msgstr "Omogoči vstavljanje v RSS virih"
3481
 
3482
+ #: settings.php:1985
3483
  msgid "RSS Feed"
3484
  msgstr "RSS Vir"
3485
 
3486
+ #: settings.php:1990
3487
  msgid "Enable insertion on page for Error 404: Page not found"
3488
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
3489
 
3490
+ #: settings.php:1990
3491
  msgid "Error 404 page"
3492
  msgstr "Stran napake 404"
3493
 
3494
+ #: settings.php:2002
3495
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3496
  msgstr ""
3497
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
3498
 
3499
+ #: settings.php:2003
3500
  msgid "insertions"
3501
  msgstr "vstavljanj"
3502
 
3503
+ #: settings.php:2005
3504
  msgid ""
3505
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3506
  "General)"
3508
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
3509
  "zavihek Splošno)"
3510
 
3511
+ #: settings.php:2008 settings.php:2376
3512
  msgid "Max blocks per page"
3513
  msgstr "Največ blokov na stran"
3514
 
3515
+ #: settings.php:2020
3516
  msgid "Insert for"
3517
  msgstr "Vstavi za"
3518
 
3519
+ #: settings.php:2028
3520
  msgid ""
3521
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3522
  "currently active). Might speed up insertion on content pages when "
3526
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
3527
  "filter the_content večkrat klican."
3528
 
3529
+ #: settings.php:2031
3530
  msgid "Insert only in the loop"
3531
  msgstr "Vstavi samo v zanki"
3532
 
3533
+ #: settings.php:2037
3534
  msgid ""
3535
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3536
  msgstr ""
3537
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
3538
  "Rocket"
3539
 
3540
+ #: settings.php:2037
3541
  msgid "Disable caching"
3542
  msgstr "Onemogoči predpomnjenje"
3543
 
3544
+ #: settings.php:2049
3545
  msgid "Filter insertions"
3546
  msgstr "Filtriraj vstavljanja"
3547
 
3548
+ #: settings.php:2052
3549
  msgid ""
3550
  "Filter multiple insertions by specifying wanted insertions for this block - "
3551
  "single number, comma separated numbers or %N for every N insertions - empty "
3557
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
3558
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
3559
 
3560
+ #: settings.php:2055
3561
  msgid "using"
3562
  msgstr "z uporabo"
3563
 
3564
+ #: settings.php:2074
3565
  msgid "Checked means specified calls are unwanted"
3566
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
3567
 
3568
+ #: settings.php:2074
3569
  msgid "Invert filter"
3570
  msgstr "Obrni filter"
3571
 
3572
+ #: settings.php:2081
3573
  msgid "Minimum number of post/static page words, leave empty for no limit"
3574
  msgstr ""
3575
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3576
  "omejitev"
3577
 
3578
+ #: settings.php:2083
3579
  msgid "Maximum number of post/static page words, leave empty for no limit"
3580
  msgstr ""
3581
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3582
  "omejitev"
3583
 
3584
+ #: settings.php:2096
3585
  msgid "days after publishing"
3586
  msgstr "dni po objavi"
3587
 
3588
+ #: settings.php:2098
3589
  msgid "Not available"
3590
  msgstr "Ni na razpolago"
3591
 
3592
+ #: settings.php:2111 settings.php:2368
3593
  msgid "Ad label"
3594
  msgstr "Oznaka oglasa"
3595
 
3596
+ #: settings.php:2131
3597
  msgid "General tag"
3598
  msgstr "Splošna oznaka"
3599
 
3600
+ #: settings.php:2135
3601
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3602
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
3603
 
3604
  #. translators: %s: HTML tags
3605
+ #: settings.php:2144
3606
  msgid ""
3607
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
3608
  "side device detection!"
3610
  "%s OPOZORILO: slog %s Brez Ovijanja %s nima kode za ovijanje , ki je "
3611
  "potrebna za zaznavanje naprave na strani klienta!"
3612
 
3613
+ #: settings.php:2156
3614
  msgid "Settings"
3615
  msgstr "Nastavitve"
3616
 
3617
+ #: settings.php:2159
3618
  msgid "Settings timestamp"
3619
  msgstr "Časovni žig nastavitev"
3620
 
3621
+ #: settings.php:2172
3622
  msgid "Are you sure you want to reset all settings?"
3623
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
3624
 
3625
+ #: settings.php:2172
3626
  msgid "Reset All Settings"
3627
  msgstr "Ponastavi Vse Nastavitve"
3628
 
3629
+ #: settings.php:2208
3630
  msgid "Viewports"
3631
  msgstr "Pogledi"
3632
 
3633
+ #: settings.php:2209
3634
  msgid "Hooks"
3635
  msgstr "Ročice"
3636
 
3637
+ #: settings.php:2210
3638
  msgid "Header"
3639
  msgstr "Glava"
3640
 
3641
+ #: settings.php:2211 strings.php:30
3642
  msgid "Footer"
3643
  msgstr "Noga"
3644
 
3645
+ #: settings.php:2216
3646
  msgid "Debugging"
3647
  msgstr "Razhroščevanje"
3648
 
3649
+ #: settings.php:2226
3650
  msgid "Plugin priority"
3651
  msgstr "Prednost vtičnika"
3652
 
3653
+ #: settings.php:2234
3654
  msgid "Output buffering"
3655
  msgstr "Predpomnjenje izhoda"
3656
 
3657
+ #: settings.php:2237
3658
  msgid "Needed for position Above header but may not work with all themes"
3659
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
3660
 
3661
+ #: settings.php:2245
3662
  msgid "Syntax highlighting theme"
3663
  msgstr "Tema za poudarjanje sintakse"
3664
 
3665
+ #: settings.php:2252
3666
  msgctxt "no syntax highlighting themes"
3667
  msgid "None"
3668
  msgstr "Brez"
3669
 
3670
+ #: settings.php:2253
3671
  msgid "No Syntax Highlighting"
3672
  msgstr "Brez Poudarjanja Sintakse"
3673
 
3674
+ #: settings.php:2255
3675
  msgctxt "syntax highlighting themes"
3676
  msgid "Light"
3677
  msgstr "Svetle"
3678
 
3679
+ #: settings.php:2270
3680
  msgctxt "syntax highlighting themes"
3681
  msgid "Dark"
3682
  msgstr "Temne"
3683
 
3684
+ #: settings.php:2296
3685
  msgid "Min. user role for ind. exceptions editing"
3686
  msgstr "Najm. uporabniška vloga za urejanje izjem"
3687
 
3688
+ #: settings.php:2306
3689
  msgid "Disable caching for logged in administrators"
3690
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
3691
 
3692
+ #: settings.php:2309
3693
  msgid ""
3694
  "Enabled means that logged in administrators will see non-cached (live) pages "
3695
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3697
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
3698
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
3699
 
3700
+ #: settings.php:2317
3701
  msgid "Sticky widget mode"
3702
  msgstr "Način za lepljive gradnike"
3703
 
3704
+ #: settings.php:2320
3705
  msgid ""
3706
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3707
  "mode works with most themes but may reload ads on page load."
3710
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
3711
  "nalaganju strani."
3712
 
3713
+ #: settings.php:2328
3714
  msgid "Sticky widget top margin"
3715
  msgstr "Zgornji rob za lepljiv gradnik"
3716
 
3717
+ #: settings.php:2336
3718
  msgid "Dynamic blocks"
3719
  msgstr "Dinamični bloki"
3720
 
3721
+ #: settings.php:2349
3722
  msgid "Functions for paragraph counting"
3723
  msgstr "Funkcije za štetje odstavkov"
3724
 
3725
+ #: settings.php:2352
3726
  msgid ""
3727
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3728
  "functions if paragraphs are not counted properly on non-english pages."
3731
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
3732
  "šteti."
3733
 
3734
+ #: settings.php:2360
3735
  msgid "No paragraph counting inside"
3736
  msgstr "Ni štetja odstavkov znotraj"
3737
 
3738
+ #: settings.php:2371
3739
  msgid "Label text or HTML code"
3740
  msgstr "Besedilo oznake ali HTML koda"
3741
 
3742
+ #: settings.php:2379
3743
  msgid ""
3744
  "Maximum number of inserted blocks per page. You need to enable Max page "
3745
  "insertions (button Misc / tab Insertion) to count block for this limit."
3748
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
3749
  "omejitev."
3750
 
3751
+ #: settings.php:2393
3752
  msgid "Plugin usage tracking"
3753
  msgstr "Sledenje uporabe vtičnika"
3754
 
3755
  #. translators: %s: Ad Inserter
3756
+ #: settings.php:2396
3757
  msgid ""
3758
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3759
  "Only information regarding the WordPress environment and %s usage is "
3763
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
3764
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
3765
 
3766
+ #: settings.php:2414
3767
  msgid "CSS class name for the wrapping div"
3768
  msgstr "Ime CSS razreda za div za ovijanje"
3769
 
3770
+ #: settings.php:2414
3771
  msgid "Block class name"
3772
  msgstr "Ime razreda za blok"
3773
 
3774
+ #: settings.php:2418
3775
  msgid "Include general plugin block class"
3776
  msgstr "Vključi splošni razred vtičnika za blok"
3777
 
3778
+ #: settings.php:2418
3779
  msgid "Block class"
3780
  msgstr "Razred bloka"
3781
 
3782
+ #: settings.php:2423
3783
  msgid "Include block number class"
3784
  msgstr "Vključi razred številke bloka"
3785
 
3786
+ #: settings.php:2423
3787
  msgid "Block number class"
3788
  msgstr "Razred številke bloka"
3789
 
3790
+ #: settings.php:2428
3791
  msgid ""
3792
  "Instead of alignment classes generate inline alignment styles for blocks"
3793
  msgstr ""
3794
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
3795
 
3796
+ #: settings.php:2428
3797
  msgid "Inline styles"
3798
  msgstr "Medvrstični slogi"
3799
 
3800
+ #: settings.php:2434
3801
  msgid "Preview of the block wrapping code"
3802
  msgstr "Predogled kode za ovijanje blokov"
3803
 
3804
+ #: settings.php:2435
3805
  msgid "Wrapping div"
3806
  msgstr "div za ovijanje"
3807
 
3808
+ #: settings.php:2436 settings.php:2876
3809
  msgid "BLOCK CODE"
3810
  msgstr "KODA BLOKA"
3811
 
3812
+ #: settings.php:2444
3813
  msgid "Viewport Settings used for client-side device detection"
3814
  msgstr ""
3815
  "Nastavitve Pogledov, uporabljene za zaznavanje naprav na strani klienta"
3816
 
3817
  #. Translators: %d: viewport number
3818
+ #: settings.php:2452
3819
  msgid "Viewport %d name"
3820
  msgstr "Ime pogleda %d"
3821
 
3822
+ #: settings.php:2455
3823
  msgid "min width"
3824
  msgstr "najmanjša širina"
3825
 
3826
+ #: settings.php:2466
3827
  msgid "Custom Hooks"
3828
  msgstr "Ročice Po Meri"
3829
 
3830
+ #: settings.php:2478 settings.php:2481
3831
  msgid "Enable hook"
3832
  msgstr "Omogoči ročico"
3833
 
3834
  #. translators: %d: hook number
3835
+ #: settings.php:2481
3836
  msgid "Hook %d name"
3837
  msgstr "Ime ročice %d"
3838
 
3839
+ #: settings.php:2484
3840
  msgid "Hook name for automatic insertion selection"
3841
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
3842
 
3843
+ #: settings.php:2487
3844
  msgid "action"
3845
  msgstr "akcija"
3846
 
3847
+ #: settings.php:2490
3848
  msgid "Action name as used in the do_action () function"
3849
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
3850
 
3851
+ #: settings.php:2493
3852
  msgid "priority"
3853
  msgstr "prednost"
3854
 
3855
+ #: settings.php:2496
3856
  msgid "Priority for the hook (default is 10)"
3857
  msgstr "Prednost za ročico (privzeta je 10)"
3858
 
3859
+ #: settings.php:2517
3860
  msgid "Enable insertion of this code into HTML page header"
3861
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
3862
 
3863
+ #: settings.php:2521 settings.php:2588 settings.php:2770
3864
  msgid "Process PHP code"
3865
  msgstr "Procesiraj PHP kodo"
3866
 
3867
+ #: settings.php:2525
3868
  msgid "HTML Page Header Code"
3869
  msgstr "Koda v Glavi HTML Strani"
3870
 
3871
+ #: settings.php:2533
3872
  msgid "Code in the %s section of the HTML page"
3873
  msgstr "Koda v %s delu HTML strani"
3874
 
3875
+ #: settings.php:2534
3876
  msgctxt "code in the header"
3877
  msgid "NOT ENABLED"
3878
  msgstr "NI OMOGOČENA"
3879
 
3880
+ #: settings.php:2551 settings.php:2619
3881
  msgid "Use server-side detection to insert code only for"
3882
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
3883
 
3884
+ #: settings.php:2566
3885
  msgid ""
3886
  "Enable insertion of this code into HTML page header on page for Error 404: "
3887
  "Page not found"
3889
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
3890
  "obstaja"
3891
 
3892
+ #: settings.php:2566 settings.php:2634
3893
  msgid "Insert on Error 404 page"
3894
  msgstr "Vstavi na strani Napake 404"
3895
 
3896
+ #: settings.php:2584
3897
  msgid "Enable insertion of this code into HTML page footer"
3898
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
3899
 
3900
+ #: settings.php:2592
3901
  msgid "HTML Page Footer Code"
3902
  msgstr "Koda v Nogi HTML Strani"
3903
 
3904
  #. translators: %s: HTML tags
3905
+ #: settings.php:2600
3906
  msgid "Code before the %s tag of the the HTML page"
3907
  msgstr "Koda pred %s značko HTML strani"
3908
 
3909
+ #: settings.php:2601
3910
  msgctxt "code in the footer"
3911
  msgid "NOT ENABLED"
3912
  msgstr "NI OMOGOČENA"
3913
 
3914
+ #: settings.php:2634
3915
  msgid ""
3916
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3917
  "Page not found"
3919
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
3920
  "Stran ne obstaja"
3921
 
3922
+ #: settings.php:2650
3923
  msgid "Code for ad blocking detection inserted. Click for details."
3924
  msgstr ""
3925
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
3926
 
3927
+ #: settings.php:2655
3928
  msgid "Enable detection of ad blocking"
3929
  msgstr "Omogoči zaznavanje blokiranja oglasov"
3930
 
3931
+ #: settings.php:2673
3932
  msgid "Global action when ad blocking is detected"
3933
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
3934
 
3935
+ #: settings.php:2679
3936
  msgid "No action for"
3937
  msgstr "Ni akcije za"
3938
 
3939
+ #: settings.php:2680
3940
  msgid "Exceptions for global action when ad blocking is detected."
3941
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
3942
 
3943
+ #: settings.php:2690
3944
  msgid "Delay Action"
3945
  msgstr "Zakasni Akcijo"
3946
 
3947
+ #: settings.php:2693
3948
  msgid ""
3949
  "Number of page views to delay action when ad blocking is detected. Leave "
3950
  "empty for no delay (action fires on first page view). Sets cookie."
3953
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
3954
  "strani). Nastavi piškotek."
3955
 
3956
+ #: settings.php:2693
3957
  msgctxt "Delay Action for x "
3958
  msgid "page views"
3959
  msgstr "ogledov strani"
3960
 
3961
+ #: settings.php:2698
3962
  msgid "No Action Period"
3963
  msgstr "Obdobje Brez Akcije"
3964
 
3965
+ #: settings.php:2701
3966
  msgid ""
3967
  "Number of days to supress action when ad blocking is detected. Leave empty "
3968
  "for no no-action period (action fires always after defined page view delay). "
3972
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
3973
  "strani). Nastavi piškotek."
3974
 
3975
+ #: settings.php:2701
3976
  msgctxt "no action period"
3977
  msgid "days"
3978
  msgstr "dni"
3979
 
3980
+ #: settings.php:2706
3981
  msgid "Custom Selectors"
3982
  msgstr "Selektorji Po Meri"
3983
 
3984
+ #: settings.php:2709
3985
  msgid ""
3986
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3987
  "blocking detection. Invisible element or element with zero height means ad "
3991
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
3992
  "pomeni prisotnost blokiranja oglasov."
3993
 
3994
+ #: settings.php:2721
3995
  msgid "Redirection Page"
3996
  msgstr "Stran za Preusmeritev"
3997
 
3998
+ #: settings.php:2733
3999
  msgid "Custom Url"
4000
  msgstr "Url Po Meri"
4001
 
4002
+ #: settings.php:2738
4003
  msgid ""
4004
  "Static page for redirection when ad blocking is detected. For other pages "
4005
  "select Custom url and set it below."
4007
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
4008
  "strani izberite Url Po Meri in ga nastavite spodaj."
4009
 
4010
+ #: settings.php:2747
4011
  msgid "Custom Redirection Url"
4012
  msgstr "Url za Preusmeritev Po Meri"
4013
 
4014
+ #: settings.php:2759
4015
  msgid "Message HTML code"
4016
  msgstr "HTML koda sporočila"
4017
 
4018
+ #: settings.php:2772
4019
  msgid "Preview message when ad blocking is detected"
4020
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
4021
 
4022
+ #: settings.php:2801
4023
  msgid "Prevent visitors from closing the warning message"
4024
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
4025
 
4026
+ #: settings.php:2801
4027
  msgid "Undismissible Message"
4028
  msgstr "Neodstranljivo Sporočilo"
4029
 
4030
+ #: settings.php:2807
4031
  msgid "Not undismissible for"
4032
  msgstr "Ni neodstranljivo za"
4033
 
4034
+ #: settings.php:2808
4035
  msgid "Users which can close the warning message."
4036
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
4037
 
4038
+ #: settings.php:2822
4039
  msgid ""
4040
  "Force showing admin toolbar for administrators when viewing site. Enable "
4041
  "this option when you are logged in as admin and you don't see admin toolbar."
4044
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
4045
  "skrbnike."
4046
 
4047
+ #: settings.php:2830
4048
  msgid "Disable header code (Header tab)"
4049
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
4050
 
4051
+ #: settings.php:2834
4052
  msgid "Disable footer code (Footer tab)"
4053
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
4054
 
4055
  #. translators: %s: Ad Inserter
4056
+ #: settings.php:2838
4057
  msgid "Disable %s JavaScript code"
4058
  msgstr "Onemogoči %s JavaScript kodo"
4059
 
4060
  #. translators: %s: Ad Inserter
4061
+ #: settings.php:2842
4062
  msgid "Disable %s CSS code"
4063
  msgstr "Onemogoči %s CSS kodo"
4064
 
4065
+ #: settings.php:2846
4066
  msgid ""
4067
  "Disable PHP code processing (in all blocks including header and footer code)"
4068
  msgstr ""
4069
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4070
 
4071
+ #: settings.php:2850
4072
  msgid "Disable insertion of all blocks"
4073
  msgstr "Onemogoči vstavljanje vseh blokov"
4074
 
4075
+ #: settings.php:2854
4076
  msgid "Disable insertions"
4077
  msgstr "Onemogoči vstavljanja"
4078
 
4079
  #. translators: %s: Ad Inserter
4080
+ #: settings.php:2866
4081
  msgid "%s CSS CODE"
4082
  msgstr "%s CSS KODA"
4083
 
4084
+ #: settings.php:2869
4085
  msgid "HEADER CODE"
4086
  msgstr "KODA GLAVE"
4087
 
4088
  #. translators: %s: PHP tags
4089
+ #: settings.php:2875
4090
  msgid "BLOCK PHP CODE"
4091
  msgstr "PHP KODA BLOKA"
4092
 
4093
  #. translators: %s: Ad Inserter
4094
+ #: settings.php:2881
4095
  msgid "%s JS CODE"
4096
  msgstr "%s JS KODA"
4097
 
4098
+ #: settings.php:2884
4099
  msgid "FOOTER CODE"
4100
  msgstr "KODA NOGE"
4101
 
4102
+ #: settings.php:2893
4103
  msgid "Force showing admin toolbar when viewing site"
4104
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4105
 
4106
+ #: settings.php:2900
4107
  msgid "Enable debugging functions in admin toolbar"
4108
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4109
 
4110
+ #: settings.php:2902
4111
  msgid "Debugging functions in admin toolbar"
4112
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4113
 
4114
+ #: settings.php:2909
4115
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4116
  msgstr ""
4117
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4118
  "zaslonih"
4119
 
4120
+ #: settings.php:2911
4121
  msgid "Debugging functions on mobile screens"
4122
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4123
 
4124
+ #: settings.php:2918
4125
  msgid ""
4126
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4127
  "tags, processing) by url parameters for non-logged in users. Enable this "
4136
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
4137
  "vedno omogočeno."
4138
 
4139
+ #: settings.php:2920
4140
  msgid "Remote debugging"
4141
  msgstr "Oddaljeno razhroščevanje"
4142
 
4143
+ #: settings.php:2927
4144
  msgid ""
4145
  "Disable translation to see original texts for the settings and messages in "
4146
  "English"
4148
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4149
  "angleščini"
4150
 
4151
+ #: settings.php:2929
4152
  msgid "Disable translation"
4153
  msgstr "Onemogoči prevod"
4154
 
4155
+ #: settings.php:3299
4156
  msgid "Available positions for current theme"
4157
  msgstr "Razpoložljivi položaji za trenutno temo"
4158
 
4159
+ #: settings.php:3300
4160
  msgid "Error checking pages"
4161
  msgstr "Napaka pri preverjanju strani"
4162
 
4163
+ #: settings.php:3303
4164
  msgid "Toggle theme checker for available positions for automatic insertion"
4165
  msgstr ""
4166
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4167
 
4168
+ #: settings.php:3303
4169
  msgctxt "Button"
4170
  msgid "Check"
4171
  msgstr "Preveri"
4172
 
4173
+ #: settings.php:3310
4174
  msgid "Position"
4175
  msgstr "Položaj"
4176
 
4177
+ #: settings.php:3315
4178
  msgid "Archive pages"
4179
  msgstr "Strani arhiva"
4180
 
4181
+ #: settings.php:3374
4182
  msgid ""
4183
  "Position not available because output buffering (tab [*]) is not enabled"
4184
  msgstr ""
4185
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4186
 
4187
+ #: settings.php:3377 strings.php:226
4188
  msgid "Position not checked yet"
4189
  msgstr "Položaj še ni bil preverjen"
4190
 
4191
+ #: settings.php:3413
4192
  msgid "Toggle active/all blocks"
4193
  msgstr "Preklopi aktive/vse bloke"
4194
 
4195
+ #: settings.php:3417 strings.php:213
4196
  msgid "Rearrange block order"
4197
  msgstr "Preuredi vrstni red blokov"
4198
 
4199
+ #: settings.php:3422
4200
  msgid "Save new block order"
4201
  msgstr "Shrani vrstni red blokov"
4202
 
4203
+ #: settings.php:3448
4204
  msgid "Toggle active/all ad units"
4205
  msgstr "Preklopi aktivne/vse oglasne enote"
4206
 
4207
+ #: settings.php:3452
4208
  msgid "Reload AdSense ad units"
4209
  msgstr "Ponovno naloži oglasne enote AdSense"
4210
 
4211
+ #: settings.php:3456
4212
  msgid "Clear authorization to access AdSense account"
4213
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4214
 
4215
+ #: settings.php:3460 settings.php:4256 settings.php:4323 strings.php:221
4216
  msgid "Google AdSense Homepage"
4217
  msgstr "Google AdSense Domača Stran"
4218
 
4219
+ #: settings.php:3476
4220
  msgid "Switch to physical ads.txt file"
4221
  msgstr "Preklopi na fizično datoteko ads.txt"
4222
 
4223
+ #: settings.php:3477
4224
  msgid "Switch to virtual ads.txt file"
4225
  msgstr "Preklopi na navidezno datoteko ads.txt"
4226
 
4227
  #. translators: %s: ads.txt
4228
+ #: settings.php:3487
4229
  msgid "Open %s"
4230
  msgstr "Odpri %s"
4231
 
4232
+ #: settings.php:3495
4233
  msgid "Reload ads.txt file"
4234
  msgstr "Ponovno naloži datoteko ads.txt"
4235
 
4236
+ #: settings.php:3499 settings.php:4383
4237
  msgid "Save"
4238
  msgstr "Shrani"
4239
 
4240
  #. translators: %s: Ad Inserter
4241
+ #: settings.php:3674
4242
  msgid "ads.txt file: %s virtual ads.txt file"
4243
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4244
 
4245
+ #: settings.php:3679 settings.php:3699 strings.php:205
4246
  msgid "Warning"
4247
  msgstr "Opozorilo"
4248
 
4249
  #. translators: %s: Ad Inserter
4250
+ #: settings.php:3679
4251
  msgid "%s virtual file ads.txt not found"
4252
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4253
 
4254
+ #: settings.php:3687
4255
  msgid "IMPORTANT"
4256
  msgstr "POMEMBNO"
4257
 
4258
+ #: settings.php:3687
4259
  msgid "ads.txt file must be placed on the root domain"
4260
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4261
 
4262
+ #: settings.php:3692
4263
  msgid "ads.txt file"
4264
  msgstr "datoteka ads.txt"
4265
 
4266
+ #: settings.php:3699
4267
  msgid "file %s not found"
4268
  msgstr "datoteka %s ni najdena"
4269
 
4270
+ #: settings.php:3709
4271
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4272
  msgstr ""
4273
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4274
 
4275
  #. translators: %s: Ad Inserter
4276
+ #: settings.php:3715
4277
  msgid "%s virtual ads.txt file"
4278
  msgstr "%s navidezna datoteka ads.txt"
4279
 
4280
+ #: settings.php:3737
4281
  msgid "Advertising system"
4282
  msgstr "Oglaševalski sistem"
4283
 
4284
+ #: settings.php:3738
4285
  msgid "Account ID"
4286
  msgstr "ID Računa"
4287
 
4288
+ #: settings.php:3740
4289
  msgid "Certification authority ID"
4290
  msgstr "ID organa za potrjevanje"
4291
 
4292
+ #: settings.php:3755
4293
  msgid "Account ID found in block and present in ads.txt"
4294
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4295
 
4296
+ #: settings.php:3759
4297
  msgid "Account ID found in block but not present in ads.txt"
4298
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4299
 
4300
+ #: settings.php:4046
4301
  msgid "Preview block"
4302
  msgstr "Predogled bloka"
4303
 
4304
+ #: settings.php:4055
4305
  msgid "Insertion disabled"
4306
  msgstr "Vstavljanje onemogočeno"
4307
 
4308
+ #: settings.php:4085
4309
  msgid "Automatic insertion"
4310
  msgstr "Samodejno vstavljanje"
4311
 
4312
  #. translators: %s HTML tags
4313
+ #: settings.php:4086 settings.php:5016
4314
  msgid "PHP code processing"
4315
  msgstr "Procesiranje PHP kode"
4316
 
4317
+ #: settings.php:4088
4318
  msgid "Device detection"
4319
  msgstr "Zaznavanje naprave"
4320
 
4321
+ #: settings.php:4101
4322
  msgid "Widget positions"
4323
  msgstr "Položaji gradnikov"
4324
 
4325
+ #: settings.php:4167
4326
  msgid "Ad unit"
4327
  msgstr "Enota"
4328
 
4329
+ #: settings.php:4169
4330
  msgid "Slot ID"
4331
  msgstr "ID mesta"
4332
 
4333
+ #: settings.php:4195
4334
  msgid "Copy AdSense code"
4335
  msgstr "Kopiraj kodo AdSense"
4336
 
4337
+ #: settings.php:4198
4338
  msgid "Preview AdSense ad"
4339
  msgstr "Predogled oglasa AdSense"
4340
 
4341
+ #: settings.php:4201
4342
  msgid "Get AdSense code"
4343
  msgstr "Pridobi kodo AdSense"
4344
 
4345
  #. translators: %s: HTML tags
4346
+ #: settings.php:4233
4347
  msgid ""
4348
  "Please %s clear authorization %s with the button %s above and once again "
4349
  "authorize access to your AdSense account."
4351
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4352
  "avtorizirajte dostop do vašega računa AdSense."
4353
 
4354
+ #: settings.php:4252
4355
  msgid "AdSense Integration"
4356
  msgstr "Integracija AdSense"
4357
 
4358
+ #: settings.php:4254
4359
  msgid "AdSense Integration - Step 2"
4360
  msgstr "Integracija AdSense - Korak 2"
4361
 
4362
  #. translators: %s: HTML tags
4363
+ #: settings.php:4260
4364
  msgid ""
4365
  "Authorize %s to access your AdSense account. Click on the %s Get "
4366
  "Authorization Code %s button to open a new window where you can allow "
4373
  "Avtoriziraj. %s"
4374
 
4375
  #. translators: %s: HTML tags
4376
+ #: settings.php:4267
4377
  msgid ""
4378
  "If you get error, can't access ad units or would like to use own Google API "
4379
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4384
  "je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
4385
 
4386
  #. translators: %s: HTML tags
4387
+ #: settings.php:4269
4388
  msgid ""
4389
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4390
  "Authorization Code %s button to open a new window where you can allow "
4397
  "gumb %s Avtoriziraj. %s"
4398
 
4399
  #. translators: %s: HTML tags
4400
+ #: settings.php:4276
4401
  msgid ""
4402
  "If you get error %s invalid client %s click on the button %s Clear and "
4403
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4405
  "Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
4406
  "se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
4407
 
4408
+ #: settings.php:4287
4409
  msgid "Get Authorization Code"
4410
  msgstr "Pridobi Avtoriazcijsko Kodo"
4411
 
4412
+ #: settings.php:4290
4413
  msgid "Enter Authorization Code"
4414
  msgstr "Vnesi Avorizacijsko Kodo"
4415
 
4416
+ #: settings.php:4300
4417
  msgid "Use own API IDs"
4418
  msgstr "Uporabi lastne API ID-je"
4419
 
4420
+ #: settings.php:4302
4421
  msgid "Clear and return to Step 1"
4422
  msgstr "Odstrani in se vrni na Korak 1"
4423
 
4424
+ #: settings.php:4306
4425
  msgid "Authorize"
4426
  msgstr "Avtoriziraj"
4427
 
4428
+ #: settings.php:4322
4429
  msgid "AdSense Integration - Step 1"
4430
  msgstr "Integracija AdSense - Korak 1"
4431
 
4432
  #. translators: %s: Ad Inserter
4433
+ #: settings.php:4326
4434
  msgid ""
4435
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4436
  "To do this you need to authorize %s to access your AdSense account. The "
4443
  "Klienta in Skrivnost Klienta."
4444
 
4445
  #. translators: %s: HTML tags
4446
+ #: settings.php:4335
4447
  msgid "Go to %s Google APIs and Services console %s"
4448
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
4449
 
4450
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4451
+ #: settings.php:4336
4452
  msgid ""
4453
  "Create %1$s project - if the project and IDs are already created click on "
4454
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
4457
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
4458
 
4459
  #. translators: %s: HTML tags
4460
+ #: settings.php:4337
4461
  msgid ""
4462
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4463
  "create a new project"
4466
  "ustvaritev novega projekta"
4467
 
4468
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4469
+ #: settings.php:4338
4470
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4471
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4472
 
4473
  #. translators: %s: HTML tags
4474
+ #: settings.php:4339
4475
  msgid ""
4476
  "Click on project selection, wait for the project to be created and then and "
4477
  "select %s as the current project"
4480
  "izberite %s kot trenutni projekt"
4481
 
4482
  #. translators: %s: HTML tags
4483
+ #: settings.php:4340
4484
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4485
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4486
 
4487
  #. translators: %s: HTML tags
4488
+ #: settings.php:4341
4489
  msgid "Search for adsense and enable %s"
4490
  msgstr "Poiščite adsense in omogočite %s"
4491
 
4492
  #. translators: %s: HTML tags
4493
+ #: settings.php:4342
4494
  msgid "Click on %s CREATE CREDENTIALS %s"
4495
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4496
 
4497
  #. translators: %s: HTML tags
4498
+ #: settings.php:4343
4499
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4500
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
4501
 
4502
  #. translators: %s: HTML tags
4503
+ #: settings.php:4344
4504
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4505
  msgstr ""
4506
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
4507
  "podatki %s"
4508
 
4509
  #. translators: %s: HTML tags
4510
+ #: settings.php:4345
4511
  msgid "Click on %s What credentials do I need? %s"
4512
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
4513
 
4514
  #. translators: %s: HTML tags
4515
+ #: settings.php:4346
4516
  msgid ""
4517
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4518
  "Ad Inserter client %s"
4521
  "%s Ad Inserter klient %s"
4522
 
4523
  #. translators: %s: HTML tags
4524
+ #: settings.php:4347
4525
  msgid ""
4526
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4527
  "enter %s"
4530
  "uporabnikom %s vnesite %s"
4531
 
4532
  #. translators: %s: HTML tags
4533
+ #: settings.php:4348
4534
  msgid "Click on %s Continue %s"
4535
  msgstr "Kliknite na %s Nadaljuj %s"
4536
 
4537
  #. translators: %s: HTML tags
4538
+ #: settings.php:4349
4539
  msgid "Click on %s Done %s"
4540
  msgstr "Kliknite na %s Končaj %s"
4541
 
4542
  #. translators: %s: HTML tags
4543
+ #: settings.php:4350
4544
  msgid ""
4545
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4546
  "secret %s"
4548
  "Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
4549
  "Skrivnost klienta %s"
4550
 
4551
+ #: settings.php:4351
4552
  msgid "Copy them to the appropriate fields below"
4553
  msgstr "Skopirajte ju na ustrezni polji spodaj"
4554
 
4555
+ #: settings.php:4357
4556
  msgid "Client ID"
4557
  msgstr "ID klienta"
4558
 
4559
+ #: settings.php:4360
4560
  msgid "Enter Client ID"
4561
  msgstr "Vnesite ID klienta"
4562
 
4563
+ #: settings.php:4365
4564
  msgid "Client secret"
4565
  msgstr "Skrivnost klienta"
4566
 
4567
+ #: settings.php:4368
4568
  msgid "Enter Client secret"
4569
  msgstr "Vnesite Skrivnost klienta"
4570
 
4571
+ #: settings.php:4378
4572
  msgid "Use default API IDs"
4573
  msgstr "Uporabi privzete API ID-je"
4574
 
4575
+ #: settings.php:4531
4576
  msgid "All posts"
4577
  msgstr "Vsi prispevki"
4578
 
4579
+ #: settings.php:4532
4580
  msgid "All static pages"
4581
  msgstr "Vse statične strani"
4582
 
4583
+ #: settings.php:4683 settings.php:4696 settings.php:4709 settings.php:4724
4584
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4585
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
4586
 
4587
+ #: settings.php:4688 settings.php:4701 settings.php:4714 settings.php:4729
4588
+ #: settings.php:4909 settings.php:4913 settings.php:4931 settings.php:4935
4589
+ #: settings.php:4943 settings.php:4946 settings.php:4952 settings.php:4964
4590
  msgid "Looking for AdSense alternative?"
4591
  msgstr "Iščete alternativo za AdSense?"
4592
 
4593
+ #: settings.php:4740
4594
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4595
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
4596
 
4597
+ #: settings.php:4745 settings.php:4911 settings.php:4915 settings.php:4923
4598
+ #: settings.php:4949
4599
  msgid "Use Infolinks ads with Adsense to earn more"
4600
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
4601
 
4602
+ #: settings.php:4764 settings.php:4802
4603
  msgid "Support plugin development"
4604
  msgstr "Podprite razvoj vtičnika"
4605
 
4606
+ #: settings.php:4765 settings.php:4803
4607
  msgid ""
4608
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4609
  "reviewing the plugin on WordPres"
4611
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
4612
  "razširiti novico z oceno vtičnika na WordPress-u"
4613
 
4614
+ #: settings.php:4765
4615
  msgctxt "Review ad Inserter"
4616
  msgid "Review"
4617
  msgstr "Oceni"
4618
 
4619
+ #: settings.php:4766
4620
  msgid ""
4621
  "Support free Ad Inserter development. If you are making money with Ad "
4622
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4625
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
4626
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
4627
 
4628
+ #: settings.php:4766
4629
  msgid "Donate"
4630
  msgstr "Donirajte"
4631
 
4632
+ #: settings.php:4773 settings.php:4818
4633
  msgid "Average rating of the plugin - Thank you!"
4634
  msgstr "Povprečna ocena vtičnika - Hvala!"
4635
 
4636
  #. translators: %s: Ad Inserter, HTML tags
4637
+ #: settings.php:4784
4638
  msgid ""
4639
  "You've been using %s for a while now, and I hope you're happy with it. "
4640
  "Positive %s reviews %s are a great way to show your appreciation for my "
4648
  "vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
4649
  "monetizacijo vašega spletnega mesta. %s Hvala!"
4650
 
4651
+ #: settings.php:4803
4652
  msgid "Review"
4653
  msgstr "Ocena"
4654
 
4655
+ #: settings.php:4807
4656
  msgid "Ad Inserter on Twitter"
4657
  msgstr "Ad Inserter na Twitter-ju"
4658
 
4659
+ #: settings.php:4808
4660
  msgid "Ad Inserter on Facebook"
4661
  msgstr "Ad Inserter na Facebook-u"
4662
 
4663
+ #: settings.php:4811
4664
  msgid "Follow Ad Inserter"
4665
  msgstr "Sledi Ad Inserter-ju"
4666
 
4667
  #. translators: %s: HTML tags
4668
+ #: settings.php:4838
4669
  msgid ""
4670
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4671
  "and %s Common Settings %s pages"
4674
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
4675
 
4676
  #. translators: %s: HTML tags
4677
+ #: settings.php:4850
4678
  msgid ""
4679
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4680
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
4685
  "%s Infolinks %s oglasno kodo %s"
4686
 
4687
  #. translators: %s: HTML tags
4688
+ #: settings.php:4871
4689
  msgid ""
4690
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4691
  "purchase you refer to us"
4694
  "nakup, ki nam ga posredujete"
4695
 
4696
  #. translators: %s: HTML tags
4697
+ #: settings.php:4878
4698
  msgid ""
4699
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4700
  "diagnose and fix the problem."
4703
  "navodili za diagnozo in rešitvami za težave."
4704
 
4705
  #. translators: %s: HTML tags
4706
+ #: settings.php:4882
4707
  msgid ""
4708
  "If you need any kind of help or support, please do not hesitate to open a "
4709
  "thread on the %s support forum. %s"
4711
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
4712
  "nit na %s podpornem forumu. %s"
4713
 
4714
+ #: settings.php:4927 settings.php:4968
4715
  msgid "A/B testing - Track ad impressions and clicks"
4716
  msgstr "A/B testiranje - Sledi prikazom in klikom"
4717
 
4718
+ #: settings.php:4960 settings.php:4972
4719
  msgid "Code preview with visual CSS editor"
4720
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
4721
 
4722
+ #: settings.php:4980
4723
  msgid "Looking for Pro Ad Management plugin?"
4724
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
4725
 
4726
+ #: settings.php:4981
4727
  msgid "To Optimally Monetize your WordPress website?"
4728
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
4729
 
4730
  #. translators: %s HTML tags
4731
+ #: settings.php:4984
4732
  msgid "%s AdSense Integration %s"
4733
  msgstr "%s Integracija AdSense %s"
4734
 
4735
  #. translators: %s HTML tags
4736
+ #: settings.php:4985
4737
  msgid "Syntax highlighting %s editor %s"
4738
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
4739
 
4740
  #. translators: %s HTML tags
4741
+ #: settings.php:4986
4742
  msgid "%s Code preview %s with visual CSS editor"
4743
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
4744
 
4745
  #. translators: %s HTML tags
4746
+ #: settings.php:4987
4747
  msgid "Simple user interface - all settings on a single page"
4748
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
4749
 
4750
  #. translators: %s HTML tags
4751
+ #: settings.php:4988
4752
  msgid ""
4753
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4754
  "image / excerpt"
4757
  "%s / sliko / izvlečkom"
4758
 
4759
  #. translators: %s HTML tags
4760
+ #: settings.php:4989
4761
  msgid "%s Automatic insertion %s between posts on blog pages"
4762
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
4763
 
4764
  #. translators: %s HTML tags
4765
+ #: settings.php:4990
4766
  msgid "%s Automatic insertion %s before, between and after comments"
4767
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
4768
 
4769
  #. translators: %s HTML tags
4770
+ #: settings.php:4991
4771
  msgid "%s Automatic insertion %s after %s or before %s tag"
4772
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
4773
 
4774
  #. translators: %s HTML tags
4775
+ #: settings.php:4992
4776
  msgid "Automatic insertion at %s custom hook positions %s"
4777
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
4778
 
4779
  #. translators: %s HTML tags
4780
+ #: settings.php:4993
4781
  msgid ""
4782
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4783
  "selectors)"
4786
  "selektorjev)"
4787
 
4788
  #. translators: %s HTML tags
4789
+ #: settings.php:4994
4790
  msgid "%s Insertion exceptions %s for individual posts and pages"
4791
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
4792
 
4793
  #. translators: %s HTML tags
4794
+ #: settings.php:4995
4795
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4796
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
4797
 
4798
  #. translators: %s HTML tags
4799
+ #: settings.php:4996
4800
  msgid ""
4801
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4802
  "scrolls)"
4805
  "se stran pomika)"
4806
 
4807
  #. translators: %s HTML tags
4808
+ #: settings.php:4997
4809
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4810
  msgstr ""
4811
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
4812
 
4813
  #. translators: %s HTML tags
4814
+ #: settings.php:4998
4815
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4816
  msgstr ""
4817
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
4818
 
4819
  #. translators: %s HTML tags
4820
+ #: settings.php:4999
4821
  msgid ""
4822
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4823
  "visible)"
4826
  "postane viden)"
4827
 
4828
  #. translators: %s HTML tags
4829
+ #: settings.php:5000
4830
  msgid ""
4831
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4832
  msgstr ""
4834
  "strani)"
4835
 
4836
  #. translators: %s HTML tags
4837
+ #: settings.php:5001
4838
  msgid "Block %s alignment and style %s customizations"
4839
  msgstr "%s Poravnave in slogi %s bloka po meri"
4840
 
4841
  #. translators: %s HTML tags
4842
+ #: settings.php:5002
4843
  msgid ""
4844
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4845
  "TOS)"
4847
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
4848
 
4849
  #. translators: %s HTML tags
4850
+ #: settings.php:5003
4851
  msgid ""
4852
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4853
  "feeds"
4856
  "virih"
4857
 
4858
  #. translators: %s HTML tags
4859
+ #: settings.php:5004
4860
  msgid "%s Ad rotation %s (works also with caching)"
4861
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
4862
 
4863
  #. translators: %s HTML tags
4864
+ #: settings.php:5005
4865
  msgid "Create, edit and check %s ads.txt %s file"
4866
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
4867
 
4868
  #. translators: %s HTML tags
4869
+ #: settings.php:5006
4870
  msgid ""
4871
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4872
  "AdSense)"
4875
  "AdSense)"
4876
 
4877
  #. translators: %s HTML tags
4878
+ #: settings.php:5007
4879
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4880
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
4881
 
4882
  #. translators: %s HTML tags
4883
+ #: settings.php:5008
4884
  msgid "%s Public web reports %s for clients, export to PDF"
4885
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
4886
 
4887
  #. translators: %s HTML tags
4888
+ #: settings.php:5009
4889
  msgid "Support for %s A/B testing %s"
4890
  msgstr "Podpora za %s A/B testiranje %s"
4891
 
4892
  #. translators: %s HTML tags
4893
+ #: settings.php:5010
4894
  msgid "Frequency capping - %s limit impressions or clicks %s"
4895
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
4896
 
4897
  #. translators: %s HTML tags
4898
+ #: settings.php:5011
4899
  msgid "Click fraud %s protection %s"
4900
  msgstr "%s Zaščita %s pred goljufijo s kliki"
4901
 
4902
  #. translators: %s HTML tags
4903
+ #: settings.php:5012
4904
  msgid "Support for %s lazy loading %s"
4905
  msgstr "Podpora za %s leno nalaganje %s"
4906
 
4907
  #. translators: %s HTML tags
4908
+ #: settings.php:5013
4909
  msgid "Support for ads on %s AMP pages %s"
4910
  msgstr "Podpora za oglase na %s AMP straneh %s"
4911
 
4912
  #. translators: %s HTML tags
4913
+ #: settings.php:5014
4914
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4915
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
4916
 
4917
  #. translators: %s HTML tags
4918
+ #: settings.php:5015
4919
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4920
  msgstr ""
4921
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
4922
 
4923
  #. translators: %s HTML tags
4924
+ #: settings.php:5017
4925
  msgid "%s Banner %s code generator"
4926
  msgstr "Generator kode za %s pasice %s"
4927
 
4928
  #. translators: %s HTML tags
4929
+ #: settings.php:5018
4930
  msgid "Support for %s header and footer %s code"
4931
  msgstr "Podpora za kodo v %s glavi in nogi %s"
4932
 
4933
  #. translators: %s HTML tags
4934
+ #: settings.php:5019
4935
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4936
  msgstr ""
4937
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
4938
 
4939
  #. translators: %s HTML tags
4940
+ #: settings.php:5020
4941
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4942
  msgstr ""
4943
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
4944
  "strežnika"
4945
 
4946
  #. translators: %s HTML tags
4947
+ #: settings.php:5021
4948
  msgid "Client-side %s mobile device detection %s (works with caching)"
4949
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
4950
 
4951
  #. translators: %s HTML tags
4952
+ #: settings.php:5022
4953
  msgid ""
4954
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4955
  "protection"
4958
  "vsebine"
4959
 
4960
  #. translators: %s HTML tags
4961
+ #: settings.php:5023
4962
  msgid "%s Ad blocking statistics %s"
4963
  msgstr "%s Statistika blokiranja oglasov %s"
4964
 
4965
  #. translators: %s HTML tags
4966
+ #: settings.php:5024
4967
  msgid ""
4968
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4969
  "referers"
4971
  "%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
4972
 
4973
  #. translators: %s HTML tags
4974
+ #: settings.php:5025
4975
  msgid ""
4976
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4977
  msgstr ""
4978
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
4979
 
4980
  #. translators: %s HTML tags
4981
+ #: settings.php:5026
4982
  msgid "%s Multisite options %s to limit settings on the sites"
4983
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
4984
 
4985
  #. translators: %s HTML tags
4986
+ #: settings.php:5027
4987
  msgid "%s Import/Export %s block or plugin settings"
4988
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
4989
 
4990
  #. translators: %s HTML tags
4991
+ #: settings.php:5028
4992
  msgid "%s Insertion scheduling %s with fallback option"
4993
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
4994
 
4995
  #. translators: %s HTML tags
4996
+ #: settings.php:5029
4997
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4998
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
4999
 
5000
  #. translators: %s HTML tags
5001
+ #: settings.php:5030
5002
  msgid "Simple troubleshooting with many %s debugging functions %s"
5003
  msgstr ""
5004
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
5005
 
5006
  #. translators: %s HTML tags
5007
+ #: settings.php:5031
5008
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5009
  msgstr ""
5010
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
5011
 
5012
  #. translators: %s HTML tags
5013
+ #: settings.php:5032
5014
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5015
  msgstr ""
5016
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
5017
 
5018
  #. translators: %s HTML tags
5019
+ #: settings.php:5033
5020
  msgid ""
5021
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5022
  msgstr ""
5023
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
5024
 
5025
  #. translators: %s HTML tags
5026
+ #: settings.php:5034
5027
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5028
  msgstr ""
5029
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5030
 
5031
  #. translators: %s HTML tags
5032
+ #: settings.php:5035
5033
  msgid "No ads on the settings page"
5034
  msgstr "Stran z nastavitvami brez oglasov"
5035
 
5036
  #. translators: %s HTML tags
5037
+ #: settings.php:5036
5038
  msgid "Premium support"
5039
  msgstr "Vrhunska podpora"
5040
 
5041
  #. translators: %s HTML tags
5042
+ #: settings.php:5039
5043
  msgid ""
5044
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5045
  "website with many advertising features to automatically insert adverts on "
5066
  "bodo ohranile)."
5067
 
5068
  #. translators: %s HTML tags
5069
+ #: settings.php:5052
5070
  msgid "Looking for %s Pro Ad Management plugin? %s"
5071
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5072
 
5073
  #. translators: %s HTML tags
5074
+ #: settings.php:5057
5075
  msgid "Ads between posts"
5076
  msgstr "Oglasi med prispevki"
5077
 
5078
  #. translators: %s HTML tags
5079
+ #: settings.php:5058
5080
  msgid "Ads between comments"
5081
  msgstr "Oglasi med komentarji"
5082
 
5083
  #. translators: %s HTML tags
5084
+ #: settings.php:5059
5085
  msgid "Support via email"
5086
  msgstr "Podpora prek elektronske pošte"
5087
 
5088
  #. translators: %s HTML tags
5089
+ #: settings.php:5065
5090
  msgid "%s Sticky positions %s"
5091
  msgstr "%s Lepljivi položaji %s"
5092
 
5093
  #. translators: %s HTML tags
5094
+ #: settings.php:5066
5095
  msgid "%s Limit insertions %s"
5096
  msgstr "%s Omeji vstavljanja %s"
5097
 
5098
  #. translators: %s HTML tags
5099
+ #: settings.php:5067
5100
  msgid "%s Clearance %s options"
5101
  msgstr "Možnosti %s izogibanja %s"
5102
 
5103
  #. translators: %s HTML tags
5104
+ #: settings.php:5073
5105
  msgid "Ad rotation"
5106
  msgstr "Vrtenje oglasov"
5107
 
5108
  #. translators: %s HTML tags
5109
+ #: settings.php:5074
5110
  msgid "%s A/B testing %s"
5111
  msgstr "%s A/B testiranje %s"
5112
 
5113
  #. translators: %s HTML tags
5114
+ #: settings.php:5075
5115
  msgid "%s Ad tracking %s"
5116
  msgstr "%s Sledenje oglasom %s"
5117
 
5118
  #. translators: %s HTML tags
5119
+ #: settings.php:5081
5120
  msgid "Support for %s AMP pages %s"
5121
  msgstr "Podpora za %s AMP strani %s"
5122
 
5123
  #. translators: %s HTML tags
5124
+ #: settings.php:5082
5125
  msgid "%s Ad blocking detection %s"
5126
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5127
 
5128
  #. translators: %s HTML tags
5129
+ #: settings.php:5083
5130
  msgid "%s Mobile device detection %s"
5131
  msgstr "%s Zaznavanje mobilne naprave %s"
5132
 
5133
  #. translators: %s HTML tags
5134
+ #: settings.php:5090
5135
  msgid "64 code blocks"
5136
  msgstr "64 kodnih blokov"
5137
 
5138
  #. translators: %s HTML tags
5139
+ #: settings.php:5091
5140
  msgid "%s GEO targeting %s"
5141
  msgstr "%s GEO ciljanje %s"
5142
 
5143
  #. translators: %s HTML tags
5144
+ #: settings.php:5092
5145
  msgid "%s Scheduling %s"
5146
  msgstr "%s Urnik %s"
5147
 
languages/ad-inserter.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Ad Inserter 2.5.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2019-09-22 10:05:32+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,454 +12,454 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: ad-inserter.php:403
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
- #: ad-inserter.php:419
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
- #: ad-inserter.php:426
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
- #: ad-inserter.php:497
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
- #: ad-inserter.php:504
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
- #: ad-inserter.php:513
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
- #: ad-inserter.php:520
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
- #: ad-inserter.php:530
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
  #. translators: Debugging position name Before HTML element
56
- #: ad-inserter.php:1133
57
  msgid "Before"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name After HTML element
61
- #: ad-inserter.php:1138
62
  msgid "After"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name Prepend content of HTML element (before
66
  #. the content of the HTML element)
67
- #: ad-inserter.php:1143 strings.php:103
68
  msgid "Prepend content"
69
  msgstr ""
70
 
71
  #. translators: Debugging position name Append content of HTML element (after
72
  #. the content of the HTML element)
73
- #: ad-inserter.php:1148 strings.php:104
74
  msgid "Append content"
75
  msgstr ""
76
 
77
  #. translators: Debugging position name Replace content of HTML element
78
- #: ad-inserter.php:1153 strings.php:105
79
  msgid "Replace content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace HTML element
83
- #: ad-inserter.php:1158 strings.php:155
84
  msgid "Replace"
85
  msgstr ""
86
 
87
  #. translators: Debugging message when output buffering is enabled
88
- #: ad-inserter.php:1205
89
  msgid "OUTPUT BUFFERING"
90
  msgstr ""
91
 
92
  #. translators: Debugging position
93
- #: ad-inserter.php:1209
94
  msgid "Above Header"
95
  msgstr ""
96
 
97
- #: ad-inserter.php:1418
98
  msgctxt "Menu item"
99
  msgid "Log In"
100
  msgstr ""
101
 
102
  #. translators: %s: Ad Inserter
103
- #: ad-inserter.php:1743 ad-inserter.php:2669
104
  msgid "%s Settings"
105
  msgstr ""
106
 
107
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
108
- #: ad-inserter.php:2190
109
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
110
  msgstr ""
111
 
112
- #: ad-inserter.php:2190
113
  msgid "NO ACTION"
114
  msgstr ""
115
 
116
- #: ad-inserter.php:2191
117
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
118
  msgstr ""
119
 
120
- #: ad-inserter.php:2192
121
  msgid "AD BLOCKING DETECTED - ACTION"
122
  msgstr ""
123
 
124
- #: ad-inserter.php:2193
125
  msgid "AD BLOCKING NOT DETECTED"
126
  msgstr ""
127
 
128
- #: ad-inserter.php:2194
129
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
130
  msgstr ""
131
 
132
- #: ad-inserter.php:2195
133
  msgid "AD BLOCKING DETECTED - NO ACTION"
134
  msgstr ""
135
 
136
  #. Translators: 1: number of blocks, 2: Ad Inserter
137
- #: ad-inserter.php:2394
138
  msgid "Hey, you are now using %1$s %2$s block."
139
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
140
  msgstr[0] ""
141
  msgstr[1] ""
142
 
143
- #: ad-inserter.php:2395 includes/functions.old.php:1652
144
- #: includes/functions.php:1697
145
  msgid "No, thank you."
146
  msgstr ""
147
 
148
  #. Translators: %s: Ad Inserter
149
- #: ad-inserter.php:2398
150
  msgid ""
151
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
152
  msgstr ""
153
 
154
- #: ad-inserter.php:2399 includes/functions.old.php:1655
155
- #: includes/functions.php:1700
156
  msgid "Not now, maybe later."
157
  msgstr ""
158
 
159
- #: ad-inserter.php:2409
160
  msgid "I would really appreciate if you could rate the plugin on WordPres."
161
  msgstr ""
162
 
163
- #: ad-inserter.php:2411
164
  msgid ""
165
  "Positive reviews are a great incentive to fix bugs and to add new features "
166
  "for better monetization of your website. Thank you, Igor"
167
  msgstr ""
168
 
169
  #. translators: %s: Ad Inserter
170
- #: ad-inserter.php:2417
171
  msgid "Rate %s"
172
  msgstr ""
173
 
174
- #: ad-inserter.php:2422
175
  msgid "I already did."
176
  msgstr ""
177
 
178
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
179
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
180
- #: ad-inserter.php:2434 ad-inserter.php:2460
181
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
182
  msgstr ""
183
 
184
- #: ad-inserter.php:2442
185
  msgctxt "Menu item"
186
  msgid "Settings"
187
  msgstr ""
188
 
189
  #. translators: %s: Ad Inserter
190
- #: ad-inserter.php:2560
191
  msgctxt "Meta box name"
192
  msgid "%s Individual Exceptions"
193
  msgstr ""
194
 
195
- #: ad-inserter.php:2589 ad-inserter.php:8656 class.php:2060
196
  #: includes/preview.php:1976 includes/preview.php:2020
197
- #: includes/preview.php:2057 settings.php:4051 strings.php:3
198
  msgid "Block"
199
  msgstr ""
200
 
201
- #: ad-inserter.php:2590 settings.php:4052 settings.php:4137
202
  msgid "Name"
203
  msgstr ""
204
 
205
- #: ad-inserter.php:2593 settings.php:1123
206
  msgid "Default insertion"
207
  msgstr ""
208
 
209
  #. translators: For this post or page
210
- #: ad-inserter.php:2596
211
  msgctxt "Page"
212
  msgid "For this"
213
  msgstr ""
214
 
215
- #: ad-inserter.php:2597
216
  msgctxt "Post"
217
  msgid "For this"
218
  msgstr ""
219
 
220
- #: ad-inserter.php:2609
221
  msgctxt "Enabled/disabled on all"
222
  msgid "pages"
223
  msgstr ""
224
 
225
- #: ad-inserter.php:2612
226
  msgctxt "Enabled/disabled on all"
227
  msgid "posts"
228
  msgstr ""
229
 
230
- #: ad-inserter.php:2630 ad-inserter.php:2642 strings.php:161
231
  msgid "Enabled"
232
  msgstr ""
233
 
234
  #. translators: Menu items
235
- #: ad-inserter.php:2630 ad-inserter.php:2642 includes/functions.old.php:2326
236
- #: includes/functions.php:2373 strings.php:16
237
  msgid "Disabled"
238
  msgstr ""
239
 
240
- #: ad-inserter.php:2632
241
  msgid "No individual exceptions"
242
  msgstr ""
243
 
244
  #. translators: Not enabled for pages or posts
245
- #: ad-inserter.php:2634
246
  msgid "Not enabled for"
247
  msgstr ""
248
 
249
  #. translators: No individual exceptions enabled for pages or posts
250
- #: ad-inserter.php:2662
251
  msgid "No block has individual exceptions enabled"
252
  msgstr ""
253
 
254
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
255
- #: ad-inserter.php:2667
256
  msgid ""
257
  "Default insertion can be configured for each block on %1$s page - button "
258
  "next to %2$s checkbox."
259
  msgstr ""
260
 
261
- #: ad-inserter.php:2670 settings.php:1101
262
  msgid "Tag / Archive pages"
263
  msgstr ""
264
 
265
- #: ad-inserter.php:2672
266
  msgid ""
267
  "When individual exceptions for a block are enabled, a checkbox will be "
268
  "listed here to change default insertion for this post or page."
269
  msgstr ""
270
 
271
- #: ad-inserter.php:2673
272
  msgid ""
273
  "This way you can individually enable or disable blocks on specific posts or "
274
  "pages."
275
  msgstr ""
276
 
277
- #: ad-inserter.php:2675
278
  msgid "For more information check page %s"
279
  msgstr ""
280
 
281
  #. translators: Ad Inserter Exceptions documentation page
282
- #: ad-inserter.php:2677
283
  msgid "Individual Exceptions"
284
  msgstr ""
285
 
286
- #: ad-inserter.php:2724
287
  msgid "STATIC PAGE"
288
  msgstr ""
289
 
290
- #: ad-inserter.php:2727
291
  msgid "POST"
292
  msgstr ""
293
 
294
- #: ad-inserter.php:2730
295
  msgid "HOMEPAGE"
296
  msgstr ""
297
 
298
- #: ad-inserter.php:2733
299
  msgid "CATEGORY PAGE"
300
  msgstr ""
301
 
302
- #: ad-inserter.php:2736
303
  msgid "SEARCH PAGE"
304
  msgstr ""
305
 
306
- #: ad-inserter.php:2739
307
  msgid "ARCHIVE PAGE"
308
  msgstr ""
309
 
310
- #: ad-inserter.php:2742
311
  msgid "ERROR 404 PAGE"
312
  msgstr ""
313
 
314
- #: ad-inserter.php:2745
315
  msgid "AJAX CALL"
316
  msgstr ""
317
 
318
- #: ad-inserter.php:2748
319
  msgid "UNKNOWN PAGE TYPE"
320
  msgstr ""
321
 
322
- #: ad-inserter.php:2765
323
  msgid "Click to delete ad blocking detection cokies"
324
  msgstr ""
325
 
326
- #: ad-inserter.php:2766
327
  msgid "AD BLOCKING STATUS UNKNOWN"
328
  msgstr ""
329
 
330
  #. translators: %s: AdSense Auto Ads
331
- #: ad-inserter.php:2790
332
  msgid ""
333
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
334
  "positions"
335
  msgstr ""
336
 
337
- #: ad-inserter.php:2929
338
  msgid "Code for insertion"
339
  msgstr ""
340
 
341
- #: ad-inserter.php:2929
342
  msgid "character"
343
  msgid_plural "characters"
344
  msgstr[0] ""
345
  msgstr[1] ""
346
 
347
- #: ad-inserter.php:2972
348
  msgid "Header code"
349
  msgstr ""
350
 
351
- #: ad-inserter.php:2972
352
  msgctxt "Header code"
353
  msgid "DISABLED"
354
  msgstr ""
355
 
356
- #: ad-inserter.php:2972 ad-inserter.php:3195
357
  msgid "character inserted"
358
  msgid_plural "characters inserted"
359
  msgstr[0] ""
360
  msgstr[1] ""
361
 
362
- #: ad-inserter.php:3006
363
  msgid "Automatically placed by AdSense Auto ads code"
364
  msgstr ""
365
 
366
- #: ad-inserter.php:3195
367
  msgid "Footer code"
368
  msgstr ""
369
 
370
- #: ad-inserter.php:3195
371
  msgctxt "Footer code"
372
  msgid "DISABLED"
373
  msgstr ""
374
 
375
- #: ad-inserter.php:3201
376
  msgid "JAVASCRIPT NOT WORKING"
377
  msgstr ""
378
 
379
- #: ad-inserter.php:3201
380
  msgid "NO JAVASCRIPT ERRORS"
381
  msgstr ""
382
 
383
- #: ad-inserter.php:3201
384
  msgid "JAVASCRIPT ERRORS"
385
  msgstr ""
386
 
387
  #. translators: block name (block with default settings)
388
- #: ad-inserter.php:5457
389
  msgctxt "Block name"
390
  msgid "Default"
391
  msgstr ""
392
 
393
  #. translators: %s: Ad Inserter
394
- #: ad-inserter.php:6072
395
  msgid "Error importing %s settings."
396
  msgstr ""
397
 
398
- #: ad-inserter.php:6073
399
  msgid "Error importing settings for block"
400
  msgid_plural "Error importing settings for blocks:"
401
  msgstr[0] ""
402
  msgstr[1] ""
403
 
404
- #: ad-inserter.php:6123
405
  msgid "Settings saved."
406
  msgstr ""
407
 
408
  #. translators: %s: Ad Inserter
409
- #: ad-inserter.php:6125
410
  msgid "Invalid data received - %s settings not saved."
411
  msgstr ""
412
 
413
- #: ad-inserter.php:6213
414
  msgid "Settings cleared."
415
  msgstr ""
416
 
417
  #. Translators: Post/Static page must have between X and Y words
418
- #: ad-inserter.php:6558 ad-inserter.php:6560 ad-inserter.php:6583
419
- #: settings.php:2053
420
  msgid "word"
421
  msgid_plural "words"
422
  msgstr[0] ""
423
  msgstr[1] ""
424
 
425
- #: ad-inserter.php:6597 ad-inserter.php:6709
426
  msgid "HTML TAGS REMOVED"
427
  msgstr ""
428
 
429
- #: ad-inserter.php:6785
430
  msgid "BEFORE COMMENTS"
431
  msgstr ""
432
 
433
- #: ad-inserter.php:6893
434
  msgid "AFTER COMMENTS"
435
  msgstr ""
436
 
437
- #: ad-inserter.php:6956
438
  msgid "BETWEEN COMMENTS"
439
  msgstr ""
440
 
441
- #: ad-inserter.php:8288
442
  msgid "requires WordPress 4.6 or newer"
443
  msgstr ""
444
 
445
- #: ad-inserter.php:8288
446
  msgid "Please update!"
447
  msgstr ""
448
 
449
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
450
  #. name with HTML tags will be added)
451
- #: ad-inserter.php:8529
452
  msgid "Thank you for installing"
453
  msgstr ""
454
 
455
  #. translators: Opt-in message: %s: HTML tags
456
- #: ad-inserter.php:8531
457
  msgid ""
458
  "We would like to %s track its usage %s on your site. This is completely "
459
  "optional and can be disabled at any time."
460
  msgstr ""
461
 
462
- #: ad-inserter.php:8533
463
  msgid ""
464
  "We don't record any sensitive data, only information regarding the WordPress "
465
  "environment and plugin usage, which will help us to make improvements to the "
@@ -467,7 +467,7 @@ msgid ""
467
  msgstr ""
468
 
469
  #. translators: Deactivation message: %s: HTML tags
470
- #: ad-inserter.php:8570
471
  msgid ""
472
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
473
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -475,56 +475,56 @@ msgid ""
475
  msgstr ""
476
 
477
  #. translators: %s: Ad Inserter
478
- #: ad-inserter.php:8613
479
  msgid "%s block."
480
  msgstr ""
481
 
482
  #. translators: widget title
483
- #: ad-inserter.php:8629 ad-inserter.php:8665
484
  msgid "Processing log"
485
  msgstr ""
486
 
487
  #. translators: widget title
488
- #: ad-inserter.php:8631 ad-inserter.php:8666
489
  msgid "Dummy widget"
490
  msgstr ""
491
 
492
  #. translators: widget title
493
- #: ad-inserter.php:8633 ad-inserter.php:8664
494
  msgid "Debugging tools"
495
  msgstr ""
496
 
497
  #. translators: block status (widget title)
498
- #: ad-inserter.php:8640
499
  msgctxt "block"
500
  msgid "PAUSED"
501
  msgstr ""
502
 
503
- #: ad-inserter.php:8641
504
  msgid "WIDGET DISABLED"
505
  msgstr ""
506
 
507
- #: ad-inserter.php:8642
508
  msgid "Unknown block"
509
  msgstr ""
510
 
511
- #: ad-inserter.php:8651 includes/functions.old.php:3186
512
- #: includes/functions.php:3233 settings.php:1153
513
  msgid "Title"
514
  msgstr ""
515
 
516
- #: ad-inserter.php:8673
517
  msgctxt "Widget"
518
  msgid "Sticky"
519
  msgstr ""
520
 
521
- #: ad-inserter.php:8722
522
  msgid ""
523
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
524
  "Inserter you need to first deactivate Ad Inserter Pro."
525
  msgstr ""
526
 
527
- #: ad-inserter.php:8723
528
  msgid ""
529
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
530
  "will clear all settings that are available only in the Pro version "
@@ -532,134 +532,139 @@ msgid ""
532
  msgstr ""
533
 
534
  #. translators: %s: Ad Inserter
535
- #: class.php:503 class.php:512 class.php:515
536
  msgid "PHP error in %s block"
537
  msgstr ""
538
 
539
- #: class.php:2026
540
  msgid "Counters"
541
  msgstr ""
542
 
543
- #: class.php:2030
544
  msgid "Content"
545
  msgstr ""
546
 
547
- #: class.php:2035
548
  msgid "Excerpt"
549
  msgstr ""
550
 
551
- #: class.php:2040 strings.php:17
552
  msgid "Before post"
553
  msgstr ""
554
 
555
- #: class.php:2045 strings.php:18
556
  msgid "After post"
557
  msgstr ""
558
 
559
- #: class.php:2050 settings.php:1796 settings.php:4069
560
  msgid "Widget"
561
  msgstr ""
562
 
563
- #: class.php:2055 settings.php:4067
564
  msgid "PHP function call"
565
  msgstr ""
566
 
567
- #: class.php:2090
568
  msgid "AJAX REQUEST"
569
  msgstr ""
570
 
571
- #: class.php:2093
572
  msgid "Ajax request for block in iframe"
573
  msgstr ""
574
 
575
- #: class.php:2123
576
  msgid "Ajax request url, click to open it in a new tab"
577
  msgstr ""
578
 
579
- #: class.php:2126
580
  msgid "IN THE LOOP"
581
  msgstr ""
582
 
583
- #: class.php:2126
584
  msgid "YES"
585
  msgstr ""
586
 
587
- #: class.php:2126
588
  msgid "NO"
589
  msgstr ""
590
 
591
- #: class.php:2162
592
  msgid "BLOCK"
593
  msgstr ""
594
 
595
- #: class.php:2162
596
  msgctxt "block or widget"
597
  msgid "INSERTED BUT NOT VISIBLE"
598
  msgstr ""
599
 
600
- #: class.php:2611 class.php:2674
601
  msgid "ACTIVE GROUPS"
602
  msgstr ""
603
 
604
  #. translators: %s: list parameters and type
605
- #: class.php:2854
606
  msgid "parameters='%s' type='%s'"
607
  msgstr ""
608
 
609
  #. translators: %s: list parameters and type
610
- #: class.php:2856
611
  msgid "referers='%s' type='%s'"
612
  msgstr ""
613
 
614
  #. translators: %s: list parameters and type
615
- #: class.php:2917
 
 
 
 
 
616
  msgid "countries='%s' type='%s'"
617
  msgstr ""
618
 
619
  #. translators: %s: list parameters and type
620
- #: class.php:2919
621
  msgid "ip addresses='%s' type='%s'"
622
  msgstr ""
623
 
624
- #: class.php:3188 strings.php:239
625
  msgid "BEFORE"
626
  msgstr ""
627
 
628
- #: class.php:3196 strings.php:241
629
  msgid "PREPEND CONTENT"
630
  msgstr ""
631
 
632
- #: class.php:3200 strings.php:242
633
  msgid "APPEND CONTENT"
634
  msgstr ""
635
 
636
- #: class.php:3204 strings.php:243
637
  msgid "REPLACE CONTENT"
638
  msgstr ""
639
 
640
- #: class.php:3208 strings.php:244
641
  msgid "REPLACE ELEMENT"
642
  msgstr ""
643
 
644
- #: class.php:3219 strings.php:240
645
  msgid "AFTER"
646
  msgstr ""
647
 
648
- #: class.php:3286
649
  msgctxt "JavaScript"
650
  msgid "script"
651
  msgstr ""
652
 
653
- #: class.php:3289 settings.php:2065
654
  msgid "for"
655
  msgstr ""
656
 
657
- #: class.php:6332 class.php:6384
658
  msgctxt "category name"
659
  msgid "Uncategorized"
660
  msgstr ""
661
 
662
- #: class.php:6893
663
  msgid ""
664
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
665
  "extension for PHP."
@@ -675,7 +680,7 @@ msgid "Reset"
675
  msgstr ""
676
 
677
  #: includes/editor.php:9 includes/placeholders.php:354
678
- #: includes/preview.php:1965 settings.php:3464 strings.php:208 strings.php:245
679
  msgid "Cancel"
680
  msgstr ""
681
 
@@ -731,519 +736,519 @@ msgstr ""
731
  msgid "License Key for"
732
  msgstr ""
733
 
734
- #: includes/functions.old.php:413 includes/functions.php:415
735
  msgid "Open license page"
736
  msgstr ""
737
 
738
- #: includes/functions.old.php:421 includes/functions.php:423
739
  msgid "Hide license key"
740
  msgstr ""
741
 
742
- #: includes/functions.old.php:421 includes/functions.php:423
743
  msgid "Hide key"
744
  msgstr ""
745
 
746
- #: includes/functions.old.php:436 includes/functions.php:438
747
  msgid "Main content element"
748
  msgstr ""
749
 
750
- #: includes/functions.old.php:439 includes/functions.php:441
751
  msgid ""
752
  "Main content element (#id or .class) for 'Stick to the content' position. "
753
  "Leave empty unless position is not properly calculated."
754
  msgstr ""
755
 
756
- #: includes/functions.old.php:440 includes/functions.php:442 settings.php:1304
757
- #: settings.php:2679
758
  msgid "Open HTML element selector"
759
  msgstr ""
760
 
761
- #: includes/functions.old.php:445 includes/functions.php:447
762
  msgid "Lazy loading offset"
763
  msgstr ""
764
 
765
- #: includes/functions.old.php:448 includes/functions.php:450
766
  msgid "Offset of the block from the visible viewport when it should be loaded"
767
  msgstr ""
768
 
769
- #: includes/functions.old.php:459 includes/functions.php:461
770
  msgid "Export / Import Block Settings"
771
  msgstr ""
772
 
773
- #: includes/functions.old.php:474 includes/functions.php:476
774
  msgid "Track impressions and clicks for this block"
775
  msgstr ""
776
 
777
- #: includes/functions.old.php:474 includes/functions.php:476
778
  msgid " - global tracking disabled"
779
  msgstr ""
780
 
781
- #: includes/functions.old.php:481 includes/functions.php:483
782
  msgid "Generate PDF report"
783
  msgstr ""
784
 
785
- #: includes/functions.old.php:486 includes/functions.php:488
786
  msgid "Open public report"
787
  msgstr ""
788
 
789
- #: includes/functions.old.php:500 includes/functions.php:502
790
  msgid "Toggle Ad Blocking Statistics"
791
  msgstr ""
792
 
793
  #: includes/functions.old.php:508 includes/functions.old.php:2960
794
- #: includes/functions.php:510 includes/functions.php:3007
795
  msgid "Toggle Statistics"
796
  msgstr ""
797
 
798
  #. translators: %s: Ad Inserter Pro
799
- #: includes/functions.old.php:524 includes/functions.php:534
800
  msgid "%s license key is not set. Continue?"
801
  msgstr ""
802
 
803
  #. translators: %s: Ad Inserter Pro
804
- #: includes/functions.old.php:528 includes/functions.php:538
805
  msgid "Invalid %s license key. Continue?"
806
  msgstr ""
807
 
808
  #. translators: %s: Ad Inserter Pro
809
- #: includes/functions.old.php:532 includes/functions.php:542
810
  msgid "%s license overused. Continue?"
811
  msgstr ""
812
 
813
- #: includes/functions.old.php:536 includes/functions.php:546 settings.php:1058
814
- #: settings.php:2136
815
  msgid "Save Settings"
816
  msgstr ""
817
 
818
- #: includes/functions.old.php:596 includes/functions.php:606
819
  #: includes/preview.php:2106
820
  msgid "Horizontal position"
821
  msgstr ""
822
 
823
- #: includes/functions.old.php:619 includes/functions.php:629
824
  msgid ""
825
  "Horizontal margin from the content or screen edge, empty means default value "
826
  "from CSS"
827
  msgstr ""
828
 
829
- #: includes/functions.old.php:627 includes/functions.php:637
830
  #: includes/preview.php:2161
831
  msgid "Vertical position"
832
  msgstr ""
833
 
834
- #: includes/functions.old.php:642 includes/functions.php:652
835
  msgid ""
836
  "Vertical margin from the top or bottom screen edge, empty means default "
837
  "value from CSS"
838
  msgstr ""
839
 
840
- #: includes/functions.old.php:667 includes/functions.php:677
841
  #: includes/preview.php:2212
842
  msgid "Animation"
843
  msgstr ""
844
 
845
- #: includes/functions.old.php:685 includes/functions.php:695
846
  msgid "Trigger"
847
  msgstr ""
848
 
849
- #: includes/functions.old.php:694 includes/functions.php:704
850
  msgid ""
851
  "Trigger value: page scroll in %, page scroll in px or element with selector "
852
  "(#id or .class) becomes visible"
853
  msgstr ""
854
 
855
- #: includes/functions.old.php:698 includes/functions.php:708
856
  msgid "Offset"
857
  msgstr ""
858
 
859
- #: includes/functions.old.php:698 includes/functions.php:708
860
  msgid "Offset of trigger element"
861
  msgstr ""
862
 
863
- #: includes/functions.old.php:702 includes/functions.php:712
864
  msgid "Delay"
865
  msgstr ""
866
 
867
- #: includes/functions.old.php:702 includes/functions.php:712
868
  msgid "Delay animation after trigger condition"
869
  msgstr ""
870
 
871
- #: includes/functions.old.php:706 includes/functions.php:716
872
  msgid "Trigger once"
873
  msgstr ""
874
 
875
- #: includes/functions.old.php:708 includes/functions.php:718
876
  msgid "Trigger animation only once"
877
  msgstr ""
878
 
879
  #: includes/functions.old.php:750 includes/functions.old.php:2453
880
- #: includes/functions.old.php:2470 includes/functions.php:760
881
- #: includes/functions.php:2500 includes/functions.php:2517
882
  msgid "Tracking is globally disabled"
883
  msgstr ""
884
 
885
  #: includes/functions.old.php:754 includes/functions.old.php:2457
886
- #: includes/functions.old.php:2474 includes/functions.php:764
887
- #: includes/functions.php:2504 includes/functions.php:2521
888
  msgid "Tracking for this block is disabled"
889
  msgstr ""
890
 
891
- #: includes/functions.old.php:761 includes/functions.php:771
892
  msgid "Double click to toggle controls in public reports"
893
  msgstr ""
894
 
895
- #: includes/functions.old.php:767 includes/functions.php:777 settings.php:3399
896
- #: settings.php:3435 settings.php:3477 strings.php:218
897
  msgid "Loading..."
898
  msgstr ""
899
 
900
- #: includes/functions.old.php:788 includes/functions.php:798
901
  msgid ""
902
  "Clear statistics data for the selected range - clear both dates to delete "
903
  "all data for this block"
904
  msgstr ""
905
 
906
- #: includes/functions.old.php:792 includes/functions.php:802
907
  msgid "Auto refresh data for the selected range every 60 seconds"
908
  msgstr ""
909
 
910
  #: includes/functions.old.php:795 includes/functions.old.php:5262
911
- #: includes/functions.php:805 includes/functions.php:5322
912
  msgid "Load data for last month"
913
  msgstr ""
914
 
915
  #: includes/functions.old.php:795 includes/functions.old.php:5262
916
- #: includes/functions.php:805 includes/functions.php:5322
917
  msgid "Last Month"
918
  msgstr ""
919
 
920
  #: includes/functions.old.php:798 includes/functions.old.php:5265
921
- #: includes/functions.php:808 includes/functions.php:5325
922
  msgid "Load data for this month"
923
  msgstr ""
924
 
925
  #: includes/functions.old.php:798 includes/functions.old.php:5265
926
- #: includes/functions.php:808 includes/functions.php:5325
927
  msgid "This Month"
928
  msgstr ""
929
 
930
  #: includes/functions.old.php:801 includes/functions.old.php:5268
931
- #: includes/functions.php:811 includes/functions.php:5328
932
  msgid "Load data for this year"
933
  msgstr ""
934
 
935
  #: includes/functions.old.php:801 includes/functions.old.php:5268
936
- #: includes/functions.php:811 includes/functions.php:5328
937
  msgid "This Year"
938
  msgstr ""
939
 
940
  #: includes/functions.old.php:804 includes/functions.old.php:5271
941
- #: includes/functions.php:814 includes/functions.php:5331
942
  msgid "Load data for the last 15 days"
943
  msgstr ""
944
 
945
  #: includes/functions.old.php:807 includes/functions.old.php:5274
946
- #: includes/functions.php:817 includes/functions.php:5334
947
  msgid "Load data for the last 30 days"
948
  msgstr ""
949
 
950
  #: includes/functions.old.php:810 includes/functions.old.php:5277
951
- #: includes/functions.php:820 includes/functions.php:5337
952
  msgid "Load data for the last 90 days"
953
  msgstr ""
954
 
955
  #: includes/functions.old.php:813 includes/functions.old.php:5280
956
- #: includes/functions.php:823 includes/functions.php:5340
957
  msgid "Load data for the last 180 days"
958
  msgstr ""
959
 
960
  #: includes/functions.old.php:816 includes/functions.old.php:5283
961
- #: includes/functions.php:826 includes/functions.php:5343
962
  msgid "Load data for the last 365 days"
963
  msgstr ""
964
 
965
  #: includes/functions.old.php:826 includes/functions.old.php:5293
966
- #: includes/functions.php:836 includes/functions.php:5353
967
  msgid "Load data for the selected range"
968
  msgstr ""
969
 
970
- #: includes/functions.old.php:842 includes/functions.php:852
971
  msgid ""
972
  "Import settings when saving - if checked, the encoded settings below will be "
973
  "imported for this block"
974
  msgstr ""
975
 
976
- #: includes/functions.old.php:842 includes/functions.php:852
977
  msgid "Import settings for block"
978
  msgstr ""
979
 
980
- #: includes/functions.old.php:846 includes/functions.php:856
981
  msgid ""
982
  "Import block name when saving - if checked and 'Import settings for block' "
983
  "is also checked, the name from encoded settings below will be imported for "
984
  "this block"
985
  msgstr ""
986
 
987
- #: includes/functions.old.php:846 includes/functions.php:856
988
  msgid "Import block name"
989
  msgstr ""
990
 
991
- #: includes/functions.old.php:850 includes/functions.php:860
992
  msgid "Saved settings for block"
993
  msgstr ""
994
 
995
- #: includes/functions.old.php:863 includes/functions.php:873
996
  msgid "Export / Import Ad Inserter Pro Settings"
997
  msgstr ""
998
 
999
- #: includes/functions.old.php:873 includes/functions.php:883
1000
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1001
  msgstr ""
1002
 
1003
- #: includes/functions.old.php:875 includes/functions.php:885
1004
  msgid "Clear All Statistics Data"
1005
  msgstr ""
1006
 
1007
- #: includes/functions.old.php:902 includes/functions.php:912
1008
  msgid "Toggle country/city editor"
1009
  msgstr ""
1010
 
1011
- #: includes/functions.old.php:908 includes/functions.php:918
1012
  msgid "IP Addresses"
1013
  msgstr ""
1014
 
1015
- #: includes/functions.old.php:911 includes/functions.php:921
1016
  msgid "Toggle IP address editor"
1017
  msgstr ""
1018
 
1019
- #: includes/functions.old.php:914 includes/functions.php:924
1020
  msgid ""
1021
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1022
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1023
  msgstr ""
1024
 
1025
- #: includes/functions.old.php:918 includes/functions.php:928
1026
  msgid "Blacklist IP addresses"
1027
  msgstr ""
1028
 
1029
- #: includes/functions.old.php:922 includes/functions.php:932
1030
  msgid "Whitelist IP addresses"
1031
  msgstr ""
1032
 
1033
- #: includes/functions.old.php:933 includes/functions.php:943
1034
  msgid "Countries"
1035
  msgstr ""
1036
 
1037
- #: includes/functions.old.php:934 includes/functions.php:944
1038
  msgid "Cities"
1039
  msgstr ""
1040
 
1041
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1042
- #: includes/functions.php:948 includes/functions.php:2972
1043
  msgid "Toggle country editor"
1044
  msgstr ""
1045
 
1046
- #: includes/functions.old.php:941 includes/functions.php:951
1047
  msgid "Toggle city editor"
1048
  msgstr ""
1049
 
1050
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1051
- #: includes/functions.php:955 includes/functions.php:2975
1052
  msgid "Comma separated country ISO Alpha-2 codes"
1053
  msgstr ""
1054
 
1055
- #: includes/functions.old.php:949 includes/functions.php:959
1056
  msgid "Blacklist countries"
1057
  msgstr ""
1058
 
1059
- #: includes/functions.old.php:953 includes/functions.php:963
1060
  msgid "Whitelist countries"
1061
  msgstr ""
1062
 
1063
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1064
- #: includes/functions.php:1373 includes/functions.php:1653
1065
  msgid "Enter license key"
1066
  msgstr ""
1067
 
1068
  #. translators: %s: Ad Inserter Pro
1069
- #: includes/functions.old.php:1367 includes/functions.php:1379
1070
  msgid ""
1071
  "%s license key is not set. Plugin functionality is limited and updates are "
1072
  "disabled."
1073
  msgstr ""
1074
 
1075
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1076
- #: includes/functions.php:1402 includes/functions.php:1662
1077
  msgid "Check license key"
1078
  msgstr ""
1079
 
1080
  #. translators: %s: Ad Inserter Pro
1081
- #: includes/functions.old.php:1385 includes/functions.php:1408
1082
  msgid "Invalid %s license key."
1083
  msgstr ""
1084
 
1085
  #. translators: %s: Ad Inserter Pro
1086
- #: includes/functions.old.php:1394 includes/functions.php:1417
1087
  msgid "%s license expired. Plugin updates are disabled."
1088
  msgstr ""
1089
 
1090
- #: includes/functions.old.php:1395 includes/functions.php:1418
1091
  msgid "Renew license"
1092
  msgstr ""
1093
 
1094
  #. translators: %s: Ad Inserter Pro
1095
- #: includes/functions.old.php:1403 includes/functions.php:1426
1096
  msgid "%s license overused. Plugin updates are disabled."
1097
  msgstr ""
1098
 
1099
- #: includes/functions.old.php:1404 includes/functions.php:1427
1100
  msgid "Manage licenses"
1101
  msgstr ""
1102
 
1103
- #: includes/functions.old.php:1404 includes/functions.php:1427
1104
  msgid "Upgrade license"
1105
  msgstr ""
1106
 
1107
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1108
- #: includes/functions.old.php:1610 includes/functions.php:1655
1109
  msgid ""
1110
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1111
  "limited and updates are disabled."
1112
  msgstr ""
1113
 
1114
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1115
- #: includes/functions.old.php:1619 includes/functions.php:1664
1116
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1117
  msgstr ""
1118
 
1119
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1120
- #: includes/functions.old.php:1635 includes/functions.php:1680
1121
  msgid ""
1122
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1123
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1124
  msgstr ""
1125
 
1126
  #. translators: 1, 3: HTML tags, 2: percentage
1127
- #: includes/functions.old.php:1642 includes/functions.php:1687
1128
  msgid ""
1129
  "During the license period and 30 days after the license has expired we offer "
1130
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1131
  msgstr ""
1132
 
1133
- #: includes/functions.old.php:1669 includes/functions.php:1714
1134
  msgid "Renew the licence"
1135
  msgstr ""
1136
 
1137
- #: includes/functions.old.php:1671 includes/functions.php:1716
1138
  msgid "Update license status"
1139
  msgstr ""
1140
 
1141
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1142
- #: includes/functions.old.php:1682 includes/functions.php:1727
1143
  msgid ""
1144
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1145
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1146
  msgstr ""
1147
 
1148
  #. Translators: %s: HTML tag
1149
- #: includes/functions.old.php:1704 includes/functions.php:1749
1150
  msgid "Warning: %s MaxMind IP geolocation database not found."
1151
  msgstr ""
1152
 
1153
- #: includes/functions.old.php:2255 includes/functions.php:2302
1154
  msgid "Geolocation"
1155
  msgstr ""
1156
 
1157
- #: includes/functions.old.php:2259 includes/functions.php:2306
1158
- #: settings.php:4056
1159
  msgid "Exceptions"
1160
  msgstr ""
1161
 
1162
- #: includes/functions.old.php:2264 includes/functions.php:2311
1163
  msgid "Multisite"
1164
  msgstr ""
1165
 
1166
- #: includes/functions.old.php:2269 includes/functions.php:2316
1167
- #: settings.php:4062
1168
  msgid "Tracking"
1169
  msgstr ""
1170
 
1171
  #. translators: %d: days, hours, minutes
1172
- #: includes/functions.old.php:2300 includes/functions.php:2347
1173
  msgid "Scheduled in %d days %d hours %d minutes"
1174
  msgstr ""
1175
 
1176
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1177
  #. HTML code for long dash separator
1178
- #: includes/functions.old.php:2309 includes/functions.php:2356
1179
  msgid "Active %s expires in %d days %d hours %d minutes"
1180
  msgstr ""
1181
 
1182
- #: includes/functions.old.php:2313 includes/functions.php:2360
1183
  msgid "Expired"
1184
  msgstr ""
1185
 
1186
- #: includes/functions.old.php:2321 includes/functions.php:2368
1187
- #: settings.php:1387 settings.php:1402 settings.php:1491 settings.php:2051
1188
  msgid "and"
1189
  msgstr ""
1190
 
1191
- #: includes/functions.old.php:2324 includes/functions.php:2371
1192
  msgid "fallback"
1193
  msgstr ""
1194
 
1195
- #: includes/functions.old.php:2325 includes/functions.php:2372
1196
  msgid "Block to be used when scheduling expires"
1197
  msgstr ""
1198
 
1199
- #: includes/functions.old.php:2350 includes/functions.php:2397
1200
  msgid "Load in iframe"
1201
  msgstr ""
1202
 
1203
- #: includes/functions.old.php:2354 includes/functions.php:2401
1204
  #: includes/placeholders.php:389
1205
  msgid "Width"
1206
  msgstr ""
1207
 
1208
- #: includes/functions.old.php:2355 includes/functions.php:2402
1209
  msgid "iframe width, empty means full width (100%)"
1210
  msgstr ""
1211
 
1212
- #: includes/functions.old.php:2361 includes/functions.php:2408
1213
  #: includes/placeholders.php:384
1214
  msgid "Height"
1215
  msgstr ""
1216
 
1217
- #: includes/functions.old.php:2362 includes/functions.php:2409
1218
  msgid "iframe height, empty means adjust it to iframe content height"
1219
  msgstr ""
1220
 
1221
- #: includes/functions.old.php:2369 includes/functions.php:2416
1222
  msgid "Ad label in iframe"
1223
  msgstr ""
1224
 
1225
- #: includes/functions.old.php:2374 includes/functions.php:2421
1226
  msgid "Preview iframe code"
1227
  msgstr ""
1228
 
1229
- #: includes/functions.old.php:2374 includes/functions.php:2421
1230
- #: includes/preview.php:1974 settings.php:1053 settings.php:2741
1231
  msgid "Preview"
1232
  msgstr ""
1233
 
1234
- #: includes/functions.old.php:2388 includes/functions.php:2435
1235
- #: settings.php:4063
1236
  msgid "Limits"
1237
  msgstr ""
1238
 
1239
  #: includes/functions.old.php:2393 includes/functions.old.php:4266
1240
- #: includes/functions.old.php:4329 includes/functions.php:2440
1241
- #: includes/functions.php:4313 includes/functions.php:4376 settings.php:2183
1242
  msgid "Ad Blocking"
1243
  msgstr ""
1244
 
1245
  #. translators: 1, 2 and 3, 4: HTML tags
1246
- #: includes/functions.old.php:2402 includes/functions.php:2449
1247
  msgid ""
1248
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1249
  "for tracking!"
@@ -1251,29 +1256,29 @@ msgstr ""
1251
 
1252
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1253
  #. header
1254
- #: includes/functions.old.php:2411 includes/functions.php:2458
1255
  msgid ""
1256
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1257
  "enabled and automatic insertion %6$s!"
1258
  msgstr ""
1259
 
1260
- #: includes/functions.old.php:2478 includes/functions.php:2525
1261
  msgid "Click fraud protection is globally disabled"
1262
  msgstr ""
1263
 
1264
- #: includes/functions.old.php:2482 includes/functions.php:2529
1265
  msgid "Max clicks per time period are not defined"
1266
  msgstr ""
1267
 
1268
  #. Translators: Max n impressions
1269
- #: includes/functions.old.php:2496 includes/functions.php:2543
1270
  msgid "General limits"
1271
  msgstr ""
1272
 
1273
  #. Translators: Max n impressions per x days
1274
  #: includes/functions.old.php:2502 includes/functions.old.php:2514
1275
- #: includes/functions.old.php:2599 includes/functions.php:2549
1276
- #: includes/functions.php:2561 includes/functions.php:2646
1277
  msgid "Current value"
1278
  msgstr ""
1279
 
@@ -1289,14 +1294,14 @@ msgstr ""
1289
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1290
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1291
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1292
- #: includes/functions.php:2568 includes/functions.php:2578
1293
- #: includes/functions.php:2597 includes/functions.php:2607
1294
- #: includes/functions.php:2653 includes/functions.php:2662
1295
- #: includes/functions.php:2680 includes/functions.php:2689 settings.php:1972
1296
  msgid "Max"
1297
  msgstr ""
1298
 
1299
- #: includes/functions.old.php:2522 includes/functions.php:2569
1300
  msgid ""
1301
  "Maximum number of impressions for this block. Empty means no general "
1302
  "impression limit."
@@ -1308,14 +1313,14 @@ msgstr ""
1308
  #. Translators: Max n impressions per x days
1309
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1310
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1311
- #: includes/functions.php:2571 includes/functions.php:2581
1312
- #: includes/functions.php:2656 includes/functions.php:2665
1313
  msgid "impression"
1314
  msgid_plural "impressions"
1315
  msgstr[0] ""
1316
  msgstr[1] ""
1317
 
1318
- #: includes/functions.old.php:2532 includes/functions.php:2579
1319
  msgid ""
1320
  "Maximum number of impressions per time period. Empty means no time limit."
1321
  msgstr ""
@@ -1326,13 +1331,13 @@ msgstr ""
1326
  #. Translators: Max n clicks per x days
1327
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1328
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1329
- #: includes/functions.php:2585 includes/functions.php:2614
1330
- #: includes/functions.php:2669 includes/functions.php:2696
1331
  msgid "per"
1332
  msgstr ""
1333
 
1334
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1335
- #: includes/functions.php:2586 includes/functions.php:2615
1336
  msgid "Time period in days. Empty means no time limit."
1337
  msgstr ""
1338
 
@@ -1344,9 +1349,9 @@ msgstr ""
1344
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1345
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1346
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1347
- #: includes/functions.php:2588 includes/functions.php:2617
1348
- #: includes/functions.php:2672 includes/functions.php:2699
1349
- #: includes/functions.php:2805 includes/functions.php:3133 strings.php:199
1350
  #: strings.php:200 strings.php:201 strings.php:202 strings.php:203
1351
  #: strings.php:204
1352
  msgid "day"
@@ -1354,7 +1359,7 @@ msgid_plural "days"
1354
  msgstr[0] ""
1355
  msgstr[1] ""
1356
 
1357
- #: includes/functions.old.php:2551 includes/functions.php:2598
1358
  msgid ""
1359
  "Maximum number of clicks on this block. Empty means no general click limit."
1360
  msgstr ""
@@ -1365,24 +1370,24 @@ msgstr ""
1365
  #. Translators: Max n clicks per x days
1366
  #: includes/functions.old.php:2553 includes/functions.old.php:2563
1367
  #: includes/functions.old.php:2636 includes/functions.old.php:2645
1368
- #: includes/functions.old.php:4477 includes/functions.php:2600
1369
- #: includes/functions.php:2610 includes/functions.php:2683
1370
- #: includes/functions.php:2692 includes/functions.php:4524
1371
  msgid "click"
1372
  msgid_plural "clicks"
1373
  msgstr[0] ""
1374
  msgstr[1] ""
1375
 
1376
- #: includes/functions.old.php:2561 includes/functions.php:2608
1377
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1378
  msgstr ""
1379
 
1380
- #: includes/functions.old.php:2586 includes/functions.php:2633
1381
  msgid "Individual visitor limits"
1382
  msgstr ""
1383
 
1384
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1385
- #: includes/functions.php:2637 includes/functions.php:2639
1386
  msgid ""
1387
  "When specified number of clicks on this block for a visitor will be reached "
1388
  "in the specified time period, all blocks that have click fraud protection "
@@ -1390,79 +1395,79 @@ msgid ""
1390
  "general plugin settings."
1391
  msgstr ""
1392
 
1393
- #: includes/functions.old.php:2592 includes/functions.php:2639
1394
  msgid "Trigger click fraud protection"
1395
  msgstr ""
1396
 
1397
- #: includes/functions.old.php:2607 includes/functions.php:2654
1398
  msgid ""
1399
  "Maximum number of impressions of this block for each visitor. Empty means no "
1400
  "impression limit."
1401
  msgstr ""
1402
 
1403
- #: includes/functions.old.php:2616 includes/functions.php:2663
1404
  msgid ""
1405
  "Maximum number of impressions per time period for each visitor. Empty means "
1406
  "no impression limit per time period for visitors."
1407
  msgstr ""
1408
 
1409
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1410
- #: includes/functions.php:2670 includes/functions.php:2697
1411
  msgid ""
1412
  "Time period in days. Use decimal value (with decimal point) for shorter "
1413
  "periods. Empty means no time limit."
1414
  msgstr ""
1415
 
1416
- #: includes/functions.old.php:2634 includes/functions.php:2681
1417
  msgid ""
1418
  "Maximum number of clicks on this block for each visitor. Empty means no "
1419
  "click limit."
1420
  msgstr ""
1421
 
1422
- #: includes/functions.old.php:2643 includes/functions.php:2690
1423
  msgid ""
1424
  "Maximum number of clicks per time period for each visitor. Empty means no "
1425
  "click limit per time period for visitors."
1426
  msgstr ""
1427
 
1428
- #: includes/functions.old.php:2669 includes/functions.php:2716
1429
  msgid "When ad blocking is detected"
1430
  msgstr ""
1431
 
1432
- #: includes/functions.old.php:2678 includes/functions.php:2725
1433
  msgid "replacement"
1434
  msgstr ""
1435
 
1436
- #: includes/functions.old.php:2679 includes/functions.php:2726
1437
  msgid "Block to be shown when ad blocking is detected"
1438
  msgstr ""
1439
 
1440
- #: includes/functions.old.php:2680 includes/functions.php:2727
1441
  msgctxt "replacement"
1442
  msgid "None"
1443
  msgstr ""
1444
 
1445
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1446
- #: includes/functions.php:2744 includes/functions.php:5544
1447
  msgid "Close button"
1448
  msgstr ""
1449
 
1450
- #: includes/functions.old.php:2749 includes/functions.php:2796
1451
  msgid "Auto close after"
1452
  msgstr ""
1453
 
1454
- #: includes/functions.old.php:2750 includes/functions.php:2797
1455
  msgid ""
1456
  "Time in seconds in which the ad will automatically close. Leave empty to "
1457
  "disable auto closing."
1458
  msgstr ""
1459
 
1460
  #. Translators: Don't show for x days
1461
- #: includes/functions.old.php:2755 includes/functions.php:2802
1462
  msgid "Don't show for"
1463
  msgstr ""
1464
 
1465
- #: includes/functions.old.php:2756 includes/functions.php:2803
1466
  msgid ""
1467
  "Time in days in which closed ad will not be shown again. Use decimal value "
1468
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1470,11 +1475,11 @@ msgid ""
1470
  msgstr ""
1471
 
1472
  #. Translators: Delay showing for x pageviews
1473
- #: includes/functions.old.php:2776 includes/functions.php:2823
1474
  msgid "Delay showing for"
1475
  msgstr ""
1476
 
1477
- #: includes/functions.old.php:2777 includes/functions.php:2824
1478
  msgid ""
1479
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1480
  "empty to insert the code for the first pageview."
@@ -1483,307 +1488,307 @@ msgstr ""
1483
  #. Translators: Delay showing for x pageviews
1484
  #. Translators: Show every x pageviews
1485
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1486
- #: includes/functions.php:2826 includes/functions.php:2833
1487
  msgid "pageview"
1488
  msgid_plural "pageviews"
1489
  msgstr[0] ""
1490
  msgstr[1] ""
1491
 
1492
  #. Translators: Show every x pageviews
1493
- #: includes/functions.old.php:2783 includes/functions.php:2830
1494
  msgid "Show every"
1495
  msgid_plural "Show every"
1496
  msgstr[0] ""
1497
  msgstr[1] ""
1498
 
1499
- #: includes/functions.old.php:2784 includes/functions.php:2831
1500
  msgid ""
1501
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1502
  "for every pageview."
1503
  msgstr ""
1504
 
1505
- #: includes/functions.old.php:2803 includes/functions.php:2850
1506
  msgid "Lazy loading"
1507
  msgstr ""
1508
 
1509
  #. Translators: %s MaxMind
1510
- #: includes/functions.old.php:2860 includes/functions.php:2907
1511
  msgid "This product includes GeoLite2 data created by %s"
1512
  msgstr ""
1513
 
1514
- #: includes/functions.old.php:2871 includes/functions.php:2918
1515
  msgid "IP geolocation database"
1516
  msgstr ""
1517
 
1518
- #: includes/functions.old.php:2874 includes/functions.php:2921
1519
  msgid "Select IP geolocation database."
1520
  msgstr ""
1521
 
1522
- #: includes/functions.old.php:2885 includes/functions.php:2932
1523
  msgid "Automatic database updates"
1524
  msgstr ""
1525
 
1526
- #: includes/functions.old.php:2888 includes/functions.php:2935
1527
  msgid ""
1528
  "Automatically download and update free GeoLite2 IP geolocation database by "
1529
  "MaxMind"
1530
  msgstr ""
1531
 
1532
- #: includes/functions.old.php:2896 includes/functions.php:2943
1533
  msgid "Database"
1534
  msgstr ""
1535
 
1536
- #: includes/functions.old.php:2899 includes/functions.php:2946
1537
  msgid ""
1538
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1539
  "file"
1540
  msgstr ""
1541
 
1542
  #. translators: %d: group number
1543
- #: includes/functions.old.php:2917 includes/functions.php:2964
1544
  msgid "Group %d"
1545
  msgstr ""
1546
 
1547
- #: includes/functions.old.php:2923 includes/functions.php:2970
1548
  msgid "countries"
1549
  msgstr ""
1550
 
1551
- #: includes/functions.old.php:2968 includes/functions.php:3015
1552
  msgid ""
1553
  "Enable impression and click tracking. You also need to enable tracking for "
1554
  "each block you want to track."
1555
  msgstr ""
1556
 
1557
- #: includes/functions.old.php:2975 includes/functions.php:3022
1558
  msgid "Generate report"
1559
  msgstr ""
1560
 
1561
- #: includes/functions.old.php:2983 includes/functions.php:3030
1562
  msgid "Impression and Click Tracking"
1563
  msgstr ""
1564
 
1565
- #: includes/functions.old.php:2984 includes/functions.php:3031
1566
- #: settings.php:2629
1567
  msgctxt "ad blocking detection"
1568
  msgid "NOT ENABLED"
1569
  msgstr ""
1570
 
1571
- #: includes/functions.old.php:3000 includes/functions.php:3047
1572
  msgid "Internal"
1573
  msgstr ""
1574
 
1575
- #: includes/functions.old.php:3004 includes/functions.php:3051
1576
  msgid "Track impressions and clicks with internal tracking and statistics"
1577
  msgstr ""
1578
 
1579
- #: includes/functions.old.php:3009 includes/functions.php:3056
1580
  msgid "External"
1581
  msgstr ""
1582
 
1583
- #: includes/functions.old.php:3013 includes/functions.php:3060
1584
  msgid ""
1585
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1586
  "code installed)"
1587
  msgstr ""
1588
 
1589
- #: includes/functions.old.php:3018 includes/functions.php:3065
1590
  msgid "Track Pageviews"
1591
  msgstr ""
1592
 
1593
- #: includes/functions.old.php:3024 includes/functions.php:3071
1594
  msgid "Track Pageviews by Device (as configured for viewports)"
1595
  msgstr ""
1596
 
1597
- #: includes/functions.old.php:3034 includes/functions.php:3081
1598
  msgid "Track for Logged in Users"
1599
  msgstr ""
1600
 
1601
- #: includes/functions.old.php:3040 includes/functions.php:3087
1602
  msgid "Track impressions and clicks from logged in users"
1603
  msgstr ""
1604
 
1605
- #: includes/functions.old.php:3050 includes/functions.php:3097
1606
  msgid "Click Detection"
1607
  msgstr ""
1608
 
1609
- #: includes/functions.old.php:3056 includes/functions.php:3103
1610
  msgid ""
1611
  "Standard method detects clicks only on banners with links, Advanced method "
1612
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1613
  msgstr ""
1614
 
1615
- #: includes/functions.old.php:3075 includes/functions.php:3122
1616
  msgid "Click fraud protection"
1617
  msgstr ""
1618
 
1619
- #: includes/functions.old.php:3079 includes/functions.php:3126
1620
  msgid "Globally enable click fraud protection for selected blocks."
1621
  msgstr ""
1622
 
1623
- #: includes/functions.old.php:3085 includes/functions.php:3132
1624
  msgid "Protection time"
1625
  msgstr ""
1626
 
1627
- #: includes/functions.old.php:3086 includes/functions.php:3133
1628
  msgid ""
1629
  "Time period in days in which blocks with enabled click fraud protection will "
1630
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1631
  msgstr ""
1632
 
1633
- #: includes/functions.old.php:3105 includes/functions.php:3152
1634
  msgid "Report header image"
1635
  msgstr ""
1636
 
1637
- #: includes/functions.old.php:3108 includes/functions.php:3155
1638
  msgid ""
1639
  "Image or logo to be displayed in the header of the statistins report. "
1640
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
1641
  "to reset to default image."
1642
  msgstr ""
1643
 
1644
- #: includes/functions.old.php:3109 includes/functions.php:3156 strings.php:230
1645
  msgid "Select or upload header image"
1646
  msgstr ""
1647
 
1648
- #: includes/functions.old.php:3114 includes/functions.php:3161
1649
  msgid "Report header title"
1650
  msgstr ""
1651
 
1652
- #: includes/functions.old.php:3117 includes/functions.php:3164
1653
  msgid ""
1654
  "Title to be displayed in the header of the statistics report. Text or HTML "
1655
  "code, clear to reset to default text."
1656
  msgstr ""
1657
 
1658
- #: includes/functions.old.php:3122 includes/functions.php:3169
1659
  msgid "Report header description"
1660
  msgstr ""
1661
 
1662
- #: includes/functions.old.php:3125 includes/functions.php:3172
1663
  msgid ""
1664
  "Description to be displayed in the header of the statistics report. Text or "
1665
  "HTML code, clear to reset to default text."
1666
  msgstr ""
1667
 
1668
- #: includes/functions.old.php:3130 includes/functions.php:3177
1669
  msgid "Report footer"
1670
  msgstr ""
1671
 
1672
- #: includes/functions.old.php:3133 includes/functions.php:3180
1673
  msgid ""
1674
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1675
  "to default text."
1676
  msgstr ""
1677
 
1678
- #: includes/functions.old.php:3138 includes/functions.php:3185
1679
  msgid "Public report key"
1680
  msgstr ""
1681
 
1682
- #: includes/functions.old.php:3141 includes/functions.php:3188
1683
  msgid "String to generate unique report IDs. Clear to reset to default value."
1684
  msgstr ""
1685
 
1686
- #: includes/functions.old.php:3173 includes/functions.php:3220
1687
  msgid "Are you sure you want to clear all exceptions for block"
1688
  msgstr ""
1689
 
1690
- #: includes/functions.old.php:3174 includes/functions.php:3221
1691
- #: settings.php:1156
1692
  msgid "Clear all exceptions for block"
1693
  msgstr ""
1694
 
1695
- #: includes/functions.old.php:3181 includes/functions.php:3228
1696
  msgid "Are you sure you want to clear all exceptions?"
1697
  msgstr ""
1698
 
1699
- #: includes/functions.old.php:3181 includes/functions.php:3228
1700
  msgid "Clear all exceptions for all blocks"
1701
  msgstr ""
1702
 
1703
- #: includes/functions.old.php:3186 includes/functions.php:3233
1704
- #: settings.php:3708 settings.php:4139
1705
  msgid "Type"
1706
  msgstr ""
1707
 
1708
- #: includes/functions.old.php:3204 includes/functions.php:3251
1709
  msgid "View"
1710
  msgstr ""
1711
 
1712
  #: includes/functions.old.php:3205 includes/functions.old.php:3212
1713
- #: includes/functions.old.php:3216 includes/functions.php:3252
1714
- #: includes/functions.php:3259 includes/functions.php:3263
1715
- #: includes/placeholders.php:353 includes/preview.php:2281 settings.php:1290
1716
- #: settings.php:3468
1717
  msgid "Edit"
1718
  msgstr ""
1719
 
1720
- #: includes/functions.old.php:3235 includes/functions.php:3282
1721
  msgid "Are you sure you want to clear all exceptions for"
1722
  msgstr ""
1723
 
1724
- #: includes/functions.old.php:3236 includes/functions.php:3283
1725
  msgid "Clear all exceptions for"
1726
  msgstr ""
1727
 
1728
- #: includes/functions.old.php:3249 includes/functions.php:3296
1729
  msgid "No exceptions"
1730
  msgstr ""
1731
 
1732
  #. translators: %s: Ad Inserter Pro
1733
- #: includes/functions.old.php:3260 includes/functions.php:3307
1734
  msgid "%s options for network blogs"
1735
  msgstr ""
1736
 
1737
  #. translators: %s: Ad Inserter Pro
1738
- #: includes/functions.old.php:3265 includes/functions.php:3312
1739
  msgid "Enable %s widgets for sub-sites"
1740
  msgstr ""
1741
 
1742
- #: includes/functions.old.php:3265 includes/functions.php:3312
1743
  msgid "Widgets"
1744
  msgstr ""
1745
 
1746
- #: includes/functions.old.php:3270 includes/functions.php:3317
1747
  msgid "Enable PHP code processing for sub-sites"
1748
  msgstr ""
1749
 
1750
- #: includes/functions.old.php:3270 includes/functions.php:3317
1751
  msgid "PHP Processing"
1752
  msgstr ""
1753
 
1754
  #. translators: %s: Ad Inserter Pro
1755
- #: includes/functions.old.php:3275 includes/functions.php:3322
1756
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1757
  msgstr ""
1758
 
1759
- #: includes/functions.old.php:3275 includes/functions.php:3322
1760
  msgid "Post/Page exceptions"
1761
  msgstr ""
1762
 
1763
  #. translators: %s: Ad Inserter Pro
1764
- #: includes/functions.old.php:3280 includes/functions.php:3327
1765
  msgid "Enable %s settings page for sub-sites"
1766
  msgstr ""
1767
 
1768
- #: includes/functions.old.php:3280 includes/functions.php:3327
1769
  msgid "Settings page"
1770
  msgstr ""
1771
 
1772
  #. translators: %s: Ad Inserter Pro
1773
- #: includes/functions.old.php:3285 includes/functions.php:3332
1774
  msgid "Enable %s settings of main site to be used for all blogs"
1775
  msgstr ""
1776
 
1777
- #: includes/functions.old.php:3285 includes/functions.php:3332
1778
  msgid "Main site settings used for all blogs"
1779
  msgstr ""
1780
 
1781
- #: includes/functions.old.php:3296 includes/functions.php:3343
1782
- #: settings.php:2628
1783
  msgid "Ad Blocking Detection"
1784
  msgstr ""
1785
 
1786
- #: includes/functions.old.php:3302 includes/functions.php:3349
1787
  msgid ""
1788
  "Standard method is reliable but should be used only if Advanced method does "
1789
  "not work. Advanced method recreates files used for detection with random "
@@ -1792,165 +1797,165 @@ msgid ""
1792
  msgstr ""
1793
 
1794
  #: includes/functions.old.php:3929 includes/functions.old.php:4019
1795
- #: includes/functions.old.php:4039 includes/functions.php:3976
1796
- #: includes/functions.php:4066 includes/functions.php:4086
1797
  msgid "AD BLOCKING"
1798
  msgstr ""
1799
 
1800
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
1801
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
1802
- #: includes/functions.php:3977 includes/functions.php:4017
1803
- #: includes/functions.php:4060 includes/functions.php:4087
1804
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1805
  msgstr ""
1806
 
1807
  #: includes/functions.old.php:3933 includes/functions.old.php:4012
1808
- #: includes/functions.old.php:4046 includes/functions.php:3980
1809
- #: includes/functions.php:4059 includes/functions.php:4093
1810
  msgid "NO AD BLOCKING"
1811
  msgstr ""
1812
 
1813
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
1814
- #: includes/functions.php:4016 includes/functions.php:4023
1815
  msgid "AD BLOCKING REPLACEMENT"
1816
  msgstr ""
1817
 
1818
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
1819
- #: includes/functions.php:4166 includes/functions.php:4375
1820
  msgid "Pageviews"
1821
  msgstr ""
1822
 
1823
- #: includes/functions.old.php:4265 includes/functions.php:4312
1824
  msgctxt "Version"
1825
  msgid "Unknown"
1826
  msgstr ""
1827
 
1828
- #: includes/functions.old.php:4265 includes/functions.php:4312
1829
  msgctxt "Times"
1830
  msgid "DISPLAYED"
1831
  msgstr ""
1832
 
1833
- #: includes/functions.old.php:4265 includes/functions.php:4312
1834
  msgid "No version"
1835
  msgstr ""
1836
 
1837
- #: includes/functions.old.php:4266 includes/functions.php:4313
1838
  msgctxt "Times"
1839
  msgid "BLOCKED"
1840
  msgstr ""
1841
 
1842
- #: includes/functions.old.php:4328 includes/functions.php:4375
1843
  msgid "Impressions"
1844
  msgstr ""
1845
 
1846
  #: includes/functions.old.php:4329 includes/functions.old.php:4330
1847
- #: includes/functions.old.php:4385 includes/functions.php:4376
1848
- #: includes/functions.php:4377 includes/functions.php:4432
1849
  msgid "Clicks"
1850
  msgstr ""
1851
 
1852
- #: includes/functions.old.php:4330 includes/functions.php:4377
1853
  msgid "events"
1854
  msgstr ""
1855
 
1856
- #: includes/functions.old.php:4331 includes/functions.php:4378
1857
  msgid "Ad Blocking Share"
1858
  msgstr ""
1859
 
1860
  #. translators: CTR as Click Through Rate
1861
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
1862
- #: includes/functions.php:4378 includes/functions.php:4438
1863
  msgid "CTR"
1864
  msgstr ""
1865
 
1866
- #: includes/functions.old.php:4473 includes/functions.php:4520
1867
  msgid "pageviews"
1868
  msgid_plural "pageviews"
1869
  msgstr[0] ""
1870
  msgstr[1] ""
1871
 
1872
- #: includes/functions.old.php:4473 includes/functions.php:4520
1873
  msgid "impressions"
1874
  msgid_plural "impressions"
1875
  msgstr[0] ""
1876
  msgstr[1] ""
1877
 
1878
- #: includes/functions.old.php:4477 includes/functions.php:4524
1879
  msgid "event"
1880
  msgid_plural "events"
1881
  msgstr[0] ""
1882
  msgstr[1] ""
1883
 
1884
- #: includes/functions.old.php:4572 includes/functions.php:4619
1885
  msgctxt "Pageviews / Impressions"
1886
  msgid "Average"
1887
  msgstr ""
1888
 
1889
- #: includes/functions.old.php:4593 includes/functions.php:4640
1890
  msgctxt "Ad Blocking / Clicks"
1891
  msgid "Average"
1892
  msgstr ""
1893
 
1894
- #: includes/functions.old.php:4617 includes/functions.php:4664
1895
  msgctxt "Ad Blocking Share / CTR"
1896
  msgid "Average"
1897
  msgstr ""
1898
 
1899
  #. Translators: %s: Ad Inserter Pro
1900
  #: includes/functions.old.php:4799 includes/functions.old.php:4891
1901
- #: includes/functions.old.php:5207 includes/functions.php:4846
1902
- #: includes/functions.php:4938 includes/functions.php:5267 strings.php:184
1903
  msgid "%s Report"
1904
  msgstr ""
1905
 
1906
- #: includes/functions.old.php:5113 includes/functions.php:5173
1907
  msgid "for last month"
1908
  msgstr ""
1909
 
1910
- #: includes/functions.old.php:5118 includes/functions.php:5178
1911
  msgid "for this month"
1912
  msgstr ""
1913
 
1914
- #: includes/functions.old.php:5123 includes/functions.php:5183
1915
  msgid "for this year"
1916
  msgstr ""
1917
 
1918
- #: includes/functions.old.php:5128 includes/functions.php:5188
1919
  msgid "for the last 15 days"
1920
  msgstr ""
1921
 
1922
- #: includes/functions.old.php:5133 includes/functions.php:5193
1923
  msgid "for the last 30 days"
1924
  msgstr ""
1925
 
1926
- #: includes/functions.old.php:5138 includes/functions.php:5198
1927
  msgid "for the last 90 days"
1928
  msgstr ""
1929
 
1930
- #: includes/functions.old.php:5143 includes/functions.php:5203
1931
  msgid "for the last 180 days"
1932
  msgstr ""
1933
 
1934
- #: includes/functions.old.php:5148 includes/functions.php:5208
1935
  msgid "for the last 365 days"
1936
  msgstr ""
1937
 
1938
- #: includes/functions.php:519
1939
  msgid "Pin list"
1940
  msgstr ""
1941
 
1942
  #. translators: %s: Ad Inserter Pro
1943
- #: includes/functions.php:1393
1944
  msgid "Warning: %s plugin update server is not accessible"
1945
  msgstr ""
1946
 
1947
  #. translators: updates are not available
1948
- #: includes/functions.php:1395
1949
  msgid "updates"
1950
  msgstr ""
1951
 
1952
  #. translators: updates are not available
1953
- #: includes/functions.php:1397
1954
  msgid "are not available"
1955
  msgstr ""
1956
 
@@ -1978,7 +1983,7 @@ msgstr ""
1978
  msgid "Placeholder"
1979
  msgstr ""
1980
 
1981
- #: includes/placeholders.php:363 settings.php:900 settings.php:4140
1982
  msgid "Size"
1983
  msgstr ""
1984
 
@@ -2086,11 +2091,11 @@ msgstr ""
2086
  msgid "Ad Blocking Detected Message Preview"
2087
  msgstr ""
2088
 
2089
- #: includes/preview-adb.php:348 settings.php:2754
2090
  msgid "Message CSS"
2091
  msgstr ""
2092
 
2093
- #: includes/preview-adb.php:353 settings.php:2762
2094
  msgid "Overlay CSS"
2095
  msgstr ""
2096
 
@@ -2130,7 +2135,7 @@ msgstr ""
2130
  msgid "background"
2131
  msgstr ""
2132
 
2133
- #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1251
2134
  msgid "Alignment"
2135
  msgstr ""
2136
 
@@ -2228,7 +2233,7 @@ msgid ""
2228
  "the values to those of the current block."
2229
  msgstr ""
2230
 
2231
- #: settings.php:172 settings.php:1140
2232
  msgid ""
2233
  "Settings for individual exceptions have been updated. Please check all "
2234
  "blocks that have exceptions and and then save settings."
@@ -2238,7 +2243,7 @@ msgstr ""
2238
  msgid "Online documentation"
2239
  msgstr ""
2240
 
2241
- #: settings.php:218 settings.php:736 settings.php:2150
2242
  msgid "Show AdSense ad units"
2243
  msgstr ""
2244
 
@@ -2246,7 +2251,7 @@ msgstr ""
2246
  msgid "Edit ads.txt file"
2247
  msgstr ""
2248
 
2249
- #: settings.php:226 settings.php:1083
2250
  msgid "Check theme for available positions for automatic insertion"
2251
  msgstr ""
2252
 
@@ -2362,311 +2367,311 @@ msgstr ""
2362
  msgid "General Settings"
2363
  msgstr ""
2364
 
2365
- #: settings.php:684 settings.php:2481 settings.php:2548 settings.php:2734
2366
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2367
  msgstr ""
2368
 
2369
- #: settings.php:691
2370
  msgid "Toggle tools"
2371
  msgstr ""
2372
 
2373
- #: settings.php:699
2374
  msgid "Process PHP code in block"
2375
  msgstr ""
2376
 
2377
- #: settings.php:706
2378
  msgid "Disable insertion of this block"
2379
  msgstr ""
2380
 
2381
- #: settings.php:718
2382
  msgid "Toggle code generator"
2383
  msgstr ""
2384
 
2385
- #: settings.php:722
2386
  msgid "Toggle rotation editor"
2387
  msgstr ""
2388
 
2389
- #: settings.php:726
2390
  msgid "Open visual HTML editor"
2391
  msgstr ""
2392
 
2393
- #: settings.php:745
2394
  msgid "Clear block"
2395
  msgstr ""
2396
 
2397
- #: settings.php:750 settings.php:4012
2398
  msgid "Copy block"
2399
  msgstr ""
2400
 
2401
- #: settings.php:754
2402
  msgid "Paste name"
2403
  msgstr ""
2404
 
2405
- #: settings.php:758
2406
  msgid "Paste code"
2407
  msgstr ""
2408
 
2409
- #: settings.php:762
2410
  msgid "Paste settings"
2411
  msgstr ""
2412
 
2413
- #: settings.php:766
2414
  msgid "Paste block (name, code and settings)"
2415
  msgstr ""
2416
 
2417
- #: settings.php:785
2418
  msgid "Rotation groups"
2419
  msgstr ""
2420
 
2421
- #: settings.php:789
2422
  msgid "Remove option"
2423
  msgstr ""
2424
 
2425
- #: settings.php:793
2426
  msgid "Add option"
2427
  msgstr ""
2428
 
2429
- #: settings.php:808
2430
  msgid "Import code"
2431
  msgstr ""
2432
 
2433
- #: settings.php:812
2434
  msgid "Generate code"
2435
  msgstr ""
2436
 
2437
- #: settings.php:817
2438
  msgid "Banner"
2439
  msgstr ""
2440
 
2441
- #: settings.php:828
2442
  msgid "Image"
2443
  msgstr ""
2444
 
2445
- #: settings.php:836
2446
  msgid "Link"
2447
  msgstr ""
2448
 
2449
- #: settings.php:847
2450
  msgid "Open link in a new tab"
2451
  msgstr ""
2452
 
2453
- #: settings.php:848
2454
  msgid "Select Image"
2455
  msgstr ""
2456
 
2457
- #: settings.php:849
2458
  msgid "Select Placeholder"
2459
  msgstr ""
2460
 
2461
- #: settings.php:861
2462
  msgid "Comment"
2463
  msgstr ""
2464
 
2465
- #: settings.php:870
2466
  msgctxt "AdSense"
2467
  msgid "Publisher ID"
2468
  msgstr ""
2469
 
2470
- #: settings.php:879
2471
  msgctxt "AdSense"
2472
  msgid "Ad Slot ID"
2473
  msgstr ""
2474
 
2475
- #: settings.php:888
2476
  msgid "Ad Type"
2477
  msgstr ""
2478
 
2479
- #: settings.php:912
2480
  msgid "AMP Ad"
2481
  msgstr ""
2482
 
2483
- #: settings.php:929
2484
  msgid "Show ad units from your AdSense account"
2485
  msgstr ""
2486
 
2487
- #: settings.php:929
2488
  msgid "AdSense ad units"
2489
  msgstr ""
2490
 
2491
- #: settings.php:946
2492
  msgctxt "AdSense"
2493
  msgid "Layout"
2494
  msgstr ""
2495
 
2496
- #: settings.php:955
2497
  msgctxt "AdSense"
2498
  msgid "Layout Key"
2499
  msgstr ""
2500
 
2501
- #: settings.php:965
2502
  msgid "Full width"
2503
  msgstr ""
2504
 
2505
- #: settings.php:967
2506
  msgctxt "Full width"
2507
  msgid "Enabled"
2508
  msgstr ""
2509
 
2510
- #: settings.php:968
2511
  msgctxt "Full width"
2512
  msgid "Disabled"
2513
  msgstr ""
2514
 
2515
- #: settings.php:1049
2516
  msgid ""
2517
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2518
  "Cookie or Referer (domain)"
2519
  msgstr ""
2520
 
2521
- #: settings.php:1049
2522
  msgid "Lists"
2523
  msgstr ""
2524
 
2525
- #: settings.php:1050
2526
  msgid "Widget, Shortcode and PHP function call"
2527
  msgstr ""
2528
 
2529
- #: settings.php:1050
2530
  msgid "Manual"
2531
  msgstr ""
2532
 
2533
- #: settings.php:1051
2534
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2535
  msgstr ""
2536
 
2537
- #: settings.php:1051
2538
  msgid "Devices"
2539
  msgstr ""
2540
 
2541
- #: settings.php:1052
2542
  msgid ""
2543
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2544
  "feeds), Filter, Scheduling, General tag"
2545
  msgstr ""
2546
 
2547
- #: settings.php:1052
2548
  msgid "Misc"
2549
  msgstr ""
2550
 
2551
- #: settings.php:1053
2552
  msgid "Preview code and alignment"
2553
  msgstr ""
2554
 
2555
- #: settings.php:1056 settings.php:2134
2556
  msgid ""
2557
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2558
  "editor is active before saving settings."
2559
  msgstr ""
2560
 
2561
- #: settings.php:1069 settings.php:1070
2562
  msgid "Enable insertion on posts"
2563
  msgstr ""
2564
 
2565
- #: settings.php:1070 settings.php:3280
2566
  msgid "Posts"
2567
  msgstr ""
2568
 
2569
- #: settings.php:1074 settings.php:1075
2570
  msgid ""
2571
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2572
  "page or theme homepage (available positions may depend on hooks used by the "
2573
  "theme)"
2574
  msgstr ""
2575
 
2576
- #: settings.php:1075 settings.php:3282
2577
  msgid "Homepage"
2578
  msgstr ""
2579
 
2580
- #: settings.php:1079 settings.php:1080
2581
  msgid "Enable insertion on category blog pages (including sub-pages)"
2582
  msgstr ""
2583
 
2584
- #: settings.php:1080 settings.php:3283
2585
  msgid "Category pages"
2586
  msgstr ""
2587
 
2588
- #: settings.php:1090 settings.php:1091
2589
  msgid "Enable insertion on static pages"
2590
  msgstr ""
2591
 
2592
- #: settings.php:1091 settings.php:3281
2593
  msgid "Static pages"
2594
  msgstr ""
2595
 
2596
- #: settings.php:1095 settings.php:1096
2597
  msgid "Enable insertion on search blog pages"
2598
  msgstr ""
2599
 
2600
- #: settings.php:1096 settings.php:3285
2601
  msgid "Search pages"
2602
  msgstr ""
2603
 
2604
- #: settings.php:1100 settings.php:1101
2605
  msgid "Enable insertion on tag or archive blog pages"
2606
  msgstr ""
2607
 
2608
- #: settings.php:1104
2609
  msgid "Toggle settings for default insertion and list of individual exceptions"
2610
  msgstr ""
2611
 
2612
- #: settings.php:1116
2613
  msgid ""
2614
  "Enable individual post/page exceptions for insertion of this block. They can "
2615
  "be configured on the individual post/page editor page (in the settings below "
2616
  "the editor)."
2617
  msgstr ""
2618
 
2619
- #: settings.php:1117
2620
  msgid ""
2621
  "Enable individual post/page exceptions for insertion of this block. When "
2622
  "enabled they can be configured on the individual post/page editor page (in "
2623
  "the settings below the editor)."
2624
  msgstr ""
2625
 
2626
- #: settings.php:1117
2627
  msgid "Use exceptions for individual posts or pages to change insertion"
2628
  msgstr ""
2629
 
2630
  #. Translators: Enabled means...
2631
- #: settings.php:1125
2632
  msgid ""
2633
  "means the insertion for this block is enabled by default and disabled for "
2634
  "exceptions."
2635
  msgstr ""
2636
 
2637
  #. Translators: Disabled means...
2638
- #: settings.php:1126
2639
  msgid ""
2640
  "means the insertion for this block is disabled by default and enabled for "
2641
  "exceptions."
2642
  msgstr ""
2643
 
2644
- #: settings.php:1127
2645
  msgid ""
2646
  "When individual post/page exceptions are enabled they can be configured on "
2647
  "the individual post/page editor page (in the settings below the editor)."
2648
  msgstr ""
2649
 
2650
- #: settings.php:1135
2651
  msgid ""
2652
  "No exception for post or static page defined. Block will not be inserted."
2653
  msgstr ""
2654
 
2655
- #: settings.php:1153
2656
  msgctxt "post"
2657
  msgid "Type"
2658
  msgstr ""
2659
 
2660
  #. translators: %d: block number
2661
- #: settings.php:1155
2662
  msgid "Are you sure you want to clear all exceptions for block %d?"
2663
  msgstr ""
2664
 
2665
- #: settings.php:1182 settings.php:1330 settings.php:1926
2666
  msgid "Insertion"
2667
  msgstr ""
2668
 
2669
- #: settings.php:1220
2670
  msgid ""
2671
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2672
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -2676,7 +2681,7 @@ msgid ""
2676
  "negative number means counting from the opposite direction"
2677
  msgstr ""
2678
 
2679
- #: settings.php:1221
2680
  msgid ""
2681
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2682
  "means every N images, empty means all images, 0 means random image, value "
@@ -2686,286 +2691,286 @@ msgid ""
2686
  "direction"
2687
  msgstr ""
2688
 
2689
- #: settings.php:1234
2690
  msgid ""
2691
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2692
  "numbers, %N means every N excerpts, empty means all excerpts"
2693
  msgstr ""
2694
 
2695
- #: settings.php:1235
2696
  msgid ""
2697
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2698
  "numbers, %N means every N posts, empty means all posts"
2699
  msgstr ""
2700
 
2701
- #: settings.php:1236
2702
  msgid ""
2703
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
2704
  "numbers, %N means every N comments, empty means all comments"
2705
  msgstr ""
2706
 
2707
- #: settings.php:1243
2708
  msgid "Toggle paragraph counting settings"
2709
  msgstr ""
2710
 
2711
- #: settings.php:1244
2712
  msgid "Toggle paragraph clearance settings"
2713
  msgstr ""
2714
 
2715
- #: settings.php:1247
2716
  msgid "Toggle insertion filter settings"
2717
  msgstr ""
2718
 
2719
- #: settings.php:1265
2720
  msgid "Toggle insertion and alignment icons"
2721
  msgstr ""
2722
 
2723
- #: settings.php:1279
2724
  msgid "Custom CSS code for the wrapping div"
2725
  msgstr ""
2726
 
2727
- #: settings.php:1282 settings.php:1283 settings.php:1284 settings.php:1285
2728
- #: settings.php:1286 settings.php:1287
2729
  msgid "CSS code for the wrapping div, click to edit"
2730
  msgstr ""
2731
 
2732
- #: settings.php:1300
2733
  msgid "HTML element"
2734
  msgstr ""
2735
 
2736
- #: settings.php:1313
2737
  msgid "HTML element selector or comma separated list of selectors"
2738
  msgstr ""
2739
 
2740
- #: settings.php:1319 settings.php:2639
2741
  msgid "Action"
2742
  msgstr ""
2743
 
2744
- #: settings.php:1331
2745
  msgid ""
2746
  "Client-side insertion uses JavaScript to insert block when the page loads. "
2747
  "Server-side insertion inserts block when the page is generated but needs "
2748
  "Output buffering enabled."
2749
  msgstr ""
2750
 
2751
- #: settings.php:1341
2752
  msgid "JavaScript code position"
2753
  msgstr ""
2754
 
2755
- #: settings.php:1342
2756
  msgid ""
2757
  "Page position where the JavaScript code for client-side insertion will be "
2758
  "inserted. Should be after the HTML element if not waiting for DOM ready."
2759
  msgstr ""
2760
 
2761
- #: settings.php:1357
2762
  msgid "Count"
2763
  msgstr ""
2764
 
2765
- #: settings.php:1363
2766
  msgid "paragraphs with tags"
2767
  msgstr ""
2768
 
2769
- #: settings.php:1369
2770
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
2771
  msgstr ""
2772
 
2773
- #: settings.php:1378
2774
  msgid "that have between"
2775
  msgstr ""
2776
 
2777
- #: settings.php:1384
2778
  msgid "Minimum number of paragraph words, leave empty for no limit"
2779
  msgstr ""
2780
 
2781
- #: settings.php:1393
2782
  msgid "Maximum number of paragraph words, leave empty for no limit"
2783
  msgstr ""
2784
 
2785
- #: settings.php:1396
2786
  msgid "words"
2787
  msgstr ""
2788
 
2789
- #: settings.php:1411 settings.php:1469 settings.php:1539 settings.php:1565
2790
  msgid "Comma separated texts"
2791
  msgstr ""
2792
 
2793
- #: settings.php:1424
2794
  msgid ""
2795
  "Count also paragraphs inside these elements - defined on general plugin "
2796
  "settings page - tab [*] / tab General"
2797
  msgstr ""
2798
 
2799
  #. Translators: %s: HTML tags
2800
- #: settings.php:1429
2801
  msgid "Count inside %s elements"
2802
  msgstr ""
2803
 
2804
  #. translators: inside [HTML tags] elements that contain
2805
- #: settings.php:1441
2806
  msgid "inside"
2807
  msgstr ""
2808
 
2809
- #: settings.php:1447
2810
  msgid "Comma separated HTML tag names of container elements"
2811
  msgstr ""
2812
 
2813
  #. translators: inside [HTML tags] elements that contain
2814
- #: settings.php:1456
2815
  msgid "elements that"
2816
  msgstr ""
2817
 
2818
- #: settings.php:1482 settings.php:2049
2819
  msgid "Post/Static page must have between"
2820
  msgstr ""
2821
 
2822
- #: settings.php:1488
2823
  msgid "Minimum number of paragraphs, leave empty for no limit"
2824
  msgstr ""
2825
 
2826
- #: settings.php:1497
2827
  msgid "Maximum number of paragraphs, leave empty for no limit"
2828
  msgstr ""
2829
 
2830
  #. Translators: Post/Static page must have between X and Y paragraphs
2831
- #: settings.php:1500
2832
  msgid "paragraph"
2833
  msgid_plural "paragraphs"
2834
  msgstr[0] ""
2835
  msgstr[1] ""
2836
 
2837
- #: settings.php:1508
2838
  msgid "Minimum number of words in paragraphs above"
2839
  msgstr ""
2840
 
2841
- #: settings.php:1514
2842
  msgid ""
2843
  "Used only with automatic insertion After paragraph and empty paragraph "
2844
  "numbers"
2845
  msgstr ""
2846
 
2847
- #: settings.php:1524 settings.php:1550
2848
  msgid "In"
2849
  msgstr ""
2850
 
2851
- #: settings.php:1530
2852
  msgid "Number of paragraphs above to check, leave empty to disable checking"
2853
  msgstr ""
2854
 
2855
- #: settings.php:1533
2856
  msgid "paragraphs above avoid"
2857
  msgstr ""
2858
 
2859
- #: settings.php:1556
2860
  msgid "Number of paragraphs below to check, leave empty to disable checking"
2861
  msgstr ""
2862
 
2863
- #: settings.php:1559
2864
  msgid "paragraphs below avoid"
2865
  msgstr ""
2866
 
2867
- #: settings.php:1575
2868
  msgid "If text is found"
2869
  msgstr ""
2870
 
2871
- #: settings.php:1582
2872
  msgid "check up to"
2873
  msgstr ""
2874
 
2875
- #: settings.php:1590
2876
  msgctxt "check up to"
2877
  msgid "paragraphs"
2878
  msgstr ""
2879
 
2880
- #: settings.php:1606
2881
  msgid "Categories"
2882
  msgstr ""
2883
 
2884
- #: settings.php:1609
2885
  msgid "Toggle category editor"
2886
  msgstr ""
2887
 
2888
- #: settings.php:1612
2889
  msgid "Comma separated category slugs"
2890
  msgstr ""
2891
 
2892
- #: settings.php:1616
2893
  msgid "Blacklist categories"
2894
  msgstr ""
2895
 
2896
- #: settings.php:1620
2897
  msgid "Whitelist categories"
2898
  msgstr ""
2899
 
2900
- #: settings.php:1632
2901
  msgid "Tags"
2902
  msgstr ""
2903
 
2904
- #: settings.php:1635
2905
  msgid "Toggle tag editor"
2906
  msgstr ""
2907
 
2908
- #: settings.php:1638
2909
  msgid "Comma separated tag slugs"
2910
  msgstr ""
2911
 
2912
- #: settings.php:1642
2913
  msgid "Blacklist tags"
2914
  msgstr ""
2915
 
2916
- #: settings.php:1646
2917
  msgid "Whitelist tags"
2918
  msgstr ""
2919
 
2920
- #: settings.php:1658
2921
  msgid "Taxonomies"
2922
  msgstr ""
2923
 
2924
- #: settings.php:1661
2925
  msgid "Toggle taxonomy editor"
2926
  msgstr ""
2927
 
2928
- #: settings.php:1664
2929
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
2930
  msgstr ""
2931
 
2932
- #: settings.php:1668
2933
  msgid "Blacklist taxonomies"
2934
  msgstr ""
2935
 
2936
- #: settings.php:1672
2937
  msgid "Whitelist taxonomies"
2938
  msgstr ""
2939
 
2940
- #: settings.php:1684
2941
  msgid "Post IDs"
2942
  msgstr ""
2943
 
2944
- #: settings.php:1687
2945
  msgid "Toggle post/page ID editor"
2946
  msgstr ""
2947
 
2948
- #: settings.php:1690
2949
  msgid "Comma separated post/page IDs"
2950
  msgstr ""
2951
 
2952
- #: settings.php:1694
2953
  msgid "Blacklist IDs"
2954
  msgstr ""
2955
 
2956
- #: settings.php:1698
2957
  msgid "Whitelist IDs"
2958
  msgstr ""
2959
 
2960
- #: settings.php:1710
2961
  msgid "Urls"
2962
  msgstr ""
2963
 
2964
- #: settings.php:1713
2965
  msgid "Toggle url editor"
2966
  msgstr ""
2967
 
2968
- #: settings.php:1716
2969
  msgid ""
2970
  "Comma separated urls (page addresses) starting with / after domain name (e."
2971
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -2973,216 +2978,236 @@ msgid ""
2973
  "start*. *url-pattern*, *url-end)"
2974
  msgstr ""
2975
 
2976
- #: settings.php:1720
2977
  msgid "Blacklist urls"
2978
  msgstr ""
2979
 
2980
- #: settings.php:1724
2981
  msgid "Whitelist urls"
2982
  msgstr ""
2983
 
2984
- #: settings.php:1735
2985
  msgid "Url parameters"
2986
  msgstr ""
2987
 
2988
- #: settings.php:1739
2989
  msgid "Toggle url parameter and cookie editor"
2990
  msgstr ""
2991
 
2992
- #: settings.php:1742
2993
  msgid ""
2994
  "Comma separated url query parameters or cookies with optional values (use "
2995
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
2996
  msgstr ""
2997
 
2998
- #: settings.php:1746
2999
  msgid "Blacklist url parameters"
3000
  msgstr ""
3001
 
3002
- #: settings.php:1750
3003
  msgid "Whitelist url parameters"
3004
  msgstr ""
3005
 
3006
- #: settings.php:1761
3007
  msgid "Referrers"
3008
  msgstr ""
3009
 
3010
- #: settings.php:1764
3011
  msgid "Toggle referer editor"
3012
  msgstr ""
3013
 
3014
- #: settings.php:1767
3015
  msgid ""
3016
  "Comma separated domains, use # for no referrer, you can also use partial "
3017
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3018
  msgstr ""
3019
 
3020
- #: settings.php:1771
3021
  msgid "Blacklist referers"
3022
  msgstr ""
3023
 
3024
- #: settings.php:1775
3025
  msgid "Whitelist referers"
3026
  msgstr ""
3027
 
3028
- #: settings.php:1795
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3029
  msgid "Enable widget for this block"
3030
  msgstr ""
3031
 
3032
- #: settings.php:1807
3033
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3034
  msgstr ""
3035
 
3036
- #: settings.php:1808 settings.php:4068
3037
  msgid "Shortcode"
3038
  msgstr ""
3039
 
3040
- #: settings.php:1823
3041
  msgid ""
3042
  "Enable PHP function call to insert this block at any position in theme file. "
3043
  "If function is disabled for block it will return empty string."
3044
  msgstr ""
3045
 
3046
- #: settings.php:1824
3047
  msgid "PHP function"
3048
  msgstr ""
3049
 
3050
- #: settings.php:1839
3051
  msgid "Client-side device detection"
3052
  msgstr ""
3053
 
3054
- #: settings.php:1840
3055
  msgid "Server-side device detection"
3056
  msgstr ""
3057
 
3058
- #: settings.php:1847
3059
  msgid "Use client-side detection to"
3060
  msgstr ""
3061
 
3062
- #: settings.php:1849
3063
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3064
  msgstr ""
3065
 
3066
  #. Translators: only on (the following devices): viewport names (devices)
3067
  #. listed
3068
- #: settings.php:1854
3069
  msgid "only on"
3070
  msgstr ""
3071
 
3072
- #: settings.php:1882
3073
  msgid "Device min width %s px"
3074
  msgstr ""
3075
 
3076
- #: settings.php:1908
3077
  msgid "Use server-side detection to insert block only for"
3078
  msgstr ""
3079
 
3080
- #: settings.php:1927
3081
  msgid "Filter"
3082
  msgstr ""
3083
 
3084
- #: settings.php:1928
3085
  msgid "Word Count"
3086
  msgstr ""
3087
 
3088
- #: settings.php:1929 settings.php:4058
3089
  msgid "Scheduling"
3090
  msgstr ""
3091
 
3092
- #: settings.php:1930
3093
  msgid "Display"
3094
  msgstr ""
3095
 
3096
- #: settings.php:1932 settings.php:2176
3097
  msgid "General"
3098
  msgstr ""
3099
 
3100
- #: settings.php:1944
3101
  msgid "Old settings for AMP pages detected"
3102
  msgstr ""
3103
 
3104
- #: settings.php:1944
3105
  msgid ""
3106
  "To insert different codes on normal and AMP pages separate them with "
3107
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3108
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3109
  msgstr ""
3110
 
3111
- #: settings.php:1944
3112
  msgid "AMP pages"
3113
  msgstr ""
3114
 
3115
- #: settings.php:1949
3116
  msgid "Enable insertion for Ajax requests"
3117
  msgstr ""
3118
 
3119
- #: settings.php:1949
3120
  msgid "Ajax requests"
3121
  msgstr ""
3122
 
3123
- #: settings.php:1954
3124
  msgid "Enable insertion in RSS feeds"
3125
  msgstr ""
3126
 
3127
- #: settings.php:1954
3128
  msgid "RSS Feed"
3129
  msgstr ""
3130
 
3131
- #: settings.php:1959
3132
  msgid "Enable insertion on page for Error 404: Page not found"
3133
  msgstr ""
3134
 
3135
- #: settings.php:1959
3136
  msgid "Error 404 page"
3137
  msgstr ""
3138
 
3139
- #: settings.php:1971
3140
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3141
  msgstr ""
3142
 
3143
- #: settings.php:1972
3144
  msgid "insertions"
3145
  msgstr ""
3146
 
3147
- #: settings.php:1974
3148
  msgid ""
3149
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3150
  "General)"
3151
  msgstr ""
3152
 
3153
- #: settings.php:1977 settings.php:2345
3154
  msgid "Max blocks per page"
3155
  msgstr ""
3156
 
3157
- #: settings.php:1989
3158
  msgid "Insert for"
3159
  msgstr ""
3160
 
3161
- #: settings.php:1997
3162
  msgid ""
3163
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3164
  "currently active). Might speed up insertion on content pages when "
3165
  "the_content filter is called multiple times."
3166
  msgstr ""
3167
 
3168
- #: settings.php:2000
3169
  msgid "Insert only in the loop"
3170
  msgstr ""
3171
 
3172
- #: settings.php:2006
3173
  msgid ""
3174
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3175
  msgstr ""
3176
 
3177
- #: settings.php:2006
3178
  msgid "Disable caching"
3179
  msgstr ""
3180
 
3181
- #: settings.php:2018
3182
  msgid "Filter insertions"
3183
  msgstr ""
3184
 
3185
- #: settings.php:2021
3186
  msgid ""
3187
  "Filter multiple insertions by specifying wanted insertions for this block - "
3188
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -3190,527 +3215,527 @@ msgid ""
3190
  "using only one insertion type."
3191
  msgstr ""
3192
 
3193
- #: settings.php:2024
3194
  msgid "using"
3195
  msgstr ""
3196
 
3197
- #: settings.php:2043
3198
  msgid "Checked means specified calls are unwanted"
3199
  msgstr ""
3200
 
3201
- #: settings.php:2043
3202
  msgid "Invert filter"
3203
  msgstr ""
3204
 
3205
- #: settings.php:2050
3206
  msgid "Minimum number of post/static page words, leave empty for no limit"
3207
  msgstr ""
3208
 
3209
- #: settings.php:2052
3210
  msgid "Maximum number of post/static page words, leave empty for no limit"
3211
  msgstr ""
3212
 
3213
- #: settings.php:2065
3214
  msgid "days after publishing"
3215
  msgstr ""
3216
 
3217
- #: settings.php:2067
3218
  msgid "Not available"
3219
  msgstr ""
3220
 
3221
- #: settings.php:2080 settings.php:2337
3222
  msgid "Ad label"
3223
  msgstr ""
3224
 
3225
- #: settings.php:2100
3226
  msgid "General tag"
3227
  msgstr ""
3228
 
3229
- #: settings.php:2104
3230
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3231
  msgstr ""
3232
 
3233
  #. translators: %s: HTML tags
3234
- #: settings.php:2113
3235
  msgid ""
3236
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
3237
  "side device detection!"
3238
  msgstr ""
3239
 
3240
- #: settings.php:2125
3241
  msgid "Settings"
3242
  msgstr ""
3243
 
3244
- #: settings.php:2128
3245
  msgid "Settings timestamp"
3246
  msgstr ""
3247
 
3248
- #: settings.php:2141
3249
  msgid "Are you sure you want to reset all settings?"
3250
  msgstr ""
3251
 
3252
- #: settings.php:2141
3253
  msgid "Reset All Settings"
3254
  msgstr ""
3255
 
3256
- #: settings.php:2177
3257
  msgid "Viewports"
3258
  msgstr ""
3259
 
3260
- #: settings.php:2178
3261
  msgid "Hooks"
3262
  msgstr ""
3263
 
3264
- #: settings.php:2179
3265
  msgid "Header"
3266
  msgstr ""
3267
 
3268
- #: settings.php:2180 strings.php:30
3269
  msgid "Footer"
3270
  msgstr ""
3271
 
3272
- #: settings.php:2185
3273
  msgid "Debugging"
3274
  msgstr ""
3275
 
3276
- #: settings.php:2195
3277
  msgid "Plugin priority"
3278
  msgstr ""
3279
 
3280
- #: settings.php:2203
3281
  msgid "Output buffering"
3282
  msgstr ""
3283
 
3284
- #: settings.php:2206
3285
  msgid "Needed for position Above header but may not work with all themes"
3286
  msgstr ""
3287
 
3288
- #: settings.php:2214
3289
  msgid "Syntax highlighting theme"
3290
  msgstr ""
3291
 
3292
- #: settings.php:2221
3293
  msgctxt "no syntax highlighting themes"
3294
  msgid "None"
3295
  msgstr ""
3296
 
3297
- #: settings.php:2222
3298
  msgid "No Syntax Highlighting"
3299
  msgstr ""
3300
 
3301
- #: settings.php:2224
3302
  msgctxt "syntax highlighting themes"
3303
  msgid "Light"
3304
  msgstr ""
3305
 
3306
- #: settings.php:2239
3307
  msgctxt "syntax highlighting themes"
3308
  msgid "Dark"
3309
  msgstr ""
3310
 
3311
- #: settings.php:2265
3312
  msgid "Min. user role for ind. exceptions editing"
3313
  msgstr ""
3314
 
3315
- #: settings.php:2275
3316
  msgid "Disable caching for logged in administrators"
3317
  msgstr ""
3318
 
3319
- #: settings.php:2278
3320
  msgid ""
3321
  "Enabled means that logged in administrators will see non-cached (live) pages "
3322
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3323
  msgstr ""
3324
 
3325
- #: settings.php:2286
3326
  msgid "Sticky widget mode"
3327
  msgstr ""
3328
 
3329
- #: settings.php:2289
3330
  msgid ""
3331
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3332
  "mode works with most themes but may reload ads on page load."
3333
  msgstr ""
3334
 
3335
- #: settings.php:2297
3336
  msgid "Sticky widget top margin"
3337
  msgstr ""
3338
 
3339
- #: settings.php:2305
3340
  msgid "Dynamic blocks"
3341
  msgstr ""
3342
 
3343
- #: settings.php:2318
3344
  msgid "Functions for paragraph counting"
3345
  msgstr ""
3346
 
3347
- #: settings.php:2321
3348
  msgid ""
3349
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3350
  "functions if paragraphs are not counted properly on non-english pages."
3351
  msgstr ""
3352
 
3353
- #: settings.php:2329
3354
  msgid "No paragraph counting inside"
3355
  msgstr ""
3356
 
3357
- #: settings.php:2340
3358
  msgid "Label text or HTML code"
3359
  msgstr ""
3360
 
3361
- #: settings.php:2348
3362
  msgid ""
3363
  "Maximum number of inserted blocks per page. You need to enable Max page "
3364
  "insertions (button Misc / tab Insertion) to count block for this limit."
3365
  msgstr ""
3366
 
3367
- #: settings.php:2362
3368
  msgid "Plugin usage tracking"
3369
  msgstr ""
3370
 
3371
  #. translators: %s: Ad Inserter
3372
- #: settings.php:2365
3373
  msgid ""
3374
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3375
  "Only information regarding the WordPress environment and %s usage is "
3376
  "recorded (once per month and on events like plugin activation/deactivation)."
3377
  msgstr ""
3378
 
3379
- #: settings.php:2383
3380
  msgid "CSS class name for the wrapping div"
3381
  msgstr ""
3382
 
3383
- #: settings.php:2383
3384
  msgid "Block class name"
3385
  msgstr ""
3386
 
3387
- #: settings.php:2387
3388
  msgid "Include general plugin block class"
3389
  msgstr ""
3390
 
3391
- #: settings.php:2387
3392
  msgid "Block class"
3393
  msgstr ""
3394
 
3395
- #: settings.php:2392
3396
  msgid "Include block number class"
3397
  msgstr ""
3398
 
3399
- #: settings.php:2392
3400
  msgid "Block number class"
3401
  msgstr ""
3402
 
3403
- #: settings.php:2397
3404
  msgid ""
3405
  "Instead of alignment classes generate inline alignment styles for blocks"
3406
  msgstr ""
3407
 
3408
- #: settings.php:2397
3409
  msgid "Inline styles"
3410
  msgstr ""
3411
 
3412
- #: settings.php:2403
3413
  msgid "Preview of the block wrapping code"
3414
  msgstr ""
3415
 
3416
- #: settings.php:2404
3417
  msgid "Wrapping div"
3418
  msgstr ""
3419
 
3420
- #: settings.php:2405 settings.php:2845
3421
  msgid "BLOCK CODE"
3422
  msgstr ""
3423
 
3424
- #: settings.php:2413
3425
  msgid "Viewport Settings used for client-side device detection"
3426
  msgstr ""
3427
 
3428
  #. Translators: %d: viewport number
3429
- #: settings.php:2421
3430
  msgid "Viewport %d name"
3431
  msgstr ""
3432
 
3433
- #: settings.php:2424
3434
  msgid "min width"
3435
  msgstr ""
3436
 
3437
- #: settings.php:2435
3438
  msgid "Custom Hooks"
3439
  msgstr ""
3440
 
3441
- #: settings.php:2447 settings.php:2450
3442
  msgid "Enable hook"
3443
  msgstr ""
3444
 
3445
  #. translators: %d: hook number
3446
- #: settings.php:2450
3447
  msgid "Hook %d name"
3448
  msgstr ""
3449
 
3450
- #: settings.php:2453
3451
  msgid "Hook name for automatic insertion selection"
3452
  msgstr ""
3453
 
3454
- #: settings.php:2456
3455
  msgid "action"
3456
  msgstr ""
3457
 
3458
- #: settings.php:2459
3459
  msgid "Action name as used in the do_action () function"
3460
  msgstr ""
3461
 
3462
- #: settings.php:2462
3463
  msgid "priority"
3464
  msgstr ""
3465
 
3466
- #: settings.php:2465
3467
  msgid "Priority for the hook (default is 10)"
3468
  msgstr ""
3469
 
3470
- #: settings.php:2486
3471
  msgid "Enable insertion of this code into HTML page header"
3472
  msgstr ""
3473
 
3474
- #: settings.php:2490 settings.php:2557 settings.php:2739
3475
  msgid "Process PHP code"
3476
  msgstr ""
3477
 
3478
- #: settings.php:2494
3479
  msgid "HTML Page Header Code"
3480
  msgstr ""
3481
 
3482
- #: settings.php:2502
3483
  msgid "Code in the %s section of the HTML page"
3484
  msgstr ""
3485
 
3486
- #: settings.php:2503
3487
  msgctxt "code in the header"
3488
  msgid "NOT ENABLED"
3489
  msgstr ""
3490
 
3491
- #: settings.php:2520 settings.php:2588
3492
  msgid "Use server-side detection to insert code only for"
3493
  msgstr ""
3494
 
3495
- #: settings.php:2535
3496
  msgid ""
3497
  "Enable insertion of this code into HTML page header on page for Error 404: "
3498
  "Page not found"
3499
  msgstr ""
3500
 
3501
- #: settings.php:2535 settings.php:2603
3502
  msgid "Insert on Error 404 page"
3503
  msgstr ""
3504
 
3505
- #: settings.php:2553
3506
  msgid "Enable insertion of this code into HTML page footer"
3507
  msgstr ""
3508
 
3509
- #: settings.php:2561
3510
  msgid "HTML Page Footer Code"
3511
  msgstr ""
3512
 
3513
  #. translators: %s: HTML tags
3514
- #: settings.php:2569
3515
  msgid "Code before the %s tag of the the HTML page"
3516
  msgstr ""
3517
 
3518
- #: settings.php:2570
3519
  msgctxt "code in the footer"
3520
  msgid "NOT ENABLED"
3521
  msgstr ""
3522
 
3523
- #: settings.php:2603
3524
  msgid ""
3525
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3526
  "Page not found"
3527
  msgstr ""
3528
 
3529
- #: settings.php:2619
3530
  msgid "Code for ad blocking detection inserted. Click for details."
3531
  msgstr ""
3532
 
3533
- #: settings.php:2624
3534
  msgid "Enable detection of ad blocking"
3535
  msgstr ""
3536
 
3537
- #: settings.php:2642
3538
  msgid "Global action when ad blocking is detected"
3539
  msgstr ""
3540
 
3541
- #: settings.php:2648
3542
  msgid "No action for"
3543
  msgstr ""
3544
 
3545
- #: settings.php:2649
3546
  msgid "Exceptions for global action when ad blocking is detected."
3547
  msgstr ""
3548
 
3549
- #: settings.php:2659
3550
  msgid "Delay Action"
3551
  msgstr ""
3552
 
3553
- #: settings.php:2662
3554
  msgid ""
3555
  "Number of page views to delay action when ad blocking is detected. Leave "
3556
  "empty for no delay (action fires on first page view). Sets cookie."
3557
  msgstr ""
3558
 
3559
- #: settings.php:2662
3560
  msgctxt "Delay Action for x "
3561
  msgid "page views"
3562
  msgstr ""
3563
 
3564
- #: settings.php:2667
3565
  msgid "No Action Period"
3566
  msgstr ""
3567
 
3568
- #: settings.php:2670
3569
  msgid ""
3570
  "Number of days to supress action when ad blocking is detected. Leave empty "
3571
  "for no no-action period (action fires always after defined page view delay). "
3572
  "Sets cookie."
3573
  msgstr ""
3574
 
3575
- #: settings.php:2670
3576
  msgctxt "no action period"
3577
  msgid "days"
3578
  msgstr ""
3579
 
3580
- #: settings.php:2675
3581
  msgid "Custom Selectors"
3582
  msgstr ""
3583
 
3584
- #: settings.php:2678
3585
  msgid ""
3586
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3587
  "blocking detection. Invisible element or element with zero height means ad "
3588
  "blocking is present."
3589
  msgstr ""
3590
 
3591
- #: settings.php:2690
3592
  msgid "Redirection Page"
3593
  msgstr ""
3594
 
3595
- #: settings.php:2702
3596
  msgid "Custom Url"
3597
  msgstr ""
3598
 
3599
- #: settings.php:2707
3600
  msgid ""
3601
  "Static page for redirection when ad blocking is detected. For other pages "
3602
  "select Custom url and set it below."
3603
  msgstr ""
3604
 
3605
- #: settings.php:2716
3606
  msgid "Custom Redirection Url"
3607
  msgstr ""
3608
 
3609
- #: settings.php:2728
3610
  msgid "Message HTML code"
3611
  msgstr ""
3612
 
3613
- #: settings.php:2741
3614
  msgid "Preview message when ad blocking is detected"
3615
  msgstr ""
3616
 
3617
- #: settings.php:2770
3618
  msgid "Prevent visitors from closing the warning message"
3619
  msgstr ""
3620
 
3621
- #: settings.php:2770
3622
  msgid "Undismissible Message"
3623
  msgstr ""
3624
 
3625
- #: settings.php:2776
3626
  msgid "Not undismissible for"
3627
  msgstr ""
3628
 
3629
- #: settings.php:2777
3630
  msgid "Users which can close the warning message."
3631
  msgstr ""
3632
 
3633
- #: settings.php:2791
3634
  msgid ""
3635
  "Force showing admin toolbar for administrators when viewing site. Enable "
3636
  "this option when you are logged in as admin and you don't see admin toolbar."
3637
  msgstr ""
3638
 
3639
- #: settings.php:2799
3640
  msgid "Disable header code (Header tab)"
3641
  msgstr ""
3642
 
3643
- #: settings.php:2803
3644
  msgid "Disable footer code (Footer tab)"
3645
  msgstr ""
3646
 
3647
  #. translators: %s: Ad Inserter
3648
- #: settings.php:2807
3649
  msgid "Disable %s JavaScript code"
3650
  msgstr ""
3651
 
3652
  #. translators: %s: Ad Inserter
3653
- #: settings.php:2811
3654
  msgid "Disable %s CSS code"
3655
  msgstr ""
3656
 
3657
- #: settings.php:2815
3658
  msgid ""
3659
  "Disable PHP code processing (in all blocks including header and footer code)"
3660
  msgstr ""
3661
 
3662
- #: settings.php:2819
3663
  msgid "Disable insertion of all blocks"
3664
  msgstr ""
3665
 
3666
- #: settings.php:2823
3667
  msgid "Disable insertions"
3668
  msgstr ""
3669
 
3670
  #. translators: %s: Ad Inserter
3671
- #: settings.php:2835
3672
  msgid "%s CSS CODE"
3673
  msgstr ""
3674
 
3675
- #: settings.php:2838
3676
  msgid "HEADER CODE"
3677
  msgstr ""
3678
 
3679
  #. translators: %s: PHP tags
3680
- #: settings.php:2844
3681
  msgid "BLOCK PHP CODE"
3682
  msgstr ""
3683
 
3684
  #. translators: %s: Ad Inserter
3685
- #: settings.php:2850
3686
  msgid "%s JS CODE"
3687
  msgstr ""
3688
 
3689
- #: settings.php:2853
3690
  msgid "FOOTER CODE"
3691
  msgstr ""
3692
 
3693
- #: settings.php:2862
3694
  msgid "Force showing admin toolbar when viewing site"
3695
  msgstr ""
3696
 
3697
- #: settings.php:2869
3698
  msgid "Enable debugging functions in admin toolbar"
3699
  msgstr ""
3700
 
3701
- #: settings.php:2871
3702
  msgid "Debugging functions in admin toolbar"
3703
  msgstr ""
3704
 
3705
- #: settings.php:2878
3706
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3707
  msgstr ""
3708
 
3709
- #: settings.php:2880
3710
  msgid "Debugging functions on mobile screens"
3711
  msgstr ""
3712
 
3713
- #: settings.php:2887
3714
  msgid ""
3715
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3716
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -3719,224 +3744,224 @@ msgid ""
3719
  "administrators debugging is always enabled."
3720
  msgstr ""
3721
 
3722
- #: settings.php:2889
3723
  msgid "Remote debugging"
3724
  msgstr ""
3725
 
3726
- #: settings.php:2896
3727
  msgid ""
3728
  "Disable translation to see original texts for the settings and messages in "
3729
  "English"
3730
  msgstr ""
3731
 
3732
- #: settings.php:2898
3733
  msgid "Disable translation"
3734
  msgstr ""
3735
 
3736
- #: settings.php:3268
3737
  msgid "Available positions for current theme"
3738
  msgstr ""
3739
 
3740
- #: settings.php:3269
3741
  msgid "Error checking pages"
3742
  msgstr ""
3743
 
3744
- #: settings.php:3272
3745
  msgid "Toggle theme checker for available positions for automatic insertion"
3746
  msgstr ""
3747
 
3748
- #: settings.php:3272
3749
  msgctxt "Button"
3750
  msgid "Check"
3751
  msgstr ""
3752
 
3753
- #: settings.php:3279
3754
  msgid "Position"
3755
  msgstr ""
3756
 
3757
- #: settings.php:3284
3758
  msgid "Archive pages"
3759
  msgstr ""
3760
 
3761
- #: settings.php:3343
3762
  msgid ""
3763
  "Position not available because output buffering (tab [*]) is not enabled"
3764
  msgstr ""
3765
 
3766
- #: settings.php:3346 strings.php:226
3767
  msgid "Position not checked yet"
3768
  msgstr ""
3769
 
3770
- #: settings.php:3382
3771
  msgid "Toggle active/all blocks"
3772
  msgstr ""
3773
 
3774
- #: settings.php:3386 strings.php:213
3775
  msgid "Rearrange block order"
3776
  msgstr ""
3777
 
3778
- #: settings.php:3391
3779
  msgid "Save new block order"
3780
  msgstr ""
3781
 
3782
- #: settings.php:3417
3783
  msgid "Toggle active/all ad units"
3784
  msgstr ""
3785
 
3786
- #: settings.php:3421
3787
  msgid "Reload AdSense ad units"
3788
  msgstr ""
3789
 
3790
- #: settings.php:3425
3791
  msgid "Clear authorization to access AdSense account"
3792
  msgstr ""
3793
 
3794
- #: settings.php:3429 settings.php:4225 settings.php:4292 strings.php:221
3795
  msgid "Google AdSense Homepage"
3796
  msgstr ""
3797
 
3798
- #: settings.php:3445
3799
  msgid "Switch to physical ads.txt file"
3800
  msgstr ""
3801
 
3802
- #: settings.php:3446
3803
  msgid "Switch to virtual ads.txt file"
3804
  msgstr ""
3805
 
3806
  #. translators: %s: ads.txt
3807
- #: settings.php:3456
3808
  msgid "Open %s"
3809
  msgstr ""
3810
 
3811
- #: settings.php:3464
3812
  msgid "Reload ads.txt file"
3813
  msgstr ""
3814
 
3815
- #: settings.php:3468 settings.php:4352
3816
  msgid "Save"
3817
  msgstr ""
3818
 
3819
  #. translators: %s: Ad Inserter
3820
- #: settings.php:3643
3821
  msgid "ads.txt file: %s virtual ads.txt file"
3822
  msgstr ""
3823
 
3824
- #: settings.php:3648 settings.php:3668 strings.php:205
3825
  msgid "Warning"
3826
  msgstr ""
3827
 
3828
  #. translators: %s: Ad Inserter
3829
- #: settings.php:3648
3830
  msgid "%s virtual file ads.txt not found"
3831
  msgstr ""
3832
 
3833
- #: settings.php:3656
3834
  msgid "IMPORTANT"
3835
  msgstr ""
3836
 
3837
- #: settings.php:3656
3838
  msgid "ads.txt file must be placed on the root domain"
3839
  msgstr ""
3840
 
3841
- #: settings.php:3661
3842
  msgid "ads.txt file"
3843
  msgstr ""
3844
 
3845
- #: settings.php:3668
3846
  msgid "file %s not found"
3847
  msgstr ""
3848
 
3849
- #: settings.php:3678
3850
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3851
  msgstr ""
3852
 
3853
  #. translators: %s: Ad Inserter
3854
- #: settings.php:3684
3855
  msgid "%s virtual ads.txt file"
3856
  msgstr ""
3857
 
3858
- #: settings.php:3706
3859
  msgid "Advertising system"
3860
  msgstr ""
3861
 
3862
- #: settings.php:3707
3863
  msgid "Account ID"
3864
  msgstr ""
3865
 
3866
- #: settings.php:3709
3867
  msgid "Certification authority ID"
3868
  msgstr ""
3869
 
3870
- #: settings.php:3724
3871
  msgid "Account ID found in block and present in ads.txt"
3872
  msgstr ""
3873
 
3874
- #: settings.php:3728
3875
  msgid "Account ID found in block but not present in ads.txt"
3876
  msgstr ""
3877
 
3878
- #: settings.php:4015
3879
  msgid "Preview block"
3880
  msgstr ""
3881
 
3882
- #: settings.php:4024
3883
  msgid "Insertion disabled"
3884
  msgstr ""
3885
 
3886
- #: settings.php:4054
3887
  msgid "Automatic insertion"
3888
  msgstr ""
3889
 
3890
  #. translators: %s HTML tags
3891
- #: settings.php:4055 settings.php:4968
3892
  msgid "PHP code processing"
3893
  msgstr ""
3894
 
3895
- #: settings.php:4057
3896
  msgid "Device detection"
3897
  msgstr ""
3898
 
3899
- #: settings.php:4070
3900
  msgid "Widget positions"
3901
  msgstr ""
3902
 
3903
- #: settings.php:4136
3904
  msgid "Ad unit"
3905
  msgstr ""
3906
 
3907
- #: settings.php:4138
3908
  msgid "Slot ID"
3909
  msgstr ""
3910
 
3911
- #: settings.php:4164
3912
  msgid "Copy AdSense code"
3913
  msgstr ""
3914
 
3915
- #: settings.php:4167
3916
  msgid "Preview AdSense ad"
3917
  msgstr ""
3918
 
3919
- #: settings.php:4170
3920
  msgid "Get AdSense code"
3921
  msgstr ""
3922
 
3923
  #. translators: %s: HTML tags
3924
- #: settings.php:4202
3925
  msgid ""
3926
  "Please %s clear authorization %s with the button %s above and once again "
3927
  "authorize access to your AdSense account."
3928
  msgstr ""
3929
 
3930
- #: settings.php:4221
3931
  msgid "AdSense Integration"
3932
  msgstr ""
3933
 
3934
- #: settings.php:4223
3935
  msgid "AdSense Integration - Step 2"
3936
  msgstr ""
3937
 
3938
  #. translators: %s: HTML tags
3939
- #: settings.php:4229
3940
  msgid ""
3941
  "Authorize %s to access your AdSense account. Click on the %s Get "
3942
  "Authorization Code %s button to open a new window where you can allow "
@@ -3945,7 +3970,7 @@ msgid ""
3945
  msgstr ""
3946
 
3947
  #. translators: %s: HTML tags
3948
- #: settings.php:4236
3949
  msgid ""
3950
  "If you get error, can't access ad units or would like to use own Google API "
3951
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -3953,7 +3978,7 @@ msgid ""
3953
  msgstr ""
3954
 
3955
  #. translators: %s: HTML tags
3956
- #: settings.php:4238
3957
  msgid ""
3958
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3959
  "Authorization Code %s button to open a new window where you can allow "
@@ -3962,38 +3987,38 @@ msgid ""
3962
  msgstr ""
3963
 
3964
  #. translators: %s: HTML tags
3965
- #: settings.php:4245
3966
  msgid ""
3967
  "If you get error %s invalid client %s click on the button %s Clear and "
3968
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3969
  msgstr ""
3970
 
3971
- #: settings.php:4256
3972
  msgid "Get Authorization Code"
3973
  msgstr ""
3974
 
3975
- #: settings.php:4259
3976
  msgid "Enter Authorization Code"
3977
  msgstr ""
3978
 
3979
- #: settings.php:4269
3980
  msgid "Use own API IDs"
3981
  msgstr ""
3982
 
3983
- #: settings.php:4271
3984
  msgid "Clear and return to Step 1"
3985
  msgstr ""
3986
 
3987
- #: settings.php:4275
3988
  msgid "Authorize"
3989
  msgstr ""
3990
 
3991
- #: settings.php:4291
3992
  msgid "AdSense Integration - Step 1"
3993
  msgstr ""
3994
 
3995
  #. translators: %s: Ad Inserter
3996
- #: settings.php:4295
3997
  msgid ""
3998
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3999
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -4002,180 +4027,180 @@ msgid ""
4002
  msgstr ""
4003
 
4004
  #. translators: %s: HTML tags
4005
- #: settings.php:4304
4006
  msgid "Go to %s Google APIs and Services console %s"
4007
  msgstr ""
4008
 
4009
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4010
- #: settings.php:4305
4011
  msgid ""
4012
  "Create %1$s project - if the project and IDs are already created click on "
4013
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
4014
  msgstr ""
4015
 
4016
  #. translators: %s: HTML tags
4017
- #: settings.php:4306
4018
  msgid ""
4019
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4020
  "create a new project"
4021
  msgstr ""
4022
 
4023
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4024
- #: settings.php:4307
4025
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4026
  msgstr ""
4027
 
4028
  #. translators: %s: HTML tags
4029
- #: settings.php:4308
4030
  msgid ""
4031
  "Click on project selection, wait for the project to be created and then and "
4032
  "select %s as the current project"
4033
  msgstr ""
4034
 
4035
  #. translators: %s: HTML tags
4036
- #: settings.php:4309
4037
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4038
  msgstr ""
4039
 
4040
  #. translators: %s: HTML tags
4041
- #: settings.php:4310
4042
  msgid "Search for adsense and enable %s"
4043
  msgstr ""
4044
 
4045
  #. translators: %s: HTML tags
4046
- #: settings.php:4311
4047
  msgid "Click on %s CREATE CREDENTIALS %s"
4048
  msgstr ""
4049
 
4050
  #. translators: %s: HTML tags
4051
- #: settings.php:4312
4052
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4053
  msgstr ""
4054
 
4055
  #. translators: %s: HTML tags
4056
- #: settings.php:4313
4057
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4058
  msgstr ""
4059
 
4060
  #. translators: %s: HTML tags
4061
- #: settings.php:4314
4062
  msgid "Click on %s What credentials do I need? %s"
4063
  msgstr ""
4064
 
4065
  #. translators: %s: HTML tags
4066
- #: settings.php:4315
4067
  msgid ""
4068
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4069
  "Ad Inserter client %s"
4070
  msgstr ""
4071
 
4072
  #. translators: %s: HTML tags
4073
- #: settings.php:4316
4074
  msgid ""
4075
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4076
  "enter %s"
4077
  msgstr ""
4078
 
4079
  #. translators: %s: HTML tags
4080
- #: settings.php:4317
4081
  msgid "Click on %s Continue %s"
4082
  msgstr ""
4083
 
4084
  #. translators: %s: HTML tags
4085
- #: settings.php:4318
4086
  msgid "Click on %s Done %s"
4087
  msgstr ""
4088
 
4089
  #. translators: %s: HTML tags
4090
- #: settings.php:4319
4091
  msgid ""
4092
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4093
  "secret %s"
4094
  msgstr ""
4095
 
4096
- #: settings.php:4320
4097
  msgid "Copy them to the appropriate fields below"
4098
  msgstr ""
4099
 
4100
- #: settings.php:4326
4101
  msgid "Client ID"
4102
  msgstr ""
4103
 
4104
- #: settings.php:4329
4105
  msgid "Enter Client ID"
4106
  msgstr ""
4107
 
4108
- #: settings.php:4334
4109
  msgid "Client secret"
4110
  msgstr ""
4111
 
4112
- #: settings.php:4337
4113
  msgid "Enter Client secret"
4114
  msgstr ""
4115
 
4116
- #: settings.php:4347
4117
  msgid "Use default API IDs"
4118
  msgstr ""
4119
 
4120
- #: settings.php:4500
4121
  msgid "All posts"
4122
  msgstr ""
4123
 
4124
- #: settings.php:4501
4125
  msgid "All static pages"
4126
  msgstr ""
4127
 
4128
- #: settings.php:4635 settings.php:4648 settings.php:4661 settings.php:4676
4129
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4130
  msgstr ""
4131
 
4132
- #: settings.php:4640 settings.php:4653 settings.php:4666 settings.php:4681
4133
- #: settings.php:4861 settings.php:4865 settings.php:4883 settings.php:4887
4134
- #: settings.php:4895 settings.php:4898 settings.php:4904 settings.php:4916
4135
  msgid "Looking for AdSense alternative?"
4136
  msgstr ""
4137
 
4138
- #: settings.php:4692
4139
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4140
  msgstr ""
4141
 
4142
- #: settings.php:4697 settings.php:4863 settings.php:4867 settings.php:4875
4143
- #: settings.php:4901
4144
  msgid "Use Infolinks ads with Adsense to earn more"
4145
  msgstr ""
4146
 
4147
- #: settings.php:4716 settings.php:4754
4148
  msgid "Support plugin development"
4149
  msgstr ""
4150
 
4151
- #: settings.php:4717 settings.php:4755
4152
  msgid ""
4153
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4154
  "reviewing the plugin on WordPres"
4155
  msgstr ""
4156
 
4157
- #: settings.php:4717
4158
  msgctxt "Review ad Inserter"
4159
  msgid "Review"
4160
  msgstr ""
4161
 
4162
- #: settings.php:4718
4163
  msgid ""
4164
  "Support free Ad Inserter development. If you are making money with Ad "
4165
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4166
  "you!"
4167
  msgstr ""
4168
 
4169
- #: settings.php:4718
4170
  msgid "Donate"
4171
  msgstr ""
4172
 
4173
- #: settings.php:4725 settings.php:4770
4174
  msgid "Average rating of the plugin - Thank you!"
4175
  msgstr ""
4176
 
4177
  #. translators: %s: Ad Inserter, HTML tags
4178
- #: settings.php:4736
4179
  msgid ""
4180
  "You've been using %s for a while now, and I hope you're happy with it. "
4181
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4184,31 +4209,31 @@ msgid ""
4184
  "your website. %s Thank you!"
4185
  msgstr ""
4186
 
4187
- #: settings.php:4755
4188
  msgid "Review"
4189
  msgstr ""
4190
 
4191
- #: settings.php:4759
4192
  msgid "Ad Inserter on Twitter"
4193
  msgstr ""
4194
 
4195
- #: settings.php:4760
4196
  msgid "Ad Inserter on Facebook"
4197
  msgstr ""
4198
 
4199
- #: settings.php:4763
4200
  msgid "Follow Ad Inserter"
4201
  msgstr ""
4202
 
4203
  #. translators: %s: HTML tags
4204
- #: settings.php:4790
4205
  msgid ""
4206
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4207
  "and %s Common Settings %s pages"
4208
  msgstr ""
4209
 
4210
  #. translators: %s: HTML tags
4211
- #: settings.php:4802
4212
  msgid ""
4213
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4214
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
@@ -4216,325 +4241,325 @@ msgid ""
4216
  msgstr ""
4217
 
4218
  #. translators: %s: HTML tags
4219
- #: settings.php:4823
4220
  msgid ""
4221
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4222
  "purchase you refer to us"
4223
  msgstr ""
4224
 
4225
  #. translators: %s: HTML tags
4226
- #: settings.php:4830
4227
  msgid ""
4228
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4229
  "diagnose and fix the problem."
4230
  msgstr ""
4231
 
4232
  #. translators: %s: HTML tags
4233
- #: settings.php:4834
4234
  msgid ""
4235
  "If you need any kind of help or support, please do not hesitate to open a "
4236
  "thread on the %s support forum. %s"
4237
  msgstr ""
4238
 
4239
- #: settings.php:4879 settings.php:4920
4240
  msgid "A/B testing - Track ad impressions and clicks"
4241
  msgstr ""
4242
 
4243
- #: settings.php:4912 settings.php:4924
4244
  msgid "Code preview with visual CSS editor"
4245
  msgstr ""
4246
 
4247
- #: settings.php:4932
4248
  msgid "Looking for Pro Ad Management plugin?"
4249
  msgstr ""
4250
 
4251
- #: settings.php:4933
4252
  msgid "To Optimally Monetize your WordPress website?"
4253
  msgstr ""
4254
 
4255
  #. translators: %s HTML tags
4256
- #: settings.php:4936
4257
  msgid "%s AdSense Integration %s"
4258
  msgstr ""
4259
 
4260
  #. translators: %s HTML tags
4261
- #: settings.php:4937
4262
  msgid "Syntax highlighting %s editor %s"
4263
  msgstr ""
4264
 
4265
  #. translators: %s HTML tags
4266
- #: settings.php:4938
4267
  msgid "%s Code preview %s with visual CSS editor"
4268
  msgstr ""
4269
 
4270
  #. translators: %s HTML tags
4271
- #: settings.php:4939
4272
  msgid "Simple user interface - all settings on a single page"
4273
  msgstr ""
4274
 
4275
  #. translators: %s HTML tags
4276
- #: settings.php:4940
4277
  msgid ""
4278
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4279
  "image / excerpt"
4280
  msgstr ""
4281
 
4282
  #. translators: %s HTML tags
4283
- #: settings.php:4941
4284
  msgid "%s Automatic insertion %s between posts on blog pages"
4285
  msgstr ""
4286
 
4287
  #. translators: %s HTML tags
4288
- #: settings.php:4942
4289
  msgid "%s Automatic insertion %s before, between and after comments"
4290
  msgstr ""
4291
 
4292
  #. translators: %s HTML tags
4293
- #: settings.php:4943
4294
  msgid "%s Automatic insertion %s after %s or before %s tag"
4295
  msgstr ""
4296
 
4297
  #. translators: %s HTML tags
4298
- #: settings.php:4944
4299
  msgid "Automatic insertion at %s custom hook positions %s"
4300
  msgstr ""
4301
 
4302
  #. translators: %s HTML tags
4303
- #: settings.php:4945
4304
  msgid ""
4305
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4306
  "selectors)"
4307
  msgstr ""
4308
 
4309
  #. translators: %s HTML tags
4310
- #: settings.php:4946
4311
  msgid "%s Insertion exceptions %s for individual posts and pages"
4312
  msgstr ""
4313
 
4314
  #. translators: %s HTML tags
4315
- #: settings.php:4947
4316
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4317
  msgstr ""
4318
 
4319
  #. translators: %s HTML tags
4320
- #: settings.php:4948
4321
  msgid ""
4322
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4323
  "scrolls)"
4324
  msgstr ""
4325
 
4326
  #. translators: %s HTML tags
4327
- #: settings.php:4949
4328
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4329
  msgstr ""
4330
 
4331
  #. translators: %s HTML tags
4332
- #: settings.php:4950
4333
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4334
  msgstr ""
4335
 
4336
  #. translators: %s HTML tags
4337
- #: settings.php:4951
4338
  msgid ""
4339
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4340
  "visible)"
4341
  msgstr ""
4342
 
4343
  #. translators: %s HTML tags
4344
- #: settings.php:4952
4345
  msgid ""
4346
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4347
  msgstr ""
4348
 
4349
  #. translators: %s HTML tags
4350
- #: settings.php:4953
4351
  msgid "Block %s alignment and style %s customizations"
4352
  msgstr ""
4353
 
4354
  #. translators: %s HTML tags
4355
- #: settings.php:4954
4356
  msgid ""
4357
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4358
  "TOS)"
4359
  msgstr ""
4360
 
4361
  #. translators: %s HTML tags
4362
- #: settings.php:4955
4363
  msgid ""
4364
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4365
  "feeds"
4366
  msgstr ""
4367
 
4368
  #. translators: %s HTML tags
4369
- #: settings.php:4956
4370
  msgid "%s Ad rotation %s (works also with caching)"
4371
  msgstr ""
4372
 
4373
  #. translators: %s HTML tags
4374
- #: settings.php:4957
4375
  msgid "Create, edit and check %s ads.txt %s file"
4376
  msgstr ""
4377
 
4378
  #. translators: %s HTML tags
4379
- #: settings.php:4958
4380
  msgid ""
4381
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4382
  "AdSense)"
4383
  msgstr ""
4384
 
4385
  #. translators: %s HTML tags
4386
- #: settings.php:4959
4387
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4388
  msgstr ""
4389
 
4390
  #. translators: %s HTML tags
4391
- #: settings.php:4960
4392
  msgid "%s Public web reports %s for clients, export to PDF"
4393
  msgstr ""
4394
 
4395
  #. translators: %s HTML tags
4396
- #: settings.php:4961
4397
  msgid "Support for %s A/B testing %s"
4398
  msgstr ""
4399
 
4400
  #. translators: %s HTML tags
4401
- #: settings.php:4962
4402
  msgid "Frequency capping - %s limit impressions or clicks %s"
4403
  msgstr ""
4404
 
4405
  #. translators: %s HTML tags
4406
- #: settings.php:4963
4407
  msgid "Click fraud %s protection %s"
4408
  msgstr ""
4409
 
4410
  #. translators: %s HTML tags
4411
- #: settings.php:4964
4412
  msgid "Support for %s lazy loading %s"
4413
  msgstr ""
4414
 
4415
  #. translators: %s HTML tags
4416
- #: settings.php:4965
4417
  msgid "Support for ads on %s AMP pages %s"
4418
  msgstr ""
4419
 
4420
  #. translators: %s HTML tags
4421
- #: settings.php:4966
4422
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4423
  msgstr ""
4424
 
4425
  #. translators: %s HTML tags
4426
- #: settings.php:4967
4427
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4428
  msgstr ""
4429
 
4430
  #. translators: %s HTML tags
4431
- #: settings.php:4969
4432
  msgid "%s Banner %s code generator"
4433
  msgstr ""
4434
 
4435
  #. translators: %s HTML tags
4436
- #: settings.php:4970
4437
  msgid "Support for %s header and footer %s code"
4438
  msgstr ""
4439
 
4440
  #. translators: %s HTML tags
4441
- #: settings.php:4971
4442
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4443
  msgstr ""
4444
 
4445
  #. translators: %s HTML tags
4446
- #: settings.php:4972
4447
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4448
  msgstr ""
4449
 
4450
  #. translators: %s HTML tags
4451
- #: settings.php:4973
4452
  msgid "Client-side %s mobile device detection %s (works with caching)"
4453
  msgstr ""
4454
 
4455
  #. translators: %s HTML tags
4456
- #: settings.php:4974
4457
  msgid ""
4458
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4459
  "protection"
4460
  msgstr ""
4461
 
4462
  #. translators: %s HTML tags
4463
- #: settings.php:4975
4464
  msgid "%s Ad blocking statistics %s"
4465
  msgstr ""
4466
 
4467
  #. translators: %s HTML tags
4468
- #: settings.php:4976
4469
  msgid ""
4470
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4471
  "referers"
4472
  msgstr ""
4473
 
4474
  #. translators: %s HTML tags
4475
- #: settings.php:4977
4476
  msgid ""
4477
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4478
  msgstr ""
4479
 
4480
  #. translators: %s HTML tags
4481
- #: settings.php:4978
4482
  msgid "%s Multisite options %s to limit settings on the sites"
4483
  msgstr ""
4484
 
4485
  #. translators: %s HTML tags
4486
- #: settings.php:4979
4487
  msgid "%s Import/Export %s block or plugin settings"
4488
  msgstr ""
4489
 
4490
  #. translators: %s HTML tags
4491
- #: settings.php:4980
4492
  msgid "%s Insertion scheduling %s with fallback option"
4493
  msgstr ""
4494
 
4495
  #. translators: %s HTML tags
4496
- #: settings.php:4981
4497
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4498
  msgstr ""
4499
 
4500
  #. translators: %s HTML tags
4501
- #: settings.php:4982
4502
  msgid "Simple troubleshooting with many %s debugging functions %s"
4503
  msgstr ""
4504
 
4505
  #. translators: %s HTML tags
4506
- #: settings.php:4983
4507
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4508
  msgstr ""
4509
 
4510
  #. translators: %s HTML tags
4511
- #: settings.php:4984
4512
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4513
  msgstr ""
4514
 
4515
  #. translators: %s HTML tags
4516
- #: settings.php:4985
4517
  msgid ""
4518
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4519
  msgstr ""
4520
 
4521
  #. translators: %s HTML tags
4522
- #: settings.php:4986
4523
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4524
  msgstr ""
4525
 
4526
  #. translators: %s HTML tags
4527
- #: settings.php:4987
4528
  msgid "No ads on the settings page"
4529
  msgstr ""
4530
 
4531
  #. translators: %s HTML tags
4532
- #: settings.php:4988
4533
  msgid "Premium support"
4534
  msgstr ""
4535
 
4536
  #. translators: %s HTML tags
4537
- #: settings.php:4991
4538
  msgid ""
4539
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4540
  "website with many advertising features to automatically insert adverts on "
@@ -4549,82 +4574,82 @@ msgid ""
4549
  msgstr ""
4550
 
4551
  #. translators: %s HTML tags
4552
- #: settings.php:5004
4553
  msgid "Looking for %s Pro Ad Management plugin? %s"
4554
  msgstr ""
4555
 
4556
  #. translators: %s HTML tags
4557
- #: settings.php:5009
4558
  msgid "Ads between posts"
4559
  msgstr ""
4560
 
4561
  #. translators: %s HTML tags
4562
- #: settings.php:5010
4563
  msgid "Ads between comments"
4564
  msgstr ""
4565
 
4566
  #. translators: %s HTML tags
4567
- #: settings.php:5011
4568
  msgid "Support via email"
4569
  msgstr ""
4570
 
4571
  #. translators: %s HTML tags
4572
- #: settings.php:5017
4573
  msgid "%s Sticky positions %s"
4574
  msgstr ""
4575
 
4576
  #. translators: %s HTML tags
4577
- #: settings.php:5018
4578
  msgid "%s Limit insertions %s"
4579
  msgstr ""
4580
 
4581
  #. translators: %s HTML tags
4582
- #: settings.php:5019
4583
  msgid "%s Clearance %s options"
4584
  msgstr ""
4585
 
4586
  #. translators: %s HTML tags
4587
- #: settings.php:5025
4588
  msgid "Ad rotation"
4589
  msgstr ""
4590
 
4591
  #. translators: %s HTML tags
4592
- #: settings.php:5026
4593
  msgid "%s A/B testing %s"
4594
  msgstr ""
4595
 
4596
  #. translators: %s HTML tags
4597
- #: settings.php:5027
4598
  msgid "%s Ad tracking %s"
4599
  msgstr ""
4600
 
4601
  #. translators: %s HTML tags
4602
- #: settings.php:5033
4603
  msgid "Support for %s AMP pages %s"
4604
  msgstr ""
4605
 
4606
  #. translators: %s HTML tags
4607
- #: settings.php:5034
4608
  msgid "%s Ad blocking detection %s"
4609
  msgstr ""
4610
 
4611
  #. translators: %s HTML tags
4612
- #: settings.php:5035
4613
  msgid "%s Mobile device detection %s"
4614
  msgstr ""
4615
 
4616
  #. translators: %s HTML tags
4617
- #: settings.php:5042
4618
  msgid "64 code blocks"
4619
  msgstr ""
4620
 
4621
  #. translators: %s HTML tags
4622
- #: settings.php:5043
4623
  msgid "%s GEO targeting %s"
4624
  msgstr ""
4625
 
4626
  #. translators: %s HTML tags
4627
- #: settings.php:5044
4628
  msgid "%s Scheduling %s"
4629
  msgstr ""
4630
 
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Ad Inserter 2.5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2019-09-29 18:43:46+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: ad-inserter.php:411
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
+ #: ad-inserter.php:427
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
+ #: ad-inserter.php:434
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
+ #: ad-inserter.php:505
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
+ #: ad-inserter.php:512
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
+ #: ad-inserter.php:521
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
+ #: ad-inserter.php:528
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
+ #: ad-inserter.php:538
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
  #. translators: Debugging position name Before HTML element
56
+ #: ad-inserter.php:1142
57
  msgid "Before"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name After HTML element
61
+ #: ad-inserter.php:1147
62
  msgid "After"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name Prepend content of HTML element (before
66
  #. the content of the HTML element)
67
+ #: ad-inserter.php:1152 strings.php:103
68
  msgid "Prepend content"
69
  msgstr ""
70
 
71
  #. translators: Debugging position name Append content of HTML element (after
72
  #. the content of the HTML element)
73
+ #: ad-inserter.php:1157 strings.php:104
74
  msgid "Append content"
75
  msgstr ""
76
 
77
  #. translators: Debugging position name Replace content of HTML element
78
+ #: ad-inserter.php:1162 strings.php:105
79
  msgid "Replace content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace HTML element
83
+ #: ad-inserter.php:1167 strings.php:155
84
  msgid "Replace"
85
  msgstr ""
86
 
87
  #. translators: Debugging message when output buffering is enabled
88
+ #: ad-inserter.php:1214
89
  msgid "OUTPUT BUFFERING"
90
  msgstr ""
91
 
92
  #. translators: Debugging position
93
+ #: ad-inserter.php:1218
94
  msgid "Above Header"
95
  msgstr ""
96
 
97
+ #: ad-inserter.php:1427
98
  msgctxt "Menu item"
99
  msgid "Log In"
100
  msgstr ""
101
 
102
  #. translators: %s: Ad Inserter
103
+ #: ad-inserter.php:1755 ad-inserter.php:2686
104
  msgid "%s Settings"
105
  msgstr ""
106
 
107
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
108
+ #: ad-inserter.php:2202
109
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
110
  msgstr ""
111
 
112
+ #: ad-inserter.php:2202
113
  msgid "NO ACTION"
114
  msgstr ""
115
 
116
+ #: ad-inserter.php:2203
117
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
118
  msgstr ""
119
 
120
+ #: ad-inserter.php:2204
121
  msgid "AD BLOCKING DETECTED - ACTION"
122
  msgstr ""
123
 
124
+ #: ad-inserter.php:2205
125
  msgid "AD BLOCKING NOT DETECTED"
126
  msgstr ""
127
 
128
+ #: ad-inserter.php:2206
129
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
130
  msgstr ""
131
 
132
+ #: ad-inserter.php:2207
133
  msgid "AD BLOCKING DETECTED - NO ACTION"
134
  msgstr ""
135
 
136
  #. Translators: 1: number of blocks, 2: Ad Inserter
137
+ #: ad-inserter.php:2409
138
  msgid "Hey, you are now using %1$s %2$s block."
139
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
140
  msgstr[0] ""
141
  msgstr[1] ""
142
 
143
+ #: ad-inserter.php:2410 includes/functions.old.php:1652
144
+ #: includes/functions.php:1701
145
  msgid "No, thank you."
146
  msgstr ""
147
 
148
  #. Translators: %s: Ad Inserter
149
+ #: ad-inserter.php:2413
150
  msgid ""
151
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
152
  msgstr ""
153
 
154
+ #: ad-inserter.php:2414 includes/functions.old.php:1655
155
+ #: includes/functions.php:1704
156
  msgid "Not now, maybe later."
157
  msgstr ""
158
 
159
+ #: ad-inserter.php:2424
160
  msgid "I would really appreciate if you could rate the plugin on WordPres."
161
  msgstr ""
162
 
163
+ #: ad-inserter.php:2426
164
  msgid ""
165
  "Positive reviews are a great incentive to fix bugs and to add new features "
166
  "for better monetization of your website. Thank you, Igor"
167
  msgstr ""
168
 
169
  #. translators: %s: Ad Inserter
170
+ #: ad-inserter.php:2432
171
  msgid "Rate %s"
172
  msgstr ""
173
 
174
+ #: ad-inserter.php:2437
175
  msgid "I already did."
176
  msgstr ""
177
 
178
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
179
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
180
+ #: ad-inserter.php:2450 ad-inserter.php:2477
181
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
182
  msgstr ""
183
 
184
+ #: ad-inserter.php:2459
185
  msgctxt "Menu item"
186
  msgid "Settings"
187
  msgstr ""
188
 
189
  #. translators: %s: Ad Inserter
190
+ #: ad-inserter.php:2577
191
  msgctxt "Meta box name"
192
  msgid "%s Individual Exceptions"
193
  msgstr ""
194
 
195
+ #: ad-inserter.php:2606 ad-inserter.php:8753 class.php:2064
196
  #: includes/preview.php:1976 includes/preview.php:2020
197
+ #: includes/preview.php:2057 settings.php:4082 strings.php:3
198
  msgid "Block"
199
  msgstr ""
200
 
201
+ #: ad-inserter.php:2607 settings.php:4083 settings.php:4168
202
  msgid "Name"
203
  msgstr ""
204
 
205
+ #: ad-inserter.php:2610 settings.php:1127
206
  msgid "Default insertion"
207
  msgstr ""
208
 
209
  #. translators: For this post or page
210
+ #: ad-inserter.php:2613
211
  msgctxt "Page"
212
  msgid "For this"
213
  msgstr ""
214
 
215
+ #: ad-inserter.php:2614
216
  msgctxt "Post"
217
  msgid "For this"
218
  msgstr ""
219
 
220
+ #: ad-inserter.php:2626
221
  msgctxt "Enabled/disabled on all"
222
  msgid "pages"
223
  msgstr ""
224
 
225
+ #: ad-inserter.php:2629
226
  msgctxt "Enabled/disabled on all"
227
  msgid "posts"
228
  msgstr ""
229
 
230
+ #: ad-inserter.php:2647 ad-inserter.php:2659 strings.php:161
231
  msgid "Enabled"
232
  msgstr ""
233
 
234
  #. translators: Menu items
235
+ #: ad-inserter.php:2647 ad-inserter.php:2659 includes/functions.old.php:2326
236
+ #: includes/functions.php:2377 strings.php:16
237
  msgid "Disabled"
238
  msgstr ""
239
 
240
+ #: ad-inserter.php:2649
241
  msgid "No individual exceptions"
242
  msgstr ""
243
 
244
  #. translators: Not enabled for pages or posts
245
+ #: ad-inserter.php:2651
246
  msgid "Not enabled for"
247
  msgstr ""
248
 
249
  #. translators: No individual exceptions enabled for pages or posts
250
+ #: ad-inserter.php:2679
251
  msgid "No block has individual exceptions enabled"
252
  msgstr ""
253
 
254
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
255
+ #: ad-inserter.php:2684
256
  msgid ""
257
  "Default insertion can be configured for each block on %1$s page - button "
258
  "next to %2$s checkbox."
259
  msgstr ""
260
 
261
+ #: ad-inserter.php:2687 settings.php:1105
262
  msgid "Tag / Archive pages"
263
  msgstr ""
264
 
265
+ #: ad-inserter.php:2689
266
  msgid ""
267
  "When individual exceptions for a block are enabled, a checkbox will be "
268
  "listed here to change default insertion for this post or page."
269
  msgstr ""
270
 
271
+ #: ad-inserter.php:2690
272
  msgid ""
273
  "This way you can individually enable or disable blocks on specific posts or "
274
  "pages."
275
  msgstr ""
276
 
277
+ #: ad-inserter.php:2692
278
  msgid "For more information check page %s"
279
  msgstr ""
280
 
281
  #. translators: Ad Inserter Exceptions documentation page
282
+ #: ad-inserter.php:2694
283
  msgid "Individual Exceptions"
284
  msgstr ""
285
 
286
+ #: ad-inserter.php:2741
287
  msgid "STATIC PAGE"
288
  msgstr ""
289
 
290
+ #: ad-inserter.php:2744
291
  msgid "POST"
292
  msgstr ""
293
 
294
+ #: ad-inserter.php:2747
295
  msgid "HOMEPAGE"
296
  msgstr ""
297
 
298
+ #: ad-inserter.php:2750
299
  msgid "CATEGORY PAGE"
300
  msgstr ""
301
 
302
+ #: ad-inserter.php:2753
303
  msgid "SEARCH PAGE"
304
  msgstr ""
305
 
306
+ #: ad-inserter.php:2756
307
  msgid "ARCHIVE PAGE"
308
  msgstr ""
309
 
310
+ #: ad-inserter.php:2759
311
  msgid "ERROR 404 PAGE"
312
  msgstr ""
313
 
314
+ #: ad-inserter.php:2762
315
  msgid "AJAX CALL"
316
  msgstr ""
317
 
318
+ #: ad-inserter.php:2765
319
  msgid "UNKNOWN PAGE TYPE"
320
  msgstr ""
321
 
322
+ #: ad-inserter.php:2782
323
  msgid "Click to delete ad blocking detection cokies"
324
  msgstr ""
325
 
326
+ #: ad-inserter.php:2783
327
  msgid "AD BLOCKING STATUS UNKNOWN"
328
  msgstr ""
329
 
330
  #. translators: %s: AdSense Auto Ads
331
+ #: ad-inserter.php:2812
332
  msgid ""
333
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
334
  "positions"
335
  msgstr ""
336
 
337
+ #: ad-inserter.php:2951
338
  msgid "Code for insertion"
339
  msgstr ""
340
 
341
+ #: ad-inserter.php:2951
342
  msgid "character"
343
  msgid_plural "characters"
344
  msgstr[0] ""
345
  msgstr[1] ""
346
 
347
+ #: ad-inserter.php:2994
348
  msgid "Header code"
349
  msgstr ""
350
 
351
+ #: ad-inserter.php:2994
352
  msgctxt "Header code"
353
  msgid "DISABLED"
354
  msgstr ""
355
 
356
+ #: ad-inserter.php:2994 ad-inserter.php:3217
357
  msgid "character inserted"
358
  msgid_plural "characters inserted"
359
  msgstr[0] ""
360
  msgstr[1] ""
361
 
362
+ #: ad-inserter.php:3028
363
  msgid "Automatically placed by AdSense Auto ads code"
364
  msgstr ""
365
 
366
+ #: ad-inserter.php:3217
367
  msgid "Footer code"
368
  msgstr ""
369
 
370
+ #: ad-inserter.php:3217
371
  msgctxt "Footer code"
372
  msgid "DISABLED"
373
  msgstr ""
374
 
375
+ #: ad-inserter.php:3223
376
  msgid "JAVASCRIPT NOT WORKING"
377
  msgstr ""
378
 
379
+ #: ad-inserter.php:3223
380
  msgid "NO JAVASCRIPT ERRORS"
381
  msgstr ""
382
 
383
+ #: ad-inserter.php:3223
384
  msgid "JAVASCRIPT ERRORS"
385
  msgstr ""
386
 
387
  #. translators: block name (block with default settings)
388
+ #: ad-inserter.php:5507
389
  msgctxt "Block name"
390
  msgid "Default"
391
  msgstr ""
392
 
393
  #. translators: %s: Ad Inserter
394
+ #: ad-inserter.php:6123
395
  msgid "Error importing %s settings."
396
  msgstr ""
397
 
398
+ #: ad-inserter.php:6124
399
  msgid "Error importing settings for block"
400
  msgid_plural "Error importing settings for blocks:"
401
  msgstr[0] ""
402
  msgstr[1] ""
403
 
404
+ #: ad-inserter.php:6174
405
  msgid "Settings saved."
406
  msgstr ""
407
 
408
  #. translators: %s: Ad Inserter
409
+ #: ad-inserter.php:6176
410
  msgid "Invalid data received - %s settings not saved."
411
  msgstr ""
412
 
413
+ #: ad-inserter.php:6264
414
  msgid "Settings cleared."
415
  msgstr ""
416
 
417
  #. Translators: Post/Static page must have between X and Y words
418
+ #: ad-inserter.php:6609 ad-inserter.php:6611 ad-inserter.php:6634
419
+ #: settings.php:2084
420
  msgid "word"
421
  msgid_plural "words"
422
  msgstr[0] ""
423
  msgstr[1] ""
424
 
425
+ #: ad-inserter.php:6648 ad-inserter.php:6760
426
  msgid "HTML TAGS REMOVED"
427
  msgstr ""
428
 
429
+ #: ad-inserter.php:6836
430
  msgid "BEFORE COMMENTS"
431
  msgstr ""
432
 
433
+ #: ad-inserter.php:6944
434
  msgid "AFTER COMMENTS"
435
  msgstr ""
436
 
437
+ #: ad-inserter.php:7007
438
  msgid "BETWEEN COMMENTS"
439
  msgstr ""
440
 
441
+ #: ad-inserter.php:8384
442
  msgid "requires WordPress 4.6 or newer"
443
  msgstr ""
444
 
445
+ #: ad-inserter.php:8384
446
  msgid "Please update!"
447
  msgstr ""
448
 
449
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
450
  #. name with HTML tags will be added)
451
+ #: ad-inserter.php:8626
452
  msgid "Thank you for installing"
453
  msgstr ""
454
 
455
  #. translators: Opt-in message: %s: HTML tags
456
+ #: ad-inserter.php:8628
457
  msgid ""
458
  "We would like to %s track its usage %s on your site. This is completely "
459
  "optional and can be disabled at any time."
460
  msgstr ""
461
 
462
+ #: ad-inserter.php:8630
463
  msgid ""
464
  "We don't record any sensitive data, only information regarding the WordPress "
465
  "environment and plugin usage, which will help us to make improvements to the "
467
  msgstr ""
468
 
469
  #. translators: Deactivation message: %s: HTML tags
470
+ #: ad-inserter.php:8667
471
  msgid ""
472
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
473
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
475
  msgstr ""
476
 
477
  #. translators: %s: Ad Inserter
478
+ #: ad-inserter.php:8710
479
  msgid "%s block."
480
  msgstr ""
481
 
482
  #. translators: widget title
483
+ #: ad-inserter.php:8726 ad-inserter.php:8762
484
  msgid "Processing log"
485
  msgstr ""
486
 
487
  #. translators: widget title
488
+ #: ad-inserter.php:8728 ad-inserter.php:8763
489
  msgid "Dummy widget"
490
  msgstr ""
491
 
492
  #. translators: widget title
493
+ #: ad-inserter.php:8730 ad-inserter.php:8761
494
  msgid "Debugging tools"
495
  msgstr ""
496
 
497
  #. translators: block status (widget title)
498
+ #: ad-inserter.php:8737
499
  msgctxt "block"
500
  msgid "PAUSED"
501
  msgstr ""
502
 
503
+ #: ad-inserter.php:8738
504
  msgid "WIDGET DISABLED"
505
  msgstr ""
506
 
507
+ #: ad-inserter.php:8739
508
  msgid "Unknown block"
509
  msgstr ""
510
 
511
+ #: ad-inserter.php:8748 includes/functions.old.php:3186
512
+ #: includes/functions.php:3237 settings.php:1157
513
  msgid "Title"
514
  msgstr ""
515
 
516
+ #: ad-inserter.php:8770
517
  msgctxt "Widget"
518
  msgid "Sticky"
519
  msgstr ""
520
 
521
+ #: ad-inserter.php:8819
522
  msgid ""
523
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
524
  "Inserter you need to first deactivate Ad Inserter Pro."
525
  msgstr ""
526
 
527
+ #: ad-inserter.php:8820
528
  msgid ""
529
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
530
  "will clear all settings that are available only in the Pro version "
532
  msgstr ""
533
 
534
  #. translators: %s: Ad Inserter
535
+ #: class.php:505 class.php:514 class.php:517
536
  msgid "PHP error in %s block"
537
  msgstr ""
538
 
539
+ #: class.php:2030
540
  msgid "Counters"
541
  msgstr ""
542
 
543
+ #: class.php:2034
544
  msgid "Content"
545
  msgstr ""
546
 
547
+ #: class.php:2039
548
  msgid "Excerpt"
549
  msgstr ""
550
 
551
+ #: class.php:2044 strings.php:17
552
  msgid "Before post"
553
  msgstr ""
554
 
555
+ #: class.php:2049 strings.php:18
556
  msgid "After post"
557
  msgstr ""
558
 
559
+ #: class.php:2054 settings.php:1827 settings.php:4100
560
  msgid "Widget"
561
  msgstr ""
562
 
563
+ #: class.php:2059 settings.php:4098
564
  msgid "PHP function call"
565
  msgstr ""
566
 
567
+ #: class.php:2094
568
  msgid "AJAX REQUEST"
569
  msgstr ""
570
 
571
+ #: class.php:2097
572
  msgid "Ajax request for block in iframe"
573
  msgstr ""
574
 
575
+ #: class.php:2127
576
  msgid "Ajax request url, click to open it in a new tab"
577
  msgstr ""
578
 
579
+ #: class.php:2130
580
  msgid "IN THE LOOP"
581
  msgstr ""
582
 
583
+ #: class.php:2130
584
  msgid "YES"
585
  msgstr ""
586
 
587
+ #: class.php:2130
588
  msgid "NO"
589
  msgstr ""
590
 
591
+ #: class.php:2166
592
  msgid "BLOCK"
593
  msgstr ""
594
 
595
+ #: class.php:2166
596
  msgctxt "block or widget"
597
  msgid "INSERTED BUT NOT VISIBLE"
598
  msgstr ""
599
 
600
+ #: class.php:2615 class.php:2678
601
  msgid "ACTIVE GROUPS"
602
  msgstr ""
603
 
604
  #. translators: %s: list parameters and type
605
+ #: class.php:2864
606
  msgid "parameters='%s' type='%s'"
607
  msgstr ""
608
 
609
  #. translators: %s: list parameters and type
610
+ #: class.php:2866
611
  msgid "referers='%s' type='%s'"
612
  msgstr ""
613
 
614
  #. translators: %s: list parameters and type
615
+ #: class.php:2868
616
+ msgid "clients='%s' type='%s'"
617
+ msgstr ""
618
+
619
+ #. translators: %s: list parameters and type
620
+ #: class.php:2939
621
  msgid "countries='%s' type='%s'"
622
  msgstr ""
623
 
624
  #. translators: %s: list parameters and type
625
+ #: class.php:2941
626
  msgid "ip addresses='%s' type='%s'"
627
  msgstr ""
628
 
629
+ #: class.php:3210 strings.php:239
630
  msgid "BEFORE"
631
  msgstr ""
632
 
633
+ #: class.php:3218 strings.php:241
634
  msgid "PREPEND CONTENT"
635
  msgstr ""
636
 
637
+ #: class.php:3222 strings.php:242
638
  msgid "APPEND CONTENT"
639
  msgstr ""
640
 
641
+ #: class.php:3226 strings.php:243
642
  msgid "REPLACE CONTENT"
643
  msgstr ""
644
 
645
+ #: class.php:3230 strings.php:244
646
  msgid "REPLACE ELEMENT"
647
  msgstr ""
648
 
649
+ #: class.php:3241 strings.php:240
650
  msgid "AFTER"
651
  msgstr ""
652
 
653
+ #: class.php:3308
654
  msgctxt "JavaScript"
655
  msgid "script"
656
  msgstr ""
657
 
658
+ #: class.php:3311 settings.php:2096
659
  msgid "for"
660
  msgstr ""
661
 
662
+ #: class.php:6374 class.php:6426
663
  msgctxt "category name"
664
  msgid "Uncategorized"
665
  msgstr ""
666
 
667
+ #: class.php:6933
668
  msgid ""
669
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
670
  "extension for PHP."
680
  msgstr ""
681
 
682
  #: includes/editor.php:9 includes/placeholders.php:354
683
+ #: includes/preview.php:1965 settings.php:3495 strings.php:208 strings.php:245
684
  msgid "Cancel"
685
  msgstr ""
686
 
736
  msgid "License Key for"
737
  msgstr ""
738
 
739
+ #: includes/functions.old.php:413 includes/functions.php:414
740
  msgid "Open license page"
741
  msgstr ""
742
 
743
+ #: includes/functions.old.php:421 includes/functions.php:421
744
  msgid "Hide license key"
745
  msgstr ""
746
 
747
+ #: includes/functions.old.php:421 includes/functions.php:421
748
  msgid "Hide key"
749
  msgstr ""
750
 
751
+ #: includes/functions.old.php:436 includes/functions.php:436
752
  msgid "Main content element"
753
  msgstr ""
754
 
755
+ #: includes/functions.old.php:439 includes/functions.php:439
756
  msgid ""
757
  "Main content element (#id or .class) for 'Stick to the content' position. "
758
  "Leave empty unless position is not properly calculated."
759
  msgstr ""
760
 
761
+ #: includes/functions.old.php:440 includes/functions.php:440 settings.php:1308
762
+ #: settings.php:2710
763
  msgid "Open HTML element selector"
764
  msgstr ""
765
 
766
+ #: includes/functions.old.php:445 includes/functions.php:445
767
  msgid "Lazy loading offset"
768
  msgstr ""
769
 
770
+ #: includes/functions.old.php:448 includes/functions.php:448
771
  msgid "Offset of the block from the visible viewport when it should be loaded"
772
  msgstr ""
773
 
774
+ #: includes/functions.old.php:459 includes/functions.php:459
775
  msgid "Export / Import Block Settings"
776
  msgstr ""
777
 
778
+ #: includes/functions.old.php:474 includes/functions.php:474
779
  msgid "Track impressions and clicks for this block"
780
  msgstr ""
781
 
782
+ #: includes/functions.old.php:474 includes/functions.php:474
783
  msgid " - global tracking disabled"
784
  msgstr ""
785
 
786
+ #: includes/functions.old.php:481 includes/functions.php:481
787
  msgid "Generate PDF report"
788
  msgstr ""
789
 
790
+ #: includes/functions.old.php:486 includes/functions.php:486
791
  msgid "Open public report"
792
  msgstr ""
793
 
794
+ #: includes/functions.old.php:500 includes/functions.php:500
795
  msgid "Toggle Ad Blocking Statistics"
796
  msgstr ""
797
 
798
  #: includes/functions.old.php:508 includes/functions.old.php:2960
799
+ #: includes/functions.php:508 includes/functions.php:3011
800
  msgid "Toggle Statistics"
801
  msgstr ""
802
 
803
  #. translators: %s: Ad Inserter Pro
804
+ #: includes/functions.old.php:524 includes/functions.php:532
805
  msgid "%s license key is not set. Continue?"
806
  msgstr ""
807
 
808
  #. translators: %s: Ad Inserter Pro
809
+ #: includes/functions.old.php:528 includes/functions.php:536
810
  msgid "Invalid %s license key. Continue?"
811
  msgstr ""
812
 
813
  #. translators: %s: Ad Inserter Pro
814
+ #: includes/functions.old.php:532 includes/functions.php:540
815
  msgid "%s license overused. Continue?"
816
  msgstr ""
817
 
818
+ #: includes/functions.old.php:536 includes/functions.php:544 settings.php:1062
819
+ #: settings.php:2167
820
  msgid "Save Settings"
821
  msgstr ""
822
 
823
+ #: includes/functions.old.php:596 includes/functions.php:604
824
  #: includes/preview.php:2106
825
  msgid "Horizontal position"
826
  msgstr ""
827
 
828
+ #: includes/functions.old.php:619 includes/functions.php:627
829
  msgid ""
830
  "Horizontal margin from the content or screen edge, empty means default value "
831
  "from CSS"
832
  msgstr ""
833
 
834
+ #: includes/functions.old.php:627 includes/functions.php:635
835
  #: includes/preview.php:2161
836
  msgid "Vertical position"
837
  msgstr ""
838
 
839
+ #: includes/functions.old.php:642 includes/functions.php:650
840
  msgid ""
841
  "Vertical margin from the top or bottom screen edge, empty means default "
842
  "value from CSS"
843
  msgstr ""
844
 
845
+ #: includes/functions.old.php:667 includes/functions.php:675
846
  #: includes/preview.php:2212
847
  msgid "Animation"
848
  msgstr ""
849
 
850
+ #: includes/functions.old.php:685 includes/functions.php:693
851
  msgid "Trigger"
852
  msgstr ""
853
 
854
+ #: includes/functions.old.php:694 includes/functions.php:702
855
  msgid ""
856
  "Trigger value: page scroll in %, page scroll in px or element with selector "
857
  "(#id or .class) becomes visible"
858
  msgstr ""
859
 
860
+ #: includes/functions.old.php:698 includes/functions.php:706
861
  msgid "Offset"
862
  msgstr ""
863
 
864
+ #: includes/functions.old.php:698 includes/functions.php:706
865
  msgid "Offset of trigger element"
866
  msgstr ""
867
 
868
+ #: includes/functions.old.php:702 includes/functions.php:710
869
  msgid "Delay"
870
  msgstr ""
871
 
872
+ #: includes/functions.old.php:702 includes/functions.php:710
873
  msgid "Delay animation after trigger condition"
874
  msgstr ""
875
 
876
+ #: includes/functions.old.php:706 includes/functions.php:714
877
  msgid "Trigger once"
878
  msgstr ""
879
 
880
+ #: includes/functions.old.php:708 includes/functions.php:716
881
  msgid "Trigger animation only once"
882
  msgstr ""
883
 
884
  #: includes/functions.old.php:750 includes/functions.old.php:2453
885
+ #: includes/functions.old.php:2470 includes/functions.php:758
886
+ #: includes/functions.php:2504 includes/functions.php:2521
887
  msgid "Tracking is globally disabled"
888
  msgstr ""
889
 
890
  #: includes/functions.old.php:754 includes/functions.old.php:2457
891
+ #: includes/functions.old.php:2474 includes/functions.php:762
892
+ #: includes/functions.php:2508 includes/functions.php:2525
893
  msgid "Tracking for this block is disabled"
894
  msgstr ""
895
 
896
+ #: includes/functions.old.php:761 includes/functions.php:769
897
  msgid "Double click to toggle controls in public reports"
898
  msgstr ""
899
 
900
+ #: includes/functions.old.php:767 includes/functions.php:775 settings.php:3430
901
+ #: settings.php:3466 settings.php:3508 strings.php:218
902
  msgid "Loading..."
903
  msgstr ""
904
 
905
+ #: includes/functions.old.php:788 includes/functions.php:796
906
  msgid ""
907
  "Clear statistics data for the selected range - clear both dates to delete "
908
  "all data for this block"
909
  msgstr ""
910
 
911
+ #: includes/functions.old.php:792 includes/functions.php:800
912
  msgid "Auto refresh data for the selected range every 60 seconds"
913
  msgstr ""
914
 
915
  #: includes/functions.old.php:795 includes/functions.old.php:5262
916
+ #: includes/functions.php:803 includes/functions.php:5361
917
  msgid "Load data for last month"
918
  msgstr ""
919
 
920
  #: includes/functions.old.php:795 includes/functions.old.php:5262
921
+ #: includes/functions.php:803 includes/functions.php:5361
922
  msgid "Last Month"
923
  msgstr ""
924
 
925
  #: includes/functions.old.php:798 includes/functions.old.php:5265
926
+ #: includes/functions.php:806 includes/functions.php:5364
927
  msgid "Load data for this month"
928
  msgstr ""
929
 
930
  #: includes/functions.old.php:798 includes/functions.old.php:5265
931
+ #: includes/functions.php:806 includes/functions.php:5364
932
  msgid "This Month"
933
  msgstr ""
934
 
935
  #: includes/functions.old.php:801 includes/functions.old.php:5268
936
+ #: includes/functions.php:809 includes/functions.php:5367
937
  msgid "Load data for this year"
938
  msgstr ""
939
 
940
  #: includes/functions.old.php:801 includes/functions.old.php:5268
941
+ #: includes/functions.php:809 includes/functions.php:5367
942
  msgid "This Year"
943
  msgstr ""
944
 
945
  #: includes/functions.old.php:804 includes/functions.old.php:5271
946
+ #: includes/functions.php:812 includes/functions.php:5370
947
  msgid "Load data for the last 15 days"
948
  msgstr ""
949
 
950
  #: includes/functions.old.php:807 includes/functions.old.php:5274
951
+ #: includes/functions.php:815 includes/functions.php:5373
952
  msgid "Load data for the last 30 days"
953
  msgstr ""
954
 
955
  #: includes/functions.old.php:810 includes/functions.old.php:5277
956
+ #: includes/functions.php:818 includes/functions.php:5376
957
  msgid "Load data for the last 90 days"
958
  msgstr ""
959
 
960
  #: includes/functions.old.php:813 includes/functions.old.php:5280
961
+ #: includes/functions.php:821 includes/functions.php:5379
962
  msgid "Load data for the last 180 days"
963
  msgstr ""
964
 
965
  #: includes/functions.old.php:816 includes/functions.old.php:5283
966
+ #: includes/functions.php:824 includes/functions.php:5382
967
  msgid "Load data for the last 365 days"
968
  msgstr ""
969
 
970
  #: includes/functions.old.php:826 includes/functions.old.php:5293
971
+ #: includes/functions.php:834 includes/functions.php:5392
972
  msgid "Load data for the selected range"
973
  msgstr ""
974
 
975
+ #: includes/functions.old.php:842 includes/functions.php:850
976
  msgid ""
977
  "Import settings when saving - if checked, the encoded settings below will be "
978
  "imported for this block"
979
  msgstr ""
980
 
981
+ #: includes/functions.old.php:842 includes/functions.php:850
982
  msgid "Import settings for block"
983
  msgstr ""
984
 
985
+ #: includes/functions.old.php:846 includes/functions.php:854
986
  msgid ""
987
  "Import block name when saving - if checked and 'Import settings for block' "
988
  "is also checked, the name from encoded settings below will be imported for "
989
  "this block"
990
  msgstr ""
991
 
992
+ #: includes/functions.old.php:846 includes/functions.php:854
993
  msgid "Import block name"
994
  msgstr ""
995
 
996
+ #: includes/functions.old.php:850 includes/functions.php:858
997
  msgid "Saved settings for block"
998
  msgstr ""
999
 
1000
+ #: includes/functions.old.php:863 includes/functions.php:871
1001
  msgid "Export / Import Ad Inserter Pro Settings"
1002
  msgstr ""
1003
 
1004
+ #: includes/functions.old.php:873 includes/functions.php:881
1005
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1006
  msgstr ""
1007
 
1008
+ #: includes/functions.old.php:875 includes/functions.php:883
1009
  msgid "Clear All Statistics Data"
1010
  msgstr ""
1011
 
1012
+ #: includes/functions.old.php:902 includes/functions.php:910
1013
  msgid "Toggle country/city editor"
1014
  msgstr ""
1015
 
1016
+ #: includes/functions.old.php:908 includes/functions.php:916
1017
  msgid "IP Addresses"
1018
  msgstr ""
1019
 
1020
+ #: includes/functions.old.php:911 includes/functions.php:919
1021
  msgid "Toggle IP address editor"
1022
  msgstr ""
1023
 
1024
+ #: includes/functions.old.php:914 includes/functions.php:922
1025
  msgid ""
1026
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1027
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1028
  msgstr ""
1029
 
1030
+ #: includes/functions.old.php:918 includes/functions.php:926
1031
  msgid "Blacklist IP addresses"
1032
  msgstr ""
1033
 
1034
+ #: includes/functions.old.php:922 includes/functions.php:930
1035
  msgid "Whitelist IP addresses"
1036
  msgstr ""
1037
 
1038
+ #: includes/functions.old.php:933 includes/functions.php:941
1039
  msgid "Countries"
1040
  msgstr ""
1041
 
1042
+ #: includes/functions.old.php:934 includes/functions.php:942
1043
  msgid "Cities"
1044
  msgstr ""
1045
 
1046
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1047
+ #: includes/functions.php:946 includes/functions.php:2976
1048
  msgid "Toggle country editor"
1049
  msgstr ""
1050
 
1051
+ #: includes/functions.old.php:941 includes/functions.php:949
1052
  msgid "Toggle city editor"
1053
  msgstr ""
1054
 
1055
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1056
+ #: includes/functions.php:953 includes/functions.php:2979
1057
  msgid "Comma separated country ISO Alpha-2 codes"
1058
  msgstr ""
1059
 
1060
+ #: includes/functions.old.php:949 includes/functions.php:957
1061
  msgid "Blacklist countries"
1062
  msgstr ""
1063
 
1064
+ #: includes/functions.old.php:953 includes/functions.php:961
1065
  msgid "Whitelist countries"
1066
  msgstr ""
1067
 
1068
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1069
+ #: includes/functions.php:1371 includes/functions.php:1657
1070
  msgid "Enter license key"
1071
  msgstr ""
1072
 
1073
  #. translators: %s: Ad Inserter Pro
1074
+ #: includes/functions.old.php:1367 includes/functions.php:1377
1075
  msgid ""
1076
  "%s license key is not set. Plugin functionality is limited and updates are "
1077
  "disabled."
1078
  msgstr ""
1079
 
1080
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1081
+ #: includes/functions.php:1400 includes/functions.php:1666
1082
  msgid "Check license key"
1083
  msgstr ""
1084
 
1085
  #. translators: %s: Ad Inserter Pro
1086
+ #: includes/functions.old.php:1385 includes/functions.php:1406
1087
  msgid "Invalid %s license key."
1088
  msgstr ""
1089
 
1090
  #. translators: %s: Ad Inserter Pro
1091
+ #: includes/functions.old.php:1394 includes/functions.php:1415
1092
  msgid "%s license expired. Plugin updates are disabled."
1093
  msgstr ""
1094
 
1095
+ #: includes/functions.old.php:1395 includes/functions.php:1416
1096
  msgid "Renew license"
1097
  msgstr ""
1098
 
1099
  #. translators: %s: Ad Inserter Pro
1100
+ #: includes/functions.old.php:1403 includes/functions.php:1424
1101
  msgid "%s license overused. Plugin updates are disabled."
1102
  msgstr ""
1103
 
1104
+ #: includes/functions.old.php:1404 includes/functions.php:1425
1105
  msgid "Manage licenses"
1106
  msgstr ""
1107
 
1108
+ #: includes/functions.old.php:1404 includes/functions.php:1425
1109
  msgid "Upgrade license"
1110
  msgstr ""
1111
 
1112
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1113
+ #: includes/functions.old.php:1610 includes/functions.php:1659
1114
  msgid ""
1115
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1116
  "limited and updates are disabled."
1117
  msgstr ""
1118
 
1119
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1120
+ #: includes/functions.old.php:1619 includes/functions.php:1668
1121
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1122
  msgstr ""
1123
 
1124
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1125
+ #: includes/functions.old.php:1635 includes/functions.php:1684
1126
  msgid ""
1127
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1128
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1129
  msgstr ""
1130
 
1131
  #. translators: 1, 3: HTML tags, 2: percentage
1132
+ #: includes/functions.old.php:1642 includes/functions.php:1691
1133
  msgid ""
1134
  "During the license period and 30 days after the license has expired we offer "
1135
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1136
  msgstr ""
1137
 
1138
+ #: includes/functions.old.php:1669 includes/functions.php:1718
1139
  msgid "Renew the licence"
1140
  msgstr ""
1141
 
1142
+ #: includes/functions.old.php:1671 includes/functions.php:1720
1143
  msgid "Update license status"
1144
  msgstr ""
1145
 
1146
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1147
+ #: includes/functions.old.php:1682 includes/functions.php:1731
1148
  msgid ""
1149
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1150
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1151
  msgstr ""
1152
 
1153
  #. Translators: %s: HTML tag
1154
+ #: includes/functions.old.php:1704 includes/functions.php:1753
1155
  msgid "Warning: %s MaxMind IP geolocation database not found."
1156
  msgstr ""
1157
 
1158
+ #: includes/functions.old.php:2255 includes/functions.php:2306
1159
  msgid "Geolocation"
1160
  msgstr ""
1161
 
1162
+ #: includes/functions.old.php:2259 includes/functions.php:2310
1163
+ #: settings.php:4087
1164
  msgid "Exceptions"
1165
  msgstr ""
1166
 
1167
+ #: includes/functions.old.php:2264 includes/functions.php:2315
1168
  msgid "Multisite"
1169
  msgstr ""
1170
 
1171
+ #: includes/functions.old.php:2269 includes/functions.php:2320
1172
+ #: settings.php:4093
1173
  msgid "Tracking"
1174
  msgstr ""
1175
 
1176
  #. translators: %d: days, hours, minutes
1177
+ #: includes/functions.old.php:2300 includes/functions.php:2351
1178
  msgid "Scheduled in %d days %d hours %d minutes"
1179
  msgstr ""
1180
 
1181
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1182
  #. HTML code for long dash separator
1183
+ #: includes/functions.old.php:2309 includes/functions.php:2360
1184
  msgid "Active %s expires in %d days %d hours %d minutes"
1185
  msgstr ""
1186
 
1187
+ #: includes/functions.old.php:2313 includes/functions.php:2364
1188
  msgid "Expired"
1189
  msgstr ""
1190
 
1191
+ #: includes/functions.old.php:2321 includes/functions.php:2372
1192
+ #: settings.php:1391 settings.php:1406 settings.php:1496 settings.php:2082
1193
  msgid "and"
1194
  msgstr ""
1195
 
1196
+ #: includes/functions.old.php:2324 includes/functions.php:2375
1197
  msgid "fallback"
1198
  msgstr ""
1199
 
1200
+ #: includes/functions.old.php:2325 includes/functions.php:2376
1201
  msgid "Block to be used when scheduling expires"
1202
  msgstr ""
1203
 
1204
+ #: includes/functions.old.php:2350 includes/functions.php:2401
1205
  msgid "Load in iframe"
1206
  msgstr ""
1207
 
1208
+ #: includes/functions.old.php:2354 includes/functions.php:2405
1209
  #: includes/placeholders.php:389
1210
  msgid "Width"
1211
  msgstr ""
1212
 
1213
+ #: includes/functions.old.php:2355 includes/functions.php:2406
1214
  msgid "iframe width, empty means full width (100%)"
1215
  msgstr ""
1216
 
1217
+ #: includes/functions.old.php:2361 includes/functions.php:2412
1218
  #: includes/placeholders.php:384
1219
  msgid "Height"
1220
  msgstr ""
1221
 
1222
+ #: includes/functions.old.php:2362 includes/functions.php:2413
1223
  msgid "iframe height, empty means adjust it to iframe content height"
1224
  msgstr ""
1225
 
1226
+ #: includes/functions.old.php:2369 includes/functions.php:2420
1227
  msgid "Ad label in iframe"
1228
  msgstr ""
1229
 
1230
+ #: includes/functions.old.php:2374 includes/functions.php:2425
1231
  msgid "Preview iframe code"
1232
  msgstr ""
1233
 
1234
+ #: includes/functions.old.php:2374 includes/functions.php:2425
1235
+ #: includes/preview.php:1974 settings.php:1057 settings.php:2772
1236
  msgid "Preview"
1237
  msgstr ""
1238
 
1239
+ #: includes/functions.old.php:2388 includes/functions.php:2439
1240
+ #: settings.php:4094
1241
  msgid "Limits"
1242
  msgstr ""
1243
 
1244
  #: includes/functions.old.php:2393 includes/functions.old.php:4266
1245
+ #: includes/functions.old.php:4329 includes/functions.php:2444
1246
+ #: includes/functions.php:4340 includes/functions.php:4403 settings.php:2214
1247
  msgid "Ad Blocking"
1248
  msgstr ""
1249
 
1250
  #. translators: 1, 2 and 3, 4: HTML tags
1251
+ #: includes/functions.old.php:2402 includes/functions.php:2453
1252
  msgid ""
1253
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1254
  "for tracking!"
1256
 
1257
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1258
  #. header
1259
+ #: includes/functions.old.php:2411 includes/functions.php:2462
1260
  msgid ""
1261
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1262
  "enabled and automatic insertion %6$s!"
1263
  msgstr ""
1264
 
1265
+ #: includes/functions.old.php:2478 includes/functions.php:2529
1266
  msgid "Click fraud protection is globally disabled"
1267
  msgstr ""
1268
 
1269
+ #: includes/functions.old.php:2482 includes/functions.php:2533
1270
  msgid "Max clicks per time period are not defined"
1271
  msgstr ""
1272
 
1273
  #. Translators: Max n impressions
1274
+ #: includes/functions.old.php:2496 includes/functions.php:2547
1275
  msgid "General limits"
1276
  msgstr ""
1277
 
1278
  #. Translators: Max n impressions per x days
1279
  #: includes/functions.old.php:2502 includes/functions.old.php:2514
1280
+ #: includes/functions.old.php:2599 includes/functions.php:2553
1281
+ #: includes/functions.php:2565 includes/functions.php:2650
1282
  msgid "Current value"
1283
  msgstr ""
1284
 
1294
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1295
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1296
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1297
+ #: includes/functions.php:2572 includes/functions.php:2582
1298
+ #: includes/functions.php:2601 includes/functions.php:2611
1299
+ #: includes/functions.php:2657 includes/functions.php:2666
1300
+ #: includes/functions.php:2684 includes/functions.php:2693 settings.php:2003
1301
  msgid "Max"
1302
  msgstr ""
1303
 
1304
+ #: includes/functions.old.php:2522 includes/functions.php:2573
1305
  msgid ""
1306
  "Maximum number of impressions for this block. Empty means no general "
1307
  "impression limit."
1313
  #. Translators: Max n impressions per x days
1314
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1315
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1316
+ #: includes/functions.php:2575 includes/functions.php:2585
1317
+ #: includes/functions.php:2660 includes/functions.php:2669
1318
  msgid "impression"
1319
  msgid_plural "impressions"
1320
  msgstr[0] ""
1321
  msgstr[1] ""
1322
 
1323
+ #: includes/functions.old.php:2532 includes/functions.php:2583
1324
  msgid ""
1325
  "Maximum number of impressions per time period. Empty means no time limit."
1326
  msgstr ""
1331
  #. Translators: Max n clicks per x days
1332
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1333
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1334
+ #: includes/functions.php:2589 includes/functions.php:2618
1335
+ #: includes/functions.php:2673 includes/functions.php:2700
1336
  msgid "per"
1337
  msgstr ""
1338
 
1339
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1340
+ #: includes/functions.php:2590 includes/functions.php:2619
1341
  msgid "Time period in days. Empty means no time limit."
1342
  msgstr ""
1343
 
1349
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1350
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1351
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1352
+ #: includes/functions.php:2592 includes/functions.php:2621
1353
+ #: includes/functions.php:2676 includes/functions.php:2703
1354
+ #: includes/functions.php:2809 includes/functions.php:3137 strings.php:199
1355
  #: strings.php:200 strings.php:201 strings.php:202 strings.php:203
1356
  #: strings.php:204
1357
  msgid "day"
1359
  msgstr[0] ""
1360
  msgstr[1] ""
1361
 
1362
+ #: includes/functions.old.php:2551 includes/functions.php:2602
1363
  msgid ""
1364
  "Maximum number of clicks on this block. Empty means no general click limit."
1365
  msgstr ""
1370
  #. Translators: Max n clicks per x days
1371
  #: includes/functions.old.php:2553 includes/functions.old.php:2563
1372
  #: includes/functions.old.php:2636 includes/functions.old.php:2645
1373
+ #: includes/functions.old.php:4477 includes/functions.php:2604
1374
+ #: includes/functions.php:2614 includes/functions.php:2687
1375
+ #: includes/functions.php:2696 includes/functions.php:4551
1376
  msgid "click"
1377
  msgid_plural "clicks"
1378
  msgstr[0] ""
1379
  msgstr[1] ""
1380
 
1381
+ #: includes/functions.old.php:2561 includes/functions.php:2612
1382
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1383
  msgstr ""
1384
 
1385
+ #: includes/functions.old.php:2586 includes/functions.php:2637
1386
  msgid "Individual visitor limits"
1387
  msgstr ""
1388
 
1389
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1390
+ #: includes/functions.php:2641 includes/functions.php:2643
1391
  msgid ""
1392
  "When specified number of clicks on this block for a visitor will be reached "
1393
  "in the specified time period, all blocks that have click fraud protection "
1395
  "general plugin settings."
1396
  msgstr ""
1397
 
1398
+ #: includes/functions.old.php:2592 includes/functions.php:2643
1399
  msgid "Trigger click fraud protection"
1400
  msgstr ""
1401
 
1402
+ #: includes/functions.old.php:2607 includes/functions.php:2658
1403
  msgid ""
1404
  "Maximum number of impressions of this block for each visitor. Empty means no "
1405
  "impression limit."
1406
  msgstr ""
1407
 
1408
+ #: includes/functions.old.php:2616 includes/functions.php:2667
1409
  msgid ""
1410
  "Maximum number of impressions per time period for each visitor. Empty means "
1411
  "no impression limit per time period for visitors."
1412
  msgstr ""
1413
 
1414
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1415
+ #: includes/functions.php:2674 includes/functions.php:2701
1416
  msgid ""
1417
  "Time period in days. Use decimal value (with decimal point) for shorter "
1418
  "periods. Empty means no time limit."
1419
  msgstr ""
1420
 
1421
+ #: includes/functions.old.php:2634 includes/functions.php:2685
1422
  msgid ""
1423
  "Maximum number of clicks on this block for each visitor. Empty means no "
1424
  "click limit."
1425
  msgstr ""
1426
 
1427
+ #: includes/functions.old.php:2643 includes/functions.php:2694
1428
  msgid ""
1429
  "Maximum number of clicks per time period for each visitor. Empty means no "
1430
  "click limit per time period for visitors."
1431
  msgstr ""
1432
 
1433
+ #: includes/functions.old.php:2669 includes/functions.php:2720
1434
  msgid "When ad blocking is detected"
1435
  msgstr ""
1436
 
1437
+ #: includes/functions.old.php:2678 includes/functions.php:2729
1438
  msgid "replacement"
1439
  msgstr ""
1440
 
1441
+ #: includes/functions.old.php:2679 includes/functions.php:2730
1442
  msgid "Block to be shown when ad blocking is detected"
1443
  msgstr ""
1444
 
1445
+ #: includes/functions.old.php:2680 includes/functions.php:2731
1446
  msgctxt "replacement"
1447
  msgid "None"
1448
  msgstr ""
1449
 
1450
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1451
+ #: includes/functions.php:2748 includes/functions.php:5583
1452
  msgid "Close button"
1453
  msgstr ""
1454
 
1455
+ #: includes/functions.old.php:2749 includes/functions.php:2800
1456
  msgid "Auto close after"
1457
  msgstr ""
1458
 
1459
+ #: includes/functions.old.php:2750 includes/functions.php:2801
1460
  msgid ""
1461
  "Time in seconds in which the ad will automatically close. Leave empty to "
1462
  "disable auto closing."
1463
  msgstr ""
1464
 
1465
  #. Translators: Don't show for x days
1466
+ #: includes/functions.old.php:2755 includes/functions.php:2806
1467
  msgid "Don't show for"
1468
  msgstr ""
1469
 
1470
+ #: includes/functions.old.php:2756 includes/functions.php:2807
1471
  msgid ""
1472
  "Time in days in which closed ad will not be shown again. Use decimal value "
1473
  "(with decimal point) for shorter time period or leave empty to show it again "
1475
  msgstr ""
1476
 
1477
  #. Translators: Delay showing for x pageviews
1478
+ #: includes/functions.old.php:2776 includes/functions.php:2827
1479
  msgid "Delay showing for"
1480
  msgstr ""
1481
 
1482
+ #: includes/functions.old.php:2777 includes/functions.php:2828
1483
  msgid ""
1484
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1485
  "empty to insert the code for the first pageview."
1488
  #. Translators: Delay showing for x pageviews
1489
  #. Translators: Show every x pageviews
1490
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1491
+ #: includes/functions.php:2830 includes/functions.php:2837
1492
  msgid "pageview"
1493
  msgid_plural "pageviews"
1494
  msgstr[0] ""
1495
  msgstr[1] ""
1496
 
1497
  #. Translators: Show every x pageviews
1498
+ #: includes/functions.old.php:2783 includes/functions.php:2834
1499
  msgid "Show every"
1500
  msgid_plural "Show every"
1501
  msgstr[0] ""
1502
  msgstr[1] ""
1503
 
1504
+ #: includes/functions.old.php:2784 includes/functions.php:2835
1505
  msgid ""
1506
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1507
  "for every pageview."
1508
  msgstr ""
1509
 
1510
+ #: includes/functions.old.php:2803 includes/functions.php:2854
1511
  msgid "Lazy loading"
1512
  msgstr ""
1513
 
1514
  #. Translators: %s MaxMind
1515
+ #: includes/functions.old.php:2860 includes/functions.php:2911
1516
  msgid "This product includes GeoLite2 data created by %s"
1517
  msgstr ""
1518
 
1519
+ #: includes/functions.old.php:2871 includes/functions.php:2922
1520
  msgid "IP geolocation database"
1521
  msgstr ""
1522
 
1523
+ #: includes/functions.old.php:2874 includes/functions.php:2925
1524
  msgid "Select IP geolocation database."
1525
  msgstr ""
1526
 
1527
+ #: includes/functions.old.php:2885 includes/functions.php:2936
1528
  msgid "Automatic database updates"
1529
  msgstr ""
1530
 
1531
+ #: includes/functions.old.php:2888 includes/functions.php:2939
1532
  msgid ""
1533
  "Automatically download and update free GeoLite2 IP geolocation database by "
1534
  "MaxMind"
1535
  msgstr ""
1536
 
1537
+ #: includes/functions.old.php:2896 includes/functions.php:2947
1538
  msgid "Database"
1539
  msgstr ""
1540
 
1541
+ #: includes/functions.old.php:2899 includes/functions.php:2950
1542
  msgid ""
1543
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1544
  "file"
1545
  msgstr ""
1546
 
1547
  #. translators: %d: group number
1548
+ #: includes/functions.old.php:2917 includes/functions.php:2968
1549
  msgid "Group %d"
1550
  msgstr ""
1551
 
1552
+ #: includes/functions.old.php:2923 includes/functions.php:2974
1553
  msgid "countries"
1554
  msgstr ""
1555
 
1556
+ #: includes/functions.old.php:2968 includes/functions.php:3019
1557
  msgid ""
1558
  "Enable impression and click tracking. You also need to enable tracking for "
1559
  "each block you want to track."
1560
  msgstr ""
1561
 
1562
+ #: includes/functions.old.php:2975 includes/functions.php:3026
1563
  msgid "Generate report"
1564
  msgstr ""
1565
 
1566
+ #: includes/functions.old.php:2983 includes/functions.php:3034
1567
  msgid "Impression and Click Tracking"
1568
  msgstr ""
1569
 
1570
+ #: includes/functions.old.php:2984 includes/functions.php:3035
1571
+ #: settings.php:2660
1572
  msgctxt "ad blocking detection"
1573
  msgid "NOT ENABLED"
1574
  msgstr ""
1575
 
1576
+ #: includes/functions.old.php:3000 includes/functions.php:3051
1577
  msgid "Internal"
1578
  msgstr ""
1579
 
1580
+ #: includes/functions.old.php:3004 includes/functions.php:3055
1581
  msgid "Track impressions and clicks with internal tracking and statistics"
1582
  msgstr ""
1583
 
1584
+ #: includes/functions.old.php:3009 includes/functions.php:3060
1585
  msgid "External"
1586
  msgstr ""
1587
 
1588
+ #: includes/functions.old.php:3013 includes/functions.php:3064
1589
  msgid ""
1590
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1591
  "code installed)"
1592
  msgstr ""
1593
 
1594
+ #: includes/functions.old.php:3018 includes/functions.php:3069
1595
  msgid "Track Pageviews"
1596
  msgstr ""
1597
 
1598
+ #: includes/functions.old.php:3024 includes/functions.php:3075
1599
  msgid "Track Pageviews by Device (as configured for viewports)"
1600
  msgstr ""
1601
 
1602
+ #: includes/functions.old.php:3034 includes/functions.php:3085
1603
  msgid "Track for Logged in Users"
1604
  msgstr ""
1605
 
1606
+ #: includes/functions.old.php:3040 includes/functions.php:3091
1607
  msgid "Track impressions and clicks from logged in users"
1608
  msgstr ""
1609
 
1610
+ #: includes/functions.old.php:3050 includes/functions.php:3101
1611
  msgid "Click Detection"
1612
  msgstr ""
1613
 
1614
+ #: includes/functions.old.php:3056 includes/functions.php:3107
1615
  msgid ""
1616
  "Standard method detects clicks only on banners with links, Advanced method "
1617
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1618
  msgstr ""
1619
 
1620
+ #: includes/functions.old.php:3075 includes/functions.php:3126
1621
  msgid "Click fraud protection"
1622
  msgstr ""
1623
 
1624
+ #: includes/functions.old.php:3079 includes/functions.php:3130
1625
  msgid "Globally enable click fraud protection for selected blocks."
1626
  msgstr ""
1627
 
1628
+ #: includes/functions.old.php:3085 includes/functions.php:3136
1629
  msgid "Protection time"
1630
  msgstr ""
1631
 
1632
+ #: includes/functions.old.php:3086 includes/functions.php:3137
1633
  msgid ""
1634
  "Time period in days in which blocks with enabled click fraud protection will "
1635
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1636
  msgstr ""
1637
 
1638
+ #: includes/functions.old.php:3105 includes/functions.php:3156
1639
  msgid "Report header image"
1640
  msgstr ""
1641
 
1642
+ #: includes/functions.old.php:3108 includes/functions.php:3159
1643
  msgid ""
1644
  "Image or logo to be displayed in the header of the statistins report. "
1645
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
1646
  "to reset to default image."
1647
  msgstr ""
1648
 
1649
+ #: includes/functions.old.php:3109 includes/functions.php:3160 strings.php:230
1650
  msgid "Select or upload header image"
1651
  msgstr ""
1652
 
1653
+ #: includes/functions.old.php:3114 includes/functions.php:3165
1654
  msgid "Report header title"
1655
  msgstr ""
1656
 
1657
+ #: includes/functions.old.php:3117 includes/functions.php:3168
1658
  msgid ""
1659
  "Title to be displayed in the header of the statistics report. Text or HTML "
1660
  "code, clear to reset to default text."
1661
  msgstr ""
1662
 
1663
+ #: includes/functions.old.php:3122 includes/functions.php:3173
1664
  msgid "Report header description"
1665
  msgstr ""
1666
 
1667
+ #: includes/functions.old.php:3125 includes/functions.php:3176
1668
  msgid ""
1669
  "Description to be displayed in the header of the statistics report. Text or "
1670
  "HTML code, clear to reset to default text."
1671
  msgstr ""
1672
 
1673
+ #: includes/functions.old.php:3130 includes/functions.php:3181
1674
  msgid "Report footer"
1675
  msgstr ""
1676
 
1677
+ #: includes/functions.old.php:3133 includes/functions.php:3184
1678
  msgid ""
1679
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1680
  "to default text."
1681
  msgstr ""
1682
 
1683
+ #: includes/functions.old.php:3138 includes/functions.php:3189
1684
  msgid "Public report key"
1685
  msgstr ""
1686
 
1687
+ #: includes/functions.old.php:3141 includes/functions.php:3192
1688
  msgid "String to generate unique report IDs. Clear to reset to default value."
1689
  msgstr ""
1690
 
1691
+ #: includes/functions.old.php:3173 includes/functions.php:3224
1692
  msgid "Are you sure you want to clear all exceptions for block"
1693
  msgstr ""
1694
 
1695
+ #: includes/functions.old.php:3174 includes/functions.php:3225
1696
+ #: settings.php:1160
1697
  msgid "Clear all exceptions for block"
1698
  msgstr ""
1699
 
1700
+ #: includes/functions.old.php:3181 includes/functions.php:3232
1701
  msgid "Are you sure you want to clear all exceptions?"
1702
  msgstr ""
1703
 
1704
+ #: includes/functions.old.php:3181 includes/functions.php:3232
1705
  msgid "Clear all exceptions for all blocks"
1706
  msgstr ""
1707
 
1708
+ #: includes/functions.old.php:3186 includes/functions.php:3237
1709
+ #: settings.php:3739 settings.php:4170
1710
  msgid "Type"
1711
  msgstr ""
1712
 
1713
+ #: includes/functions.old.php:3204 includes/functions.php:3255
1714
  msgid "View"
1715
  msgstr ""
1716
 
1717
  #: includes/functions.old.php:3205 includes/functions.old.php:3212
1718
+ #: includes/functions.old.php:3216 includes/functions.php:3256
1719
+ #: includes/functions.php:3263 includes/functions.php:3267
1720
+ #: includes/placeholders.php:353 includes/preview.php:2281 settings.php:1294
1721
+ #: settings.php:3499
1722
  msgid "Edit"
1723
  msgstr ""
1724
 
1725
+ #: includes/functions.old.php:3235 includes/functions.php:3286
1726
  msgid "Are you sure you want to clear all exceptions for"
1727
  msgstr ""
1728
 
1729
+ #: includes/functions.old.php:3236 includes/functions.php:3287
1730
  msgid "Clear all exceptions for"
1731
  msgstr ""
1732
 
1733
+ #: includes/functions.old.php:3249 includes/functions.php:3300
1734
  msgid "No exceptions"
1735
  msgstr ""
1736
 
1737
  #. translators: %s: Ad Inserter Pro
1738
+ #: includes/functions.old.php:3260 includes/functions.php:3311
1739
  msgid "%s options for network blogs"
1740
  msgstr ""
1741
 
1742
  #. translators: %s: Ad Inserter Pro
1743
+ #: includes/functions.old.php:3265 includes/functions.php:3316
1744
  msgid "Enable %s widgets for sub-sites"
1745
  msgstr ""
1746
 
1747
+ #: includes/functions.old.php:3265 includes/functions.php:3316
1748
  msgid "Widgets"
1749
  msgstr ""
1750
 
1751
+ #: includes/functions.old.php:3270 includes/functions.php:3321
1752
  msgid "Enable PHP code processing for sub-sites"
1753
  msgstr ""
1754
 
1755
+ #: includes/functions.old.php:3270 includes/functions.php:3321
1756
  msgid "PHP Processing"
1757
  msgstr ""
1758
 
1759
  #. translators: %s: Ad Inserter Pro
1760
+ #: includes/functions.old.php:3275 includes/functions.php:3326
1761
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1762
  msgstr ""
1763
 
1764
+ #: includes/functions.old.php:3275 includes/functions.php:3326
1765
  msgid "Post/Page exceptions"
1766
  msgstr ""
1767
 
1768
  #. translators: %s: Ad Inserter Pro
1769
+ #: includes/functions.old.php:3280 includes/functions.php:3331
1770
  msgid "Enable %s settings page for sub-sites"
1771
  msgstr ""
1772
 
1773
+ #: includes/functions.old.php:3280 includes/functions.php:3331
1774
  msgid "Settings page"
1775
  msgstr ""
1776
 
1777
  #. translators: %s: Ad Inserter Pro
1778
+ #: includes/functions.old.php:3285 includes/functions.php:3336
1779
  msgid "Enable %s settings of main site to be used for all blogs"
1780
  msgstr ""
1781
 
1782
+ #: includes/functions.old.php:3285 includes/functions.php:3336
1783
  msgid "Main site settings used for all blogs"
1784
  msgstr ""
1785
 
1786
+ #: includes/functions.old.php:3296 includes/functions.php:3347
1787
+ #: settings.php:2659
1788
  msgid "Ad Blocking Detection"
1789
  msgstr ""
1790
 
1791
+ #: includes/functions.old.php:3302 includes/functions.php:3353
1792
  msgid ""
1793
  "Standard method is reliable but should be used only if Advanced method does "
1794
  "not work. Advanced method recreates files used for detection with random "
1797
  msgstr ""
1798
 
1799
  #: includes/functions.old.php:3929 includes/functions.old.php:4019
1800
+ #: includes/functions.old.php:4039 includes/functions.php:4003
1801
+ #: includes/functions.php:4093 includes/functions.php:4113
1802
  msgid "AD BLOCKING"
1803
  msgstr ""
1804
 
1805
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
1806
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
1807
+ #: includes/functions.php:4004 includes/functions.php:4044
1808
+ #: includes/functions.php:4087 includes/functions.php:4114
1809
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1810
  msgstr ""
1811
 
1812
  #: includes/functions.old.php:3933 includes/functions.old.php:4012
1813
+ #: includes/functions.old.php:4046 includes/functions.php:4007
1814
+ #: includes/functions.php:4086 includes/functions.php:4120
1815
  msgid "NO AD BLOCKING"
1816
  msgstr ""
1817
 
1818
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
1819
+ #: includes/functions.php:4043 includes/functions.php:4050
1820
  msgid "AD BLOCKING REPLACEMENT"
1821
  msgstr ""
1822
 
1823
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
1824
+ #: includes/functions.php:4193 includes/functions.php:4402
1825
  msgid "Pageviews"
1826
  msgstr ""
1827
 
1828
+ #: includes/functions.old.php:4265 includes/functions.php:4339
1829
  msgctxt "Version"
1830
  msgid "Unknown"
1831
  msgstr ""
1832
 
1833
+ #: includes/functions.old.php:4265 includes/functions.php:4339
1834
  msgctxt "Times"
1835
  msgid "DISPLAYED"
1836
  msgstr ""
1837
 
1838
+ #: includes/functions.old.php:4265 includes/functions.php:4339
1839
  msgid "No version"
1840
  msgstr ""
1841
 
1842
+ #: includes/functions.old.php:4266 includes/functions.php:4340
1843
  msgctxt "Times"
1844
  msgid "BLOCKED"
1845
  msgstr ""
1846
 
1847
+ #: includes/functions.old.php:4328 includes/functions.php:4402
1848
  msgid "Impressions"
1849
  msgstr ""
1850
 
1851
  #: includes/functions.old.php:4329 includes/functions.old.php:4330
1852
+ #: includes/functions.old.php:4385 includes/functions.php:4403
1853
+ #: includes/functions.php:4404 includes/functions.php:4459
1854
  msgid "Clicks"
1855
  msgstr ""
1856
 
1857
+ #: includes/functions.old.php:4330 includes/functions.php:4404
1858
  msgid "events"
1859
  msgstr ""
1860
 
1861
+ #: includes/functions.old.php:4331 includes/functions.php:4405
1862
  msgid "Ad Blocking Share"
1863
  msgstr ""
1864
 
1865
  #. translators: CTR as Click Through Rate
1866
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
1867
+ #: includes/functions.php:4405 includes/functions.php:4465
1868
  msgid "CTR"
1869
  msgstr ""
1870
 
1871
+ #: includes/functions.old.php:4473 includes/functions.php:4547
1872
  msgid "pageviews"
1873
  msgid_plural "pageviews"
1874
  msgstr[0] ""
1875
  msgstr[1] ""
1876
 
1877
+ #: includes/functions.old.php:4473 includes/functions.php:4547
1878
  msgid "impressions"
1879
  msgid_plural "impressions"
1880
  msgstr[0] ""
1881
  msgstr[1] ""
1882
 
1883
+ #: includes/functions.old.php:4477 includes/functions.php:4551
1884
  msgid "event"
1885
  msgid_plural "events"
1886
  msgstr[0] ""
1887
  msgstr[1] ""
1888
 
1889
+ #: includes/functions.old.php:4572 includes/functions.php:4646
1890
  msgctxt "Pageviews / Impressions"
1891
  msgid "Average"
1892
  msgstr ""
1893
 
1894
+ #: includes/functions.old.php:4593 includes/functions.php:4667
1895
  msgctxt "Ad Blocking / Clicks"
1896
  msgid "Average"
1897
  msgstr ""
1898
 
1899
+ #: includes/functions.old.php:4617 includes/functions.php:4691
1900
  msgctxt "Ad Blocking Share / CTR"
1901
  msgid "Average"
1902
  msgstr ""
1903
 
1904
  #. Translators: %s: Ad Inserter Pro
1905
  #: includes/functions.old.php:4799 includes/functions.old.php:4891
1906
+ #: includes/functions.old.php:5207 includes/functions.php:4873
1907
+ #: includes/functions.php:4965 includes/functions.php:5306 strings.php:184
1908
  msgid "%s Report"
1909
  msgstr ""
1910
 
1911
+ #: includes/functions.old.php:5113 includes/functions.php:5212
1912
  msgid "for last month"
1913
  msgstr ""
1914
 
1915
+ #: includes/functions.old.php:5118 includes/functions.php:5217
1916
  msgid "for this month"
1917
  msgstr ""
1918
 
1919
+ #: includes/functions.old.php:5123 includes/functions.php:5222
1920
  msgid "for this year"
1921
  msgstr ""
1922
 
1923
+ #: includes/functions.old.php:5128 includes/functions.php:5227
1924
  msgid "for the last 15 days"
1925
  msgstr ""
1926
 
1927
+ #: includes/functions.old.php:5133 includes/functions.php:5232
1928
  msgid "for the last 30 days"
1929
  msgstr ""
1930
 
1931
+ #: includes/functions.old.php:5138 includes/functions.php:5237
1932
  msgid "for the last 90 days"
1933
  msgstr ""
1934
 
1935
+ #: includes/functions.old.php:5143 includes/functions.php:5242
1936
  msgid "for the last 180 days"
1937
  msgstr ""
1938
 
1939
+ #: includes/functions.old.php:5148 includes/functions.php:5247
1940
  msgid "for the last 365 days"
1941
  msgstr ""
1942
 
1943
+ #: includes/functions.php:517
1944
  msgid "Pin list"
1945
  msgstr ""
1946
 
1947
  #. translators: %s: Ad Inserter Pro
1948
+ #: includes/functions.php:1391
1949
  msgid "Warning: %s plugin update server is not accessible"
1950
  msgstr ""
1951
 
1952
  #. translators: updates are not available
1953
+ #: includes/functions.php:1393
1954
  msgid "updates"
1955
  msgstr ""
1956
 
1957
  #. translators: updates are not available
1958
+ #: includes/functions.php:1395
1959
  msgid "are not available"
1960
  msgstr ""
1961
 
1983
  msgid "Placeholder"
1984
  msgstr ""
1985
 
1986
+ #: includes/placeholders.php:363 settings.php:904 settings.php:4171
1987
  msgid "Size"
1988
  msgstr ""
1989
 
2091
  msgid "Ad Blocking Detected Message Preview"
2092
  msgstr ""
2093
 
2094
+ #: includes/preview-adb.php:348 settings.php:2785
2095
  msgid "Message CSS"
2096
  msgstr ""
2097
 
2098
+ #: includes/preview-adb.php:353 settings.php:2793
2099
  msgid "Overlay CSS"
2100
  msgstr ""
2101
 
2135
  msgid "background"
2136
  msgstr ""
2137
 
2138
+ #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1255
2139
  msgid "Alignment"
2140
  msgstr ""
2141
 
2233
  "the values to those of the current block."
2234
  msgstr ""
2235
 
2236
+ #: settings.php:172 settings.php:1144
2237
  msgid ""
2238
  "Settings for individual exceptions have been updated. Please check all "
2239
  "blocks that have exceptions and and then save settings."
2243
  msgid "Online documentation"
2244
  msgstr ""
2245
 
2246
+ #: settings.php:218 settings.php:740 settings.php:2181
2247
  msgid "Show AdSense ad units"
2248
  msgstr ""
2249
 
2251
  msgid "Edit ads.txt file"
2252
  msgstr ""
2253
 
2254
+ #: settings.php:226 settings.php:1087
2255
  msgid "Check theme for available positions for automatic insertion"
2256
  msgstr ""
2257
 
2367
  msgid "General Settings"
2368
  msgstr ""
2369
 
2370
+ #: settings.php:688 settings.php:2512 settings.php:2579 settings.php:2765
2371
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2372
  msgstr ""
2373
 
2374
+ #: settings.php:695
2375
  msgid "Toggle tools"
2376
  msgstr ""
2377
 
2378
+ #: settings.php:703
2379
  msgid "Process PHP code in block"
2380
  msgstr ""
2381
 
2382
+ #: settings.php:710
2383
  msgid "Disable insertion of this block"
2384
  msgstr ""
2385
 
2386
+ #: settings.php:722
2387
  msgid "Toggle code generator"
2388
  msgstr ""
2389
 
2390
+ #: settings.php:726
2391
  msgid "Toggle rotation editor"
2392
  msgstr ""
2393
 
2394
+ #: settings.php:730
2395
  msgid "Open visual HTML editor"
2396
  msgstr ""
2397
 
2398
+ #: settings.php:749
2399
  msgid "Clear block"
2400
  msgstr ""
2401
 
2402
+ #: settings.php:754 settings.php:4043
2403
  msgid "Copy block"
2404
  msgstr ""
2405
 
2406
+ #: settings.php:758
2407
  msgid "Paste name"
2408
  msgstr ""
2409
 
2410
+ #: settings.php:762
2411
  msgid "Paste code"
2412
  msgstr ""
2413
 
2414
+ #: settings.php:766
2415
  msgid "Paste settings"
2416
  msgstr ""
2417
 
2418
+ #: settings.php:770
2419
  msgid "Paste block (name, code and settings)"
2420
  msgstr ""
2421
 
2422
+ #: settings.php:789
2423
  msgid "Rotation groups"
2424
  msgstr ""
2425
 
2426
+ #: settings.php:793
2427
  msgid "Remove option"
2428
  msgstr ""
2429
 
2430
+ #: settings.php:797
2431
  msgid "Add option"
2432
  msgstr ""
2433
 
2434
+ #: settings.php:812
2435
  msgid "Import code"
2436
  msgstr ""
2437
 
2438
+ #: settings.php:816
2439
  msgid "Generate code"
2440
  msgstr ""
2441
 
2442
+ #: settings.php:821
2443
  msgid "Banner"
2444
  msgstr ""
2445
 
2446
+ #: settings.php:832
2447
  msgid "Image"
2448
  msgstr ""
2449
 
2450
+ #: settings.php:840
2451
  msgid "Link"
2452
  msgstr ""
2453
 
2454
+ #: settings.php:851
2455
  msgid "Open link in a new tab"
2456
  msgstr ""
2457
 
2458
+ #: settings.php:852
2459
  msgid "Select Image"
2460
  msgstr ""
2461
 
2462
+ #: settings.php:853
2463
  msgid "Select Placeholder"
2464
  msgstr ""
2465
 
2466
+ #: settings.php:865
2467
  msgid "Comment"
2468
  msgstr ""
2469
 
2470
+ #: settings.php:874
2471
  msgctxt "AdSense"
2472
  msgid "Publisher ID"
2473
  msgstr ""
2474
 
2475
+ #: settings.php:883
2476
  msgctxt "AdSense"
2477
  msgid "Ad Slot ID"
2478
  msgstr ""
2479
 
2480
+ #: settings.php:892
2481
  msgid "Ad Type"
2482
  msgstr ""
2483
 
2484
+ #: settings.php:916
2485
  msgid "AMP Ad"
2486
  msgstr ""
2487
 
2488
+ #: settings.php:933
2489
  msgid "Show ad units from your AdSense account"
2490
  msgstr ""
2491
 
2492
+ #: settings.php:933
2493
  msgid "AdSense ad units"
2494
  msgstr ""
2495
 
2496
+ #: settings.php:950
2497
  msgctxt "AdSense"
2498
  msgid "Layout"
2499
  msgstr ""
2500
 
2501
+ #: settings.php:959
2502
  msgctxt "AdSense"
2503
  msgid "Layout Key"
2504
  msgstr ""
2505
 
2506
+ #: settings.php:969
2507
  msgid "Full width"
2508
  msgstr ""
2509
 
2510
+ #: settings.php:971
2511
  msgctxt "Full width"
2512
  msgid "Enabled"
2513
  msgstr ""
2514
 
2515
+ #: settings.php:972
2516
  msgctxt "Full width"
2517
  msgid "Disabled"
2518
  msgstr ""
2519
 
2520
+ #: settings.php:1053
2521
  msgid ""
2522
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2523
  "Cookie or Referer (domain)"
2524
  msgstr ""
2525
 
2526
+ #: settings.php:1053
2527
  msgid "Lists"
2528
  msgstr ""
2529
 
2530
+ #: settings.php:1054
2531
  msgid "Widget, Shortcode and PHP function call"
2532
  msgstr ""
2533
 
2534
+ #: settings.php:1054
2535
  msgid "Manual"
2536
  msgstr ""
2537
 
2538
+ #: settings.php:1055
2539
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2540
  msgstr ""
2541
 
2542
+ #: settings.php:1055
2543
  msgid "Devices"
2544
  msgstr ""
2545
 
2546
+ #: settings.php:1056
2547
  msgid ""
2548
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2549
  "feeds), Filter, Scheduling, General tag"
2550
  msgstr ""
2551
 
2552
+ #: settings.php:1056
2553
  msgid "Misc"
2554
  msgstr ""
2555
 
2556
+ #: settings.php:1057
2557
  msgid "Preview code and alignment"
2558
  msgstr ""
2559
 
2560
+ #: settings.php:1060 settings.php:2165
2561
  msgid ""
2562
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2563
  "editor is active before saving settings."
2564
  msgstr ""
2565
 
2566
+ #: settings.php:1073 settings.php:1074
2567
  msgid "Enable insertion on posts"
2568
  msgstr ""
2569
 
2570
+ #: settings.php:1074 settings.php:3311
2571
  msgid "Posts"
2572
  msgstr ""
2573
 
2574
+ #: settings.php:1078 settings.php:1079
2575
  msgid ""
2576
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2577
  "page or theme homepage (available positions may depend on hooks used by the "
2578
  "theme)"
2579
  msgstr ""
2580
 
2581
+ #: settings.php:1079 settings.php:3313
2582
  msgid "Homepage"
2583
  msgstr ""
2584
 
2585
+ #: settings.php:1083 settings.php:1084
2586
  msgid "Enable insertion on category blog pages (including sub-pages)"
2587
  msgstr ""
2588
 
2589
+ #: settings.php:1084 settings.php:3314
2590
  msgid "Category pages"
2591
  msgstr ""
2592
 
2593
+ #: settings.php:1094 settings.php:1095
2594
  msgid "Enable insertion on static pages"
2595
  msgstr ""
2596
 
2597
+ #: settings.php:1095 settings.php:3312
2598
  msgid "Static pages"
2599
  msgstr ""
2600
 
2601
+ #: settings.php:1099 settings.php:1100
2602
  msgid "Enable insertion on search blog pages"
2603
  msgstr ""
2604
 
2605
+ #: settings.php:1100 settings.php:3316
2606
  msgid "Search pages"
2607
  msgstr ""
2608
 
2609
+ #: settings.php:1104 settings.php:1105
2610
  msgid "Enable insertion on tag or archive blog pages"
2611
  msgstr ""
2612
 
2613
+ #: settings.php:1108
2614
  msgid "Toggle settings for default insertion and list of individual exceptions"
2615
  msgstr ""
2616
 
2617
+ #: settings.php:1120
2618
  msgid ""
2619
  "Enable individual post/page exceptions for insertion of this block. They can "
2620
  "be configured on the individual post/page editor page (in the settings below "
2621
  "the editor)."
2622
  msgstr ""
2623
 
2624
+ #: settings.php:1121
2625
  msgid ""
2626
  "Enable individual post/page exceptions for insertion of this block. When "
2627
  "enabled they can be configured on the individual post/page editor page (in "
2628
  "the settings below the editor)."
2629
  msgstr ""
2630
 
2631
+ #: settings.php:1121
2632
  msgid "Use exceptions for individual posts or pages to change insertion"
2633
  msgstr ""
2634
 
2635
  #. Translators: Enabled means...
2636
+ #: settings.php:1129
2637
  msgid ""
2638
  "means the insertion for this block is enabled by default and disabled for "
2639
  "exceptions."
2640
  msgstr ""
2641
 
2642
  #. Translators: Disabled means...
2643
+ #: settings.php:1130
2644
  msgid ""
2645
  "means the insertion for this block is disabled by default and enabled for "
2646
  "exceptions."
2647
  msgstr ""
2648
 
2649
+ #: settings.php:1131
2650
  msgid ""
2651
  "When individual post/page exceptions are enabled they can be configured on "
2652
  "the individual post/page editor page (in the settings below the editor)."
2653
  msgstr ""
2654
 
2655
+ #: settings.php:1139
2656
  msgid ""
2657
  "No exception for post or static page defined. Block will not be inserted."
2658
  msgstr ""
2659
 
2660
+ #: settings.php:1157
2661
  msgctxt "post"
2662
  msgid "Type"
2663
  msgstr ""
2664
 
2665
  #. translators: %d: block number
2666
+ #: settings.php:1159
2667
  msgid "Are you sure you want to clear all exceptions for block %d?"
2668
  msgstr ""
2669
 
2670
+ #: settings.php:1186 settings.php:1334 settings.php:1957
2671
  msgid "Insertion"
2672
  msgstr ""
2673
 
2674
+ #: settings.php:1224
2675
  msgid ""
2676
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2677
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
2681
  "negative number means counting from the opposite direction"
2682
  msgstr ""
2683
 
2684
+ #: settings.php:1225
2685
  msgid ""
2686
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2687
  "means every N images, empty means all images, 0 means random image, value "
2691
  "direction"
2692
  msgstr ""
2693
 
2694
+ #: settings.php:1238
2695
  msgid ""
2696
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2697
  "numbers, %N means every N excerpts, empty means all excerpts"
2698
  msgstr ""
2699
 
2700
+ #: settings.php:1239
2701
  msgid ""
2702
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2703
  "numbers, %N means every N posts, empty means all posts"
2704
  msgstr ""
2705
 
2706
+ #: settings.php:1240
2707
  msgid ""
2708
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
2709
  "numbers, %N means every N comments, empty means all comments"
2710
  msgstr ""
2711
 
2712
+ #: settings.php:1247
2713
  msgid "Toggle paragraph counting settings"
2714
  msgstr ""
2715
 
2716
+ #: settings.php:1248
2717
  msgid "Toggle paragraph clearance settings"
2718
  msgstr ""
2719
 
2720
+ #: settings.php:1251
2721
  msgid "Toggle insertion filter settings"
2722
  msgstr ""
2723
 
2724
+ #: settings.php:1269
2725
  msgid "Toggle insertion and alignment icons"
2726
  msgstr ""
2727
 
2728
+ #: settings.php:1283
2729
  msgid "Custom CSS code for the wrapping div"
2730
  msgstr ""
2731
 
2732
+ #: settings.php:1286 settings.php:1287 settings.php:1288 settings.php:1289
2733
+ #: settings.php:1290 settings.php:1291
2734
  msgid "CSS code for the wrapping div, click to edit"
2735
  msgstr ""
2736
 
2737
+ #: settings.php:1304
2738
  msgid "HTML element"
2739
  msgstr ""
2740
 
2741
+ #: settings.php:1317
2742
  msgid "HTML element selector or comma separated list of selectors"
2743
  msgstr ""
2744
 
2745
+ #: settings.php:1323 settings.php:2670
2746
  msgid "Action"
2747
  msgstr ""
2748
 
2749
+ #: settings.php:1335
2750
  msgid ""
2751
  "Client-side insertion uses JavaScript to insert block when the page loads. "
2752
  "Server-side insertion inserts block when the page is generated but needs "
2753
  "Output buffering enabled."
2754
  msgstr ""
2755
 
2756
+ #: settings.php:1345
2757
  msgid "JavaScript code position"
2758
  msgstr ""
2759
 
2760
+ #: settings.php:1346
2761
  msgid ""
2762
  "Page position where the JavaScript code for client-side insertion will be "
2763
  "inserted. Should be after the HTML element if not waiting for DOM ready."
2764
  msgstr ""
2765
 
2766
+ #: settings.php:1361
2767
  msgid "Count"
2768
  msgstr ""
2769
 
2770
+ #: settings.php:1367
2771
  msgid "paragraphs with tags"
2772
  msgstr ""
2773
 
2774
+ #: settings.php:1373
2775
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
2776
  msgstr ""
2777
 
2778
+ #: settings.php:1382
2779
  msgid "that have between"
2780
  msgstr ""
2781
 
2782
+ #: settings.php:1388
2783
  msgid "Minimum number of paragraph words, leave empty for no limit"
2784
  msgstr ""
2785
 
2786
+ #: settings.php:1397
2787
  msgid "Maximum number of paragraph words, leave empty for no limit"
2788
  msgstr ""
2789
 
2790
+ #: settings.php:1400
2791
  msgid "words"
2792
  msgstr ""
2793
 
2794
+ #: settings.php:1415 settings.php:1474 settings.php:1544 settings.php:1570
2795
  msgid "Comma separated texts"
2796
  msgstr ""
2797
 
2798
+ #: settings.php:1428
2799
  msgid ""
2800
  "Count also paragraphs inside these elements - defined on general plugin "
2801
  "settings page - tab [*] / tab General"
2802
  msgstr ""
2803
 
2804
  #. Translators: %s: HTML tags
2805
+ #: settings.php:1434
2806
  msgid "Count inside %s elements"
2807
  msgstr ""
2808
 
2809
  #. translators: inside [HTML tags] elements that contain
2810
+ #: settings.php:1446
2811
  msgid "inside"
2812
  msgstr ""
2813
 
2814
+ #: settings.php:1452
2815
  msgid "Comma separated HTML tag names of container elements"
2816
  msgstr ""
2817
 
2818
  #. translators: inside [HTML tags] elements that contain
2819
+ #: settings.php:1461
2820
  msgid "elements that"
2821
  msgstr ""
2822
 
2823
+ #: settings.php:1487 settings.php:2080
2824
  msgid "Post/Static page must have between"
2825
  msgstr ""
2826
 
2827
+ #: settings.php:1493
2828
  msgid "Minimum number of paragraphs, leave empty for no limit"
2829
  msgstr ""
2830
 
2831
+ #: settings.php:1502
2832
  msgid "Maximum number of paragraphs, leave empty for no limit"
2833
  msgstr ""
2834
 
2835
  #. Translators: Post/Static page must have between X and Y paragraphs
2836
+ #: settings.php:1505
2837
  msgid "paragraph"
2838
  msgid_plural "paragraphs"
2839
  msgstr[0] ""
2840
  msgstr[1] ""
2841
 
2842
+ #: settings.php:1513
2843
  msgid "Minimum number of words in paragraphs above"
2844
  msgstr ""
2845
 
2846
+ #: settings.php:1519
2847
  msgid ""
2848
  "Used only with automatic insertion After paragraph and empty paragraph "
2849
  "numbers"
2850
  msgstr ""
2851
 
2852
+ #: settings.php:1529 settings.php:1555
2853
  msgid "In"
2854
  msgstr ""
2855
 
2856
+ #: settings.php:1535
2857
  msgid "Number of paragraphs above to check, leave empty to disable checking"
2858
  msgstr ""
2859
 
2860
+ #: settings.php:1538
2861
  msgid "paragraphs above avoid"
2862
  msgstr ""
2863
 
2864
+ #: settings.php:1561
2865
  msgid "Number of paragraphs below to check, leave empty to disable checking"
2866
  msgstr ""
2867
 
2868
+ #: settings.php:1564
2869
  msgid "paragraphs below avoid"
2870
  msgstr ""
2871
 
2872
+ #: settings.php:1580
2873
  msgid "If text is found"
2874
  msgstr ""
2875
 
2876
+ #: settings.php:1587
2877
  msgid "check up to"
2878
  msgstr ""
2879
 
2880
+ #: settings.php:1595
2881
  msgctxt "check up to"
2882
  msgid "paragraphs"
2883
  msgstr ""
2884
 
2885
+ #: settings.php:1611
2886
  msgid "Categories"
2887
  msgstr ""
2888
 
2889
+ #: settings.php:1614
2890
  msgid "Toggle category editor"
2891
  msgstr ""
2892
 
2893
+ #: settings.php:1617
2894
  msgid "Comma separated category slugs"
2895
  msgstr ""
2896
 
2897
+ #: settings.php:1621
2898
  msgid "Blacklist categories"
2899
  msgstr ""
2900
 
2901
+ #: settings.php:1625
2902
  msgid "Whitelist categories"
2903
  msgstr ""
2904
 
2905
+ #: settings.php:1637
2906
  msgid "Tags"
2907
  msgstr ""
2908
 
2909
+ #: settings.php:1640
2910
  msgid "Toggle tag editor"
2911
  msgstr ""
2912
 
2913
+ #: settings.php:1643
2914
  msgid "Comma separated tag slugs"
2915
  msgstr ""
2916
 
2917
+ #: settings.php:1647
2918
  msgid "Blacklist tags"
2919
  msgstr ""
2920
 
2921
+ #: settings.php:1651
2922
  msgid "Whitelist tags"
2923
  msgstr ""
2924
 
2925
+ #: settings.php:1663
2926
  msgid "Taxonomies"
2927
  msgstr ""
2928
 
2929
+ #: settings.php:1666
2930
  msgid "Toggle taxonomy editor"
2931
  msgstr ""
2932
 
2933
+ #: settings.php:1669
2934
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
2935
  msgstr ""
2936
 
2937
+ #: settings.php:1673
2938
  msgid "Blacklist taxonomies"
2939
  msgstr ""
2940
 
2941
+ #: settings.php:1677
2942
  msgid "Whitelist taxonomies"
2943
  msgstr ""
2944
 
2945
+ #: settings.php:1689
2946
  msgid "Post IDs"
2947
  msgstr ""
2948
 
2949
+ #: settings.php:1692
2950
  msgid "Toggle post/page ID editor"
2951
  msgstr ""
2952
 
2953
+ #: settings.php:1695
2954
  msgid "Comma separated post/page IDs"
2955
  msgstr ""
2956
 
2957
+ #: settings.php:1699
2958
  msgid "Blacklist IDs"
2959
  msgstr ""
2960
 
2961
+ #: settings.php:1703
2962
  msgid "Whitelist IDs"
2963
  msgstr ""
2964
 
2965
+ #: settings.php:1715
2966
  msgid "Urls"
2967
  msgstr ""
2968
 
2969
+ #: settings.php:1718
2970
  msgid "Toggle url editor"
2971
  msgstr ""
2972
 
2973
+ #: settings.php:1721
2974
  msgid ""
2975
  "Comma separated urls (page addresses) starting with / after domain name (e."
2976
  "g. /permalink-url, use only when you need to taget a specific url not "
2978
  "start*. *url-pattern*, *url-end)"
2979
  msgstr ""
2980
 
2981
+ #: settings.php:1725
2982
  msgid "Blacklist urls"
2983
  msgstr ""
2984
 
2985
+ #: settings.php:1729
2986
  msgid "Whitelist urls"
2987
  msgstr ""
2988
 
2989
+ #: settings.php:1740
2990
  msgid "Url parameters"
2991
  msgstr ""
2992
 
2993
+ #: settings.php:1744
2994
  msgid "Toggle url parameter and cookie editor"
2995
  msgstr ""
2996
 
2997
+ #: settings.php:1747
2998
  msgid ""
2999
  "Comma separated url query parameters or cookies with optional values (use "
3000
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
3001
  msgstr ""
3002
 
3003
+ #: settings.php:1751
3004
  msgid "Blacklist url parameters"
3005
  msgstr ""
3006
 
3007
+ #: settings.php:1755
3008
  msgid "Whitelist url parameters"
3009
  msgstr ""
3010
 
3011
+ #: settings.php:1766
3012
  msgid "Referrers"
3013
  msgstr ""
3014
 
3015
+ #: settings.php:1769
3016
  msgid "Toggle referer editor"
3017
  msgstr ""
3018
 
3019
+ #: settings.php:1772
3020
  msgid ""
3021
  "Comma separated domains, use # for no referrer, you can also use partial "
3022
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3023
  msgstr ""
3024
 
3025
+ #: settings.php:1776
3026
  msgid "Blacklist referers"
3027
  msgstr ""
3028
 
3029
+ #: settings.php:1780
3030
  msgid "Whitelist referers"
3031
  msgstr ""
3032
 
3033
+ #: settings.php:1791
3034
+ msgid "Clients"
3035
+ msgstr ""
3036
+
3037
+ #: settings.php:1794
3038
+ msgid "Toggle client editor"
3039
+ msgstr ""
3040
+
3041
+ #: settings.php:1797
3042
+ msgid "Comma separated names (operating systems, browsers, devices)"
3043
+ msgstr ""
3044
+
3045
+ #: settings.php:1801
3046
+ msgid "Blacklist clients"
3047
+ msgstr ""
3048
+
3049
+ #: settings.php:1805
3050
+ msgid "Whitelist clients"
3051
+ msgstr ""
3052
+
3053
+ #: settings.php:1826
3054
  msgid "Enable widget for this block"
3055
  msgstr ""
3056
 
3057
+ #: settings.php:1838
3058
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3059
  msgstr ""
3060
 
3061
+ #: settings.php:1839 settings.php:4099
3062
  msgid "Shortcode"
3063
  msgstr ""
3064
 
3065
+ #: settings.php:1854
3066
  msgid ""
3067
  "Enable PHP function call to insert this block at any position in theme file. "
3068
  "If function is disabled for block it will return empty string."
3069
  msgstr ""
3070
 
3071
+ #: settings.php:1855
3072
  msgid "PHP function"
3073
  msgstr ""
3074
 
3075
+ #: settings.php:1870
3076
  msgid "Client-side device detection"
3077
  msgstr ""
3078
 
3079
+ #: settings.php:1871
3080
  msgid "Server-side device detection"
3081
  msgstr ""
3082
 
3083
+ #: settings.php:1878
3084
  msgid "Use client-side detection to"
3085
  msgstr ""
3086
 
3087
+ #: settings.php:1880
3088
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3089
  msgstr ""
3090
 
3091
  #. Translators: only on (the following devices): viewport names (devices)
3092
  #. listed
3093
+ #: settings.php:1885
3094
  msgid "only on"
3095
  msgstr ""
3096
 
3097
+ #: settings.php:1913
3098
  msgid "Device min width %s px"
3099
  msgstr ""
3100
 
3101
+ #: settings.php:1939
3102
  msgid "Use server-side detection to insert block only for"
3103
  msgstr ""
3104
 
3105
+ #: settings.php:1958
3106
  msgid "Filter"
3107
  msgstr ""
3108
 
3109
+ #: settings.php:1959
3110
  msgid "Word Count"
3111
  msgstr ""
3112
 
3113
+ #: settings.php:1960 settings.php:4089
3114
  msgid "Scheduling"
3115
  msgstr ""
3116
 
3117
+ #: settings.php:1961
3118
  msgid "Display"
3119
  msgstr ""
3120
 
3121
+ #: settings.php:1963 settings.php:2207
3122
  msgid "General"
3123
  msgstr ""
3124
 
3125
+ #: settings.php:1975
3126
  msgid "Old settings for AMP pages detected"
3127
  msgstr ""
3128
 
3129
+ #: settings.php:1975
3130
  msgid ""
3131
  "To insert different codes on normal and AMP pages separate them with "
3132
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3133
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3134
  msgstr ""
3135
 
3136
+ #: settings.php:1975
3137
  msgid "AMP pages"
3138
  msgstr ""
3139
 
3140
+ #: settings.php:1980
3141
  msgid "Enable insertion for Ajax requests"
3142
  msgstr ""
3143
 
3144
+ #: settings.php:1980
3145
  msgid "Ajax requests"
3146
  msgstr ""
3147
 
3148
+ #: settings.php:1985
3149
  msgid "Enable insertion in RSS feeds"
3150
  msgstr ""
3151
 
3152
+ #: settings.php:1985
3153
  msgid "RSS Feed"
3154
  msgstr ""
3155
 
3156
+ #: settings.php:1990
3157
  msgid "Enable insertion on page for Error 404: Page not found"
3158
  msgstr ""
3159
 
3160
+ #: settings.php:1990
3161
  msgid "Error 404 page"
3162
  msgstr ""
3163
 
3164
+ #: settings.php:2002
3165
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3166
  msgstr ""
3167
 
3168
+ #: settings.php:2003
3169
  msgid "insertions"
3170
  msgstr ""
3171
 
3172
+ #: settings.php:2005
3173
  msgid ""
3174
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3175
  "General)"
3176
  msgstr ""
3177
 
3178
+ #: settings.php:2008 settings.php:2376
3179
  msgid "Max blocks per page"
3180
  msgstr ""
3181
 
3182
+ #: settings.php:2020
3183
  msgid "Insert for"
3184
  msgstr ""
3185
 
3186
+ #: settings.php:2028
3187
  msgid ""
3188
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3189
  "currently active). Might speed up insertion on content pages when "
3190
  "the_content filter is called multiple times."
3191
  msgstr ""
3192
 
3193
+ #: settings.php:2031
3194
  msgid "Insert only in the loop"
3195
  msgstr ""
3196
 
3197
+ #: settings.php:2037
3198
  msgid ""
3199
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3200
  msgstr ""
3201
 
3202
+ #: settings.php:2037
3203
  msgid "Disable caching"
3204
  msgstr ""
3205
 
3206
+ #: settings.php:2049
3207
  msgid "Filter insertions"
3208
  msgstr ""
3209
 
3210
+ #: settings.php:2052
3211
  msgid ""
3212
  "Filter multiple insertions by specifying wanted insertions for this block - "
3213
  "single number, comma separated numbers or %N for every N insertions - empty "
3215
  "using only one insertion type."
3216
  msgstr ""
3217
 
3218
+ #: settings.php:2055
3219
  msgid "using"
3220
  msgstr ""
3221
 
3222
+ #: settings.php:2074
3223
  msgid "Checked means specified calls are unwanted"
3224
  msgstr ""
3225
 
3226
+ #: settings.php:2074
3227
  msgid "Invert filter"
3228
  msgstr ""
3229
 
3230
+ #: settings.php:2081
3231
  msgid "Minimum number of post/static page words, leave empty for no limit"
3232
  msgstr ""
3233
 
3234
+ #: settings.php:2083
3235
  msgid "Maximum number of post/static page words, leave empty for no limit"
3236
  msgstr ""
3237
 
3238
+ #: settings.php:2096
3239
  msgid "days after publishing"
3240
  msgstr ""
3241
 
3242
+ #: settings.php:2098
3243
  msgid "Not available"
3244
  msgstr ""
3245
 
3246
+ #: settings.php:2111 settings.php:2368
3247
  msgid "Ad label"
3248
  msgstr ""
3249
 
3250
+ #: settings.php:2131
3251
  msgid "General tag"
3252
  msgstr ""
3253
 
3254
+ #: settings.php:2135
3255
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3256
  msgstr ""
3257
 
3258
  #. translators: %s: HTML tags
3259
+ #: settings.php:2144
3260
  msgid ""
3261
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
3262
  "side device detection!"
3263
  msgstr ""
3264
 
3265
+ #: settings.php:2156
3266
  msgid "Settings"
3267
  msgstr ""
3268
 
3269
+ #: settings.php:2159
3270
  msgid "Settings timestamp"
3271
  msgstr ""
3272
 
3273
+ #: settings.php:2172
3274
  msgid "Are you sure you want to reset all settings?"
3275
  msgstr ""
3276
 
3277
+ #: settings.php:2172
3278
  msgid "Reset All Settings"
3279
  msgstr ""
3280
 
3281
+ #: settings.php:2208
3282
  msgid "Viewports"
3283
  msgstr ""
3284
 
3285
+ #: settings.php:2209
3286
  msgid "Hooks"
3287
  msgstr ""
3288
 
3289
+ #: settings.php:2210
3290
  msgid "Header"
3291
  msgstr ""
3292
 
3293
+ #: settings.php:2211 strings.php:30
3294
  msgid "Footer"
3295
  msgstr ""
3296
 
3297
+ #: settings.php:2216
3298
  msgid "Debugging"
3299
  msgstr ""
3300
 
3301
+ #: settings.php:2226
3302
  msgid "Plugin priority"
3303
  msgstr ""
3304
 
3305
+ #: settings.php:2234
3306
  msgid "Output buffering"
3307
  msgstr ""
3308
 
3309
+ #: settings.php:2237
3310
  msgid "Needed for position Above header but may not work with all themes"
3311
  msgstr ""
3312
 
3313
+ #: settings.php:2245
3314
  msgid "Syntax highlighting theme"
3315
  msgstr ""
3316
 
3317
+ #: settings.php:2252
3318
  msgctxt "no syntax highlighting themes"
3319
  msgid "None"
3320
  msgstr ""
3321
 
3322
+ #: settings.php:2253
3323
  msgid "No Syntax Highlighting"
3324
  msgstr ""
3325
 
3326
+ #: settings.php:2255
3327
  msgctxt "syntax highlighting themes"
3328
  msgid "Light"
3329
  msgstr ""
3330
 
3331
+ #: settings.php:2270
3332
  msgctxt "syntax highlighting themes"
3333
  msgid "Dark"
3334
  msgstr ""
3335
 
3336
+ #: settings.php:2296
3337
  msgid "Min. user role for ind. exceptions editing"
3338
  msgstr ""
3339
 
3340
+ #: settings.php:2306
3341
  msgid "Disable caching for logged in administrators"
3342
  msgstr ""
3343
 
3344
+ #: settings.php:2309
3345
  msgid ""
3346
  "Enabled means that logged in administrators will see non-cached (live) pages "
3347
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3348
  msgstr ""
3349
 
3350
+ #: settings.php:2317
3351
  msgid "Sticky widget mode"
3352
  msgstr ""
3353
 
3354
+ #: settings.php:2320
3355
  msgid ""
3356
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3357
  "mode works with most themes but may reload ads on page load."
3358
  msgstr ""
3359
 
3360
+ #: settings.php:2328
3361
  msgid "Sticky widget top margin"
3362
  msgstr ""
3363
 
3364
+ #: settings.php:2336
3365
  msgid "Dynamic blocks"
3366
  msgstr ""
3367
 
3368
+ #: settings.php:2349
3369
  msgid "Functions for paragraph counting"
3370
  msgstr ""
3371
 
3372
+ #: settings.php:2352
3373
  msgid ""
3374
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3375
  "functions if paragraphs are not counted properly on non-english pages."
3376
  msgstr ""
3377
 
3378
+ #: settings.php:2360
3379
  msgid "No paragraph counting inside"
3380
  msgstr ""
3381
 
3382
+ #: settings.php:2371
3383
  msgid "Label text or HTML code"
3384
  msgstr ""
3385
 
3386
+ #: settings.php:2379
3387
  msgid ""
3388
  "Maximum number of inserted blocks per page. You need to enable Max page "
3389
  "insertions (button Misc / tab Insertion) to count block for this limit."
3390
  msgstr ""
3391
 
3392
+ #: settings.php:2393
3393
  msgid "Plugin usage tracking"
3394
  msgstr ""
3395
 
3396
  #. translators: %s: Ad Inserter
3397
+ #: settings.php:2396
3398
  msgid ""
3399
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3400
  "Only information regarding the WordPress environment and %s usage is "
3401
  "recorded (once per month and on events like plugin activation/deactivation)."
3402
  msgstr ""
3403
 
3404
+ #: settings.php:2414
3405
  msgid "CSS class name for the wrapping div"
3406
  msgstr ""
3407
 
3408
+ #: settings.php:2414
3409
  msgid "Block class name"
3410
  msgstr ""
3411
 
3412
+ #: settings.php:2418
3413
  msgid "Include general plugin block class"
3414
  msgstr ""
3415
 
3416
+ #: settings.php:2418
3417
  msgid "Block class"
3418
  msgstr ""
3419
 
3420
+ #: settings.php:2423
3421
  msgid "Include block number class"
3422
  msgstr ""
3423
 
3424
+ #: settings.php:2423
3425
  msgid "Block number class"
3426
  msgstr ""
3427
 
3428
+ #: settings.php:2428
3429
  msgid ""
3430
  "Instead of alignment classes generate inline alignment styles for blocks"
3431
  msgstr ""
3432
 
3433
+ #: settings.php:2428
3434
  msgid "Inline styles"
3435
  msgstr ""
3436
 
3437
+ #: settings.php:2434
3438
  msgid "Preview of the block wrapping code"
3439
  msgstr ""
3440
 
3441
+ #: settings.php:2435
3442
  msgid "Wrapping div"
3443
  msgstr ""
3444
 
3445
+ #: settings.php:2436 settings.php:2876
3446
  msgid "BLOCK CODE"
3447
  msgstr ""
3448
 
3449
+ #: settings.php:2444
3450
  msgid "Viewport Settings used for client-side device detection"
3451
  msgstr ""
3452
 
3453
  #. Translators: %d: viewport number
3454
+ #: settings.php:2452
3455
  msgid "Viewport %d name"
3456
  msgstr ""
3457
 
3458
+ #: settings.php:2455
3459
  msgid "min width"
3460
  msgstr ""
3461
 
3462
+ #: settings.php:2466
3463
  msgid "Custom Hooks"
3464
  msgstr ""
3465
 
3466
+ #: settings.php:2478 settings.php:2481
3467
  msgid "Enable hook"
3468
  msgstr ""
3469
 
3470
  #. translators: %d: hook number
3471
+ #: settings.php:2481
3472
  msgid "Hook %d name"
3473
  msgstr ""
3474
 
3475
+ #: settings.php:2484
3476
  msgid "Hook name for automatic insertion selection"
3477
  msgstr ""
3478
 
3479
+ #: settings.php:2487
3480
  msgid "action"
3481
  msgstr ""
3482
 
3483
+ #: settings.php:2490
3484
  msgid "Action name as used in the do_action () function"
3485
  msgstr ""
3486
 
3487
+ #: settings.php:2493
3488
  msgid "priority"
3489
  msgstr ""
3490
 
3491
+ #: settings.php:2496
3492
  msgid "Priority for the hook (default is 10)"
3493
  msgstr ""
3494
 
3495
+ #: settings.php:2517
3496
  msgid "Enable insertion of this code into HTML page header"
3497
  msgstr ""
3498
 
3499
+ #: settings.php:2521 settings.php:2588 settings.php:2770
3500
  msgid "Process PHP code"
3501
  msgstr ""
3502
 
3503
+ #: settings.php:2525
3504
  msgid "HTML Page Header Code"
3505
  msgstr ""
3506
 
3507
+ #: settings.php:2533
3508
  msgid "Code in the %s section of the HTML page"
3509
  msgstr ""
3510
 
3511
+ #: settings.php:2534
3512
  msgctxt "code in the header"
3513
  msgid "NOT ENABLED"
3514
  msgstr ""
3515
 
3516
+ #: settings.php:2551 settings.php:2619
3517
  msgid "Use server-side detection to insert code only for"
3518
  msgstr ""
3519
 
3520
+ #: settings.php:2566
3521
  msgid ""
3522
  "Enable insertion of this code into HTML page header on page for Error 404: "
3523
  "Page not found"
3524
  msgstr ""
3525
 
3526
+ #: settings.php:2566 settings.php:2634
3527
  msgid "Insert on Error 404 page"
3528
  msgstr ""
3529
 
3530
+ #: settings.php:2584
3531
  msgid "Enable insertion of this code into HTML page footer"
3532
  msgstr ""
3533
 
3534
+ #: settings.php:2592
3535
  msgid "HTML Page Footer Code"
3536
  msgstr ""
3537
 
3538
  #. translators: %s: HTML tags
3539
+ #: settings.php:2600
3540
  msgid "Code before the %s tag of the the HTML page"
3541
  msgstr ""
3542
 
3543
+ #: settings.php:2601
3544
  msgctxt "code in the footer"
3545
  msgid "NOT ENABLED"
3546
  msgstr ""
3547
 
3548
+ #: settings.php:2634
3549
  msgid ""
3550
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3551
  "Page not found"
3552
  msgstr ""
3553
 
3554
+ #: settings.php:2650
3555
  msgid "Code for ad blocking detection inserted. Click for details."
3556
  msgstr ""
3557
 
3558
+ #: settings.php:2655
3559
  msgid "Enable detection of ad blocking"
3560
  msgstr ""
3561
 
3562
+ #: settings.php:2673
3563
  msgid "Global action when ad blocking is detected"
3564
  msgstr ""
3565
 
3566
+ #: settings.php:2679
3567
  msgid "No action for"
3568
  msgstr ""
3569
 
3570
+ #: settings.php:2680
3571
  msgid "Exceptions for global action when ad blocking is detected."
3572
  msgstr ""
3573
 
3574
+ #: settings.php:2690
3575
  msgid "Delay Action"
3576
  msgstr ""
3577
 
3578
+ #: settings.php:2693
3579
  msgid ""
3580
  "Number of page views to delay action when ad blocking is detected. Leave "
3581
  "empty for no delay (action fires on first page view). Sets cookie."
3582
  msgstr ""
3583
 
3584
+ #: settings.php:2693
3585
  msgctxt "Delay Action for x "
3586
  msgid "page views"
3587
  msgstr ""
3588
 
3589
+ #: settings.php:2698
3590
  msgid "No Action Period"
3591
  msgstr ""
3592
 
3593
+ #: settings.php:2701
3594
  msgid ""
3595
  "Number of days to supress action when ad blocking is detected. Leave empty "
3596
  "for no no-action period (action fires always after defined page view delay). "
3597
  "Sets cookie."
3598
  msgstr ""
3599
 
3600
+ #: settings.php:2701
3601
  msgctxt "no action period"
3602
  msgid "days"
3603
  msgstr ""
3604
 
3605
+ #: settings.php:2706
3606
  msgid "Custom Selectors"
3607
  msgstr ""
3608
 
3609
+ #: settings.php:2709
3610
  msgid ""
3611
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3612
  "blocking detection. Invisible element or element with zero height means ad "
3613
  "blocking is present."
3614
  msgstr ""
3615
 
3616
+ #: settings.php:2721
3617
  msgid "Redirection Page"
3618
  msgstr ""
3619
 
3620
+ #: settings.php:2733
3621
  msgid "Custom Url"
3622
  msgstr ""
3623
 
3624
+ #: settings.php:2738
3625
  msgid ""
3626
  "Static page for redirection when ad blocking is detected. For other pages "
3627
  "select Custom url and set it below."
3628
  msgstr ""
3629
 
3630
+ #: settings.php:2747
3631
  msgid "Custom Redirection Url"
3632
  msgstr ""
3633
 
3634
+ #: settings.php:2759
3635
  msgid "Message HTML code"
3636
  msgstr ""
3637
 
3638
+ #: settings.php:2772
3639
  msgid "Preview message when ad blocking is detected"
3640
  msgstr ""
3641
 
3642
+ #: settings.php:2801
3643
  msgid "Prevent visitors from closing the warning message"
3644
  msgstr ""
3645
 
3646
+ #: settings.php:2801
3647
  msgid "Undismissible Message"
3648
  msgstr ""
3649
 
3650
+ #: settings.php:2807
3651
  msgid "Not undismissible for"
3652
  msgstr ""
3653
 
3654
+ #: settings.php:2808
3655
  msgid "Users which can close the warning message."
3656
  msgstr ""
3657
 
3658
+ #: settings.php:2822
3659
  msgid ""
3660
  "Force showing admin toolbar for administrators when viewing site. Enable "
3661
  "this option when you are logged in as admin and you don't see admin toolbar."
3662
  msgstr ""
3663
 
3664
+ #: settings.php:2830
3665
  msgid "Disable header code (Header tab)"
3666
  msgstr ""
3667
 
3668
+ #: settings.php:2834
3669
  msgid "Disable footer code (Footer tab)"
3670
  msgstr ""
3671
 
3672
  #. translators: %s: Ad Inserter
3673
+ #: settings.php:2838
3674
  msgid "Disable %s JavaScript code"
3675
  msgstr ""
3676
 
3677
  #. translators: %s: Ad Inserter
3678
+ #: settings.php:2842
3679
  msgid "Disable %s CSS code"
3680
  msgstr ""
3681
 
3682
+ #: settings.php:2846
3683
  msgid ""
3684
  "Disable PHP code processing (in all blocks including header and footer code)"
3685
  msgstr ""
3686
 
3687
+ #: settings.php:2850
3688
  msgid "Disable insertion of all blocks"
3689
  msgstr ""
3690
 
3691
+ #: settings.php:2854
3692
  msgid "Disable insertions"
3693
  msgstr ""
3694
 
3695
  #. translators: %s: Ad Inserter
3696
+ #: settings.php:2866
3697
  msgid "%s CSS CODE"
3698
  msgstr ""
3699
 
3700
+ #: settings.php:2869
3701
  msgid "HEADER CODE"
3702
  msgstr ""
3703
 
3704
  #. translators: %s: PHP tags
3705
+ #: settings.php:2875
3706
  msgid "BLOCK PHP CODE"
3707
  msgstr ""
3708
 
3709
  #. translators: %s: Ad Inserter
3710
+ #: settings.php:2881
3711
  msgid "%s JS CODE"
3712
  msgstr ""
3713
 
3714
+ #: settings.php:2884
3715
  msgid "FOOTER CODE"
3716
  msgstr ""
3717
 
3718
+ #: settings.php:2893
3719
  msgid "Force showing admin toolbar when viewing site"
3720
  msgstr ""
3721
 
3722
+ #: settings.php:2900
3723
  msgid "Enable debugging functions in admin toolbar"
3724
  msgstr ""
3725
 
3726
+ #: settings.php:2902
3727
  msgid "Debugging functions in admin toolbar"
3728
  msgstr ""
3729
 
3730
+ #: settings.php:2909
3731
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3732
  msgstr ""
3733
 
3734
+ #: settings.php:2911
3735
  msgid "Debugging functions on mobile screens"
3736
  msgstr ""
3737
 
3738
+ #: settings.php:2918
3739
  msgid ""
3740
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3741
  "tags, processing) by url parameters for non-logged in users. Enable this "
3744
  "administrators debugging is always enabled."
3745
  msgstr ""
3746
 
3747
+ #: settings.php:2920
3748
  msgid "Remote debugging"
3749
  msgstr ""
3750
 
3751
+ #: settings.php:2927
3752
  msgid ""
3753
  "Disable translation to see original texts for the settings and messages in "
3754
  "English"
3755
  msgstr ""
3756
 
3757
+ #: settings.php:2929
3758
  msgid "Disable translation"
3759
  msgstr ""
3760
 
3761
+ #: settings.php:3299
3762
  msgid "Available positions for current theme"
3763
  msgstr ""
3764
 
3765
+ #: settings.php:3300
3766
  msgid "Error checking pages"
3767
  msgstr ""
3768
 
3769
+ #: settings.php:3303
3770
  msgid "Toggle theme checker for available positions for automatic insertion"
3771
  msgstr ""
3772
 
3773
+ #: settings.php:3303
3774
  msgctxt "Button"
3775
  msgid "Check"
3776
  msgstr ""
3777
 
3778
+ #: settings.php:3310
3779
  msgid "Position"
3780
  msgstr ""
3781
 
3782
+ #: settings.php:3315
3783
  msgid "Archive pages"
3784
  msgstr ""
3785
 
3786
+ #: settings.php:3374
3787
  msgid ""
3788
  "Position not available because output buffering (tab [*]) is not enabled"
3789
  msgstr ""
3790
 
3791
+ #: settings.php:3377 strings.php:226
3792
  msgid "Position not checked yet"
3793
  msgstr ""
3794
 
3795
+ #: settings.php:3413
3796
  msgid "Toggle active/all blocks"
3797
  msgstr ""
3798
 
3799
+ #: settings.php:3417 strings.php:213
3800
  msgid "Rearrange block order"
3801
  msgstr ""
3802
 
3803
+ #: settings.php:3422
3804
  msgid "Save new block order"
3805
  msgstr ""
3806
 
3807
+ #: settings.php:3448
3808
  msgid "Toggle active/all ad units"
3809
  msgstr ""
3810
 
3811
+ #: settings.php:3452
3812
  msgid "Reload AdSense ad units"
3813
  msgstr ""
3814
 
3815
+ #: settings.php:3456
3816
  msgid "Clear authorization to access AdSense account"
3817
  msgstr ""
3818
 
3819
+ #: settings.php:3460 settings.php:4256 settings.php:4323 strings.php:221
3820
  msgid "Google AdSense Homepage"
3821
  msgstr ""
3822
 
3823
+ #: settings.php:3476
3824
  msgid "Switch to physical ads.txt file"
3825
  msgstr ""
3826
 
3827
+ #: settings.php:3477
3828
  msgid "Switch to virtual ads.txt file"
3829
  msgstr ""
3830
 
3831
  #. translators: %s: ads.txt
3832
+ #: settings.php:3487
3833
  msgid "Open %s"
3834
  msgstr ""
3835
 
3836
+ #: settings.php:3495
3837
  msgid "Reload ads.txt file"
3838
  msgstr ""
3839
 
3840
+ #: settings.php:3499 settings.php:4383
3841
  msgid "Save"
3842
  msgstr ""
3843
 
3844
  #. translators: %s: Ad Inserter
3845
+ #: settings.php:3674
3846
  msgid "ads.txt file: %s virtual ads.txt file"
3847
  msgstr ""
3848
 
3849
+ #: settings.php:3679 settings.php:3699 strings.php:205
3850
  msgid "Warning"
3851
  msgstr ""
3852
 
3853
  #. translators: %s: Ad Inserter
3854
+ #: settings.php:3679
3855
  msgid "%s virtual file ads.txt not found"
3856
  msgstr ""
3857
 
3858
+ #: settings.php:3687
3859
  msgid "IMPORTANT"
3860
  msgstr ""
3861
 
3862
+ #: settings.php:3687
3863
  msgid "ads.txt file must be placed on the root domain"
3864
  msgstr ""
3865
 
3866
+ #: settings.php:3692
3867
  msgid "ads.txt file"
3868
  msgstr ""
3869
 
3870
+ #: settings.php:3699
3871
  msgid "file %s not found"
3872
  msgstr ""
3873
 
3874
+ #: settings.php:3709
3875
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3876
  msgstr ""
3877
 
3878
  #. translators: %s: Ad Inserter
3879
+ #: settings.php:3715
3880
  msgid "%s virtual ads.txt file"
3881
  msgstr ""
3882
 
3883
+ #: settings.php:3737
3884
  msgid "Advertising system"
3885
  msgstr ""
3886
 
3887
+ #: settings.php:3738
3888
  msgid "Account ID"
3889
  msgstr ""
3890
 
3891
+ #: settings.php:3740
3892
  msgid "Certification authority ID"
3893
  msgstr ""
3894
 
3895
+ #: settings.php:3755
3896
  msgid "Account ID found in block and present in ads.txt"
3897
  msgstr ""
3898
 
3899
+ #: settings.php:3759
3900
  msgid "Account ID found in block but not present in ads.txt"
3901
  msgstr ""
3902
 
3903
+ #: settings.php:4046
3904
  msgid "Preview block"
3905
  msgstr ""
3906
 
3907
+ #: settings.php:4055
3908
  msgid "Insertion disabled"
3909
  msgstr ""
3910
 
3911
+ #: settings.php:4085
3912
  msgid "Automatic insertion"
3913
  msgstr ""
3914
 
3915
  #. translators: %s HTML tags
3916
+ #: settings.php:4086 settings.php:5016
3917
  msgid "PHP code processing"
3918
  msgstr ""
3919
 
3920
+ #: settings.php:4088
3921
  msgid "Device detection"
3922
  msgstr ""
3923
 
3924
+ #: settings.php:4101
3925
  msgid "Widget positions"
3926
  msgstr ""
3927
 
3928
+ #: settings.php:4167
3929
  msgid "Ad unit"
3930
  msgstr ""
3931
 
3932
+ #: settings.php:4169
3933
  msgid "Slot ID"
3934
  msgstr ""
3935
 
3936
+ #: settings.php:4195
3937
  msgid "Copy AdSense code"
3938
  msgstr ""
3939
 
3940
+ #: settings.php:4198
3941
  msgid "Preview AdSense ad"
3942
  msgstr ""
3943
 
3944
+ #: settings.php:4201
3945
  msgid "Get AdSense code"
3946
  msgstr ""
3947
 
3948
  #. translators: %s: HTML tags
3949
+ #: settings.php:4233
3950
  msgid ""
3951
  "Please %s clear authorization %s with the button %s above and once again "
3952
  "authorize access to your AdSense account."
3953
  msgstr ""
3954
 
3955
+ #: settings.php:4252
3956
  msgid "AdSense Integration"
3957
  msgstr ""
3958
 
3959
+ #: settings.php:4254
3960
  msgid "AdSense Integration - Step 2"
3961
  msgstr ""
3962
 
3963
  #. translators: %s: HTML tags
3964
+ #: settings.php:4260
3965
  msgid ""
3966
  "Authorize %s to access your AdSense account. Click on the %s Get "
3967
  "Authorization Code %s button to open a new window where you can allow "
3970
  msgstr ""
3971
 
3972
  #. translators: %s: HTML tags
3973
+ #: settings.php:4267
3974
  msgid ""
3975
  "If you get error, can't access ad units or would like to use own Google API "
3976
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
3978
  msgstr ""
3979
 
3980
  #. translators: %s: HTML tags
3981
+ #: settings.php:4269
3982
  msgid ""
3983
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3984
  "Authorization Code %s button to open a new window where you can allow "
3987
  msgstr ""
3988
 
3989
  #. translators: %s: HTML tags
3990
+ #: settings.php:4276
3991
  msgid ""
3992
  "If you get error %s invalid client %s click on the button %s Clear and "
3993
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3994
  msgstr ""
3995
 
3996
+ #: settings.php:4287
3997
  msgid "Get Authorization Code"
3998
  msgstr ""
3999
 
4000
+ #: settings.php:4290
4001
  msgid "Enter Authorization Code"
4002
  msgstr ""
4003
 
4004
+ #: settings.php:4300
4005
  msgid "Use own API IDs"
4006
  msgstr ""
4007
 
4008
+ #: settings.php:4302
4009
  msgid "Clear and return to Step 1"
4010
  msgstr ""
4011
 
4012
+ #: settings.php:4306
4013
  msgid "Authorize"
4014
  msgstr ""
4015
 
4016
+ #: settings.php:4322
4017
  msgid "AdSense Integration - Step 1"
4018
  msgstr ""
4019
 
4020
  #. translators: %s: Ad Inserter
4021
+ #: settings.php:4326
4022
  msgid ""
4023
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4024
  "To do this you need to authorize %s to access your AdSense account. The "
4027
  msgstr ""
4028
 
4029
  #. translators: %s: HTML tags
4030
+ #: settings.php:4335
4031
  msgid "Go to %s Google APIs and Services console %s"
4032
  msgstr ""
4033
 
4034
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4035
+ #: settings.php:4336
4036
  msgid ""
4037
  "Create %1$s project - if the project and IDs are already created click on "
4038
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
4039
  msgstr ""
4040
 
4041
  #. translators: %s: HTML tags
4042
+ #: settings.php:4337
4043
  msgid ""
4044
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4045
  "create a new project"
4046
  msgstr ""
4047
 
4048
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4049
+ #: settings.php:4338
4050
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4051
  msgstr ""
4052
 
4053
  #. translators: %s: HTML tags
4054
+ #: settings.php:4339
4055
  msgid ""
4056
  "Click on project selection, wait for the project to be created and then and "
4057
  "select %s as the current project"
4058
  msgstr ""
4059
 
4060
  #. translators: %s: HTML tags
4061
+ #: settings.php:4340
4062
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4063
  msgstr ""
4064
 
4065
  #. translators: %s: HTML tags
4066
+ #: settings.php:4341
4067
  msgid "Search for adsense and enable %s"
4068
  msgstr ""
4069
 
4070
  #. translators: %s: HTML tags
4071
+ #: settings.php:4342
4072
  msgid "Click on %s CREATE CREDENTIALS %s"
4073
  msgstr ""
4074
 
4075
  #. translators: %s: HTML tags
4076
+ #: settings.php:4343
4077
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4078
  msgstr ""
4079
 
4080
  #. translators: %s: HTML tags
4081
+ #: settings.php:4344
4082
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4083
  msgstr ""
4084
 
4085
  #. translators: %s: HTML tags
4086
+ #: settings.php:4345
4087
  msgid "Click on %s What credentials do I need? %s"
4088
  msgstr ""
4089
 
4090
  #. translators: %s: HTML tags
4091
+ #: settings.php:4346
4092
  msgid ""
4093
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4094
  "Ad Inserter client %s"
4095
  msgstr ""
4096
 
4097
  #. translators: %s: HTML tags
4098
+ #: settings.php:4347
4099
  msgid ""
4100
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4101
  "enter %s"
4102
  msgstr ""
4103
 
4104
  #. translators: %s: HTML tags
4105
+ #: settings.php:4348
4106
  msgid "Click on %s Continue %s"
4107
  msgstr ""
4108
 
4109
  #. translators: %s: HTML tags
4110
+ #: settings.php:4349
4111
  msgid "Click on %s Done %s"
4112
  msgstr ""
4113
 
4114
  #. translators: %s: HTML tags
4115
+ #: settings.php:4350
4116
  msgid ""
4117
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4118
  "secret %s"
4119
  msgstr ""
4120
 
4121
+ #: settings.php:4351
4122
  msgid "Copy them to the appropriate fields below"
4123
  msgstr ""
4124
 
4125
+ #: settings.php:4357
4126
  msgid "Client ID"
4127
  msgstr ""
4128
 
4129
+ #: settings.php:4360
4130
  msgid "Enter Client ID"
4131
  msgstr ""
4132
 
4133
+ #: settings.php:4365
4134
  msgid "Client secret"
4135
  msgstr ""
4136
 
4137
+ #: settings.php:4368
4138
  msgid "Enter Client secret"
4139
  msgstr ""
4140
 
4141
+ #: settings.php:4378
4142
  msgid "Use default API IDs"
4143
  msgstr ""
4144
 
4145
+ #: settings.php:4531
4146
  msgid "All posts"
4147
  msgstr ""
4148
 
4149
+ #: settings.php:4532
4150
  msgid "All static pages"
4151
  msgstr ""
4152
 
4153
+ #: settings.php:4683 settings.php:4696 settings.php:4709 settings.php:4724
4154
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4155
  msgstr ""
4156
 
4157
+ #: settings.php:4688 settings.php:4701 settings.php:4714 settings.php:4729
4158
+ #: settings.php:4909 settings.php:4913 settings.php:4931 settings.php:4935
4159
+ #: settings.php:4943 settings.php:4946 settings.php:4952 settings.php:4964
4160
  msgid "Looking for AdSense alternative?"
4161
  msgstr ""
4162
 
4163
+ #: settings.php:4740
4164
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4165
  msgstr ""
4166
 
4167
+ #: settings.php:4745 settings.php:4911 settings.php:4915 settings.php:4923
4168
+ #: settings.php:4949
4169
  msgid "Use Infolinks ads with Adsense to earn more"
4170
  msgstr ""
4171
 
4172
+ #: settings.php:4764 settings.php:4802
4173
  msgid "Support plugin development"
4174
  msgstr ""
4175
 
4176
+ #: settings.php:4765 settings.php:4803
4177
  msgid ""
4178
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4179
  "reviewing the plugin on WordPres"
4180
  msgstr ""
4181
 
4182
+ #: settings.php:4765
4183
  msgctxt "Review ad Inserter"
4184
  msgid "Review"
4185
  msgstr ""
4186
 
4187
+ #: settings.php:4766
4188
  msgid ""
4189
  "Support free Ad Inserter development. If you are making money with Ad "
4190
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4191
  "you!"
4192
  msgstr ""
4193
 
4194
+ #: settings.php:4766
4195
  msgid "Donate"
4196
  msgstr ""
4197
 
4198
+ #: settings.php:4773 settings.php:4818
4199
  msgid "Average rating of the plugin - Thank you!"
4200
  msgstr ""
4201
 
4202
  #. translators: %s: Ad Inserter, HTML tags
4203
+ #: settings.php:4784
4204
  msgid ""
4205
  "You've been using %s for a while now, and I hope you're happy with it. "
4206
  "Positive %s reviews %s are a great way to show your appreciation for my "
4209
  "your website. %s Thank you!"
4210
  msgstr ""
4211
 
4212
+ #: settings.php:4803
4213
  msgid "Review"
4214
  msgstr ""
4215
 
4216
+ #: settings.php:4807
4217
  msgid "Ad Inserter on Twitter"
4218
  msgstr ""
4219
 
4220
+ #: settings.php:4808
4221
  msgid "Ad Inserter on Facebook"
4222
  msgstr ""
4223
 
4224
+ #: settings.php:4811
4225
  msgid "Follow Ad Inserter"
4226
  msgstr ""
4227
 
4228
  #. translators: %s: HTML tags
4229
+ #: settings.php:4838
4230
  msgid ""
4231
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4232
  "and %s Common Settings %s pages"
4233
  msgstr ""
4234
 
4235
  #. translators: %s: HTML tags
4236
+ #: settings.php:4850
4237
  msgid ""
4238
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4239
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
4241
  msgstr ""
4242
 
4243
  #. translators: %s: HTML tags
4244
+ #: settings.php:4871
4245
  msgid ""
4246
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4247
  "purchase you refer to us"
4248
  msgstr ""
4249
 
4250
  #. translators: %s: HTML tags
4251
+ #: settings.php:4878
4252
  msgid ""
4253
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4254
  "diagnose and fix the problem."
4255
  msgstr ""
4256
 
4257
  #. translators: %s: HTML tags
4258
+ #: settings.php:4882
4259
  msgid ""
4260
  "If you need any kind of help or support, please do not hesitate to open a "
4261
  "thread on the %s support forum. %s"
4262
  msgstr ""
4263
 
4264
+ #: settings.php:4927 settings.php:4968
4265
  msgid "A/B testing - Track ad impressions and clicks"
4266
  msgstr ""
4267
 
4268
+ #: settings.php:4960 settings.php:4972
4269
  msgid "Code preview with visual CSS editor"
4270
  msgstr ""
4271
 
4272
+ #: settings.php:4980
4273
  msgid "Looking for Pro Ad Management plugin?"
4274
  msgstr ""
4275
 
4276
+ #: settings.php:4981
4277
  msgid "To Optimally Monetize your WordPress website?"
4278
  msgstr ""
4279
 
4280
  #. translators: %s HTML tags
4281
+ #: settings.php:4984
4282
  msgid "%s AdSense Integration %s"
4283
  msgstr ""
4284
 
4285
  #. translators: %s HTML tags
4286
+ #: settings.php:4985
4287
  msgid "Syntax highlighting %s editor %s"
4288
  msgstr ""
4289
 
4290
  #. translators: %s HTML tags
4291
+ #: settings.php:4986
4292
  msgid "%s Code preview %s with visual CSS editor"
4293
  msgstr ""
4294
 
4295
  #. translators: %s HTML tags
4296
+ #: settings.php:4987
4297
  msgid "Simple user interface - all settings on a single page"
4298
  msgstr ""
4299
 
4300
  #. translators: %s HTML tags
4301
+ #: settings.php:4988
4302
  msgid ""
4303
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4304
  "image / excerpt"
4305
  msgstr ""
4306
 
4307
  #. translators: %s HTML tags
4308
+ #: settings.php:4989
4309
  msgid "%s Automatic insertion %s between posts on blog pages"
4310
  msgstr ""
4311
 
4312
  #. translators: %s HTML tags
4313
+ #: settings.php:4990
4314
  msgid "%s Automatic insertion %s before, between and after comments"
4315
  msgstr ""
4316
 
4317
  #. translators: %s HTML tags
4318
+ #: settings.php:4991
4319
  msgid "%s Automatic insertion %s after %s or before %s tag"
4320
  msgstr ""
4321
 
4322
  #. translators: %s HTML tags
4323
+ #: settings.php:4992
4324
  msgid "Automatic insertion at %s custom hook positions %s"
4325
  msgstr ""
4326
 
4327
  #. translators: %s HTML tags
4328
+ #: settings.php:4993
4329
  msgid ""
4330
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4331
  "selectors)"
4332
  msgstr ""
4333
 
4334
  #. translators: %s HTML tags
4335
+ #: settings.php:4994
4336
  msgid "%s Insertion exceptions %s for individual posts and pages"
4337
  msgstr ""
4338
 
4339
  #. translators: %s HTML tags
4340
+ #: settings.php:4995
4341
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4342
  msgstr ""
4343
 
4344
  #. translators: %s HTML tags
4345
+ #: settings.php:4996
4346
  msgid ""
4347
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4348
  "scrolls)"
4349
  msgstr ""
4350
 
4351
  #. translators: %s HTML tags
4352
+ #: settings.php:4997
4353
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4354
  msgstr ""
4355
 
4356
  #. translators: %s HTML tags
4357
+ #: settings.php:4998
4358
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4359
  msgstr ""
4360
 
4361
  #. translators: %s HTML tags
4362
+ #: settings.php:4999
4363
  msgid ""
4364
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4365
  "visible)"
4366
  msgstr ""
4367
 
4368
  #. translators: %s HTML tags
4369
+ #: settings.php:5000
4370
  msgid ""
4371
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4372
  msgstr ""
4373
 
4374
  #. translators: %s HTML tags
4375
+ #: settings.php:5001
4376
  msgid "Block %s alignment and style %s customizations"
4377
  msgstr ""
4378
 
4379
  #. translators: %s HTML tags
4380
+ #: settings.php:5002
4381
  msgid ""
4382
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4383
  "TOS)"
4384
  msgstr ""
4385
 
4386
  #. translators: %s HTML tags
4387
+ #: settings.php:5003
4388
  msgid ""
4389
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4390
  "feeds"
4391
  msgstr ""
4392
 
4393
  #. translators: %s HTML tags
4394
+ #: settings.php:5004
4395
  msgid "%s Ad rotation %s (works also with caching)"
4396
  msgstr ""
4397
 
4398
  #. translators: %s HTML tags
4399
+ #: settings.php:5005
4400
  msgid "Create, edit and check %s ads.txt %s file"
4401
  msgstr ""
4402
 
4403
  #. translators: %s HTML tags
4404
+ #: settings.php:5006
4405
  msgid ""
4406
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4407
  "AdSense)"
4408
  msgstr ""
4409
 
4410
  #. translators: %s HTML tags
4411
+ #: settings.php:5007
4412
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4413
  msgstr ""
4414
 
4415
  #. translators: %s HTML tags
4416
+ #: settings.php:5008
4417
  msgid "%s Public web reports %s for clients, export to PDF"
4418
  msgstr ""
4419
 
4420
  #. translators: %s HTML tags
4421
+ #: settings.php:5009
4422
  msgid "Support for %s A/B testing %s"
4423
  msgstr ""
4424
 
4425
  #. translators: %s HTML tags
4426
+ #: settings.php:5010
4427
  msgid "Frequency capping - %s limit impressions or clicks %s"
4428
  msgstr ""
4429
 
4430
  #. translators: %s HTML tags
4431
+ #: settings.php:5011
4432
  msgid "Click fraud %s protection %s"
4433
  msgstr ""
4434
 
4435
  #. translators: %s HTML tags
4436
+ #: settings.php:5012
4437
  msgid "Support for %s lazy loading %s"
4438
  msgstr ""
4439
 
4440
  #. translators: %s HTML tags
4441
+ #: settings.php:5013
4442
  msgid "Support for ads on %s AMP pages %s"
4443
  msgstr ""
4444
 
4445
  #. translators: %s HTML tags
4446
+ #: settings.php:5014
4447
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4448
  msgstr ""
4449
 
4450
  #. translators: %s HTML tags
4451
+ #: settings.php:5015
4452
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4453
  msgstr ""
4454
 
4455
  #. translators: %s HTML tags
4456
+ #: settings.php:5017
4457
  msgid "%s Banner %s code generator"
4458
  msgstr ""
4459
 
4460
  #. translators: %s HTML tags
4461
+ #: settings.php:5018
4462
  msgid "Support for %s header and footer %s code"
4463
  msgstr ""
4464
 
4465
  #. translators: %s HTML tags
4466
+ #: settings.php:5019
4467
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4468
  msgstr ""
4469
 
4470
  #. translators: %s HTML tags
4471
+ #: settings.php:5020
4472
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4473
  msgstr ""
4474
 
4475
  #. translators: %s HTML tags
4476
+ #: settings.php:5021
4477
  msgid "Client-side %s mobile device detection %s (works with caching)"
4478
  msgstr ""
4479
 
4480
  #. translators: %s HTML tags
4481
+ #: settings.php:5022
4482
  msgid ""
4483
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4484
  "protection"
4485
  msgstr ""
4486
 
4487
  #. translators: %s HTML tags
4488
+ #: settings.php:5023
4489
  msgid "%s Ad blocking statistics %s"
4490
  msgstr ""
4491
 
4492
  #. translators: %s HTML tags
4493
+ #: settings.php:5024
4494
  msgid ""
4495
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4496
  "referers"
4497
  msgstr ""
4498
 
4499
  #. translators: %s HTML tags
4500
+ #: settings.php:5025
4501
  msgid ""
4502
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4503
  msgstr ""
4504
 
4505
  #. translators: %s HTML tags
4506
+ #: settings.php:5026
4507
  msgid "%s Multisite options %s to limit settings on the sites"
4508
  msgstr ""
4509
 
4510
  #. translators: %s HTML tags
4511
+ #: settings.php:5027
4512
  msgid "%s Import/Export %s block or plugin settings"
4513
  msgstr ""
4514
 
4515
  #. translators: %s HTML tags
4516
+ #: settings.php:5028
4517
  msgid "%s Insertion scheduling %s with fallback option"
4518
  msgstr ""
4519
 
4520
  #. translators: %s HTML tags
4521
+ #: settings.php:5029
4522
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4523
  msgstr ""
4524
 
4525
  #. translators: %s HTML tags
4526
+ #: settings.php:5030
4527
  msgid "Simple troubleshooting with many %s debugging functions %s"
4528
  msgstr ""
4529
 
4530
  #. translators: %s HTML tags
4531
+ #: settings.php:5031
4532
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4533
  msgstr ""
4534
 
4535
  #. translators: %s HTML tags
4536
+ #: settings.php:5032
4537
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4538
  msgstr ""
4539
 
4540
  #. translators: %s HTML tags
4541
+ #: settings.php:5033
4542
  msgid ""
4543
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4544
  msgstr ""
4545
 
4546
  #. translators: %s HTML tags
4547
+ #: settings.php:5034
4548
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4549
  msgstr ""
4550
 
4551
  #. translators: %s HTML tags
4552
+ #: settings.php:5035
4553
  msgid "No ads on the settings page"
4554
  msgstr ""
4555
 
4556
  #. translators: %s HTML tags
4557
+ #: settings.php:5036
4558
  msgid "Premium support"
4559
  msgstr ""
4560
 
4561
  #. translators: %s HTML tags
4562
+ #: settings.php:5039
4563
  msgid ""
4564
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4565
  "website with many advertising features to automatically insert adverts on "
4574
  msgstr ""
4575
 
4576
  #. translators: %s HTML tags
4577
+ #: settings.php:5052
4578
  msgid "Looking for %s Pro Ad Management plugin? %s"
4579
  msgstr ""
4580
 
4581
  #. translators: %s HTML tags
4582
+ #: settings.php:5057
4583
  msgid "Ads between posts"
4584
  msgstr ""
4585
 
4586
  #. translators: %s HTML tags
4587
+ #: settings.php:5058
4588
  msgid "Ads between comments"
4589
  msgstr ""
4590
 
4591
  #. translators: %s HTML tags
4592
+ #: settings.php:5059
4593
  msgid "Support via email"
4594
  msgstr ""
4595
 
4596
  #. translators: %s HTML tags
4597
+ #: settings.php:5065
4598
  msgid "%s Sticky positions %s"
4599
  msgstr ""
4600
 
4601
  #. translators: %s HTML tags
4602
+ #: settings.php:5066
4603
  msgid "%s Limit insertions %s"
4604
  msgstr ""
4605
 
4606
  #. translators: %s HTML tags
4607
+ #: settings.php:5067
4608
  msgid "%s Clearance %s options"
4609
  msgstr ""
4610
 
4611
  #. translators: %s HTML tags
4612
+ #: settings.php:5073
4613
  msgid "Ad rotation"
4614
  msgstr ""
4615
 
4616
  #. translators: %s HTML tags
4617
+ #: settings.php:5074
4618
  msgid "%s A/B testing %s"
4619
  msgstr ""
4620
 
4621
  #. translators: %s HTML tags
4622
+ #: settings.php:5075
4623
  msgid "%s Ad tracking %s"
4624
  msgstr ""
4625
 
4626
  #. translators: %s HTML tags
4627
+ #: settings.php:5081
4628
  msgid "Support for %s AMP pages %s"
4629
  msgstr ""
4630
 
4631
  #. translators: %s HTML tags
4632
+ #: settings.php:5082
4633
  msgid "%s Ad blocking detection %s"
4634
  msgstr ""
4635
 
4636
  #. translators: %s HTML tags
4637
+ #: settings.php:5083
4638
  msgid "%s Mobile device detection %s"
4639
  msgstr ""
4640
 
4641
  #. translators: %s HTML tags
4642
+ #: settings.php:5090
4643
  msgid "64 code blocks"
4644
  msgstr ""
4645
 
4646
  #. translators: %s HTML tags
4647
+ #: settings.php:5091
4648
  msgid "%s GEO targeting %s"
4649
  msgstr ""
4650
 
4651
  #. translators: %s HTML tags
4652
+ #: settings.php:5092
4653
  msgid "%s Scheduling %s"
4654
  msgstr ""
4655
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection,
6
  Requires at least: 4.6
7
  Tested up to: 5.2
8
  Requires PHP: 5.6
9
- Stable tag: 2.5.3
10
  License: GPLv3
11
 
12
  Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
@@ -315,6 +315,14 @@ If you are not happy to reveal this information and you have opted in, simply di
315
 
316
  == Changelog ==
317
 
 
 
 
 
 
 
 
 
318
  = 2.5.3 =
319
  - Added support for warning when Ad Inserter is disabled by AMPforWP Plugin Manager
320
  - Added support for block shortcode attributes
@@ -485,6 +493,14 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
485
 
486
  == Upgrade Notice ==
487
 
 
 
 
 
 
 
 
 
488
  = 2.5.3 =
489
  Added support for warning when Ad Inserter is disabled by AMPforWP Plugin Manager;
490
  Added support for block shortcode attributes;
6
  Requires at least: 4.6
7
  Tested up to: 5.2
8
  Requires PHP: 5.6
9
+ Stable tag: 2.5.5
10
  License: GPLv3
11
 
12
  Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
315
 
316
  == Changelog ==
317
 
318
+ = 2.5.5 =
319
+ - Added support for client list (black/whitelist operating systems, browsers, device names)
320
+ - Fix for replaced tags with default value {name:default-value}
321
+ - Few minor bug fixes, cosmetic changes and code improvements
322
+
323
+ = 2.5.4 =
324
+ - Minor bug fix regarding update checks (Pro only)
325
+
326
  = 2.5.3 =
327
  - Added support for warning when Ad Inserter is disabled by AMPforWP Plugin Manager
328
  - Added support for block shortcode attributes
493
 
494
  == Upgrade Notice ==
495
 
496
+ = 2.5.5 =
497
+ Added support for client list (black/whitelist operating systems, browsers, device names);
498
+ Fix for replaced tags with default value {name:default-value};
499
+ Few minor bug fixes, cosmetic changes and code improvements
500
+
501
+ = 2.5.4 =
502
+ Minor bug fix regarding update checks (Pro only)
503
+
504
  = 2.5.3 =
505
  Added support for warning when Ad Inserter is disabled by AMPforWP Plugin Manager;
506
  Added support for block shortcode attributes;
settings.php CHANGED
@@ -500,6 +500,7 @@ function generate_settings_form (){
500
  $url_list = $obj->get_ad_url_list();
501
  $url_parameter_list = $obj->get_url_parameter_list();
502
  $domain_list = $obj->get_ad_domain_list();
 
503
  if (function_exists ('ai_lists')) $lists = ai_lists ($obj); else $lists = false;
504
  $show_lists =
505
  $cat_list != '' ||
@@ -523,6 +524,9 @@ function generate_settings_form (){
523
  $domain_list != '' ||
524
  $obj->get_ad_domain_list_type() == AI_WHITE_LIST ||
525
 
 
 
 
526
  $lists;
527
  if ($show_lists) $lists_style = "font-weight: bold; color: #66f;"; else $lists_style = "";
528
 
@@ -1422,11 +1426,12 @@ function generate_settings_form (){
1422
  <div class="max-input" style="margin: 8px 0 0 0;">
1423
  <?php
1424
  $title = __('Count also paragraphs inside these elements - defined on general plugin settings page - tab [*] / tab General', 'ad-inserter');
 
1425
  ?>
1426
- <span style="display: table-cell; width: 1px; white-space: nowrap; padding-right: 8px;">
1427
  <input type="hidden" name="<?php echo AI_OPTION_COUNT_INSIDE_BLOCKQUOTE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
1428
  <input id="ignore_blockquote-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_COUNT_INSIDE_BLOCKQUOTE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" title="<?php echo $title; ?>" default="<?php echo $default->get_count_inside_blockquote(); ?>" <?php if ($obj->get_count_inside_blockquote()==AI_ENABLED) echo 'checked '; ?> />
1429
- <label for="ignore_blockquote-<?php echo $block; ?>" style="vertical-align: top;" title="<?php echo $title; ?>"><?php /* Translators: %s: HTML tags */ echo sprintf (__('Count inside %s elements', 'ad-inserter'), '<strong><pre style="display: inline;"> '.get_no_paragraph_counting_inside ().' </pre></strong>'); ?></label>
1430
  </span>
1431
  </div>
1432
 
@@ -1781,6 +1786,32 @@ function generate_settings_form (){
1781
  </td>
1782
  </tr>
1783
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1784
  <?php if (function_exists ('ai_list_rows')) ai_list_rows ($block, $default, $obj); ?>
1785
  </tbody>
1786
  </table>
@@ -4501,6 +4532,23 @@ function generate_list_options ($options) {
4501
  echo " <option value='pages'>pages (", __('All static pages', 'ad-inserter'), ")</option>\n";
4502
  break;
4503
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4504
  default:
4505
  if (function_exists ('ai_generate_list_options')) ai_generate_list_options ($options);
4506
  break;
500
  $url_list = $obj->get_ad_url_list();
501
  $url_parameter_list = $obj->get_url_parameter_list();
502
  $domain_list = $obj->get_ad_domain_list();
503
+ $client_list = $obj->get_client_list();
504
  if (function_exists ('ai_lists')) $lists = ai_lists ($obj); else $lists = false;
505
  $show_lists =
506
  $cat_list != '' ||
524
  $domain_list != '' ||
525
  $obj->get_ad_domain_list_type() == AI_WHITE_LIST ||
526
 
527
+ $client_list != '' ||
528
+ $obj->get_client_list_type() == AI_WHITE_LIST ||
529
+
530
  $lists;
531
  if ($show_lists) $lists_style = "font-weight: bold; color: #66f;"; else $lists_style = "";
532
 
1426
  <div class="max-input" style="margin: 8px 0 0 0;">
1427
  <?php
1428
  $title = __('Count also paragraphs inside these elements - defined on general plugin settings page - tab [*] / tab General', 'ad-inserter');
1429
+ $elements = get_no_paragraph_counting_inside ();
1430
  ?>
1431
+ <span style="display: <?php echo $elements == '' ? 'none' : 'table-cell'; ?>; width: 1px; white-space: nowrap; padding-right: 8px;">
1432
  <input type="hidden" name="<?php echo AI_OPTION_COUNT_INSIDE_BLOCKQUOTE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
1433
  <input id="ignore_blockquote-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_COUNT_INSIDE_BLOCKQUOTE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" title="<?php echo $title; ?>" default="<?php echo $default->get_count_inside_blockquote(); ?>" <?php if ($obj->get_count_inside_blockquote()==AI_ENABLED) echo 'checked '; ?> />
1434
+ <label for="ignore_blockquote-<?php echo $block; ?>" style="vertical-align: top;" title="<?php echo $title; ?>"><?php /* Translators: %s: HTML tags */ echo sprintf (__('Count inside %s elements', 'ad-inserter'), '<strong><pre style="display: inline;"> '.$elements.' </pre></strong>'); ?></label>
1435
  </span>
1436
  </div>
1437
 
1786
  </td>
1787
  </tr>
1788
 
1789
+ <tr>
1790
+ <td>
1791
+ <?php _e ('Clients', 'ad-inserter'); ?>
1792
+ </td>
1793
+ <td>
1794
+ <button id="client-button-<?php echo $block; ?>" type="button" class='ai-button' style="display: none; outline: transparent; float: right; margin-top: 1px; width: 15px; height: 15px;" title="<?php _e ('Toggle client editor', 'ad-inserter'); ?>"></button>
1795
+ </td>
1796
+ <td style="padding-right: 7px;">
1797
+ <input id="client-list-<?php echo $block; ?>" style="width: 100%;" title="<?php _e ('Comma separated names (operating systems, browsers, devices)', 'ad-inserter'); ?>" type="text" name="<?php echo AI_OPTION_CLIENT_LIST, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_client_list(); ?>" value="<?php echo $client_list; ?>" size="54" maxlength="500"/>
1798
+ </td>
1799
+ <td style="padding-right: 7px;">
1800
+ <input type="radio" name="<?php echo AI_OPTION_CLIENT_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="client-blacklist-<?php echo $block; ?>" default="<?php echo $default->get_client_list_type() == AI_BLACK_LIST; ?>" value="<?php echo AI_BLACK_LIST; ?>" <?php if ($obj->get_client_list_type() == AI_BLACK_LIST) echo 'checked '; ?> />
1801
+ <label for="client-blacklist-<?php echo $block; ?>" title="<?php _e ('Blacklist clients', 'ad-inserter'); ?>"><?php echo AI_TEXT_BLACK_LIST; ?></label>
1802
+ </td>
1803
+ <td>
1804
+ <input type="radio" name="<?php echo AI_OPTION_CLIENT_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="client-whitelist-<?php echo $block; ?>" default="<?php echo $default->get_client_list_type() == AI_WHITE_LIST; ?>" value="<?php echo AI_WHITE_LIST; ?>" <?php if ($obj->get_client_list_type() == AI_WHITE_LIST) echo 'checked '; ?> />
1805
+ <label for="client-whitelist-<?php echo $block; ?>" title="<?php _e ('Whitelist clients', 'ad-inserter'); ?>"><?php echo AI_TEXT_WHITE_LIST; ?></label>
1806
+ </td>
1807
+ </tr>
1808
+ <tr>
1809
+ <td colspan="5">
1810
+ <select id="client-select-<?php echo $block; ?>" multiple="multiple" style="display: none;">
1811
+ </select>
1812
+ </td>
1813
+ </tr>
1814
+
1815
  <?php if (function_exists ('ai_list_rows')) ai_list_rows ($block, $default, $obj); ?>
1816
  </tbody>
1817
  </table>
4532
  echo " <option value='pages'>pages (", __('All static pages', 'ad-inserter'), ")</option>\n";
4533
  break;
4534
 
4535
+ case 'client':
4536
+ require_once AD_INSERTER_PLUGIN_DIR.'includes/agent/Agent.php';
4537
+ $agent = new Agent();
4538
+
4539
+ $clients = array_merge (
4540
+ array_keys ($agent->getOperatingSystems ()),
4541
+ array_keys ($agent->getBrowsers ()),
4542
+ array_keys ($agent->getPhoneDevices ()),
4543
+ array_keys ($agent->getTabletDevices ()),
4544
+ array_keys ($agent->getUtilities ())
4545
+ );
4546
+
4547
+ foreach ($clients as $client) {
4548
+ echo " <option value='$client'>$client</option>\n";
4549
+ }
4550
+ break;
4551
+
4552
  default:
4553
  if (function_exists ('ai_generate_list_options')) ai_generate_list_options ($options);
4554
  break;