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

Version Description

  • Added support to disable PHP processing by PHP constant
  • Added support to repeat COUNT options
  • Added support for offset for %n paragraph number (%n@o)
  • Added support for options to skip insertion for first and last paragraphs
  • Added support for hook filter 'ai_block_insertion_check'
  • Added support for background ads (Pro only)
  • 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.6.8
Comparing to
See all releases

Code changes from version 2.6.7 to 2.6.8

ad-inserter.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
- Version: 2.6.7
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,15 @@ Domain Path: /languages
15
 
16
  Change Log
17
 
 
 
 
 
 
 
 
 
 
18
  Ad Inserter 2.6.7 - 2020-04-07
19
  - Added support for various shortcodes for post categories
20
  - Added support for various shortcodes for post tags
@@ -487,6 +496,7 @@ function ai_toolbar_menu_items () {
487
  ($paragraph_block ['text'] != '' ? ($paragraph_block ['text_type'] == AI_DO_NOT_CONTAIN ? ' !has ' : ' has ').' ['.htmlentities ($paragraph_block ['text']).']' : '').
488
  ($paragraph_block ['inside_elemets'] != '' ? ($paragraph_block ['inside_type'] == AI_COUNT_ONLY ? ' insEL' : ' !insEL ').' ['.$paragraph_block ['inside_elemets'].']' : '').
489
  ($paragraph_block ['contain_text'] != '' ? ($paragraph_block ['contain_type'] == AI_CONTAIN ? ' elHAS' : ' !elHAS ').' ['.htmlentities ($paragraph_block ['contain_text']).']' : ''),
 
490
  // 'href' => set_url_parameter (AI_URL_DEBUG_POSITIONS, $paragraph_block ['blocks'][0]),
491
  'href' => set_url_parameter (AI_URL_DEBUG_POSITIONS, $debug_block_active ? '' : $paragraph_block ['blocks'][0]),
492
  );
@@ -668,7 +678,7 @@ function ai_block_insertion_status ($block, $ai_last_check) {
668
  case AI_CHECK_COUNTRY: $status .= "COUNTRY ". $obj->get_ad_country_list (true); break;
669
 
670
  case AI_CHECK_SCHEDULING: $status .= "SCHEDULING"; break;
671
- case AI_CHECK_CODE: $status .= "CODE NOT EMPTY"; break;
672
  case AI_CHECK_LOGGED_IN_USER: $status .= "LOGGED-IN USER"; break;
673
  case AI_CHECK_NOT_LOGGED_IN_USER: $status .= "NOT LOGGED-IN USER"; break;
674
  case AI_CHECK_ADMINISTRATOR: $status .= "ADMINISTRATOR"; break;
@@ -689,7 +699,7 @@ function ai_block_insertion_status ($block, $ai_last_check) {
689
  case AI_CHECK_LIMIT_IMPRESSIONS_PER_TIME_PERIOD: $status .= "LIMIT IMPRESSIONS PER TIME PERIOD"; break;
690
  case AI_CHECK_MAX_CLICKS: $status .= "MAX CLICKS"; break;
691
  case AI_CHECK_LIMIT_CLICKS_PER_TIME_PERIOD: $status .= "LIMIT CLICKS PER TIME PERIOD"; break;
692
- case AI_CHECK_INSERTION_NOT_DISABLED: $status .= "INSERTION NOT DISABLED"; break;
693
  case AI_CHECK_PARAGRAPH_TAGS: $status .= "PARAGRAPH TAGS"; break;
694
  case AI_CHECK_PARAGRAPHS_WITH_TAGS: $status .= "PARAGRAPHS WITH TAGS"; break;
695
  case AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE: $status .= "PARAGRAPHS AFTER NO COUNTING INSIDE"; break;
@@ -711,6 +721,8 @@ function ai_block_insertion_status ($block, $ai_last_check) {
711
  case AI_CHECK_ENABLED_SHORTCODE: $status .= "SHORTCODE ENABLED"; break;
712
  case AI_CHECK_ENABLED_WIDGET: $status .= "WIDGET ENABLED"; break;
713
 
 
 
714
  case AI_CHECK_NONE: $status = "BLOCK $block"; break;
715
  default: $status .= "?"; break;
716
  }
@@ -907,8 +919,26 @@ function ai_buffering_end () {
907
  ai_log ("BUFFER PROCESSING");
908
  }
909
 
910
- $head = $matches [0];
911
- $body = $matches [2];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
912
 
913
  if (isset ($ai_db_options_extract [HTML_ELEMENT_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) && class_exists ('DOMDocument')) {
914
 
@@ -1227,7 +1257,7 @@ function ai_buffering_end () {
1227
 
1228
  $head = ai_process_head_codes ($head);
1229
 
1230
- echo $head, $matches [1];
1231
 
1232
  if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_POSITIONS) != 0) {
1233
  $class = AI_DEBUG_STATUS_CLASS.' status-ok';
@@ -3571,7 +3601,7 @@ function ai_amp_footer_hook () {
3571
  }
3572
 
3573
  function ai_write_debug_info ($write_processing_log = false) {
3574
- global $block_object, $ai_last_time, $ai_total_plugin_time, $ai_total_php_time, $ai_processing_log, $ai_db_options_extract, $ai_wp_data, $ai_db_options, $block_insertion_log, $ai_custom_hooks, $version_string, $subversion_string;
3575
 
3576
  ob_start ();
3577
 
@@ -3599,8 +3629,9 @@ function ai_write_debug_info ($write_processing_log = false) {
3599
  }
3600
  echo "GENERATED (WP time): ", date ("Y-m-d H:i:s", time() + get_option ('gmt_offset') * 3600), "\n";
3601
  echo "GENERATED (Server time): ", date ("Y-m-d H:i:s", time()), "\n";
3602
- echo "PLUGIN CODE PROCESSING: ", number_format (($ai_total_plugin_time - $ai_total_php_time) * 1000, 2, '.' , ''), " ms\n";
3603
- echo "USER CODE PROCESSING: ", number_format ($ai_total_php_time * 1000, 2, '.' , ''), " ms\n";
 
3604
  echo "TOTAL PROCESSING TIME: ", number_format ($ai_total_plugin_time * 1000, 2, '.' , ''), " ms\n";
3605
  // echo "MEMORY USED: ", number_format (memory_get_usage (true) / 1024 / 1024, 2, '.' , ''), " MB\n";
3606
  // echo "PEAK MEMORY USED: ", number_format (memory_get_peak_usage (true) / 1024 / 1024, 2, '.' , ''), " MB\n";
@@ -3782,7 +3813,9 @@ function ai_write_debug_info ($write_processing_log = false) {
3782
  else echo "?\n";
3783
  }
3784
  echo 'CLIENT-SIDE DETECTION: ', $ai_wp_data [AI_CLIENT_SIDE_DETECTION] ? 'USED' : "NOT USED", "\n";
3785
- echo 'CLIENT-SIDE INSERTION: ', $ai_wp_data [AI_CLIENT_SIDE_INSERTION] ? 'USED' : "NOT USED", "\n";
 
 
3786
  if (function_exists ('ai_debug_features')) ai_debug_features ();
3787
 
3788
  $enabled_custom_hooks = array ();
@@ -3894,6 +3927,10 @@ function ai_write_debug_info ($write_processing_log = false) {
3894
  echo 'ADB DELAY ACTION: ', get_delay_action (), "\n";
3895
  echo 'ADB NO ACTION PERIOD: ', get_no_action_period (), "\n";
3896
  echo 'ADB SELECTORS: ', get_adb_selectors (true), "\n";
 
 
 
 
3897
  $redirection_page = get_redirection_page ();
3898
  echo 'ADB REDIRECTION PAGE: ', $redirection_page != 0 ? get_the_title ($redirection_page) . ' (' . get_permalink ($redirection_page) . ')' : 'Custom Url', "\n";
3899
  echo 'ADB REDIRECTION URL: ', get_custom_redirection_url (), "\n";
@@ -5184,6 +5221,7 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
5184
  }
5185
  elseif ($option == AI_OPTION_DOMAIN_LIST ||
5186
  $option == 'NO_PARAGRAPH_COUNTING_INSIDE' ||
 
5187
  $option == AI_OPTION_PARAGRAPH_TAGS ||
5188
  $option == AI_OPTION_COUNT_INSIDE_ELEMENTS ||
5189
  $option == AI_OPTION_IP_ADDRESS_LIST ||
@@ -5212,6 +5250,8 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
5212
  $option == AI_OPTION_PARAGRAPH_NUMBER ||
5213
  $option == AI_OPTION_MIN_PARAGRAPHS ||
5214
  $option == AI_OPTION_MAX_PARAGRAPHS ||
 
 
5215
  $option == AI_OPTION_MIN_WORDS_ABOVE ||
5216
  $option == AI_OPTION_AVOID_PARAGRAPHS_ABOVE ||
5217
  $option == AI_OPTION_AVOID_PARAGRAPHS_BELOW ||
@@ -5249,6 +5289,7 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
5249
  $option == AI_OPTION_MAX_CLICKS ||
5250
  $option == AI_OPTION_LIMIT_CLICKS_PER_TIME_PERIOD ||
5251
  $option == AI_OPTION_LIMIT_CLICKS_TIME_PERIOD ||
 
5252
 
5253
  $option == 'CLICK_FRAUD_PROTECTION_TIME' ||
5254
  $option == 'ADB_DELAY_ACTION' ||
@@ -5381,6 +5422,12 @@ function ai_ajax_backend () {
5381
  if (isset ($_POST ['custom_css'])) $preview_parameters ['custom_css'] = base64_decode ($_POST ['custom_css']);
5382
  if (isset ($_POST ['php'])) $preview_parameters ['php'] = $_POST ['php'];
5383
  if (isset ($_POST ['close'])) $preview_parameters ['close'] = $_POST ['close'];
 
 
 
 
 
 
5384
  if (isset ($_POST ['label'])) $preview_parameters ['label'] = $_POST ['label'];
5385
  if (isset ($_POST ['read_only'])) $preview_parameters ['read_only'] = $_POST ['read_only'];
5386
  if (isset ($_POST ['iframe'])) $preview_parameters ['iframe'] = $_POST ['iframe'];
@@ -6185,7 +6232,7 @@ a.ai-debug-center {text-align: center; cursor: default; font-size: 10px; text-de
6185
  .ai-debug-block.ai-debug-adsense.ai-adsense-auto-ads {position: absolute; top: -20px; width: 100%;}
6186
 
6187
  .ai-debug-block.ai-debug-ajax {border-color: #ffd600; outline-color: #ffd600;}
6188
- .ai-debug-bar.ai-debug-ajax {background: #ffd600;}
6189
  .ai-debug-bar.ai-debug-ajax kbd {color: #000;}
6190
 
6191
  .ai-debug-block.ai-debug-iframe {border-color: #ff9e38; outline-color: #ff9e38; line-height: 1px;}
@@ -6803,7 +6850,7 @@ function ai_settings () {
6803
 
6804
 
6805
  function ai_adinserter ($block_parameter = '', $ignore = '', &$block) {
6806
- global $block_object, $ad_inserter_globals, $ai_wp_data, $ai_last_check;
6807
 
6808
  $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
6809
 
@@ -6880,6 +6927,12 @@ function ai_adinserter ($block_parameter = '', $ignore = '', &$block) {
6880
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) return "";
6881
  }
6882
 
 
 
 
 
 
 
6883
  // Last check before insertion
6884
  if (!$obj->check_and_increment_block_counter ()) return "";
6885
 
@@ -6922,7 +6975,7 @@ function adinserter ($block = '', $ignore = '') {
6922
 
6923
 
6924
  function ai_content_hook ($content = '') {
6925
- global $block_object, $ad_inserter_globals, $ai_db_options_extract, $ai_wp_data, $ai_last_check, $ai_total_plugin_time, $special_element_tags;
6926
 
6927
  if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_ADMIN) return $content;
6928
 
@@ -7010,8 +7063,6 @@ function ai_content_hook ($content = '') {
7010
  if ($obj->get_disable_insertion () || get_disable_block_insertions ()) continue;
7011
 
7012
  // Last check before counter check before insertion
7013
- // $ai_last_check = AI_CHECK_CODE;
7014
- // if ($obj->ai_getCode () == '') continue;
7015
  if ($obj->empty_code ()) continue;
7016
 
7017
  $max_page_blocks_enabled = $obj->get_max_page_blocks_enabled ();
@@ -7020,8 +7071,11 @@ function ai_content_hook ($content = '') {
7020
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) continue;
7021
  }
7022
 
7023
- // Last check before insertion
7024
- if (!$obj->check_block_counter ()) continue;
 
 
 
7025
 
7026
  $automatic_insertion = $obj->get_automatic_insertion();
7027
 
@@ -7042,7 +7096,8 @@ function ai_content_hook ($content = '') {
7042
  $content = $obj->after_image ($content);
7043
  }
7044
  elseif ($automatic_insertion == AI_AUTOMATIC_INSERTION_BEFORE_CONTENT) {
7045
- $obj->increment_block_counter ();
 
7046
 
7047
  // Increment page block counter
7048
  if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
@@ -7054,7 +7109,8 @@ function ai_content_hook ($content = '') {
7054
  }
7055
  }
7056
  elseif ($automatic_insertion == AI_AUTOMATIC_INSERTION_AFTER_CONTENT) {
7057
- $obj->increment_block_counter ();
 
7058
 
7059
  // Increment page block counter
7060
  if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
@@ -7169,7 +7225,7 @@ function ai_content_hook ($content = '') {
7169
 
7170
  // Process Before/After Excerpt postion
7171
  function ai_excerpt_hook ($content = '') {
7172
- global $ad_inserter_globals, $block_object, $ai_db_options_extract, $ai_wp_data, $ai_last_check, $ai_total_plugin_time;
7173
 
7174
  if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_ADMIN) return;
7175
 
@@ -7225,6 +7281,12 @@ function ai_excerpt_hook ($content = '') {
7225
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) continue;
7226
  }
7227
 
 
 
 
 
 
 
7228
  // Last check before insertion
7229
  if (!$obj->check_and_increment_block_counter ()) continue;
7230
 
@@ -7319,7 +7381,7 @@ function ai_wp_list_comments_args ($args) {
7319
 
7320
  // Process comments counter + Before Comments postion
7321
  function ai_comment_callback ($comment, $args, $depth) {
7322
- global $block_object, $ad_inserter_globals, $ai_db_options_extract, $ai_wp_data, $ai_last_check, $ai_total_plugin_time, $ai_walker;
7323
 
7324
  if ($depth == 1) {
7325
  if (!isset ($ad_inserter_globals [AI_COMMENT_COUNTER_NAME])) {
@@ -7393,6 +7455,12 @@ function ai_comment_callback ($comment, $args, $depth) {
7393
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) continue;
7394
  }
7395
 
 
 
 
 
 
 
7396
  // Last check before insertion
7397
  if (!$obj->check_and_increment_block_counter ()) continue;
7398
 
@@ -7429,7 +7497,7 @@ function ai_comment_callback ($comment, $args, $depth) {
7429
 
7430
  // Process Between Comments postion
7431
  function ai_comment_end_callback ($comment, $args, $depth) {
7432
- global $block_object, $ad_inserter_globals, $ai_db_options_extract, $ai_wp_data, $ai_last_check, $ai_total_plugin_time;
7433
 
7434
  if ($args ['style'] == 'div') $tag = 'div'; else $tag = 'li';
7435
 
@@ -7513,6 +7581,12 @@ function ai_comment_end_callback ($comment, $args, $depth) {
7513
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) continue;
7514
  }
7515
 
 
 
 
 
 
 
7516
  // Last check before insertion
7517
  if (!$obj->check_and_increment_block_counter ()) continue;
7518
 
@@ -7588,6 +7662,12 @@ function ai_comment_end_callback ($comment, $args, $depth) {
7588
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) continue;
7589
  }
7590
 
 
 
 
 
 
 
7591
  // Last check before insertion
7592
  if (!$obj->check_and_increment_block_counter ()) continue;
7593
 
@@ -7618,7 +7698,7 @@ function ai_comment_end_callback ($comment, $args, $depth) {
7618
  }
7619
 
7620
  function ai_custom_hook ($action, $insertion_type, $name, $translated_name = '', $hook_parameter = null, $hook_check = null) {
7621
- global $block_object, $ad_inserter_globals, $ai_db_options_extract, $ai_wp_data, $ai_last_check, $ai_total_plugin_time;
7622
 
7623
  $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
7624
 
@@ -7713,6 +7793,12 @@ function ai_custom_hook ($action, $insertion_type, $name, $translated_name = '',
7713
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) continue;
7714
  }
7715
 
 
 
 
 
 
 
7716
  // Last check before insertion
7717
  if (!$obj->check_and_increment_block_counter ()) continue;
7718
 
@@ -7772,7 +7858,7 @@ function ai_pre_do_shortcode_tag ($return, $tag, $attr, $m) {
7772
  }
7773
 
7774
  function ai_process_shortcode (&$block, $atts) {
7775
- global $block_object, $ai_last_check, $ai_wp_data, $ad_inserter_globals;
7776
 
7777
  if ($atts == '') return '';
7778
 
@@ -8095,6 +8181,12 @@ function ai_process_shortcode (&$block, $atts) {
8095
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) return "";
8096
  }
8097
 
 
 
 
 
 
 
8098
  // Last check before insertion
8099
  if (!$obj->check_and_increment_block_counter ()) return "";
8100
 
@@ -8216,7 +8308,7 @@ function ai_add_attr_data (&$tag, $attr, $new_data) {
8216
  }
8217
 
8218
  function ai_widget_draw ($args, $instance, &$block) {
8219
- global $block_object, $ad_inserter_globals, $ai_wp_data, $ai_last_check;
8220
 
8221
  $block = isset ($instance ['block']) ? $instance ['block'] : 1;
8222
  $sticky = isset ($instance ['sticky']) ? $instance ['sticky'] : 0;
@@ -8298,6 +8390,12 @@ function ai_widget_draw ($args, $instance, &$block) {
8298
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) return;
8299
  }
8300
 
 
 
 
 
 
 
8301
  // Last check before insertion
8302
  if (!$obj->check_and_increment_block_counter ()) return;
8303
 
@@ -9645,7 +9743,7 @@ function replace_ai_tags ($content, $general_tag = '') {
9645
  // ===========================================================================================
9646
 
9647
 
9648
- global $block_object, $ai_wp_data, $ad_inserter_globals, $ai_last_check, $ai_last_time, $ai_total_plugin_time, $ai_total_php_time, $ai_processing_log, $ai_db_options_extract, $ai_db_options, $block_insertion_log;
9649
 
9650
  if (!defined ('AD_INSERTER_PLUGIN_DIR'))
9651
  define ('AD_INSERTER_PLUGIN_DIR', plugin_dir_path (__FILE__));
@@ -9675,7 +9773,8 @@ if (!is_admin()) {
9675
 
9676
  $ai_total_plugin_time = 0;
9677
  $start_time = microtime (true);
9678
- $ai_total_php_time = 0;
 
9679
  $ai_last_time = microtime (true);
9680
  $ai_processing_log = array ();
9681
  ai_log ('INITIALIZATION START');
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
+ Version: 2.6.8
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.6.8 - 2020-04-27
19
+ - Added support to disable PHP processing by PHP constant
20
+ - Added support to repeat COUNT options
21
+ - Added support for offset for %n paragraph number (%n@o)
22
+ - Added support for options to skip insertion for first and last paragraphs
23
+ - Added support for hook filter 'ai_block_insertion_check'
24
+ - Added support for background ads (Pro only)
25
+ - Few minor bug fixes, cosmetic changes and code improvements
26
+
27
  Ad Inserter 2.6.7 - 2020-04-07
28
  - Added support for various shortcodes for post categories
29
  - Added support for various shortcodes for post tags
496
  ($paragraph_block ['text'] != '' ? ($paragraph_block ['text_type'] == AI_DO_NOT_CONTAIN ? ' !has ' : ' has ').' ['.htmlentities ($paragraph_block ['text']).']' : '').
497
  ($paragraph_block ['inside_elemets'] != '' ? ($paragraph_block ['inside_type'] == AI_COUNT_ONLY ? ' insEL' : ' !insEL ').' ['.$paragraph_block ['inside_elemets'].']' : '').
498
  ($paragraph_block ['contain_text'] != '' ? ($paragraph_block ['contain_type'] == AI_CONTAIN ? ' elHAS' : ' !elHAS ').' ['.htmlentities ($paragraph_block ['contain_text']).']' : ''),
499
+
500
  // 'href' => set_url_parameter (AI_URL_DEBUG_POSITIONS, $paragraph_block ['blocks'][0]),
501
  'href' => set_url_parameter (AI_URL_DEBUG_POSITIONS, $debug_block_active ? '' : $paragraph_block ['blocks'][0]),
502
  );
678
  case AI_CHECK_COUNTRY: $status .= "COUNTRY ". $obj->get_ad_country_list (true); break;
679
 
680
  case AI_CHECK_SCHEDULING: $status .= "SCHEDULING"; break;
681
+ case AI_CHECK_CODE: $status .= "CODE EMPTY"; break;
682
  case AI_CHECK_LOGGED_IN_USER: $status .= "LOGGED-IN USER"; break;
683
  case AI_CHECK_NOT_LOGGED_IN_USER: $status .= "NOT LOGGED-IN USER"; break;
684
  case AI_CHECK_ADMINISTRATOR: $status .= "ADMINISTRATOR"; break;
699
  case AI_CHECK_LIMIT_IMPRESSIONS_PER_TIME_PERIOD: $status .= "LIMIT IMPRESSIONS PER TIME PERIOD"; break;
700
  case AI_CHECK_MAX_CLICKS: $status .= "MAX CLICKS"; break;
701
  case AI_CHECK_LIMIT_CLICKS_PER_TIME_PERIOD: $status .= "LIMIT CLICKS PER TIME PERIOD"; break;
702
+ case AI_CHECK_INSERTION_NOT_DISABLED: $status .= "INSERTION PAUSED"; break;
703
  case AI_CHECK_PARAGRAPH_TAGS: $status .= "PARAGRAPH TAGS"; break;
704
  case AI_CHECK_PARAGRAPHS_WITH_TAGS: $status .= "PARAGRAPHS WITH TAGS"; break;
705
  case AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE: $status .= "PARAGRAPHS AFTER NO COUNTING INSIDE"; break;
721
  case AI_CHECK_ENABLED_SHORTCODE: $status .= "SHORTCODE ENABLED"; break;
722
  case AI_CHECK_ENABLED_WIDGET: $status .= "WIDGET ENABLED"; break;
723
 
724
+ case AI_CUSTOM_FILTER_CHECK: $status .= "CUSTOM FILTER CHECK"; break;
725
+
726
  case AI_CHECK_NONE: $status = "BLOCK $block"; break;
727
  default: $status .= "?"; break;
728
  }
919
  ai_log ("BUFFER PROCESSING");
920
  }
921
 
922
+ $head = $matches [0];
923
+ $body_tag = $matches [1];
924
+ $body = $matches [2];
925
+
926
+ if (isset ($ai_wp_data [AI_BODY_STYLE])) {
927
+ if (preg_match ('#style=[\'"](.*?)[\'"]#i', $body_tag, $body_style)) {
928
+ $old_style = $body_style [1];
929
+ if ($old_style != '') {
930
+ $old_style = trim ($old_style, ' ;');
931
+ if ($old_style != '') {
932
+ $old_style .= '; ';
933
+ }
934
+ }
935
+ $new_style = $old_style . $ai_wp_data [AI_BODY_STYLE];
936
+
937
+ $body_tag = str_ireplace ($body_style [0], 'style="'.$new_style.'"', $body_tag);
938
+ } else {
939
+ $body_tag = str_replace ('>', ' style="' . $ai_wp_data [AI_BODY_STYLE] . '">', $body_tag);
940
+ }
941
+ }
942
 
943
  if (isset ($ai_db_options_extract [HTML_ELEMENT_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) && class_exists ('DOMDocument')) {
944
 
1257
 
1258
  $head = ai_process_head_codes ($head);
1259
 
1260
+ echo $head, $body_tag;
1261
 
1262
  if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_POSITIONS) != 0) {
1263
  $class = AI_DEBUG_STATUS_CLASS.' status-ok';
3601
  }
3602
 
3603
  function ai_write_debug_info ($write_processing_log = false) {
3604
+ global $block_object, $ai_last_time, $ai_total_plugin_time, $ai_total_block_php_time, $ai_total_hook_php_time, $ai_processing_log, $ai_db_options_extract, $ai_wp_data, $ai_db_options, $block_insertion_log, $ai_custom_hooks, $version_string, $subversion_string;
3605
 
3606
  ob_start ();
3607
 
3629
  }
3630
  echo "GENERATED (WP time): ", date ("Y-m-d H:i:s", time() + get_option ('gmt_offset') * 3600), "\n";
3631
  echo "GENERATED (Server time): ", date ("Y-m-d H:i:s", time()), "\n";
3632
+ echo "PLUGIN CODE PROCESSING: ", number_format (($ai_total_plugin_time - $ai_total_block_php_time - $ai_total_hook_php_time) * 1000, 2, '.' , ''), " ms\n";
3633
+ echo "PLUGIN HOOKS PROCESSING: ", number_format ($ai_total_hook_php_time * 1000, 2, '.' , ''), " ms\n";
3634
+ echo "BLOCK CODE PROCESSING: ", number_format ($ai_total_block_php_time * 1000, 2, '.' , ''), " ms\n";
3635
  echo "TOTAL PROCESSING TIME: ", number_format ($ai_total_plugin_time * 1000, 2, '.' , ''), " ms\n";
3636
  // echo "MEMORY USED: ", number_format (memory_get_usage (true) / 1024 / 1024, 2, '.' , ''), " MB\n";
3637
  // echo "PEAK MEMORY USED: ", number_format (memory_get_peak_usage (true) / 1024 / 1024, 2, '.' , ''), " MB\n";
3813
  else echo "?\n";
3814
  }
3815
  echo 'CLIENT-SIDE DETECTION: ', $ai_wp_data [AI_CLIENT_SIDE_DETECTION] ? 'USED' : "NOT USED", "\n";
3816
+ echo 'CLIENT-SIDE INSERTION: ', $ai_wp_data [AI_CLIENT_SIDE_INSERTION] ? 'USED' : "NOT USED", "\n";
3817
+ echo 'PHP PROCESSING DISABLED: ', defined ('AI_NO_PHP_PROCESSING') ? 'YES' : "NO", "\n";
3818
+
3819
  if (function_exists ('ai_debug_features')) ai_debug_features ();
3820
 
3821
  $enabled_custom_hooks = array ();
3927
  echo 'ADB DELAY ACTION: ', get_delay_action (), "\n";
3928
  echo 'ADB NO ACTION PERIOD: ', get_no_action_period (), "\n";
3929
  echo 'ADB SELECTORS: ', get_adb_selectors (true), "\n";
3930
+ if (function_exists ('ai_debug')) {
3931
+ echo 'ADB DETECTION: ', get_adb_detection () == AI_ADB_DETECTION_ADVANCED ? 'ADVANCED' : 'STANDARD', "\n";
3932
+ }
3933
+
3934
  $redirection_page = get_redirection_page ();
3935
  echo 'ADB REDIRECTION PAGE: ', $redirection_page != 0 ? get_the_title ($redirection_page) . ' (' . get_permalink ($redirection_page) . ')' : 'Custom Url', "\n";
3936
  echo 'ADB REDIRECTION URL: ', get_custom_redirection_url (), "\n";
5221
  }
5222
  elseif ($option == AI_OPTION_DOMAIN_LIST ||
5223
  $option == 'NO_PARAGRAPH_COUNTING_INSIDE' ||
5224
+ $option == AI_OPTION_BACKGROUND_COLOR ||
5225
  $option == AI_OPTION_PARAGRAPH_TAGS ||
5226
  $option == AI_OPTION_COUNT_INSIDE_ELEMENTS ||
5227
  $option == AI_OPTION_IP_ADDRESS_LIST ||
5250
  $option == AI_OPTION_PARAGRAPH_NUMBER ||
5251
  $option == AI_OPTION_MIN_PARAGRAPHS ||
5252
  $option == AI_OPTION_MAX_PARAGRAPHS ||
5253
+ $option == AI_OPTION_SKIP_FIRST_PARAGRAPHS ||
5254
+ $option == AI_OPTION_SKIP_LAST_PARAGRAPHS ||
5255
  $option == AI_OPTION_MIN_WORDS_ABOVE ||
5256
  $option == AI_OPTION_AVOID_PARAGRAPHS_ABOVE ||
5257
  $option == AI_OPTION_AVOID_PARAGRAPHS_BELOW ||
5289
  $option == AI_OPTION_MAX_CLICKS ||
5290
  $option == AI_OPTION_LIMIT_CLICKS_PER_TIME_PERIOD ||
5291
  $option == AI_OPTION_LIMIT_CLICKS_TIME_PERIOD ||
5292
+ $option == AI_OPTION_BACKGROUND_IMAGE ||
5293
 
5294
  $option == 'CLICK_FRAUD_PROTECTION_TIME' ||
5295
  $option == 'ADB_DELAY_ACTION' ||
5422
  if (isset ($_POST ['custom_css'])) $preview_parameters ['custom_css'] = base64_decode ($_POST ['custom_css']);
5423
  if (isset ($_POST ['php'])) $preview_parameters ['php'] = $_POST ['php'];
5424
  if (isset ($_POST ['close'])) $preview_parameters ['close'] = $_POST ['close'];
5425
+ if (isset ($_POST ['background'])) $preview_parameters ['background'] = $_POST ['background'];
5426
+ if (isset ($_POST ['body_background'])) $preview_parameters ['body_background'] = $_POST ['body_background'];
5427
+ if (isset ($_POST ['background_image'])) $preview_parameters ['background_image'] = base64_decode ($_POST ['background_image']);
5428
+ if (isset ($_POST ['background_color'])) $preview_parameters ['background_color'] = base64_decode ($_POST ['background_color']);
5429
+ if (isset ($_POST ['background_size'])) $preview_parameters ['background_size'] = base64_decode ($_POST ['background_size']);
5430
+ if (isset ($_POST ['background_repeat'])) $preview_parameters ['background_repeat'] = base64_decode ($_POST ['background_repeat']);
5431
  if (isset ($_POST ['label'])) $preview_parameters ['label'] = $_POST ['label'];
5432
  if (isset ($_POST ['read_only'])) $preview_parameters ['read_only'] = $_POST ['read_only'];
5433
  if (isset ($_POST ['iframe'])) $preview_parameters ['iframe'] = $_POST ['iframe'];
6232
  .ai-debug-block.ai-debug-adsense.ai-adsense-auto-ads {position: absolute; top: -20px; width: 100%;}
6233
 
6234
  .ai-debug-block.ai-debug-ajax {border-color: #ffd600; outline-color: #ffd600;}
6235
+ .ai-debug-bar.ai-debug-ajax {7: #ffd600;}
6236
  .ai-debug-bar.ai-debug-ajax kbd {color: #000;}
6237
 
6238
  .ai-debug-block.ai-debug-iframe {border-color: #ff9e38; outline-color: #ff9e38; line-height: 1px;}
6850
 
6851
 
6852
  function ai_adinserter ($block_parameter = '', $ignore = '', &$block) {
6853
+ global $block_object, $ad_inserter_globals, $ai_wp_data, $ai_last_check, $ai_total_hook_php_time;
6854
 
6855
  $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
6856
 
6927
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) return "";
6928
  }
6929
 
6930
+ $ai_last_check = AI_CUSTOM_FILTER_CHECK;
6931
+ $hook_start_time = microtime (true);
6932
+ $custom_filter_check = apply_filters ("ai_block_insertion_check", true, $obj->number);
6933
+ $ai_total_hook_php_time += microtime (true) - $hook_start_time;
6934
+ if (!$custom_filter_check) return "";
6935
+
6936
  // Last check before insertion
6937
  if (!$obj->check_and_increment_block_counter ()) return "";
6938
 
6975
 
6976
 
6977
  function ai_content_hook ($content = '') {
6978
+ global $block_object, $ad_inserter_globals, $ai_db_options_extract, $ai_wp_data, $ai_last_check, $ai_total_plugin_time, $ai_total_hook_php_time, $special_element_tags;
6979
 
6980
  if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_ADMIN) return $content;
6981
 
7063
  if ($obj->get_disable_insertion () || get_disable_block_insertions ()) continue;
7064
 
7065
  // Last check before counter check before insertion
 
 
7066
  if ($obj->empty_code ()) continue;
7067
 
7068
  $max_page_blocks_enabled = $obj->get_max_page_blocks_enabled ();
7071
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) continue;
7072
  }
7073
 
7074
+ $ai_last_check = AI_CUSTOM_FILTER_CHECK;
7075
+ $hook_start_time = microtime (true);
7076
+ $custom_filter_check = apply_filters ("ai_block_insertion_check", true, $obj->number);
7077
+ $ai_total_hook_php_time += microtime (true) - $hook_start_time;
7078
+ if (!$custom_filter_check) continue;
7079
 
7080
  $automatic_insertion = $obj->get_automatic_insertion();
7081
 
7096
  $content = $obj->after_image ($content);
7097
  }
7098
  elseif ($automatic_insertion == AI_AUTOMATIC_INSERTION_BEFORE_CONTENT) {
7099
+ // Last check before insertion
7100
+ if (!$obj->check_and_increment_block_counter ()) continue;
7101
 
7102
  // Increment page block counter
7103
  if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
7109
  }
7110
  }
7111
  elseif ($automatic_insertion == AI_AUTOMATIC_INSERTION_AFTER_CONTENT) {
7112
+ // Last check before insertion
7113
+ if (!$obj->check_and_increment_block_counter ()) continue;
7114
 
7115
  // Increment page block counter
7116
  if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
7225
 
7226
  // Process Before/After Excerpt postion
7227
  function ai_excerpt_hook ($content = '') {
7228
+ global $ad_inserter_globals, $block_object, $ai_db_options_extract, $ai_wp_data, $ai_last_check, $ai_total_plugin_time, $ai_total_hook_php_time;
7229
 
7230
  if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_ADMIN) return;
7231
 
7281
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) continue;
7282
  }
7283
 
7284
+ $ai_last_check = AI_CUSTOM_FILTER_CHECK;
7285
+ $hook_start_time = microtime (true);
7286
+ $custom_filter_check = apply_filters ("ai_block_insertion_check", true, $obj->number);
7287
+ $ai_total_hook_php_time += microtime (true) - $hook_start_time;
7288
+ if (!$custom_filter_check) continue;
7289
+
7290
  // Last check before insertion
7291
  if (!$obj->check_and_increment_block_counter ()) continue;
7292
 
7381
 
7382
  // Process comments counter + Before Comments postion
7383
  function ai_comment_callback ($comment, $args, $depth) {
7384
+ global $block_object, $ad_inserter_globals, $ai_db_options_extract, $ai_wp_data, $ai_last_check, $ai_total_plugin_time, $ai_total_hook_php_time, $ai_walker;
7385
 
7386
  if ($depth == 1) {
7387
  if (!isset ($ad_inserter_globals [AI_COMMENT_COUNTER_NAME])) {
7455
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) continue;
7456
  }
7457
 
7458
+ $ai_last_check = AI_CUSTOM_FILTER_CHECK;
7459
+ $hook_start_time = microtime (true);
7460
+ $custom_filter_check = apply_filters ("ai_block_insertion_check", true, $obj->number);
7461
+ $ai_total_hook_php_time += microtime (true) - $hook_start_time;
7462
+ if (!$custom_filter_check) continue;
7463
+
7464
  // Last check before insertion
7465
  if (!$obj->check_and_increment_block_counter ()) continue;
7466
 
7497
 
7498
  // Process Between Comments postion
7499
  function ai_comment_end_callback ($comment, $args, $depth) {
7500
+ global $block_object, $ad_inserter_globals, $ai_db_options_extract, $ai_wp_data, $ai_last_check, $ai_total_plugin_time, $ai_total_hook_php_time;
7501
 
7502
  if ($args ['style'] == 'div') $tag = 'div'; else $tag = 'li';
7503
 
7581
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) continue;
7582
  }
7583
 
7584
+ $ai_last_check = AI_CUSTOM_FILTER_CHECK;
7585
+ $hook_start_time = microtime (true);
7586
+ $custom_filter_check = apply_filters ("ai_block_insertion_check", true, $obj->number);
7587
+ $ai_total_hook_php_time += microtime (true) - $hook_start_time;
7588
+ if (!$custom_filter_check) continue;
7589
+
7590
  // Last check before insertion
7591
  if (!$obj->check_and_increment_block_counter ()) continue;
7592
 
7662
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) continue;
7663
  }
7664
 
7665
+ $ai_last_check = AI_CUSTOM_FILTER_CHECK;
7666
+ $hook_start_time = microtime (true);
7667
+ $custom_filter_check = apply_filters ("ai_block_insertion_check", true, $obj->number);
7668
+ $ai_total_hook_php_time += microtime (true) - $hook_start_time;
7669
+ if (!$custom_filter_check) continue;
7670
+
7671
  // Last check before insertion
7672
  if (!$obj->check_and_increment_block_counter ()) continue;
7673
 
7698
  }
7699
 
7700
  function ai_custom_hook ($action, $insertion_type, $name, $translated_name = '', $hook_parameter = null, $hook_check = null) {
7701
+ global $block_object, $ad_inserter_globals, $ai_db_options_extract, $ai_wp_data, $ai_last_check, $ai_total_plugin_time, $ai_total_hook_php_time;
7702
 
7703
  $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
7704
 
7793
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) continue;
7794
  }
7795
 
7796
+ $ai_last_check = AI_CUSTOM_FILTER_CHECK;
7797
+ $hook_start_time = microtime (true);
7798
+ $custom_filter_check = apply_filters ("ai_block_insertion_check", true, $obj->number);
7799
+ $ai_total_hook_php_time += microtime (true) - $hook_start_time;
7800
+ if (!$custom_filter_check) continue;
7801
+
7802
  // Last check before insertion
7803
  if (!$obj->check_and_increment_block_counter ()) continue;
7804
 
7858
  }
7859
 
7860
  function ai_process_shortcode (&$block, $atts) {
7861
+ global $block_object, $ai_last_check, $ai_wp_data, $ad_inserter_globals, $ai_total_hook_php_time;
7862
 
7863
  if ($atts == '') return '';
7864
 
8181
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) return "";
8182
  }
8183
 
8184
+ $ai_last_check = AI_CUSTOM_FILTER_CHECK;
8185
+ $hook_start_time = microtime (true);
8186
+ $custom_filter_check = apply_filters ("ai_block_insertion_check", true, $obj->number);
8187
+ $ai_total_hook_php_time += microtime (true) - $hook_start_time;
8188
+ if (!$custom_filter_check) return "";
8189
+
8190
  // Last check before insertion
8191
  if (!$obj->check_and_increment_block_counter ()) return "";
8192
 
8308
  }
8309
 
8310
  function ai_widget_draw ($args, $instance, &$block) {
8311
+ global $block_object, $ad_inserter_globals, $ai_wp_data, $ai_last_check, $ai_total_hook_php_time;
8312
 
8313
  $block = isset ($instance ['block']) ? $instance ['block'] : 1;
8314
  $sticky = isset ($instance ['sticky']) ? $instance ['sticky'] : 0;
8390
  if ($ai_wp_data [AI_PAGE_BLOCKS] >= get_max_page_blocks ()) return;
8391
  }
8392
 
8393
+ $ai_last_check = AI_CUSTOM_FILTER_CHECK;
8394
+ $hook_start_time = microtime (true);
8395
+ $custom_filter_check = apply_filters ("ai_block_insertion_check", true, $obj->number);
8396
+ $ai_total_hook_php_time += microtime (true) - $hook_start_time;
8397
+ if (!$custom_filter_check) return;
8398
+
8399
  // Last check before insertion
8400
  if (!$obj->check_and_increment_block_counter ()) return;
8401
 
9743
  // ===========================================================================================
9744
 
9745
 
9746
+ global $block_object, $ai_wp_data, $ad_inserter_globals, $ai_last_check, $ai_last_time, $ai_total_plugin_time, $ai_total_block_php_time, $ai_total_hook_php_time, $ai_processing_log, $ai_db_options_extract, $ai_db_options, $block_insertion_log;
9747
 
9748
  if (!defined ('AD_INSERTER_PLUGIN_DIR'))
9749
  define ('AD_INSERTER_PLUGIN_DIR', plugin_dir_path (__FILE__));
9773
 
9774
  $ai_total_plugin_time = 0;
9775
  $start_time = microtime (true);
9776
+ $ai_total_block_php_time = 0;
9777
+ $ai_total_hook_php_time = 0;
9778
  $ai_last_time = microtime (true);
9779
  $ai_processing_log = array ();
9780
  ai_log ('INITIALIZATION START');
class.php CHANGED
@@ -54,6 +54,8 @@ abstract class ai_BaseCodeBlock {
54
  var $rotate_index;
55
  var $viewport_index;
56
 
 
 
57
  var $no_insertion_text;
58
 
59
  var $label;
@@ -494,11 +496,16 @@ abstract class ai_BaseCodeBlock {
494
  return false;
495
  }
496
 
 
 
 
 
 
497
  return $empty;
498
  }
499
 
500
  public function ai_getCode (){
501
- global $block_object, $ai_total_php_time, $ai_wp_data, $ad_inserter_globals;
502
 
503
  if ($this->fallback != 0 && $this->fallback <= 96 && $this->fallback != $this->number) {
504
 
@@ -521,7 +528,7 @@ abstract class ai_BaseCodeBlock {
521
  $obj = $this;
522
  $code = $obj->get_ad_data();
523
 
524
- if ($obj->get_process_php () && !get_disable_php_processing () && (!is_multisite() || is_main_site () || multisite_php_processing ())) {
525
  $global_name = 'GENERATED_CODE';
526
 
527
  if (isset ($obj->wp_options [$global_name]) && (!isset ($ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number]) || $ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number])) return $obj->wp_options [$global_name];
@@ -557,7 +564,7 @@ abstract class ai_BaseCodeBlock {
557
  $obj->wp_options [$global_name] = $code;
558
  }
559
 
560
- $ai_total_php_time += microtime (true) - $start_time;
561
  }
562
 
563
  return $code;
@@ -590,6 +597,8 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
590
  $this->wp_options [AI_OPTION_PARAGRAPH_NUMBER] = AD_ONE;
591
  $this->wp_options [AI_OPTION_MIN_PARAGRAPHS] = AD_EMPTY_DATA;
592
  $this->wp_options [AI_OPTION_MAX_PARAGRAPHS] = AD_EMPTY_DATA;
 
 
593
  $this->wp_options [AI_OPTION_MIN_WORDS_ABOVE] = AD_EMPTY_DATA;
594
  $this->wp_options [AI_OPTION_MIN_WORDS] = AD_EMPTY_DATA;
595
  $this->wp_options [AI_OPTION_MAX_WORDS] = AD_EMPTY_DATA;
@@ -682,6 +691,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
682
  $this->wp_options [AI_OPTION_DETECT_CLIENT_SIDE] = AI_DISABLED;
683
  $this->wp_options [AI_OPTION_CLIENT_SIDE_ACTION] = DEFAULT_CLIENT_SIDE_ACTION;
684
  $this->wp_options [AI_OPTION_CLOSE_BUTTON] = DEFAULT_CLOSE_BUTTON;
 
 
 
 
 
 
685
  $this->wp_options [AI_OPTION_AUTO_CLOSE_TIME] = DEFAULT_AUTO_CLOSE_TIME;
686
  $this->wp_options [AI_OPTION_STAY_CLOSED_TIME] = DEFAULT_STAY_CLOSED_TIME;
687
  $this->wp_options [AI_OPTION_DELAY_SHOWING] = DEFAULT_DELAY_SHOWING;
@@ -958,73 +973,91 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
958
  }
959
 
960
  public function sticky_style ($horizontal_position, $vertical_position, $horizontal_margin = null, $vertical_margin = null) {
 
 
961
  $style = "";
962
 
 
 
 
963
  if ($horizontal_margin === null) $horizontal_margin = trim ($this->get_horizontal_margin ());
964
  if ($vertical_margin === null) $vertical_margin = trim ($this->get_vertical_margin ());
965
 
966
- $animation = $this->get_animation () != AI_ANIMATION_NONE;
967
 
968
  $main_content_fixed_width = is_numeric (get_main_content_element ());
969
  if ($main_content_fixed_width) {
970
  $main_content_shift = (int) (get_main_content_element () / 2);
971
  }
972
 
973
- switch ($vertical_position) {
974
- case AI_STICK_TO_THE_TOP:
975
- switch ($horizontal_position) {
976
- case AI_STICK_HORIZONTAL_CENTER:
977
- $style = AI_ALIGNMENT_CSS_STICK_TO_THE_TOP;
 
 
 
 
 
 
 
 
 
 
 
 
 
978
  break;
979
- default:
980
- $style = AI_ALIGNMENT_CSS_STICK_TO_THE_TOP_OFFSET;
 
 
 
 
 
 
 
 
981
  break;
982
- }
983
- if ($vertical_margin != '') {
984
- $style = ai_change_css ($style, 'top', $vertical_margin . 'px');
985
- }
986
- break;
987
- case AI_STICK_VERTICAL_CENTER:
988
- if ($animation) $style .= AI_ALIGNMENT_CSS_CENTER_VERTICAL_H_ANIM; else
989
- switch ($horizontal_position) {
990
- case AI_STICK_HORIZONTAL_CENTER:
991
- $style = AI_ALIGNMENT_CSS_CENTER_VERTICAL_H_ANIM;
992
- break;
993
- default:
994
- $style = AI_ALIGNMENT_CSS_CENTER_VERTICAL;
995
- break;
996
- }
997
- break;
998
- case AI_SCROLL_WITH_THE_CONTENT:
999
- $style = AI_ALIGNMENT_CSS_SCROLL_WITH_THE_CONTENT;
1000
- if ($vertical_margin != '') {
1001
- $style = ai_change_css ($style, 'top', $vertical_margin . 'px');
1002
- }
1003
- break;
1004
- case AI_STICK_TO_THE_BOTTOM:
1005
- switch ($horizontal_position) {
1006
- case AI_STICK_HORIZONTAL_CENTER:
1007
- $style = AI_ALIGNMENT_CSS_STICK_TO_THE_BOTTOM;
1008
  break;
1009
- default:
1010
- $style = AI_ALIGNMENT_CSS_STICK_TO_THE_BOTTOM_OFFSET;
 
 
 
 
 
 
 
 
 
 
 
 
1011
  break;
1012
  }
1013
- if ($vertical_margin != '') {
1014
- $style = ai_change_css ($style, 'bottom', $vertical_margin . 'px');
1015
- }
1016
- break;
1017
- }
1018
 
1019
  switch ($horizontal_position) {
1020
  case AI_STICK_TO_THE_LEFT:
1021
- $style .= AI_ALIGNMENT_CSS_STICK_TO_THE_LEFT;
 
 
1022
  if ($horizontal_margin != '') {
1023
  $style = ai_change_css ($style, 'left', $horizontal_margin . 'px');
1024
  }
1025
  break;
1026
  case AI_STICK_TO_THE_CONTENT_LEFT:
1027
- $style .= AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_LEFT;
 
 
1028
  if ($horizontal_margin != '') {
1029
  $style = ai_change_css ($style, 'margin-right', $horizontal_margin . 'px');
1030
  }
@@ -1033,7 +1066,67 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
1033
  }
1034
  break;
1035
  case AI_STICK_HORIZONTAL_CENTER:
1036
- if ($animation) $style .= AI_ALIGNMENT_CSS_STICK_CENTER_HORIZONTAL_ANIM; else
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1037
  switch ($vertical_position) {
1038
  case AI_STICK_VERTICAL_CENTER:
1039
  $style .= AI_ALIGNMENT_CSS_STICK_CENTER_HORIZONTAL_V;
@@ -1044,7 +1137,9 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
1044
  }
1045
  break;
1046
  case AI_STICK_TO_THE_CONTENT_RIGHT:
1047
- $style .= AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_RIGHT;
 
 
1048
  if ($horizontal_margin != '') {
1049
  $style = ai_change_css ($style, 'margin-left', $horizontal_margin . 'px');
1050
  }
@@ -1057,11 +1152,13 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
1057
  case AI_SCROLL_WITH_THE_CONTENT:
1058
  $style .= AI_ALIGNMENT_CSS_STICK_TO_THE_RIGHT_SCROLL;
1059
  if ($horizontal_margin != '') {
1060
- $style = ai_change_css ($style, 'margin-left', $horizontal_margin . 'px');
1061
  }
1062
  break;
1063
  default:
1064
- $style .= AI_ALIGNMENT_CSS_STICK_TO_THE_RIGHT;
 
 
1065
  if ($horizontal_margin != '') {
1066
  $style = ai_change_css ($style, 'right', $horizontal_margin . 'px');
1067
  }
@@ -1080,40 +1177,82 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
1080
  $custom_css = $this->get_custom_css ();
1081
  $horizontal_position = $this->get_horizontal_position ();
1082
  $vertical_position = $this->get_vertical_position ();
 
1083
 
1084
  $main_content_fixed_width = is_numeric (get_main_content_element ());
1085
 
1086
  switch ($alignment_type) {
1087
  case AI_ALIGNMENT_STICKY:
1088
- if (!$main_content_fixed_width)
1089
  switch ($horizontal_position) {
1090
  case AI_STICK_TO_THE_CONTENT_LEFT:
 
1091
  $classes []= 'ai-sticky-left';
1092
  break;
1093
  case AI_STICK_TO_THE_CONTENT_RIGHT:
 
1094
  $classes []= 'ai-sticky-right';
1095
  break;
1096
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1097
  switch ($vertical_position) {
1098
  case AI_SCROLL_WITH_THE_CONTENT:
 
 
 
 
 
1099
  $classes []= 'ai-sticky-scroll';
1100
  break;
1101
  }
1102
  break;
1103
  case AI_ALIGNMENT_CUSTOM_CSS:
1104
  $clean_custom_css_code = str_replace (' ', '', $custom_css);
 
1105
  if (!$main_content_fixed_width &&
1106
  strpos ($clean_custom_css_code, 'position:fixed') !== false &&
1107
- strpos ($clean_custom_css_code, 'z-index:') !== false &&
1108
- strpos ($clean_custom_css_code, 'display:none') !== false) {
1109
- if (strpos ($clean_custom_css_code, ';left:auto') !== false) $classes []= 'ai-sticky-left'; // ; to avoid margin-left:auto
1110
- elseif (strpos ($clean_custom_css_code, 'right:auto') !== false) $classes []= 'ai-sticky-right';
 
 
 
 
 
 
 
 
 
 
 
 
1111
 
1112
- if (strpos ($clean_custom_css_code, 'margin-bottom:auto') !== false) $classes []= 'ai-sticky-scroll';
1113
  }
1114
  break;
1115
  }
1116
 
 
 
1117
  return implode (' ', $classes);
1118
  }
1119
 
@@ -1134,16 +1273,23 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
1134
 
1135
  if ($this->is_sticky ()) {
1136
 
 
 
 
 
 
1137
  $stick_to_the_content_class = $this->stick_to_the_content_class ();
1138
 
1139
  if ($stick_to_the_content_class != '') {
1140
- $classes [] = 'ai-sticky-content';
 
 
1141
  $classes [] = $stick_to_the_content_class;
1142
  }
1143
-
1144
- $horizontal_position = $this->get_horizontal_position ();
1145
- $vertical_position = $this->get_vertical_position ();
1146
- $animation = $this->get_animation ();
1147
 
1148
  $direction = '';
1149
 
@@ -1185,91 +1331,93 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
1185
 
1186
  if ($vertical_position == AI_STICK_VERTICAL_CENTER) $classes [] = 'ai-center-v';
1187
 
1188
- switch ($horizontal_position) {
1189
- case AI_STICK_TO_THE_LEFT:
1190
- if ($animation == AI_ANIMATION_TURN) $direction = 'left';
1191
- break;
1192
- case AI_STICK_TO_THE_RIGHT:
1193
- if ($animation == AI_ANIMATION_TURN) $direction = 'right';
1194
- break;
1195
- case AI_STICK_TO_THE_CONTENT_LEFT:
1196
- case AI_STICK_TO_THE_CONTENT_RIGHT:
1197
- if ($animation == AI_ANIMATION_SLIDE) $animation = AI_ANIMATION_SLIDE_FADE;
1198
- break;
1199
- }
1200
-
1201
- switch ($animation) {
1202
- case AI_ANIMATION_FADE:
1203
- $sticky_parameters .= ' data-aos="fade"';
1204
- break;
1205
- case AI_ANIMATION_SLIDE:
1206
- $sticky_parameters .= ' data-aos="slide-'.$direction.'"';
1207
- break;
1208
- case AI_ANIMATION_SLIDE_FADE:
1209
- $sticky_parameters .= ' data-aos="fade-'.$direction.'"';
1210
- break;
1211
- case AI_ANIMATION_TURN:
1212
- $classes [] = 'ai-sticky-turn';
1213
- $sticky_parameters .= ' data-aos="flip-'.$direction.'"';
1214
- break;
1215
- case AI_ANIMATION_FLIP:
1216
- if ($direction == 'right') $direction = 'left';
1217
- elseif ($direction == 'left') $direction = 'right';
1218
- $sticky_parameters .= ' data-aos="flip-'.$direction.'"';
1219
- break;
1220
- case AI_ANIMATION_ZOOM_IN:
1221
- $sticky_parameters .= ' data-aos="zoom-in-'.$direction.'"';
1222
- break;
1223
- case AI_ANIMATION_ZOOM_OUT:
1224
- $sticky_parameters .= ' data-aos="zoom-out-'.$direction.'"';
1225
- break;
1226
- }
1227
 
1228
- if (!$preview) {
1229
- switch ($this->get_animation_trigger ()) {
1230
- case AI_TRIGGER_PAGE_SCROLLED_PC:
1231
- $pc = $this->get_animation_trigger_value ();
1232
- if (!is_numeric ($pc)) $pc = 0;
1233
- $pc = intval ($pc);
1234
- if ($pc < 0) $pc = 0;
1235
- if ($pc > 100) $pc = 100;
1236
- $pc = number_format ($pc / 100, 2);
1237
- if (!isset ($ai_wp_data [AI_TRIGGER_ELEMENTS])) $ai_wp_data [AI_TRIGGER_ELEMENTS] = array ();
1238
- $ai_wp_data [AI_TRIGGER_ELEMENTS][$this->number] = $pc;
1239
- $sticky_parameters .= ' data-aos-anchor="#ai-position-'.$this->number.'" data-aos-anchor-placement="top-top"';
1240
  break;
1241
- case AI_TRIGGER_PAGE_SCROLLED_PX:
1242
- $px = $this->get_animation_trigger_value ();
1243
- if (!is_numeric ($px)) $px = 0;
1244
- $px = intval ($px);
1245
- if ($px < 0) $px = 0;
1246
- if (!isset ($ai_wp_data [AI_TRIGGER_ELEMENTS])) $ai_wp_data [AI_TRIGGER_ELEMENTS] = array ();
1247
- $ai_wp_data [AI_TRIGGER_ELEMENTS][$this->number] = $px;
1248
- $sticky_parameters .= ' data-aos-anchor="#ai-position-'.$this->number.'" data-aos-anchor-placement="top-top"';
1249
  break;
1250
- case AI_TRIGGER_ELEMENT_VISIBLE:
1251
- $sticky_parameters .= ' data-aos-anchor="'.$this->get_animation_trigger_value ().'"';
 
 
 
 
 
 
 
 
1252
  break;
1253
  }
1254
 
1255
- $offset = $this->get_animation_trigger_offset ();
1256
- if (is_numeric ($offset)) {
1257
- $offset = intval ($offset);
1258
- if ($offset < -1000) $offset = - 1000;
1259
- elseif ($offset > 1000) $offset = 1000;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1260
 
1261
- $sticky_parameters .= ' data-aos-offset="'.$offset.'"';
1262
- }
1263
 
1264
- $delay = $this->get_animation_trigger_delay ();
1265
- if (is_numeric ($delay) && $delay > 0) {
1266
- $delay = intval ($delay);
1267
 
1268
- $sticky_parameters .= ' data-aos-delay="'.$delay.'"';
1269
- }
1270
 
1271
- if ($this->get_animation_trigger_once ()) {
1272
- $sticky_parameters .= ' data-aos-once="true"';
 
1273
  }
1274
  }
1275
  }
@@ -1466,6 +1614,18 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
1466
  return $option;
1467
  }
1468
 
 
 
 
 
 
 
 
 
 
 
 
 
1469
  public function get_minimum_words_above (){
1470
  $option = isset ($this->wp_options [AI_OPTION_MIN_WORDS_ABOVE]) ? $this->wp_options [AI_OPTION_MIN_WORDS_ABOVE] : "";
1471
  return $option;
@@ -2367,7 +2527,8 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2367
  if (count ($matches [1]) != 0) {
2368
  $viewport_parameters = array ();
2369
  foreach ($matches [1] as $match) {
2370
- $viewport_parameters []= $ai_wp_data [AI_SHORTCODES]['viewport'][$match];
 
2371
  }
2372
  if ($ai_wp_data [AI_WP_AMP_PAGE]) {
2373
  $processed_code = preg_replace ('/\|viewport([0-9]+?)\|/', '', $processed_code);
@@ -2545,7 +2706,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2545
 
2546
  if (!$ai_wp_data [AI_CODE_FOR_IFRAME]) {
2547
  $alignment_type = $this->get_alignment_type ();
2548
- if ($force_close_button || (($close_button != AI_CLOSE_NONE || $auto_close_time) && !$ai_wp_data [AI_WP_AMP_PAGE] && $alignment_type != AI_ALIGNMENT_NO_WRAPPING)) {
2549
  switch ($close_button) {
2550
  case AI_CLOSE_TOP_RIGHT:
2551
  $button_class = 'ai-close-button ai-close-unprocessed';
@@ -2726,6 +2887,10 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2726
  // $code = $this->replace_ai_tags (do_shortcode ($this->ai_getCode (), true)); // Does not expand shortcodes inside HTML <div id='div-gpt-ad-1234567890-[ADINSERTER counter="block"]'>
2727
  $code = replace_ai_tags (do_shortcode ($this->ai_getCode ()), $this->get_ad_general_tag());
2728
  unset ($ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']);
 
 
 
 
2729
  }
2730
  }
2731
 
@@ -2739,7 +2904,6 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2739
 
2740
  if ($not_iframe_or_inside) {
2741
 
2742
-
2743
  // [ADINSERTER CHECK]
2744
 
2745
  if (function_exists ('ai_check_separators')) {
@@ -2749,21 +2913,35 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2749
  }
2750
  }
2751
 
2752
-
2753
  // [ADINSERTER COUNT]
2754
 
2755
  preg_match_all ('/\|count([0-9]+?)\|/', $processed_code, $matches);
2756
  if (count ($matches [1]) != 0) {
2757
  $count_parameters = array ();
2758
  foreach ($matches [1] as $match) {
2759
- $count_parameters []= $ai_wp_data [AI_SHORTCODES]['count'][$match];
 
2760
  }
2761
  $processed_code = preg_replace ('/\|count([0-9]+?)\|/', AD_COUNT_SEPARATOR, $processed_code);
2762
- } else if (isset ($ai_wp_data [AI_SHORTCODES]['count'])) $count_parameters = $ai_wp_data [AI_SHORTCODES]['count'];
 
2763
 
2764
  if (strpos ($processed_code, AD_COUNT_SEPARATOR) !== false) {
2765
  $ads = explode (AD_COUNT_SEPARATOR, $processed_code);
2766
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2767
  $this->count_names = null;
2768
 
2769
  if ($ai_wp_data [AI_FORCE_SERVERSIDE_CODE]) {
@@ -2772,21 +2950,28 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2772
  foreach ($ads as $index => $ad) $this->count_names []= $index + 1;
2773
  } else {
2774
  if (isset ($ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $this->number])) {
2775
- $counter_for_filter = $ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $this->number];
 
2776
 
2777
- if ($counter_for_filter != 0 && $counter_for_filter <= count ($ads)) {
2778
- if (isset ($count_parameters [$counter_for_filter - 1]['count'])) {
2779
- if (strtolower ($count_parameters [$counter_for_filter - 1]['count']) == 'shuffle') {
2780
- $ai_wp_data [AI_COUNT][$this->number] = $ads;
2781
- shuffle ($ai_wp_data [AI_COUNT][$this->number]);
2782
- }
2783
  }
2784
-
2785
- if (isset ($ai_wp_data [AI_COUNT][$this->number])) {
2786
- $ads = $ai_wp_data [AI_COUNT][$this->number];
2787
  }
 
2788
 
2789
- $processed_code = $ads [$counter_for_filter - 1];
 
 
 
 
 
 
 
 
2790
  } else {
2791
  $processed_code = '';
2792
  $additional_code = '';
@@ -2805,12 +2990,15 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2805
  preg_match_all ('/\|rotate([0-9]+?)\|/', $processed_code, $matches);
2806
 
2807
  if (count ($matches [1]) != 0) {
 
2808
  $rotate_parameters = array ();
2809
  foreach ($matches [1] as $match) {
2810
- $rotate_parameters []= $ai_wp_data [AI_SHORTCODES]['rotate'][$match];
 
2811
  }
2812
  $processed_code = preg_replace ('/\|rotate([0-9]+?)\|/', AD_ROTATE_SEPARATOR, $processed_code);
2813
- } else if (isset ($ai_wp_data [AI_SHORTCODES]['rotate'])) $rotate_parameters = $ai_wp_data [AI_SHORTCODES]['rotate'];
 
2814
 
2815
  if (strpos ($processed_code, AD_ROTATE_SEPARATOR) !== false) {
2816
  $ads = explode (AD_ROTATE_SEPARATOR, $processed_code);
@@ -3037,8 +3225,10 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3037
  $ad = trim ($head_body_code [1]);
3038
 
3039
  // Insert all HEAD codes for all options into <head> section
3040
- if ($ai_wp_data [AI_SHORTCODES]['head'][0]['group'] != '') {
3041
- $ai_wp_data [AI_HEAD_GROUPS][strtolower ($ai_wp_data [AI_SHORTCODES]['head'][0]['group'])] []= trim ($head_body_code [0]);
 
 
3042
  } else $ai_wp_data [AI_HEAD_CODES] []= trim ($head_body_code [0]);
3043
  }
3044
 
@@ -3116,8 +3306,8 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3116
  $this->w3tc_code .= ' if ($ai_enabled) {$groups_marker = base64_decode (\'' . base64_encode ($groups_marker) .
3117
  '\'); global $ai_groups; if (preg_match ($groups_marker, $ai_code, $matches)) {$ai_groups = json_decode (base64_decode ($matches [1])); $ai_code = preg_replace ($groups_marker, \'\', $ai_code);}}';
3118
 
3119
- // if (isset ($ai_wp_data [AI_SHORTCODES]['viewport'])) {
3120
- // $this->w3tc_code .= 'if ($ai_enabled) $ai_code = ai_process_viewport_separators ($ai_code, unserialize (base64_decode (\''.base64_encode (serialize ($ai_wp_data [AI_SHORTCODES]['viewport'])).'\')));';
3121
  // }
3122
 
3123
  $processed_code = $this->generate_html_from_w3tc_code ();
@@ -3162,11 +3352,14 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3162
  $head_body_code = explode (AD_HEAD_SEPARATOR, $processed_code);
3163
  $processed_code = trim ($head_body_code [1]);
3164
 
3165
- $once = isset ($ai_wp_data [AI_SHORTCODES]['head'][0]['head']) && strtolower ($ai_wp_data [AI_SHORTCODES]['head'][0]['head']) == 'once';
 
3166
 
3167
  if (!$once || !$this->head_code_written) {
3168
- if ($ai_wp_data [AI_SHORTCODES]['head'][0]['group'] != '') {
3169
- $ai_wp_data [AI_HEAD_GROUPS][strtolower ($ai_wp_data [AI_SHORTCODES]['head'][0]['group'])] []= trim ($head_body_code [0], "\n\r");
 
 
3170
  } else $ai_wp_data [AI_HEAD_CODES] []= trim ($head_body_code [0]);
3171
  $this->head_code_written = true;
3172
  }
@@ -3213,12 +3406,14 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3213
  // [ADINSERTER VIEWPORT]
3214
 
3215
  if ($this->w3tc_code != '') {
3216
- if (isset ($ai_wp_data [AI_SHORTCODES]['viewport'])) {
 
3217
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
3218
  $this->w3tc_debug []= 'PROCESS VIEWPORT SHORTCODES';
3219
  }
3220
 
3221
- $this->w3tc_code .= 'if ($ai_enabled) $ai_code = ai_process_viewport_separators ($ai_code, unserialize (base64_decode (\''.base64_encode (serialize ($ai_wp_data [AI_SHORTCODES]['viewport'])).'\')));';
 
3222
 
3223
  $processed_code = $this->generate_html_from_w3tc_code ();
3224
  }
@@ -4350,6 +4545,39 @@ echo '</body>
4350
  return $option;
4351
  }
4352
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4353
 
4354
  public function get_visitor_max_impressions () {
4355
  $option = isset ($this->wp_options [AI_OPTION_VISITOR_MAX_IMPRESSIONS]) ? $this->wp_options [AI_OPTION_VISITOR_MAX_IMPRESSIONS] : DEFAULT_VISITOR_MAX_IMPRESSIONS;
@@ -4960,7 +5188,7 @@ echo '</body>
4960
  }
4961
 
4962
  public function before_paragraph ($content, $position_preview = false, $before_image = false) {
4963
- global $ai_wp_data, $ai_last_check, $special_element_tags;
4964
 
4965
  $multibyte = $ai_wp_data [AI_MBSTRING_LOADED] && get_paragraph_counting_functions() == AI_MULTIBYTE_PARAGRAPH_COUNTING_FUNCTIONS;
4966
 
@@ -5270,6 +5498,7 @@ echo '</body>
5270
  $direction_type = AI_DIRECTION_FROM_TOP;
5271
  } else $direction_type = $this->get_direction_type();
5272
 
 
5273
  // Prepare $paragraph_end_positions
5274
  if ($position_preview || $position_text == '') {
5275
  if (!isset ($paragraph_end_positions)) {
@@ -5330,10 +5559,20 @@ echo '</body>
5330
  foreach ($positions as $index => $position) {
5331
  if (isset ($position [0]) && $position [0] == '%') {
5332
  unset ($positions [$index]);
5333
- $mod_value = substr ($position, 1);
5334
- if (is_numeric ($mod_value) && $mod_value > 0) {
 
 
 
 
 
 
 
 
 
 
5335
  foreach ($paragraph_positions as $index => $paragraph_position) {
5336
- if (($index + 1) % $mod_value == 0) $new_positions []= $index;
5337
  }
5338
  }
5339
  }
@@ -5355,10 +5594,19 @@ echo '</body>
5355
  sort ($positions);
5356
  }
5357
  elseif (isset ($position_text [0]) && $position_text [0] == '%') {
5358
- $mod_value = substr ($position_text, 1);
5359
- if (is_numeric ($mod_value) && $mod_value > 0) {
 
 
 
 
 
 
 
 
 
5360
  foreach ($paragraph_positions as $index => $paragraph_position) {
5361
- if (($index + 1) % $mod_value == 0) $positions []= $index;
5362
  }
5363
  }
5364
  }
@@ -5438,6 +5686,7 @@ echo '</body>
5438
  }
5439
  }
5440
 
 
5441
  $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
5442
 
5443
  if (!empty ($positions) && !$before_image) {
@@ -5638,12 +5887,29 @@ echo '</body>
5638
  }
5639
 
5640
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5641
  if ($position_preview || !empty ($positions)) {
5642
  $offset = 0;
5643
  if (!empty ($positions)) $ai_last_check = AI_CHECK_PARAGRAPH_NUMBER;
5644
 
5645
- $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
5646
-
5647
  $real_positions = array ();
5648
  foreach ($positions as $position_index) $real_positions []= $position_index >= 0 ? $position_index + 1 : '*';
5649
  if ($debug_processing && $this->number != 0 && count ($real_positions) != 0) ai_log ('BLOCK ' . $this->number . ' INSERTION POSITIONS: ' . implode (', ', $real_positions));
@@ -5664,7 +5930,7 @@ echo '</body>
5664
  $debug_label = $before_image ? 'BI' : 'BP';
5665
  $inserted_code = "[[AI_".$debug_label.($counter + 1)."=".$paragraph_words."]]";
5666
  }
5667
- elseif (!empty ($positions) && in_array ($counter, $positions) && $this->check_block_counter ()) {
5668
 
5669
  $inserted = false;
5670
 
@@ -5676,17 +5942,18 @@ echo '</body>
5676
 
5677
  $ai_last_check = AI_CHECK_MAX_PAGE_BLOCKS;
5678
  if (!$max_page_blocks_enabled || $ai_wp_data [AI_PAGE_BLOCKS] < get_max_page_blocks ()) {
5679
- $this->increment_block_counter ();
5680
-
5681
- // Increment page block counter
5682
- if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
5683
-
5684
- $ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
5685
- if (!$this->get_debug_disable_insertion ()) {
5686
- $inserted_code = $this->get_code_for_serverside_insertion ();
5687
- $ai_last_check = AI_CHECK_INSERTED;
5688
- $this->clear_code_cache ();
5689
- $inserted = true;
 
5690
  }
5691
  }
5692
  }
@@ -6051,6 +6318,7 @@ echo '</body>
6051
  $direction_type = AI_DIRECTION_FROM_TOP;
6052
  } else $direction_type = $this->get_direction_type();
6053
 
 
6054
  // Prepare $paragraph_start_positions
6055
  if ($position_preview || $position_text == '') {
6056
  if (!isset ($paragraph_start_positions)) {
@@ -6111,10 +6379,20 @@ echo '</body>
6111
  foreach ($positions as $index => $position) {
6112
  if (isset ($position [0]) && $position [0] == '%') {
6113
  unset ($positions [$index]);
6114
- $mod_value = substr ($position, 1);
6115
- if (is_numeric ($mod_value) && $mod_value > 0) {
 
 
 
 
 
 
 
 
 
 
6116
  foreach ($paragraph_positions as $index => $paragraph_position) {
6117
- if (($index + 1) % $mod_value == 0) $new_positions []= $index;
6118
  }
6119
  }
6120
  }
@@ -6136,10 +6414,19 @@ echo '</body>
6136
  sort ($positions);
6137
  }
6138
  elseif (isset ($position_text [0]) && $position_text [0] == '%') {
6139
- $mod_value = substr ($position_text, 1);
6140
- if (is_numeric ($mod_value) && $mod_value > 0) {
 
 
 
 
 
 
 
 
 
6141
  foreach ($paragraph_positions as $index => $paragraph_position) {
6142
- if (($index + 1) % $mod_value == 0) $positions []= $index;
6143
  }
6144
  }
6145
  }
@@ -6219,6 +6506,7 @@ echo '</body>
6219
  }
6220
  }
6221
 
 
6222
  $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
6223
 
6224
  if (!empty ($positions) && !$after_image) {
@@ -6419,6 +6707,25 @@ echo '</body>
6419
  }
6420
 
6421
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6422
  if ($position_preview || !empty ($positions)) {
6423
  $offset = 0;
6424
  if (!empty ($positions)) $ai_last_check = AI_CHECK_PARAGRAPH_NUMBER;
@@ -6434,7 +6741,7 @@ echo '</body>
6434
  foreach ($paragraph_positions as $counter => $paragraph_position) {
6435
  $debug_label = $after_image ? 'AI' : 'AP';
6436
  if ($position_preview) $inserted_code = "[[AI_".$debug_label.($counter + 1)."]]";
6437
- elseif (!empty ($positions) && in_array ($counter, $positions) && $this->check_block_counter ()) {
6438
 
6439
  $inserted = false;
6440
 
@@ -6446,17 +6753,18 @@ echo '</body>
6446
 
6447
  $ai_last_check = AI_CHECK_MAX_PAGE_BLOCKS;
6448
  if (!$max_page_blocks_enabled || $ai_wp_data [AI_PAGE_BLOCKS] < get_max_page_blocks ()) {
6449
- $this->increment_block_counter ();
6450
-
6451
- // Increment page block counter
6452
- if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
6453
-
6454
- $ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
6455
- if (!$this->get_debug_disable_insertion ()) {
6456
- $inserted_code = $this->get_code_for_serverside_insertion ();
6457
- $ai_last_check = AI_CHECK_INSERTED;
6458
- $this->clear_code_cache ();
6459
- $inserted = true;
 
6460
  }
6461
  }
6462
  }
@@ -7513,7 +7821,7 @@ echo '</body>
7513
 
7514
  if (function_exists ('ai_extract_features_2')) ai_extract_features_2 ($this);
7515
 
7516
- if ($this->stick_to_the_content_class () != '') $ai_wp_data [AI_STICK_TO_THE_CONTENT] = true;
7517
 
7518
  switch ($this->get_automatic_insertion()) {
7519
  case AI_AUTOMATIC_INSERTION_BEFORE_HTML_ELEMENT:
54
  var $rotate_index;
55
  var $viewport_index;
56
 
57
+ var $shortcodes;
58
+
59
  var $no_insertion_text;
60
 
61
  var $label;
496
  return false;
497
  }
498
 
499
+ if ($this->get_background () &&
500
+ $this->get_horizontal_position () == AI_STICK_HORIZONTAL_CENTER) {
501
+ return false;
502
+ }
503
+
504
  return $empty;
505
  }
506
 
507
  public function ai_getCode (){
508
+ global $block_object, $ai_total_block_php_time, $ai_wp_data, $ad_inserter_globals;
509
 
510
  if ($this->fallback != 0 && $this->fallback <= 96 && $this->fallback != $this->number) {
511
 
528
  $obj = $this;
529
  $code = $obj->get_ad_data();
530
 
531
+ if ($obj->get_process_php () && !get_disable_php_processing () && (!is_multisite() || is_main_site () || multisite_php_processing ()) && !defined ('AI_NO_PHP_PROCESSING')) {
532
  $global_name = 'GENERATED_CODE';
533
 
534
  if (isset ($obj->wp_options [$global_name]) && (!isset ($ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number]) || $ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number])) return $obj->wp_options [$global_name];
564
  $obj->wp_options [$global_name] = $code;
565
  }
566
 
567
+ $ai_total_block_php_time += microtime (true) - $start_time;
568
  }
569
 
570
  return $code;
597
  $this->wp_options [AI_OPTION_PARAGRAPH_NUMBER] = AD_ONE;
598
  $this->wp_options [AI_OPTION_MIN_PARAGRAPHS] = AD_EMPTY_DATA;
599
  $this->wp_options [AI_OPTION_MAX_PARAGRAPHS] = AD_EMPTY_DATA;
600
+ $this->wp_options [AI_OPTION_SKIP_FIRST_PARAGRAPHS] = AD_EMPTY_DATA;
601
+ $this->wp_options [AI_OPTION_SKIP_LAST_PARAGRAPHS] = AD_EMPTY_DATA;
602
  $this->wp_options [AI_OPTION_MIN_WORDS_ABOVE] = AD_EMPTY_DATA;
603
  $this->wp_options [AI_OPTION_MIN_WORDS] = AD_EMPTY_DATA;
604
  $this->wp_options [AI_OPTION_MAX_WORDS] = AD_EMPTY_DATA;
691
  $this->wp_options [AI_OPTION_DETECT_CLIENT_SIDE] = AI_DISABLED;
692
  $this->wp_options [AI_OPTION_CLIENT_SIDE_ACTION] = DEFAULT_CLIENT_SIDE_ACTION;
693
  $this->wp_options [AI_OPTION_CLOSE_BUTTON] = DEFAULT_CLOSE_BUTTON;
694
+ $this->wp_options [AI_OPTION_BACKGROUND] = DEFAULT_BACKGROUND;
695
+ $this->wp_options [AI_OPTION_BACKGROUND_IMAGE] = AD_EMPTY_DATA;
696
+ $this->wp_options [AI_OPTION_BACKGROUND_COLOR] = AD_EMPTY_DATA;
697
+ $this->wp_options [AI_OPTION_BACKGROUND_REPEAT] = DEFAULT_BACKGROUND_REPEAT;
698
+ $this->wp_options [AI_OPTION_BACKGROUND_SIZE] = DEFAULT_BACKGROUND_SIZE;
699
+ $this->wp_options [AI_OPTION_SET_BODY_BACKGROUND] = DEFAULT_SET_BODY_BACKGROUND;
700
  $this->wp_options [AI_OPTION_AUTO_CLOSE_TIME] = DEFAULT_AUTO_CLOSE_TIME;
701
  $this->wp_options [AI_OPTION_STAY_CLOSED_TIME] = DEFAULT_STAY_CLOSED_TIME;
702
  $this->wp_options [AI_OPTION_DELAY_SHOWING] = DEFAULT_DELAY_SHOWING;
973
  }
974
 
975
  public function sticky_style ($horizontal_position, $vertical_position, $horizontal_margin = null, $vertical_margin = null) {
976
+ global $ai_wp_data;
977
+
978
  $style = "";
979
 
980
+ $animation = $this->get_animation () != AI_ANIMATION_NONE;
981
+ $sticky_background = $this->get_background ();
982
+
983
  if ($horizontal_margin === null) $horizontal_margin = trim ($this->get_horizontal_margin ());
984
  if ($vertical_margin === null) $vertical_margin = trim ($this->get_vertical_margin ());
985
 
986
+ if ($sticky_background) $horizontal_margin = '';
987
 
988
  $main_content_fixed_width = is_numeric (get_main_content_element ());
989
  if ($main_content_fixed_width) {
990
  $main_content_shift = (int) (get_main_content_element () / 2);
991
  }
992
 
993
+ if ($horizontal_position == AI_STICK_HORIZONTAL_CENTER && $sticky_background && $this->get_set_body_background ()) {
994
+ $style = AI_ALIGNMENT_CSS_STICK_TO_THE_TOP;
995
+ } else
996
+ switch ($vertical_position) {
997
+ case AI_STICK_TO_THE_TOP:
998
+ switch ($horizontal_position) {
999
+ case AI_STICK_HORIZONTAL_CENTER:
1000
+ $style = AI_ALIGNMENT_CSS_STICK_TO_THE_TOP;
1001
+ break;
1002
+ default:
1003
+ if ($sticky_background) {
1004
+ $style = AI_ALIGNMENT_CSS_STICK_TO_THE_TOP;
1005
+ } else $style = AI_ALIGNMENT_CSS_STICK_TO_THE_TOP_OFFSET;
1006
+ break;
1007
+ }
1008
+ if ($vertical_margin != '') {
1009
+ $style = ai_change_css ($style, 'top', $vertical_margin . 'px');
1010
+ }
1011
  break;
1012
+ case AI_STICK_VERTICAL_CENTER:
1013
+ if ($animation) $style .= AI_ALIGNMENT_CSS_CENTER_VERTICAL_H_ANIM; else
1014
+ switch ($horizontal_position) {
1015
+ case AI_STICK_HORIZONTAL_CENTER:
1016
+ $style = AI_ALIGNMENT_CSS_CENTER_VERTICAL_H_ANIM;
1017
+ break;
1018
+ default:
1019
+ $style = AI_ALIGNMENT_CSS_CENTER_VERTICAL;
1020
+ break;
1021
+ }
1022
  break;
1023
+ case AI_SCROLL_WITH_THE_CONTENT:
1024
+ if ($sticky_background) {
1025
+ $style = AI_ALIGNMENT_CSS_SCROLL_WITH_THE_CONTENT_BKG;
1026
+ } else $style = AI_ALIGNMENT_CSS_SCROLL_WITH_THE_CONTENT;
1027
+ if ($vertical_margin != '') {
1028
+ $style = ai_change_css ($style, 'top', $vertical_margin . 'px');
1029
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1030
  break;
1031
+ case AI_STICK_TO_THE_BOTTOM:
1032
+ switch ($horizontal_position) {
1033
+ case AI_STICK_HORIZONTAL_CENTER:
1034
+ $style = AI_ALIGNMENT_CSS_STICK_TO_THE_BOTTOM;
1035
+ break;
1036
+ default:
1037
+ if ($sticky_background) {
1038
+ $style = AI_ALIGNMENT_CSS_STICK_TO_THE_BOTTOM;
1039
+ } else $style = AI_ALIGNMENT_CSS_STICK_TO_THE_BOTTOM_OFFSET;
1040
+ break;
1041
+ }
1042
+ if ($vertical_margin != '') {
1043
+ $style = ai_change_css ($style, 'bottom', $vertical_margin . 'px');
1044
+ }
1045
  break;
1046
  }
 
 
 
 
 
1047
 
1048
  switch ($horizontal_position) {
1049
  case AI_STICK_TO_THE_LEFT:
1050
+ if ($sticky_background) {
1051
+ $style .= AI_ALIGNMENT_CSS_STICK_TO_THE_LEFT_BKG;
1052
+ } else $style .= AI_ALIGNMENT_CSS_STICK_TO_THE_LEFT;
1053
  if ($horizontal_margin != '') {
1054
  $style = ai_change_css ($style, 'left', $horizontal_margin . 'px');
1055
  }
1056
  break;
1057
  case AI_STICK_TO_THE_CONTENT_LEFT:
1058
+ if ($sticky_background) {
1059
+ $style .= AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_LEFT_BKG;
1060
+ } else $style .= AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_LEFT;
1061
  if ($horizontal_margin != '') {
1062
  $style = ai_change_css ($style, 'margin-right', $horizontal_margin . 'px');
1063
  }
1066
  }
1067
  break;
1068
  case AI_STICK_HORIZONTAL_CENTER:
1069
+ if ($sticky_background) {
1070
+ $style .= AI_ALIGNMENT_CSS_STICK_CENTER_HORIZONTAL_BKG;
1071
+
1072
+ $background_css = '';
1073
+
1074
+ $background_color = trim ($this->get_background_color ());
1075
+ if ($background_color != '') {
1076
+ $background_css .= ' background-color: ' . $background_color . ';';
1077
+ }
1078
+
1079
+ $background_image = trim ($this->get_background_image ());
1080
+ if ($background_image != '') {
1081
+ $background_css .= ' background-image: url(' . $background_image . ');';
1082
+ }
1083
+
1084
+ $background_size = $this->get_background_size ();
1085
+ if ($background_size != AI_BACKGROUND_SIZE_DEFAULT) {
1086
+ switch ($background_size) {
1087
+ case AI_BACKGROUND_SIZE_COVER:
1088
+ $background_css .= ' background-size: cover;';
1089
+ break;
1090
+ case AI_BACKGROUND_SIZE_FIT:
1091
+ $background_css .= ' background-size: contain;';
1092
+ break;
1093
+ case AI_BACKGROUND_SIZE_FILL:
1094
+ $background_css .= ' background-size: 100% 100%;';
1095
+ break;
1096
+ }
1097
+ }
1098
+
1099
+ $background_repeat = $this->get_background_repeat ();
1100
+ if ($background_repeat != AI_BACKGROUND_REPEAT_DEFAULT) {
1101
+ switch ($background_repeat) {
1102
+ case AI_BACKGROUND_REPEAT_NO:
1103
+ $background_css .= ' background-repeat: no-repeat;';
1104
+ break;
1105
+ case AI_BACKGROUND_REPEAT_YES:
1106
+ $background_css .= ' background-repeat: repeat;';
1107
+ break;
1108
+ case AI_BACKGROUND_REPEAT_HORIZONTALY:
1109
+ $background_css .= ' background-repeat: repeat-x;';
1110
+ break;
1111
+ case AI_BACKGROUND_REPEAT_VERTICALLY:
1112
+ $background_css .= ' background-repeat: repeat-y;';
1113
+ break;
1114
+ case AI_BACKGROUND_REPEAT_SPACE:
1115
+ $background_css .= ' background-repeat: space;';
1116
+ break;
1117
+ case AI_BACKGROUND_REPEAT_ROUND:
1118
+ $background_css .= ' background-repeat: round;';
1119
+ break;
1120
+ }
1121
+ }
1122
+
1123
+ $style .= $background_css;
1124
+ if ($this->get_set_body_background ()) {
1125
+ $ai_wp_data [AI_BODY_STYLE] = trim ('background-attachment: fixed; ' . $background_css);
1126
+ $style .= 'display: none;';
1127
+ }
1128
+ }
1129
+ elseif ($animation) $style .= AI_ALIGNMENT_CSS_STICK_CENTER_HORIZONTAL_ANIM; else
1130
  switch ($vertical_position) {
1131
  case AI_STICK_VERTICAL_CENTER:
1132
  $style .= AI_ALIGNMENT_CSS_STICK_CENTER_HORIZONTAL_V;
1137
  }
1138
  break;
1139
  case AI_STICK_TO_THE_CONTENT_RIGHT:
1140
+ if ($sticky_background) {
1141
+ $style .= AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_RIGHT_BKG;
1142
+ } else $style .= AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_RIGHT;
1143
  if ($horizontal_margin != '') {
1144
  $style = ai_change_css ($style, 'margin-left', $horizontal_margin . 'px');
1145
  }
1152
  case AI_SCROLL_WITH_THE_CONTENT:
1153
  $style .= AI_ALIGNMENT_CSS_STICK_TO_THE_RIGHT_SCROLL;
1154
  if ($horizontal_margin != '') {
1155
+ $style = ai_change_css ($style, 'right', $horizontal_margin . 'px');
1156
  }
1157
  break;
1158
  default:
1159
+ if ($sticky_background) {
1160
+ $style .= AI_ALIGNMENT_CSS_STICK_TO_THE_RIGHT_BKG;
1161
+ } else $style .= AI_ALIGNMENT_CSS_STICK_TO_THE_RIGHT;
1162
  if ($horizontal_margin != '') {
1163
  $style = ai_change_css ($style, 'right', $horizontal_margin . 'px');
1164
  }
1177
  $custom_css = $this->get_custom_css ();
1178
  $horizontal_position = $this->get_horizontal_position ();
1179
  $vertical_position = $this->get_vertical_position ();
1180
+ $sticky_background = $this->get_background ();
1181
 
1182
  $main_content_fixed_width = is_numeric (get_main_content_element ());
1183
 
1184
  switch ($alignment_type) {
1185
  case AI_ALIGNMENT_STICKY:
1186
+ if (!$main_content_fixed_width) {
1187
  switch ($horizontal_position) {
1188
  case AI_STICK_TO_THE_CONTENT_LEFT:
1189
+ $classes []= 'ai-sticky-content';
1190
  $classes []= 'ai-sticky-left';
1191
  break;
1192
  case AI_STICK_TO_THE_CONTENT_RIGHT:
1193
+ $classes []= 'ai-sticky-content';
1194
  $classes []= 'ai-sticky-right';
1195
  break;
1196
  }
1197
+
1198
+ if ($sticky_background) {
1199
+ switch ($horizontal_position) {
1200
+ case AI_STICK_TO_THE_LEFT:
1201
+ case AI_STICK_TO_THE_CONTENT_LEFT:
1202
+ $classes [] = 'ai-sticky-background';
1203
+ $classes [] = 'ai-sticky-left';
1204
+ break;
1205
+ case AI_STICK_TO_THE_RIGHT:
1206
+ case AI_STICK_TO_THE_CONTENT_RIGHT:
1207
+ $classes [] = 'ai-sticky-background';
1208
+ $classes [] = 'ai-sticky-right';
1209
+ break;
1210
+ // case AI_STICK_HORIZONTAL_CENTER:
1211
+ // $classes [] = 'ai-fixed-background';
1212
+ // break;
1213
+ }
1214
+ }
1215
+ }
1216
+
1217
  switch ($vertical_position) {
1218
  case AI_SCROLL_WITH_THE_CONTENT:
1219
+ if ($sticky_background)
1220
+ $classes []= 'ai-sticky-background';
1221
+ else
1222
+ $classes []= 'ai-sticky-content';
1223
+
1224
  $classes []= 'ai-sticky-scroll';
1225
  break;
1226
  }
1227
  break;
1228
  case AI_ALIGNMENT_CUSTOM_CSS:
1229
  $clean_custom_css_code = str_replace (' ', '', $custom_css);
1230
+
1231
  if (!$main_content_fixed_width &&
1232
  strpos ($clean_custom_css_code, 'position:fixed') !== false &&
1233
+ strpos ($clean_custom_css_code, 'z-index:') !== false) {
1234
+
1235
+ if (strpos ($clean_custom_css_code, 'display:none') !== false) {
1236
+ if (strpos ($clean_custom_css_code, ';left:auto') !== false) {$classes []= 'ai-sticky-content'; $classes []= 'ai-sticky-left';} // to avoid margin-left:auto
1237
+ elseif (strpos ($clean_custom_css_code, 'right:auto') !== false) {$classes []= 'ai-sticky-content'; $classes []= 'ai-sticky-right';}
1238
+
1239
+ if (strpos ($clean_custom_css_code, 'margin-bottom:auto') !== false) {$classes []= 'ai-sticky-content'; $classes []= 'ai-sticky-scroll';}
1240
+ }
1241
+
1242
+ elseif ($sticky_background && strpos ($clean_custom_css_code, 'z-index:-') === false) {
1243
+
1244
+ // if (strpos ($clean_custom_css_code, ';top:0;left:0') !== false) $classes []= 'ai-fixed-background'; // to avoid detecting ai-sticky-left
1245
+ // else
1246
+ if (strpos ($clean_custom_css_code, ';left:0') !== false) {$classes [] = 'ai-sticky-background'; $classes []= 'ai-sticky-left';}
1247
+ elseif (strpos ($clean_custom_css_code, ';right:0') !== false) {$classes [] = 'ai-sticky-background'; $classes []= 'ai-sticky-right';}
1248
+ }
1249
 
 
1250
  }
1251
  break;
1252
  }
1253
 
1254
+ $classes = array_unique ($classes);
1255
+
1256
  return implode (' ', $classes);
1257
  }
1258
 
1273
 
1274
  if ($this->is_sticky ()) {
1275
 
1276
+ $horizontal_position = $this->get_horizontal_position ();
1277
+ $vertical_position = $this->get_vertical_position ();
1278
+ $animation = $this->get_animation ();
1279
+ $sticky_background = $this->get_background ();
1280
+
1281
  $stick_to_the_content_class = $this->stick_to_the_content_class ();
1282
 
1283
  if ($stick_to_the_content_class != '') {
1284
+ // if (!$sticky_background) {
1285
+ // $classes [] = 'ai-sticky-content';
1286
+ // }
1287
  $classes [] = $stick_to_the_content_class;
1288
  }
1289
+ if ($this->get_set_body_background ()) {
1290
+ // Not used
1291
+ $classes [] = 'ai-body-background';
1292
+ }
1293
 
1294
  $direction = '';
1295
 
1331
 
1332
  if ($vertical_position == AI_STICK_VERTICAL_CENTER) $classes [] = 'ai-center-v';
1333
 
1334
+ if (!$sticky_background) {
1335
+ switch ($horizontal_position) {
1336
+ case AI_STICK_TO_THE_LEFT:
1337
+ if ($animation == AI_ANIMATION_TURN) $direction = 'left';
1338
+ break;
1339
+ case AI_STICK_TO_THE_RIGHT:
1340
+ if ($animation == AI_ANIMATION_TURN) $direction = 'right';
1341
+ break;
1342
+ case AI_STICK_TO_THE_CONTENT_LEFT:
1343
+ case AI_STICK_TO_THE_CONTENT_RIGHT:
1344
+ if ($animation == AI_ANIMATION_SLIDE) $animation = AI_ANIMATION_SLIDE_FADE;
1345
+ break;
1346
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1347
 
1348
+ switch ($animation) {
1349
+ case AI_ANIMATION_FADE:
1350
+ $sticky_parameters .= ' data-aos="fade"';
1351
+ break;
1352
+ case AI_ANIMATION_SLIDE:
1353
+ $sticky_parameters .= ' data-aos="slide-'.$direction.'"';
1354
+ break;
1355
+ case AI_ANIMATION_SLIDE_FADE:
1356
+ $sticky_parameters .= ' data-aos="fade-'.$direction.'"';
 
 
 
1357
  break;
1358
+ case AI_ANIMATION_TURN:
1359
+ $classes [] = 'ai-sticky-turn';
1360
+ $sticky_parameters .= ' data-aos="flip-'.$direction.'"';
 
 
 
 
 
1361
  break;
1362
+ case AI_ANIMATION_FLIP:
1363
+ if ($direction == 'right') $direction = 'left';
1364
+ elseif ($direction == 'left') $direction = 'right';
1365
+ $sticky_parameters .= ' data-aos="flip-'.$direction.'"';
1366
+ break;
1367
+ case AI_ANIMATION_ZOOM_IN:
1368
+ $sticky_parameters .= ' data-aos="zoom-in-'.$direction.'"';
1369
+ break;
1370
+ case AI_ANIMATION_ZOOM_OUT:
1371
+ $sticky_parameters .= ' data-aos="zoom-out-'.$direction.'"';
1372
  break;
1373
  }
1374
 
1375
+ if (!$preview) {
1376
+ switch ($this->get_animation_trigger ()) {
1377
+ case AI_TRIGGER_PAGE_SCROLLED_PC:
1378
+ $pc = $this->get_animation_trigger_value ();
1379
+ if (!is_numeric ($pc)) $pc = 0;
1380
+ $pc = intval ($pc);
1381
+ if ($pc < 0) $pc = 0;
1382
+ if ($pc > 100) $pc = 100;
1383
+ $pc = number_format ($pc / 100, 2);
1384
+ if (!isset ($ai_wp_data [AI_TRIGGER_ELEMENTS])) $ai_wp_data [AI_TRIGGER_ELEMENTS] = array ();
1385
+ $ai_wp_data [AI_TRIGGER_ELEMENTS][$this->number] = $pc;
1386
+ $sticky_parameters .= ' data-aos-anchor="#ai-position-'.$this->number.'" data-aos-anchor-placement="top-top"';
1387
+ break;
1388
+ case AI_TRIGGER_PAGE_SCROLLED_PX:
1389
+ $px = $this->get_animation_trigger_value ();
1390
+ if (!is_numeric ($px)) $px = 0;
1391
+ $px = intval ($px);
1392
+ if ($px < 0) $px = 0;
1393
+ if (!isset ($ai_wp_data [AI_TRIGGER_ELEMENTS])) $ai_wp_data [AI_TRIGGER_ELEMENTS] = array ();
1394
+ $ai_wp_data [AI_TRIGGER_ELEMENTS][$this->number] = $px;
1395
+ $sticky_parameters .= ' data-aos-anchor="#ai-position-'.$this->number.'" data-aos-anchor-placement="top-top"';
1396
+ break;
1397
+ case AI_TRIGGER_ELEMENT_VISIBLE:
1398
+ $sticky_parameters .= ' data-aos-anchor="'.$this->get_animation_trigger_value ().'"';
1399
+ break;
1400
+ }
1401
+
1402
+ $offset = $this->get_animation_trigger_offset ();
1403
+ if (is_numeric ($offset)) {
1404
+ $offset = intval ($offset);
1405
+ if ($offset < -1000) $offset = - 1000;
1406
+ elseif ($offset > 1000) $offset = 1000;
1407
 
1408
+ $sticky_parameters .= ' data-aos-offset="'.$offset.'"';
1409
+ }
1410
 
1411
+ $delay = $this->get_animation_trigger_delay ();
1412
+ if (is_numeric ($delay) && $delay > 0) {
1413
+ $delay = intval ($delay);
1414
 
1415
+ $sticky_parameters .= ' data-aos-delay="'.$delay.'"';
1416
+ }
1417
 
1418
+ if ($this->get_animation_trigger_once ()) {
1419
+ $sticky_parameters .= ' data-aos-once="true"';
1420
+ }
1421
  }
1422
  }
1423
  }
1614
  return $option;
1615
  }
1616
 
1617
+ public function get_skip_first_paragraphs (){
1618
+ $option = isset ($this->wp_options [AI_OPTION_SKIP_FIRST_PARAGRAPHS]) ? $this->wp_options [AI_OPTION_SKIP_FIRST_PARAGRAPHS] : "";
1619
+ if ($option == '0') $option = '';
1620
+ return $option;
1621
+ }
1622
+
1623
+ public function get_skip_last_paragraphs (){
1624
+ $option = isset ($this->wp_options [AI_OPTION_SKIP_LAST_PARAGRAPHS]) ? $this->wp_options [AI_OPTION_SKIP_LAST_PARAGRAPHS] : "";
1625
+ if ($option == '0') $option = '';
1626
+ return $option;
1627
+ }
1628
+
1629
  public function get_minimum_words_above (){
1630
  $option = isset ($this->wp_options [AI_OPTION_MIN_WORDS_ABOVE]) ? $this->wp_options [AI_OPTION_MIN_WORDS_ABOVE] : "";
1631
  return $option;
2527
  if (count ($matches [1]) != 0) {
2528
  $viewport_parameters = array ();
2529
  foreach ($matches [1] as $match) {
2530
+ // $viewport_parameters []= $ai_wp_data [AI_SHORTCODES]['viewport'][$match];
2531
+ $viewport_parameters []= $this->shortcodes ['viewport'][$match];
2532
  }
2533
  if ($ai_wp_data [AI_WP_AMP_PAGE]) {
2534
  $processed_code = preg_replace ('/\|viewport([0-9]+?)\|/', '', $processed_code);
2706
 
2707
  if (!$ai_wp_data [AI_CODE_FOR_IFRAME]) {
2708
  $alignment_type = $this->get_alignment_type ();
2709
+ if ($force_close_button || (($close_button != AI_CLOSE_NONE || $auto_close_time) && !$ai_wp_data [AI_WP_AMP_PAGE] && $alignment_type != AI_ALIGNMENT_NO_WRAPPING && !$this->get_background ())) {
2710
  switch ($close_button) {
2711
  case AI_CLOSE_TOP_RIGHT:
2712
  $button_class = 'ai-close-button ai-close-unprocessed';
2887
  // $code = $this->replace_ai_tags (do_shortcode ($this->ai_getCode (), true)); // Does not expand shortcodes inside HTML <div id='div-gpt-ad-1234567890-[ADINSERTER counter="block"]'>
2888
  $code = replace_ai_tags (do_shortcode ($this->ai_getCode ()), $this->get_ad_general_tag());
2889
  unset ($ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']);
2890
+
2891
+ if (isset ($ai_wp_data [AI_SHORTCODES])) {
2892
+ $this->shortcodes = $ai_wp_data [AI_SHORTCODES];
2893
+ }
2894
  }
2895
  }
2896
 
2904
 
2905
  if ($not_iframe_or_inside) {
2906
 
 
2907
  // [ADINSERTER CHECK]
2908
 
2909
  if (function_exists ('ai_check_separators')) {
2913
  }
2914
  }
2915
 
 
2916
  // [ADINSERTER COUNT]
2917
 
2918
  preg_match_all ('/\|count([0-9]+?)\|/', $processed_code, $matches);
2919
  if (count ($matches [1]) != 0) {
2920
  $count_parameters = array ();
2921
  foreach ($matches [1] as $match) {
2922
+ // $count_parameters []= $ai_wp_data [AI_SHORTCODES]['count'][$match];
2923
+ $count_parameters []= $this->shortcodes ['count'][$match];
2924
  }
2925
  $processed_code = preg_replace ('/\|count([0-9]+?)\|/', AD_COUNT_SEPARATOR, $processed_code);
2926
+ // } else if (isset ($ai_wp_data [AI_SHORTCODES]['count'])) $count_parameters = $ai_wp_data [AI_SHORTCODES]['count'];
2927
+ } else if (isset ($this->shortcodes ['count'])) $count_parameters = $this->shortcodes ['count'];
2928
 
2929
  if (strpos ($processed_code, AD_COUNT_SEPARATOR) !== false) {
2930
  $ads = explode (AD_COUNT_SEPARATOR, $processed_code);
2931
 
2932
+ $allow_empty = false;
2933
+ if (isset ($count_parameters [0]['count'])) {
2934
+ if (strpos (strtolower ($count_parameters [0]['count']), 'empty') !== false) {
2935
+ $allow_empty = true;
2936
+ }
2937
+ }
2938
+
2939
+ if (trim ($ads [0]) == '' && !$allow_empty) {
2940
+ unset ($ads [0]);
2941
+ $ads = array_values ($ads);
2942
+ // $count_parameters are shifted (the first $count_parameters is for the deleted empty option)
2943
+ }
2944
+
2945
  $this->count_names = null;
2946
 
2947
  if ($ai_wp_data [AI_FORCE_SERVERSIDE_CODE]) {
2950
  foreach ($ads as $index => $ad) $this->count_names []= $index + 1;
2951
  } else {
2952
  if (isset ($ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $this->number])) {
2953
+ $block_counter = $ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $this->number];
2954
+ $option_index = $block_counter - 1;
2955
 
2956
+ if (isset ($count_parameters [$block_counter - 1]['count'])) {
2957
+ if (strpos (strtolower ($count_parameters [$block_counter - 1]['count']), 'shuffle') !== false) {
2958
+ $ai_wp_data [AI_COUNT_SHUFFLE][$this->number] = $ads;
2959
+ shuffle ($ai_wp_data [AI_COUNT_SHUFFLE][$this->number]);
 
 
2960
  }
2961
+ if (strpos (strtolower ($count_parameters [$block_counter - 1]['count']), 'repeat') !== false) {
2962
+ $ai_wp_data [AI_COUNT_REPEAT][$this->number] = true;
 
2963
  }
2964
+ }
2965
 
2966
+ if (isset ($ai_wp_data [AI_COUNT_SHUFFLE][$this->number])) {
2967
+ $ads = $ai_wp_data [AI_COUNT_SHUFFLE][$this->number];
2968
+ }
2969
+ if (isset ($ai_wp_data [AI_COUNT_REPEAT][$this->number])) {
2970
+ $option_index = $option_index % count ($ads);
2971
+ }
2972
+
2973
+ if ($option_index >= 0 && $option_index < count ($ads)) {
2974
+ $processed_code = $ads [$option_index];
2975
  } else {
2976
  $processed_code = '';
2977
  $additional_code = '';
2990
  preg_match_all ('/\|rotate([0-9]+?)\|/', $processed_code, $matches);
2991
 
2992
  if (count ($matches [1]) != 0) {
2993
+
2994
  $rotate_parameters = array ();
2995
  foreach ($matches [1] as $match) {
2996
+ // $rotate_parameters []= $ai_wp_data [AI_SHORTCODES]['rotate'][$match];
2997
+ $rotate_parameters []= $this->shortcodes ['rotate'][$match];
2998
  }
2999
  $processed_code = preg_replace ('/\|rotate([0-9]+?)\|/', AD_ROTATE_SEPARATOR, $processed_code);
3000
+ // } else if (isset ($ai_wp_data [AI_SHORTCODES]['rotate'])) $rotate_parameters = $ai_wp_data [AI_SHORTCODES]['rotate'];
3001
+ } else if (isset ($this->shortcodes ['rotate'])) $rotate_parameters = $this->shortcodes ['rotate'];
3002
 
3003
  if (strpos ($processed_code, AD_ROTATE_SEPARATOR) !== false) {
3004
  $ads = explode (AD_ROTATE_SEPARATOR, $processed_code);
3225
  $ad = trim ($head_body_code [1]);
3226
 
3227
  // Insert all HEAD codes for all options into <head> section
3228
+ // if ($ai_wp_data [AI_SHORTCODES]['head'][0]['group'] != '') {
3229
+ if ($this->shortcodes ['head'][0]['group'] != '') {
3230
+ // $ai_wp_data [AI_HEAD_GROUPS][strtolower ($ai_wp_data [AI_SHORTCODES]['head'][0]['group'])] []= trim ($head_body_code [0]);
3231
+ $ai_wp_data [AI_HEAD_GROUPS][strtolower ($this->shortcodes ['head'][0]['group'])] []= trim ($head_body_code [0]);
3232
  } else $ai_wp_data [AI_HEAD_CODES] []= trim ($head_body_code [0]);
3233
  }
3234
 
3306
  $this->w3tc_code .= ' if ($ai_enabled) {$groups_marker = base64_decode (\'' . base64_encode ($groups_marker) .
3307
  '\'); global $ai_groups; if (preg_match ($groups_marker, $ai_code, $matches)) {$ai_groups = json_decode (base64_decode ($matches [1])); $ai_code = preg_replace ($groups_marker, \'\', $ai_code);}}';
3308
 
3309
+ // if (isset ($this->shortcodes ['viewport'])) {
3310
+ // $this->w3tc_code .= 'if ($ai_enabled) $ai_code = ai_process_viewport_separators ($ai_code, unserialize (base64_decode (\''.base64_encode (serialize ($this->shortcodes ['viewport'])).'\')));';
3311
  // }
3312
 
3313
  $processed_code = $this->generate_html_from_w3tc_code ();
3352
  $head_body_code = explode (AD_HEAD_SEPARATOR, $processed_code);
3353
  $processed_code = trim ($head_body_code [1]);
3354
 
3355
+ // $once = isset ($ai_wp_data [AI_SHORTCODES]['head'][0]['head']) && strtolower ($ai_wp_data [AI_SHORTCODES]['head'][0]['head']) == 'once';
3356
+ $once = isset ($this->shortcodes ['head'][0]['head']) && strtolower ($this->shortcodes ['head'][0]['head']) == 'once';
3357
 
3358
  if (!$once || !$this->head_code_written) {
3359
+ // if ($ai_wp_data [AI_SHORTCODES]['head'][0]['group'] != '') {
3360
+ if ($this->shortcodes ['head'][0]['group'] != '') {
3361
+ // $ai_wp_data [AI_HEAD_GROUPS][strtolower ($ai_wp_data [AI_SHORTCODES]['head'][0]['group'])] []= trim ($head_body_code [0], "\n\r");
3362
+ $ai_wp_data [AI_HEAD_GROUPS][strtolower ($this->shortcodes ['head'][0]['group'])] []= trim ($head_body_code [0], "\n\r");
3363
  } else $ai_wp_data [AI_HEAD_CODES] []= trim ($head_body_code [0]);
3364
  $this->head_code_written = true;
3365
  }
3406
  // [ADINSERTER VIEWPORT]
3407
 
3408
  if ($this->w3tc_code != '') {
3409
+ // if (isset ($ai_wp_data [AI_SHORTCODES]['viewport'])) {
3410
+ if (isset ($this->shortcodes ['viewport'])) {
3411
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
3412
  $this->w3tc_debug []= 'PROCESS VIEWPORT SHORTCODES';
3413
  }
3414
 
3415
+ // $this->w3tc_code .= 'if ($ai_enabled) $ai_code = ai_process_viewport_separators ($ai_code, unserialize (base64_decode (\''.base64_encode (serialize ($ai_wp_data [AI_SHORTCODES]['viewport'])).'\')));';
3416
+ $this->w3tc_code .= 'if ($ai_enabled) $ai_code = ai_process_viewport_separators ($ai_code, unserialize (base64_decode (\''.base64_encode (serialize ($this->shortcodes ['viewport'])).'\')));';
3417
 
3418
  $processed_code = $this->generate_html_from_w3tc_code ();
3419
  }
4545
  return $option;
4546
  }
4547
 
4548
+ public function get_background (){
4549
+ $option = isset ($this->wp_options [AI_OPTION_BACKGROUND]) ? $this->wp_options [AI_OPTION_BACKGROUND] : DEFAULT_BACKGROUND;
4550
+ return $option;
4551
+ }
4552
+
4553
+ public function get_background_image (){
4554
+ $option = isset ($this->wp_options [AI_OPTION_BACKGROUND_IMAGE]) ? $this->wp_options [AI_OPTION_BACKGROUND_IMAGE] : AD_EMPTY_DATA;
4555
+ return $option;
4556
+ }
4557
+
4558
+ public function get_background_color (){
4559
+ $option = isset ($this->wp_options [AI_OPTION_BACKGROUND_COLOR]) ? $this->wp_options [AI_OPTION_BACKGROUND_COLOR] : AD_EMPTY_DATA;
4560
+ return $option;
4561
+ }
4562
+
4563
+ public function get_background_repeat (){
4564
+ $option = isset ($this->wp_options [AI_OPTION_BACKGROUND_REPEAT]) ? $this->wp_options [AI_OPTION_BACKGROUND_REPEAT] : DEFAULT_BACKGROUND_REPEAT;
4565
+ return $option;
4566
+ }
4567
+
4568
+ public function get_background_size (){
4569
+ $option = isset ($this->wp_options [AI_OPTION_BACKGROUND_SIZE]) ? $this->wp_options [AI_OPTION_BACKGROUND_SIZE] : DEFAULT_BACKGROUND_SIZE;
4570
+ return $option;
4571
+ }
4572
+
4573
+ public function get_set_body_background (){
4574
+ if (!get_output_buffering ()) {
4575
+ return false;
4576
+ }
4577
+ $option = isset ($this->wp_options [AI_OPTION_SET_BODY_BACKGROUND]) ? $this->wp_options [AI_OPTION_SET_BODY_BACKGROUND] : DEFAULT_SET_BODY_BACKGROUND;
4578
+ return $option;
4579
+ }
4580
+
4581
 
4582
  public function get_visitor_max_impressions () {
4583
  $option = isset ($this->wp_options [AI_OPTION_VISITOR_MAX_IMPRESSIONS]) ? $this->wp_options [AI_OPTION_VISITOR_MAX_IMPRESSIONS] : DEFAULT_VISITOR_MAX_IMPRESSIONS;
5188
  }
5189
 
5190
  public function before_paragraph ($content, $position_preview = false, $before_image = false) {
5191
+ global $ai_wp_data, $ai_last_check, $special_element_tags, $ad_inserter_globals;
5192
 
5193
  $multibyte = $ai_wp_data [AI_MBSTRING_LOADED] && get_paragraph_counting_functions() == AI_MULTIBYTE_PARAGRAPH_COUNTING_FUNCTIONS;
5194
 
5498
  $direction_type = AI_DIRECTION_FROM_TOP;
5499
  } else $direction_type = $this->get_direction_type();
5500
 
5501
+
5502
  // Prepare $paragraph_end_positions
5503
  if ($position_preview || $position_text == '') {
5504
  if (!isset ($paragraph_end_positions)) {
5559
  foreach ($positions as $index => $position) {
5560
  if (isset ($position [0]) && $position [0] == '%') {
5561
  unset ($positions [$index]);
5562
+
5563
+ $position = substr ($position, 1);
5564
+ $mod_value = $position;
5565
+ $offset_value = 0;
5566
+
5567
+ if (strpos ($mod_value, '@') !== false) {
5568
+ $mod_value_array = explode ('@', $mod_value);
5569
+ $mod_value = $mod_value_array [0];
5570
+ $offset_value = $mod_value_array [1];
5571
+ }
5572
+
5573
+ if (is_numeric ($mod_value) && $mod_value > 0 && is_numeric ($offset_value)) {
5574
  foreach ($paragraph_positions as $index => $paragraph_position) {
5575
+ if (($index + 1 - $offset_value) % $mod_value == 0) $new_positions []= $index;
5576
  }
5577
  }
5578
  }
5594
  sort ($positions);
5595
  }
5596
  elseif (isset ($position_text [0]) && $position_text [0] == '%') {
5597
+ $position_text = substr ($position_text, 1);
5598
+ $mod_value = $position_text;
5599
+ $offset_value = 0;
5600
+
5601
+ if (strpos ($mod_value, '@') !== false) {
5602
+ $mod_value_array = explode ('@', $mod_value);
5603
+ $mod_value = $mod_value_array [0];
5604
+ $offset_value = $mod_value_array [1];
5605
+ }
5606
+
5607
+ if (is_numeric ($mod_value) && $mod_value > 0 && is_numeric ($offset_value)) {
5608
  foreach ($paragraph_positions as $index => $paragraph_position) {
5609
+ if (($index + 1 - $offset_value) % $mod_value == 0) $positions []= $index;
5610
  }
5611
  }
5612
  }
5686
  }
5687
  }
5688
 
5689
+
5690
  $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
5691
 
5692
  if (!empty ($positions) && !$before_image) {
5887
  }
5888
 
5889
 
5890
+ if (!$before_image) {
5891
+ $no_insertion_first_paragraphs = $this->get_skip_first_paragraphs ();
5892
+ $no_insertion_last_paragraphs = $this->get_skip_last_paragraphs ();
5893
+
5894
+ if ($no_insertion_first_paragraphs != 0 && $no_insertion_first_paragraphs <= count ($paragraph_positions)) {
5895
+ foreach ($positions as $index => $position) {
5896
+ if ($position < $no_insertion_first_paragraphs) unset ($positions [$index]);
5897
+ }
5898
+ $positions = array_values ($positions);
5899
+ }
5900
+ if ($no_insertion_last_paragraphs != 0 && $no_insertion_last_paragraphs <= count ($paragraph_positions)) {
5901
+ foreach ($positions as $index => $position) {
5902
+ if ($position >= count ($paragraph_positions) - $no_insertion_last_paragraphs) unset ($positions [$index]);
5903
+ }
5904
+ $positions = array_values ($positions);
5905
+ }
5906
+ }
5907
+
5908
+
5909
  if ($position_preview || !empty ($positions)) {
5910
  $offset = 0;
5911
  if (!empty ($positions)) $ai_last_check = AI_CHECK_PARAGRAPH_NUMBER;
5912
 
 
 
5913
  $real_positions = array ();
5914
  foreach ($positions as $position_index) $real_positions []= $position_index >= 0 ? $position_index + 1 : '*';
5915
  if ($debug_processing && $this->number != 0 && count ($real_positions) != 0) ai_log ('BLOCK ' . $this->number . ' INSERTION POSITIONS: ' . implode (', ', $real_positions));
5930
  $debug_label = $before_image ? 'BI' : 'BP';
5931
  $inserted_code = "[[AI_".$debug_label.($counter + 1)."=".$paragraph_words."]]";
5932
  }
5933
+ elseif (!empty ($positions) && in_array ($counter, $positions)) {
5934
 
5935
  $inserted = false;
5936
 
5942
 
5943
  $ai_last_check = AI_CHECK_MAX_PAGE_BLOCKS;
5944
  if (!$max_page_blocks_enabled || $ai_wp_data [AI_PAGE_BLOCKS] < get_max_page_blocks ()) {
5945
+ // Last check before insertion
5946
+ if ($this->check_and_increment_block_counter ()) {
5947
+ // Increment page block counter
5948
+ if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
5949
+
5950
+ $ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
5951
+ if (!$this->get_debug_disable_insertion ()) {
5952
+ $inserted_code = $this->get_code_for_serverside_insertion ();
5953
+ $ai_last_check = AI_CHECK_INSERTED;
5954
+ $this->clear_code_cache ();
5955
+ $inserted = true;
5956
+ }
5957
  }
5958
  }
5959
  }
6318
  $direction_type = AI_DIRECTION_FROM_TOP;
6319
  } else $direction_type = $this->get_direction_type();
6320
 
6321
+
6322
  // Prepare $paragraph_start_positions
6323
  if ($position_preview || $position_text == '') {
6324
  if (!isset ($paragraph_start_positions)) {
6379
  foreach ($positions as $index => $position) {
6380
  if (isset ($position [0]) && $position [0] == '%') {
6381
  unset ($positions [$index]);
6382
+
6383
+ $position = substr ($position, 1);
6384
+ $mod_value = $position;
6385
+ $offset_value = 0;
6386
+
6387
+ if (strpos ($mod_value, '@') !== false) {
6388
+ $mod_value_array = explode ('@', $mod_value);
6389
+ $mod_value = $mod_value_array [0];
6390
+ $offset_value = $mod_value_array [1];
6391
+ }
6392
+
6393
+ if (is_numeric ($mod_value) && $mod_value > 0 && is_numeric ($offset_value)) {
6394
  foreach ($paragraph_positions as $index => $paragraph_position) {
6395
+ if (($index + 1 - $offset_value) % $mod_value == 0) $new_positions []= $index;
6396
  }
6397
  }
6398
  }
6414
  sort ($positions);
6415
  }
6416
  elseif (isset ($position_text [0]) && $position_text [0] == '%') {
6417
+ $position_text = substr ($position_text, 1);
6418
+ $mod_value = $position_text;
6419
+ $offset_value = 0;
6420
+
6421
+ if (strpos ($mod_value, '@') !== false) {
6422
+ $mod_value_array = explode ('@', $mod_value);
6423
+ $mod_value = $mod_value_array [0];
6424
+ $offset_value = $mod_value_array [1];
6425
+ }
6426
+
6427
+ if (is_numeric ($mod_value) && $mod_value > 0 && is_numeric ($offset_value)) {
6428
  foreach ($paragraph_positions as $index => $paragraph_position) {
6429
+ if (($index + 1 - $offset_value) % $mod_value == 0) $positions []= $index;
6430
  }
6431
  }
6432
  }
6506
  }
6507
  }
6508
 
6509
+
6510
  $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
6511
 
6512
  if (!empty ($positions) && !$after_image) {
6707
  }
6708
 
6709
 
6710
+ if (!$after_image) {
6711
+ $no_insertion_first_paragraphs = $this->get_skip_first_paragraphs ();
6712
+ $no_insertion_last_paragraphs = $this->get_skip_last_paragraphs ();
6713
+
6714
+ if ($no_insertion_first_paragraphs != 0 && $no_insertion_first_paragraphs <= count ($paragraph_positions)) {
6715
+ foreach ($positions as $index => $position) {
6716
+ if ($position < $no_insertion_first_paragraphs) unset ($positions [$index]);
6717
+ }
6718
+ $positions = array_values ($positions);
6719
+ }
6720
+ if ($no_insertion_last_paragraphs != 0 && $no_insertion_last_paragraphs <= count ($paragraph_positions)) {
6721
+ foreach ($positions as $index => $position) {
6722
+ if ($position >= count ($paragraph_positions) - $no_insertion_last_paragraphs) unset ($positions [$index]);
6723
+ }
6724
+ $positions = array_values ($positions);
6725
+ }
6726
+ }
6727
+
6728
+
6729
  if ($position_preview || !empty ($positions)) {
6730
  $offset = 0;
6731
  if (!empty ($positions)) $ai_last_check = AI_CHECK_PARAGRAPH_NUMBER;
6741
  foreach ($paragraph_positions as $counter => $paragraph_position) {
6742
  $debug_label = $after_image ? 'AI' : 'AP';
6743
  if ($position_preview) $inserted_code = "[[AI_".$debug_label.($counter + 1)."]]";
6744
+ elseif (!empty ($positions) && in_array ($counter, $positions)) {
6745
 
6746
  $inserted = false;
6747
 
6753
 
6754
  $ai_last_check = AI_CHECK_MAX_PAGE_BLOCKS;
6755
  if (!$max_page_blocks_enabled || $ai_wp_data [AI_PAGE_BLOCKS] < get_max_page_blocks ()) {
6756
+ // Last check before insertion
6757
+ if ($this->check_and_increment_block_counter ()) {
6758
+ // Increment page block counter
6759
+ if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
6760
+
6761
+ $ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
6762
+ if (!$this->get_debug_disable_insertion ()) {
6763
+ $inserted_code = $this->get_code_for_serverside_insertion ();
6764
+ $ai_last_check = AI_CHECK_INSERTED;
6765
+ $this->clear_code_cache ();
6766
+ $inserted = true;
6767
+ }
6768
  }
6769
  }
6770
  }
7821
 
7822
  if (function_exists ('ai_extract_features_2')) ai_extract_features_2 ($this);
7823
 
7824
+ if ($this->stick_to_the_content_class () != '' || $this->get_background ()) $ai_wp_data [AI_STICK_TO_THE_CONTENT] = true;
7825
 
7826
  switch ($this->get_automatic_insertion()) {
7827
  case AI_AUTOMATIC_INSERTION_BEFORE_HTML_ELEMENT:
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.6.7');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
@@ -87,6 +87,8 @@ define ('AI_OPTION_AUTOMATIC_INSERTION', 'display_type');
87
  define ('AI_OPTION_PARAGRAPH_NUMBER', 'paragraph_number');
88
  define ('AI_OPTION_MIN_PARAGRAPHS', 'min_paragraphs');
89
  define ('AI_OPTION_MAX_PARAGRAPHS', 'max_paragraphs');
 
 
90
  define ('AI_OPTION_MIN_WORDS_ABOVE', 'min_words_above');
91
  define ('AI_OPTION_COUNT_INSIDE_BLOCKQUOTE', 'count_inside_blockquote');
92
  define ('AI_OPTION_COUNT_INSIDE', 'count_inside');
@@ -179,6 +181,12 @@ define ('AI_OPTION_ANIMATION_TRIGGER_VALUE', 'animation-trigger-value');
179
  define ('AI_OPTION_ANIMATION_TRIGGER_OFFSET', 'animation-trigger-offset');
180
  define ('AI_OPTION_ANIMATION_TRIGGER_DELAY', 'animation-trigger-delay');
181
  define ('AI_OPTION_ANIMATION_TRIGGER_ONCE', 'animation-trigger-once');
 
 
 
 
 
 
182
  define ('AI_OPTION_DELAY_SHOWING', 'delay-showing');
183
  define ('AI_OPTION_SHOW_EVERY', 'show-every');
184
  define ('AI_OPTION_VISITOR_MAX_IMPRESSIONS', 'visitor-max-imp');
@@ -404,6 +412,7 @@ define('AI_STICK_TO_THE_CONTENT_LEFT', 1);
404
  define('AI_STICK_HORIZONTAL_CENTER', 2);
405
  define('AI_STICK_TO_THE_CONTENT_RIGHT', 3);
406
  define('AI_STICK_TO_THE_RIGHT', 4);
 
407
 
408
  define('AI_TEXT_ENG_STICK_TO_THE_LEFT', 'Stick to the left');
409
  define('AI_TEXT_ENG_STICK_TO_THE_CONTENT_LEFT', 'Stick to the content left');
@@ -446,6 +455,30 @@ define('AI_TEXT_ENG_PAGE_SCROLLED_PC', 'Page scrolled (%)');
446
  define('AI_TEXT_ENG_PAGE_SCROLLED_PX', 'Page scrolled (px)');
447
  define('AI_TEXT_ENG_ELEMENT_VISIBLE', 'Element visible');
448
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
449
  define('AI_STICKY_Z_INDEX', 9995); // update ad-inserter.js
450
 
451
  define('AI_ALIGNMENT_CSS_DEFAULT', 'margin: 8px 0; clear: both;');
@@ -464,18 +497,24 @@ define('AI_ALIGNMENT_CSS_STICK_TO_THE_TOP', ' top: 0px;');
464
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_TOP_OFFSET', ' top: 100px;');
465
  define('AI_ALIGNMENT_CSS_CENTER_VERTICAL', ' top: 50%; transform: translate(0, -50%);');
466
  define('AI_ALIGNMENT_CSS_CENTER_VERTICAL_H_ANIM', ' top: 50%;');
467
- //define('AI_ALIGNMENT_CSS_SCROLL_WITH_THE_CONTENT', ' position: relative; margin-bottom: auto; width: fit-content; top: 100px; display: none;');
468
  define('AI_ALIGNMENT_CSS_SCROLL_WITH_THE_CONTENT', ' position: absolute; margin-bottom: auto; width: fit-content; width: -moz-fit-content; top: 100px; display: none;');
 
469
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_BOTTOM', ' bottom: 0px;');
470
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_BOTTOM_OFFSET', ' bottom: 100px;');
471
 
472
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_LEFT', ' left: 0px;');
 
473
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_LEFT', ' left: auto; margin-right: 10px; width: fit-content; width: -moz-fit-content; display: none;');
 
474
  define('AI_ALIGNMENT_CSS_STICK_CENTER_HORIZONTAL', ' text-align: center; left: 50%; transform: translate(-50%);');
475
  define('AI_ALIGNMENT_CSS_STICK_CENTER_HORIZONTAL_V', ' text-align: center; left: 50%; transform: translate(-50%, -50%);');
476
  define('AI_ALIGNMENT_CSS_STICK_CENTER_HORIZONTAL_ANIM', ' text-align: center; left: 50%;');
 
 
477
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_RIGHT', ' right: auto; margin-left: 10px; width: fit-content; width: -moz-fit-content; display: none;');
 
478
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_RIGHT', ' right: 0px;');
 
479
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_RIGHT_SCROLL', ' right: 0px; margin-left: auto;');
480
 
481
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_LEFT_W', ' right: calc(50%); display: block;');
@@ -771,6 +810,10 @@ define ('AI_TRANSIENT_ADB_CLASS_EXPIRATION', 48 * 3600);
771
  define ('AI_TRANSIENT_ADB_FILES_VERSION', 'ai-adb-version');
772
  define ('AI_TRANSIENT_ADB_SEED', 'ai-adb-seed');
773
 
 
 
 
 
774
  define ('AI_SYNTAX_HIGHLIGHTER_THEME', 'ad_inserter');
775
  define ('DEFAULT_SYNTAX_HIGHLIGHTER_THEME', AI_SYNTAX_HIGHLIGHTER_THEME);
776
  define ('DEFAULT_BLOCK_CLASS_NAME', 'code-block');
@@ -820,6 +863,7 @@ define ('DEFAULT_GEO_DB', AI_GEO_DB_WEBNET77);
820
  define ('DEFAULT_GEO_DB_UPDATES', AI_DISABLED);
821
  define ('DEFAULT_CLOSE_BUTTON', AI_CLOSE_NONE);
822
  define ('DEFAULT_AUTO_CLOSE_TIME', '');
 
823
  define ('DEFAULT_STAY_CLOSED_TIME', '');
824
  define ('DEFAULT_SERVER_SIDE_INSERTION', AI_AUTOMATIC_INSERTION_FOOTER);
825
  define ('DEFAULT_HTML_ELEMENT_INSERTION', AI_HTML_INSERTION_CLIENT_SIDE);
@@ -873,6 +917,9 @@ define ('DEFAULT_EXTERNAL_TRACKING_CATEGORY', 'Ad Inserter Pro');
873
  define ('DEFAULT_EXTERNAL_TRACKING_ACTION', '[EVENT]');
874
  define ('DEFAULT_EXTERNAL_TRACKING_LABEL', '[BLOCK_NUMBER] - [BLOCK_VERSION_NAME]');
875
  define ('DEFAULT_MAXMIND_LICENSE_KEY', '');
 
 
 
876
 
877
  define ('AI_ADBLOCKING_DETECTION', true);
878
  define ('AI_NORMAL_HEADER_STYLES', true);
@@ -1001,6 +1048,7 @@ define ('AI_CHECK_LIMIT_CLICKS_PER_TIME_PERIOD', 60);
1001
  define ('AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE_ELEMENTS', 61);
1002
  define ('AI_CHECK_PARAGRAPHS_MAX_NUMBER', 62);
1003
  define ('AI_CHECK_CLIENT', 63);
 
1004
 
1005
 
1006
  define ('AI_PT_NONE', - 1);
@@ -1048,7 +1096,7 @@ define ('AI_SHORTCODES', 24);
1048
  define ('AI_VIEWPORT_NAMES', 25);
1049
  define ('AI_CLOSE_BUTTONS', 26);
1050
  define ('AI_DISABLE_CACHING', 27);
1051
- define ('AI_COUNT', 28);
1052
  define ('AI_CLIENT_SIDE_INSERTION', 29);
1053
  define ('AI_USER_AGENT', 30);
1054
  define ('AI_STICK_TO_THE_CONTENT', 31);
@@ -1087,6 +1135,8 @@ define ('AI_BLOCK_PHP_CODE_CACHING', 64);
1087
  define ('AI_FALLBACK_LEVEL', 65);
1088
  define ('AI_HEAD', 66);
1089
  define ('AI_DISABLED_BLOCKS', 67);
 
 
1090
 
1091
  define ('AI_CONTEXT_NONE', 0);
1092
  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.6.8');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
87
  define ('AI_OPTION_PARAGRAPH_NUMBER', 'paragraph_number');
88
  define ('AI_OPTION_MIN_PARAGRAPHS', 'min_paragraphs');
89
  define ('AI_OPTION_MAX_PARAGRAPHS', 'max_paragraphs');
90
+ define ('AI_OPTION_SKIP_FIRST_PARAGRAPHS', 'skip_first_paragraphs');
91
+ define ('AI_OPTION_SKIP_LAST_PARAGRAPHS', 'skip_last_paragraphs');
92
  define ('AI_OPTION_MIN_WORDS_ABOVE', 'min_words_above');
93
  define ('AI_OPTION_COUNT_INSIDE_BLOCKQUOTE', 'count_inside_blockquote');
94
  define ('AI_OPTION_COUNT_INSIDE', 'count_inside');
181
  define ('AI_OPTION_ANIMATION_TRIGGER_OFFSET', 'animation-trigger-offset');
182
  define ('AI_OPTION_ANIMATION_TRIGGER_DELAY', 'animation-trigger-delay');
183
  define ('AI_OPTION_ANIMATION_TRIGGER_ONCE', 'animation-trigger-once');
184
+ define ('AI_OPTION_BACKGROUND', 'background');
185
+ define ('AI_OPTION_BACKGROUND_COLOR', 'background-color');
186
+ define ('AI_OPTION_BACKGROUND_IMAGE', 'background-image');
187
+ define ('AI_OPTION_BACKGROUND_SIZE', 'background-size');
188
+ define ('AI_OPTION_BACKGROUND_REPEAT', 'background-repeat');
189
+ define ('AI_OPTION_SET_BODY_BACKGROUND', 'set-body-background');
190
  define ('AI_OPTION_DELAY_SHOWING', 'delay-showing');
191
  define ('AI_OPTION_SHOW_EVERY', 'show-every');
192
  define ('AI_OPTION_VISITOR_MAX_IMPRESSIONS', 'visitor-max-imp');
412
  define('AI_STICK_HORIZONTAL_CENTER', 2);
413
  define('AI_STICK_TO_THE_CONTENT_RIGHT', 3);
414
  define('AI_STICK_TO_THE_RIGHT', 4);
415
+ //define('AI_STICK_BACKGROUND', 5);
416
 
417
  define('AI_TEXT_ENG_STICK_TO_THE_LEFT', 'Stick to the left');
418
  define('AI_TEXT_ENG_STICK_TO_THE_CONTENT_LEFT', 'Stick to the content left');
455
  define('AI_TEXT_ENG_PAGE_SCROLLED_PX', 'Page scrolled (px)');
456
  define('AI_TEXT_ENG_ELEMENT_VISIBLE', 'Element visible');
457
 
458
+ define('AI_BACKGROUND_REPEAT_DEFAULT', 0);
459
+ define('AI_BACKGROUND_REPEAT_NO', 1);
460
+ define('AI_BACKGROUND_REPEAT_YES', 2);
461
+ define('AI_BACKGROUND_REPEAT_HORIZONTALY',3);
462
+ define('AI_BACKGROUND_REPEAT_VERTICALLY', 4);
463
+ define('AI_BACKGROUND_REPEAT_SPACE', 5);
464
+ define('AI_BACKGROUND_REPEAT_ROUND', 6);
465
+
466
+ define('AI_TEXT_ENG_NO', 'No');
467
+ define('AI_TEXT_ENG_YES', 'Yes');
468
+ define('AI_TEXT_ENG_HORIZONTALY', 'Horizontally');
469
+ define('AI_TEXT_ENG_VERTICALLY', 'Vertically');
470
+ define('AI_TEXT_ENG_SPACE', 'Space');
471
+ define('AI_TEXT_ENG_ROUND', 'Round');
472
+
473
+ define('AI_BACKGROUND_SIZE_DEFAULT', 0);
474
+ define('AI_BACKGROUND_SIZE_COVER', 1);
475
+ define('AI_BACKGROUND_SIZE_FIT', 2);
476
+ define('AI_BACKGROUND_SIZE_FILL', 3);
477
+
478
+ define('AI_TEXT_ENG_COVER', 'Cover');
479
+ define('AI_TEXT_ENG_FIT_BKG_SIZE', 'Fit');
480
+ define('AI_TEXT_ENG_FILL', 'Fill');
481
+
482
  define('AI_STICKY_Z_INDEX', 9995); // update ad-inserter.js
483
 
484
  define('AI_ALIGNMENT_CSS_DEFAULT', 'margin: 8px 0; clear: both;');
497
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_TOP_OFFSET', ' top: 100px;');
498
  define('AI_ALIGNMENT_CSS_CENTER_VERTICAL', ' top: 50%; transform: translate(0, -50%);');
499
  define('AI_ALIGNMENT_CSS_CENTER_VERTICAL_H_ANIM', ' top: 50%;');
 
500
  define('AI_ALIGNMENT_CSS_SCROLL_WITH_THE_CONTENT', ' position: absolute; margin-bottom: auto; width: fit-content; width: -moz-fit-content; top: 100px; display: none;');
501
+ define('AI_ALIGNMENT_CSS_SCROLL_WITH_THE_CONTENT_BKG', ' position: absolute; margin-bottom: auto; width: fit-content; width: -moz-fit-content; top: 0px; display: none;');
502
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_BOTTOM', ' bottom: 0px;');
503
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_BOTTOM_OFFSET', ' bottom: 100px;');
504
 
505
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_LEFT', ' left: 0px;');
506
+ define('AI_ALIGNMENT_CSS_STICK_TO_THE_LEFT_BKG', ' left: 0px; display: none;');
507
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_LEFT', ' left: auto; margin-right: 10px; width: fit-content; width: -moz-fit-content; display: none;');
508
+ define('AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_LEFT_BKG',' left: auto; width: fit-content; width: -moz-fit-content; display: none;');
509
  define('AI_ALIGNMENT_CSS_STICK_CENTER_HORIZONTAL', ' text-align: center; left: 50%; transform: translate(-50%);');
510
  define('AI_ALIGNMENT_CSS_STICK_CENTER_HORIZONTAL_V', ' text-align: center; left: 50%; transform: translate(-50%, -50%);');
511
  define('AI_ALIGNMENT_CSS_STICK_CENTER_HORIZONTAL_ANIM', ' text-align: center; left: 50%;');
512
+ define('AI_ALIGNMENT_CSS_STICK_CENTER_HORIZONTAL_BKG', ' z-index: -1; top: 0px; left: 0px; width: 100%; height: 100%;');
513
+ define('AI_ALIGNMENT_CSS_STICK_BACKGROUND', ' width: 100%; height: 100%;');
514
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_RIGHT', ' right: auto; margin-left: 10px; width: fit-content; width: -moz-fit-content; display: none;');
515
+ define('AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_RIGHT_BKG',' right: auto; width: fit-content; width: -moz-fit-content; display: none;');
516
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_RIGHT', ' right: 0px;');
517
+ define('AI_ALIGNMENT_CSS_STICK_TO_THE_RIGHT_BKG', ' right: 0px; display: flex; justify-content: flex-end; flex-direction: column; align-items: flex-end; display: none;');
518
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_RIGHT_SCROLL', ' right: 0px; margin-left: auto;');
519
 
520
  define('AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_LEFT_W', ' right: calc(50%); display: block;');
810
  define ('AI_TRANSIENT_ADB_FILES_VERSION', 'ai-adb-version');
811
  define ('AI_TRANSIENT_ADB_SEED', 'ai-adb-seed');
812
 
813
+ define ('AI_TRANSIENT_VERSION_CHECK', 'ai-version-check');
814
+ define ('AI_TRANSIENT_PHP_CHECK', 'ai-php-check');
815
+ define ('AI_TRANSIENT_WP_CHECK', 'ai-wp-check');
816
+
817
  define ('AI_SYNTAX_HIGHLIGHTER_THEME', 'ad_inserter');
818
  define ('DEFAULT_SYNTAX_HIGHLIGHTER_THEME', AI_SYNTAX_HIGHLIGHTER_THEME);
819
  define ('DEFAULT_BLOCK_CLASS_NAME', 'code-block');
863
  define ('DEFAULT_GEO_DB_UPDATES', AI_DISABLED);
864
  define ('DEFAULT_CLOSE_BUTTON', AI_CLOSE_NONE);
865
  define ('DEFAULT_AUTO_CLOSE_TIME', '');
866
+ define ('DEFAULT_BACKGROUND', AI_DISABLED);
867
  define ('DEFAULT_STAY_CLOSED_TIME', '');
868
  define ('DEFAULT_SERVER_SIDE_INSERTION', AI_AUTOMATIC_INSERTION_FOOTER);
869
  define ('DEFAULT_HTML_ELEMENT_INSERTION', AI_HTML_INSERTION_CLIENT_SIDE);
917
  define ('DEFAULT_EXTERNAL_TRACKING_ACTION', '[EVENT]');
918
  define ('DEFAULT_EXTERNAL_TRACKING_LABEL', '[BLOCK_NUMBER] - [BLOCK_VERSION_NAME]');
919
  define ('DEFAULT_MAXMIND_LICENSE_KEY', '');
920
+ define ('DEFAULT_BACKGROUND_REPEAT', AI_BACKGROUND_REPEAT_DEFAULT);
921
+ define ('DEFAULT_BACKGROUND_SIZE', AI_BACKGROUND_SIZE_DEFAULT);
922
+ define ('DEFAULT_SET_BODY_BACKGROUND', AI_DISABLED);
923
 
924
  define ('AI_ADBLOCKING_DETECTION', true);
925
  define ('AI_NORMAL_HEADER_STYLES', true);
1048
  define ('AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE_ELEMENTS', 61);
1049
  define ('AI_CHECK_PARAGRAPHS_MAX_NUMBER', 62);
1050
  define ('AI_CHECK_CLIENT', 63);
1051
+ define ('AI_CUSTOM_FILTER_CHECK', 64);
1052
 
1053
 
1054
  define ('AI_PT_NONE', - 1);
1096
  define ('AI_VIEWPORT_NAMES', 25);
1097
  define ('AI_CLOSE_BUTTONS', 26);
1098
  define ('AI_DISABLE_CACHING', 27);
1099
+ define ('AI_COUNT_SHUFFLE', 28);
1100
  define ('AI_CLIENT_SIDE_INSERTION', 29);
1101
  define ('AI_USER_AGENT', 30);
1102
  define ('AI_STICK_TO_THE_CONTENT', 31);
1135
  define ('AI_FALLBACK_LEVEL', 65);
1136
  define ('AI_HEAD', 66);
1137
  define ('AI_DISABLED_BLOCKS', 67);
1138
+ define ('AI_BODY_STYLE', 68);
1139
+ define ('AI_COUNT_REPEAT', 69);
1140
 
1141
  define ('AI_CONTEXT_NONE', 0);
1142
  define ('AI_CONTEXT_CONTENT', 1);
css/ai-settings.css CHANGED
@@ -1,5 +1,5 @@
1
  #ai-data {
2
- font-family: "2.6.7"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
@@ -883,6 +883,28 @@ img.automatic-insertion.im-after-image {
883
  }
884
 
885
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
886
  img.automatic-insertion {
887
  background-size: 448px!important;
888
  }
@@ -985,11 +1007,32 @@ img.automatic-insertion.preview.im-close-none {
985
  }
986
 
987
  img.automatic-insertion.preview.im-before-image {
988
- background: url('images/insertions-alignmets.png') -50px -250px;
989
  }
990
 
991
  img.automatic-insertion.preview.im-after-image {
992
- background: url('images/insertions-alignmets.png') -100px -250px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
993
  }
994
 
995
 
1
  #ai-data {
2
+ font-family: "2.6.8"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
883
  }
884
 
885
 
886
+
887
+ .ai-background img.automatic-insertion.im-sticky-left {
888
+ background: url('images/insertions-alignmets.png') -224px -280px;
889
+ }
890
+
891
+ .ai-background img.automatic-insertion.im-sticky-content-left {
892
+ background: url('images/insertions-alignmets.png') -336px -280px;
893
+ }
894
+
895
+ .ai-background img.automatic-insertion.im-sticky-right {
896
+ background: url('images/insertions-alignmets.png') -280px -280px;
897
+ }
898
+
899
+ .ai-background img.automatic-insertion.im-sticky-content-right {
900
+ background: url('images/insertions-alignmets.png') -392px -280px;
901
+ }
902
+
903
+ .ai-background img.automatic-insertion.im-sticky-center-horizontal {
904
+ background: url('images/insertions-alignmets.png') 0 -336px;
905
+ }
906
+
907
+
908
  img.automatic-insertion {
909
  background-size: 448px!important;
910
  }
1007
  }
1008
 
1009
  img.automatic-insertion.preview.im-before-image {
1010
+ background: url('images/insertions-alignmets.png') -100px -250px;
1011
  }
1012
 
1013
  img.automatic-insertion.preview.im-after-image {
1014
+ background: url('images/insertions-alignmets.png') -150px -250px;
1015
+ }
1016
+
1017
+
1018
+ .ai-background img.automatic-insertion.preview.im-sticky-left {
1019
+ background: url('images/insertions-alignmets.png') -200px -250px;
1020
+ }
1021
+
1022
+ .ai-background img.automatic-insertion.preview.im-sticky-content-left {
1023
+ background: url('images/insertions-alignmets.png') -300px -250px;
1024
+ }
1025
+
1026
+ .ai-background img.automatic-insertion.preview.im-sticky-right {
1027
+ background: url('images/insertions-alignmets.png') -250px -250px;
1028
+ }
1029
+
1030
+ .ai-background img.automatic-insertion.preview.im-sticky-content-right {
1031
+ background: url('images/insertions-alignmets.png') -350px -250px;
1032
+ }
1033
+
1034
+ .ai-background img.automatic-insertion.preview.im-sticky-center-horizontal {
1035
+ background: url('images/insertions-alignmets.png') 0 -300px;
1036
  }
1037
 
1038
 
css/images/insertions-alignmets.png CHANGED
Binary file
includes/colorpicker/js/bootstrap-colorpicker.js CHANGED
@@ -3821,6 +3821,13 @@ var Preview = function (_Extension) {
3821
  value: function onUpdate(event) {
3822
  _get(Preview.prototype.__proto__ || Object.getPrototypeOf(Preview.prototype), 'onUpdate', this).call(this, event);
3823
 
 
 
 
 
 
 
 
3824
  this.elementInner.css('backgroundColor', event.color.toRgbString());
3825
 
3826
  if (this.options.showText) {
@@ -3929,4 +3936,4 @@ exports.default = Swatches;
3929
  /***/ })
3930
  /******/ ]);
3931
  });
3932
- //# sourceMappingURL=bootstrap-colorpicker.js.map
3821
  value: function onUpdate(event) {
3822
  _get(Preview.prototype.__proto__ || Object.getPrototypeOf(Preview.prototype), 'onUpdate', this).call(this, event);
3823
 
3824
+ // AI
3825
+ if (!event.color) {
3826
+ this.elementInner.css('backgroundColor', null).css('color', null).html('');
3827
+ return;
3828
+ }
3829
+ // /AI
3830
+
3831
  this.elementInner.css('backgroundColor', event.color.toRgbString());
3832
 
3833
  if (this.options.showText) {
3936
  /***/ })
3937
  /******/ ]);
3938
  });
3939
+ //# sourceMappingURL=bootstrap-colorpicker.js.map
includes/colorpicker/js/bootstrap-colorpicker.min.js CHANGED
@@ -1,10 +1,109 @@
1
- /*!
2
- * Bootstrap Colorpicker - Simple and customizable colorpicker component for Twitter Bootstrap.
3
- * @package bootstrap-colorpicker
4
- * @version v3.0.0-wip
5
- * @license MIT
6
- * @link https://farbelous.github.io/bootstrap-colorpicker/
7
- * @link https://github.com/farbelous/bootstrap-colorpicker.git
8
- */
9
- !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("jQuery")):"function"==typeof define&&define.amd?define("bootstrap-colorpicker",["jQuery"],e):"object"==typeof exports?exports["bootstrap-colorpicker"]=e(require("jQuery")):t["bootstrap-colorpicker"]=e(t.jQuery)}(this,function(t){return function(t){function e(r){if(o[r])return o[r].exports;var i=o[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,e),i.l=!0,i.exports}var o={};return e.m=t,e.c=o,e.d=function(t,o,r){e.o(t,o)||Object.defineProperty(t,o,{configurable:!1,enumerable:!0,get:r})},e.n=function(t){var o=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(o,"a",o),o},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=3)}([function(e,o){e.exports=t},function(t,e,o){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var i=function(){function t(t,e){for(var o=0;o<e.length;o++){var r=e[o];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,o,r){return o&&t(e.prototype,o),r&&t(e,r),e}}(),n=o(0),s=function(t){return t&&t.__esModule?t:{default:t}}(n),a=function(){function t(e){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(r(this,t),this.colorpicker=e,this.options=o,!this.colorpicker.element||!this.colorpicker.element.length)throw new Error("Extension: this.colorpicker.element is not valid");this.colorpicker.element.on("colorpickerCreate.colorpicker-ext",s.default.proxy(this.onCreate,this)),this.colorpicker.element.on("colorpickerDestroy.colorpicker-ext",s.default.proxy(this.onDestroy,this)),this.colorpicker.element.on("colorpickerUpdate.colorpicker-ext",s.default.proxy(this.onUpdate,this)),this.colorpicker.element.on("colorpickerChange.colorpicker-ext",s.default.proxy(this.onChange,this)),this.colorpicker.element.on("colorpickerInvalid.colorpicker-ext",s.default.proxy(this.onInvalid,this)),this.colorpicker.element.on("colorpickerShow.colorpicker-ext",s.default.proxy(this.onShow,this)),this.colorpicker.element.on("colorpickerHide.colorpicker-ext",s.default.proxy(this.onHide,this)),this.colorpicker.element.on("colorpickerEnable.colorpicker-ext",s.default.proxy(this.onEnable,this)),this.colorpicker.element.on("colorpickerDisable.colorpicker-ext",s.default.proxy(this.onDisable,this))}return i(t,[{key:"resolveColor",value:function(t){return!1}},{key:"onCreate",value:function(t){}},{key:"onDestroy",value:function(t){this.colorpicker.element.off(".colorpicker-ext")}},{key:"onUpdate",value:function(t){}},{key:"onChange",value:function(t){}},{key:"onInvalid",value:function(t){}},{key:"onHide",value:function(t){}},{key:"onShow",value:function(t){}},{key:"onDisable",value:function(t){}},{key:"onEnable",value:function(t){}}]),t}();e.default=a},function(t,e,o){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function n(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},a=function(){function t(t,e){for(var o=0;o<e.length;o++){var r=e[o];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,o,r){return o&&t(e.prototype,o),r&&t(e,r),e}}(),l=o(1),c=function(t){return t&&t.__esModule?t:{default:t}}(l),u={colors:null,namesAsValues:!0},h=function(t){function e(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};r(this,e);var n=i(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,Object.assign({},u,o)));return Array.isArray(n.options.colors)||"object"===s(n.options.colors)||(n.options.colors=null),n}return n(e,t),a(e,[{key:"colors",get:function(){return this.options.colors}}]),a(e,[{key:"getLength",value:function(){return this.options.colors?Array.isArray(this.options.colors)?this.options.colors.length:"object"===s(this.options.colors)?Object.keys(this.options.colors).length:0:0}},{key:"resolveColor",value:function(t){return!(this.getLength()<=0)&&(Array.isArray(this.options.colors)?this.options.colors.indexOf(t)>=0?t:this.options.colors.indexOf(t.toUpperCase())>=0?t.toUpperCase():this.options.colors.indexOf(t.toLowerCase())>=0&&t.toLowerCase():"object"===s(this.options.colors)&&(this.options.namesAsValues?this.getName(t,this.getName("#"+t,this.getValue(t,!1))):this.getValue(t,!1)))}},{key:"getName",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if("string"!=typeof t||!this.options.colors)return e;for(var o in this.options.colors)if(this.options.colors.hasOwnProperty(o)&&this.options.colors[o].toLowerCase()===t.toLowerCase())return o;return e}},{key:"getValue",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return"string"==typeof t&&this.options.colors&&this.options.colors.hasOwnProperty(t)?this.options.colors[t]:e}}]),e}(c.default);e.default=h},function(t,e,o){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}var i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n=o(4),s=r(n),a=o(0),l=r(a),c="colorpicker";l.default[c]=s.default,l.default.fn[c]=function(t){var e=Array.prototype.slice.call(arguments,1),o=1===this.length,r=null,n=this.each(function(){var o=(0,l.default)(this),n=o.data(c),a="object"===(void 0===t?"undefined":i(t))?t:{};n||(n=new s.default(this,a),o.data(c,n)),"string"==typeof t?"colorpicker"===t?r=n:l.default.isFunction(n[t])?r=n[t].apply(n,e):(e.length&&(n[t]=e[0]),r=n[t]):r=o});return o?r:n},l.default.fn[c].constructor=s.default},function(t,e,o){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var n=function(){function t(t,e){for(var o=0;o<e.length;o++){var r=e[o];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,o,r){return o&&t(e.prototype,o),r&&t(e,r),e}}(),s=o(5),a=r(s),l=o(1),c=r(l),u=o(7),h=r(u),f=o(8),p=r(f),d=o(0),g=r(d),v=0,b=function(){function t(e,o){var r=this;i(this,t),v+=1,this.id=v,this.element=(0,g.default)(e).addClass("colorpicker-element"),this.element.attr("data-colorpicker-id",this.id),this.options=Object.assign({},h.default,o,this.element.data()),this.extensions=[],Array.isArray(this.options.extensions)||(this.options.extensions=[]),this.component=this.options.component,this.component=!1!==this.component&&this.element.find(this.component),this.component&&0===this.component.length&&(this.component=!1),this.container=!0===this.options.container?this.element:this.options.container,this.container=!1!==this.container&&(0,g.default)(this.container),this.currentSlider=null,this.mousePointer={left:0,top:0},this.lastEvent={name:null,e:null},this.input=this.element.is("input")?this.element:!!this.options.input&&this.element.find(this.options.input),this.input&&0===this.input.length&&(this.input=!1),this.options.debug&&this.options.extensions.push({name:"Debugger"}),this.options.extensions.forEach(function(t){r.addExtension(t.name,p.default[t.name.toLowerCase()],t)});var n=!1!==this.options.color?this.options.color:this.getValue();this.color=!!n&&this.createColor(n),!1===this.options.format&&(this.options.format=this.color.format),this.disabled=!1;var s=this.picker=(0,g.default)(this.options.template);this.options.customClass&&s.addClass(this.options.customClass),this.options.inline?s.addClass("colorpicker-inline colorpicker-visible"):s.addClass("colorpicker-hidden"),this.options.horizontal&&s.addClass("colorpicker-horizontal"),(this.options.useAlpha||this.hasColor()&&this.color.hasTransparency())&&!1!==this.options.useAlpha&&(this.options.useAlpha=!0,s.addClass("colorpicker-with-alpha")),"right"===this.options.align&&s.addClass("colorpicker-right"),!0===this.options.inline&&s.addClass("colorpicker-no-arrow"),s.on("mousedown.colorpicker touchstart.colorpicker",g.default.proxy(function(t){t.target===t.currentTarget&&t.preventDefault()},this)),s.find(".colorpicker-saturation, .colorpicker-hue, .colorpicker-alpha").on("mousedown.colorpicker touchstart.colorpicker",g.default.proxy(this._mousedown,this)),s.appendTo(this.container?this.container:(0,g.default)("body")),this.hasInput()&&(this.input.on({"keyup.colorpicker":g.default.proxy(this._keyup,this)}),this.input.on({"change.colorpicker":g.default.proxy(this._change,this)}),!1===this.component&&this.element.on({"focus.colorpicker":g.default.proxy(this.show,this)}),!1===this.options.inline&&this.element.on({"focusout.colorpicker":g.default.proxy(this.hide,this)})),!1!==this.component&&this.component.on({"click.colorpicker":g.default.proxy(this.show,this)}),!1!==this.hasInput()||!1!==this.component||this.element.has(".colorpicker")||this.element.on({"click.colorpicker":g.default.proxy(this.show,this)}),this.hasInput()&&!1!==this.component&&"color"===this.input.attr("type")&&this.input.on({"click.colorpicker":g.default.proxy(this.show,this),"focus.colorpicker":g.default.proxy(this.show,this)}),this.update(!1!==this.options.color),(0,g.default)(g.default.proxy(function(){this.element.trigger({type:"colorpickerCreate",colorpicker:this,color:this.color})},this))}return n(t,[{key:"color",get:function(){return this.element.data("color")},set:function(t){this.element.data("color",t)}}],[{key:"Color",get:function(){return a.default}},{key:"Extension",get:function(){return c.default}},{key:"Extensions",get:function(){return p.default}}]),n(t,[{key:"addExtension",value:function(t,e){var o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=t instanceof c.default?t:new e(this,o);return this.extensions.push(r),r}},{key:"destroy",value:function(){this.picker.remove(),this.element.removeData("colorpicker","color").off(".colorpicker"),this.hasInput()&&this.input.off(".colorpicker"),!1!==this.component&&this.component.off(".colorpicker"),this.element.removeClass("colorpicker-element"),this.element.trigger({type:"colorpickerDestroy",colorpicker:this,color:this.color})}},{key:"hasColor",value:function(){return this.color instanceof a.default}},{key:"toInputColorString",value:function(){var t=this.toCssColorString();return t?(!1===this.options.useHashPrefix&&(t=t.replace(/^#/g,"")),this._resolveColor(t)):t}},{key:"toCssColorString",value:function(){return this.hasColor()?this.color.toString(this.format):""}},{key:"_reposition",value:function(t){if(this.lastEvent.name="reposition",this.lastEvent.e=t,!1!==this.options.inline||this.options.container)return!1;var e=this.container&&this.container[0]!==window.document.body?"position":"offset",o=this.component||this.element,r=o[e]();return"right"===this.options.align&&(r.left-=this.picker.outerWidth()-o.outerWidth()),this.picker.css({top:r.top+o.outerHeight(),left:r.left}),!0}},{key:"show",value:function(t){return this.lastEvent.name="show",this.lastEvent.e=t,!this.isVisible()&&!this.isDisabled()&&(this.picker.addClass("colorpicker-visible").removeClass("colorpicker-hidden"),this._reposition(t),(0,g.default)(window).on("resize.colorpicker",g.default.proxy(this._reposition,this)),!t||this.hasInput()&&"color"!==this.input.attr("type")||t.stopPropagation&&t.preventDefault&&(t.stopPropagation(),t.preventDefault()),!this.component&&this.input||!1!==this.options.inline||(0,g.default)(window.document).on({"mousedown.colorpicker":g.default.proxy(this.hide,this)}),this.element.trigger({type:"colorpickerShow",colorpicker:this,color:this.color}),!0)}},{key:"hide",value:function(t){return this.lastEvent.name="hide",this.lastEvent.e=t,!this.isHidden()&&((void 0===t||!t.target||!((0,g.default)(t.currentTarget).parents(".colorpicker").length>0||(0,g.default)(t.target).parents(".colorpicker").length>0))&&(this.picker.addClass("colorpicker-hidden").removeClass("colorpicker-visible"),(0,g.default)(window).off("resize.colorpicker",this._reposition),(0,g.default)(window.document).off({"mousedown.colorpicker":this.hide}),this.element.trigger({type:"colorpickerHide",colorpicker:this,color:this.color}),!0))}},{key:"isVisible",value:function(){return this.picker.hasClass("colorpicker-visible")&&!this.picker.hasClass("colorpicker-hidden")}},{key:"isHidden",value:function(){return this.picker.hasClass("colorpicker-hidden")&&!this.picker.hasClass("colorpicker-visible")}},{key:"_updateInput",value:function(){if(this.hasInput()){var t=this.toInputColorString();if(t===this.input.prop("value"))return;this.input.prop("value",t||""),this.input.trigger({type:"change",colorpicker:this,color:this.color,value:t})}}},{key:"_updatePicker",value:function(){if(this.hasColor()){var t=!1===this.options.horizontal,e=t?this.options.sliders:this.options.slidersHorz,o=this.picker.find(".colorpicker-saturation .colorpicker-guide"),r=this.picker.find(".colorpicker-hue .colorpicker-guide"),i=this.picker.find(".colorpicker-alpha .colorpicker-guide"),n=this.color.hsvaRatio;r.length&&r.css(t?"top":"left",(t?e.hue.maxTop:e.hue.maxLeft)*(1-n.h)),i.length&&i.css(t?"top":"left",(t?e.alpha.maxTop:e.alpha.maxLeft)*(1-n.a)),o.length&&o.css({top:e.saturation.maxTop-n.v*e.saturation.maxTop,left:n.s*e.saturation.maxLeft}),this.picker.find(".colorpicker-saturation").css("backgroundColor",this.color.getHueOnlyCopy().toHexString()),this.picker.find(".colorpicker-alpha").css("backgroundColor",this.color.toString("hex6"))}}},{key:"_updateComponent",value:function(){if(this.hasColor()&&!1!==this.component){var t=this.component.find("i").eq(0);t.length>0?t.css({backgroundColor:this.toCssColorString()}):this.component.css({backgroundColor:this.toCssColorString()})}}},{key:"_shouldUpdate",value:function(){return this.hasColor()&&!1!==this.getValue(!1)}},{key:"update",value:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(this._shouldUpdate()||!0===t){this._updateComponent();!0!==this.options.autoInputFallback&&"keyup"===this.lastEvent.name||this._updateInput(),this._updatePicker(),this.element.trigger({type:"colorpickerUpdate",colorpicker:this,color:this.color})}}},{key:"getValue",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;t=void 0===t?this.fallbackColor:t;var e=[],o=!1;return this.hasInput()&&(e.push(this.input.val()),e.push(this.input.data("color"))),e.push(this.element.data("color")),e.map(function(t){t&&!1===o&&(o=t)}),o=!1===o?t:o,o instanceof a.default?o.toString(this.format):o}},{key:"setValue",value:function(t){if(!this.hasColor()||!this.color.equals(t)){var e=!!t&&this.createColor(t);if(this.hasColor()||e){var o=this.hasColor()&&!e;this.color=e,this.element.trigger({type:"colorpickerChange",colorpicker:this,color:this.color,value:t}),this.update(o)}}}},{key:"createColor",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],o=new a.default(this._resolveColor(t),{format:this.format});if(!o.isValid()){var r=o,i=void 0;if(e&&(i=this.fallbackColor instanceof a.default&&this.fallbackColor.isValid()?this.fallbackColor:this._resolveColor(this.fallbackColor),o=new a.default(i,{format:this.format}),!o.isValid()&&e))throw new Error("The fallback color is invalid.");o.previous=r,this.element.trigger({type:"colorpickerInvalid",colorpicker:this,color:o,value:t})}if(!this.isAlphaEnabled()&&o.hasTransparency()&&o.setAlpha(1),!this.hasColor())return o;var n=o.hsvaRatio,s=this.color.hsvaRatio;return 0===n.s&&0===n.h&&0!==s.h&&o.setHueRatio(s.h),!this.isAlphaEnabled()&&o.hasTransparency()&&o.setAlpha(1),o}},{key:"isInvalidColor",value:function(){return!this.hasColor()||!this.color.isValid()||!!this.color.previous}},{key:"isAlphaEnabled",value:function(){return!0===this.options.useAlpha}},{key:"_resolveColor",value:function(t){var e=!1;return g.default.each(this.extensions,function(o,r){!1===e&&(e=r.resolveColor(t))}),!1!==e&&(t=e),t}},{key:"hasInput",value:function(){return!1!==this.input}},{key:"isDisabled",value:function(){return!0===this.disabled}},{key:"disable",value:function(){return this.hasInput()&&this.input.prop("disabled",!0),this.disabled=!0,this.element.trigger({type:"colorpickerDisable",colorpicker:this,color:this.color}),!0}},{key:"enable",value:function(){return this.hasInput()&&this.input.prop("disabled",!1),this.disabled=!1,this.element.trigger({type:"colorpickerEnable",colorpicker:this,color:this.color}),!0}},{key:"_mousedown",value:function(t){this.lastEvent.name="mousedown",this.lastEvent.e=t,!t.pageX&&!t.pageY&&t.originalEvent&&t.originalEvent.touches&&(t.pageX=t.originalEvent.touches[0].pageX,t.pageY=t.originalEvent.touches[0].pageY),t.stopPropagation(),t.preventDefault();var e=(0,g.default)(t.target),o=e.closest("div"),r=this.options.horizontal?this.options.slidersHorz:this.options.sliders;if(!o.is(".colorpicker")){if(o.is(".colorpicker-saturation"))this.currentSlider=g.default.extend({},r.saturation);else if(o.is(".colorpicker-hue"))this.currentSlider=g.default.extend({},r.hue);else{if(!o.is(".colorpicker-alpha"))return!1;this.currentSlider=g.default.extend({},r.alpha)}var i=o.offset();this.currentSlider.guide=o.find(".colorpicker-guide")[0].style,this.currentSlider.left=t.pageX-i.left,this.currentSlider.top=t.pageY-i.top,this.mousePointer={left:t.pageX,top:t.pageY},(0,g.default)(window.document).on({"mousemove.colorpicker":g.default.proxy(this._mousemove,this),"touchmove.colorpicker":g.default.proxy(this._mousemove,this),"mouseup.colorpicker":g.default.proxy(this._mouseup,this),"touchend.colorpicker":g.default.proxy(this._mouseup,this)}).trigger("mousemove")}return!1}},{key:"_mousemove",value:function(t){this.lastEvent.name="mousemove",this.lastEvent.e=t;var e=this.hasColor()?this.color.getCopy():this.createColor(this.fallbackColor);!t.pageX&&!t.pageY&&t.originalEvent&&t.originalEvent.touches&&(t.pageX=t.originalEvent.touches[0].pageX,t.pageY=t.originalEvent.touches[0].pageY),t.stopPropagation(),t.preventDefault();var o=Math.max(0,Math.min(this.currentSlider.maxLeft,this.currentSlider.left+((t.pageX||this.mousePointer.left)-this.mousePointer.left))),r=Math.max(0,Math.min(this.currentSlider.maxTop,this.currentSlider.top+((t.pageY||this.mousePointer.top)-this.mousePointer.top)));return this.currentSlider.guide.left=o+"px",this.currentSlider.guide.top=r+"px",this.currentSlider.callLeft&&e[this.currentSlider.callLeft].call(e,o/this.currentSlider.maxLeft),this.currentSlider.callTop&&e[this.currentSlider.callTop].call(e,r/this.currentSlider.maxTop),this.setValue(e),!1}},{key:"_mouseup",value:function(t){return this.lastEvent.name="mouseup",this.lastEvent.e=t,t.stopPropagation(),t.preventDefault(),(0,g.default)(window.document).off({"mousemove.colorpicker":this._mousemove,"touchmove.colorpicker":this._mousemove,"mouseup.colorpicker":this._mouseup,"touchend.colorpicker":this._mouseup}),!1}},{key:"_change",value:function(t){this.lastEvent.name="change",this.lastEvent.e=t;var e=this.input.val();e!==this.toInputColorString()&&this.setValue(e)}},{key:"_keyup",value:function(t){this.lastEvent.name="keyup",this.lastEvent.e=t;var e=this.input.val();e!==this.toInputColorString()&&this.setValue(e)}},{key:"fallbackColor",get:function(){return this.options.fallbackColor?this.options.fallbackColor:this.hasColor()?this.color:"#000"}},{key:"format",get:function(){return this.options.format?this.options.format:this.hasColor()&&this.color.hasTransparency()&&this.color.format.match(/^hex/)?this.options.enableHex8?"hex8":this.isAlphaEnabled()?"rgba":"hex":this.hasColor()?this.color.format:null}}]),t}();e.default=b},function(t,e,o){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function n(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function s(t){return t instanceof h.default?{r:t._r,g:t._g,b:t._b,a:t._a}:t}function a(t){return t instanceof String||"string"==typeof t?t.replace(/a$/gi,""):t}Object.defineProperty(e,"__esModule",{value:!0});var l=function t(e,o,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,o);if(void 0===i){var n=Object.getPrototypeOf(e);return null===n?void 0:t(n,o,r)}if("value"in i)return i.value;var s=i.get;if(void 0!==s)return s.call(r)},c=function(){function t(t,e){for(var o=0;o<e.length;o++){var r=e[o];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,o,r){return o&&t(e.prototype,o),r&&t(e,r),e}}(),u=o(6),h=function(t){return t&&t.__esModule?t:{default:t}}(u),f=function(t){function e(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{format:null};r(this,e),o.format&&(o.format=a(o.format));var n=i(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,s(t),o));return n._originalInput=t,n._hbak=n.hsva.h,n.previous=null,n}return n(e,t),c(e,[{key:"id",get:function(){return this._tc_id}},{key:"format",get:function(){return this._format}},{key:"options",get:function(){return{format:this._format,gradientType:this._gradientType}}},{key:"hsva",get:function(){return this.toHsv()}},{key:"hsvaRatio",get:function(){var t=this.hsva;return{h:t.h/360,s:t.s,v:t.v,a:t.a}}}]),c(e,[{key:"equals",value:function(t){return t instanceof h.default&&(this._r===t._r&&this._g===t._g&&this._b===t._b&&this._a===t._a&&this._roundA===t._roundA&&this._format===t._format&&this._gradientType===t._gradientType&&this._ok===t._ok)}},{key:"importColor",value:function(t){if(!(t instanceof h.default))throw new Error("Color.importColor: The color argument is not an instance of tinycolor.");this._originalInput=t._originalInput,this._r=t._r,this._g=t._g,this._b=t._b,this._a=t._a,this._roundA=t._roundA,this._format=a(t._format),this._gradientType=t._gradientType,this._ok=t._ok}},{key:"importRgb",value:function(t){if(!t instanceof e)throw new Error("Color.importColor: The color argument is not an instance of tinycolor.");this._r=t._r,this._g=t._g,this._b=t._b,this._a=t._a,this._ok=t._ok,this._hbak=t._hbak}},{key:"importHsv",value:function(t){this._hbak=t.h,this.importRgb(new e(t,this.options))}},{key:"getCopy",value:function(){return new e(this.hsva,this.options)}},{key:"getHueOnlyCopy",value:function(){return new e({h:this._hbak?this._hbak:this.hsva.h,s:100,v:100},this.options)}},{key:"getOpaqueCopy",value:function(){return new e(Object.assign({},this.hsva,{a:1}),this.options)}},{key:"setHue",value:function(t){this.importHsv(Object.assign({},this.hsva,{h:t}))}},{key:"setSaturation",value:function(t){this.importHsv(Object.assign({},this.hsva,{s:t}))}},{key:"setBrightness",value:function(t){this.importHsv(Object.assign({},this.hsva,{v:t}))}},{key:"setHueRatio",value:function(t){0!==t&&this.setHue(360*(1-t))}},{key:"setSaturationRatio",value:function(t){this.setSaturation(t)}},{key:"setBrightnessRatio",value:function(t){this.setBrightness(1-t)}},{key:"setAlphaRatio",value:function(t){this.setAlpha(1-t)}},{key:"isTransparent",value:function(){return 0===this._a}},{key:"hasTransparency",value:function(){return 1!==this._a}},{key:"toString",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;t=t?a(t):this.format;var o=l(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"toString",this).call(this,t);return o&&o.match(/^#[0-9a-f]{3,8}$/i)&&this.isTransparent()&&0===this._r&&0===this._g&&0===this._b?"transparent":o}}]),e}(h.default);e.default=f},function(t,e,o){var r;!function(i){function n(t,e){if(t=t||"",e=e||{},t instanceof n)return t;if(!(this instanceof n))return new n(t,e);var o=s(t);this._originalInput=t,this._r=o.r,this._g=o.g,this._b=o.b,this._a=o.a,this._roundA=X(100*this._a)/100,this._format=e.format||o.format,this._gradientType=e.gradientType,this._r<1&&(this._r=X(this._r)),this._g<1&&(this._g=X(this._g)),this._b<1&&(this._b=X(this._b)),this._ok=o.ok,this._tc_id=N++}function s(t){var e={r:0,g:0,b:0},o=1,r=null,i=null,n=null,s=!1,l=!1;return"string"==typeof t&&(t=V(t)),"object"==typeof t&&(F(t.r)&&F(t.g)&&F(t.b)?(e=a(t.r,t.g,t.b),s=!0,l="%"===String(t.r).substr(-1)?"prgb":"rgb"):F(t.h)&&F(t.s)&&F(t.v)?(r=D(t.s),i=D(t.v),e=h(t.h,r,i),s=!0,l="hsv"):F(t.h)&&F(t.s)&&F(t.l)&&(r=D(t.s),n=D(t.l),e=c(t.h,r,n),s=!0,l="hsl"),t.hasOwnProperty("a")&&(o=t.a)),o=j(o),{ok:s,format:t.format||l,r:Y(255,B(e.r,0)),g:Y(255,B(e.g,0)),b:Y(255,B(e.b,0)),a:o}}function a(t,e,o){return{r:255*P(t,255),g:255*P(e,255),b:255*P(o,255)}}function l(t,e,o){t=P(t,255),e=P(e,255),o=P(o,255);var r,i,n=B(t,e,o),s=Y(t,e,o),a=(n+s)/2;if(n==s)r=i=0;else{var l=n-s;switch(i=a>.5?l/(2-n-s):l/(n+s),n){case t:r=(e-o)/l+(e<o?6:0);break;case e:r=(o-t)/l+2;break;case o:r=(t-e)/l+4}r/=6}return{h:r,s:i,l:a}}function c(t,e,o){function r(t,e,o){return o<0&&(o+=1),o>1&&(o-=1),o<1/6?t+6*(e-t)*o:o<.5?e:o<2/3?t+(e-t)*(2/3-o)*6:t}var i,n,s;if(t=P(t,360),e=P(e,100),o=P(o,100),0===e)i=n=s=o;else{var a=o<.5?o*(1+e):o+e-o*e,l=2*o-a;i=r(l,a,t+1/3),n=r(l,a,t),s=r(l,a,t-1/3)}return{r:255*i,g:255*n,b:255*s}}function u(t,e,o){t=P(t,255),e=P(e,255),o=P(o,255);var r,i,n=B(t,e,o),s=Y(t,e,o),a=n,l=n-s;if(i=0===n?0:l/n,n==s)r=0;else{switch(n){case t:r=(e-o)/l+(e<o?6:0);break;case e:r=(o-t)/l+2;break;case o:r=(t-e)/l+4}r/=6}return{h:r,s:i,v:a}}function h(t,e,o){t=6*P(t,360),e=P(e,100),o=P(o,100);var r=i.floor(t),n=t-r,s=o*(1-e),a=o*(1-n*e),l=o*(1-(1-n)*e),c=r%6;return{r:255*[o,a,s,s,l,o][c],g:255*[l,o,o,a,s,s][c],b:255*[s,s,l,o,o,a][c]}}function f(t,e,o,r){var i=[I(X(t).toString(16)),I(X(e).toString(16)),I(X(o).toString(16))];return r&&i[0].charAt(0)==i[0].charAt(1)&&i[1].charAt(0)==i[1].charAt(1)&&i[2].charAt(0)==i[2].charAt(1)?i[0].charAt(0)+i[1].charAt(0)+i[2].charAt(0):i.join("")}function p(t,e,o,r,i){var n=[I(X(t).toString(16)),I(X(e).toString(16)),I(X(o).toString(16)),I(L(r))];return i&&n[0].charAt(0)==n[0].charAt(1)&&n[1].charAt(0)==n[1].charAt(1)&&n[2].charAt(0)==n[2].charAt(1)&&n[3].charAt(0)==n[3].charAt(1)?n[0].charAt(0)+n[1].charAt(0)+n[2].charAt(0)+n[3].charAt(0):n.join("")}function d(t,e,o,r){return[I(L(r)),I(X(t).toString(16)),I(X(e).toString(16)),I(X(o).toString(16))].join("")}function g(t,e){e=0===e?0:e||10;var o=n(t).toHsl();return o.s-=e/100,o.s=E(o.s),n(o)}function v(t,e){e=0===e?0:e||10;var o=n(t).toHsl();return o.s+=e/100,o.s=E(o.s),n(o)}function b(t){return n(t).desaturate(100)}function y(t,e){e=0===e?0:e||10;var o=n(t).toHsl();return o.l+=e/100,o.l=E(o.l),n(o)}function m(t,e){e=0===e?0:e||10;var o=n(t).toRgb();return o.r=B(0,Y(255,o.r-X(-e/100*255))),o.g=B(0,Y(255,o.g-X(-e/100*255))),o.b=B(0,Y(255,o.b-X(-e/100*255))),n(o)}function k(t,e){e=0===e?0:e||10;var o=n(t).toHsl();return o.l-=e/100,o.l=E(o.l),n(o)}function _(t,e){var o=n(t).toHsl(),r=(o.h+e)%360;return o.h=r<0?360+r:r,n(o)}function x(t){var e=n(t).toHsl();return e.h=(e.h+180)%360,n(e)}function w(t){var e=n(t).toHsl(),o=e.h;return[n(t),n({h:(o+120)%360,s:e.s,l:e.l}),n({h:(o+240)%360,s:e.s,l:e.l})]}function C(t){var e=n(t).toHsl(),o=e.h;return[n(t),n({h:(o+90)%360,s:e.s,l:e.l}),n({h:(o+180)%360,s:e.s,l:e.l}),n({h:(o+270)%360,s:e.s,l:e.l})]}function O(t){var e=n(t).toHsl(),o=e.h;return[n(t),n({h:(o+72)%360,s:e.s,l:e.l}),n({h:(o+216)%360,s:e.s,l:e.l})]}function A(t,e,o){e=e||6,o=o||30;var r=n(t).toHsl(),i=360/o,s=[n(t)];for(r.h=(r.h-(i*e>>1)+720)%360;--e;)r.h=(r.h+i)%360,s.push(n(r));return s}function S(t,e){e=e||6;for(var o=n(t).toHsv(),r=o.h,i=o.s,s=o.v,a=[],l=1/e;e--;)a.push(n({h:r,s:i,v:s})),s=(s+l)%1;return a}function j(t){return t=parseFloat(t),(isNaN(t)||t<0||t>1)&&(t=1),t}function P(t,e){H(t)&&(t="100%");var o=R(t);return t=Y(e,B(0,parseFloat(t))),o&&(t=parseInt(t*e,10)/100),i.abs(t-e)<1e-6?1:t%e/parseFloat(e)}function E(t){return Y(1,B(0,t))}function T(t){return parseInt(t,16)}function H(t){return"string"==typeof t&&-1!=t.indexOf(".")&&1===parseFloat(t)}function R(t){return"string"==typeof t&&-1!=t.indexOf("%")}function I(t){return 1==t.length?"0"+t:""+t}function D(t){return t<=1&&(t=100*t+"%"),t}function L(t){return i.round(255*parseFloat(t)).toString(16)}function M(t){return T(t)/255}function F(t){return!!G.CSS_UNIT.exec(t)}function V(t){t=t.replace(q,"").replace(U,"").toLowerCase();var e=!1;if(Q[t])t=Q[t],e=!0;else if("transparent"==t)return{r:0,g:0,b:0,a:0,format:"name"};var o;return(o=G.rgb.exec(t))?{r:o[1],g:o[2],b:o[3]}:(o=G.rgba.exec(t))?{r:o[1],g:o[2],b:o[3],a:o[4]}:(o=G.hsl.exec(t))?{h:o[1],s:o[2],l:o[3]}:(o=G.hsla.exec(t))?{h:o[1],s:o[2],l:o[3],a:o[4]}:(o=G.hsv.exec(t))?{h:o[1],s:o[2],v:o[3]}:(o=G.hsva.exec(t))?{h:o[1],s:o[2],v:o[3],a:o[4]}:(o=G.hex8.exec(t))?{r:T(o[1]),g:T(o[2]),b:T(o[3]),a:M(o[4]),format:e?"name":"hex8"}:(o=G.hex6.exec(t))?{r:T(o[1]),g:T(o[2]),b:T(o[3]),format:e?"name":"hex"}:(o=G.hex4.exec(t))?{r:T(o[1]+""+o[1]),g:T(o[2]+""+o[2]),b:T(o[3]+""+o[3]),a:M(o[4]+""+o[4]),format:e?"name":"hex8"}:!!(o=G.hex3.exec(t))&&{r:T(o[1]+""+o[1]),g:T(o[2]+""+o[2]),b:T(o[3]+""+o[3]),format:e?"name":"hex"}}function z(t){var e,o;return t=t||{level:"AA",size:"small"},e=(t.level||"AA").toUpperCase(),o=(t.size||"small").toLowerCase(),"AA"!==e&&"AAA"!==e&&(e="AA"),"small"!==o&&"large"!==o&&(o="small"),{level:e,size:o}}var q=/^\s+/,U=/\s+$/,N=0,X=i.round,Y=i.min,B=i.max,$=i.random;n.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var t=this.toRgb();return(299*t.r+587*t.g+114*t.b)/1e3},getLuminance:function(){var t,e,o,r,n,s,a=this.toRgb();return t=a.r/255,e=a.g/255,o=a.b/255,r=t<=.03928?t/12.92:i.pow((t+.055)/1.055,2.4),n=e<=.03928?e/12.92:i.pow((e+.055)/1.055,2.4),s=o<=.03928?o/12.92:i.pow((o+.055)/1.055,2.4),.2126*r+.7152*n+.0722*s},setAlpha:function(t){return this._a=j(t),this._roundA=X(100*this._a)/100,this},toHsv:function(){var t=u(this._r,this._g,this._b);return{h:360*t.h,s:t.s,v:t.v,a:this._a}},toHsvString:function(){var t=u(this._r,this._g,this._b),e=X(360*t.h),o=X(100*t.s),r=X(100*t.v);return 1==this._a?"hsv("+e+", "+o+"%, "+r+"%)":"hsva("+e+", "+o+"%, "+r+"%, "+this._roundA+")"},toHsl:function(){var t=l(this._r,this._g,this._b);return{h:360*t.h,s:t.s,l:t.l,a:this._a}},toHslString:function(){var t=l(this._r,this._g,this._b),e=X(360*t.h),o=X(100*t.s),r=X(100*t.l);return 1==this._a?"hsl("+e+", "+o+"%, "+r+"%)":"hsla("+e+", "+o+"%, "+r+"%, "+this._roundA+")"},toHex:function(t){return f(this._r,this._g,this._b,t)},toHexString:function(t){return"#"+this.toHex(t)},toHex8:function(t){return p(this._r,this._g,this._b,this._a,t)},toHex8String:function(t){return"#"+this.toHex8(t)},toRgb:function(){return{r:X(this._r),g:X(this._g),b:X(this._b),a:this._a}},toRgbString:function(){return 1==this._a?"rgb("+X(this._r)+", "+X(this._g)+", "+X(this._b)+")":"rgba("+X(this._r)+", "+X(this._g)+", "+X(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:X(100*P(this._r,255))+"%",g:X(100*P(this._g,255))+"%",b:X(100*P(this._b,255))+"%",a:this._a}},toPercentageRgbString:function(){return 1==this._a?"rgb("+X(100*P(this._r,255))+"%, "+X(100*P(this._g,255))+"%, "+X(100*P(this._b,255))+"%)":"rgba("+X(100*P(this._r,255))+"%, "+X(100*P(this._g,255))+"%, "+X(100*P(this._b,255))+"%, "+this._roundA+")"},toName:function(){return 0===this._a?"transparent":!(this._a<1)&&(W[f(this._r,this._g,this._b,!0)]||!1)},toFilter:function(t){var e="#"+d(this._r,this._g,this._b,this._a),o=e,r=this._gradientType?"GradientType = 1, ":"";if(t){var i=n(t);o="#"+d(i._r,i._g,i._b,i._a)}return"progid:DXImageTransform.Microsoft.gradient("+r+"startColorstr="+e+",endColorstr="+o+")"},toString:function(t){var e=!!t;t=t||this._format;var o=!1,r=this._a<1&&this._a>=0;return e||!r||"hex"!==t&&"hex6"!==t&&"hex3"!==t&&"hex4"!==t&&"hex8"!==t&&"name"!==t?("rgb"===t&&(o=this.toRgbString()),"prgb"===t&&(o=this.toPercentageRgbString()),"hex"!==t&&"hex6"!==t||(o=this.toHexString()),"hex3"===t&&(o=this.toHexString(!0)),"hex4"===t&&(o=this.toHex8String(!0)),"hex8"===t&&(o=this.toHex8String()),"name"===t&&(o=this.toName()),"hsl"===t&&(o=this.toHslString()),"hsv"===t&&(o=this.toHsvString()),o||this.toHexString()):"name"===t&&0===this._a?this.toName():this.toRgbString()},clone:function(){return n(this.toString())},_applyModification:function(t,e){var o=t.apply(null,[this].concat([].slice.call(e)));return this._r=o._r,this._g=o._g,this._b=o._b,this.setAlpha(o._a),this},lighten:function(){return this._applyModification(y,arguments)},brighten:function(){return this._applyModification(m,arguments)},darken:function(){return this._applyModification(k,arguments)},desaturate:function(){return this._applyModification(g,arguments)},saturate:function(){return this._applyModification(v,arguments)},greyscale:function(){return this._applyModification(b,arguments)},spin:function(){return this._applyModification(_,arguments)},_applyCombination:function(t,e){return t.apply(null,[this].concat([].slice.call(e)))},analogous:function(){return this._applyCombination(A,arguments)},complement:function(){return this._applyCombination(x,arguments)},monochromatic:function(){return this._applyCombination(S,arguments)},splitcomplement:function(){return this._applyCombination(O,arguments)},triad:function(){return this._applyCombination(w,arguments)},tetrad:function(){return this._applyCombination(C,arguments)}},n.fromRatio=function(t,e){if("object"==typeof t){var o={};for(var r in t)t.hasOwnProperty(r)&&(o[r]="a"===r?t[r]:D(t[r]));t=o}return n(t,e)},n.equals=function(t,e){return!(!t||!e)&&n(t).toRgbString()==n(e).toRgbString()},n.random=function(){return n.fromRatio({r:$(),g:$(),b:$()})},n.mix=function(t,e,o){o=0===o?0:o||50;var r=n(t).toRgb(),i=n(e).toRgb(),s=o/100;return n({r:(i.r-r.r)*s+r.r,g:(i.g-r.g)*s+r.g,b:(i.b-r.b)*s+r.b,a:(i.a-r.a)*s+r.a})},n.readability=function(t,e){var o=n(t),r=n(e);return(i.max(o.getLuminance(),r.getLuminance())+.05)/(i.min(o.getLuminance(),r.getLuminance())+.05)},n.isReadable=function(t,e,o){var r,i,s=n.readability(t,e);switch(i=!1,r=z(o),r.level+r.size){case"AAsmall":case"AAAlarge":i=s>=4.5;break;case"AAlarge":i=s>=3;break;case"AAAsmall":i=s>=7}return i},n.mostReadable=function(t,e,o){var r,i,s,a,l=null,c=0;o=o||{},i=o.includeFallbackColors,s=o.level,a=o.size;for(var u=0;u<e.length;u++)(r=n.readability(t,e[u]))>c&&(c=r,l=n(e[u]));return n.isReadable(t,l,{level:s,size:a})||!i?l:(o.includeFallbackColors=!1,n.mostReadable(t,["#fff","#000"],o))};var Q=n.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},W=n.hexNames=function(t){var e={};for(var o in t)t.hasOwnProperty(o)&&(e[t[o]]=o);return e}(Q),G=function(){var t="(?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?)",e="[\\s|\\(]+("+t+")[,|\\s]+("+t+")[,|\\s]+("+t+")\\s*\\)?",o="[\\s|\\(]+("+t+")[,|\\s]+("+t+")[,|\\s]+("+t+")[,|\\s]+("+t+")\\s*\\)?";return{CSS_UNIT:new RegExp(t),rgb:new RegExp("rgb"+e),rgba:new RegExp("rgba"+o),hsl:new RegExp("hsl"+e),hsla:new RegExp("hsla"+o),hsv:new RegExp("hsv"+e),hsva:new RegExp("hsva"+o),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/}}();void 0!==t&&t.exports?t.exports=n:void 0!==(r=function(){return n}.call(e,o,e,t))&&(t.exports=r)}(Math)},function(t,e,o){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={debug:!1,color:!1,format:!1,horizontal:!1,inline:!1,input:"input",container:!1,component:".add-on, .input-group-addon",fallbackColor:!1,autoInputFallback:!1,useHashPrefix:!0,useAlpha:!0,enableHex8:!1,sliders:{saturation:{maxLeft:100,maxTop:100,callLeft:"setSaturationRatio",callTop:"setBrightnessRatio"},hue:{maxLeft:0,maxTop:100,callLeft:!1,callTop:"setHueRatio"},alpha:{maxLeft:0,maxTop:100,callLeft:!1,callTop:"setAlphaRatio"}},slidersHorz:{saturation:{maxLeft:100,maxTop:100,callLeft:"setSaturationRatio",callTop:"setBrightnessRatio"},hue:{maxLeft:100,maxTop:0,callLeft:"setHueRatio",callTop:!1},alpha:{maxLeft:100,maxTop:0,callLeft:"setAlphaRatio",callTop:!1}},align:"right",customClass:null,template:'<div class="colorpicker">\n <div class="colorpicker-saturation"><i class="colorpicker-guide"><i /></div>\n <div class="colorpicker-hue"><i class="colorpicker-guide"></i></div>\n <div class="colorpicker-alpha"><i class="colorpicker-guide"></i></div></div>',extensions:[{name:"preview",showText:!1}]}},function(t,e,o){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0}),e.Palette=e.Swatches=e.Preview=e.Debugger=void 0;var i=o(9),n=r(i),s=o(10),a=r(s),l=o(11),c=r(l),u=o(2),h=r(u);e.Debugger=n.default,e.Preview=a.default,e.Swatches=c.default,e.Palette=h.default,e.default={debugger:n.default,preview:a.default,swatches:c.default,palette:h.default}},function(t,e,o){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function n(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){for(var o=0;o<e.length;o++){var r=e[o];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,o,r){return o&&t(e.prototype,o),r&&t(e,r),e}}(),l=function t(e,o,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,o);if(void 0===i){var n=Object.getPrototypeOf(e);return null===n?void 0:t(n,o,r)}if("value"in i)return i.value;var s=i.get;if(void 0!==s)return s.call(r)},c=o(1),u=r(c),h=o(0),f=r(h),p=function(t){function e(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};i(this,e);var r=n(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,o));return r.eventCounter=0,r.colorpicker.hasInput()&&r.colorpicker.input.on("change.colorpicker-ext",f.default.proxy(r.onChangeInput,r)),r}return s(e,t),a(e,[{key:"log",value:function(t){for(var e,o=arguments.length,r=Array(o>1?o-1:0),i=1;i<o;i++)r[i-1]=arguments[i];this.eventCounter+=1;var n="#"+this.eventCounter+": Colorpicker#"+this.colorpicker.id+" ["+t+"]";(e=console).debug.apply(e,[n].concat(r)),this.colorpicker.element.trigger({type:"colorpickerDebug",colorpicker:this.colorpicker,color:this.color,debug:{debugger:this,eventName:t,logArgs:r,logMessage:n}})}},{key:"resolveColor",value:function(t){return this.log("resolveColor()",t),!1}},{key:"onCreate",value:function(t){return this.log("colorpickerCreate"),l(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"onCreate",this).call(this,t)}},{key:"onDestroy",value:function(t){return this.log("colorpickerDestroy"),this.eventCounter=0,this.colorpicker.hasInput()&&this.colorpicker.input.off(".colorpicker-ext"),l(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"onDestroy",this).call(this,t)}},{key:"onUpdate",value:function(t){this.log("colorpickerUpdate")}},{key:"onChangeInput",value:function(t){this.log("input:change.colorpicker",t.value,t.color)}},{key:"onChange",value:function(t){this.log("colorpickerChange",t.value,t.color)}},{key:"onInvalid",value:function(t){this.log("colorpickerInvalid",t.value,t.color)}},{key:"onHide",value:function(t){this.log("colorpickerHide"),this.eventCounter=0}},{key:"onShow",value:function(t){this.log("colorpickerShow")}},{key:"onDisable",value:function(t){this.log("colorpickerDisable")}},{key:"onEnable",value:function(t){this.log("colorpickerEnable")}}]),e}(u.default);e.default=p},function(t,e,o){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function n(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){for(var o=0;o<e.length;o++){var r=e[o];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,o,r){return o&&t(e.prototype,o),r&&t(e,r),e}}(),l=function t(e,o,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,o);if(void 0===i){var n=Object.getPrototypeOf(e);return null===n?void 0:t(n,o,r)}if("value"in i)return i.value;var s=i.get;if(void 0!==s)return s.call(r)},c=o(1),u=r(c),h=o(0),f=r(h),p=function(t){function e(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};i(this,e);var r=n(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,Object.assign({},{template:'<div class="colorpicker-bar colorpicker-preview"><div /></div>',showText:!0,format:t.format},o)));return r.element=(0,f.default)(r.options.template),r.elementInner=r.element.find("div"),r}return s(e,t),a(e,[{key:"onCreate",value:function(t){l(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"onCreate",this).call(this,t),this.colorpicker.picker.append(this.element)}},{key:"onUpdate",value:function(t){l(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"onUpdate",this).call(this,t),this.elementInner.css("backgroundColor",t.color.toRgbString()),this.options.showText&&(this.elementInner.html(t.color.toString(this.options.format||this.colorpicker.format)),t.color.isDark()?this.elementInner.css("color","white"):this.elementInner.css("color","black"))}}]),e}(u.default);e.default=p},function(t,e,o){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function n(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){for(var o=0;o<e.length;o++){var r=e[o];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,o,r){return o&&t(e.prototype,o),r&&t(e,r),e}}(),l=function t(e,o,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,o);if(void 0===i){var n=Object.getPrototypeOf(e);return null===n?void 0:t(n,o,r)}if("value"in i)return i.value;var s=i.get;if(void 0!==s)return s.call(r)},c=o(2),u=r(c),h=o(0),f=r(h),p={barTemplate:'<div class="colorpicker-bar colorpicker-swatches"></div>',swatchTemplate:'<i class="colorpicker-swatch"></i>'},d=function(t){function e(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return i(this,e),n(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,Object.assign({},p,o)))}return s(e,t),a(e,[{key:"isEnabled",value:function(){return this.getLength()>0}},{key:"onCreate",value:function(t){var o=this;if(l(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"onCreate",this).call(this,t),this.isEnabled()){var r=this.colorpicker,i=(0,f.default)(this.options.barTemplate),n=!0===this.options.namesAsValues&&!Array.isArray(this.colors);f.default.each(this.colors,function(t,e){var s=(0,f.default)(o.options.swatchTemplate).css("background-color",e).attr("data-name",t).attr("data-value",e).attr("title",t+": "+e);s.on("mousedown.colorpicker touchstart.colorpicker",function(t){t.preventDefault(),r.setValue(n?(0,f.default)(this).data("name"):(0,f.default)(this).data("value"))}),i.append(s)}),r.picker.append(i)}}}]),e}(u.default);e.default=d}])});
10
- //# sourceMappingURL=bootstrap-colorpicker.min.js.map
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Bootstrap Colorpicker - Simple and customizable colorpicker component for Twitter Bootstrap.
3
+ @package bootstrap-colorpicker
4
+ @version v3.0.0-wip
5
+ @license MIT
6
+ @link https://farbelous.github.io/bootstrap-colorpicker/
7
+ @link https://github.com/farbelous/bootstrap-colorpicker.git
8
+ */
9
+ var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.arrayIteratorImpl=function(h){var a=0;return function(){return a<h.length?{done:!1,value:h[a++]}:{done:!0}}};$jscomp.arrayIterator=function(h){return{next:$jscomp.arrayIteratorImpl(h)}};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.SIMPLE_FROUND_POLYFILL=!1;
10
+ $jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(h,a,g){h!=Array.prototype&&h!=Object.prototype&&(h[a]=g.value)};$jscomp.getGlobal=function(h){h=["object"==typeof globalThis&&globalThis,"object"==typeof window&&window,"object"==typeof self&&self,"object"==typeof global&&global,h];for(var a=0;a<h.length;++a){var g=h[a];if(g&&g.Math==Math)return g}throw Error("Cannot find global object");};$jscomp.global=$jscomp.getGlobal(this);
11
+ $jscomp.SYMBOL_PREFIX="jscomp_symbol_";$jscomp.initSymbol=function(){$jscomp.initSymbol=function(){};$jscomp.global.Symbol||($jscomp.global.Symbol=$jscomp.Symbol)};$jscomp.SymbolClass=function(h,a){this.$jscomp$symbol$id_=h;$jscomp.defineProperty(this,"description",{configurable:!0,writable:!0,value:a})};$jscomp.SymbolClass.prototype.toString=function(){return this.$jscomp$symbol$id_};
12
+ $jscomp.Symbol=function(){function h(g){if(this instanceof h)throw new TypeError("Symbol is not a constructor");return new $jscomp.SymbolClass($jscomp.SYMBOL_PREFIX+(g||"")+"_"+a++,g)}var a=0;return h}();
13
+ $jscomp.initSymbolIterator=function(){$jscomp.initSymbol();var h=$jscomp.global.Symbol.iterator;h||(h=$jscomp.global.Symbol.iterator=$jscomp.global.Symbol("Symbol.iterator"));"function"!=typeof Array.prototype[h]&&$jscomp.defineProperty(Array.prototype,h,{configurable:!0,writable:!0,value:function(){return $jscomp.iteratorPrototype($jscomp.arrayIteratorImpl(this))}});$jscomp.initSymbolIterator=function(){}};
14
+ $jscomp.initSymbolAsyncIterator=function(){$jscomp.initSymbol();var h=$jscomp.global.Symbol.asyncIterator;h||(h=$jscomp.global.Symbol.asyncIterator=$jscomp.global.Symbol("Symbol.asyncIterator"));$jscomp.initSymbolAsyncIterator=function(){}};$jscomp.iteratorPrototype=function(h){$jscomp.initSymbolIterator();h={next:h};h[$jscomp.global.Symbol.iterator]=function(){return this};return h};
15
+ (function(h,a){"object"===typeof exports&&"object"===typeof module?module.exports=a(require("jQuery")):"function"===typeof define&&define.amd?define("bootstrap-colorpicker",["jQuery"],a):"object"===typeof exports?exports["bootstrap-colorpicker"]=a(require("jQuery")):h["bootstrap-colorpicker"]=a(h.jQuery)})(this,function(h){return function(a){function g(B){if(f[B])return f[B].exports;var n=f[B]={i:B,l:!1,exports:{}};a[B].call(n.exports,n,n.exports,g);n.l=!0;return n.exports}var f={};g.m=a;g.c=f;g.d=
16
+ function(a,f,d){g.o(a,f)||Object.defineProperty(a,f,{configurable:!1,enumerable:!0,get:d})};g.n=function(a){var f=a&&a.__esModule?function(){return a["default"]}:function(){return a};g.d(f,"a",f);return f};g.o=function(a,f){return Object.prototype.hasOwnProperty.call(a,f)};g.p="";return g(g.s=3)}([function(a,g){a.exports=h},function(a,g,f){Object.defineProperty(g,"__esModule",{value:!0});var h=function(){function d(d,a){for(var p=0;p<a.length;p++){var b=a[p];b.enumerable=b.enumerable||!1;b.configurable=
17
+ !0;"value"in b&&(b.writable=!0);Object.defineProperty(d,b.key,b)}}return function(a,f,p){f&&d(a.prototype,f);p&&d(a,p);return a}}(),n=(a=f(0))&&a.__esModule?a:{"default":a};a=function(){function a(d){var f=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};if(!(this instanceof a))throw new TypeError("Cannot call a class as a function");this.colorpicker=d;this.options=f;if(!this.colorpicker.element||!this.colorpicker.element.length)throw Error("Extension: this.colorpicker.element is not valid");
18
+ this.colorpicker.element.on("colorpickerCreate.colorpicker-ext",n["default"].proxy(this.onCreate,this));this.colorpicker.element.on("colorpickerDestroy.colorpicker-ext",n["default"].proxy(this.onDestroy,this));this.colorpicker.element.on("colorpickerUpdate.colorpicker-ext",n["default"].proxy(this.onUpdate,this));this.colorpicker.element.on("colorpickerChange.colorpicker-ext",n["default"].proxy(this.onChange,this));this.colorpicker.element.on("colorpickerInvalid.colorpicker-ext",n["default"].proxy(this.onInvalid,
19
+ this));this.colorpicker.element.on("colorpickerShow.colorpicker-ext",n["default"].proxy(this.onShow,this));this.colorpicker.element.on("colorpickerHide.colorpicker-ext",n["default"].proxy(this.onHide,this));this.colorpicker.element.on("colorpickerEnable.colorpicker-ext",n["default"].proxy(this.onEnable,this));this.colorpicker.element.on("colorpickerDisable.colorpicker-ext",n["default"].proxy(this.onDisable,this))}h(a,[{key:"resolveColor",value:function(a){return!1}},{key:"onCreate",value:function(a){}},
20
+ {key:"onDestroy",value:function(a){this.colorpicker.element.off(".colorpicker-ext")}},{key:"onUpdate",value:function(a){}},{key:"onChange",value:function(a){}},{key:"onInvalid",value:function(a){}},{key:"onHide",value:function(a){}},{key:"onShow",value:function(a){}},{key:"onDisable",value:function(a){}},{key:"onEnable",value:function(a){}}]);return a}();g["default"]=a},function(a,g,f){function h(a,p){if("function"!==typeof p&&null!==p)throw new TypeError("Super expression must either be null or a function, not "+
21
+ typeof p);a.prototype=Object.create(p&&p.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}});p&&(Object.setPrototypeOf?Object.setPrototypeOf(a,p):a.__proto__=p)}Object.defineProperty(g,"__esModule",{value:!0});$jscomp.initSymbol();$jscomp.initSymbol();$jscomp.initSymbolIterator();var n="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(a){return typeof a}:function(a){$jscomp.initSymbol();$jscomp.initSymbol();$jscomp.initSymbol();return a&&"function"===
22
+ typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a},d=function(){function a(a,b){for(var e=0;e<b.length;e++){var c=b[e];c.enumerable=c.enumerable||!1;c.configurable=!0;"value"in c&&(c.writable=!0);Object.defineProperty(a,c.key,c)}}return function(d,b,e){b&&a(d.prototype,b);e&&a(d,e);return d}}();a=f(1);var t={colors:null,namesAsValues:!0};a=function(a){function p(b){var a=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};if(!(this instanceof p))throw new TypeError("Cannot call a class as a function");
23
+ a=(p.__proto__||Object.getPrototypeOf(p)).call(this,b,Object.assign({},t,a));if(!this)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");a=!a||"object"!==typeof a&&"function"!==typeof a?this:a;Array.isArray(a.options.colors)||"object"===n(a.options.colors)||(a.options.colors=null);return a}h(p,a);d(p,[{key:"colors",get:function(){return this.options.colors}}]);d(p,[{key:"getLength",value:function(){return this.options.colors?Array.isArray(this.options.colors)?this.options.colors.length:
24
+ "object"===n(this.options.colors)?Object.keys(this.options.colors).length:0:0}},{key:"resolveColor",value:function(b){return 0>=this.getLength()?!1:Array.isArray(this.options.colors)?0<=this.options.colors.indexOf(b)?b:0<=this.options.colors.indexOf(b.toUpperCase())?b.toUpperCase():0<=this.options.colors.indexOf(b.toLowerCase())?b.toLowerCase():!1:"object"!==n(this.options.colors)?!1:this.options.namesAsValues?this.getName(b,this.getName("#"+b,this.getValue(b,!1))):this.getValue(b,!1)}},{key:"getName",
25
+ value:function(b){var a=1<arguments.length&&void 0!==arguments[1]?arguments[1]:!1;if("string"!==typeof b||!this.options.colors)return a;for(var c in this.options.colors)if(this.options.colors.hasOwnProperty(c)&&this.options.colors[c].toLowerCase()===b.toLowerCase())return c;return a}},{key:"getValue",value:function(b){var a=1<arguments.length&&void 0!==arguments[1]?arguments[1]:!1;return"string"===typeof b&&this.options.colors?this.options.colors.hasOwnProperty(b)?this.options.colors[b]:a:a}}]);return p}((a&&
26
+ a.__esModule?a:{"default":a})["default"]);g["default"]=a},function(a,g,f){$jscomp.initSymbol();$jscomp.initSymbol();$jscomp.initSymbolIterator();var h="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(a){return typeof a}:function(a){$jscomp.initSymbol();$jscomp.initSymbol();$jscomp.initSymbol();return a&&"function"===typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a},n=(a=f(4))&&a.__esModule?a:{"default":a},d=(f=f(0))&&f.__esModule?f:{"default":f};
27
+ d["default"].colorpicker=n["default"];d["default"].fn.colorpicker=function(a){var f=Array.prototype.slice.call(arguments,1),p=1===this.length,b=null,e=this.each(function(){var c=(0,d["default"])(this),l=c.data("colorpicker"),e="object"===("undefined"===typeof a?"undefined":h(a))?a:{};l||(l=new n["default"](this,e),c.data("colorpicker",l));"string"===typeof a?"colorpicker"===a?b=l:d["default"].isFunction(l[a])?b=l[a].apply(l,f):(f.length&&(l[a]=f[0]),b=l[a]):b=c});return p?b:e};d["default"].fn.colorpicker.constructor=
28
+ n["default"]},function(a,g,f){function h(a){return a&&a.__esModule?a:{"default":a}}Object.defineProperty(g,"__esModule",{value:!0});var n=function(){function a(l,a){for(var b=0;b<a.length;b++){var c=a[b];c.enumerable=c.enumerable||!1;c.configurable=!0;"value"in c&&(c.writable=!0);Object.defineProperty(l,c.key,c)}}return function(l,b,c){b&&a(l.prototype,b);c&&a(l,c);return l}}();a=f(5);var d=h(a);a=f(1);var t=h(a);a=f(7);var A=h(a);a=f(8);var p=h(a);f=f(0);var b=h(f),e=0;f=function(){function a(l,
29
+ c){var d=this;if(!(this instanceof a))throw new TypeError("Cannot call a class as a function");this.id=e+=1;this.element=(0,b["default"])(l).addClass("colorpicker-element");this.element.attr("data-colorpicker-id",this.id);this.options=Object.assign({},A["default"],c,this.element.data());this.extensions=[];Array.isArray(this.options.extensions)||(this.options.extensions=[]);this.component=this.options.component;(this.component=!1!==this.component?this.element.find(this.component):!1)&&0===this.component.length&&
30
+ (this.component=!1);this.container=!0===this.options.container?this.element:this.options.container;this.container=!1!==this.container?(0,b["default"])(this.container):!1;this.currentSlider=null;this.mousePointer={left:0,top:0};this.lastEvent={name:null,e:null};(this.input=this.element.is("input")?this.element:this.options.input?this.element.find(this.options.input):!1)&&0===this.input.length&&(this.input=!1);this.options.debug&&this.options.extensions.push({name:"Debugger"});this.options.extensions.forEach(function(a){d.addExtension(a.name,
31
+ p["default"][a.name.toLowerCase()],a)});var f=!1!==this.options.color?this.options.color:this.getValue();this.color=f?this.createColor(f):!1;!1===this.options.format&&(this.options.format=this.color.format);this.disabled=!1;f=this.picker=(0,b["default"])(this.options.template);this.options.customClass&&f.addClass(this.options.customClass);this.options.inline?f.addClass("colorpicker-inline colorpicker-visible"):f.addClass("colorpicker-hidden");this.options.horizontal&&f.addClass("colorpicker-horizontal");
32
+ (this.options.useAlpha||this.hasColor()&&this.color.hasTransparency())&&!1!==this.options.useAlpha&&(this.options.useAlpha=!0,f.addClass("colorpicker-with-alpha"));"right"===this.options.align&&f.addClass("colorpicker-right");!0===this.options.inline&&f.addClass("colorpicker-no-arrow");f.on("mousedown.colorpicker touchstart.colorpicker",b["default"].proxy(function(a){a.target===a.currentTarget&&a.preventDefault()},this));f.find(".colorpicker-saturation, .colorpicker-hue, .colorpicker-alpha").on("mousedown.colorpicker touchstart.colorpicker",
33
+ b["default"].proxy(this._mousedown,this));f.appendTo(this.container?this.container:(0,b["default"])("body"));if(this.hasInput()){this.input.on({"keyup.colorpicker":b["default"].proxy(this._keyup,this)});this.input.on({"change.colorpicker":b["default"].proxy(this._change,this)});if(!1===this.component)this.element.on({"focus.colorpicker":b["default"].proxy(this.show,this)});if(!1===this.options.inline)this.element.on({"focusout.colorpicker":b["default"].proxy(this.hide,this)})}if(!1!==this.component)this.component.on({"click.colorpicker":b["default"].proxy(this.show,
34
+ this)});if(!1===this.hasInput()&&!1===this.component&&!this.element.has(".colorpicker"))this.element.on({"click.colorpicker":b["default"].proxy(this.show,this)});if(this.hasInput()&&!1!==this.component&&"color"===this.input.attr("type"))this.input.on({"click.colorpicker":b["default"].proxy(this.show,this),"focus.colorpicker":b["default"].proxy(this.show,this)});this.update(!1!==this.options.color);(0,b["default"])(b["default"].proxy(function(){this.element.trigger({type:"colorpickerCreate",colorpicker:this,
35
+ color:this.color})},this))}n(a,[{key:"color",get:function(){return this.element.data("color")},set:function(a){this.element.data("color",a)}}],[{key:"Color",get:function(){return d["default"]}},{key:"Extension",get:function(){return t["default"]}},{key:"Extensions",get:function(){return p["default"]}}]);n(a,[{key:"addExtension",value:function(a,b){var l=2<arguments.length&&void 0!==arguments[2]?arguments[2]:{};l=a instanceof t["default"]?a:new b(this,l);this.extensions.push(l);return l}},{key:"destroy",
36
+ value:function(){this.picker.remove();this.element.removeData("colorpicker","color").off(".colorpicker");this.hasInput()&&this.input.off(".colorpicker");!1!==this.component&&this.component.off(".colorpicker");this.element.removeClass("colorpicker-element");this.element.trigger({type:"colorpickerDestroy",colorpicker:this,color:this.color})}},{key:"hasColor",value:function(){return this.color instanceof d["default"]}},{key:"toInputColorString",value:function(){var a=this.toCssColorString();if(!a)return a;
37
+ !1===this.options.useHashPrefix&&(a=a.replace(/^#/g,""));return this._resolveColor(a)}},{key:"toCssColorString",value:function(){return this.hasColor()?this.color.toString(this.format):""}},{key:"_reposition",value:function(a){this.lastEvent.name="reposition";this.lastEvent.e=a;if(!1!==this.options.inline||this.options.container)return!1;a=this.component||this.element;var b=a[this.container&&this.container[0]!==window.document.body?"position":"offset"]();"right"===this.options.align&&(b.left-=this.picker.outerWidth()-
38
+ a.outerWidth());this.picker.css({top:b.top+a.outerHeight(),left:b.left});return!0}},{key:"show",value:function(a){this.lastEvent.name="show";this.lastEvent.e=a;if(this.isVisible()||this.isDisabled())return!1;this.picker.addClass("colorpicker-visible").removeClass("colorpicker-hidden");this._reposition(a);(0,b["default"])(window).on("resize.colorpicker",b["default"].proxy(this._reposition,this));a&&(!this.hasInput()||"color"===this.input.attr("type"))&&a.stopPropagation&&a.preventDefault&&(a.stopPropagation(),
39
+ a.preventDefault());if((this.component||!this.input)&&!1===this.options.inline)(0,b["default"])(window.document).on({"mousedown.colorpicker":b["default"].proxy(this.hide,this)});this.element.trigger({type:"colorpickerShow",colorpicker:this,color:this.color});return!0}},{key:"hide",value:function(a){this.lastEvent.name="hide";this.lastEvent.e=a;if(this.isHidden()||"undefined"!==typeof a&&a.target&&(0<(0,b["default"])(a.currentTarget).parents(".colorpicker").length||0<(0,b["default"])(a.target).parents(".colorpicker").length))return!1;
40
+ this.picker.addClass("colorpicker-hidden").removeClass("colorpicker-visible");(0,b["default"])(window).off("resize.colorpicker",this._reposition);(0,b["default"])(window.document).off({"mousedown.colorpicker":this.hide});this.element.trigger({type:"colorpickerHide",colorpicker:this,color:this.color});return!0}},{key:"isVisible",value:function(){return this.picker.hasClass("colorpicker-visible")&&!this.picker.hasClass("colorpicker-hidden")}},{key:"isHidden",value:function(){return this.picker.hasClass("colorpicker-hidden")&&
41
+ !this.picker.hasClass("colorpicker-visible")}},{key:"_updateInput",value:function(){if(this.hasInput()){var a=this.toInputColorString();a!==this.input.prop("value")&&(this.input.prop("value",a?a:""),this.input.trigger({type:"change",colorpicker:this,color:this.color,value:a}))}}},{key:"_updatePicker",value:function(){if(this.hasColor()){var a=!1===this.options.horizontal,b=a?this.options.sliders:this.options.slidersHorz,c=this.picker.find(".colorpicker-saturation .colorpicker-guide"),e=this.picker.find(".colorpicker-hue .colorpicker-guide"),
42
+ d=this.picker.find(".colorpicker-alpha .colorpicker-guide"),p=this.color.hsvaRatio;e.length&&e.css(a?"top":"left",(a?b.hue.maxTop:b.hue.maxLeft)*(1-p.h));d.length&&d.css(a?"top":"left",(a?b.alpha.maxTop:b.alpha.maxLeft)*(1-p.a));c.length&&c.css({top:b.saturation.maxTop-p.v*b.saturation.maxTop,left:p.s*b.saturation.maxLeft});this.picker.find(".colorpicker-saturation").css("backgroundColor",this.color.getHueOnlyCopy().toHexString());this.picker.find(".colorpicker-alpha").css("backgroundColor",this.color.toString("hex6"))}}},
43
+ {key:"_updateComponent",value:function(){if(this.hasColor()&&!1!==this.component){var a=this.component.find("i").eq(0);0<a.length?a.css({backgroundColor:this.toCssColorString()}):this.component.css({backgroundColor:this.toCssColorString()})}}},{key:"_shouldUpdate",value:function(){return this.hasColor()&&!1!==this.getValue(!1)}},{key:"update",value:function(){var a=0<arguments.length&&void 0!==arguments[0]?arguments[0]:!1;if(this._shouldUpdate()||!0===a)this._updateComponent(),!0!==this.options.autoInputFallback&&
44
+ "keyup"===this.lastEvent.name||this._updateInput(),this._updatePicker(),this.element.trigger({type:"colorpickerUpdate",colorpicker:this,color:this.color})}},{key:"getValue",value:function(){var a=0<arguments.length&&void 0!==arguments[0]?arguments[0]:null;a="undefined"===typeof a?this.fallbackColor:a;var b=[],c=!1;this.hasInput()&&(b.push(this.input.val()),b.push(this.input.data("color")));b.push(this.element.data("color"));b.map(function(a){a&&!1===c&&(c=a)});c=!1===c?a:c;return c instanceof d["default"]?
45
+ c.toString(this.format):c}},{key:"setValue",value:function(a){if(!this.hasColor()||!this.color.equals(a)){var b=a?this.createColor(a):!1;if(this.hasColor()||b){var c=this.hasColor()&&!b;this.color=b;this.element.trigger({type:"colorpickerChange",colorpicker:this,color:this.color,value:a});this.update(c)}}}},{key:"createColor",value:function(a){var b=1<arguments.length&&void 0!==arguments[1]?arguments[1]:!0,c=new d["default"](this._resolveColor(a),{format:this.format});if(!c.isValid()){var l=c;if(b&&
46
+ (c=this.fallbackColor instanceof d["default"]&&this.fallbackColor.isValid()?this.fallbackColor:this._resolveColor(this.fallbackColor),c=new d["default"](c,{format:this.format}),!c.isValid()&&b))throw Error("The fallback color is invalid.");c.previous=l;this.element.trigger({type:"colorpickerInvalid",colorpicker:this,color:c,value:a})}!this.isAlphaEnabled()&&c.hasTransparency()&&c.setAlpha(1);if(!this.hasColor())return c;b=c.hsvaRatio;l=this.color.hsvaRatio;0===b.s&&0===b.h&&0!==l.h&&c.setHueRatio(l.h);
47
+ !this.isAlphaEnabled()&&c.hasTransparency()&&c.setAlpha(1);return c}},{key:"isInvalidColor",value:function(){return!this.hasColor()||!this.color.isValid()||!!this.color.previous}},{key:"isAlphaEnabled",value:function(){return!0===this.options.useAlpha}},{key:"_resolveColor",value:function(a){var c=!1;b["default"].each(this.extensions,function(b,l){!1===c&&(c=l.resolveColor(a))});!1!==c&&(a=c);return a}},{key:"hasInput",value:function(){return!1!==this.input}},{key:"isDisabled",value:function(){return!0===
48
+ this.disabled}},{key:"disable",value:function(){this.hasInput()&&this.input.prop("disabled",!0);this.disabled=!0;this.element.trigger({type:"colorpickerDisable",colorpicker:this,color:this.color});return!0}},{key:"enable",value:function(){this.hasInput()&&this.input.prop("disabled",!1);this.disabled=!1;this.element.trigger({type:"colorpickerEnable",colorpicker:this,color:this.color});return!0}},{key:"_mousedown",value:function(a){this.lastEvent.name="mousedown";this.lastEvent.e=a;!a.pageX&&!a.pageY&&
49
+ a.originalEvent&&a.originalEvent.touches&&(a.pageX=a.originalEvent.touches[0].pageX,a.pageY=a.originalEvent.touches[0].pageY);a.stopPropagation();a.preventDefault();var c=(0,b["default"])(a.target).closest("div"),l=this.options.horizontal?this.options.slidersHorz:this.options.sliders;if(!c.is(".colorpicker")){if(c.is(".colorpicker-saturation"))this.currentSlider=b["default"].extend({},l.saturation);else if(c.is(".colorpicker-hue"))this.currentSlider=b["default"].extend({},l.hue);else if(c.is(".colorpicker-alpha"))this.currentSlider=
50
+ b["default"].extend({},l.alpha);else return!1;l=c.offset();this.currentSlider.guide=c.find(".colorpicker-guide")[0].style;this.currentSlider.left=a.pageX-l.left;this.currentSlider.top=a.pageY-l.top;this.mousePointer={left:a.pageX,top:a.pageY};(0,b["default"])(window.document).on({"mousemove.colorpicker":b["default"].proxy(this._mousemove,this),"touchmove.colorpicker":b["default"].proxy(this._mousemove,this),"mouseup.colorpicker":b["default"].proxy(this._mouseup,this),"touchend.colorpicker":b["default"].proxy(this._mouseup,
51
+ this)}).trigger("mousemove")}return!1}},{key:"_mousemove",value:function(a){this.lastEvent.name="mousemove";this.lastEvent.e=a;var c=this.hasColor()?this.color.getCopy():this.createColor(this.fallbackColor);!a.pageX&&!a.pageY&&a.originalEvent&&a.originalEvent.touches&&(a.pageX=a.originalEvent.touches[0].pageX,a.pageY=a.originalEvent.touches[0].pageY);a.stopPropagation();a.preventDefault();var b=Math.max(0,Math.min(this.currentSlider.maxLeft,this.currentSlider.left+((a.pageX||this.mousePointer.left)-
52
+ this.mousePointer.left)));a=Math.max(0,Math.min(this.currentSlider.maxTop,this.currentSlider.top+((a.pageY||this.mousePointer.top)-this.mousePointer.top)));this.currentSlider.guide.left=b+"px";this.currentSlider.guide.top=a+"px";this.currentSlider.callLeft&&c[this.currentSlider.callLeft].call(c,b/this.currentSlider.maxLeft);this.currentSlider.callTop&&c[this.currentSlider.callTop].call(c,a/this.currentSlider.maxTop);this.setValue(c);return!1}},{key:"_mouseup",value:function(a){this.lastEvent.name=
53
+ "mouseup";this.lastEvent.e=a;a.stopPropagation();a.preventDefault();(0,b["default"])(window.document).off({"mousemove.colorpicker":this._mousemove,"touchmove.colorpicker":this._mousemove,"mouseup.colorpicker":this._mouseup,"touchend.colorpicker":this._mouseup});return!1}},{key:"_change",value:function(a){this.lastEvent.name="change";this.lastEvent.e=a;a=this.input.val();a!==this.toInputColorString()&&this.setValue(a)}},{key:"_keyup",value:function(a){this.lastEvent.name="keyup";this.lastEvent.e=a;
54
+ a=this.input.val();a!==this.toInputColorString()&&this.setValue(a)}},{key:"fallbackColor",get:function(){return this.options.fallbackColor?this.options.fallbackColor:this.hasColor()?this.color:"#000"}},{key:"format",get:function(){return this.options.format?this.options.format:this.hasColor()&&this.color.hasTransparency()&&this.color.format.match(/^hex/)?this.options.enableHex8?"hex8":this.isAlphaEnabled()?"rgba":"hex":this.hasColor()?this.color.format:null}}]);return a}();g["default"]=f},function(a,
55
+ g,f){function h(a,b){if("function"!==typeof b&&null!==b)throw new TypeError("Super expression must either be null or a function, not "+typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}});b&&(Object.setPrototypeOf?Object.setPrototypeOf(a,b):a.__proto__=b)}function n(a){return a instanceof String||"string"===typeof a?a.replace(/a$/gi,""):a}Object.defineProperty(g,"__esModule",{value:!0});var d=function l(a,e,c){null===a&&(a=Function.prototype);
56
+ var b=Object.getOwnPropertyDescriptor(a,e);if(void 0===b){if(a=Object.getPrototypeOf(a),null!==a)return l(a,e,c)}else{if("value"in b)return b.value;e=b.get;return void 0===e?void 0:e.call(c)}},t=function(){function a(a,c){for(var b=0;b<c.length;b++){var e=c[b];e.enumerable=e.enumerable||!1;e.configurable=!0;"value"in e&&(e.writable=!0);Object.defineProperty(a,e.key,e)}}return function(b,c,d){c&&a(b.prototype,c);d&&a(b,d);return b}}(),A=(a=f(6))&&a.__esModule?a:{"default":a};a=function(a){function b(a){var c=
57
+ 1<arguments.length&&void 0!==arguments[1]?arguments[1]:{format:null};if(!(this instanceof b))throw new TypeError("Cannot call a class as a function");c.format&&(c.format=n(c.format));c=(b.__proto__||Object.getPrototypeOf(b)).call(this,a instanceof A["default"]?{r:a._r,g:a._g,b:a._b,a:a._a}:a,c);if(!this)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");c=!c||"object"!==typeof c&&"function"!==typeof c?this:c;c._originalInput=a;c._hbak=c.hsva.h;c.previous=null;return c}
58
+ h(b,a);t(b,[{key:"id",get:function(){return this._tc_id}},{key:"format",get:function(){return this._format}},{key:"options",get:function(){return{format:this._format,gradientType:this._gradientType}}},{key:"hsva",get:function(){return this.toHsv()}},{key:"hsvaRatio",get:function(){var a=this.hsva;return{h:a.h/360,s:a.s,v:a.v,a:a.a}}}]);t(b,[{key:"equals",value:function(a){return a instanceof A["default"]?this._r===a._r&&this._g===a._g&&this._b===a._b&&this._a===a._a&&this._roundA===a._roundA&&this._format===
59
+ a._format&&this._gradientType===a._gradientType&&this._ok===a._ok:!1}},{key:"importColor",value:function(a){if(!(a instanceof A["default"]))throw Error("Color.importColor: The color argument is not an instance of tinycolor.");this._originalInput=a._originalInput;this._r=a._r;this._g=a._g;this._b=a._b;this._a=a._a;this._roundA=a._roundA;this._format=n(a._format);this._gradientType=a._gradientType;this._ok=a._ok}},{key:"importRgb",value:function(a){if(!a instanceof b)throw Error("Color.importColor: The color argument is not an instance of tinycolor.");
60
+ this._r=a._r;this._g=a._g;this._b=a._b;this._a=a._a;this._ok=a._ok;this._hbak=a._hbak}},{key:"importHsv",value:function(a){this._hbak=a.h;this.importRgb(new b(a,this.options))}},{key:"getCopy",value:function(){return new b(this.hsva,this.options)}},{key:"getHueOnlyCopy",value:function(){return new b({h:this._hbak?this._hbak:this.hsva.h,s:100,v:100},this.options)}},{key:"getOpaqueCopy",value:function(){return new b(Object.assign({},this.hsva,{a:1}),this.options)}},{key:"setHue",value:function(a){this.importHsv(Object.assign({},
61
+ this.hsva,{h:a}))}},{key:"setSaturation",value:function(a){this.importHsv(Object.assign({},this.hsva,{s:a}))}},{key:"setBrightness",value:function(a){this.importHsv(Object.assign({},this.hsva,{v:a}))}},{key:"setHueRatio",value:function(a){0!==a&&this.setHue(360*(1-a))}},{key:"setSaturationRatio",value:function(a){this.setSaturation(a)}},{key:"setBrightnessRatio",value:function(a){this.setBrightness(1-a)}},{key:"setAlphaRatio",value:function(a){this.setAlpha(1-a)}},{key:"isTransparent",value:function(){return 0===
62
+ this._a}},{key:"hasTransparency",value:function(){return 1!==this._a}},{key:"toString",value:function(){var a=0<arguments.length&&void 0!==arguments[0]?arguments[0]:null;a=a?n(a):this.format;return(a=d(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"toString",this).call(this,a))&&a.match(/^#[0-9a-f]{3,8}$/i)&&this.isTransparent()&&0===this._r&&0===this._g&&0===this._b?"transparent":a}}]);return b}(A["default"]);g["default"]=a},function(a,g,f){var h;(function(f){function d(a,b){var m,c;
63
+ a=a?a:"";b=b||{};if(a instanceof d)return a;if(!(this instanceof d))return new d(a,b);var k=a;var e={r:0,g:0,b:0};var p=1;var l=m=!1;if("string"==typeof k)a:{k=k.replace(K,"").replace(L,"").toLowerCase();var g=!1;if(D[k])k=D[k],g=!0;else if("transparent"==k){k={r:0,g:0,b:0,a:0,format:"name"};break a}k=(c=x.rgb.exec(k))?{r:c[1],g:c[2],b:c[3]}:(c=x.rgba.exec(k))?{r:c[1],g:c[2],b:c[3],a:c[4]}:(c=x.hsl.exec(k))?{h:c[1],s:c[2],l:c[3]}:(c=x.hsla.exec(k))?{h:c[1],s:c[2],l:c[3],a:c[4]}:(c=x.hsv.exec(k))?
64
+ {h:c[1],s:c[2],v:c[3]}:(c=x.hsva.exec(k))?{h:c[1],s:c[2],v:c[3],a:c[4]}:(c=x.hex8.exec(k))?{r:parseInt(c[1],16),g:parseInt(c[2],16),b:parseInt(c[3],16),a:parseInt(c[4],16)/255,format:g?"name":"hex8"}:(c=x.hex6.exec(k))?{r:parseInt(c[1],16),g:parseInt(c[2],16),b:parseInt(c[3],16),format:g?"name":"hex"}:(c=x.hex4.exec(k))?{r:parseInt(c[1]+""+c[1],16),g:parseInt(c[2]+""+c[2],16),b:parseInt(c[3]+""+c[3],16),a:parseInt(c[4]+""+c[4],16)/255,format:g?"name":"hex8"}:(c=x.hex3.exec(k))?{r:parseInt(c[1]+""+
65
+ c[1],16),g:parseInt(c[2]+""+c[2],16),b:parseInt(c[3]+""+c[3],16),format:g?"name":"hex"}:!1}if("object"==typeof k){if(z(k.r)&&z(k.g)&&z(k.b))e=k.g,m=k.b,e={r:255*r(k.r,255),g:255*r(e,255),b:255*r(m,255)},m=!0,l="%"===String(k.r).substr(-1)?"prgb":"rgb";else if(z(k.h)&&z(k.s)&&z(k.v)){e=C(k.s);l=C(k.v);c=k.h;m=e;e=l;c=6*r(c,360);m=r(m,100);e=r(e,100);l=f.floor(c);var h=c-l;c=e*(1-m);g=e*(1-h*m);m=e*(1-(1-h)*m);l%=6;e={r:255*[e,g,c,c,m,e][l],g:255*[m,e,e,g,c,c][l],b:255*[c,c,m,e,e,g][l]};m=!0;l="hsv"}else z(k.h)&&
66
+ z(k.s)&&z(k.l)&&(e=C(k.s),m=C(k.l),e=n(k.h,e,m),m=!0,l="hsl");k.hasOwnProperty("a")&&(p=k.a)}p=F(p);k=k.format||l;l=u(255,v(e.r,0));c=u(255,v(e.g,0));e=u(255,v(e.b,0));this._originalInput=a;this._r=l;this._g=c;this._b=e;this._a=p;this._roundA=q(100*this._a)/100;this._format=b.format||k;this._gradientType=b.gradientType;1>this._r&&(this._r=q(this._r));1>this._g&&(this._g=q(this._g));1>this._b&&(this._b=q(this._b));this._ok=m;this._tc_id=M++}function g(a,c,b){a=r(a,255);c=r(c,255);b=r(b,255);var m=
67
+ v(a,c,b),k=u(a,c,b),w=(m+k)/2;if(m==k)var e=k=0;else{var d=m-k;k=.5<w?d/(2-m-k):d/(m+k);switch(m){case a:e=(c-b)/d+(c<b?6:0);break;case c:e=(b-a)/d+2;break;case b:e=(a-c)/d+4}e/=6}return{h:e,s:k,l:w}}function n(a,c,b){function m(a,b,c){0>c&&(c+=1);1<c&&--c;return c<1/6?a+6*(b-a)*c:.5>c?b:c<2/3?a+(b-a)*(2/3-c)*6:a}a=r(a,360);c=r(c,100);b=r(b,100);if(0===c)b=c=a=b;else{var k=.5>b?b*(1+c):b+c-b*c,w=2*b-k;b=m(w,k,a+1/3);c=m(w,k,a);a=m(w,k,a-1/3)}return{r:255*b,g:255*c,b:255*a}}function p(a,c,b){a=r(a,
68
+ 255);c=r(c,255);b=r(b,255);var m=v(a,c,b),k=u(a,c,b),w=m-k;if(m==k)var e=0;else{switch(m){case a:e=(c-b)/w+(c<b?6:0);break;case c:e=(b-a)/w+2;break;case b:e=(a-c)/w+4}e/=6}return{h:e,s:0===m?0:w/m,v:m}}function b(a,c,b,e){a=[y(q(a).toString(16)),y(q(c).toString(16)),y(q(b).toString(16))];return e&&a[0].charAt(0)==a[0].charAt(1)&&a[1].charAt(0)==a[1].charAt(1)&&a[2].charAt(0)==a[2].charAt(1)?a[0].charAt(0)+a[1].charAt(0)+a[2].charAt(0):a.join("")}function e(a,c,b,e){return[y(f.round(255*parseFloat(e)).toString(16)),
69
+ y(q(a).toString(16)),y(q(c).toString(16)),y(q(b).toString(16))].join("")}function c(a,c){c=0===c?0:c||10;var b=d(a).toHsl();b.s-=c/100;b.s=u(1,v(0,b.s));return d(b)}function l(a,c){c=0===c?0:c||10;var b=d(a).toHsl();b.s+=c/100;b.s=u(1,v(0,b.s));return d(b)}function B(a){return d(a).desaturate(100)}function G(a,c){c=0===c?0:c||10;var b=d(a).toHsl();b.l+=c/100;b.l=u(1,v(0,b.l));return d(b)}function H(a,c){c=0===c?0:c||10;var b=d(a).toRgb();b.r=v(0,u(255,b.r-q(255*-(c/100))));b.g=v(0,u(255,b.g-q(255*
70
+ -(c/100))));b.b=v(0,u(255,b.b-q(255*-(c/100))));return d(b)}function I(a,c){c=0===c?0:c||10;var b=d(a).toHsl();b.l-=c/100;b.l=u(1,v(0,b.l));return d(b)}function J(a,c){var b=d(a).toHsl(),m=(b.h+c)%360;b.h=0>m?360+m:m;return d(b)}function N(a){a=d(a).toHsl();a.h=(a.h+180)%360;return d(a)}function O(a){var b=d(a).toHsl(),c=b.h;return[d(a),d({h:(c+120)%360,s:b.s,l:b.l}),d({h:(c+240)%360,s:b.s,l:b.l})]}function P(a){var b=d(a).toHsl(),c=b.h;return[d(a),d({h:(c+90)%360,s:b.s,l:b.l}),d({h:(c+180)%360,s:b.s,
71
+ l:b.l}),d({h:(c+270)%360,s:b.s,l:b.l})]}function Q(a){var b=d(a).toHsl(),c=b.h;return[d(a),d({h:(c+72)%360,s:b.s,l:b.l}),d({h:(c+216)%360,s:b.s,l:b.l})]}function R(a,b,c){b=b||6;c=c||30;var m=d(a).toHsl();c=360/c;a=[d(a)];for(m.h=(m.h-(c*b>>1)+720)%360;--b;)m.h=(m.h+c)%360,a.push(d(m));return a}function S(a,b){b=b||6;var c=d(a).toHsv(),m=c.h,e=c.s;c=c.v;for(var k=[],f=1/b;b--;)k.push(d({h:m,s:e,v:c})),c=(c+f)%1;return k}function F(a){a=parseFloat(a);if(isNaN(a)||0>a||1<a)a=1;return a}function r(a,
72
+ b){var c=a;"string"==typeof c&&-1!=c.indexOf(".")&&1===parseFloat(c)&&(a="100%");c="string"===typeof a&&-1!=a.indexOf("%");a=u(b,v(0,parseFloat(a)));c&&(a=parseInt(a*b,10)/100);return 1E-6>f.abs(a-b)?1:a%b/parseFloat(b)}function y(a){return 1==a.length?"0"+a:""+a}function C(a){1>=a&&(a=100*a+"%");return a}function z(a){return!!x.CSS_UNIT.exec(a)}var K=/^\s+/,L=/\s+$/,M=0,q=f.round,u=f.min,v=f.max,E=f.random;d.prototype={isDark:function(){return 128>this.getBrightness()},isLight:function(){return!this.isDark()},
73
+ isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var a=this.toRgb();return(299*a.r+587*a.g+114*a.b)/1E3},getLuminance:function(){var a=this.toRgb();var b=a.r/255;var c=a.g/255;a=a.b/255;b=.03928>=b?b/12.92:f.pow((b+.055)/1.055,2.4);c=.03928>=c?c/12.92:f.pow((c+.055)/1.055,2.4);a=.03928>=a?a/12.92:f.pow((a+.055)/1.055,2.4);return.2126*b+.7152*c+.0722*a},
74
+ setAlpha:function(a){this._a=F(a);this._roundA=q(100*this._a)/100;return this},toHsv:function(){var a=p(this._r,this._g,this._b);return{h:360*a.h,s:a.s,v:a.v,a:this._a}},toHsvString:function(){var a=p(this._r,this._g,this._b),b=q(360*a.h),c=q(100*a.s);a=q(100*a.v);return 1==this._a?"hsv("+b+", "+c+"%, "+a+"%)":"hsva("+b+", "+c+"%, "+a+"%, "+this._roundA+")"},toHsl:function(){var a=g(this._r,this._g,this._b);return{h:360*a.h,s:a.s,l:a.l,a:this._a}},toHslString:function(){var a=g(this._r,this._g,this._b),
75
+ b=q(360*a.h),c=q(100*a.s);a=q(100*a.l);return 1==this._a?"hsl("+b+", "+c+"%, "+a+"%)":"hsla("+b+", "+c+"%, "+a+"%, "+this._roundA+")"},toHex:function(a){return b(this._r,this._g,this._b,a)},toHexString:function(a){return"#"+this.toHex(a)},toHex8:function(a){var b=this._g,c=this._b,e=this._a;b=[y(q(this._r).toString(16)),y(q(b).toString(16)),y(q(c).toString(16)),y(f.round(255*parseFloat(e)).toString(16))];a=a&&b[0].charAt(0)==b[0].charAt(1)&&b[1].charAt(0)==b[1].charAt(1)&&b[2].charAt(0)==b[2].charAt(1)&&
76
+ b[3].charAt(0)==b[3].charAt(1)?b[0].charAt(0)+b[1].charAt(0)+b[2].charAt(0)+b[3].charAt(0):b.join("");return a},toHex8String:function(a){return"#"+this.toHex8(a)},toRgb:function(){return{r:q(this._r),g:q(this._g),b:q(this._b),a:this._a}},toRgbString:function(){return 1==this._a?"rgb("+q(this._r)+", "+q(this._g)+", "+q(this._b)+")":"rgba("+q(this._r)+", "+q(this._g)+", "+q(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:q(100*r(this._r,255))+"%",g:q(100*r(this._g,255))+"%",b:q(100*
77
+ r(this._b,255))+"%",a:this._a}},toPercentageRgbString:function(){return 1==this._a?"rgb("+q(100*r(this._r,255))+"%, "+q(100*r(this._g,255))+"%, "+q(100*r(this._b,255))+"%)":"rgba("+q(100*r(this._r,255))+"%, "+q(100*r(this._g,255))+"%, "+q(100*r(this._b,255))+"%, "+this._roundA+")"},toName:function(){return 0===this._a?"transparent":1>this._a?!1:T[b(this._r,this._g,this._b,!0)]||!1},toFilter:function(a){var b="#"+e(this._r,this._g,this._b,this._a),c=b,f=this._gradientType?"GradientType = 1, ":"";a&&
78
+ (a=d(a),c="#"+e(a._r,a._g,a._b,a._a));return"progid:DXImageTransform.Microsoft.gradient("+f+"startColorstr="+b+",endColorstr="+c+")"},toString:function(a){var b=!!a;a=a||this._format;var c=!1,e=1>this._a&&0<=this._a;if(!b&&e&&("hex"===a||"hex6"===a||"hex3"===a||"hex4"===a||"hex8"===a||"name"===a))return"name"===a&&0===this._a?this.toName():this.toRgbString();"rgb"===a&&(c=this.toRgbString());"prgb"===a&&(c=this.toPercentageRgbString());if("hex"===a||"hex6"===a)c=this.toHexString();"hex3"===a&&(c=
79
+ this.toHexString(!0));"hex4"===a&&(c=this.toHex8String(!0));"hex8"===a&&(c=this.toHex8String());"name"===a&&(c=this.toName());"hsl"===a&&(c=this.toHslString());"hsv"===a&&(c=this.toHsvString());return c||this.toHexString()},clone:function(){return d(this.toString())},_applyModification:function(a,b){var c=a.apply(null,[this].concat([].slice.call(b)));this._r=c._r;this._g=c._g;this._b=c._b;this.setAlpha(c._a);return this},lighten:function(){return this._applyModification(G,arguments)},brighten:function(){return this._applyModification(H,
80
+ arguments)},darken:function(){return this._applyModification(I,arguments)},desaturate:function(){return this._applyModification(c,arguments)},saturate:function(){return this._applyModification(l,arguments)},greyscale:function(){return this._applyModification(B,arguments)},spin:function(){return this._applyModification(J,arguments)},_applyCombination:function(a,b){return a.apply(null,[this].concat([].slice.call(b)))},analogous:function(){return this._applyCombination(R,arguments)},complement:function(){return this._applyCombination(N,
81
+ arguments)},monochromatic:function(){return this._applyCombination(S,arguments)},splitcomplement:function(){return this._applyCombination(Q,arguments)},triad:function(){return this._applyCombination(O,arguments)},tetrad:function(){return this._applyCombination(P,arguments)}};d.fromRatio=function(a,b){if("object"==typeof a){var c={},e;for(e in a)a.hasOwnProperty(e)&&(c[e]="a"===e?a[e]:C(a[e]));a=c}return d(a,b)};d.equals=function(a,b){return a&&b?d(a).toRgbString()==d(b).toRgbString():!1};d.random=
82
+ function(){return d.fromRatio({r:E(),g:E(),b:E()})};d.mix=function(a,b,c){c=0===c?0:c||50;a=d(a).toRgb();b=d(b).toRgb();c/=100;return d({r:(b.r-a.r)*c+a.r,g:(b.g-a.g)*c+a.g,b:(b.b-a.b)*c+a.b,a:(b.a-a.a)*c+a.a})};d.readability=function(a,b){var c=d(a),e=d(b);return(f.max(c.getLuminance(),e.getLuminance())+.05)/(f.min(c.getLuminance(),e.getLuminance())+.05)};d.isReadable=function(a,b,c){a=d.readability(a,b);b=!1;var e=c||{level:"AA",size:"small"};c=(e.level||"AA").toUpperCase();e=(e.size||"small").toLowerCase();
83
+ "AA"!==c&&"AAA"!==c&&(c="AA");"small"!==e&&"large"!==e&&(e="small");switch(c+e){case "AAsmall":case "AAAlarge":b=4.5<=a;break;case "AAlarge":b=3<=a;break;case "AAAsmall":b=7<=a}return b};d.mostReadable=function(a,b,c){var e=null,f=0;c=c||{};var p=c.includeFallbackColors;var l=c.level;var g=c.size;for(var k=0;k<b.length;k++){var h=d.readability(a,b[k]);h>f&&(f=h,e=d(b[k]))}if(d.isReadable(a,e,{level:l,size:g})||!p)return e;c.includeFallbackColors=!1;return d.mostReadable(a,["#fff","#000"],c)};var D=
84
+ d.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",
85
+ darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",
86
+ gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",
87
+ lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",
88
+ orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",
89
+ snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},T=d.hexNames=function(a){var b={},c;for(c in a)a.hasOwnProperty(c)&&(b[a[c]]=c);return b}(D),x={CSS_UNIT:/(?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?)/,rgb:/rgb[\s|\(]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))[,|\s]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))[,|\s]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))\s*\)?/,
90
+ rgba:/rgba[\s|\(]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))[,|\s]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))[,|\s]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))[,|\s]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))\s*\)?/,hsl:/hsl[\s|\(]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))[,|\s]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))[,|\s]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))\s*\)?/,hsla:/hsla[\s|\(]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))[,|\s]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))[,|\s]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))[,|\s]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))\s*\)?/,
91
+ hsv:/hsv[\s|\(]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))[,|\s]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))[,|\s]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))\s*\)?/,hsva:/hsva[\s|\(]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))[,|\s]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))[,|\s]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))[,|\s]+((?:[-\+]?\d*\.\d+%?)|(?:[-\+]?\d+%?))\s*\)?/,hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,
92
+ hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};"undefined"!==typeof a&&a.exports?a.exports=d:!(h=d,void 0!==h&&(a.exports=h))})(Math)},function(a,g,f){Object.defineProperty(g,"__esModule",{value:!0});g["default"]={debug:!1,color:!1,format:!1,horizontal:!1,inline:!1,input:"input",container:!1,component:".add-on, .input-group-addon",fallbackColor:!1,autoInputFallback:!1,useHashPrefix:!0,useAlpha:!0,enableHex8:!1,sliders:{saturation:{maxLeft:100,maxTop:100,callLeft:"setSaturationRatio",
93
+ callTop:"setBrightnessRatio"},hue:{maxLeft:0,maxTop:100,callLeft:!1,callTop:"setHueRatio"},alpha:{maxLeft:0,maxTop:100,callLeft:!1,callTop:"setAlphaRatio"}},slidersHorz:{saturation:{maxLeft:100,maxTop:100,callLeft:"setSaturationRatio",callTop:"setBrightnessRatio"},hue:{maxLeft:100,maxTop:0,callLeft:"setHueRatio",callTop:!1},alpha:{maxLeft:100,maxTop:0,callLeft:"setAlphaRatio",callTop:!1}},align:"right",customClass:null,template:'<div class="colorpicker">\n <div class="colorpicker-saturation"><i class="colorpicker-guide"><i /></div>\n <div class="colorpicker-hue"><i class="colorpicker-guide"></i></div>\n <div class="colorpicker-alpha"><i class="colorpicker-guide"></i></div></div>',
94
+ extensions:[{name:"preview",showText:!1}]}},function(a,g,f){function h(a){return a&&a.__esModule?a:{"default":a}}Object.defineProperty(g,"__esModule",{value:!0});g.Palette=g.Swatches=g.Preview=g.Debugger=void 0;a=f(9);a=h(a);var n=f(10);n=h(n);var d=f(11);d=h(d);f=f(2);f=h(f);g.Debugger=a["default"];g.Preview=n["default"];g.Swatches=d["default"];g.Palette=f["default"];g["default"]={"debugger":a["default"],preview:n["default"],swatches:d["default"],palette:f["default"]}},function(a,g,f){function h(a,
95
+ d){if("function"!==typeof d&&null!==d)throw new TypeError("Super expression must either be null or a function, not "+typeof d);a.prototype=Object.create(d&&d.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}});d&&(Object.setPrototypeOf?Object.setPrototypeOf(a,d):a.__proto__=d)}Object.defineProperty(g,"__esModule",{value:!0});var n=function(){function a(a,b){for(var e=0;e<b.length;e++){var c=b[e];c.enumerable=c.enumerable||!1;c.configurable=!0;"value"in c&&(c.writable=!0);
96
+ Object.defineProperty(a,c.key,c)}}return function(d,b,e){b&&a(d.prototype,b);e&&a(d,e);return d}}(),d=function c(a,b,e){null===a&&(a=Function.prototype);var d=Object.getOwnPropertyDescriptor(a,b);if(void 0===d){if(a=Object.getPrototypeOf(a),null!==a)return c(a,b,e)}else{if("value"in d)return d.value;b=d.get;return void 0===b?void 0:b.call(e)}};a=(a=f(1))&&a.__esModule?a:{"default":a};var t=(f=f(0))&&f.__esModule?f:{"default":f};f=function(a){function b(a){var c=1<arguments.length&&void 0!==arguments[1]?
97
+ arguments[1]:{};if(!(this instanceof b))throw new TypeError("Cannot call a class as a function");c=(b.__proto__||Object.getPrototypeOf(b)).call(this,a,c);if(!this)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");c=!c||"object"!==typeof c&&"function"!==typeof c?this:c;c.eventCounter=0;if(c.colorpicker.hasInput())c.colorpicker.input.on("change.colorpicker-ext",t["default"].proxy(c.onChangeInput,c));return c}h(b,a);n(b,[{key:"log",value:function(a){for(var b,e=arguments.length,
98
+ d=Array(1<e?e-1:0),f=1;f<e;f++)d[f-1]=arguments[f];this.eventCounter+=1;e="#"+this.eventCounter+": Colorpicker#"+this.colorpicker.id+" ["+a+"]";(b=console).debug.apply(b,[e].concat(d));this.colorpicker.element.trigger({type:"colorpickerDebug",colorpicker:this.colorpicker,color:this.color,debug:{"debugger":this,eventName:a,logArgs:d,logMessage:e}})}},{key:"resolveColor",value:function(a){this.log("resolveColor()",a);return!1}},{key:"onCreate",value:function(a){this.log("colorpickerCreate");return d(b.prototype.__proto__||
99
+ Object.getPrototypeOf(b.prototype),"onCreate",this).call(this,a)}},{key:"onDestroy",value:function(a){this.log("colorpickerDestroy");this.eventCounter=0;this.colorpicker.hasInput()&&this.colorpicker.input.off(".colorpicker-ext");return d(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"onDestroy",this).call(this,a)}},{key:"onUpdate",value:function(a){this.log("colorpickerUpdate")}},{key:"onChangeInput",value:function(a){this.log("input:change.colorpicker",a.value,a.color)}},{key:"onChange",
100
+ value:function(a){this.log("colorpickerChange",a.value,a.color)}},{key:"onInvalid",value:function(a){this.log("colorpickerInvalid",a.value,a.color)}},{key:"onHide",value:function(a){this.log("colorpickerHide");this.eventCounter=0}},{key:"onShow",value:function(a){this.log("colorpickerShow")}},{key:"onDisable",value:function(a){this.log("colorpickerDisable")}},{key:"onEnable",value:function(a){this.log("colorpickerEnable")}}]);return b}(a["default"]);g["default"]=f},function(a,g,f){function h(a,d){if("function"!==
101
+ typeof d&&null!==d)throw new TypeError("Super expression must either be null or a function, not "+typeof d);a.prototype=Object.create(d&&d.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}});d&&(Object.setPrototypeOf?Object.setPrototypeOf(a,d):a.__proto__=d)}Object.defineProperty(g,"__esModule",{value:!0});var n=function(){function a(a,b){for(var e=0;e<b.length;e++){var c=b[e];c.enumerable=c.enumerable||!1;c.configurable=!0;"value"in c&&(c.writable=!0);Object.defineProperty(a,
102
+ c.key,c)}}return function(d,b,e){b&&a(d.prototype,b);e&&a(d,e);return d}}(),d=function c(a,b,e){null===a&&(a=Function.prototype);var d=Object.getOwnPropertyDescriptor(a,b);if(void 0===d){if(a=Object.getPrototypeOf(a),null!==a)return c(a,b,e)}else{if("value"in d)return d.value;b=d.get;return void 0===b?void 0:b.call(e)}};a=(a=f(1))&&a.__esModule?a:{"default":a};var t=(f=f(0))&&f.__esModule?f:{"default":f};f=function(a){function b(a){var c=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};if(!(this instanceof
103
+ b))throw new TypeError("Cannot call a class as a function");c=(b.__proto__||Object.getPrototypeOf(b)).call(this,a,Object.assign({},{template:'<div class="colorpicker-bar colorpicker-preview"><div /></div>',showText:!0,format:a.format},c));if(!this)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");c=!c||"object"!==typeof c&&"function"!==typeof c?this:c;c.element=(0,t["default"])(c.options.template);c.elementInner=c.element.find("div");return c}h(b,a);n(b,[{key:"onCreate",
104
+ value:function(a){d(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"onCreate",this).call(this,a);this.colorpicker.picker.append(this.element)}},{key:"onUpdate",value:function(a){d(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"onUpdate",this).call(this,a);a.color?(this.elementInner.css("backgroundColor",a.color.toRgbString()),this.options.showText&&(this.elementInner.html(a.color.toString(this.options.format||this.colorpicker.format)),a.color.isDark()?this.elementInner.css("color",
105
+ "white"):this.elementInner.css("color","black"))):this.elementInner.css("backgroundColor",null).css("color",null).html("")}}]);return b}(a["default"]);g["default"]=f},function(a,g,f){function h(a,b){if("function"!==typeof b&&null!==b)throw new TypeError("Super expression must either be null or a function, not "+typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}});b&&(Object.setPrototypeOf?Object.setPrototypeOf(a,b):a.__proto__=b)}Object.defineProperty(g,
106
+ "__esModule",{value:!0});var n=function(){function a(a,d){for(var b=0;b<d.length;b++){var e=d[b];e.enumerable=e.enumerable||!1;e.configurable=!0;"value"in e&&(e.writable=!0);Object.defineProperty(a,e.key,e)}}return function(b,d,c){d&&a(b.prototype,d);c&&a(b,c);return b}}(),d=function l(a,d,c){null===a&&(a=Function.prototype);var b=Object.getOwnPropertyDescriptor(a,d);if(void 0===b){if(a=Object.getPrototypeOf(a),null!==a)return l(a,d,c)}else{if("value"in b)return b.value;d=b.get;return void 0===d?
107
+ void 0:d.call(c)}};a=(a=f(2))&&a.__esModule?a:{"default":a};var t=(f=f(0))&&f.__esModule?f:{"default":f},A={barTemplate:'<div class="colorpicker-bar colorpicker-swatches"></div>',swatchTemplate:'<i class="colorpicker-swatch"></i>'};f=function(a){function b(a){var c=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};if(!(this instanceof b))throw new TypeError("Cannot call a class as a function");c=(b.__proto__||Object.getPrototypeOf(b)).call(this,a,Object.assign({},A,c));if(!this)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
108
+ return!c||"object"!==typeof c&&"function"!==typeof c?this:c}h(b,a);n(b,[{key:"isEnabled",value:function(){return 0<this.getLength()}},{key:"onCreate",value:function(a){var c=this;d(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"onCreate",this).call(this,a);if(this.isEnabled()){var e=this.colorpicker,f=(0,t["default"])(this.options.barTemplate),g=!0===this.options.namesAsValues&&!Array.isArray(this.colors);t["default"].each(this.colors,function(a,b){var d=(0,t["default"])(c.options.swatchTemplate).css("background-color",
109
+ b).attr("data-name",a).attr("data-value",b).attr("title",a+": "+b);d.on("mousedown.colorpicker touchstart.colorpicker",function(a){a.preventDefault();e.setValue(g?(0,t["default"])(this).data("name"):(0,t["default"])(this).data("value"))});f.append(d)});e.picker.append(f)}}}]);return b}(a["default"]);g["default"]=f}])});
includes/editor.php CHANGED
@@ -1,8 +1,5 @@
1
  <?php
2
 
3
- //ini_set ('display_errors', 1);
4
- //error_reporting (E_ALL);
5
-
6
  function ai_editor_media_buttons () {
7
  echo '<button type="button" id="use-button" class="button" style="width: 90px;" title="Use current settings"> ', __('Use', 'ad-inserter'), ' </button>';
8
  echo '<button type="button" id="reset-button" class="button" style="width: 90px;" title="Reset to the saved settings"> ', __('Reset', 'ad-inserter'), ' </button>';
1
  <?php
2
 
 
 
 
3
  function ai_editor_media_buttons () {
4
  echo '<button type="button" id="use-button" class="button" style="width: 90px;" title="Use current settings"> ', __('Use', 'ad-inserter'), ' </button>';
5
  echo '<button type="button" id="reset-button" class="button" style="width: 90px;" title="Reset to the saved settings"> ', __('Reset', 'ad-inserter'), ' </button>';
includes/js/ai-adb.js CHANGED
@@ -1,22 +1,3 @@
1
- //function b64e (str) {
2
- // // first we use encodeURIComponent to get percent-encoded UTF-8,
3
- // // then we convert the percent encodings into raw bytes which
4
- // // can be fed into btoa.
5
- // return btoa (encodeURIComponent (str).replace (/%([0-9A-F]{2})/g,
6
- // function toSolidBytes (match, p1) {
7
- // return String.fromCharCode ('0x' + p1);
8
- // }));
9
- //}
10
-
11
- //function b64d (str) {
12
- // // Going backwards: from bytestream, to percent-encoding, to original string.
13
- //// return decodeURIComponent (atob (str).split ('').map (function(c) {
14
- // return decodeURIComponent (atob (str).split ('').map (function(c) {
15
- // return '%' + ('00' + c.charCodeAt (0).toString (16)).slice (-2);
16
- // }).join (''));
17
- //}
18
-
19
- var ai_adb = true;
20
  var ai_adb_active = false;
21
  var ai_adb_counter = 0;
22
  var ai_adb_act_cookie_name = "aiADB";
@@ -428,7 +409,7 @@ var ai_adb_detected_actions = function(n) {
428
 
429
  }(jQuery));
430
 
431
- ai_adb = true;
432
  }
433
  }
434
 
@@ -445,7 +426,7 @@ var ai_adb_undetected = function(n) {
445
  if (!ai_adb_active && ai_adb_counter == 4) {
446
  if (ai_adb_debugging) console.log ("AI AD BLOCKING NOT DETECTED");
447
 
448
- ai_adb = false;
449
 
450
  // Prevent tracking if block was not displayed because of cookie
451
  jQuery(".ai-adb-hide").each (function () {
@@ -475,6 +456,7 @@ var ai_adb_undetected = function(n) {
475
  ai_disable_processing (jQuery (this));
476
  });
477
 
 
478
  window.AI_ADB_STATUS_MESSAGE=4; // Check replacement code {}
479
  ai_dummy = 14; // Do not remove - to prevent optimization
480
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  var ai_adb_active = false;
2
  var ai_adb_counter = 0;
3
  var ai_adb_act_cookie_name = "aiADB";
409
 
410
  }(jQuery));
411
 
412
+ jQuery(b64d ("Ym9keQ==")).attr (b64d ("ZGF0YS1hb3MtbWFza2luZw=="), b64d ("bWFzaw=="));
413
  }
414
  }
415
 
426
  if (!ai_adb_active && ai_adb_counter == 4) {
427
  if (ai_adb_debugging) console.log ("AI AD BLOCKING NOT DETECTED");
428
 
429
+ jQuery(b64d ("Ym9keQ==")).attr (b64d ("ZGF0YS1hb3MtbWFza2luZw=="), b64d ("Y2xlYXI="));
430
 
431
  // Prevent tracking if block was not displayed because of cookie
432
  jQuery(".ai-adb-hide").each (function () {
456
  ai_disable_processing (jQuery (this));
457
  });
458
 
459
+ ai_dummy = 11; // Do not remove - to prevent optimization
460
  window.AI_ADB_STATUS_MESSAGE=4; // Check replacement code {}
461
  ai_dummy = 14; // Do not remove - to prevent optimization
462
 
includes/js/ai-adb.min.js CHANGED
@@ -1,7 +1,6 @@
1
- var ai_adb=!0,ai_adb_active=!1,ai_adb_counter=0,ai_adb_act_cookie_name="aiADB",ai_adb_pgv_cookie_name="aiADB_PV",ai_adb_page_redirection_cookie_name="aiADB_PR",ai_adb_overlay=AI_ADB_OVERLAY_WINDOW,ai_adb_message_window=AI_ADB_MESSAGE_WINDOW,ai_adb_message_undismissible=AI_FUNCB_GET_UNDISMISSIBLE_MESSAGE,ai_adb_message_cookie_lifetime=AI_FUNCT_GET_NO_ACTION_PERIOD,ai_adb_action=AI_FUNC_GET_ADB_ACTION,ai_adb_page_views=AI_FUNCT_GET_DELAY_ACTION,ai_adb_selectors="AI_ADB_SELECTORS",ai_adb_redirection_url=
2
- "AI_ADB_REDIRECTION_PAGE";
3
- function ai_adb_process_content(){(function(a){a(".AI_ADB_CONTENT_CSS_BEGIN_CLASS").each(function(){var c=a(this).parent(),b=a(this).data("css");"undefined"==typeof b&&(b="display: none !important;");var d=a(this).data("selectors");if("undefined"==typeof d||""==d)d="p";var e=!1;a(c).find(".AI_ADB_CONTENT_CSS_BEGIN_CLASS, .AI_ADB_CONTENT_CSS_END_CLASS, "+d).each(function(){if(a(this).hasClass("AI_ADB_CONTENT_CSS_BEGIN_CLASS"))a(this).remove(),e=!0;else if(a(this).hasClass("AI_ADB_CONTENT_CSS_END_CLASS"))a(this).remove(),e=
4
- !1;else if(e){var c=a(this).attr("style");"undefined"==typeof c?c="":(c=c.trim(),""!=c&&";"!=c[c.length-1]&&(c+=";"));a(this).attr("style",c+" "+b)}})});a(".AI_ADB_CONTENT_DELETE_BEGIN_CLASS").each(function(){var c=a(this).parent(),b=a(this).data("selectors");if("undefined"==typeof b||""==b)b="p";var d=!1;a(c).find(".AI_ADB_CONTENT_DELETE_BEGIN_CLASS, .AI_ADB_CONTENT_DELETE_END_CLASS, "+b).each(function(){a(this).hasClass("AI_ADB_CONTENT_DELETE_BEGIN_CLASS")?(a(this).remove(),d=!0):a(this).hasClass("AI_ADB_CONTENT_DELETE_END_CLASS")?
5
  (a(this).remove(),d=!1):d&&a(this).remove()})});a(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS").each(function(){var c=a(this).parent(),b=a(this).data("text");"undefined"==typeof b&&(b="");var d=a(this).data("css");"undefined"==typeof d&&(d="");var e=a(this).data("selectors");if("undefined"==typeof e||""==e)e="p";var f=!1;a(c).find(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS, .AI_ADB_CONTENT_REPLACE_END_CLASS, "+e).each(function(){if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_BEGIN_CLASS"))a(this).remove(),f=!0;else if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_END_CLASS"))a(this).remove(),
6
  f=!1;else if(f){if(0!=b.length){var c=Math.round(a(this).text().length/(b.length+1));a(this).text(Array(c+1).join(b+" ").trim())}else a(this).text("");""!=d&&(c=a(this).attr("style"),"undefined"==typeof c?c="":(c=c.trim(),""!=c&&";"!=c[c.length-1]&&(c+=";")),""!=d&&(d=" "+d),a(this).attr("style",c+d))}})})})(jQuery)}ai_adb_detection_type_log=function(a){var c=ai_adb_detection_type(a),b=jQuery("#ai-adb-events");if(0!=b.count){var d=b.text();b.text((""!=d?d+", ":d+", EVENTS: ")+a)}return c};
7
  ai_adb_detection_type=function(a){return""};
@@ -11,8 +10,9 @@ visibility:"visible"});a(this).removeClass("ai-adb-show");if("undefined"!=typeof
11
  b64e(JSON.stringify(e)))}d.attr("data-ai",c)}}})}while(b);setTimeout(ai_adb_process_content,10)});if(0!=ai_adb_page_views){var b=1,c=AiCookies.get(ai_adb_pgv_cookie_name);"undefined"!=typeof c&&(b=parseInt(c)+1);if(b<=ai_adb_page_views){AiCookies.set(ai_adb_pgv_cookie_name,b,{expires:365,path:"/"});window.ai_d1=b;window.AI_ADB_STATUS_MESSAGE=1;return}}if(0==ai_adb_message_cookie_lifetime||1==ai_adb_action&&ai_adb_message_undismissible)AiCookies.remove(ai_adb_act_cookie_name,{path:"/"});else{c=AiCookies.get(ai_adb_act_cookie_name);
12
  if("undefined"!=typeof c&&"AI_CONST_AI_ADB_COOKIE_VALUE"==c){window.AI_ADB_STATUS_MESSAGE=2;return}AiCookies.set(ai_adb_act_cookie_name,"AI_CONST_AI_ADB_COOKIE_VALUE",{expires:ai_adb_message_cookie_lifetime,path:"/"})}0==ai_adb_action?(ai_dummy=16,ai_dummy++,window.AI_ADB_STATUS_MESSAGE=6):(window.AI_ADB_STATUS_MESSAGE=3,ai_dummy=13);switch(ai_adb_action){case 1:ai_adb_message_undismissible||(ai_adb_overlay.click(function(){a(this).remove();ai_adb_message_window.remove()}).css("cursor","pointer"),
13
  ai_adb_message_window.click(function(){a(this).remove();ai_adb_overlay.remove()}).css("cursor","pointer"),window.onkeydown=function(a){27===a.keyCode&&(ai_adb_overlay.click(),ai_adb_message_window.click())});a("body").prepend(ai_adb_overlay).prepend(ai_adb_message_window);break;case 2:""!=ai_adb_redirection_url&&(b=!0,"http"==ai_adb_redirection_url.toLowerCase().substring(0,4)?window.location.href==ai_adb_redirection_url&&(b=!1):window.location.pathname==ai_adb_redirection_url&&(b=!1),b?(c=AiCookies.get(ai_adb_page_redirection_cookie_name),
14
- "undefined"==typeof c&&(b=new Date,b.setTime(b.getTime()+1E4),AiCookies.set(ai_adb_page_redirection_cookie_name,window.location.href,{expires:b,path:"/"}),window.location.replace(ai_adb_redirection_url))):AiCookies.remove(ai_adb_page_redirection_cookie_name,{path:"/"}))}}(jQuery),ai_adb=!0)},ai_adb_undetected=function(a){ai_adb_counter++;ai_adb_active||4!=ai_adb_counter||(ai_adb=!1,jQuery(".ai-adb-hide").each(function(){if(0==jQuery(this).outerHeight()&&0==jQuery(this).closest(".ai-adb-show").length){var a=
15
- jQuery(this).closest("div[data-ai]");if("undefined"!=typeof a.attr("data-ai")){var b=JSON.parse(b64d(a.attr("data-ai")));"undefined"!==typeof b&&b.constructor===Array&&(b[1]="",a.attr("data-ai",b64e(JSON.stringify(b))),a.addClass("ai-viewport-0").css("display","none"))}}}),jQuery(".ai-adb-show").each(function(){ai_disable_processing(jQuery(this))}),window.AI_ADB_STATUS_MESSAGE=4,ai_dummy=14)};AI_DBG_AI_DEBUG_AD_BLOCKING&&jQuery(document).ready(function(){ai_adb_detected(0)});
 
16
  jQuery(document).ready(function(a){a(window).ready(function(){ai_debugging_active="undefined"!==typeof ai_adb_fe_dbg;setTimeout(function(){a("#ai-adb-bar").click(function(){AiCookies.remove(ai_adb_act_cookie_name,{path:"/"});AiCookies.remove(ai_adb_pgv_cookie_name,{path:"/"});window.AI_ADB_STATUS_MESSAGE=5;ai_dummy=15})},2);if((!ai_adb_active||ai_debugging_active)&&""!=ai_adb_selectors){var c=0,b=0,d=ai_adb_selectors.split(",");a.each(d,function(e){d[e]=d[e].trim();0!=a(d[e]).length&&a(d[e]).each(function(d){var e=
17
  a(this).outerHeight();d=a(this).find(".ai-attributes");d.length&&d.each(function(){e>=a(this).outerHeight()&&(e-=a(this).outerHeight())});c++;if(0===e&&(a(document).ready(function(){ai_adb_active&&!ai_debugging_active||ai_adb_detected(4)}),b++,!ai_debugging_active))return!1})});0!=c&&0==b&&a(document).ready(function(){ai_adb_undetected(4)})}})});
18
  function ai_adb_get_script(a,c){var b=document.createElement("script");b.src="ai-adb-url"+a+".js?ver="+(new Date).getTime();var d=document.getElementsByTagName("head")[0],e=!1;b.onerror=function(){c&&c();b.onerror=null;d.removeChild(b)};b.onload=b.onreadystatechange=function(){e||this.readyState&&"loaded"!=this.readyState&&"complete"!=this.readyState||(e=!0,c&&c(),b.onload=b.onreadystatechange=null,d.removeChild(b))};d.appendChild(b)}
1
+ var ai_adb_active=!1,ai_adb_counter=0,ai_adb_act_cookie_name="aiADB",ai_adb_pgv_cookie_name="aiADB_PV",ai_adb_page_redirection_cookie_name="aiADB_PR",ai_adb_overlay=AI_ADB_OVERLAY_WINDOW,ai_adb_message_window=AI_ADB_MESSAGE_WINDOW,ai_adb_message_undismissible=AI_FUNCB_GET_UNDISMISSIBLE_MESSAGE,ai_adb_message_cookie_lifetime=AI_FUNCT_GET_NO_ACTION_PERIOD,ai_adb_action=AI_FUNC_GET_ADB_ACTION,ai_adb_page_views=AI_FUNCT_GET_DELAY_ACTION,ai_adb_selectors="AI_ADB_SELECTORS",ai_adb_redirection_url="AI_ADB_REDIRECTION_PAGE";
2
+ function ai_adb_process_content(){(function(a){a(".AI_ADB_CONTENT_CSS_BEGIN_CLASS").each(function(){var c=a(this).parent(),b=a(this).data("css");"undefined"==typeof b&&(b="display: none !important;");var d=a(this).data("selectors");if("undefined"==typeof d||""==d)d="p";var e=!1;a(c).find(".AI_ADB_CONTENT_CSS_BEGIN_CLASS, .AI_ADB_CONTENT_CSS_END_CLASS, "+d).each(function(){if(a(this).hasClass("AI_ADB_CONTENT_CSS_BEGIN_CLASS"))a(this).remove(),e=!0;else if(a(this).hasClass("AI_ADB_CONTENT_CSS_END_CLASS"))a(this).remove(),
3
+ e=!1;else if(e){var c=a(this).attr("style");"undefined"==typeof c?c="":(c=c.trim(),""!=c&&";"!=c[c.length-1]&&(c+=";"));a(this).attr("style",c+" "+b)}})});a(".AI_ADB_CONTENT_DELETE_BEGIN_CLASS").each(function(){var c=a(this).parent(),b=a(this).data("selectors");if("undefined"==typeof b||""==b)b="p";var d=!1;a(c).find(".AI_ADB_CONTENT_DELETE_BEGIN_CLASS, .AI_ADB_CONTENT_DELETE_END_CLASS, "+b).each(function(){a(this).hasClass("AI_ADB_CONTENT_DELETE_BEGIN_CLASS")?(a(this).remove(),d=!0):a(this).hasClass("AI_ADB_CONTENT_DELETE_END_CLASS")?
 
4
  (a(this).remove(),d=!1):d&&a(this).remove()})});a(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS").each(function(){var c=a(this).parent(),b=a(this).data("text");"undefined"==typeof b&&(b="");var d=a(this).data("css");"undefined"==typeof d&&(d="");var e=a(this).data("selectors");if("undefined"==typeof e||""==e)e="p";var f=!1;a(c).find(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS, .AI_ADB_CONTENT_REPLACE_END_CLASS, "+e).each(function(){if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_BEGIN_CLASS"))a(this).remove(),f=!0;else if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_END_CLASS"))a(this).remove(),
5
  f=!1;else if(f){if(0!=b.length){var c=Math.round(a(this).text().length/(b.length+1));a(this).text(Array(c+1).join(b+" ").trim())}else a(this).text("");""!=d&&(c=a(this).attr("style"),"undefined"==typeof c?c="":(c=c.trim(),""!=c&&";"!=c[c.length-1]&&(c+=";")),""!=d&&(d=" "+d),a(this).attr("style",c+d))}})})})(jQuery)}ai_adb_detection_type_log=function(a){var c=ai_adb_detection_type(a),b=jQuery("#ai-adb-events");if(0!=b.count){var d=b.text();b.text((""!=d?d+", ":d+", EVENTS: ")+a)}return c};
6
  ai_adb_detection_type=function(a){return""};
10
  b64e(JSON.stringify(e)))}d.attr("data-ai",c)}}})}while(b);setTimeout(ai_adb_process_content,10)});if(0!=ai_adb_page_views){var b=1,c=AiCookies.get(ai_adb_pgv_cookie_name);"undefined"!=typeof c&&(b=parseInt(c)+1);if(b<=ai_adb_page_views){AiCookies.set(ai_adb_pgv_cookie_name,b,{expires:365,path:"/"});window.ai_d1=b;window.AI_ADB_STATUS_MESSAGE=1;return}}if(0==ai_adb_message_cookie_lifetime||1==ai_adb_action&&ai_adb_message_undismissible)AiCookies.remove(ai_adb_act_cookie_name,{path:"/"});else{c=AiCookies.get(ai_adb_act_cookie_name);
11
  if("undefined"!=typeof c&&"AI_CONST_AI_ADB_COOKIE_VALUE"==c){window.AI_ADB_STATUS_MESSAGE=2;return}AiCookies.set(ai_adb_act_cookie_name,"AI_CONST_AI_ADB_COOKIE_VALUE",{expires:ai_adb_message_cookie_lifetime,path:"/"})}0==ai_adb_action?(ai_dummy=16,ai_dummy++,window.AI_ADB_STATUS_MESSAGE=6):(window.AI_ADB_STATUS_MESSAGE=3,ai_dummy=13);switch(ai_adb_action){case 1:ai_adb_message_undismissible||(ai_adb_overlay.click(function(){a(this).remove();ai_adb_message_window.remove()}).css("cursor","pointer"),
12
  ai_adb_message_window.click(function(){a(this).remove();ai_adb_overlay.remove()}).css("cursor","pointer"),window.onkeydown=function(a){27===a.keyCode&&(ai_adb_overlay.click(),ai_adb_message_window.click())});a("body").prepend(ai_adb_overlay).prepend(ai_adb_message_window);break;case 2:""!=ai_adb_redirection_url&&(b=!0,"http"==ai_adb_redirection_url.toLowerCase().substring(0,4)?window.location.href==ai_adb_redirection_url&&(b=!1):window.location.pathname==ai_adb_redirection_url&&(b=!1),b?(c=AiCookies.get(ai_adb_page_redirection_cookie_name),
13
+ "undefined"==typeof c&&(b=new Date,b.setTime(b.getTime()+1E4),AiCookies.set(ai_adb_page_redirection_cookie_name,window.location.href,{expires:b,path:"/"}),window.location.replace(ai_adb_redirection_url))):AiCookies.remove(ai_adb_page_redirection_cookie_name,{path:"/"}))}}(jQuery),jQuery(b64d("Ym9keQ==")).attr(b64d("ZGF0YS1hb3MtbWFza2luZw=="),b64d("bWFzaw==")))},ai_adb_undetected=function(a){ai_adb_counter++;ai_adb_active||4!=ai_adb_counter||(jQuery(b64d("Ym9keQ==")).attr(b64d("ZGF0YS1hb3MtbWFza2luZw=="),
14
+ b64d("Y2xlYXI=")),jQuery(".ai-adb-hide").each(function(){if(0==jQuery(this).outerHeight()&&0==jQuery(this).closest(".ai-adb-show").length){var a=jQuery(this).closest("div[data-ai]");if("undefined"!=typeof a.attr("data-ai")){var b=JSON.parse(b64d(a.attr("data-ai")));"undefined"!==typeof b&&b.constructor===Array&&(b[1]="",a.attr("data-ai",b64e(JSON.stringify(b))),a.addClass("ai-viewport-0").css("display","none"))}}}),jQuery(".ai-adb-show").each(function(){ai_disable_processing(jQuery(this))}),ai_dummy=
15
+ 11,window.AI_ADB_STATUS_MESSAGE=4,ai_dummy=14)};AI_DBG_AI_DEBUG_AD_BLOCKING&&jQuery(document).ready(function(){ai_adb_detected(0)});
16
  jQuery(document).ready(function(a){a(window).ready(function(){ai_debugging_active="undefined"!==typeof ai_adb_fe_dbg;setTimeout(function(){a("#ai-adb-bar").click(function(){AiCookies.remove(ai_adb_act_cookie_name,{path:"/"});AiCookies.remove(ai_adb_pgv_cookie_name,{path:"/"});window.AI_ADB_STATUS_MESSAGE=5;ai_dummy=15})},2);if((!ai_adb_active||ai_debugging_active)&&""!=ai_adb_selectors){var c=0,b=0,d=ai_adb_selectors.split(",");a.each(d,function(e){d[e]=d[e].trim();0!=a(d[e]).length&&a(d[e]).each(function(d){var e=
17
  a(this).outerHeight();d=a(this).find(".ai-attributes");d.length&&d.each(function(){e>=a(this).outerHeight()&&(e-=a(this).outerHeight())});c++;if(0===e&&(a(document).ready(function(){ai_adb_active&&!ai_debugging_active||ai_adb_detected(4)}),b++,!ai_debugging_active))return!1})});0!=c&&0==b&&a(document).ready(function(){ai_adb_undetected(4)})}})});
18
  function ai_adb_get_script(a,c){var b=document.createElement("script");b.src="ai-adb-url"+a+".js?ver="+(new Date).getTime();var d=document.getElementsByTagName("head")[0],e=!1;b.onerror=function(){c&&c();b.onerror=null;d.removeChild(b)};b.onload=b.onreadystatechange=function(){e||this.readyState&&"loaded"!=this.readyState&&"complete"!=this.readyState||(e=!0,c&&c(),b.onload=b.onreadystatechange=null,d.removeChild(b))};d.appendChild(b)}
includes/js/ai-ads.js CHANGED
@@ -5,11 +5,13 @@ function ai_process_adsense_ad (element) {
5
  var ai_debug = typeof ai_debugging !== 'undefined'; // 1
6
  // var ai_debug = false;
7
 
8
- var adsense_iframe = jQuery(element);
9
- var adsense_width = adsense_iframe.attr ('width');
10
- var adsense_height = adsense_iframe.attr ('height');
11
- var adsense_iframe2 = adsense_iframe.contents().find ('iframe[allowtransparency]');
12
- var url_parameters = getAllUrlParams (adsense_iframe2.attr ('src'))
 
 
13
 
14
  if (typeof url_parameters ['client'] !== 'undefined') {
15
  var adsense_ad_client = url_parameters ['client'];
@@ -31,7 +33,7 @@ function ai_process_adsense_ad (element) {
31
  }
32
  adsense_ad_info = '<div class="ai-info ai-info-1">' + adsense_ad_slot + '</div>' + adsense_ad_name;
33
  } else {
34
- var adsense_auto_ads = adsense_iframe.closest ('div.google-auto-placed').length != 0;
35
  if (adsense_auto_ads) {
36
  adsense_overlay.addClass ('ai-auto-ads');
37
  adsense_ad_info = '<div class="ai-info ai-info-1">Auto ads</div>';
@@ -40,17 +42,19 @@ function ai_process_adsense_ad (element) {
40
 
41
  var adsense_info = jQuery('<div class="ai-debug-ad-info"><div class="ai-info ai-info-1">AdSense #' + adsense_index + '</div><div class="ai-info ai-info-2">' + adsense_width + 'x' + adsense_height + '</div>' + adsense_ad_info + '</div>');
42
 
43
- adsense_iframe.after (adsense_info);
44
 
45
  if (!ai_preview_window) {
46
- adsense_iframe.after (adsense_overlay);
47
  }
48
  }
49
  }
50
 
51
  function ai_process_adsense_ads () {
52
- jQuery('ins ins iframe').each (function () {
 
53
  var dummy_container = jQuery (this).closest ('.ai-dummy-ad');
 
54
  if (!dummy_container.length) ai_process_adsense_ad (this);
55
  });
56
  }
5
  var ai_debug = typeof ai_debugging !== 'undefined'; // 1
6
  // var ai_debug = false;
7
 
8
+ var adsense_container = jQuery(element);
9
+ var adsense_width = adsense_container.attr ('width');
10
+ var adsense_height = adsense_container.attr ('height');
11
+
12
+ // var adsense_iframe2 = adsense_container.contents().find ('iframe[allowtransparency]');
13
+ // var url_parameters = getAllUrlParams (adsense_iframe2.attr ('src'))
14
+ var url_parameters = getAllUrlParams (adsense_container.attr ('src'))
15
 
16
  if (typeof url_parameters ['client'] !== 'undefined') {
17
  var adsense_ad_client = url_parameters ['client'];
33
  }
34
  adsense_ad_info = '<div class="ai-info ai-info-1">' + adsense_ad_slot + '</div>' + adsense_ad_name;
35
  } else {
36
+ var adsense_auto_ads = adsense_container.closest ('div.google-auto-placed').length != 0;
37
  if (adsense_auto_ads) {
38
  adsense_overlay.addClass ('ai-auto-ads');
39
  adsense_ad_info = '<div class="ai-info ai-info-1">Auto ads</div>';
42
 
43
  var adsense_info = jQuery('<div class="ai-debug-ad-info"><div class="ai-info ai-info-1">AdSense #' + adsense_index + '</div><div class="ai-info ai-info-2">' + adsense_width + 'x' + adsense_height + '</div>' + adsense_ad_info + '</div>');
44
 
45
+ adsense_container.after (adsense_info);
46
 
47
  if (!ai_preview_window) {
48
+ adsense_container.after (adsense_overlay);
49
  }
50
  }
51
  }
52
 
53
  function ai_process_adsense_ads () {
54
+ // jQuery('ins ins iframe').each (function () {
55
+ jQuery('ins > ins > iframe[src*="google"]:visible').each (function () {
56
  var dummy_container = jQuery (this).closest ('.ai-dummy-ad');
57
+ // if (!dummy_container.length) ai_process_adsense_ad (this);
58
  if (!dummy_container.length) ai_process_adsense_ad (this);
59
  });
60
  }
includes/js/ai-ads.min.js CHANGED
@@ -1,5 +1,6 @@
1
  var adsense_ad_names=[],ai_preview_window="undefined"!==typeof ai_preview;
2
- function ai_process_adsense_ad(a){a=jQuery(a);var e=a.attr("width"),f=a.attr("height"),b=a.contents().find("iframe[allowtransparency]"),d=getAllUrlParams(b.attr("src"));if("undefined"!==typeof d.client){b=d.client.replace("ca-","");var c=d.slotname,h=d.ifi;d=jQuery('<div class="ai-debug-ad-overlay"></div>');var g="";"undefined"!==typeof c?(g="","undefined"!==typeof adsense_ad_names.publisher_id&&adsense_ad_names.publisher_id==b&&"undefined"!==typeof adsense_ad_names[c]&&(g='<div class="ai-info ai-info-2">'+
3
- adsense_ad_names[c]+"</div>"),g='<div class="ai-info ai-info-1">'+c+"</div>"+g):0!=a.closest("div.google-auto-placed").length?(d.addClass("ai-auto-ads"),g='<div class="ai-info ai-info-1">Auto ads</div>'):d.addClass("ai-no-slot");e=jQuery('<div class="ai-debug-ad-info"><div class="ai-info ai-info-1">AdSense #'+h+'</div><div class="ai-info ai-info-2">'+e+"x"+f+"</div>"+g+"</div>");a.after(e);ai_preview_window||a.after(d)}}
4
- function ai_process_adsense_ads(){jQuery("ins ins iframe").each(function(){jQuery(this).closest(".ai-dummy-ad").length||ai_process_adsense_ad(this)})}jQuery(document).ready(function(a){a.post("AI_AJAXURL",{action:"ai_ajax",ai_check:"AI_NONCE","adsense-ad-units":{ai:1}}).done(function(a){if(""!=a)try{adsense_ad_names=JSON.parse(a)}catch(f){}}).fail(function(a,f,b){}).always(function(a){});a(window).on("load",function(){ai_preview_window||setTimeout(function(){ai_process_adsense_ads(jQuery)},50)})});
5
- function getAllUrlParams(a){var e=a?a.split("?")[1]:window.location.search.slice(1);a={};if(e){e=e.split("#")[0];e=e.split("&");for(var f=0;f<e.length;f++){var b=e[f].split("="),d=void 0,c=b[0].replace(/\[\d*\]/,function(a){d=a.slice(1,-1);return""});b="undefined"===typeof b[1]?"":b[1];c=c.toLowerCase();b=b.toLowerCase();a[c]?("string"===typeof a[c]&&(a[c]=[a[c]]),"undefined"===typeof d?a[c].push(b):a[c][d]=b):a[c]=b}}return a};
 
1
  var adsense_ad_names=[],ai_preview_window="undefined"!==typeof ai_preview;
2
+ function ai_process_adsense_ad(a){a=jQuery(a);var d=a.attr("width"),e=a.attr("height"),b=getAllUrlParams(a.attr("src"));if("undefined"!==typeof b.client){var g=b.client.replace("ca-",""),c=b.slotname,h=b.ifi;b=jQuery('<div class="ai-debug-ad-overlay"></div>');var f="";"undefined"!==typeof c?(f="","undefined"!==typeof adsense_ad_names.publisher_id&&adsense_ad_names.publisher_id==g&&"undefined"!==typeof adsense_ad_names[c]&&(f='<div class="ai-info ai-info-2">'+adsense_ad_names[c]+"</div>"),f='<div class="ai-info ai-info-1">'+
3
+ c+"</div>"+f):0!=a.closest("div.google-auto-placed").length?(b.addClass("ai-auto-ads"),f='<div class="ai-info ai-info-1">Auto ads</div>'):b.addClass("ai-no-slot");d=jQuery('<div class="ai-debug-ad-info"><div class="ai-info ai-info-1">AdSense #'+h+'</div><div class="ai-info ai-info-2">'+d+"x"+e+"</div>"+f+"</div>");a.after(d);ai_preview_window||a.after(b)}}
4
+ function ai_process_adsense_ads(){jQuery('ins > ins > iframe[src*="google"]:visible').each(function(){jQuery(this).closest(".ai-dummy-ad").length||ai_process_adsense_ad(this)})}
5
+ jQuery(document).ready(function(a){a.post("AI_AJAXURL",{action:"ai_ajax",ai_check:"AI_NONCE","adsense-ad-units":{ai:1}}).done(function(a){if(""!=a)try{adsense_ad_names=JSON.parse(a)}catch(e){}}).fail(function(a,e,b){}).always(function(a){});a(window).on("load",function(){ai_preview_window||setTimeout(function(){ai_process_adsense_ads(jQuery)},50)})});
6
+ function getAllUrlParams(a){var d=a?a.split("?")[1]:window.location.search.slice(1);a={};if(d){d=d.split("#")[0];d=d.split("&");for(var e=0;e<d.length;e++){var b=d[e].split("="),g=void 0,c=b[0].replace(/\[\d*\]/,function(a){g=a.slice(1,-1);return""});b="undefined"===typeof b[1]?"":b[1];c=c.toLowerCase();b=b.toLowerCase();a[c]?("string"===typeof a[c]&&(a[c]=[a[c]]),"undefined"===typeof g?a[c].push(b):a[c][g]=b):a[c]=b}}return a};
includes/js/ai-auto-ads.js CHANGED
@@ -1,8 +1,6 @@
1
  jQuery(window).on ('load', function () {
2
  setTimeout (function() {
3
- // var google_auto_placed = jQuery ('.google-auto-placed ins ins iframe');
4
- // var google_auto_placed = jQuery ('.google-auto-placed ins ins ins, .google-auto-placed ins ins iframe');
5
- var google_auto_placed = jQuery ('.google-auto-placed ins ins ins');
6
  google_auto_placed.before ('<section class=\"ai-debug-bar ai-debug-adsense ai-adsense-auto-ads\">' + ai_front.automatically_placed + '</section>');
7
  }, 50);
8
  });
1
  jQuery(window).on ('load', function () {
2
  setTimeout (function() {
3
+ var google_auto_placed = jQuery ('.google-auto-placed ins > ins > iframe[onload*="google"]:visible');
 
 
4
  google_auto_placed.before ('<section class=\"ai-debug-bar ai-debug-adsense ai-adsense-auto-ads\">' + ai_front.automatically_placed + '</section>');
5
  }, 50);
6
  });
includes/js/ai-auto-ads.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(window).on("load",function(){setTimeout(function(){jQuery(".google-auto-placed ins ins ins").before('<section class="ai-debug-bar ai-debug-adsense ai-adsense-auto-ads">'+ai_front.automatically_placed+"</section>")},50)});
1
+ jQuery(window).on("load",function(){setTimeout(function(){jQuery('.google-auto-placed ins > ins > iframe[onload*="google"]:visible').before('<section class="ai-debug-bar ai-debug-adsense ai-adsense-auto-ads">'+ai_front.automatically_placed+"</section>")},50)});
includes/placeholders.php CHANGED
@@ -1,8 +1,5 @@
1
  <?php
2
 
3
- //ini_set ('display_errors', 1);
4
- //error_reporting (E_ALL);
5
-
6
  function generate_placeholder_editor ($placeholder_url, $block) {
7
  global $wp_version;
8
 
@@ -265,13 +262,13 @@ function generate_placeholder_editor ($placeholder_url, $block) {
265
  update_placeholder ();
266
  });
267
 
268
- $("input#background").colorpicker ().on('colorpickerChange colorpickerCreate colorpickerUpdate', function (e) {
269
  update_placeholder ();
270
  }).on ('input', function() {
271
  update_placeholder ();
272
  });
273
 
274
- $("input#text-color").colorpicker ().on('colorpickerChange colorpickerCreate colorpickerUpdate', function (e) {
275
  update_placeholder ();
276
  }).on ('input', function() {
277
  update_placeholder ();
1
  <?php
2
 
 
 
 
3
  function generate_placeholder_editor ($placeholder_url, $block) {
4
  global $wp_version;
5
 
262
  update_placeholder ();
263
  });
264
 
265
+ $("input#background").colorpicker ({useAlpha: false, useHashPrefix: true, format: 'hex'}).on('colorpickerChange colorpickerCreate colorpickerUpdate', function (e) {
266
  update_placeholder ();
267
  }).on ('input', function() {
268
  update_placeholder ();
269
  });
270
 
271
+ $("input#text-color").colorpicker ({useAlpha: false, useHashPrefix: true, format: 'hex'}).on('colorpickerChange colorpickerCreate colorpickerUpdate', function (e) {
272
  update_placeholder ();
273
  }).on ('input', function() {
274
  update_placeholder ();
includes/preview-adb.php CHANGED
@@ -1,8 +1,5 @@
1
  <?php
2
 
3
- //ini_set ('display_errors', 1);
4
- //error_reporting (E_ALL);
5
-
6
  function ai_media_buttons () {
7
  echo '<button type="button" id="add-p" class="button" style="width: 36px;" title="', __('Add dummy paragraph', 'ad-inserter'), '">+</button>';
8
  echo '<button type="button" id="remove-p" class="button" style="width: 36px;" title="', __('Remove dummy paragraph', 'ad-inserter'), '">-</button>';
1
  <?php
2
 
 
 
 
3
  function ai_media_buttons () {
4
  echo '<button type="button" id="add-p" class="button" style="width: 36px;" title="', __('Add dummy paragraph', 'ad-inserter'), '">+</button>';
5
  echo '<button type="button" id="remove-p" class="button" style="width: 36px;" title="', __('Remove dummy paragraph', 'ad-inserter'), '">-</button>';
includes/preview.php CHANGED
@@ -1,8 +1,5 @@
1
  <?php
2
 
3
- //ini_set ('display_errors', 1);
4
- //error_reporting (E_ALL);
5
-
6
  function alt_styles_data ($alt_styles_text) {
7
  if (strpos ($alt_styles_text, "||") !== false) {
8
  $styles = explode ("||", $alt_styles_text);
@@ -122,6 +119,12 @@ function generate_code_preview (
122
  $wrapper_css = isset ($preview_parameters ['alignment_css']) ? $preview_parameters ['alignment_css'] : $obj->get_alignment_style ();
123
  $custom_css_code = isset ($preview_parameters ['custom_css']) ? $preview_parameters ['custom_css'] : $obj->get_custom_css();
124
  $close_button = isset ($preview_parameters ['close']) ? $preview_parameters ['close'] : $obj->get_close_button ();
 
 
 
 
 
 
125
  $process_php = isset ($preview_parameters ['php']) ? $preview_parameters ['php'] : $obj->get_process_php ();
126
  $show_label = isset ($preview_parameters ['label']) ? $preview_parameters ['label'] : $obj->get_show_label ();
127
  $read_only = isset ($preview_parameters ['read_only']) ? $preview_parameters ['read_only'] : 0;
@@ -133,6 +136,10 @@ function generate_code_preview (
133
 
134
  $separators = isset ($preview_parameters ['check']) || isset ($preview_parameters ['count']) || isset ($preview_parameters ['rotate']) || isset ($preview_parameters ['viewport']);
135
 
 
 
 
 
136
  $obj->wp_options [AI_OPTION_BLOCK_NAME] = $block_name;
137
  $obj->wp_options [AI_OPTION_CODE] = $code;
138
  $obj->wp_options [AI_OPTION_ALIGNMENT_TYPE] = $alignment_type;
@@ -142,6 +149,14 @@ function generate_code_preview (
142
  $obj->wp_options [AI_OPTION_VERTICAL_MARGIN] = $vertical_margin;
143
  $obj->wp_options [AI_OPTION_ANIMATION] = $animation;
144
  $obj->wp_options [AI_OPTION_CLOSE_BUTTON] = $close_button;
 
 
 
 
 
 
 
 
145
  $obj->wp_options [AI_OPTION_PROCESS_PHP] = $process_php;
146
  $obj->wp_options [AI_OPTION_SHOW_LABEL] = $show_label;
147
 
@@ -155,6 +170,8 @@ function generate_code_preview (
155
  $functions = function_exists ('ai_extract_features_2');
156
  $iframe_resize = $iframe && $obj->get_iframe_height () == '';
157
 
 
 
158
  if (!$adsense) {
159
  switch ($alignment_type) {
160
  case AI_ALIGNMENT_STICKY:
@@ -246,6 +263,10 @@ function generate_code_preview (
246
  <link rel='stylesheet' href='<?php echo plugins_url ('includes/aos/ai-aos.css', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION.rand (1, 10000000); ?>'>
247
  <script src='<?php echo plugins_url ('includes/aos/aos.js', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION; ?>'></script>
248
  <?php endif; ?>
 
 
 
 
249
  <script src='<?php echo plugins_url ('includes/js/ad-inserter-check.js', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION; ?>'></script>
250
  <link rel='stylesheet' href='<?php echo plugins_url ('css/ai-settings.css', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION; ?>'>
251
  <script>
@@ -255,6 +276,7 @@ function generate_code_preview (
255
  <?php echo get_frontend_javascript_debugging () ? 'ai_debugging = true;' : ''; ?>
256
  var sticky = <?php echo $sticky ? 'true' : 'false'; ?>;
257
  var remove_transform = <?php echo $sticky && $sticky_parameters != '' ? 'true' : 'false'; ?>;
 
258
 
259
  if (sticky) window.moveTo (0, 0);
260
  if (sticky) window.resizeTo (screen.width, screen.height - 40);
@@ -350,6 +372,23 @@ function generate_code_preview (
350
  var STICKY_CONTEXT_SPINNER = 5;
351
  var STICKY_CONTEXT_CUSTOM_CSS = 6;
352
  var STICKY_CONTEXT_ANIMATION = 7;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
353
 
354
  var sticky_context = STICKY_CONTEXT_INIT;
355
 
@@ -415,12 +454,14 @@ function generate_code_preview (
415
  var vertical_margin = spinner_vertical_margin.spinner ("value");
416
  var horizontal_margin = spinner_horizontal_margin.spinner ("value");
417
  var animation = $("select#animation option:selected").attr ('value');
 
418
  } else {
419
  var horizontal = 0;
420
  var vertical = 0;
421
  var vertical_margin = 0;
422
  var horizontal_margin = 0;
423
  var animation = 0;
 
424
  }
425
 
426
  var check = $("select#check option:selected").attr('value');
@@ -453,6 +494,7 @@ function generate_code_preview (
453
  'php': <?php echo $process_php ? '1' : '0'; ?>,
454
  'label': <?php echo $show_label ? '1' : '0'; ?>,
455
  'close': close_button,
 
456
  'iframe': <?php echo $iframe ? '1' : '0'; ?>,
457
  'check': check,
458
  'count': count,
@@ -467,8 +509,7 @@ function generate_code_preview (
467
 
468
  function update_highlighting () {
469
  if ($('body').hasClass ("highlighted")) {
470
- $("#highlight-button").click ();
471
- $("#highlight-button").click ();
472
  }
473
  }
474
 
@@ -539,6 +580,17 @@ function generate_code_preview (
539
  $("select#horizontal-position").val (settings.find ("select#horizontal-position-" + block + " option:selected").attr('value')).change();
540
  $("select#vertical-position").val (settings.find ("select#vertical-position-" + block + " option:selected").attr('value')).change();
541
  $("select#animation").val (settings.find ("select#animation-" + block + " option:selected").attr('value')).change();
 
 
 
 
 
 
 
 
 
 
 
542
  }
543
 
544
  process_display_elements ();
@@ -547,6 +599,7 @@ function generate_code_preview (
547
 
548
  function apply_to_settings () {
549
  if (window.opener != null && !window.opener.closed) {
 
550
  var settings = $(window.opener.document).contents ();
551
 
552
  var selected_alignment = $("select#block-alignment option:selected");
@@ -585,6 +638,21 @@ function generate_code_preview (
585
 
586
  var new_animation = $("select#animation option:selected").attr('value');
587
  settings.find ("select#animation-" + block).val (new_animation).change ();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
588
  }
589
 
590
  window.opener.change_block_alignment (block);
@@ -657,9 +725,11 @@ function generate_code_preview (
657
 
658
  update_sticky_elements (STICKY_CONTEXT_SPINNER);
659
 
660
- var new_css = $('#css-' + AI_ALIGNMENT_STICKY).text ();
661
- wrapper.attr ('data-css', new_css);
662
- wrapper.attr ('style', new_css);
 
 
663
  if (remove_transform) wrapper.css ('transform', '');
664
  update_custom_css ();
665
  update_sticky_elements (STICKY_CONTEXT_SPINNER);
@@ -776,6 +846,29 @@ function generate_code_preview (
776
  $("#demo-box-no-wrapping").show ();
777
  }
778
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
779
  wrapper.attr ("data-css", style);
780
  wrapper.attr ("style", style);
781
  if (remove_transform) wrapper.css ('transform', '');
@@ -868,13 +961,19 @@ function generate_code_preview (
868
  }
869
  }
870
 
 
 
 
 
 
 
871
  function update_close_button () {
872
  var close_button = wrapper.find ('.ai-close-button');
873
  if (wrapper.hasClass ('ai-close') && typeof close_button != 'undefined') {
874
 
875
  var alignment = $("select#block-alignment option:selected").attr ('value');
876
 
877
- if (alignment != AI_ALIGNMENT_NO_WRAPPING) {
878
  $("#close-button-selection").show ();
879
 
880
  var selected_close_button = $("#close-button-0 option:selected").attr('value');
@@ -901,7 +1000,7 @@ function generate_code_preview (
901
  close_button.attr ('class', button_class);
902
  } else {
903
  $("#close-button-selection").hide ();
904
- close_button.addClass ('ai-close-hidden');
905
  }
906
  }
907
  }
@@ -912,30 +1011,43 @@ function generate_code_preview (
912
  const MAIN_CONTENT_ELEMENT = SETTINGS.find ('#main-content-element').val ().trim ();
913
  const MAIN_CONTENT_FIXED_WIDTH = parseInt (MAIN_CONTENT_ELEMENT) == MAIN_CONTENT_ELEMENT;
914
 
 
 
915
  custom_css = custom_css.replace (/\s+/g, '');
916
  var sticky_classes = [];
917
 
918
- if (custom_css.indexOf ("position:fixed") != - 1 &&
919
- custom_css.indexOf ("z-index:") != - 1 &&
920
- custom_css.indexOf ("display:none") != - 1) {
921
- if (!MAIN_CONTENT_FIXED_WIDTH &&
922
- custom_css.indexOf (";left:auto") != - 1) {
923
- sticky_classes.push ('ai-sticky-content');
924
- sticky_classes.push ('ai-sticky-left');
925
- } else
926
- if (!MAIN_CONTENT_FIXED_WIDTH &&
927
- custom_css.indexOf ("right:auto") != - 1) {
928
- sticky_classes.push ('ai-sticky-content');
929
- sticky_classes.push ('ai-sticky-right');
930
- };
931
-
932
- if (custom_css.indexOf ("margin-bottom:auto") != - 1) {
933
- sticky_classes.push ('ai-sticky-content');
934
- sticky_classes.push ('ai-sticky-scroll');
935
- };
 
 
 
 
 
 
 
 
 
 
 
936
  }
937
 
938
- // console.log ('sticky_classes', sticky_classes);
939
 
940
  return sticky_classes;
941
  }
@@ -949,22 +1061,92 @@ function generate_code_preview (
949
  var alignment = parseInt ($("select#block-alignment option:selected").attr ('value'));
950
  var horizontal_position = parseInt ($("select#horizontal-position option:selected").attr('value'));
951
  var vertical_position = parseInt ($("select#vertical-position option:selected").attr('value'));
 
 
 
 
952
 
953
  if (alignment != AI_ALIGNMENT_CUSTOM_CSS) {
954
  var selected_horizontal_position = $("select#horizontal-position option:selected");
955
  var selected_vertical_position = $("select#vertical-position option:selected");
956
 
957
- var custom_vertical_position_css = selected_vertical_position.data ('css-' + horizontal_position);
 
 
 
 
 
 
 
 
 
 
 
958
 
959
- if (typeof custom_vertical_position_css != 'undefined') var vertical_position_css = custom_vertical_position_css; else
960
- var vertical_position_css = selected_vertical_position.data ('css');
961
 
962
- var custom_horizontal_position_css = selected_horizontal_position.data ('css-' + vertical_position);
 
 
 
963
 
964
- if (typeof custom_horizontal_position_css != 'undefined') var horizontal_position_css = custom_horizontal_position_css; else
965
- var horizontal_position_css = selected_horizontal_position.data ('css');
 
966
 
967
  var sticky_css = vertical_position_css + horizontal_position_css;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
968
  } else {
969
  var sticky_css = $('#css-' + AI_ALIGNMENT_STICKY + ' .ai-sticky-css').text ();
970
  }
@@ -973,7 +1155,7 @@ function generate_code_preview (
973
  var horizontal_margin = spinner_horizontal_margin.spinner ("value");
974
 
975
  if (vertical_margin == null) vertical_margin = '';
976
- if (horizontal_margin == null) horizontal_margin = '';
977
 
978
  sticky_css = window.opener.update_sticky_margins (sticky_css, horizontal_margin, vertical_margin);
979
 
@@ -987,8 +1169,12 @@ function generate_code_preview (
987
  }
988
 
989
  $('#css-' + AI_ALIGNMENT_STICKY + ' .ai-sticky-css').text (sticky_css);
 
 
 
990
 
991
- wrapper.removeClass ('ai-sticky-content').removeClass ('ai-sticky-left').removeClass ('ai-sticky-right').removeClass ('ai-sticky-scroll');
 
992
 
993
  switch (parseInt (alignment)) {
994
  case AI_ALIGNMENT_STICKY:
@@ -1001,12 +1187,32 @@ function generate_code_preview (
1001
  wrapper.addClass ('ai-sticky-content');
1002
  wrapper.addClass ('ai-sticky-right');
1003
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1004
  }
1005
 
1006
  if (vertical_position == AI_SCROLL_WITH_THE_CONTENT) {
1007
- wrapper.addClass ('ai-sticky-content');
 
 
 
 
1008
  wrapper.addClass ('ai-sticky-scroll');
1009
  }
 
1010
  break;
1011
  case AI_ALIGNMENT_CUSTOM_CSS:
1012
  var custom_css = $("#custom-css").val ().replace (/\s+/g, '');
@@ -1024,106 +1230,111 @@ function generate_code_preview (
1024
  break;
1025
  }
1026
 
 
 
1027
  wrapper.removeClass ('ai-center-h').removeClass ('ai-center-v').removeClass ('ai-sticky-turn');
1028
- wrapper.attr ('data-aos', '');
1029
 
1030
  var animation = parseInt ($("select#animation option:selected").attr ('value'));
1031
 
1032
  var data_aos = '';
1033
  var direction = '';
1034
 
1035
- switch (horizontal_position) {
1036
- case AI_STICK_TO_THE_LEFT:
1037
- case AI_STICK_TO_THE_CONTENT_LEFT:
1038
- direction = 'right';
1039
- break;
1040
- case AI_STICK_HORIZONTAL_CENTER:
1041
- wrapper.addClass ('ai-center-h');
1042
- switch (vertical_position) {
1043
- case AI_STICK_TO_THE_TOP:
1044
- case AI_SCROLL_WITH_THE_CONTENT:
1045
- direction = 'down';
1046
- break;
1047
- case AI_STICK_VERTICAL_CENTER:
1048
- direction = 'left';
1049
- switch (animation) {
1050
- case AI_ANIMATION_SLIDE:
1051
- case AI_ANIMATION_SLIDE_FADE:
1052
- animation = AI_ANIMATION_FADE;
1053
- break;
1054
- case AI_ANIMATION_ZOOM_IN:
1055
- case AI_ANIMATION_ZOOM_OUT:
1056
- direction = 'up';
1057
- break;
1058
- }
1059
- break;
1060
- case AI_STICK_TO_THE_BOTTOM:
1061
- direction = 'up';
1062
- break;
1063
- }
1064
- break;
1065
- case AI_STICK_TO_THE_CONTENT_RIGHT:
1066
- case AI_STICK_TO_THE_RIGHT:
1067
- direction = 'left';
1068
- break;
1069
- }
1070
-
1071
- if (vertical_position == AI_STICK_VERTICAL_CENTER) wrapper.addClass ('ai-center-v');
1072
-
1073
- // console.log ('direction', direction);
1074
- // console.log ('animation', animation);
1075
- // console.log ('horizontal_position', horizontal_position);
1076
 
1077
- switch (horizontal_position) {
1078
- case AI_STICK_TO_THE_LEFT:
1079
- if (animation == AI_ANIMATION_TURN) direction = 'left';
1080
- break;
1081
- case AI_STICK_TO_THE_RIGHT:
1082
- if (animation == AI_ANIMATION_TURN) direction = 'right';
1083
- break;
1084
- case AI_STICK_TO_THE_CONTENT_LEFT:
1085
- case AI_STICK_TO_THE_CONTENT_RIGHT:
1086
- if (animation == AI_ANIMATION_SLIDE) animation = AI_ANIMATION_SLIDE_FADE;
1087
- break;
1088
- }
 
 
 
 
 
 
1089
 
1090
- switch (animation) {
1091
- case AI_ANIMATION_FADE:
1092
- data_aos = 'fade';
1093
- break;
1094
- case AI_ANIMATION_SLIDE:
1095
- data_aos = 'slide-' + direction;
1096
- break;
1097
- case AI_ANIMATION_SLIDE_FADE:
1098
- data_aos = 'fade-' + direction;
1099
- break;
1100
- case AI_ANIMATION_TURN:
1101
- wrapper.addClass ('ai-sticky-turn');
1102
- data_aos = 'flip-' + direction;
1103
- break;
1104
- case AI_ANIMATION_FLIP:
1105
- if (direction == 'right') direction = 'left'; else
1106
- if (direction == 'left') direction = 'right';
1107
- data_aos = 'flip-' + direction;
1108
- break;
1109
- case AI_ANIMATION_ZOOM_IN:
1110
- data_aos = 'zoom-in-' + direction;
1111
- break;
1112
- case AI_ANIMATION_ZOOM_OUT:
1113
- data_aos = 'zoom-out-' + direction;
1114
- break;
1115
- }
1116
 
1117
- remove_transform = false;
1118
- if (data_aos != '') {
1119
- wrapper.attr ('data-aos', data_aos);
1120
- remove_transform = true;
 
1121
  }
1122
  }
1123
 
1124
  function update_sticky_elements (context) {
1125
 
1126
- // console.log ('update_sticky_elements', context, 'sticky_context', sticky_context);
1127
 
1128
  if (sticky_context != context) return;
1129
 
@@ -1201,6 +1412,7 @@ function generate_code_preview (
1201
 
1202
  update_sticky_elements (STICKY_CONTEXT_HORIZONTAL_POSITION);
1203
  update_highlighting ();
 
1204
 
1205
  wrapper.css ('transition-property', 'none');
1206
  setTimeout (function() {wrapper.css ('transition-property', '');}, 10);
@@ -1223,6 +1435,7 @@ function generate_code_preview (
1223
 
1224
  update_sticky_elements (STICKY_CONTEXT_VERTICAL_POSITION);
1225
  update_highlighting ();
 
1226
 
1227
  wrapper.css ('transition-property', 'none');
1228
  setTimeout (function() {wrapper.css ('transition-property', '');}, 10);
@@ -1236,7 +1449,6 @@ function generate_code_preview (
1236
 
1237
  // console.log ('select#animation change');
1238
 
1239
- // if (sticky_context == STICKY_CONTEXT_VERTICAL_POSITION) $("select#block-alignment").val (AI_ALIGNMENT_STICKY).change();
1240
  update_sticky_css (STICKY_CONTEXT_ANIMATION);
1241
  process_display_elements ();
1242
  update_close_button ();
@@ -1252,6 +1464,69 @@ function generate_code_preview (
1252
  if (sticky_context == STICKY_CONTEXT_ANIMATION) sticky_context = STICKY_CONTEXT_NONE;
1253
  });
1254
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1255
  $("#animate-button").button ({
1256
  }).click (function () {
1257
 
@@ -1368,7 +1643,9 @@ function generate_code_preview (
1368
  }).click (function () {
1369
  $('body').toggleClass ("highlighted");
1370
 
1371
- if (!$('body').hasClass ("highlighted")) {
 
 
1372
  $(".highlighting").remove ();
1373
  $('.ai-debug-ad-info').remove();
1374
  return;
@@ -1477,8 +1754,9 @@ function generate_code_preview (
1477
  code_blocks.each (function () {
1478
  var element_tag = $(this).prop("tagName").toLowerCase();
1479
 
1480
- // Don't highlight close button
1481
- if (element_tag == 'span' && $(this).hasClass ('ai-close-button')) return true;
 
1482
 
1483
  if (element_tag == 'a') {
1484
  var a_children = $(this).children ();
@@ -1488,7 +1766,8 @@ function generate_code_preview (
1488
  } else filtered_code_blocks = filtered_code_blocks.add ($(this));
1489
  });
1490
 
1491
- // code_blocks.each (function () {
 
1492
  filtered_code_blocks.each (function () {
1493
  var element_tag = $(this).prop("tagName");
1494
  if (typeof element_tag != 'undefined') element_tag = element_tag.toLowerCase();
@@ -1499,10 +1778,13 @@ function generate_code_preview (
1499
 
1500
  var element_display = $(this).css ('display');
1501
  var element_left = element_offset.left;
 
1502
  var element_top = element_offset.top;
1503
  var element_outer_width = $(this).outerWidth ();
1504
  var element_outer_height = $(this).outerHeight ();
1505
 
 
 
1506
  if (debug) {
1507
  console.log ("");
1508
  console.log ("element " + code_index + ": " + element_tag);
@@ -1524,6 +1806,12 @@ function generate_code_preview (
1524
  overlay_background_div_position = 'fixed';
1525
  fixed_offset_top = $(document).scrollTop();
1526
  fixed_offset_left = $(document).scrollLeft();
 
 
 
 
 
 
1527
  }
1528
 
1529
  var new_id = "code-" + code_index;
@@ -1534,6 +1822,9 @@ function generate_code_preview (
1534
  offset ({top: element_top - fixed_offset_top, left: element_left - fixed_offset_left}).
1535
  attr ("id", new_id).
1536
  addClass ("highlighting"));
 
 
 
1537
  last_code_div = new_id;
1538
 
1539
  var new_bkg_id = "code-background-" + code_index;
@@ -1544,6 +1835,9 @@ function generate_code_preview (
1544
  offset ({top: element_top - fixed_offset_top, left: element_left - fixed_offset_left}).
1545
  attr ("id", new_bkg_id).
1546
  addClass ("highlighting"));
 
 
 
1547
  last_bkg_div = new_bkg_id;
1548
  }
1549
  });
@@ -1552,13 +1846,15 @@ function generate_code_preview (
1552
 
1553
  $("#use-button").button ({
1554
  }).click (function () {
1555
- apply_to_settings ();
1556
- window.close();
1557
  });
1558
 
1559
  $("#reset-button").button ({
1560
  }).click (function () {
1561
- load_from_settings ();
 
 
1562
  });
1563
 
1564
  $("#cancel-button").button ({
@@ -1633,6 +1929,7 @@ function generate_code_preview (
1633
  $(this).attr ('title', titles [index]);
1634
  });
1635
 
 
1636
  var titles = new Array();
1637
  $("select#vertical-position").imagepicker({hide_select: false}).find ('option').each (function (index) {
1638
  titles.push ($(this).data ('title'));
@@ -1723,6 +2020,7 @@ body.sticky {
1723
  padding: 20px 10px;
1724
  border: 1px solid #eee;
1725
  border-radius: 5px;
 
1726
  }
1727
 
1728
  .responsive-table td {
@@ -1926,6 +2224,12 @@ select {
1926
  .ai-info-1 {background: #000; color: #fff;}
1927
  .ai-info-2 {background: #fff; color: #000;}
1928
 
 
 
 
 
 
 
1929
  </style>
1930
  <?php echo $head_code; ?>
1931
  </head>
@@ -1984,7 +2288,7 @@ select {
1984
  </div>
1985
 
1986
  <div style="float: right; width: 90px; margin-left: 20px;">
1987
- <button id="highlight-button" type="button" style="margin: 0 0 10px 0; font-size: 12px; width: 90px; height: 35px; float: right;" title="<?php _e ('Highlight inserted code', 'ad-inserter'); ?>" ><?php _e ('Highlight', 'ad-inserter'); ?></button>
1988
  <?php if (!$read_only) : ?>
1989
  <button id="use-button" type="button" style="margin: 0 0 10px 0; font-size: 12px; width: 90px; height: 35px; float: right;" title="<?php _e ('Use current settings', 'ad-inserter'); ?>" ><?php _e ('Use', 'ad-inserter'); ?></button>
1990
  <button id="reset-button" type="button" style="margin: 0 0 10px 0; font-size: 12px; width: 90px; height: 35px; float: right;" title="<?php _e ('Reset to block settings', 'ad-inserter'); ?>" ><?php _e ('Reset', 'ad-inserter'); ?></button>
@@ -2005,6 +2309,8 @@ select {
2005
  <h2><?php _e ('AdSense ad unit', 'ad-inserter'); ?></h2>
2006
  <?php endif; ?>
2007
  <h3 id="block-name" style="text-align: left;"><?php echo $block_name; ?></h3>
 
 
2008
  </div>
2009
 
2010
  <?php if (!$read_only) : ?>
@@ -2118,15 +2424,62 @@ select {
2118
  <div id="alignment-style" style="margin: 4px 0; min-height: 74px;"></div>
2119
  </div>
2120
 
2121
- <div style="float: right; text-align: right;">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2122
  <?php if (function_exists ('ai_close_button_select')) ai_close_button_select (0, $close_button, $close_button, 'close-button-0'); ?>
2123
  <div id="close-buttons" style="margin: 4px 0; min-height: 74px;"></div>
2124
  </div>
 
2125
  <div style="clear: both;"></div>
2126
 
2127
  </div>
2128
 
2129
- <div style="margin: 8px 0;">
2130
  <div style="float: left;">
2131
  <div style="margin: 4px 0;">
2132
  <?php _e ('Horizontal position', 'ad-inserter'); ?>
@@ -2135,6 +2488,7 @@ select {
2135
  data-img-src="<?php echo plugins_url ('css/images/blank.png', AD_INSERTER_FILE); ?>"
2136
  data-img-class="automatic-insertion preview im-sticky-left"
2137
  data-css="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_LEFT; ?>"
 
2138
  data-title="<?php echo AI_TEXT_STICK_TO_THE_LEFT; ?>"
2139
  value="<?php echo AI_STICK_TO_THE_LEFT; ?>"
2140
  <?php echo ($horizontal_position == AI_STICK_TO_THE_LEFT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_STICK_TO_THE_LEFT; ?></option>
@@ -2142,14 +2496,16 @@ select {
2142
  data-img-src="<?php echo plugins_url ('css/images/blank.png', AD_INSERTER_FILE); ?>"
2143
  data-img-class="automatic-insertion preview im-sticky-content-left"
2144
  data-css="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_LEFT; ?>"
 
2145
  data-title="<?php echo AI_TEXT_STICK_TO_THE_CONTENT_LEFT; ?>"
2146
  value="<?php echo AI_STICK_TO_THE_CONTENT_LEFT; ?>"
2147
  <?php echo ($horizontal_position == AI_STICK_TO_THE_CONTENT_LEFT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_STICK_TO_THE_CONTENT_LEFT; ?></option>
2148
- <option
2149
  data-img-src="<?php echo plugins_url ('css/images/blank.png', AD_INSERTER_FILE); ?>"
2150
  data-img-class="automatic-insertion preview im-sticky-center-horizontal"
2151
  data-css="<?php echo AI_ALIGNMENT_CSS_STICK_CENTER_HORIZONTAL; ?>"
2152
  data-css-<?php echo AI_STICK_VERTICAL_CENTER; ?>="<?php echo AI_ALIGNMENT_CSS_STICK_CENTER_HORIZONTAL_V; ?>"
 
2153
  data-title="<?php echo AI_TEXT_CENTER; ?>"
2154
  value="<?php echo AI_STICK_HORIZONTAL_CENTER; ?>"
2155
  <?php echo ($horizontal_position == AI_STICK_HORIZONTAL_CENTER) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_CENTER; ?></option>
@@ -2157,6 +2513,7 @@ select {
2157
  data-img-src="<?php echo plugins_url ('css/images/blank.png', AD_INSERTER_FILE); ?>"
2158
  data-img-class="automatic-insertion preview im-sticky-content-right"
2159
  data-css="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_RIGHT; ?>"
 
2160
  data-title="<?php echo AI_TEXT_STICK_TO_THE_CONTENT_RIGHT; ?>"
2161
  value="<?php echo AI_STICK_TO_THE_CONTENT_RIGHT; ?>"
2162
  <?php echo ($horizontal_position == AI_STICK_TO_THE_CONTENT_RIGHT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_STICK_TO_THE_CONTENT_RIGHT; ?></option>
@@ -2165,6 +2522,7 @@ select {
2165
  data-img-class="automatic-insertion preview im-sticky-right"
2166
  data-css="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_RIGHT; ?>"
2167
  data-css-<?php echo AI_SCROLL_WITH_THE_CONTENT; ?>="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_RIGHT_SCROLL; ?>"
 
2168
  data-title="<?php echo AI_TEXT_STICK_TO_THE_RIGHT; ?>"
2169
  value="<?php echo AI_STICK_TO_THE_RIGHT; ?>"
2170
  <?php echo ($horizontal_position == AI_STICK_TO_THE_RIGHT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_STICK_TO_THE_RIGHT; ?></option>
@@ -2185,12 +2543,13 @@ select {
2185
  <div style="float: right;">
2186
  <div style="margin: 4px 0;">
2187
  <?php _e ('Vertical position', 'ad-inserter'); ?>
2188
- <select id="vertical-position">
2189
  <option
2190
  data-img-src="<?php echo plugins_url ('css/images/blank.png', AD_INSERTER_FILE); ?>"
2191
  data-img-class="automatic-insertion preview im-sticky-top"
2192
  data-css="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_TOP_OFFSET; ?>"
2193
  data-css-<?php echo AI_STICK_HORIZONTAL_CENTER; ?>="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_TOP; ?>"
 
2194
  data-title="<?php echo AI_TEXT_STICK_TO_THE_TOP; ?>"
2195
  value="<?php echo AI_STICK_TO_THE_TOP; ?>"
2196
  <?php echo ($vertical_position == AI_STICK_TO_THE_TOP) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_STICK_TO_THE_TOP; ?></option>
@@ -2205,6 +2564,7 @@ select {
2205
  data-img-src="<?php echo plugins_url ('css/images/blank.png', AD_INSERTER_FILE); ?>"
2206
  data-img-class="automatic-insertion preview im-sticky-scroll"
2207
  data-css="<?php echo AI_ALIGNMENT_CSS_SCROLL_WITH_THE_CONTENT; ?>"
 
2208
  data-title="<?php echo AI_TEXT_SCROLL_WITH_THE_CONTENT; ?>"
2209
  value="<?php echo AI_SCROLL_WITH_THE_CONTENT; ?>"
2210
  <?php echo ($vertical_position == AI_SCROLL_WITH_THE_CONTENT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_SCROLL_WITH_THE_CONTENT; ?></option>
@@ -2213,6 +2573,7 @@ select {
2213
  data-img-class="automatic-insertion preview im-sticky-bottom"
2214
  data-css="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_BOTTOM_OFFSET; ?>"
2215
  data-css-<?php echo AI_STICK_HORIZONTAL_CENTER; ?>="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_BOTTOM; ?>"
 
2216
  data-title="<?php echo AI_TEXT_STICK_TO_THE_BOTTOM; ?>"
2217
  value="<?php echo AI_STICK_TO_THE_BOTTOM; ?>"
2218
  <?php echo ($vertical_position == AI_STICK_TO_THE_BOTTOM) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_STICK_TO_THE_BOTTOM; ?></option>
@@ -2233,23 +2594,30 @@ select {
2233
  <div style="clear: both;"></div>
2234
  </div>
2235
 
2236
- <div style="margin: 8px 0;">
2237
- <span style="vertical-align: middle;">
2238
- <?php _e ('Animation', 'ad-inserter'); ?>
2239
- <select id="animation">
2240
- <option value="<?php echo AI_ANIMATION_NONE; ?>" <?php echo ($animation == AI_ANIMATION_NONE) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_NONE; ?></option>
2241
- <option value="<?php echo AI_ANIMATION_FADE; ?>" <?php echo ($animation == AI_ANIMATION_FADE) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_FADE; ?></option>
2242
- <option value="<?php echo AI_ANIMATION_SLIDE; ?>" <?php echo ($animation == AI_ANIMATION_SLIDE) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_SLIDE; ?></option>
2243
- <option value="<?php echo AI_ANIMATION_SLIDE_FADE; ?>" <?php echo ($animation == AI_ANIMATION_SLIDE_FADE) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_SLIDE_FADE; ?></option>
2244
- <option value="<?php echo AI_ANIMATION_TURN; ?>" <?php echo ($animation == AI_ANIMATION_TURN) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_TURN; ?></option>
2245
- <option value="<?php echo AI_ANIMATION_FLIP; ?>" <?php echo ($animation == AI_ANIMATION_FLIP) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_FLIP; ?></option>
2246
- <option value="<?php echo AI_ANIMATION_ZOOM_IN; ?>" <?php echo ($animation == AI_ANIMATION_ZOOM_IN) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_ZOOM_IN; ?></option>
2247
- <option value="<?php echo AI_ANIMATION_ZOOM_OUT; ?>" <?php echo ($animation == AI_ANIMATION_ZOOM_OUT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_ZOOM_OUT; ?></option>
2248
- </select>
 
 
 
 
2249
  </span>
2250
- <button id="animate-button" type="button" style="margin: 0 0 0 10px; height: 30px; font-size: 12px;"><?php _e ('Animate', 'ad-inserter'); ?></button>
2251
- </div>
2252
 
 
 
 
 
 
2253
 
2254
  <?php else : ?>
2255
 
@@ -2291,7 +2659,7 @@ select {
2291
  <span id="css-label" style="vertical-align: middle; margin: 4px 0 0 0 0; width: 36px; font-size: 14px; font-weight: bold; display: none;">CSS</span>
2292
  </td>
2293
  <td style="width: 100%; height: 32px; padding:0;">
2294
- <input id="custom-css" style="width: 100%; display: inline-block; padding: 5px 0 0 3px; border-radius: 4px; display: none; font-size: 12px; font-family: monospace, Courier, 'Courier New'; font-weight: bold;" type="text" value="<?php echo $custom_css_code; ?>" size="70" maxlength="500" title="Custom CSS code for wrapping div" />
2295
  <span style="width: 100%; display: inline-block; padding: 5px 0 0 5px; font-family: monospace, Courier, 'Courier New'; font-size: 12px; font-weight: bold; cursor: pointer; white-space: normal;">
2296
  <span id="css-no-wrapping" style="vertical-align: middle; display: none;"></span>
2297
  <span id="css-<?php echo AI_ALIGNMENT_DEFAULT; ?>" class="css-code" style="vertical-align: middle; display: none;" title="CSS code for wrapping div, click to edit"><?php echo $obj->alignment_style (AI_ALIGNMENT_DEFAULT); ?></span>
1
  <?php
2
 
 
 
 
3
  function alt_styles_data ($alt_styles_text) {
4
  if (strpos ($alt_styles_text, "||") !== false) {
5
  $styles = explode ("||", $alt_styles_text);
119
  $wrapper_css = isset ($preview_parameters ['alignment_css']) ? $preview_parameters ['alignment_css'] : $obj->get_alignment_style ();
120
  $custom_css_code = isset ($preview_parameters ['custom_css']) ? $preview_parameters ['custom_css'] : $obj->get_custom_css();
121
  $close_button = isset ($preview_parameters ['close']) ? $preview_parameters ['close'] : $obj->get_close_button ();
122
+ $background = isset ($preview_parameters ['background']) ? $preview_parameters ['background'] : $obj->get_background ();
123
+ $body_background = isset ($preview_parameters ['body_background']) ? $preview_parameters ['body_background'] : $obj->get_set_body_background ();
124
+ $background_image = isset ($preview_parameters ['background_image']) ? $preview_parameters ['background_image'] : $obj->get_background_image ();
125
+ $background_color = isset ($preview_parameters ['background_color']) ? $preview_parameters ['background_color'] : $obj->get_background_color ();
126
+ $background_repeat = isset ($preview_parameters ['background_repeat']) ? $preview_parameters ['background_repeat'] : $obj->get_background_repeat ();
127
+ $background_size = isset ($preview_parameters ['background_size']) ? $preview_parameters ['background_size'] : $obj->get_background_size ();
128
  $process_php = isset ($preview_parameters ['php']) ? $preview_parameters ['php'] : $obj->get_process_php ();
129
  $show_label = isset ($preview_parameters ['label']) ? $preview_parameters ['label'] : $obj->get_show_label ();
130
  $read_only = isset ($preview_parameters ['read_only']) ? $preview_parameters ['read_only'] : 0;
136
 
137
  $separators = isset ($preview_parameters ['check']) || isset ($preview_parameters ['count']) || isset ($preview_parameters ['rotate']) || isset ($preview_parameters ['viewport']);
138
 
139
+ if ($background && $body_background) {
140
+ $vertical_position = AI_STICK_TO_THE_TOP;
141
+ }
142
+
143
  $obj->wp_options [AI_OPTION_BLOCK_NAME] = $block_name;
144
  $obj->wp_options [AI_OPTION_CODE] = $code;
145
  $obj->wp_options [AI_OPTION_ALIGNMENT_TYPE] = $alignment_type;
149
  $obj->wp_options [AI_OPTION_VERTICAL_MARGIN] = $vertical_margin;
150
  $obj->wp_options [AI_OPTION_ANIMATION] = $animation;
151
  $obj->wp_options [AI_OPTION_CLOSE_BUTTON] = $close_button;
152
+
153
+ $obj->wp_options [AI_OPTION_BACKGROUND] = $background;
154
+ $obj->wp_options [AI_OPTION_SET_BODY_BACKGROUND] = $body_background;
155
+ $obj->wp_options [AI_OPTION_BACKGROUND_IMAGE] = $background_image;
156
+ $obj->wp_options [AI_OPTION_BACKGROUND_COLOR] = $background_color;
157
+ $obj->wp_options [AI_OPTION_BACKGROUND_REPEAT] = $background_repeat;
158
+ $obj->wp_options [AI_OPTION_BACKGROUND_SIZE] = $background_size;
159
+
160
  $obj->wp_options [AI_OPTION_PROCESS_PHP] = $process_php;
161
  $obj->wp_options [AI_OPTION_SHOW_LABEL] = $show_label;
162
 
170
  $functions = function_exists ('ai_extract_features_2');
171
  $iframe_resize = $iframe && $obj->get_iframe_height () == '';
172
 
173
+ $fixed_background = $background && $horizontal_position == AI_STICK_HORIZONTAL_CENTER;
174
+
175
  if (!$adsense) {
176
  switch ($alignment_type) {
177
  case AI_ALIGNMENT_STICKY:
263
  <link rel='stylesheet' href='<?php echo plugins_url ('includes/aos/ai-aos.css', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION.rand (1, 10000000); ?>'>
264
  <script src='<?php echo plugins_url ('includes/aos/aos.js', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION; ?>'></script>
265
  <?php endif; ?>
266
+
267
+ <script src='<?php echo plugins_url ('includes/colorpicker/js/bootstrap-colorpicker.min.js', AD_INSERTER_FILE); ?>'></script>
268
+ <link rel="stylesheet" href='<?php echo plugins_url ('includes/colorpicker/css/bootstrap-colorpicker.min.css', AD_INSERTER_FILE); ?>'>
269
+
270
  <script src='<?php echo plugins_url ('includes/js/ad-inserter-check.js', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION; ?>'></script>
271
  <link rel='stylesheet' href='<?php echo plugins_url ('css/ai-settings.css', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION; ?>'>
272
  <script>
276
  <?php echo get_frontend_javascript_debugging () ? 'ai_debugging = true;' : ''; ?>
277
  var sticky = <?php echo $sticky ? 'true' : 'false'; ?>;
278
  var remove_transform = <?php echo $sticky && $sticky_parameters != '' ? 'true' : 'false'; ?>;
279
+ var fixed_background = <?php echo $fixed_background != '' ? 'true' : 'false'; ?>;
280
 
281
  if (sticky) window.moveTo (0, 0);
282
  if (sticky) window.resizeTo (screen.width, screen.height - 40);
372
  var STICKY_CONTEXT_SPINNER = 5;
373
  var STICKY_CONTEXT_CUSTOM_CSS = 6;
374
  var STICKY_CONTEXT_ANIMATION = 7;
375
+ var STICKY_CONTEXT_BACKGROUND = 8;
376
+ var STICKY_CONTEXT_BACKGROUND_COLOR = 9;
377
+ var STICKY_CONTEXT_BACKGROUND_SIZE = 10;
378
+ var STICKY_CONTEXT_BACKGROUND_REPEAT = 11;
379
+
380
+ var AI_BACKGROUND_REPEAT_DEFAULT = 0;
381
+ var AI_BACKGROUND_REPEAT_NO = 1;
382
+ var AI_BACKGROUND_REPEAT_YES = 2;
383
+ var AI_BACKGROUND_REPEAT_HORIZONTALY = 3;
384
+ var AI_BACKGROUND_REPEAT_VERTICALLY = 4;
385
+ var AI_BACKGROUND_REPEAT_SPACE = 5;
386
+ var AI_BACKGROUND_REPEAT_ROUND = 6;
387
+
388
+ var AI_BACKGROUND_SIZE_DEFAULT = 0;
389
+ var AI_BACKGROUND_SIZE_COVER = 1;
390
+ var AI_BACKGROUND_SIZE_FIT = 2;
391
+ var AI_BACKGROUND_SIZE_FILL = 3;
392
 
393
  var sticky_context = STICKY_CONTEXT_INIT;
394
 
454
  var vertical_margin = spinner_vertical_margin.spinner ("value");
455
  var horizontal_margin = spinner_horizontal_margin.spinner ("value");
456
  var animation = $("select#animation option:selected").attr ('value');
457
+ var background = $("input#background").is(":checked") ? '1' : '0';
458
  } else {
459
  var horizontal = 0;
460
  var vertical = 0;
461
  var vertical_margin = 0;
462
  var horizontal_margin = 0;
463
  var animation = 0;
464
+ var background = 0;
465
  }
466
 
467
  var check = $("select#check option:selected").attr('value');
494
  'php': <?php echo $process_php ? '1' : '0'; ?>,
495
  'label': <?php echo $show_label ? '1' : '0'; ?>,
496
  'close': close_button,
497
+ 'background': background,
498
  'iframe': <?php echo $iframe ? '1' : '0'; ?>,
499
  'check': check,
500
  'count': count,
509
 
510
  function update_highlighting () {
511
  if ($('body').hasClass ("highlighted")) {
512
+ setTimeout (function() {$("#highlight-button").click ();$("#highlight-button").click ();}, 2);
 
513
  }
514
  }
515
 
580
  $("select#horizontal-position").val (settings.find ("select#horizontal-position-" + block + " option:selected").attr('value')).change();
581
  $("select#vertical-position").val (settings.find ("select#vertical-position-" + block + " option:selected").attr('value')).change();
582
  $("select#animation").val (settings.find ("select#animation-" + block + " option:selected").attr('value')).change();
583
+
584
+ if (settings.find ("input#background-" + block).is(":checked")) {
585
+ $("input#background").attr ('checked', '1').change();
586
+
587
+ // if (fixed_background) {
588
+ $("input#bkg-image").attr('value', settings.find ("#bkg-image-url-" + block).val ());
589
+ $("input#bkg-color").colorpicker ('setValue', settings.find ("#bkg-color-" + block).val ());
590
+ $("select#bkg-repeat").val (settings.find ("select#bkg-repeat-" + block + " option:selected").attr('value')).change();
591
+ $("select#bkg-size").val (settings.find ("select#bkg-size-" + block + " option:selected").attr('value')).change();
592
+ // }
593
+ } else $("input#background").removeAttr ('checked').change();
594
  }
595
 
596
  process_display_elements ();
599
 
600
  function apply_to_settings () {
601
  if (window.opener != null && !window.opener.closed) {
602
+
603
  var settings = $(window.opener.document).contents ();
604
 
605
  var selected_alignment = $("select#block-alignment option:selected");
638
 
639
  var new_animation = $("select#animation option:selected").attr('value');
640
  settings.find ("select#animation-" + block).val (new_animation).change ();
641
+
642
+ if ($("input#background").is(":checked")) {
643
+ settings.find ("input#background-" + block).attr ('checked', '1').change();
644
+
645
+ if (fixed_background || (new_horizontal_position == AI_STICK_HORIZONTAL_CENTER)) {
646
+ var new_color = $("input#bkg-color").attr('value');
647
+ settings.find ("#bkg-color-" + block).colorpicker ('setValue', new_color);
648
+
649
+ var new_repeat = $("select#bkg-repeat option:selected").attr('value');
650
+ settings.find ("select#bkg-repeat-" + block).val (new_repeat);
651
+
652
+ var new_size = $("select#bkg-size option:selected").attr('value');
653
+ settings.find ("select#bkg-size-" + block).val (new_size);
654
+ }
655
+ } else settings.find ("input#background-" + block).removeAttr ('checked').change();
656
  }
657
 
658
  window.opener.change_block_alignment (block);
725
 
726
  update_sticky_elements (STICKY_CONTEXT_SPINNER);
727
 
728
+ // set by process_display_elements ()
729
+ // var new_css = $('#css-' + AI_ALIGNMENT_STICKY).text ();
730
+ // wrapper.attr ('data-css', new_css);
731
+ // wrapper.attr ('style', new_css);
732
+
733
  if (remove_transform) wrapper.css ('transform', '');
734
  update_custom_css ();
735
  update_sticky_elements (STICKY_CONTEXT_SPINNER);
846
  $("#demo-box-no-wrapping").show ();
847
  }
848
 
849
+ $("#highlight-button").css ('visibility', 'visible');
850
+ $('#fixed-background-settings').hide ();
851
+
852
+ if (!$("input#background").is(":checked")) {
853
+ wrapper.addClass ('ai-close');
854
+ if (typeof ai_install_close_buttons == 'function') {
855
+ ai_install_close_buttons ();
856
+ }
857
+ $('#animation-settings').show ();
858
+ $('#sticky-positions').removeClass ('ai-background');
859
+ } else {
860
+ $('#animation-settings').hide ();
861
+ $('#sticky-positions').addClass ('ai-background');
862
+ if ($("select#horizontal-position option:selected").attr('value') == AI_STICK_HORIZONTAL_CENTER) {
863
+ $('#fixed-background-settings').show ();
864
+
865
+ if ($('body').hasClass ("highlighted")) {
866
+ $("#highlight-button").click ();
867
+ }
868
+ $("#highlight-button").css ('visibility', 'hidden');
869
+ }
870
+ }
871
+
872
  wrapper.attr ("data-css", style);
873
  wrapper.attr ("style", style);
874
  if (remove_transform) wrapper.css ('transform', '');
961
  }
962
  }
963
 
964
+ // function update_background_parameters () {
965
+ // if (fixed_background) {
966
+ // $("input#bkg-color").colorpicker ('setValue', wrapper.css ("background-color"));
967
+ // }
968
+ // }
969
+
970
  function update_close_button () {
971
  var close_button = wrapper.find ('.ai-close-button');
972
  if (wrapper.hasClass ('ai-close') && typeof close_button != 'undefined') {
973
 
974
  var alignment = $("select#block-alignment option:selected").attr ('value');
975
 
976
+ if (alignment != AI_ALIGNMENT_NO_WRAPPING && !$("input#background").is(":checked")) {
977
  $("#close-button-selection").show ();
978
 
979
  var selected_close_button = $("#close-button-0 option:selected").attr('value');
1000
  close_button.attr ('class', button_class);
1001
  } else {
1002
  $("#close-button-selection").hide ();
1003
+ close_button.addClass ('ai-close-hidden').removeClass ('ai-close-unprocessed');
1004
  }
1005
  }
1006
  }
1011
  const MAIN_CONTENT_ELEMENT = SETTINGS.find ('#main-content-element').val ().trim ();
1012
  const MAIN_CONTENT_FIXED_WIDTH = parseInt (MAIN_CONTENT_ELEMENT) == MAIN_CONTENT_ELEMENT;
1013
 
1014
+ var background = $("input#background").is(":checked");
1015
+
1016
  custom_css = custom_css.replace (/\s+/g, '');
1017
  var sticky_classes = [];
1018
 
1019
+ if (!MAIN_CONTENT_FIXED_WIDTH &&
1020
+ custom_css.indexOf ("position:fixed") != - 1 &&
1021
+ custom_css.indexOf ("z-index:") != - 1) {
1022
+ if (custom_css.indexOf ("display:none") != - 1) {
1023
+ if (custom_css.indexOf (";left:auto") != - 1) {
1024
+ sticky_classes.push ('ai-sticky-content');
1025
+ sticky_classes.push ('ai-sticky-left');
1026
+ } else
1027
+ if (custom_css.indexOf ("right:auto") != - 1) {
1028
+ sticky_classes.push ('ai-sticky-content');
1029
+ sticky_classes.push ('ai-sticky-right');
1030
+ };
1031
+
1032
+ if (custom_css.indexOf ("margin-bottom:auto") != - 1) {
1033
+ if (background)
1034
+ sticky_classes.push ('ai-sticky-background');
1035
+ else
1036
+ sticky_classes.push ('ai-sticky-content');
1037
+
1038
+ sticky_classes.push ('ai-sticky-scroll');
1039
+ };
1040
+ } else
1041
+
1042
+ if (background && custom_css.indexOf ("z-index:-") == - 1) {
1043
+ // if (custom_css.indexOf (";top:0;left:0") != - 1) sticky_classes.push ('ai-fixed-background'); // to avoid detecting ai-sticky-left
1044
+ // else
1045
+ if (custom_css.indexOf (";left:0") != - 1) {sticky_classes.push ('ai-sticky-background'); sticky_classes.push ('ai-sticky-left');}
1046
+ else if (custom_css.indexOf (";right:0") != - 1) {sticky_classes.push ('ai-sticky-background'); sticky_classes.push ('ai-sticky-right');}
1047
+ }
1048
  }
1049
 
1050
+ // console.log ('sticky_classes', sticky_classes);
1051
 
1052
  return sticky_classes;
1053
  }
1061
  var alignment = parseInt ($("select#block-alignment option:selected").attr ('value'));
1062
  var horizontal_position = parseInt ($("select#horizontal-position option:selected").attr('value'));
1063
  var vertical_position = parseInt ($("select#vertical-position option:selected").attr('value'));
1064
+ var background = $("input#background").is(":checked");
1065
+ var body_background = horizontal_position == AI_STICK_HORIZONTAL_CENTER && <?php echo $body_background ? 'true' : 'false'; ?>;
1066
+
1067
+ var background_css = '';
1068
 
1069
  if (alignment != AI_ALIGNMENT_CUSTOM_CSS) {
1070
  var selected_horizontal_position = $("select#horizontal-position option:selected");
1071
  var selected_vertical_position = $("select#vertical-position option:selected");
1072
 
1073
+ var custom_vertical_position_css = selected_vertical_position.data ('css-bkg');
1074
+
1075
+ if (background && typeof custom_vertical_position_css != 'undefined') {
1076
+ if (body_background) {
1077
+ var vertical_position_css = $("select#vertical-position").data ('css-body-bkg');
1078
+ } else var vertical_position_css = custom_vertical_position_css;
1079
+ } else {
1080
+ var custom_vertical_position_css = selected_vertical_position.data ('css-' + horizontal_position);
1081
+
1082
+ if (typeof custom_vertical_position_css != 'undefined') var vertical_position_css = custom_vertical_position_css; else
1083
+ var vertical_position_css = selected_vertical_position.data ('css');
1084
+ }
1085
 
1086
+ var custom_horizontal_position_css = selected_horizontal_position.data ('css-bkg');
 
1087
 
1088
+ if (background && typeof custom_horizontal_position_css != 'undefined') {
1089
+ var horizontal_position_css = custom_horizontal_position_css;
1090
+ } else {
1091
+ var custom_horizontal_position_css = selected_horizontal_position.data ('css-' + vertical_position);
1092
 
1093
+ if (typeof custom_horizontal_position_css != 'undefined') var horizontal_position_css = custom_horizontal_position_css; else
1094
+ var horizontal_position_css = selected_horizontal_position.data ('css');
1095
+ }
1096
 
1097
  var sticky_css = vertical_position_css + horizontal_position_css;
1098
+
1099
+ if (horizontal_position == AI_STICK_HORIZONTAL_CENTER && background) {
1100
+ var background_color = $("#bkg-color").attr('value');
1101
+ if (background_color != '') {
1102
+ sticky_css = sticky_css + ' background-color: ' + background_color + ';';
1103
+ }
1104
+
1105
+ var background_image = $("#bkg-image").attr('value');
1106
+ if (background_image != '') {
1107
+ sticky_css = sticky_css + ' background-image: url(' + background_image + ');';
1108
+ }
1109
+
1110
+ var background_size = parseInt ($("select#bkg-size option:selected").attr('value'));
1111
+ if (background_size != AI_BACKGROUND_SIZE_DEFAULT) {
1112
+ switch (background_size) {
1113
+ case AI_BACKGROUND_SIZE_COVER:
1114
+ sticky_css = sticky_css + ' background-size: cover;';
1115
+ break;
1116
+ case AI_BACKGROUND_SIZE_FIT:
1117
+ sticky_css = sticky_css + ' background-size: contain;';
1118
+ break;
1119
+ case AI_BACKGROUND_SIZE_FILL:
1120
+ sticky_css = sticky_css + ' background-size: 100% 100%;';
1121
+ break;
1122
+ }
1123
+ }
1124
+
1125
+ var background_repeat = parseInt ($("select#bkg-repeat option:selected").attr('value'));
1126
+ if (background_repeat != AI_BACKGROUND_REPEAT_DEFAULT) {
1127
+ switch (background_repeat) {
1128
+ case AI_BACKGROUND_REPEAT_NO:
1129
+ sticky_css = sticky_css + ' background-repeat: no-repeat;';
1130
+ break;
1131
+ case AI_BACKGROUND_REPEAT_YES:
1132
+ sticky_css = sticky_css + ' background-repeat: repeat;';
1133
+ break;
1134
+ case AI_BACKGROUND_REPEAT_HORIZONTALY:
1135
+ sticky_css = sticky_css + ' background-repeat: repeat-x;';
1136
+ break;
1137
+ case AI_BACKGROUND_REPEAT_VERTICALLY:
1138
+ sticky_css = sticky_css + ' background-repeat: repeat-y;';
1139
+ break;
1140
+ case AI_BACKGROUND_REPEAT_SPACE:
1141
+ sticky_css = sticky_css + ' background-repeat: space;';
1142
+ break;
1143
+ case AI_BACKGROUND_REPEAT_ROUND:
1144
+ sticky_css = sticky_css + ' background-repeat: round;';
1145
+ break;
1146
+ }
1147
+ }
1148
+ }
1149
+
1150
  } else {
1151
  var sticky_css = $('#css-' + AI_ALIGNMENT_STICKY + ' .ai-sticky-css').text ();
1152
  }
1155
  var horizontal_margin = spinner_horizontal_margin.spinner ("value");
1156
 
1157
  if (vertical_margin == null) vertical_margin = '';
1158
+ if (horizontal_margin == null || background) horizontal_margin = '';
1159
 
1160
  sticky_css = window.opener.update_sticky_margins (sticky_css, horizontal_margin, vertical_margin);
1161
 
1169
  }
1170
 
1171
  $('#css-' + AI_ALIGNMENT_STICKY + ' .ai-sticky-css').text (sticky_css);
1172
+ // if (context != STICKY_CONTEXT_CUSTOM_CSS) {
1173
+ // $("input#custom-css").val ($('#css-' + AI_ALIGNMENT_STICKY).text ());
1174
+ // }
1175
 
1176
+ // wrapper.removeClass ('ai-sticky-content').removeClass ('ai-sticky-left').removeClass ('ai-sticky-right').removeClass ('ai-sticky-scroll').removeClass ('ai-sticky-background').removeClass ('ai-fixed-background');
1177
+ wrapper.removeClass ('ai-sticky-content').removeClass ('ai-sticky-left').removeClass ('ai-sticky-right').removeClass ('ai-sticky-scroll').removeClass ('ai-sticky-background');
1178
 
1179
  switch (parseInt (alignment)) {
1180
  case AI_ALIGNMENT_STICKY:
1187
  wrapper.addClass ('ai-sticky-content');
1188
  wrapper.addClass ('ai-sticky-right');
1189
  }
1190
+
1191
+ if (background) {
1192
+ if (horizontal_position == AI_STICK_TO_THE_LEFT || horizontal_position == AI_STICK_TO_THE_CONTENT_LEFT) {
1193
+ wrapper.addClass ('ai-sticky-background');
1194
+ wrapper.addClass ('ai-sticky-left');
1195
+ } else
1196
+ if (horizontal_position == AI_STICK_TO_THE_RIGHT || horizontal_position == AI_STICK_TO_THE_CONTENT_RIGHT) {
1197
+ wrapper.addClass ('ai-sticky-background');
1198
+ wrapper.addClass ('ai-sticky-right');
1199
+ }
1200
+ // else
1201
+ // if (horizontal_position == AI_STICK_HORIZONTAL_CENTER) {
1202
+ // wrapper.addClass ('ai-fixed-background');
1203
+ // }
1204
+ }
1205
  }
1206
 
1207
  if (vertical_position == AI_SCROLL_WITH_THE_CONTENT) {
1208
+ if (background)
1209
+ wrapper.addClass ('ai-sticky-background');
1210
+ else
1211
+ wrapper.addClass ('ai-sticky-content');
1212
+
1213
  wrapper.addClass ('ai-sticky-scroll');
1214
  }
1215
+
1216
  break;
1217
  case AI_ALIGNMENT_CUSTOM_CSS:
1218
  var custom_css = $("#custom-css").val ().replace (/\s+/g, '');
1230
  break;
1231
  }
1232
 
1233
+ // console.log ('sticky classes', wrapper.attr ('class'));
1234
+
1235
  wrapper.removeClass ('ai-center-h').removeClass ('ai-center-v').removeClass ('ai-sticky-turn');
 
1236
 
1237
  var animation = parseInt ($("select#animation option:selected").attr ('value'));
1238
 
1239
  var data_aos = '';
1240
  var direction = '';
1241
 
1242
+ if (!background) {
1243
+ wrapper.attr ('data-aos', '');
1244
+
1245
+ switch (horizontal_position) {
1246
+ case AI_STICK_TO_THE_LEFT:
1247
+ case AI_STICK_TO_THE_CONTENT_LEFT:
1248
+ direction = 'right';
1249
+ break;
1250
+ case AI_STICK_HORIZONTAL_CENTER:
1251
+ wrapper.addClass ('ai-center-h');
1252
+ switch (vertical_position) {
1253
+ case AI_STICK_TO_THE_TOP:
1254
+ case AI_SCROLL_WITH_THE_CONTENT:
1255
+ direction = 'down';
1256
+ break;
1257
+ case AI_STICK_VERTICAL_CENTER:
1258
+ direction = 'left';
1259
+ switch (animation) {
1260
+ case AI_ANIMATION_SLIDE:
1261
+ case AI_ANIMATION_SLIDE_FADE:
1262
+ animation = AI_ANIMATION_FADE;
1263
+ break;
1264
+ case AI_ANIMATION_ZOOM_IN:
1265
+ case AI_ANIMATION_ZOOM_OUT:
1266
+ direction = 'up';
1267
+ break;
1268
+ }
1269
+ break;
1270
+ case AI_STICK_TO_THE_BOTTOM:
1271
+ direction = 'up';
1272
+ break;
1273
+ }
1274
+ break;
1275
+ case AI_STICK_TO_THE_CONTENT_RIGHT:
1276
+ case AI_STICK_TO_THE_RIGHT:
1277
+ direction = 'left';
1278
+ break;
1279
+ }
 
 
 
1280
 
1281
+ if (vertical_position == AI_STICK_VERTICAL_CENTER) wrapper.addClass ('ai-center-v');
1282
+
1283
+ // console.log ('direction', direction);
1284
+ // console.log ('animation', animation);
1285
+ // console.log ('horizontal_position', horizontal_position);
1286
+
1287
+ switch (horizontal_position) {
1288
+ case AI_STICK_TO_THE_LEFT:
1289
+ if (animation == AI_ANIMATION_TURN) direction = 'left';
1290
+ break;
1291
+ case AI_STICK_TO_THE_RIGHT:
1292
+ if (animation == AI_ANIMATION_TURN) direction = 'right';
1293
+ break;
1294
+ case AI_STICK_TO_THE_CONTENT_LEFT:
1295
+ case AI_STICK_TO_THE_CONTENT_RIGHT:
1296
+ if (animation == AI_ANIMATION_SLIDE) animation = AI_ANIMATION_SLIDE_FADE;
1297
+ break;
1298
+ }
1299
 
1300
+ switch (animation) {
1301
+ case AI_ANIMATION_FADE:
1302
+ data_aos = 'fade';
1303
+ break;
1304
+ case AI_ANIMATION_SLIDE:
1305
+ data_aos = 'slide-' + direction;
1306
+ break;
1307
+ case AI_ANIMATION_SLIDE_FADE:
1308
+ data_aos = 'fade-' + direction;
1309
+ break;
1310
+ case AI_ANIMATION_TURN:
1311
+ wrapper.addClass ('ai-sticky-turn');
1312
+ data_aos = 'flip-' + direction;
1313
+ break;
1314
+ case AI_ANIMATION_FLIP:
1315
+ if (direction == 'right') direction = 'left'; else
1316
+ if (direction == 'left') direction = 'right';
1317
+ data_aos = 'flip-' + direction;
1318
+ break;
1319
+ case AI_ANIMATION_ZOOM_IN:
1320
+ data_aos = 'zoom-in-' + direction;
1321
+ break;
1322
+ case AI_ANIMATION_ZOOM_OUT:
1323
+ data_aos = 'zoom-out-' + direction;
1324
+ break;
1325
+ }
1326
 
1327
+ remove_transform = false;
1328
+ if (data_aos != '') {
1329
+ wrapper.attr ('data-aos', data_aos);
1330
+ remove_transform = true;
1331
+ }
1332
  }
1333
  }
1334
 
1335
  function update_sticky_elements (context) {
1336
 
1337
+ console.log ('update_sticky_elements', context, 'sticky_context', sticky_context);
1338
 
1339
  if (sticky_context != context) return;
1340
 
1412
 
1413
  update_sticky_elements (STICKY_CONTEXT_HORIZONTAL_POSITION);
1414
  update_highlighting ();
1415
+ update_wrapper_size ();
1416
 
1417
  wrapper.css ('transition-property', 'none');
1418
  setTimeout (function() {wrapper.css ('transition-property', '');}, 10);
1435
 
1436
  update_sticky_elements (STICKY_CONTEXT_VERTICAL_POSITION);
1437
  update_highlighting ();
1438
+ update_wrapper_size ();
1439
 
1440
  wrapper.css ('transition-property', 'none');
1441
  setTimeout (function() {wrapper.css ('transition-property', '');}, 10);
1449
 
1450
  // console.log ('select#animation change');
1451
 
 
1452
  update_sticky_css (STICKY_CONTEXT_ANIMATION);
1453
  process_display_elements ();
1454
  update_close_button ();
1464
  if (sticky_context == STICKY_CONTEXT_ANIMATION) sticky_context = STICKY_CONTEXT_NONE;
1465
  });
1466
 
1467
+ $("input#background").change (function() {
1468
+ if (sticky_context == STICKY_CONTEXT_NONE) sticky_context = STICKY_CONTEXT_BACKGROUND;
1469
+
1470
+ // console.log ('input#background change');
1471
+
1472
+ update_sticky_css (STICKY_CONTEXT_BACKGROUND);
1473
+ process_display_elements ();
1474
+ update_close_button ();
1475
+
1476
+ // console.log ('input#background');
1477
+
1478
+ update_sticky_elements (STICKY_CONTEXT_BACKGROUND);
1479
+ update_highlighting ();
1480
+ update_wrapper_size ();
1481
+
1482
+ wrapper.css ('transition-property', 'none');
1483
+ setTimeout (function() {wrapper.css ('transition-property', '');}, 10);
1484
+
1485
+ if (sticky_context == STICKY_CONTEXT_BACKGROUND) sticky_context = STICKY_CONTEXT_NONE;
1486
+ });
1487
+
1488
+ $("input#bkg-color").colorpicker ({useAlpha: false, useHashPrefix: true, format: 'hex', fallbackColor: '#fffffe'}).on ('colorpickerChange colorpickerCreate colorpickerUpdate', function (e) {
1489
+ if (sticky_context == STICKY_CONTEXT_NONE) sticky_context = STICKY_CONTEXT_BACKGROUND_COLOR;
1490
+
1491
+ update_sticky_css (STICKY_CONTEXT_BACKGROUND_COLOR);
1492
+ process_display_elements ();
1493
+ update_sticky_elements (STICKY_CONTEXT_BACKGROUND_COLOR);
1494
+
1495
+ if (sticky_context == STICKY_CONTEXT_BACKGROUND_COLOR) sticky_context = STICKY_CONTEXT_NONE;
1496
+ }).on ('input', function() {
1497
+ if (sticky_context == STICKY_CONTEXT_NONE) sticky_context = STICKY_CONTEXT_BACKGROUND_COLOR;
1498
+
1499
+ update_sticky_css (STICKY_CONTEXT_BACKGROUND_COLOR);
1500
+ process_display_elements ();
1501
+ update_sticky_elements (STICKY_CONTEXT_BACKGROUND_COLOR);
1502
+
1503
+ if (sticky_context == STICKY_CONTEXT_BACKGROUND_COLOR) sticky_context = STICKY_CONTEXT_NONE;
1504
+ });
1505
+
1506
+ $("select#bkg-repeat").change (function() {
1507
+ if (sticky_context == STICKY_CONTEXT_NONE) sticky_context = STICKY_CONTEXT_BACKGROUND_REPEAT;
1508
+
1509
+ // console.log ('select#bkg-repeat change');
1510
+
1511
+ update_sticky_css (STICKY_CONTEXT_BACKGROUND_REPEAT);
1512
+ process_display_elements ();
1513
+ update_sticky_elements (STICKY_CONTEXT_BACKGROUND_REPEAT);
1514
+
1515
+ if (sticky_context == STICKY_CONTEXT_BACKGROUND_REPEAT) sticky_context = STICKY_CONTEXT_NONE;
1516
+ });
1517
+
1518
+ $("select#bkg-size").change (function() {
1519
+ if (sticky_context == STICKY_CONTEXT_NONE) sticky_context = STICKY_CONTEXT_BACKGROUND_SIZE;
1520
+
1521
+ // console.log ('select#bkg-size change');
1522
+
1523
+ update_sticky_css (STICKY_CONTEXT_BACKGROUND_SIZE);
1524
+ process_display_elements ();
1525
+ update_sticky_elements (STICKY_CONTEXT_BACKGROUND_SIZE);
1526
+
1527
+ if (sticky_context == STICKY_CONTEXT_BACKGROUND_SIZE) sticky_context = STICKY_CONTEXT_NONE;
1528
+ });
1529
+
1530
  $("#animate-button").button ({
1531
  }).click (function () {
1532
 
1643
  }).click (function () {
1644
  $('body').toggleClass ("highlighted");
1645
 
1646
+ var wrapper_visible = wrapper.is (':visible');
1647
+
1648
+ if (!$('body').hasClass ("highlighted") || !wrapper_visible) {
1649
  $(".highlighting").remove ();
1650
  $('.ai-debug-ad-info').remove();
1651
  return;
1754
  code_blocks.each (function () {
1755
  var element_tag = $(this).prop("tagName").toLowerCase();
1756
 
1757
+ // Don't highlight attributes
1758
+ // if (element_tag == 'span' && $(this).hasClass ('ai-close-button')) return true;
1759
+ if (element_tag == 'div' && $(this).hasClass ('ai-attributes')) return true;
1760
 
1761
  if (element_tag == 'a') {
1762
  var a_children = $(this).children ();
1766
  } else filtered_code_blocks = filtered_code_blocks.add ($(this));
1767
  });
1768
 
1769
+ // console.log ('filtered_code_blocks', filtered_code_blocks);
1770
+
1771
  filtered_code_blocks.each (function () {
1772
  var element_tag = $(this).prop("tagName");
1773
  if (typeof element_tag != 'undefined') element_tag = element_tag.toLowerCase();
1778
 
1779
  var element_display = $(this).css ('display');
1780
  var element_left = element_offset.left;
1781
+ var element_right = element_offset.right;
1782
  var element_top = element_offset.top;
1783
  var element_outer_width = $(this).outerWidth ();
1784
  var element_outer_height = $(this).outerHeight ();
1785
 
1786
+ var background = $("input#background").is(":checked");
1787
+
1788
  if (debug) {
1789
  console.log ("");
1790
  console.log ("element " + code_index + ": " + element_tag);
1806
  overlay_background_div_position = 'fixed';
1807
  fixed_offset_top = $(document).scrollTop();
1808
  fixed_offset_left = $(document).scrollLeft();
1809
+
1810
+ var set_element_right = false;
1811
+ if (background) {
1812
+ element_outer_width = wrapper.outerWidth ();
1813
+ element_outer_height = wrapper.outerHeight ();
1814
+ }
1815
  }
1816
 
1817
  var new_id = "code-" + code_index;
1822
  offset ({top: element_top - fixed_offset_top, left: element_left - fixed_offset_left}).
1823
  attr ("id", new_id).
1824
  addClass ("highlighting"));
1825
+ if (background && wrapper.css ('display') == 'flex' && wrapper.css ('align-items') == 'flex-end') {
1826
+ $('#'+new_id).css ({left: '', right: wrapper.css ('right')});
1827
+ }
1828
  last_code_div = new_id;
1829
 
1830
  var new_bkg_id = "code-background-" + code_index;
1835
  offset ({top: element_top - fixed_offset_top, left: element_left - fixed_offset_left}).
1836
  attr ("id", new_bkg_id).
1837
  addClass ("highlighting"));
1838
+ if (background && wrapper.css ('display') == 'flex' && wrapper.css ('align-items') == 'flex-end') {
1839
+ $('#'+new_bkg_id).css ({left: '', right: wrapper.css ('right')});
1840
+ }
1841
  last_bkg_div = new_bkg_id;
1842
  }
1843
  });
1846
 
1847
  $("#use-button").button ({
1848
  }).click (function () {
1849
+ $('#ai-loading').show ();
1850
+ setTimeout (function() {apply_to_settings (); window.close();}, 1);
1851
  });
1852
 
1853
  $("#reset-button").button ({
1854
  }).click (function () {
1855
+ $('#ai-loading').show ();
1856
+ setTimeout (function() {load_from_settings (); $('#ai-loading').hide ();}, 1);
1857
+
1858
  });
1859
 
1860
  $("#cancel-button").button ({
1929
  $(this).attr ('title', titles [index]);
1930
  });
1931
 
1932
+
1933
  var titles = new Array();
1934
  $("select#vertical-position").imagepicker({hide_select: false}).find ('option').each (function (index) {
1935
  titles.push ($(this).data ('title'));
2020
  padding: 20px 10px;
2021
  border: 1px solid #eee;
2022
  border-radius: 5px;
2023
+ background: #fff;
2024
  }
2025
 
2026
  .responsive-table td {
2224
  .ai-info-1 {background: #000; color: #fff;}
2225
  .ai-info-2 {background: #fff; color: #000;}
2226
 
2227
+ input {
2228
+ /* cursor: pointer;*/
2229
+ border-radius: 4px;
2230
+ padding: 0 4px;
2231
+ }
2232
+
2233
  </style>
2234
  <?php echo $head_code; ?>
2235
  </head>
2288
  </div>
2289
 
2290
  <div style="float: right; width: 90px; margin-left: 20px;">
2291
+ <button id="highlight-button" type="button" style="margin: 0 0 10px 0; font-size: 12px; width: 90px; height: 35px; float: right;<?php if ($fixed_background) echo " visibility: hidden;"; ?>" title="<?php _e ('Highlight inserted code', 'ad-inserter'); ?>" ><?php _e ('Highlight', 'ad-inserter'); ?></button>
2292
  <?php if (!$read_only) : ?>
2293
  <button id="use-button" type="button" style="margin: 0 0 10px 0; font-size: 12px; width: 90px; height: 35px; float: right;" title="<?php _e ('Use current settings', 'ad-inserter'); ?>" ><?php _e ('Use', 'ad-inserter'); ?></button>
2294
  <button id="reset-button" type="button" style="margin: 0 0 10px 0; font-size: 12px; width: 90px; height: 35px; float: right;" title="<?php _e ('Reset to block settings', 'ad-inserter'); ?>" ><?php _e ('Reset', 'ad-inserter'); ?></button>
2309
  <h2><?php _e ('AdSense ad unit', 'ad-inserter'); ?></h2>
2310
  <?php endif; ?>
2311
  <h3 id="block-name" style="text-align: left;"><?php echo $block_name; ?></h3>
2312
+
2313
+ <img id="ai-loading" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>loading.gif" style="width: 24px; height: 24px; vertical-align: middle; margin-right: 10px; display: none;" />
2314
  </div>
2315
 
2316
  <?php if (!$read_only) : ?>
2424
  <div id="alignment-style" style="margin: 4px 0; min-height: 74px;"></div>
2425
  </div>
2426
 
2427
+ <div id="fixed-background-settings" style="float: right;<?php if (!$fixed_background) echo " display: none;"; ?>">
2428
+ <input id="bkg-image" style="display: none;" type="text" size="12" maxlength="200" value="<?php echo $background_color; ?>" />
2429
+ <table>
2430
+ <tbody>
2431
+ <tr>
2432
+ <td>
2433
+ <?php _e ('Background color', 'ad-inserter'); ?>
2434
+ </td>
2435
+ <td>
2436
+ <input id="bkg-color" style="font-family: monospace;" title="<?php _e ("Color to be used for the background", 'ad-inserter'); ?>" type="text" size="7" maxlength="7" value="<?php echo $background_color; ?>" />
2437
+ </td>
2438
+ </tr>
2439
+ <tr>
2440
+ <td>
2441
+ <?php _e ('Image size', 'ad-inserter'); ?>
2442
+ </td>
2443
+ <td>
2444
+ <select id="bkg-size">
2445
+ <option value="<?php echo AI_BACKGROUND_SIZE_DEFAULT; ?>" <?php echo ($background_size == AI_BACKGROUND_SIZE_DEFAULT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DEFAULT_BKG_SIZE; ?></option>
2446
+ <option value="<?php echo AI_BACKGROUND_SIZE_COVER; ?>" <?php echo ($background_size == AI_BACKGROUND_SIZE_COVER) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_COVER; ?></option>
2447
+ <option value="<?php echo AI_BACKGROUND_SIZE_FIT; ?>" <?php echo ($background_size == AI_BACKGROUND_SIZE_FIT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_FIT_BKG_SIZE; ?></option>
2448
+ <option value="<?php echo AI_BACKGROUND_SIZE_FILL; ?>" <?php echo ($background_size == AI_BACKGROUND_SIZE_FILL) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_FILL; ?></option>
2449
+ </select>
2450
+ </td>
2451
+ </tr>
2452
+ <tr>
2453
+ <td>
2454
+ <?php _e ('Repeat image', 'ad-inserter'); ?>
2455
+ </td>
2456
+ <td>
2457
+ <select id="bkg-repeat">
2458
+ <option value="<?php echo AI_BACKGROUND_REPEAT_DEFAULT; ?>" <?php echo ($background_repeat == AI_BACKGROUND_REPEAT_DEFAULT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DEFAULT_BKG_REPEAT; ?></option>
2459
+ <option value="<?php echo AI_BACKGROUND_REPEAT_NO; ?>" <?php echo ($background_repeat == AI_BACKGROUND_REPEAT_NO) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_NO; ?></option>
2460
+ <option value="<?php echo AI_BACKGROUND_REPEAT_YES; ?>" <?php echo ($background_repeat == AI_BACKGROUND_REPEAT_YES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_YES; ?></option>
2461
+ <option value="<?php echo AI_BACKGROUND_REPEAT_HORIZONTALY; ?>" <?php echo ($background_repeat == AI_BACKGROUND_REPEAT_HORIZONTALY) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_HORIZONTALY; ?></option>
2462
+ <option value="<?php echo AI_BACKGROUND_REPEAT_VERTICALLY; ?>" <?php echo ($background_repeat == AI_BACKGROUND_REPEAT_VERTICALLY) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_VERTICALLY; ?></option>
2463
+ <option value="<?php echo AI_BACKGROUND_REPEAT_SPACE; ?>" <?php echo ($background_repeat == AI_BACKGROUND_REPEAT_SPACE) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_SPACE; ?></option>
2464
+ <option value="<?php echo AI_BACKGROUND_REPEAT_ROUND; ?>" <?php echo ($background_repeat == AI_BACKGROUND_REPEAT_ROUND) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_ROUND; ?></option>
2465
+ </select>
2466
+ </td>
2467
+ </tr>
2468
+ </tbody>
2469
+ </table>
2470
+ </div>
2471
+
2472
+
2473
+ <div id="close-button-selection" style="float: right; text-align: right;<?php if ($fixed_background) echo "; display: none;"; ?>">
2474
  <?php if (function_exists ('ai_close_button_select')) ai_close_button_select (0, $close_button, $close_button, 'close-button-0'); ?>
2475
  <div id="close-buttons" style="margin: 4px 0; min-height: 74px;"></div>
2476
  </div>
2477
+
2478
  <div style="clear: both;"></div>
2479
 
2480
  </div>
2481
 
2482
+ <div id="sticky-positions" style="margin: 8px 0;<?php if ($fixed_background) echo " display: none;"; ?>">
2483
  <div style="float: left;">
2484
  <div style="margin: 4px 0;">
2485
  <?php _e ('Horizontal position', 'ad-inserter'); ?>
2488
  data-img-src="<?php echo plugins_url ('css/images/blank.png', AD_INSERTER_FILE); ?>"
2489
  data-img-class="automatic-insertion preview im-sticky-left"
2490
  data-css="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_LEFT; ?>"
2491
+ data-css-bkg="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_LEFT_BKG; ?>"
2492
  data-title="<?php echo AI_TEXT_STICK_TO_THE_LEFT; ?>"
2493
  value="<?php echo AI_STICK_TO_THE_LEFT; ?>"
2494
  <?php echo ($horizontal_position == AI_STICK_TO_THE_LEFT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_STICK_TO_THE_LEFT; ?></option>
2496
  data-img-src="<?php echo plugins_url ('css/images/blank.png', AD_INSERTER_FILE); ?>"
2497
  data-img-class="automatic-insertion preview im-sticky-content-left"
2498
  data-css="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_LEFT; ?>"
2499
+ data-css-bkg="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_LEFT_BKG; ?>"
2500
  data-title="<?php echo AI_TEXT_STICK_TO_THE_CONTENT_LEFT; ?>"
2501
  value="<?php echo AI_STICK_TO_THE_CONTENT_LEFT; ?>"
2502
  <?php echo ($horizontal_position == AI_STICK_TO_THE_CONTENT_LEFT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_STICK_TO_THE_CONTENT_LEFT; ?></option>
2503
+ <option id="ai-stick-horizontal-center"
2504
  data-img-src="<?php echo plugins_url ('css/images/blank.png', AD_INSERTER_FILE); ?>"
2505
  data-img-class="automatic-insertion preview im-sticky-center-horizontal"
2506
  data-css="<?php echo AI_ALIGNMENT_CSS_STICK_CENTER_HORIZONTAL; ?>"
2507
  data-css-<?php echo AI_STICK_VERTICAL_CENTER; ?>="<?php echo AI_ALIGNMENT_CSS_STICK_CENTER_HORIZONTAL_V; ?>"
2508
+ data-css-bkg="<?php echo AI_ALIGNMENT_CSS_STICK_CENTER_HORIZONTAL_BKG; ?>"
2509
  data-title="<?php echo AI_TEXT_CENTER; ?>"
2510
  value="<?php echo AI_STICK_HORIZONTAL_CENTER; ?>"
2511
  <?php echo ($horizontal_position == AI_STICK_HORIZONTAL_CENTER) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_CENTER; ?></option>
2513
  data-img-src="<?php echo plugins_url ('css/images/blank.png', AD_INSERTER_FILE); ?>"
2514
  data-img-class="automatic-insertion preview im-sticky-content-right"
2515
  data-css="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_RIGHT; ?>"
2516
+ data-css-bkg="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_CONTENT_RIGHT_BKG; ?>"
2517
  data-title="<?php echo AI_TEXT_STICK_TO_THE_CONTENT_RIGHT; ?>"
2518
  value="<?php echo AI_STICK_TO_THE_CONTENT_RIGHT; ?>"
2519
  <?php echo ($horizontal_position == AI_STICK_TO_THE_CONTENT_RIGHT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_STICK_TO_THE_CONTENT_RIGHT; ?></option>
2522
  data-img-class="automatic-insertion preview im-sticky-right"
2523
  data-css="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_RIGHT; ?>"
2524
  data-css-<?php echo AI_SCROLL_WITH_THE_CONTENT; ?>="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_RIGHT_SCROLL; ?>"
2525
+ data-css-bkg="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_RIGHT_BKG; ?>"
2526
  data-title="<?php echo AI_TEXT_STICK_TO_THE_RIGHT; ?>"
2527
  value="<?php echo AI_STICK_TO_THE_RIGHT; ?>"
2528
  <?php echo ($horizontal_position == AI_STICK_TO_THE_RIGHT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_STICK_TO_THE_RIGHT; ?></option>
2543
  <div style="float: right;">
2544
  <div style="margin: 4px 0;">
2545
  <?php _e ('Vertical position', 'ad-inserter'); ?>
2546
+ <select id="vertical-position" data-css-body-bkg="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_TOP; ?>">
2547
  <option
2548
  data-img-src="<?php echo plugins_url ('css/images/blank.png', AD_INSERTER_FILE); ?>"
2549
  data-img-class="automatic-insertion preview im-sticky-top"
2550
  data-css="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_TOP_OFFSET; ?>"
2551
  data-css-<?php echo AI_STICK_HORIZONTAL_CENTER; ?>="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_TOP; ?>"
2552
+ data-css-bkg="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_TOP; ?>"
2553
  data-title="<?php echo AI_TEXT_STICK_TO_THE_TOP; ?>"
2554
  value="<?php echo AI_STICK_TO_THE_TOP; ?>"
2555
  <?php echo ($vertical_position == AI_STICK_TO_THE_TOP) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_STICK_TO_THE_TOP; ?></option>
2564
  data-img-src="<?php echo plugins_url ('css/images/blank.png', AD_INSERTER_FILE); ?>"
2565
  data-img-class="automatic-insertion preview im-sticky-scroll"
2566
  data-css="<?php echo AI_ALIGNMENT_CSS_SCROLL_WITH_THE_CONTENT; ?>"
2567
+ data-css-bkg="<?php echo AI_ALIGNMENT_CSS_SCROLL_WITH_THE_CONTENT_BKG; ?>"
2568
  data-title="<?php echo AI_TEXT_SCROLL_WITH_THE_CONTENT; ?>"
2569
  value="<?php echo AI_SCROLL_WITH_THE_CONTENT; ?>"
2570
  <?php echo ($vertical_position == AI_SCROLL_WITH_THE_CONTENT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_SCROLL_WITH_THE_CONTENT; ?></option>
2573
  data-img-class="automatic-insertion preview im-sticky-bottom"
2574
  data-css="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_BOTTOM_OFFSET; ?>"
2575
  data-css-<?php echo AI_STICK_HORIZONTAL_CENTER; ?>="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_BOTTOM; ?>"
2576
+ data-css-bkg="<?php echo AI_ALIGNMENT_CSS_STICK_TO_THE_BOTTOM; ?>"
2577
  data-title="<?php echo AI_TEXT_STICK_TO_THE_BOTTOM; ?>"
2578
  value="<?php echo AI_STICK_TO_THE_BOTTOM; ?>"
2579
  <?php echo ($vertical_position == AI_STICK_TO_THE_BOTTOM) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_STICK_TO_THE_BOTTOM; ?></option>
2594
  <div style="clear: both;"></div>
2595
  </div>
2596
 
2597
+ <div style="margin: 8px 0; min-height: 30px;<?php if ($fixed_background) echo " display: none;"; ?>">
2598
+ <span id="animation-settings">
2599
+ <span style="vertical-align: middle;">
2600
+ <?php _e ('Animation', 'ad-inserter'); ?>
2601
+ <select id="animation">
2602
+ <option value="<?php echo AI_ANIMATION_NONE; ?>" <?php echo ($animation == AI_ANIMATION_NONE) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_NONE; ?></option>
2603
+ <option value="<?php echo AI_ANIMATION_FADE; ?>" <?php echo ($animation == AI_ANIMATION_FADE) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_FADE; ?></option>
2604
+ <option value="<?php echo AI_ANIMATION_SLIDE; ?>" <?php echo ($animation == AI_ANIMATION_SLIDE) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_SLIDE; ?></option>
2605
+ <option value="<?php echo AI_ANIMATION_SLIDE_FADE; ?>" <?php echo ($animation == AI_ANIMATION_SLIDE_FADE) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_SLIDE_FADE; ?></option>
2606
+ <option value="<?php echo AI_ANIMATION_TURN; ?>" <?php echo ($animation == AI_ANIMATION_TURN) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_TURN; ?></option>
2607
+ <option value="<?php echo AI_ANIMATION_FLIP; ?>" <?php echo ($animation == AI_ANIMATION_FLIP) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_FLIP; ?></option>
2608
+ <option value="<?php echo AI_ANIMATION_ZOOM_IN; ?>" <?php echo ($animation == AI_ANIMATION_ZOOM_IN) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_ZOOM_IN; ?></option>
2609
+ <option value="<?php echo AI_ANIMATION_ZOOM_OUT; ?>" <?php echo ($animation == AI_ANIMATION_ZOOM_OUT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_ZOOM_OUT; ?></option>
2610
+ </select>
2611
+ </span>
2612
+
2613
+ <button id="animate-button" type="button" style="margin: 0 0 0 10px; height: 30px; font-size: 12px;"><?php _e ('Animate', 'ad-inserter'); ?></button>
2614
  </span>
 
 
2615
 
2616
+ <span style="float: right; margin-top: 2px;">
2617
+ <input id="background" type="checkbox" <?php if ($background) echo 'checked '; ?> />
2618
+ <label for="background"><?php _e ('Background', 'ad-inserter'); ?></label>
2619
+ </span>
2620
+ </div>
2621
 
2622
  <?php else : ?>
2623
 
2659
  <span id="css-label" style="vertical-align: middle; margin: 4px 0 0 0 0; width: 36px; font-size: 14px; font-weight: bold; display: none;">CSS</span>
2660
  </td>
2661
  <td style="width: 100%; height: 32px; padding:0;">
2662
+ <input id="custom-css" style="width: 100%; display: inline-block; padding: 4px 0 0 4px; border-radius: 4px; display: none; font-size: 12px; font-family: monospace, Courier, 'Courier New'; font-weight: bold;" type="text" value="<?php echo $custom_css_code; ?>" size="70" maxlength="500" title="Custom CSS code for wrapping div" />
2663
  <span style="width: 100%; display: inline-block; padding: 5px 0 0 5px; font-family: monospace, Courier, 'Courier New'; font-size: 12px; font-weight: bold; cursor: pointer; white-space: normal;">
2664
  <span id="css-no-wrapping" style="vertical-align: middle; display: none;"></span>
2665
  <span id="css-<?php echo AI_ALIGNMENT_DEFAULT; ?>" class="css-code" style="vertical-align: middle; display: none;" title="CSS code for wrapping div, click to edit"><?php echo $obj->alignment_style (AI_ALIGNMENT_DEFAULT); ?></span>
js/ad-inserter.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version = "2.6.7";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
@@ -84,6 +84,12 @@ var AI_HTML_INSERTION_CLIENT_SIDE = 0;
84
  //var AI_HTML_INSERTION_CLIENT_SIDE_DOM_READY = 1;
85
  var AI_HTML_INSERTION_SEREVR_SIDE = 2;
86
 
 
 
 
 
 
 
87
  var AI_STICK_TO_THE_TOP = 0;
88
  var AI_STICK_VERTICAL_CENTER = 1;
89
  var AI_SCROLL_WITH_THE_CONTENT = 2;
@@ -91,6 +97,18 @@ var AI_STICK_TO_THE_BOTTOM = 3;
91
 
92
  var AI_ANIMATION_NONE = 0;
93
 
 
 
 
 
 
 
 
 
 
 
 
 
94
 
95
  var before_update_selection_from_list = null;
96
 
@@ -720,10 +738,22 @@ function is_sticky (custom_css) {
720
  return false;
721
  }
722
 
 
 
 
 
 
 
 
 
723
  function change_block_alignment (block) {
724
  jQuery ("select#block-alignment-" + block).change ();
725
  jQuery ("select#horizontal-position-" + block).change ();
726
  jQuery ("select#vertical-position-" + block).change ();
 
 
 
 
727
  }
728
 
729
  function change_banner_image (block) {
@@ -751,7 +781,6 @@ function ai_css_value_px (css, property) {
751
 
752
  function ai_change_css (css, property, value) {
753
  var replaced = false;
754
-
755
  styles = css.split (';');
756
  styles.forEach (function (style, index) {
757
  org_style = style;
@@ -782,9 +811,8 @@ function ai_change_css (css, property, value) {
782
  }
783
 
784
  function update_sticky_margins (style, horizontal_margin, vertical_margin) {
785
-
786
  if (vertical_margin !== '') {
787
- if (ai_css_value_px (style, 'top')) style = ai_change_css (style, 'top', vertical_margin);
788
  if (ai_css_value_px (style, 'bottom')) style = ai_change_css (style, 'bottom', vertical_margin);
789
  }
790
 
@@ -1636,6 +1664,7 @@ jQuery(document).ready (function($) {
1636
 
1637
  $("#sticky-position-"+block).hide();
1638
  $("#sticky-animation-"+block).hide();
 
1639
 
1640
  $('#tracking-wrapping-warning-' + block).hide ();
1641
 
@@ -1663,6 +1692,11 @@ jQuery(document).ready (function($) {
1663
  if (is_sticky ($("#custom-css-"+block).val ())) {
1664
  $("#sticky-position-"+block).show();
1665
  $("#sticky-animation-"+block).show();
 
 
 
 
 
1666
  }
1667
  } else
1668
  if (alignment == AI_ALIGNMENT_LEFT) {
@@ -1696,6 +1730,12 @@ jQuery(document).ready (function($) {
1696
  $("#icons-css-code-" + block).show();
1697
  $("#sticky-position-"+block).show();
1698
  $("#sticky-animation-"+block).show();
 
 
 
 
 
 
1699
  $("#css-sticky-"+block).css('display', 'table-cell');
1700
  configure_selection_icons (block);
1701
  }
@@ -2338,6 +2378,44 @@ jQuery(document).ready (function($) {
2338
  $("select#horizontal-position-"+tab).change (function() {
2339
  var block = $(this).attr('id').replace ("horizontal-position-", "");
2340
  configure_sticky_css (block);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2341
  });
2342
 
2343
 
@@ -2464,6 +2542,7 @@ jQuery(document).ready (function($) {
2464
  // $("#show-css-button-"+block+" span").text (ai_admin.show);
2465
  // $("#show-css-button-"+block).removeClass ('light-blue');
2466
  $("#sticky-animation-"+block).hide ();
 
2467
  }
2468
  });
2469
 
@@ -2831,6 +2910,13 @@ jQuery(document).ready (function($) {
2831
 
2832
  var close_button = $("#close-button-"+block+" option:selected").attr('value');
2833
 
 
 
 
 
 
 
 
2834
  if (!sticky) {
2835
  var window_top = (screen.height / 2) - (820 / 2);
2836
  var window_left = 100;
@@ -2862,6 +2948,12 @@ jQuery(document).ready (function($) {
2862
  'php': php,
2863
  'label': label,
2864
  'close': close_button,
 
 
 
 
 
 
2865
  'iframe': iframe
2866
  };
2867
  open_popup_window_post (ajaxurl, 'width='+window_width+',height='+window_height+',top='+window_top+',left='+window_left+',resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no', 'preview', param);
@@ -2871,7 +2963,8 @@ jQuery(document).ready (function($) {
2871
  var block = $(this).attr('id').tabIndex ();
2872
  var animation = $(this).find ("option:selected").attr('value');
2873
  var animation_parameters = $(this).closest ('.sticky-animation').find ('.animation-parameters')
2874
- if (animation == AI_ANIMATION_NONE) {
 
2875
  animation_parameters.hide ();
2876
  } else {
2877
  animation_parameters.show ();
@@ -3320,7 +3413,7 @@ jQuery(document).ready (function($) {
3320
  option_tabs.tabs ("option", "active", 0);
3321
 
3322
  $('input[name=ai_save]').css ('color', '#f00');
3323
- $('.ai-rotation-warning').show ();
3324
 
3325
  setTimeout (function() {import_rotation_code (block);}, 5);
3326
  } else {
@@ -3431,6 +3524,80 @@ jQuery(document).ready (function($) {
3431
  };
3432
  open_popup_window_post (home_url, 'width='+window_width+',height='+window_height+',top='+window_top+',left='+window_left+',resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no', 'ai-selector', param);
3433
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3434
  }
3435
 
3436
  function configure_sticky_css (block) {
@@ -3440,17 +3607,90 @@ jQuery(document).ready (function($) {
3440
  var vertical_position = $("select#vertical-position-"+block+" option:selected").attr('value');
3441
  var selected_vertical_position = $("select#vertical-position-"+block+" option:selected");
3442
 
3443
- var custom_vertical_position_css = selected_vertical_position.data ('css-' + horizontal_position);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3444
 
3445
- if (typeof custom_vertical_position_css != 'undefined') var vertical_position_css = custom_vertical_position_css; else
3446
- var vertical_position_css = selected_vertical_position.data ('css');
 
 
3447
 
3448
- var custom_horizontal_position_css = selected_horizontal_position.data ('css-' + vertical_position);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3449
 
3450
- if (typeof custom_horizontal_position_css != 'undefined') var horizontal_position_css = custom_horizontal_position_css; else
3451
- var horizontal_position_css = selected_horizontal_position.data ('css');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3452
 
3453
- $('#css-sticky-' + block + ' .ai-sticky-css').text (vertical_position_css + horizontal_position_css);
3454
 
3455
  check_insertion (block);
3456
  }
@@ -3460,8 +3700,10 @@ jQuery(document).ready (function($) {
3460
  var automatic_insertion = $("select#insertion-type-"+block+" option:selected").attr('value');
3461
  var alignment_style = $("select#block-alignment-"+block+" option:selected").attr('value');
3462
  var vertical_position = $("select#vertical-position-"+block+" option:selected").attr('value');
 
 
3463
 
3464
- if (alignment_style == AI_ALIGNMENT_STICKY && vertical_position == AI_SCROLL_WITH_THE_CONTENT && automatic_insertion != AI_ABOVE_HEADER && automatic_insertion != AI_DISABLED) {
3465
  $('#sticky-scroll-warning-' + block).show ();
3466
  }
3467
  }
@@ -3670,7 +3912,7 @@ jQuery(document).ready (function($) {
3670
  $("#rotation-"+block).next ("label").find ('.checkbox-icon').removeClass("active");
3671
 
3672
  $('input[name=ai_save]').css ('color', '#555');
3673
- $('.ai-rotation-warning').hide ();
3674
  });
3675
  }
3676
 
@@ -5295,6 +5537,35 @@ jQuery(document).ready (function($) {
5295
  $('.header button').button().show ();
5296
 
5297
  $("#ai-form").submit (function (event) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5298
  for (var tab = start; tab <= end; tab ++) {
5299
  remove_default_values (tab);
5300
  encode_code (tab);
1
+ var javascript_version = "2.6.8";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
84
  //var AI_HTML_INSERTION_CLIENT_SIDE_DOM_READY = 1;
85
  var AI_HTML_INSERTION_SEREVR_SIDE = 2;
86
 
87
+ var AI_STICK_TO_THE_LEFT = 0;
88
+ var AI_STICK_TO_THE_CONTENT_LEFT = 1;
89
+ var AI_STICK_HORIZONTAL_CENTER = 2;
90
+ var AI_STICK_TO_THE_CONTENT_RIGHT = 3;
91
+ var AI_STICK_TO_THE_RIGHT = 4;
92
+
93
  var AI_STICK_TO_THE_TOP = 0;
94
  var AI_STICK_VERTICAL_CENTER = 1;
95
  var AI_SCROLL_WITH_THE_CONTENT = 2;
97
 
98
  var AI_ANIMATION_NONE = 0;
99
 
100
+ var AI_BACKGROUND_REPEAT_DEFAULT = 0;
101
+ var AI_BACKGROUND_REPEAT_NO = 1;
102
+ var AI_BACKGROUND_REPEAT_YES = 2;
103
+ var AI_BACKGROUND_REPEAT_HORIZONTALY = 3;
104
+ var AI_BACKGROUND_REPEAT_VERTICALLY = 4;
105
+ var AI_BACKGROUND_REPEAT_SPACE = 5;
106
+ var AI_BACKGROUND_REPEAT_ROUND = 6;
107
+
108
+ var AI_BACKGROUND_SIZE_DEFAULT = 0;
109
+ var AI_BACKGROUND_SIZE_COVER = 1;
110
+ var AI_BACKGROUND_SIZE_CONTAIN = 2;
111
+ var AI_BACKGROUND_SIZE_FILL = 3;
112
 
113
  var before_update_selection_from_list = null;
114
 
738
  return false;
739
  }
740
 
741
+ function is_background (custom_css) {
742
+ custom_css = custom_css.replace (/\s+/g, '');
743
+
744
+ if (custom_css.indexOf ("top:0px;left:0px;width:100%;height:100%;") != - 1) return true;
745
+
746
+ return false;
747
+ }
748
+
749
  function change_block_alignment (block) {
750
  jQuery ("select#block-alignment-" + block).change ();
751
  jQuery ("select#horizontal-position-" + block).change ();
752
  jQuery ("select#vertical-position-" + block).change ();
753
+ jQuery ("input#background-" + block).change ();
754
+ jQuery ("input#bkg-color-" + block).colorpicker ('setValue', jQuery ("input#bkg-color-" + block).attr ('value'));
755
+ jQuery ("select#bkg-repeat-" + block).change ();
756
+ jQuery ("select#bkg-size-" + block).change ();
757
  }
758
 
759
  function change_banner_image (block) {
781
 
782
  function ai_change_css (css, property, value) {
783
  var replaced = false;
 
784
  styles = css.split (';');
785
  styles.forEach (function (style, index) {
786
  org_style = style;
811
  }
812
 
813
  function update_sticky_margins (style, horizontal_margin, vertical_margin) {
 
814
  if (vertical_margin !== '') {
815
+ if (ai_css_value_px (style, 'top')) style = ai_change_css (style, 'top', vertical_margin); else
816
  if (ai_css_value_px (style, 'bottom')) style = ai_change_css (style, 'bottom', vertical_margin);
817
  }
818
 
1664
 
1665
  $("#sticky-position-"+block).hide();
1666
  $("#sticky-animation-"+block).hide();
1667
+ $("#sticky-background-"+block).find ('.bkg-parameters').hide();
1668
 
1669
  $('#tracking-wrapping-warning-' + block).hide ();
1670
 
1692
  if (is_sticky ($("#custom-css-"+block).val ())) {
1693
  $("#sticky-position-"+block).show();
1694
  $("#sticky-animation-"+block).show();
1695
+ $("select#animation-"+block).change ();
1696
+
1697
+ if (is_background ($("#custom-css-"+block).val ()) && $("input#background-"+block).is(":checked")) {
1698
+ $("#sticky-background-"+block).find ('.bkg-parameters').show();
1699
+ }
1700
  }
1701
  } else
1702
  if (alignment == AI_ALIGNMENT_LEFT) {
1730
  $("#icons-css-code-" + block).show();
1731
  $("#sticky-position-"+block).show();
1732
  $("#sticky-animation-"+block).show();
1733
+ $("select#animation-"+block).change ();
1734
+
1735
+ if ($("select#horizontal-position-"+block+" option:selected").attr('value') == AI_STICK_HORIZONTAL_CENTER && $("input#background-"+block).is(":checked")) {
1736
+ $("#sticky-background-"+block).find ('.bkg-parameters').show();
1737
+ }
1738
+
1739
  $("#css-sticky-"+block).css('display', 'table-cell');
1740
  configure_selection_icons (block);
1741
  }
2378
  $("select#horizontal-position-"+tab).change (function() {
2379
  var block = $(this).attr('id').replace ("horizontal-position-", "");
2380
  configure_sticky_css (block);
2381
+ process_display_elements (block);
2382
+ });
2383
+
2384
+ $("input#background-"+tab).change (function() {
2385
+ var block = $(this).attr('id').replace ("background-", "");
2386
+ check_insertion (block);
2387
+ configure_sticky_css (block);
2388
+ process_display_elements (block);
2389
+ });
2390
+
2391
+ $("input#body-background-"+tab).change (function() {
2392
+ var block = $(this).attr('id').replace ("body-background-", "");
2393
+ check_insertion (block);
2394
+ });
2395
+
2396
+ if ($("input#bkg-color-"+tab).length != 0) {
2397
+ $("input#bkg-color-"+tab).colorpicker ({useAlpha: false, useHashPrefix: true, format: 'hex', fallbackColor: '#fffffe'}).on('colorpickerChange colorpickerCreate colorpickerUpdate', function (e) {
2398
+ var block = $(this).attr('id').replace ("bkg-color-", "");
2399
+ configure_sticky_css (block);
2400
+ $("#sticky-background-" + block).find ('.banner-preview').css ('background', $(this).val ());
2401
+ }).on ('input', function() {
2402
+ var block = $(this).attr('id').replace ("bkg-color-", "");
2403
+ configure_sticky_css (block);
2404
+ $("#sticky-background-" + block).find ('.banner-preview').css ('background', $(this).val ());
2405
+ })
2406
+ $("input#bkg-color-"+tab).colorpicker ('setValue', $("input#bkg-color-" + tab).attr ('value'));
2407
+ }
2408
+
2409
+ $("select#bkg-repeat-"+tab).change (function() {
2410
+ var block = $(this).attr('id').replace ("bkg-repeat-", "");
2411
+ configure_sticky_css (block);
2412
+ process_display_elements (block);
2413
+ });
2414
+
2415
+ $("select#bkg-size-"+tab).change (function() {
2416
+ var block = $(this).attr('id').replace ("bkg-size-", "");
2417
+ configure_sticky_css (block);
2418
+ process_display_elements (block);
2419
  });
2420
 
2421
 
2542
  // $("#show-css-button-"+block+" span").text (ai_admin.show);
2543
  // $("#show-css-button-"+block).removeClass ('light-blue');
2544
  $("#sticky-animation-"+block).hide ();
2545
+ $("#sticky-background-"+block).find ('.bkg-parameters').hide();
2546
  }
2547
  });
2548
 
2910
 
2911
  var close_button = $("#close-button-"+block+" option:selected").attr('value');
2912
 
2913
+ var background = $("input#background-"+block).is(":checked") ? 1 : 0;
2914
+ var body_background = $("input#body-background-"+block).is(":checked") ? 1 : 0;
2915
+ var background_image = $("#bkg-image-url-"+block).val ();
2916
+ var background_color = $("input#bkg-color-"+block).val ();
2917
+ var background_size = $("select#bkg-size-"+block+" option:selected").attr('value');
2918
+ var background_repeat = $("select#bkg-repeat-"+block+" option:selected").attr('value');
2919
+
2920
  if (!sticky) {
2921
  var window_top = (screen.height / 2) - (820 / 2);
2922
  var window_left = 100;
2948
  'php': php,
2949
  'label': label,
2950
  'close': close_button,
2951
+ 'background': background,
2952
+ 'body_background': body_background,
2953
+ 'background_image': btoa (background_image),
2954
+ 'background_color': btoa (background_color),
2955
+ 'background_size': btoa (background_size),
2956
+ 'background_repeat': btoa (background_repeat),
2957
  'iframe': iframe
2958
  };
2959
  open_popup_window_post (ajaxurl, 'width='+window_width+',height='+window_height+',top='+window_top+',left='+window_left+',resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no', 'preview', param);
2963
  var block = $(this).attr('id').tabIndex ();
2964
  var animation = $(this).find ("option:selected").attr('value');
2965
  var animation_parameters = $(this).closest ('.sticky-animation').find ('.animation-parameters')
2966
+
2967
+ if (animation == AI_ANIMATION_NONE || $("input#background-"+block).is(":checked")) {
2968
  animation_parameters.hide ();
2969
  } else {
2970
  animation_parameters.show ();
3413
  option_tabs.tabs ("option", "active", 0);
3414
 
3415
  $('input[name=ai_save]').css ('color', '#f00');
3416
+ // $('.ai-rotation-warning').show ();
3417
 
3418
  setTimeout (function() {import_rotation_code (block);}, 5);
3419
  } else {
3524
  };
3525
  open_popup_window_post (home_url, 'width='+window_width+',height='+window_height+',top='+window_top+',left='+window_left+',resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no', 'ai-selector', param);
3526
  });
3527
+
3528
+ $("#select-bkg-image-button-"+tab).click (function (event) {
3529
+ $(this).blur ();
3530
+
3531
+ var block = $(this).attr('id').replace ("select-bkg-image-button-", "");
3532
+ var frame;
3533
+
3534
+ event.preventDefault();
3535
+
3536
+ if (frame) {
3537
+ frame.open();
3538
+ return;
3539
+ }
3540
+
3541
+ frame = wp.media ({
3542
+ title: ai_admin.select_banner_image,
3543
+ button: {
3544
+ text: ai_admin.use_this_image
3545
+ },
3546
+ multiple: false // Set to true to allow multiple files to be selected
3547
+ });
3548
+
3549
+ // frame.on ('open', function(){
3550
+ // var selected = $('#banner-image-' + block).attr ('src');
3551
+ // if (selected) {
3552
+ // var selection = frame.state().get ('selection');
3553
+ // var id = $('#banner-image-' + block).attr ('data-id');
3554
+ // selection.add (wp.media.attachment (id));
3555
+ // }
3556
+ // });
3557
+
3558
+ frame.on ('select', function() {
3559
+ var attachment = frame.state().get('selection').first().toJSON();
3560
+ // console.log ('attachment', attachment);
3561
+ $('#bkg-image-' + block).attr ('src', attachment.url);
3562
+ $('#bkg-image-url-' + block).val (attachment.url).trigger ("input");
3563
+ });
3564
+
3565
+ frame.open();
3566
+ });
3567
+
3568
+ $("#bkg-image-url-" + tab).on ('input', function() {
3569
+
3570
+ var block = $(this).attr('id').replace ("bkg-image-url-", "");
3571
+ var image = $('#bkg-image-' + block);
3572
+
3573
+ var new_image_src = $(this).val ();
3574
+ if (new_image_src == '') {
3575
+ // new_image_src = '//:0';
3576
+ image.hide ();
3577
+ $('div#sticky-background-' + block + ' table.ai-settings-table').css ('position', 'relative');
3578
+ }
3579
+
3580
+ configure_sticky_css (block);
3581
+
3582
+ image.attr ('src', new_image_src).load (function () {
3583
+ image.show ();
3584
+ $('div#sticky-background-' + block + ' table.ai-settings-table').css ('position', 'inherit');
3585
+ $(this).closest ('.ai-banner').removeClass ('ai-banner-top');
3586
+ var width = this.naturalWidth;
3587
+ var height = this.naturalHeight;
3588
+
3589
+ if (width / height > 2 && width > 300) {
3590
+ $(this).closest ('.ai-banner').addClass ('ai-banner-top');
3591
+ }
3592
+ })
3593
+ .error (function() {
3594
+ if (image.is(':visible')) {
3595
+ // image.hide ().attr ('src', '//:0');
3596
+ image.hide ().attr ('src', '');
3597
+ $('div#sticky-background-' + block + ' table.ai-settings-table').css ('position', 'relative');
3598
+ }
3599
+ });
3600
+ });
3601
  }
3602
 
3603
  function configure_sticky_css (block) {
3607
  var vertical_position = $("select#vertical-position-"+block+" option:selected").attr('value');
3608
  var selected_vertical_position = $("select#vertical-position-"+block+" option:selected");
3609
 
3610
+ var background = $("input#background-"+block).is(":checked");
3611
+ var body_background = horizontal_position == AI_STICK_HORIZONTAL_CENTER && $("input#body-background-"+block).is(":checked");
3612
+
3613
+ if (background) {
3614
+ $("#sticky-position-"+block).addClass ('ai-background');
3615
+ } else $("#sticky-position-"+block).removeClass ('ai-background');
3616
+
3617
+ var custom_vertical_position_css = selected_vertical_position.data ('css-bkg');
3618
+
3619
+ if (background && typeof custom_vertical_position_css != 'undefined') {
3620
+ if (body_background) {
3621
+ var vertical_position_css = $("select#vertical-position-"+block).data ('css-body-bkg');
3622
+ } else var vertical_position_css = custom_vertical_position_css;
3623
+ } else {
3624
+ var custom_vertical_position_css = selected_vertical_position.data ('css-' + horizontal_position);
3625
+
3626
+ if (typeof custom_vertical_position_css != 'undefined') var vertical_position_css = custom_vertical_position_css; else
3627
+ var vertical_position_css = selected_vertical_position.data ('css');
3628
+ }
3629
+
3630
+ var custom_horizontal_position_css = selected_horizontal_position.data ('css-bkg');
3631
 
3632
+ if (background && typeof custom_horizontal_position_css != 'undefined') {
3633
+ var horizontal_position_css = custom_horizontal_position_css;
3634
+ } else {
3635
+ var custom_horizontal_position_css = selected_horizontal_position.data ('css-' + vertical_position);
3636
 
3637
+ if (typeof custom_horizontal_position_css != 'undefined') var horizontal_position_css = custom_horizontal_position_css; else
3638
+ var horizontal_position_css = selected_horizontal_position.data ('css');
3639
+ }
3640
+
3641
+ var background_css = '';
3642
+ if (horizontal_position == AI_STICK_HORIZONTAL_CENTER && background) {
3643
+ var background_color = $("input#bkg-color-"+block).attr('value').trim ();
3644
+ if (background_color != '') {
3645
+ background_css = background_css + ' background-color: ' + background_color + ';';
3646
+ }
3647
+
3648
+ var background_image = $("input#bkg-image-url-"+block).attr('value').trim ();
3649
+ if (background_image != '') {
3650
+ background_css = background_css + ' background-image: url(' + background_image + ');';
3651
+ }
3652
+
3653
+ var background_size = parseInt ($("select#bkg-size-"+block+" option:selected").attr('value'));
3654
+ if (background_size != AI_BACKGROUND_SIZE_DEFAULT) {
3655
+ switch (background_size) {
3656
+ case AI_BACKGROUND_SIZE_COVER:
3657
+ background_css = background_css + ' background-size: cover;';
3658
+ break;
3659
+ case AI_BACKGROUND_SIZE_CONTAIN:
3660
+ background_css = background_css + ' background-size: contain;';
3661
+ break;
3662
+ case AI_BACKGROUND_SIZE_FILL:
3663
+ background_css = background_css + ' background-size: 100% 100%;';
3664
+ break;
3665
+ }
3666
+ }
3667
 
3668
+ var background_repeat = parseInt ($("select#bkg-repeat-"+block+" option:selected").attr('value'));
3669
+ if (background_repeat != AI_BACKGROUND_REPEAT_DEFAULT) {
3670
+ switch (background_repeat) {
3671
+ case AI_BACKGROUND_REPEAT_NO:
3672
+ background_css = background_css + ' background-repeat: no-repeat;';
3673
+ break;
3674
+ case AI_BACKGROUND_REPEAT_YES:
3675
+ background_css = background_css + ' background-repeat: repeat;';
3676
+ break;
3677
+ case AI_BACKGROUND_REPEAT_HORIZONTALY:
3678
+ background_css = background_css + ' background-repeat: repeat-x;';
3679
+ break;
3680
+ case AI_BACKGROUND_REPEAT_VERTICALLY:
3681
+ background_css = background_css + ' background-repeat: repeat-y;';
3682
+ break;
3683
+ case AI_BACKGROUND_REPEAT_SPACE:
3684
+ background_css = background_css + ' background-repeat: space;';
3685
+ break;
3686
+ case AI_BACKGROUND_REPEAT_ROUND:
3687
+ background_css = background_css + ' background-repeat: round;';
3688
+ break;
3689
+ }
3690
+ }
3691
+ }
3692
 
3693
+ $('#css-sticky-' + block + ' .ai-sticky-css').text (vertical_position_css + horizontal_position_css + background_css);
3694
 
3695
  check_insertion (block);
3696
  }
3700
  var automatic_insertion = $("select#insertion-type-"+block+" option:selected").attr('value');
3701
  var alignment_style = $("select#block-alignment-"+block+" option:selected").attr('value');
3702
  var vertical_position = $("select#vertical-position-"+block+" option:selected").attr('value');
3703
+ var background = $("input#background-"+block).is(":checked") ? 1 : 0;
3704
+ var body_background = $("input#body-background-"+block).is(":checked") ? 1 : 0;
3705
 
3706
+ if (alignment_style == AI_ALIGNMENT_STICKY && vertical_position == AI_SCROLL_WITH_THE_CONTENT && automatic_insertion != AI_ABOVE_HEADER && automatic_insertion != AI_DISABLED && !(background && body_background)) {
3707
  $('#sticky-scroll-warning-' + block).show ();
3708
  }
3709
  }
3912
  $("#rotation-"+block).next ("label").find ('.checkbox-icon').removeClass("active");
3913
 
3914
  $('input[name=ai_save]').css ('color', '#555');
3915
+ // $('.ai-rotation-warning').hide ();
3916
  });
3917
  }
3918
 
5537
  $('.header button').button().show ();
5538
 
5539
  $("#ai-form").submit (function (event) {
5540
+ for (var tab = start; tab <= end; tab ++) {
5541
+ var rotation_button = $('#rotation-' + tab);
5542
+ if (rotation_button.parent ().find ('.icon-rotation').hasClass ('on')) {
5543
+ event.preventDefault();
5544
+
5545
+ $("#ai-tab-container").tabs ({active: tab - 1});
5546
+
5547
+ var message = '<div class="checkbox-icon icon-rotation on" style="margin: 3px 10px 24px 0px;"></div><div>' + ai_admin.rotation_active + '</div>';
5548
+ $('<div />').html(message).attr ('title', ai_admin.warning).dialog({
5549
+ bgiframe: true,
5550
+ draggable: false,
5551
+ resizable: false,
5552
+ modal: true,
5553
+ height: "auto",
5554
+ width: 300,
5555
+ position: {my: 'center', at: 'center', of: '#ai-settings'},
5556
+ buttons: [{
5557
+ text: ai_admin.ok,
5558
+ click: function() {
5559
+ $(this).dialog ("close");
5560
+ }
5561
+ }
5562
+ ],
5563
+ });
5564
+
5565
+ return;
5566
+ }
5567
+ }
5568
+
5569
  for (var tab = start; tab <= end; tab ++) {
5570
  remove_default_values (tab);
5571
  encode_code (tab);
languages/ad-inserter-sl_SI.mo CHANGED
Binary file
languages/ad-inserter-sl_SI.po CHANGED
@@ -4,8 +4,8 @@ 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: 2020-04-07 13:55:50+00:00\n"
8
- "PO-Revision-Date: 2020-04-07 15:57+0200\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
@@ -16,134 +16,134 @@ msgstr ""
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:390
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
- #: ad-inserter.php:406
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
- #: ad-inserter.php:413
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
- #: ad-inserter.php:498
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
- #: ad-inserter.php:505
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
- #: ad-inserter.php:514
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
- #: ad-inserter.php:521
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
- #: ad-inserter.php:532
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
- #: ad-inserter.php:539
60
  msgctxt "Menu item"
61
  msgid "Show Log"
62
  msgstr "Pokaži beležko"
63
 
64
  #. translators: Debugging position name Before HTML element
65
- #: ad-inserter.php:1163
66
  msgid "Before"
67
  msgstr "Pred"
68
 
69
  #. translators: Debugging position name After HTML element
70
- #: ad-inserter.php:1168
71
  msgid "After"
72
  msgstr "Za"
73
 
74
  #. translators: Debugging position name Prepend content of HTML element (before
75
  #. the content of the HTML element)
76
- #: ad-inserter.php:1173 strings.php:103
77
  msgid "Prepend content"
78
  msgstr "Dodaj pred vsebino"
79
 
80
  #. translators: Debugging position name Append content of HTML element (after
81
  #. the content of the HTML element)
82
- #: ad-inserter.php:1178 strings.php:104
83
  msgid "Append content"
84
  msgstr "Dodaj za vsebino"
85
 
86
  #. translators: Debugging position name Replace content of HTML element
87
- #: ad-inserter.php:1183 strings.php:105
88
  msgid "Replace content"
89
  msgstr "Nadomesti vsebino"
90
 
91
  #. translators: Debugging position name Replace HTML element
92
- #: ad-inserter.php:1188 strings.php:155
93
  msgid "Replace"
94
  msgstr "Nadomesti"
95
 
96
  #. translators: Debugging message when output buffering is enabled
97
- #: ad-inserter.php:1235
98
  msgid "OUTPUT BUFFERING"
99
  msgstr "PREDPOMNJENJE IZHODA"
100
 
101
  #. translators: Debugging position
102
- #: ad-inserter.php:1239
103
  msgid "Above Header"
104
  msgstr "Nad Glavo"
105
 
106
- #: ad-inserter.php:1534
107
  msgctxt "Menu item"
108
  msgid "Log In"
109
  msgstr "Prijava"
110
 
111
  #. translators: %s: Ad Inserter
112
- #: ad-inserter.php:1869 ad-inserter.php:2964
113
  msgid "%s Settings"
114
  msgstr "%s Nastavitve"
115
 
116
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
117
- #: ad-inserter.php:2355
118
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
119
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
120
 
121
- #: ad-inserter.php:2355
122
  msgid "NO ACTION"
123
  msgstr "NI AKCIJE"
124
 
125
- #: ad-inserter.php:2356
126
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
127
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
128
 
129
- #: ad-inserter.php:2357
130
  msgid "AD BLOCKING DETECTED - ACTION"
131
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
132
 
133
- #: ad-inserter.php:2358
134
  msgid "AD BLOCKING NOT DETECTED"
135
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
136
 
137
- #: ad-inserter.php:2359
138
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
139
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
140
 
141
- #: ad-inserter.php:2360
142
  msgid "AD BLOCKING DETECTED - NO ACTION"
143
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
144
 
145
  #. Translators: 1: number of blocks, 2: Ad Inserter
146
- #: ad-inserter.php:2659
147
  msgid "Hey, you are now using %1$s %2$s block."
148
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
149
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
@@ -151,24 +151,24 @@ msgstr[1] "Hej, trenutno uporabljate %1$s %2$s bloka."
151
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
152
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
153
 
154
- #: ad-inserter.php:2662
155
  msgid "Please help me to solve a problem first"
156
  msgstr "Najprej mi, prosim, pomagajte rešiti problem"
157
 
158
- #: ad-inserter.php:2666
159
  msgid "Maybe later"
160
  msgstr "Mogoče kasneje"
161
 
162
  #. Translators: %s: Ad Inserter
163
- #: ad-inserter.php:2671
164
  msgid "Hey, you are using %s and I hope you're happy with it."
165
  msgstr "Hej, uporabljate %s in upam, da ste zadovoljni z njim."
166
 
167
- #: ad-inserter.php:2674
168
  msgid "OK, but please help me with the settings first"
169
  msgstr "V redu, ampak najprej mi, prosim, pomagajte pri nastavitvah"
170
 
171
- #: ad-inserter.php:2687
172
  msgid ""
173
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
174
  "like saying 'Thank you'. Somebody will be happy."
@@ -176,7 +176,7 @@ msgstr ""
176
  "Prosimo, vzemite si čas in ocenite vtičnik. Ko ga ocenite s 5-imi zvezdicami "
177
  "je kot bi rekli 'Hvala'. Nekdo bo vsesel."
178
 
179
- #: ad-inserter.php:2689
180
  msgid ""
181
  "Positive reviews are a great incentive to fix bugs and to add new features "
182
  "for better monetization of your website."
@@ -184,28 +184,28 @@ msgstr ""
184
  "Pozitivne ocene so velika vzpodbuda za odpravo hroščev in dodajanje novih "
185
  "funkcij za boljšo monetizacijo vašega spletnega mesta."
186
 
187
- #: ad-inserter.php:2695
188
  msgid "Sure"
189
  msgstr "Seveda"
190
 
191
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
192
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
193
- #: ad-inserter.php:2712 ad-inserter.php:2747
194
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
195
  msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
196
 
197
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
198
- #: ad-inserter.php:2719
199
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
200
  msgstr ""
201
  "Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
202
 
203
- #: ad-inserter.php:2729
204
  msgctxt "Menu item"
205
  msgid "Settings"
206
  msgstr "Nastavitve"
207
 
208
- #: ad-inserter.php:2761
209
  msgid ""
210
  "Load settings page in safe mode to avoid collisions with other plugins or "
211
  "theme"
@@ -213,78 +213,78 @@ msgstr ""
213
  "Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
214
  "drugimi vtičniki ali temo"
215
 
216
- #: ad-inserter.php:2761
217
  msgid "Safe mode"
218
  msgstr "Varni način"
219
 
220
  #. translators: %s: Ad Inserter
221
- #: ad-inserter.php:2856
222
  msgctxt "Meta box name"
223
  msgid "%s Individual Exceptions"
224
  msgstr "Posamezne Izjeme za %s"
225
 
226
- #: ad-inserter.php:2885 ad-inserter.php:10073 class.php:2123
227
- #: includes/preview.php:2003 includes/preview.php:2046
228
- #: includes/preview.php:2083 settings.php:4257 strings.php:3
229
  msgid "Block"
230
  msgstr "Blok"
231
 
232
- #: ad-inserter.php:2886 settings.php:4258 settings.php:4343
233
  msgid "Name"
234
  msgstr "Ime"
235
 
236
- #: ad-inserter.php:2889 settings.php:1178
237
  msgid "Default insertion"
238
  msgstr "Privzeto vstavljanje"
239
 
240
  #. translators: For this post or page
241
- #: ad-inserter.php:2892
242
  msgctxt "Page"
243
  msgid "For this"
244
  msgstr "Za to"
245
 
246
- #: ad-inserter.php:2893
247
  msgctxt "Post"
248
  msgid "For this"
249
  msgstr "Za ta"
250
 
251
- #: ad-inserter.php:2905
252
  msgctxt "Enabled/disabled on all"
253
  msgid "pages"
254
  msgstr "straneh"
255
 
256
- #: ad-inserter.php:2908
257
  msgctxt "Enabled/disabled on all"
258
  msgid "posts"
259
  msgstr "prispevkih"
260
 
261
- #: ad-inserter.php:2925 ad-inserter.php:2937 strings.php:161
262
  msgid "Enabled"
263
  msgstr "Omogočeno"
264
 
265
  #. translators: Menu items
266
- #: ad-inserter.php:2925 ad-inserter.php:2937
267
  #: includes/functions-check-now.php:2401 includes/functions.old.php:2326
268
- #: includes/functions.php:2574 strings.php:16
269
  msgid "Disabled"
270
  msgstr "Onemogočeno"
271
 
272
- #: ad-inserter.php:2927
273
  msgid "No individual exceptions"
274
  msgstr "Ni posameznih izjem"
275
 
276
  #. translators: Not enabled for pages or posts
277
- #: ad-inserter.php:2929
278
  msgid "Not enabled for"
279
  msgstr "Ni omogočeno za"
280
 
281
  #. translators: No individual exceptions enabled for pages or posts
282
- #: ad-inserter.php:2957
283
  msgid "No block has individual exceptions enabled"
284
  msgstr "Noben blok nima omogočenih posameznih izjem"
285
 
286
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
287
- #: ad-inserter.php:2962
288
  msgid ""
289
  "Default insertion can be configured for each block on %1$s page - button "
290
  "next to %2$s checkbox."
@@ -292,11 +292,11 @@ msgstr ""
292
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
293
  "poleg kljukice za vklop %2$s."
294
 
295
- #: ad-inserter.php:2965 settings.php:1156
296
  msgid "Tag / Archive pages"
297
  msgstr "Strani oznak / arhiva"
298
 
299
- #: ad-inserter.php:2967
300
  msgid ""
301
  "When individual exceptions for a block are enabled, a checkbox will be "
302
  "listed here to change default insertion for this post or page."
@@ -304,7 +304,7 @@ msgstr ""
304
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
305
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
306
 
307
- #: ad-inserter.php:2968
308
  msgid ""
309
  "This way you can individually enable or disable blocks on specific posts or "
310
  "pages."
@@ -312,61 +312,61 @@ msgstr ""
312
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
313
  "prispevku ali strani."
314
 
315
- #: ad-inserter.php:2970
316
  msgid "For more information check page %s"
317
  msgstr "Za več informacij poglejte stran %s"
318
 
319
  #. translators: Ad Inserter Exceptions documentation page
320
- #: ad-inserter.php:2972
321
  msgid "Individual Exceptions"
322
  msgstr "Posamezne Izjeme"
323
 
324
- #: ad-inserter.php:3019
325
  msgid "STATIC PAGE"
326
  msgstr "STATIČNA STRAN"
327
 
328
- #: ad-inserter.php:3022
329
  msgid "POST"
330
  msgstr "PRISPEVEK"
331
 
332
- #: ad-inserter.php:3025
333
  msgid "HOMEPAGE"
334
  msgstr "DOMAČA STRAN"
335
 
336
- #: ad-inserter.php:3028
337
  msgid "CATEGORY PAGE"
338
  msgstr "STRAN KATEGORIJE"
339
 
340
- #: ad-inserter.php:3031
341
  msgid "SEARCH PAGE"
342
  msgstr "STRAN ISKANJE"
343
 
344
- #: ad-inserter.php:3034
345
  msgid "ARCHIVE PAGE"
346
  msgstr "STRAN ARHIVA"
347
 
348
- #: ad-inserter.php:3037
349
  msgid "ERROR 404 PAGE"
350
  msgstr "STRAN NAPAKA 404"
351
 
352
- #: ad-inserter.php:3040
353
  msgid "AJAX CALL"
354
  msgstr "AJAX KLIC"
355
 
356
- #: ad-inserter.php:3043
357
  msgid "UNKNOWN PAGE TYPE"
358
  msgstr "NEZNAN TIP STRANI"
359
 
360
- #: ad-inserter.php:3060
361
  msgid "Click to delete ad blocking detection cokies"
362
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
363
 
364
- #: ad-inserter.php:3061
365
  msgid "AD BLOCKING STATUS UNKNOWN"
366
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
367
 
368
  #. translators: %s: AdSense Auto Ads
369
- #: ad-inserter.php:3090
370
  msgid ""
371
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
372
  "positions"
@@ -374,11 +374,11 @@ msgstr ""
374
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
375
  "položaje"
376
 
377
- #: ad-inserter.php:3225
378
  msgid "Code for insertion"
379
  msgstr "Koda za vstavljanje"
380
 
381
- #: ad-inserter.php:3225
382
  msgid "character"
383
  msgid_plural "characters"
384
  msgstr[0] "znak"
@@ -386,16 +386,16 @@ msgstr[1] "znaka"
386
  msgstr[2] "znaki"
387
  msgstr[3] "znakov"
388
 
389
- #: ad-inserter.php:3241
390
  msgid "Header code"
391
  msgstr "Koda v glavi"
392
 
393
- #: ad-inserter.php:3241
394
  msgctxt "Header code"
395
  msgid "DISABLED"
396
  msgstr "ONEMOGOČENA"
397
 
398
- #: ad-inserter.php:3241 ad-inserter.php:3474
399
  msgid "character inserted"
400
  msgid_plural "characters inserted"
401
  msgstr[0] "znak vstavljen"
@@ -403,39 +403,39 @@ msgstr[1] "znaka vstavljena"
403
  msgstr[2] "znaki vstavljeni"
404
  msgstr[3] "znakov vstavljenih"
405
 
406
- #: ad-inserter.php:3474
407
  msgid "Footer code"
408
  msgstr "Koda v nogi"
409
 
410
- #: ad-inserter.php:3474
411
  msgctxt "Footer code"
412
  msgid "DISABLED"
413
  msgstr "ONEMOGOČENA"
414
 
415
- #: ad-inserter.php:3480
416
  msgid "JAVASCRIPT NOT WORKING"
417
  msgstr "JAVASCRIPT NE DELA"
418
 
419
- #: ad-inserter.php:3480
420
  msgid "NO JAVASCRIPT ERRORS"
421
  msgstr "BREZ JAVASCRIPT NAPAK"
422
 
423
- #: ad-inserter.php:3480
424
  msgid "JAVASCRIPT ERRORS"
425
  msgstr "JAVASCRIPT NAPAKE"
426
 
427
  #. translators: block name (block with default settings)
428
- #: ad-inserter.php:5915
429
  msgctxt "Block name"
430
  msgid "Default"
431
  msgstr "Privzeti"
432
 
433
  #. translators: %s: Ad Inserter
434
- #: ad-inserter.php:6581
435
  msgid "Error importing %s settings."
436
  msgstr "Napaka pri uvozu %s nastavitev."
437
 
438
- #: ad-inserter.php:6582
439
  msgid "Error importing settings for block"
440
  msgid_plural "Error importing settings for blocks:"
441
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
@@ -443,22 +443,22 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
443
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
444
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
445
 
446
- #: ad-inserter.php:6635
447
  msgid "Settings saved."
448
  msgstr "Nastavitve shranjene."
449
 
450
  #. translators: %s: Ad Inserter
451
- #: ad-inserter.php:6637
452
  msgid "Invalid data received - %s settings not saved."
453
  msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
454
 
455
- #: ad-inserter.php:6736
456
  msgid "Settings cleared."
457
  msgstr "Nastavitve ponastavljene."
458
 
459
  #. Translators: Post/Static page must have between X and Y words
460
- #: ad-inserter.php:7112 ad-inserter.php:7114 ad-inserter.php:7137
461
- #: settings.php:2174
462
  msgid "word"
463
  msgid_plural "words"
464
  msgstr[0] "besedo"
@@ -466,43 +466,43 @@ msgstr[1] "besedi"
466
  msgstr[2] "besede"
467
  msgstr[3] "besed"
468
 
469
- #: ad-inserter.php:7151 ad-inserter.php:7272
470
  msgid "HTML TAGS REMOVED"
471
  msgstr "HTML ZNAČKE ODSTRANJENE"
472
 
473
- #: ad-inserter.php:7348
474
  msgid "BEFORE COMMENTS"
475
  msgstr "PRED KOMENTARJI"
476
 
477
- #: ad-inserter.php:7468
478
  msgid "AFTER COMMENTS"
479
  msgstr "PO KOMETARJIH"
480
 
481
- #: ad-inserter.php:7543
482
  msgid "BETWEEN COMMENTS"
483
  msgstr "MED KOMENTARJI"
484
 
485
- #: ad-inserter.php:9381 ad-inserter.php:9464
486
  msgctxt "category name"
487
  msgid "Uncategorized"
488
  msgstr "Nekategorizirano"
489
 
490
- #: ad-inserter.php:9691
491
  msgid "requires WordPress 4.6 or newer"
492
  msgstr "potrebuje WordPress 4.6 ali novejši"
493
 
494
- #: ad-inserter.php:9691
495
  msgid "Please update!"
496
  msgstr "Prosimo, posodobite!"
497
 
498
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
499
  #. name with HTML tags will be added)
500
- #: ad-inserter.php:9946
501
  msgid "Thank you for installing"
502
  msgstr "Hvala za namestitev vtičnika"
503
 
504
  #. translators: Opt-in message: %s: HTML tags
505
- #: ad-inserter.php:9948
506
  msgid ""
507
  "We would like to %s track its usage %s on your site. This is completely "
508
  "optional and can be disabled at any time."
@@ -510,7 +510,7 @@ msgstr ""
510
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
511
  "izbirno in se lahko izključi kadarkoli."
512
 
513
- #: ad-inserter.php:9950
514
  msgid ""
515
  "We don't record any sensitive data, only information regarding the WordPress "
516
  "environment and plugin usage, which will help us to make improvements to the "
@@ -520,7 +520,7 @@ msgstr ""
520
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
521
 
522
  #. translators: Deactivation message: %s: HTML tags
523
- #: ad-inserter.php:9987
524
  msgid ""
525
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
526
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -531,51 +531,51 @@ msgstr ""
531
  "nam %s in poskušali vam bomo pomagati."
532
 
533
  #. translators: %s: Ad Inserter
534
- #: ad-inserter.php:10031
535
  msgid "%s block."
536
  msgstr "%s blok."
537
 
538
  #. translators: widget title
539
- #: ad-inserter.php:10047 ad-inserter.php:10082
540
  msgid "Processing log"
541
  msgstr "Dnevnik procesiranja"
542
 
543
  #. translators: widget title
544
- #: ad-inserter.php:10049 ad-inserter.php:10083
545
  msgid "Dummy widget"
546
  msgstr "Prazen gradnik"
547
 
548
  #. translators: widget title
549
- #: ad-inserter.php:10051 ad-inserter.php:10081
550
  msgid "Debugging tools"
551
  msgstr "Orodja za razhroščevanje"
552
 
553
  #. translators: block status (widget title)
554
- #: ad-inserter.php:10058
555
  msgctxt "block"
556
  msgid "PAUSED"
557
  msgstr "USTAVLJEN"
558
 
559
- #: ad-inserter.php:10059
560
  msgid "WIDGET DISABLED"
561
  msgstr "GRADNIK ONEMOGOČEN"
562
 
563
- #: ad-inserter.php:10060
564
  msgid "Unknown block"
565
  msgstr "Neznan blok"
566
 
567
- #: ad-inserter.php:10068 includes/functions-check-now.php:3261
568
- #: includes/functions.old.php:3186 includes/functions.php:3499
569
- #: settings.php:1208
570
  msgid "Title"
571
  msgstr "Naslov"
572
 
573
- #: ad-inserter.php:10090
574
  msgctxt "Widget"
575
  msgid "Sticky"
576
  msgstr "Lepljiv"
577
 
578
- #: ad-inserter.php:10139
579
  msgid ""
580
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
581
  "Inserter you need to first deactivate Ad Inserter Pro."
@@ -584,7 +584,7 @@ msgstr ""
584
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
585
  "Inserter Pro."
586
 
587
- #: ad-inserter.php:10140
588
  msgid ""
589
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
590
  "will clear all settings that are available only in the Pro version "
@@ -595,165 +595,165 @@ msgstr ""
595
  "različici (dodatne nastavitve blokov in vtičnika)!"
596
 
597
  #. translators: %s: Ad Inserter
598
- #: class.php:538 class.php:547 class.php:550
599
  msgid "PHP error in %s block"
600
  msgstr "PHP napaka v bloku %s"
601
 
602
- #: class.php:2073
603
  msgid "Counters"
604
  msgstr "Števci"
605
 
606
- #: class.php:2077
607
  msgid "Content"
608
  msgstr "Vsebina"
609
 
610
- #: class.php:2082
611
  msgid "Excerpt"
612
  msgstr "Izvleček"
613
 
614
- #: class.php:2087 strings.php:17
615
  msgid "Before post"
616
  msgstr "Pred prispevkom"
617
 
618
- #: class.php:2092 strings.php:18
619
  msgid "After post"
620
  msgstr "Za prispevkom"
621
 
622
- #: class.php:2097 strings.php:25
623
  msgid "Between posts"
624
  msgstr "Med prispevki"
625
 
626
- #: class.php:2102 settings.php:1917 settings.php:4275
627
  msgid "Widget"
628
  msgstr "Gradnik"
629
 
630
- #: class.php:2107 settings.php:4273
631
  msgid "PHP function call"
632
  msgstr "Klic PHP funkcije"
633
 
634
  #. Translators: %s: custom hook name
635
- #: class.php:2117
636
  msgid "Custom hook %s call"
637
  msgstr "Klic ročice po meri %s"
638
 
639
- #: class.php:2153
640
  msgid "AJAX REQUEST"
641
  msgstr "AJAX ZAHTEVEK"
642
 
643
- #: class.php:2156
644
  msgid "Ajax request for block in iframe"
645
  msgstr "Ajax zahtevek za blok v iframe-u"
646
 
647
- #: class.php:2190
648
  msgid "Ajax request url, click to open it in a new tab"
649
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
650
 
651
- #: class.php:2193
652
  msgid "IN THE LOOP"
653
  msgstr "V ZANKI"
654
 
655
- #: class.php:2193
656
  msgid "YES"
657
  msgstr "DA"
658
 
659
- #: class.php:2193
660
  msgid "NO"
661
  msgstr "NE"
662
 
663
- #: class.php:2229
664
  msgid "BLOCK"
665
  msgstr "BLOK"
666
 
667
- #: class.php:2229
668
  msgctxt "block or widget"
669
  msgid "INSERTED BUT NOT VISIBLE"
670
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
671
 
672
- #: class.php:2397
673
  msgctxt "viewports"
674
  msgid "ALL"
675
  msgstr "VSI"
676
 
677
- #: class.php:2430 class.php:2472 class.php:3745 strings.php:261
678
  msgctxt "Block"
679
  msgid "HIDDEN"
680
  msgstr "SKRIT"
681
 
682
- #: class.php:2479 class.php:3748 strings.php:260
683
  msgctxt "Block"
684
  msgid "VISIBLE"
685
  msgstr "VIDEN"
686
 
687
- #: class.php:2984 class.php:3054
688
  msgid "ACTIVE GROUPS"
689
  msgstr "AKTIVNE SKUPINE"
690
 
691
- #: class.php:3444
692
  msgid "start='%s' end='%s' days='%s' type='%s'"
693
  msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
694
 
695
  #. translators: %s: list parameters and type
696
- #: class.php:3452
697
  msgid "parameters='%s' type='%s'"
698
  msgstr "parametri='%s' tip='%s'"
699
 
700
  #. translators: %s: list parameters and type
701
- #: class.php:3454
702
  msgid "referers='%s' type='%s'"
703
  msgstr "napotitelji='%s' tip='%s'"
704
 
705
  #. translators: %s: list parameters and type
706
- #: class.php:3456
707
  msgid "clients='%s' type='%s'"
708
  msgstr "odjemalci='%s' tip='%s'"
709
 
710
  #. translators: %s: list parameters and type
711
- #: class.php:3628
712
  msgid "countries='%s' type='%s'"
713
  msgstr "države='%s' tip='%s'"
714
 
715
  #. translators: %s: list parameters and type
716
- #: class.php:3630
717
  msgid "ip addresses='%s' type='%s'"
718
  msgstr "ip naslovi='%s' tip='%s'"
719
 
720
- #: class.php:3745 class.php:3748
721
  msgid "viewport='%s' type='%s'"
722
  msgstr "pogled='%s' tip='%s'"
723
 
724
- #: class.php:4102 strings.php:254
725
  msgid "BEFORE"
726
  msgstr "PRED"
727
 
728
- #: class.php:4110 strings.php:256
729
  msgid "PREPEND CONTENT"
730
  msgstr "DODAJ PRED VSEBINO"
731
 
732
- #: class.php:4114 strings.php:257
733
  msgid "APPEND CONTENT"
734
  msgstr "DODAJ ZA VSEBINO"
735
 
736
- #: class.php:4118 strings.php:258
737
  msgid "REPLACE CONTENT"
738
  msgstr "NADOMESTI VSEBINO"
739
 
740
- #: class.php:4122 strings.php:259
741
  msgid "REPLACE ELEMENT"
742
  msgstr "NADOMESTI ELEMENT"
743
 
744
- #: class.php:4133 strings.php:255
745
  msgid "AFTER"
746
  msgstr "ZA"
747
 
748
- #: class.php:4218 includes/preview.php:2046 includes/preview.php:2083
749
  msgid "Code"
750
  msgstr "Koda"
751
 
752
- #: class.php:4221
753
  msgid "for block"
754
  msgstr "za blok"
755
 
756
- #: class.php:7886
757
  msgid ""
758
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
759
  "extension for PHP."
@@ -762,16 +762,16 @@ msgstr ""
762
  "namestiti DOM razširitev za PHP."
763
 
764
  #: includes/editor.php:7 includes/placeholders.php:352
765
- #: includes/preview.php:1989 strings.php:267
766
  msgid "Use"
767
  msgstr "Uporabi"
768
 
769
- #: includes/editor.php:8 includes/preview.php:1990
770
  msgid "Reset"
771
  msgstr "Ponastavi"
772
 
773
  #: includes/editor.php:9 includes/placeholders.php:354
774
- #: includes/preview.php:1992 settings.php:3616 strings.php:213 strings.php:266
775
  msgid "Cancel"
776
  msgstr "Prekliči"
777
 
@@ -780,7 +780,7 @@ msgid "Visual Code Editor"
780
  msgstr "Vizualni Urejevalnik Kode"
781
 
782
  #: includes/editor.php:262 includes/preview-adb.php:289
783
- #: includes/preview.php:1979
784
  msgid ""
785
  "This page was not loaded properly. Please check browser, plugins and ad "
786
  "blockers."
@@ -793,24 +793,24 @@ msgid "Error loading page"
793
  msgstr "Napaka pri nalaganju strani"
794
 
795
  #: includes/editor.php:264 includes/preview-adb.php:291
796
- #: includes/preview.php:1981
797
  msgid "PAGE BLOCKED"
798
  msgstr "STRAN BLOKIRANA"
799
 
800
  #: includes/functions-check-now.php:288 includes/functions.old.php:289
801
- #: includes/functions.php:302
802
  msgid "%d of %d names shown"
803
  msgstr "Prikazanih %d od %d imen"
804
 
805
  #. translators: %s: name filter
806
  #: includes/functions-check-now.php:307 includes/functions.old.php:308
807
- #: includes/functions.php:321
808
  msgid "No name matches filter"
809
  msgstr "Noben podatek ne ustreza filtru"
810
 
811
  #. translators: %s: Ad Inserter Pro
812
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
813
- #: includes/functions.php:398
814
  msgid ""
815
  "Import %s settings when saving - if checked, the encoded settings below will "
816
  "be imported for all blocks and settings"
@@ -819,47 +819,47 @@ msgstr ""
819
  "nastavitve spodaj uvozile za vse bloke in nastavitve"
820
 
821
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
822
- #: includes/functions.php:398
823
  msgid "Import Settings for"
824
  msgstr "Uvozi Nastavitve za"
825
 
826
  #: includes/functions-check-now.php:400 includes/functions.old.php:387
827
- #: includes/functions.php:402
828
  msgid "Saved settings for"
829
  msgstr "Shranjene nastavitve za"
830
 
831
  #: includes/functions-check-now.php:420 includes/functions.old.php:407
832
- #: includes/functions.php:422
833
  msgid "License Key"
834
  msgstr "Licenčni Ključ"
835
 
836
  #: includes/functions-check-now.php:423 includes/functions.old.php:410
837
- #: includes/functions.php:425
838
  msgid "License Key for"
839
  msgstr "Licenčni Ključ za"
840
 
841
  #: includes/functions-check-now.php:425 includes/functions.old.php:413
842
- #: includes/functions.php:427
843
  msgid "Open license page"
844
  msgstr "Odpri licenčno stran"
845
 
846
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
847
- #: includes/functions.php:434
848
  msgid "Hide license key"
849
  msgstr "Skrij licenčni ključ"
850
 
851
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
852
- #: includes/functions.php:434
853
  msgid "Hide key"
854
  msgstr "Skrij ključ"
855
 
856
  #: includes/functions-check-now.php:447 includes/functions.old.php:436
857
- #: includes/functions.php:449
858
  msgid "Main content element"
859
  msgstr "Glavni element vsebine"
860
 
861
  #: includes/functions-check-now.php:450 includes/functions.old.php:439
862
- #: includes/functions.php:452
863
  msgid ""
864
  "Main content element (#id or .class) for 'Stick to the content' position. "
865
  "Leave empty unless position is not properly calculated."
@@ -868,90 +868,90 @@ msgstr ""
868
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
869
 
870
  #: includes/functions-check-now.php:451 includes/functions.old.php:440
871
- #: includes/functions.php:453 settings.php:1359 settings.php:2831
872
  msgid "Open HTML element selector"
873
  msgstr "Odpri izbirnik HTML elementa"
874
 
875
  #: includes/functions-check-now.php:456 includes/functions.old.php:445
876
- #: includes/functions.php:458
877
  msgid "Lazy loading offset"
878
  msgstr "Zamik za leno nalaganje"
879
 
880
  #: includes/functions-check-now.php:459 includes/functions.old.php:448
881
- #: includes/functions.php:461
882
  msgid "Offset of the block from the visible viewport when it should be loaded"
883
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
884
 
885
  #: includes/functions-check-now.php:470 includes/functions.old.php:459
886
- #: includes/functions.php:472
887
  msgid "Export / Import Block Settings"
888
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
889
 
890
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
891
- #: includes/functions.php:487
892
  msgid "Track impressions and clicks for this block"
893
  msgstr "Sledi prikazom in klikom za ta blok"
894
 
895
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
896
- #: includes/functions.php:487
897
  msgid " - global tracking disabled"
898
  msgstr " - globalno sledenje onemogočeno"
899
 
900
  #: includes/functions-check-now.php:492 includes/functions.old.php:481
901
- #: includes/functions.php:494
902
  msgid "Generate PDF report"
903
  msgstr "Generiraj PDF poročilo"
904
 
905
  #: includes/functions-check-now.php:497 includes/functions.old.php:486
906
- #: includes/functions.php:499
907
  msgid "Open public report"
908
  msgstr "Odpri javno poročilo"
909
 
910
  #: includes/functions-check-now.php:511 includes/functions.old.php:500
911
- #: includes/functions.php:513
912
  msgid "Toggle Ad Blocking Statistics"
913
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
914
 
915
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
916
  #: includes/functions.old.php:508 includes/functions.old.php:2960
917
- #: includes/functions.php:521 includes/functions.php:3242
918
  msgid "Toggle Statistics"
919
  msgstr "Preklopi Statistiko"
920
 
921
- #: includes/functions-check-now.php:528 includes/functions.php:530
922
  msgid "Pin list"
923
  msgstr "Pripni seznam"
924
 
925
  #. translators: %s: Ad Inserter Pro
926
  #: includes/functions-check-now.php:543 includes/functions.old.php:524
927
- #: includes/functions.php:545
928
  msgid "%s license key is not set. Continue?"
929
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
930
 
931
  #. translators: %s: Ad Inserter Pro
932
  #: includes/functions-check-now.php:547 includes/functions.old.php:528
933
- #: includes/functions.php:549
934
  msgid "Invalid %s license key. Continue?"
935
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
936
 
937
  #. translators: %s: Ad Inserter Pro
938
  #: includes/functions-check-now.php:551 includes/functions.old.php:532
939
- #: includes/functions.php:553
940
  msgid "%s license overused. Continue?"
941
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
942
 
943
  #: includes/functions-check-now.php:555 includes/functions.old.php:536
944
- #: includes/functions.php:561 settings.php:1113 settings.php:2275
945
  msgid "Save Settings"
946
  msgstr "Shrani Nastavitve"
947
 
948
  #: includes/functions-check-now.php:615 includes/functions.old.php:596
949
- #: includes/functions.php:621 includes/preview.php:2132
950
  msgid "Horizontal position"
951
  msgstr "Vodoravni položaj"
952
 
953
  #: includes/functions-check-now.php:638 includes/functions.old.php:619
954
- #: includes/functions.php:644
955
  msgid ""
956
  "Horizontal margin from the content or screen edge, empty means default value "
957
  "from CSS"
@@ -960,12 +960,12 @@ msgstr ""
960
  "iz CSS"
961
 
962
  #: includes/functions-check-now.php:646 includes/functions.old.php:627
963
- #: includes/functions.php:652 includes/preview.php:2187
964
  msgid "Vertical position"
965
  msgstr "Navpični položaj"
966
 
967
  #: includes/functions-check-now.php:661 includes/functions.old.php:642
968
- #: includes/functions.php:667
969
  msgid ""
970
  "Vertical margin from the top or bottom screen edge, empty means default "
971
  "value from CSS"
@@ -974,17 +974,17 @@ msgstr ""
974
  "iz CSS"
975
 
976
  #: includes/functions-check-now.php:686 includes/functions.old.php:667
977
- #: includes/functions.php:692 includes/preview.php:2238
978
  msgid "Animation"
979
  msgstr "Animacija"
980
 
981
  #: includes/functions-check-now.php:704 includes/functions.old.php:685
982
- #: includes/functions.php:710
983
  msgid "Trigger"
984
  msgstr "Sporžilec"
985
 
986
  #: includes/functions-check-now.php:713 includes/functions.old.php:694
987
- #: includes/functions.php:719
988
  msgid ""
989
  "Trigger value: page scroll in %, page scroll in px or element with selector "
990
  "(#id or .class) becomes visible"
@@ -993,64 +993,64 @@ msgstr ""
993
  "selektorjem (#id ali .razred) postane viden"
994
 
995
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
996
- #: includes/functions.php:723
997
  msgid "Offset"
998
  msgstr "Zamik"
999
 
1000
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
1001
- #: includes/functions.php:723
1002
  msgid "Offset of trigger element"
1003
  msgstr "Zamik sprožilnega elementa"
1004
 
1005
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
1006
- #: includes/functions.php:727
1007
  msgid "Delay"
1008
  msgstr "Zakasnitev"
1009
 
1010
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
1011
- #: includes/functions.php:727
1012
  msgid "Delay animation after trigger condition"
1013
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
1014
 
1015
  #: includes/functions-check-now.php:725 includes/functions.old.php:706
1016
- #: includes/functions.php:731
1017
  msgid "Trigger once"
1018
  msgstr "Sproži enkrat"
1019
 
1020
  #: includes/functions-check-now.php:727 includes/functions.old.php:708
1021
- #: includes/functions.php:733
1022
  msgid "Trigger animation only once"
1023
  msgstr "Sproži animacijo samo enkrat"
1024
 
1025
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
1026
  #: includes/functions-check-now.php:2545 includes/functions.old.php:750
1027
  #: includes/functions.old.php:2453 includes/functions.old.php:2470
1028
- #: includes/functions.php:775 includes/functions.php:2713
1029
- #: includes/functions.php:2729
1030
  msgid "Tracking is globally disabled"
1031
  msgstr "Sledenje je globalno onemogočeno"
1032
 
1033
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
1034
  #: includes/functions-check-now.php:2549 includes/functions.old.php:754
1035
  #: includes/functions.old.php:2457 includes/functions.old.php:2474
1036
- #: includes/functions.php:779 includes/functions.php:2717
1037
- #: includes/functions.php:2733
1038
  msgid "Tracking for this block is disabled"
1039
  msgstr "Sledenje za ta blok je onemogočeno"
1040
 
1041
  #: includes/functions-check-now.php:780 includes/functions.old.php:761
1042
- #: includes/functions.php:786
1043
  msgid "Double click to toggle controls in public reports"
1044
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
1045
 
1046
  #: includes/functions-check-now.php:786 includes/functions.old.php:767
1047
- #: includes/functions.php:792 settings.php:3551 settings.php:3587
1048
- #: settings.php:3629 strings.php:223
1049
  msgid "Loading..."
1050
  msgstr "Nalagam..."
1051
 
1052
  #: includes/functions-check-now.php:807 includes/functions.old.php:788
1053
- #: includes/functions.php:813
1054
  msgid ""
1055
  "Clear statistics data for the selected range - clear both dates to delete "
1056
  "all data for this block"
@@ -1059,84 +1059,84 @@ msgstr ""
1059
  "brisanje vseh podatkov za ta blok"
1060
 
1061
  #: includes/functions-check-now.php:811 includes/functions.old.php:792
1062
- #: includes/functions.php:817
1063
  msgid "Auto refresh data for the selected range every 60 seconds"
1064
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
1065
 
1066
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1067
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1068
- #: includes/functions.php:820 includes/functions.php:5736
1069
  msgid "Load data for last month"
1070
  msgstr "Naloži podatke za zadnji mesec"
1071
 
1072
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1073
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1074
- #: includes/functions.php:820 includes/functions.php:5736
1075
  msgid "Last Month"
1076
  msgstr "Zadnji Mesec"
1077
 
1078
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1079
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1080
- #: includes/functions.php:823 includes/functions.php:5739
1081
  msgid "Load data for this month"
1082
  msgstr "Naloži podatke za ta mesec"
1083
 
1084
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1085
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1086
- #: includes/functions.php:823 includes/functions.php:5739
1087
  msgid "This Month"
1088
  msgstr "Ta Mesec"
1089
 
1090
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1091
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1092
- #: includes/functions.php:826 includes/functions.php:5742
1093
  msgid "Load data for this year"
1094
  msgstr "Naloži podatke za to leto"
1095
 
1096
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1097
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1098
- #: includes/functions.php:826 includes/functions.php:5742
1099
  msgid "This Year"
1100
  msgstr "To Leto"
1101
 
1102
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
1103
  #: includes/functions.old.php:804 includes/functions.old.php:5271
1104
- #: includes/functions.php:829 includes/functions.php:5745
1105
  msgid "Load data for the last 15 days"
1106
  msgstr "Naloži podatke za zadnjih 15 dni"
1107
 
1108
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
1109
  #: includes/functions.old.php:807 includes/functions.old.php:5274
1110
- #: includes/functions.php:832 includes/functions.php:5748
1111
  msgid "Load data for the last 30 days"
1112
  msgstr "Naloži podatke za zadnjih 30 dni"
1113
 
1114
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
1115
  #: includes/functions.old.php:810 includes/functions.old.php:5277
1116
- #: includes/functions.php:835 includes/functions.php:5751
1117
  msgid "Load data for the last 90 days"
1118
  msgstr "Naloži podatke za zadnjih 90 dni"
1119
 
1120
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
1121
  #: includes/functions.old.php:813 includes/functions.old.php:5280
1122
- #: includes/functions.php:838 includes/functions.php:5754
1123
  msgid "Load data for the last 180 days"
1124
  msgstr "Naloži podatke za zadnjih 180 dni"
1125
 
1126
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
1127
  #: includes/functions.old.php:816 includes/functions.old.php:5283
1128
- #: includes/functions.php:841 includes/functions.php:5757
1129
  msgid "Load data for the last 365 days"
1130
  msgstr "Naloži podatke za zadnjih 365 dni"
1131
 
1132
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
1133
  #: includes/functions.old.php:826 includes/functions.old.php:5293
1134
- #: includes/functions.php:851 includes/functions.php:5767
1135
  msgid "Load data for the selected range"
1136
  msgstr "Naloži podatke za izbrano obdobje"
1137
 
1138
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1139
- #: includes/functions.php:867
1140
  msgid ""
1141
  "Import settings when saving - if checked, the encoded settings below will be "
1142
  "imported for this block"
@@ -1145,12 +1145,12 @@ msgstr ""
1145
  "nastavitve spodaj uvozile za ta blok"
1146
 
1147
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1148
- #: includes/functions.php:867
1149
  msgid "Import settings for block"
1150
  msgstr "Uvozi nastavitve za blok"
1151
 
1152
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1153
- #: includes/functions.php:871
1154
  msgid ""
1155
  "Import block name when saving - if checked and 'Import settings for block' "
1156
  "is also checked, the name from encoded settings below will be imported for "
@@ -1161,49 +1161,49 @@ msgstr ""
1161
  "uvozilo za ta blok"
1162
 
1163
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1164
- #: includes/functions.php:871
1165
  msgid "Import block name"
1166
  msgstr "Uvozi ime bloka"
1167
 
1168
  #: includes/functions-check-now.php:869 includes/functions.old.php:850
1169
- #: includes/functions.php:875
1170
  msgid "Saved settings for block"
1171
  msgstr "Shranjene nastavitve za blok"
1172
 
1173
  #: includes/functions-check-now.php:882 includes/functions.old.php:863
1174
- #: includes/functions.php:888
1175
  msgid "Export / Import Ad Inserter Pro Settings"
1176
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1177
 
1178
  #: includes/functions-check-now.php:892 includes/functions.old.php:873
1179
- #: includes/functions.php:898
1180
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1181
  msgstr ""
1182
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1183
  "bloke?"
1184
 
1185
  #: includes/functions-check-now.php:894 includes/functions.old.php:875
1186
- #: includes/functions.php:900
1187
  msgid "Clear All Statistics Data"
1188
  msgstr "Pobriši Vse Podatke o Statistiki"
1189
 
1190
  #: includes/functions-check-now.php:921 includes/functions.old.php:902
1191
- #: includes/functions.php:930
1192
  msgid "Toggle country/city editor"
1193
  msgstr "Preklopi urejevalnik držav/mest"
1194
 
1195
  #: includes/functions-check-now.php:927 includes/functions.old.php:908
1196
- #: includes/functions.php:936
1197
  msgid "IP Addresses"
1198
  msgstr "IP Naslovi"
1199
 
1200
  #: includes/functions-check-now.php:930 includes/functions.old.php:911
1201
- #: includes/functions.php:939
1202
  msgid "Toggle IP address editor"
1203
  msgstr "Preklopi urejevalnik IP nslovov"
1204
 
1205
  #: includes/functions-check-now.php:933 includes/functions.old.php:914
1206
- #: includes/functions.php:942
1207
  msgid ""
1208
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1209
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
@@ -1212,61 +1212,61 @@ msgstr ""
1212
  "naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
1213
 
1214
  #: includes/functions-check-now.php:937 includes/functions.old.php:918
1215
- #: includes/functions.php:951
1216
  msgid "Blacklist IP addresses"
1217
  msgstr "Črni seznam IP naslovov"
1218
 
1219
  #: includes/functions-check-now.php:941 includes/functions.old.php:922
1220
- #: includes/functions.php:955
1221
  msgid "Whitelist IP addresses"
1222
  msgstr "Beli seznam IP naslovov"
1223
 
1224
  #: includes/functions-check-now.php:952 includes/functions.old.php:933
1225
- #: includes/functions.php:966
1226
  msgid "Countries"
1227
  msgstr "Države"
1228
 
1229
  #: includes/functions-check-now.php:953 includes/functions.old.php:934
1230
- #: includes/functions.php:967
1231
  msgid "Cities"
1232
  msgstr "Mesta"
1233
 
1234
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
1235
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1236
- #: includes/functions.php:971 includes/functions.php:3207
1237
  msgid "Toggle country editor"
1238
  msgstr "Preklopi urejevalnik držav"
1239
 
1240
  #: includes/functions-check-now.php:960 includes/functions.old.php:941
1241
- #: includes/functions.php:974
1242
  msgid "Toggle city editor"
1243
  msgstr "Preklopi urejevalnik mest"
1244
 
1245
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
1246
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1247
- #: includes/functions.php:978 includes/functions.php:3210
1248
  msgid "Comma separated country ISO Alpha-2 codes"
1249
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1250
 
1251
  #: includes/functions-check-now.php:968 includes/functions.old.php:949
1252
- #: includes/functions.php:987
1253
  msgid "Blacklist countries"
1254
  msgstr "Črni seznam držav"
1255
 
1256
  #: includes/functions-check-now.php:972 includes/functions.old.php:953
1257
- #: includes/functions.php:991
1258
  msgid "Whitelist countries"
1259
  msgstr "Beli seznam držav"
1260
 
1261
  #: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
1262
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1263
- #: includes/functions.php:1447 includes/functions.php:1757
1264
  msgid "Enter license key"
1265
  msgstr "Vnesite licenčni ključ"
1266
 
1267
  #. translators: %s: Ad Inserter Pro
1268
  #: includes/functions-check-now.php:1388 includes/functions.old.php:1367
1269
- #: includes/functions.php:1453
1270
  msgid ""
1271
  "%s license key is not set. Plugin functionality is limited and updates are "
1272
  "disabled."
@@ -1275,63 +1275,63 @@ msgstr ""
1275
  "posodobitve onemogočene."
1276
 
1277
  #. translators: %s: Ad Inserter Pro
1278
- #: includes/functions-check-now.php:1402 includes/functions.php:1467
1279
  msgid "Warning: %s plugin update server is not accessible"
1280
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
1281
 
1282
  #. translators: updates are not available
1283
- #: includes/functions-check-now.php:1404 includes/functions.php:1469
1284
  msgid "updates"
1285
  msgstr "posodobitve"
1286
 
1287
  #. translators: updates are not available
1288
- #: includes/functions-check-now.php:1406 includes/functions.php:1471
1289
  msgid "are not available"
1290
  msgstr "niso na razpolago"
1291
 
1292
  #: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
1293
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1294
- #: includes/functions.php:1476 includes/functions.php:1766
1295
  msgid "Check license key"
1296
  msgstr "Preverite licenčni ključ"
1297
 
1298
  #. translators: %s: Ad Inserter Pro
1299
  #: includes/functions-check-now.php:1417 includes/functions.old.php:1385
1300
- #: includes/functions.php:1482
1301
  msgid "Invalid %s license key."
1302
  msgstr "Neveljaven %s licenčni ključ."
1303
 
1304
  #. translators: %s: Ad Inserter Pro
1305
  #: includes/functions-check-now.php:1426 includes/functions.old.php:1394
1306
- #: includes/functions.php:1491
1307
  msgid "%s license expired. Plugin updates are disabled."
1308
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1309
 
1310
  #: includes/functions-check-now.php:1427 includes/functions.old.php:1395
1311
- #: includes/functions.php:1492
1312
  msgid "Renew license"
1313
  msgstr "Obnovite licenco"
1314
 
1315
  #. translators: %s: Ad Inserter Pro
1316
  #: includes/functions-check-now.php:1435 includes/functions.old.php:1403
1317
- #: includes/functions.php:1500
1318
  msgid "%s license overused. Plugin updates are disabled."
1319
  msgstr ""
1320
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1321
 
1322
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1323
- #: includes/functions.php:1501
1324
  msgid "Manage licenses"
1325
  msgstr "Upravljajte z licencami"
1326
 
1327
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1328
- #: includes/functions.php:1501
1329
  msgid "Upgrade license"
1330
  msgstr "Nadgradite licenco"
1331
 
1332
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1333
  #: includes/functions-check-now.php:1683 includes/functions.old.php:1610
1334
- #: includes/functions.php:1759
1335
  msgid ""
1336
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1337
  "limited and updates are disabled."
@@ -1341,13 +1341,13 @@ msgstr ""
1341
 
1342
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1343
  #: includes/functions-check-now.php:1692 includes/functions.old.php:1619
1344
- #: includes/functions.php:1768
1345
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1346
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1347
 
1348
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1349
  #: includes/functions-check-now.php:1708 includes/functions.old.php:1635
1350
- #: includes/functions.php:1784
1351
  msgid ""
1352
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1353
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
@@ -1358,7 +1358,7 @@ msgstr ""
1358
 
1359
  #. translators: 1, 3: HTML tags, 2: percentage
1360
  #: includes/functions-check-now.php:1715 includes/functions.old.php:1642
1361
- #: includes/functions.php:1791
1362
  msgid ""
1363
  "During the license period and 30 days after the license has expired we offer "
1364
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
@@ -1367,28 +1367,28 @@ msgstr ""
1367
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1368
 
1369
  #: includes/functions-check-now.php:1725 includes/functions.old.php:1652
1370
- #: includes/functions.php:1801
1371
  msgid "No, thank you."
1372
  msgstr "Ne, hvala."
1373
 
1374
  #: includes/functions-check-now.php:1728 includes/functions.old.php:1655
1375
- #: includes/functions.php:1804
1376
  msgid "Not now, maybe later."
1377
  msgstr "Ne zdaj, mogoče kasneje."
1378
 
1379
  #: includes/functions-check-now.php:1742 includes/functions.old.php:1669
1380
- #: includes/functions.php:1818
1381
  msgid "Renew the licence"
1382
  msgstr "Obnovi licenco"
1383
 
1384
  #: includes/functions-check-now.php:1744 includes/functions.old.php:1671
1385
- #: includes/functions.php:1820
1386
  msgid "Update license status"
1387
  msgstr "Posodobi status licence"
1388
 
1389
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1390
  #: includes/functions-check-now.php:1755 includes/functions.old.php:1682
1391
- #: includes/functions.php:1833
1392
  msgid ""
1393
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1394
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
@@ -1399,122 +1399,122 @@ msgstr ""
1399
 
1400
  #. Translators: %s: HTML tag
1401
  #: includes/functions-check-now.php:1777 includes/functions.old.php:1704
1402
- #: includes/functions.php:1885
1403
  msgid "Warning: %s MaxMind IP geolocation database not found."
1404
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1405
 
1406
  #: includes/functions-check-now.php:2330 includes/functions.old.php:2255
1407
- #: includes/functions.php:2506
1408
  msgid "Geolocation"
1409
  msgstr "Geolokacija"
1410
 
1411
  #: includes/functions-check-now.php:2334 includes/functions.old.php:2259
1412
- #: includes/functions.php:2510 settings.php:4262
1413
  msgid "Exceptions"
1414
  msgstr "Izjeme"
1415
 
1416
  #: includes/functions-check-now.php:2339 includes/functions.old.php:2264
1417
- #: includes/functions.php:2515
1418
  msgid "Multisite"
1419
  msgstr "Multisite"
1420
 
1421
  #: includes/functions-check-now.php:2344 includes/functions.old.php:2269
1422
- #: includes/functions.php:2520 settings.php:4268
1423
  msgid "Tracking"
1424
  msgstr "Sledenje"
1425
 
1426
  #. translators: %d: days, hours, minutes
1427
  #: includes/functions-check-now.php:2375 includes/functions.old.php:2300
1428
- #: includes/functions.php:2551
1429
  msgid "Scheduled in %d days %d hours %d minutes"
1430
  msgstr "Planirano v %d dneh %d urah %d minutah"
1431
 
1432
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1433
  #. HTML code for long dash separator
1434
  #: includes/functions-check-now.php:2384 includes/functions.old.php:2309
1435
- #: includes/functions.php:2560
1436
  msgid "Active %s expires in %d days %d hours %d minutes"
1437
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1438
 
1439
  #: includes/functions-check-now.php:2388 includes/functions.old.php:2313
1440
- #: includes/functions.php:2564
1441
  msgid "Expired"
1442
  msgstr "Poteklo"
1443
 
1444
  #: includes/functions-check-now.php:2396 includes/functions.old.php:2321
1445
- #: includes/functions.php:2590 settings.php:1441 settings.php:1456
1446
- #: settings.php:1546 settings.php:2172
1447
  msgid "and"
1448
  msgstr "in"
1449
 
1450
  #: includes/functions-check-now.php:2399 includes/functions.old.php:2324
1451
- #: includes/functions.php:2572
1452
  msgid "fallback"
1453
  msgstr "rezerva"
1454
 
1455
  #: includes/functions-check-now.php:2400 includes/functions.old.php:2325
1456
- #: includes/functions.php:2573
1457
  msgid "Block to be used when scheduling expires"
1458
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1459
 
1460
  #: includes/functions-check-now.php:2425 includes/functions.old.php:2350
1461
- #: includes/functions.php:2610
1462
  msgid "Load in iframe"
1463
  msgstr "Naloži v iframe-u"
1464
 
1465
  #: includes/functions-check-now.php:2429 includes/functions.old.php:2354
1466
- #: includes/functions.php:2614 includes/placeholders.php:389
1467
  msgid "Width"
1468
  msgstr "Širina"
1469
 
1470
  #: includes/functions-check-now.php:2430 includes/functions.old.php:2355
1471
- #: includes/functions.php:2615
1472
  msgid "iframe width, empty means full width (100%)"
1473
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1474
 
1475
  #: includes/functions-check-now.php:2436 includes/functions.old.php:2361
1476
- #: includes/functions.php:2621 includes/placeholders.php:384
1477
  msgid "Height"
1478
  msgstr "Višina"
1479
 
1480
  #: includes/functions-check-now.php:2437 includes/functions.old.php:2362
1481
- #: includes/functions.php:2622
1482
  msgid "iframe height, empty means adjust it to iframe content height"
1483
  msgstr ""
1484
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1485
 
1486
  #: includes/functions-check-now.php:2444 includes/functions.old.php:2369
1487
- #: includes/functions.php:2629
1488
  msgid "Ad label in iframe"
1489
  msgstr "Oznaka oglasa v iframe-u"
1490
 
1491
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1492
- #: includes/functions.php:2634
1493
  msgid "Preview iframe code"
1494
  msgstr "Predpreglej kodo iframe"
1495
 
1496
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1497
- #: includes/functions.php:2634 includes/preview.php:2001 settings.php:1108
1498
- #: settings.php:2893
1499
  msgid "Preview"
1500
  msgstr "Predogled"
1501
 
1502
  #: includes/functions-check-now.php:2463 includes/functions.old.php:2388
1503
- #: includes/functions.php:2648 settings.php:4269
1504
  msgid "Limits"
1505
  msgstr "Omejitve"
1506
 
1507
  #: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
1508
  #: includes/functions-check-now.php:4429 includes/functions.old.php:2393
1509
  #: includes/functions.old.php:4266 includes/functions.old.php:4329
1510
- #: includes/functions.php:2653 includes/functions.php:4712
1511
- #: includes/functions.php:4775 settings.php:2322
1512
  msgid "Ad Blocking"
1513
  msgstr "Blokiranje Oglasov"
1514
 
1515
  #. translators: 1, 2 and 3, 4: HTML tags
1516
  #: includes/functions-check-now.php:2477 includes/functions.old.php:2402
1517
- #: includes/functions.php:2662
1518
  msgid ""
1519
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1520
  "for tracking!"
@@ -1525,7 +1525,7 @@ msgstr ""
1525
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1526
  #. header
1527
  #: includes/functions-check-now.php:2486 includes/functions.old.php:2411
1528
- #: includes/functions.php:2671
1529
  msgid ""
1530
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1531
  "enabled and automatic insertion %6$s!"
@@ -1534,18 +1534,18 @@ msgstr ""
1534
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1535
 
1536
  #: includes/functions-check-now.php:2553 includes/functions.old.php:2478
1537
- #: includes/functions.php:2737
1538
  msgid "Click fraud protection is globally disabled"
1539
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1540
 
1541
  #: includes/functions-check-now.php:2557 includes/functions.old.php:2482
1542
- #: includes/functions.php:2741
1543
  msgid "Max clicks per time period are not defined"
1544
  msgstr "Največje število klikov na časovno enoto ni definirano"
1545
 
1546
  #. Translators: Max n impressions
1547
  #: includes/functions-check-now.php:2571 includes/functions.old.php:2496
1548
- #: includes/functions.php:2755
1549
  msgid "General limits"
1550
  msgstr "Splošne omejitve"
1551
 
@@ -1553,8 +1553,8 @@ msgstr "Splošne omejitve"
1553
  #: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
1554
  #: includes/functions-check-now.php:2674 includes/functions.old.php:2502
1555
  #: includes/functions.old.php:2514 includes/functions.old.php:2599
1556
- #: includes/functions.php:2761 includes/functions.php:2773
1557
- #: includes/functions.php:2858
1558
  msgid "Current value"
1559
  msgstr "Trenutna vrednost"
1560
 
@@ -1574,15 +1574,15 @@ msgstr "Trenutna vrednost"
1574
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1575
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1576
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1577
- #: includes/functions.php:2780 includes/functions.php:2790
1578
- #: includes/functions.php:2809 includes/functions.php:2819
1579
- #: includes/functions.php:2865 includes/functions.php:2874
1580
- #: includes/functions.php:2892 includes/functions.php:2901 settings.php:2093
1581
  msgid "Max"
1582
  msgstr "Največ"
1583
 
1584
  #: includes/functions-check-now.php:2597 includes/functions.old.php:2522
1585
- #: includes/functions.php:2781
1586
  msgid ""
1587
  "Maximum number of impressions for this block. Empty means no general "
1588
  "impression limit."
@@ -1598,8 +1598,8 @@ msgstr ""
1598
  #: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
1599
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1600
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1601
- #: includes/functions.php:2783 includes/functions.php:2793
1602
- #: includes/functions.php:2868 includes/functions.php:2877
1603
  msgid "impression"
1604
  msgid_plural "impressions"
1605
  msgstr[0] "prikaz"
@@ -1608,7 +1608,7 @@ msgstr[2] "prikazi"
1608
  msgstr[3] "prikazov"
1609
 
1610
  #: includes/functions-check-now.php:2607 includes/functions.old.php:2532
1611
- #: includes/functions.php:2791
1612
  msgid ""
1613
  "Maximum number of impressions per time period. Empty means no time limit."
1614
  msgstr ""
@@ -1623,14 +1623,14 @@ msgstr ""
1623
  #: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
1624
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1625
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1626
- #: includes/functions.php:2797 includes/functions.php:2826
1627
- #: includes/functions.php:2881 includes/functions.php:2908
1628
  msgid "per"
1629
  msgstr "na"
1630
 
1631
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1632
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1633
- #: includes/functions.php:2798 includes/functions.php:2827
1634
  msgid "Time period in days. Empty means no time limit."
1635
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1636
 
@@ -1645,11 +1645,11 @@ msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1645
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1646
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1647
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1648
- #: includes/functions.php:2800 includes/functions.php:2829
1649
- #: includes/functions.php:2884 includes/functions.php:2911
1650
- #: includes/functions.php:3017 includes/functions.php:3368 strings.php:204
1651
- #: strings.php:205 strings.php:206 strings.php:207 strings.php:208
1652
- #: strings.php:209
1653
  msgid "day"
1654
  msgid_plural "days"
1655
  msgstr[0] "dan"
@@ -1658,7 +1658,7 @@ msgstr[2] "dni"
1658
  msgstr[3] "dni"
1659
 
1660
  #: includes/functions-check-now.php:2626 includes/functions.old.php:2551
1661
- #: includes/functions.php:2810
1662
  msgid ""
1663
  "Maximum number of clicks on this block. Empty means no general click limit."
1664
  msgstr ""
@@ -1674,9 +1674,9 @@ msgstr ""
1674
  #: includes/functions-check-now.php:4577 includes/functions.old.php:2553
1675
  #: includes/functions.old.php:2563 includes/functions.old.php:2636
1676
  #: includes/functions.old.php:2645 includes/functions.old.php:4477
1677
- #: includes/functions.php:2812 includes/functions.php:2822
1678
- #: includes/functions.php:2895 includes/functions.php:2904
1679
- #: includes/functions.php:4923
1680
  msgid "click"
1681
  msgid_plural "clicks"
1682
  msgstr[0] "klik"
@@ -1685,20 +1685,20 @@ msgstr[2] "kliki"
1685
  msgstr[3] "klikov"
1686
 
1687
  #: includes/functions-check-now.php:2636 includes/functions.old.php:2561
1688
- #: includes/functions.php:2820
1689
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1690
  msgstr ""
1691
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1692
  "omejitev."
1693
 
1694
  #: includes/functions-check-now.php:2661 includes/functions.old.php:2586
1695
- #: includes/functions.php:2845
1696
  msgid "Individual visitor limits"
1697
  msgstr "Omejitve posameznih obiskovalcev"
1698
 
1699
  #: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
1700
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1701
- #: includes/functions.php:2849 includes/functions.php:2851
1702
  msgid ""
1703
  "When specified number of clicks on this block for a visitor will be reached "
1704
  "in the specified time period, all blocks that have click fraud protection "
@@ -1711,12 +1711,12 @@ msgstr ""
1711
  "pred goljufijo s kliki."
1712
 
1713
  #: includes/functions-check-now.php:2667 includes/functions.old.php:2592
1714
- #: includes/functions.php:2851
1715
  msgid "Trigger click fraud protection"
1716
  msgstr "Sproži zaščito pred goljufijo s kliki"
1717
 
1718
  #: includes/functions-check-now.php:2682 includes/functions.old.php:2607
1719
- #: includes/functions.php:2866
1720
  msgid ""
1721
  "Maximum number of impressions of this block for each visitor. Empty means no "
1722
  "impression limit."
@@ -1725,7 +1725,7 @@ msgstr ""
1725
  "pomeni brez omejitev prikazov."
1726
 
1727
  #: includes/functions-check-now.php:2691 includes/functions.old.php:2616
1728
- #: includes/functions.php:2875
1729
  msgid ""
1730
  "Maximum number of impressions per time period for each visitor. Empty means "
1731
  "no impression limit per time period for visitors."
@@ -1735,7 +1735,7 @@ msgstr ""
1735
 
1736
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1737
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1738
- #: includes/functions.php:2882 includes/functions.php:2909
1739
  msgid ""
1740
  "Time period in days. Use decimal value (with decimal point) for shorter "
1741
  "periods. Empty means no time limit."
@@ -1744,7 +1744,7 @@ msgstr ""
1744
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1745
 
1746
  #: includes/functions-check-now.php:2709 includes/functions.old.php:2634
1747
- #: includes/functions.php:2893
1748
  msgid ""
1749
  "Maximum number of clicks on this block for each visitor. Empty means no "
1750
  "click limit."
@@ -1753,7 +1753,7 @@ msgstr ""
1753
  "brez omejitev klikov."
1754
 
1755
  #: includes/functions-check-now.php:2718 includes/functions.old.php:2643
1756
- #: includes/functions.php:2902
1757
  msgid ""
1758
  "Maximum number of clicks per time period for each visitor. Empty means no "
1759
  "click limit per time period for visitors."
@@ -1762,39 +1762,39 @@ msgstr ""
1762
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1763
 
1764
  #: includes/functions-check-now.php:2744 includes/functions.old.php:2669
1765
- #: includes/functions.php:2928
1766
  msgid "When ad blocking is detected"
1767
  msgstr "Ko je blokiranje oglasov zaznano"
1768
 
1769
  #: includes/functions-check-now.php:2753 includes/functions.old.php:2678
1770
- #: includes/functions.php:2937
1771
  msgid "replacement"
1772
  msgstr "nadomestek"
1773
 
1774
  #: includes/functions-check-now.php:2754 includes/functions.old.php:2679
1775
- #: includes/functions.php:2938
1776
  msgid "Block to be shown when ad blocking is detected"
1777
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1778
 
1779
  #: includes/functions-check-now.php:2755 includes/functions.old.php:2680
1780
- #: includes/functions.php:2939
1781
  msgctxt "replacement"
1782
  msgid "None"
1783
  msgstr "Noben"
1784
 
1785
  #: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
1786
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1787
- #: includes/functions.php:2956 includes/functions.php:5980
1788
  msgid "Close button"
1789
  msgstr "Gumb Zapri"
1790
 
1791
  #: includes/functions-check-now.php:2824 includes/functions.old.php:2749
1792
- #: includes/functions.php:3008
1793
  msgid "Auto close after"
1794
  msgstr "Ssamodejno zapri po"
1795
 
1796
  #: includes/functions-check-now.php:2825 includes/functions.old.php:2750
1797
- #: includes/functions.php:3009
1798
  msgid ""
1799
  "Time in seconds in which the ad will automatically close. Leave empty to "
1800
  "disable auto closing."
@@ -1804,12 +1804,12 @@ msgstr ""
1804
 
1805
  #. Translators: Don't show for x days
1806
  #: includes/functions-check-now.php:2830 includes/functions.old.php:2755
1807
- #: includes/functions.php:3014
1808
  msgid "Don't show for"
1809
  msgstr "Ne prikaži"
1810
 
1811
  #: includes/functions-check-now.php:2831 includes/functions.old.php:2756
1812
- #: includes/functions.php:3015
1813
  msgid ""
1814
  "Time in days in which closed ad will not be shown again. Use decimal value "
1815
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1821,12 +1821,12 @@ msgstr ""
1821
 
1822
  #. Translators: Delay showing for x pageviews
1823
  #: includes/functions-check-now.php:2851 includes/functions.old.php:2776
1824
- #: includes/functions.php:3035
1825
  msgid "Delay showing for"
1826
  msgstr "Zakasni prikaz za"
1827
 
1828
  #: includes/functions-check-now.php:2852 includes/functions.old.php:2777
1829
- #: includes/functions.php:3036
1830
  msgid ""
1831
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1832
  "empty to insert the code for the first pageview."
@@ -1838,7 +1838,7 @@ msgstr ""
1838
  #. Translators: Show every x pageviews
1839
  #: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
1840
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1841
- #: includes/functions.php:3038 includes/functions.php:3045
1842
  msgid "pageview"
1843
  msgid_plural "pageviews"
1844
  msgstr[0] "ogled strani"
@@ -1848,7 +1848,7 @@ msgstr[3] "ogledov strani"
1848
 
1849
  #. Translators: Show every x pageviews
1850
  #: includes/functions-check-now.php:2858 includes/functions.old.php:2783
1851
- #: includes/functions.php:3042
1852
  msgid "Show every"
1853
  msgid_plural "Show every"
1854
  msgstr[0] "Prikaži vsak"
@@ -1857,7 +1857,7 @@ msgstr[2] "Prikaži vsake"
1857
  msgstr[3] "Prikaži vsakih"
1858
 
1859
  #: includes/functions-check-now.php:2859 includes/functions.old.php:2784
1860
- #: includes/functions.php:3043
1861
  msgid ""
1862
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1863
  "for every pageview."
@@ -1866,33 +1866,33 @@ msgstr ""
1866
  "vstavljanje kode pri vsakem ogledu strani."
1867
 
1868
  #: includes/functions-check-now.php:2878 includes/functions.old.php:2803
1869
- #: includes/functions.php:3062
1870
  msgid "Lazy loading"
1871
  msgstr "Leno nalaganje"
1872
 
1873
  #. Translators: %s MaxMind
1874
  #: includes/functions-check-now.php:2935 includes/functions.old.php:2860
1875
- #: includes/functions.php:3131
1876
  msgid "This product includes GeoLite2 data created by %s"
1877
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1878
 
1879
  #: includes/functions-check-now.php:2946 includes/functions.old.php:2871
1880
- #: includes/functions.php:3144
1881
  msgid "IP geolocation database"
1882
  msgstr "Podatkovna baza za IP geolokacijo"
1883
 
1884
  #: includes/functions-check-now.php:2949 includes/functions.old.php:2874
1885
- #: includes/functions.php:3147
1886
  msgid "Select IP geolocation database."
1887
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1888
 
1889
  #: includes/functions-check-now.php:2960 includes/functions.old.php:2885
1890
- #: includes/functions.php:3158
1891
  msgid "Automatic database updates"
1892
  msgstr "Samodejna posodobitev podatkovne baze"
1893
 
1894
  #: includes/functions-check-now.php:2963 includes/functions.old.php:2888
1895
- #: includes/functions.php:3161
1896
  msgid ""
1897
  "Automatically download and update free GeoLite2 IP geolocation database by "
1898
  "MaxMind"
@@ -1901,12 +1901,12 @@ msgstr ""
1901
  "podatkovno bazo MaxMind"
1902
 
1903
  #: includes/functions-check-now.php:2971 includes/functions.old.php:2896
1904
- #: includes/functions.php:3178
1905
  msgid "Database"
1906
  msgstr "Podatkovna baza"
1907
 
1908
  #: includes/functions-check-now.php:2974 includes/functions.old.php:2899
1909
- #: includes/functions.php:3181
1910
  msgid ""
1911
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1912
  "file"
@@ -1916,17 +1916,17 @@ msgstr ""
1916
 
1917
  #. translators: %d: group number
1918
  #: includes/functions-check-now.php:2992 includes/functions.old.php:2917
1919
- #: includes/functions.php:3199
1920
  msgid "Group %d"
1921
  msgstr "Skupina %d"
1922
 
1923
  #: includes/functions-check-now.php:2998 includes/functions.old.php:2923
1924
- #: includes/functions.php:3205
1925
  msgid "countries"
1926
  msgstr "države"
1927
 
1928
  #: includes/functions-check-now.php:3043 includes/functions.old.php:2968
1929
- #: includes/functions.php:3250
1930
  msgid ""
1931
  "Enable impression and click tracking. You also need to enable tracking for "
1932
  "each block you want to track."
@@ -1935,38 +1935,38 @@ msgstr ""
1935
  "vsak blok, ki bi ga radi sledili."
1936
 
1937
  #: includes/functions-check-now.php:3050 includes/functions.old.php:2975
1938
- #: includes/functions.php:3257
1939
  msgid "Generate report"
1940
  msgstr "Generiraj poročilo"
1941
 
1942
  #: includes/functions-check-now.php:3058 includes/functions.old.php:2983
1943
- #: includes/functions.php:3265
1944
  msgid "Impression and Click Tracking"
1945
  msgstr "Sledenje Prikazov in Klikov"
1946
 
1947
  #: includes/functions-check-now.php:3059 includes/functions.old.php:2984
1948
- #: includes/functions.php:3266 settings.php:2781
1949
  msgctxt "ad blocking detection"
1950
  msgid "NOT ENABLED"
1951
  msgstr "NI OMOGOČENO"
1952
 
1953
  #: includes/functions-check-now.php:3075 includes/functions.old.php:3000
1954
- #: includes/functions.php:3282
1955
  msgid "Internal"
1956
  msgstr "Notranje"
1957
 
1958
  #: includes/functions-check-now.php:3079 includes/functions.old.php:3004
1959
- #: includes/functions.php:3286
1960
  msgid "Track impressions and clicks with internal tracking and statistics"
1961
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1962
 
1963
  #: includes/functions-check-now.php:3084 includes/functions.old.php:3009
1964
- #: includes/functions.php:3291
1965
  msgid "External"
1966
  msgstr "Zunanje"
1967
 
1968
  #: includes/functions-check-now.php:3088 includes/functions.old.php:3013
1969
- #: includes/functions.php:3295
1970
  msgid ""
1971
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1972
  "code installed)"
@@ -1975,32 +1975,32 @@ msgstr ""
1975
  "kodo za sledenje)"
1976
 
1977
  #: includes/functions-check-now.php:3093 includes/functions.old.php:3018
1978
- #: includes/functions.php:3300
1979
  msgid "Track Pageviews"
1980
  msgstr "Sledi Ogledom Strani"
1981
 
1982
  #: includes/functions-check-now.php:3099 includes/functions.old.php:3024
1983
- #: includes/functions.php:3306
1984
  msgid "Track Pageviews by Device (as configured for viewports)"
1985
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1986
 
1987
  #: includes/functions-check-now.php:3109 includes/functions.old.php:3034
1988
- #: includes/functions.php:3316
1989
  msgid "Track for Logged in Users"
1990
  msgstr "Sledi za Prijavljene Upor."
1991
 
1992
  #: includes/functions-check-now.php:3115 includes/functions.old.php:3040
1993
- #: includes/functions.php:3322
1994
  msgid "Track impressions and clicks from logged in users"
1995
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1996
 
1997
  #: includes/functions-check-now.php:3125 includes/functions.old.php:3050
1998
- #: includes/functions.php:3332
1999
  msgid "Click Detection"
2000
  msgstr "Zaznavanje klikov"
2001
 
2002
  #: includes/functions-check-now.php:3131 includes/functions.old.php:3056
2003
- #: includes/functions.php:3338
2004
  msgid ""
2005
  "Standard method detects clicks only on banners with links, Advanced method "
2006
  "can detect clicks on any kind of ads, but it is slightly less accurate"
@@ -2009,22 +2009,22 @@ msgstr ""
2009
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
2010
 
2011
  #: includes/functions-check-now.php:3150 includes/functions.old.php:3075
2012
- #: includes/functions.php:3357
2013
  msgid "Click fraud protection"
2014
  msgstr "Zaščita pred goljufijo s kliki"
2015
 
2016
  #: includes/functions-check-now.php:3154 includes/functions.old.php:3079
2017
- #: includes/functions.php:3361
2018
  msgid "Globally enable click fraud protection for selected blocks."
2019
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
2020
 
2021
  #: includes/functions-check-now.php:3160 includes/functions.old.php:3085
2022
- #: includes/functions.php:3367
2023
  msgid "Protection time"
2024
  msgstr "Čas zaščite"
2025
 
2026
  #: includes/functions-check-now.php:3161 includes/functions.old.php:3086
2027
- #: includes/functions.php:3368
2028
  msgid ""
2029
  "Time period in days in which blocks with enabled click fraud protection will "
2030
  "be hidden. Use decimal value (with decimal point) for shorter periods."
@@ -2034,12 +2034,12 @@ msgstr ""
2034
  "za krajša obdobja."
2035
 
2036
  #: includes/functions-check-now.php:3180 includes/functions.old.php:3105
2037
- #: includes/functions.php:3387
2038
  msgid "Report header image"
2039
  msgstr "Slika v glavi poročila"
2040
 
2041
  #: includes/functions-check-now.php:3183 includes/functions.old.php:3108
2042
- #: includes/functions.php:3390
2043
  msgid ""
2044
  "Image or logo to be displayed in the header of the statistins report. "
2045
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
@@ -2050,17 +2050,17 @@ msgstr ""
2050
  "ponastavitev na privzeto sliko."
2051
 
2052
  #: includes/functions-check-now.php:3184 includes/functions.old.php:3109
2053
- #: includes/functions.php:3391 strings.php:235
2054
  msgid "Select or upload header image"
2055
  msgstr "Izberi ali naloži sliko glave"
2056
 
2057
  #: includes/functions-check-now.php:3189 includes/functions.old.php:3114
2058
- #: includes/functions.php:3396
2059
  msgid "Report header title"
2060
  msgstr "Naslov v glavi poročila"
2061
 
2062
  #: includes/functions-check-now.php:3192 includes/functions.old.php:3117
2063
- #: includes/functions.php:3399
2064
  msgid ""
2065
  "Title to be displayed in the header of the statistics report. Text or HTML "
2066
  "code, clear to reset to default text."
@@ -2069,12 +2069,12 @@ msgstr ""
2069
  "pobrišite za ponastavitev na privzeto besedilo."
2070
 
2071
  #: includes/functions-check-now.php:3197 includes/functions.old.php:3122
2072
- #: includes/functions.php:3404
2073
  msgid "Report header description"
2074
  msgstr "Opis v glavi poročila"
2075
 
2076
  #: includes/functions-check-now.php:3200 includes/functions.old.php:3125
2077
- #: includes/functions.php:3407
2078
  msgid ""
2079
  "Description to be displayed in the header of the statistics report. Text or "
2080
  "HTML code, clear to reset to default text."
@@ -2083,12 +2083,12 @@ msgstr ""
2083
  "pobrišite za ponastavitev na privzeto besedilo."
2084
 
2085
  #: includes/functions-check-now.php:3205 includes/functions.old.php:3130
2086
- #: includes/functions.php:3412
2087
  msgid "Report footer"
2088
  msgstr "Noga poročila"
2089
 
2090
  #: includes/functions-check-now.php:3208 includes/functions.old.php:3133
2091
- #: includes/functions.php:3415
2092
  msgid ""
2093
  "Text to be displayed in the footer of the statistics report. Clear to reset "
2094
  "to default text."
@@ -2097,139 +2097,139 @@ msgstr ""
2097
  "koda, pobrišite za ponastavitev na privzeto besedilo."
2098
 
2099
  #: includes/functions-check-now.php:3213 includes/functions.old.php:3138
2100
- #: includes/functions.php:3420
2101
  msgid "Public report key"
2102
  msgstr "Ključ za javno poročilo"
2103
 
2104
  #: includes/functions-check-now.php:3216 includes/functions.old.php:3141
2105
- #: includes/functions.php:3423
2106
  msgid "String to generate unique report IDs. Clear to reset to default value."
2107
  msgstr ""
2108
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
2109
  "privzeto vrednost."
2110
 
2111
  #: includes/functions-check-now.php:3248 includes/functions.old.php:3173
2112
- #: includes/functions.php:3486
2113
  msgid "Are you sure you want to clear all exceptions for block"
2114
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
2115
 
2116
  #: includes/functions-check-now.php:3249 includes/functions.old.php:3174
2117
- #: includes/functions.php:3487
2118
  msgid "Clear all exceptions for block"
2119
  msgstr "Pobriši vse izjeme za blok"
2120
 
2121
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
2122
- #: includes/functions.php:3494
2123
  msgid "Are you sure you want to clear all exceptions?"
2124
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
2125
 
2126
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
2127
- #: includes/functions.php:3494
2128
  msgid "Clear all exceptions for all blocks"
2129
  msgstr "Pobriši vse izjeme za vse bloke"
2130
 
2131
  #: includes/functions-check-now.php:3261 includes/functions.old.php:3186
2132
- #: includes/functions.php:3499 settings.php:3860 settings.php:4345
2133
  msgid "Type"
2134
  msgstr "Vrsta"
2135
 
2136
  #: includes/functions-check-now.php:3279 includes/functions.old.php:3204
2137
- #: includes/functions.php:3517
2138
  msgid "View"
2139
  msgstr "Poglej"
2140
 
2141
  #: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
2142
  #: includes/functions-check-now.php:3291 includes/functions.old.php:3205
2143
  #: includes/functions.old.php:3212 includes/functions.old.php:3216
2144
- #: includes/functions.php:3518 includes/functions.php:3525
2145
- #: includes/functions.php:3529 includes/placeholders.php:353
2146
- #: includes/preview.php:2307 settings.php:1345 settings.php:3620
2147
  msgid "Edit"
2148
  msgstr "Uredi"
2149
 
2150
  #: includes/functions-check-now.php:3310 includes/functions.old.php:3235
2151
- #: includes/functions.php:3548
2152
  msgid "Are you sure you want to clear all exceptions for"
2153
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
2154
 
2155
  #: includes/functions-check-now.php:3311 includes/functions.old.php:3236
2156
- #: includes/functions.php:3549
2157
  msgid "Clear all exceptions for"
2158
  msgstr "Pobriši vse izjeme za"
2159
 
2160
  #: includes/functions-check-now.php:3324 includes/functions.old.php:3249
2161
- #: includes/functions.php:3562
2162
  msgid "No exceptions"
2163
  msgstr "Brez izjem"
2164
 
2165
  #. translators: %s: Ad Inserter Pro
2166
  #: includes/functions-check-now.php:3335 includes/functions.old.php:3260
2167
- #: includes/functions.php:3573
2168
  msgid "%s options for network blogs"
2169
  msgstr "%s izbire za omrežne bloge"
2170
 
2171
  #. translators: %s: Ad Inserter Pro
2172
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2173
- #: includes/functions.php:3578
2174
  msgid "Enable %s widgets for sub-sites"
2175
  msgstr "Omogoči %s gradnik za pod-spletišča"
2176
 
2177
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2178
- #: includes/functions.php:3578
2179
  msgid "Widgets"
2180
  msgstr "Gradniki"
2181
 
2182
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2183
- #: includes/functions.php:3583
2184
  msgid "Enable PHP code processing for sub-sites"
2185
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
2186
 
2187
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2188
- #: includes/functions.php:3583
2189
  msgid "PHP Processing"
2190
  msgstr "PHP Procesiranje"
2191
 
2192
  #. translators: %s: Ad Inserter Pro
2193
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2194
- #: includes/functions.php:3588
2195
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2196
  msgstr ""
2197
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
2198
 
2199
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2200
- #: includes/functions.php:3588
2201
  msgid "Post/Page exceptions"
2202
  msgstr "Izjeme prispevkov/strani"
2203
 
2204
  #. translators: %s: Ad Inserter Pro
2205
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2206
- #: includes/functions.php:3593
2207
  msgid "Enable %s settings page for sub-sites"
2208
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
2209
 
2210
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2211
- #: includes/functions.php:3593
2212
  msgid "Settings page"
2213
  msgstr "Stran z nastavitvami"
2214
 
2215
  #. translators: %s: Ad Inserter Pro
2216
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2217
- #: includes/functions.php:3598
2218
  msgid "Enable %s settings of main site to be used for all blogs"
2219
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
2220
 
2221
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2222
- #: includes/functions.php:3598
2223
  msgid "Main site settings used for all blogs"
2224
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
2225
 
2226
  #: includes/functions-check-now.php:3371 includes/functions.old.php:3296
2227
- #: includes/functions.php:3614 settings.php:2780
2228
  msgid "Ad Blocking Detection"
2229
  msgstr "Zaznavanje Blokiranja Oglasov"
2230
 
2231
  #: includes/functions-check-now.php:3377 includes/functions.old.php:3302
2232
- #: includes/functions.php:3620
2233
  msgid ""
2234
  "Standard method is reliable but should be used only if Advanced method does "
2235
  "not work. Advanced method recreates files used for detection with random "
@@ -2244,8 +2244,8 @@ msgstr ""
2244
  #: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
2245
  #: includes/functions-check-now.php:4139 includes/functions.old.php:3929
2246
  #: includes/functions.old.php:4019 includes/functions.old.php:4039
2247
- #: includes/functions.php:4343 includes/functions.php:4465
2248
- #: includes/functions.php:4485
2249
  msgid "AD BLOCKING"
2250
  msgstr "BLOKIRANJE OGLASOV"
2251
 
@@ -2253,86 +2253,86 @@ msgstr "BLOKIRANJE OGLASOV"
2253
  #: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
2254
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
2255
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
2256
- #: includes/functions.php:4344 includes/functions.php:4390
2257
- #: includes/functions.php:4459 includes/functions.php:4486
2258
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2259
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
2260
 
2261
  #: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
2262
  #: includes/functions-check-now.php:4146 includes/functions.old.php:3933
2263
  #: includes/functions.old.php:4012 includes/functions.old.php:4046
2264
- #: includes/functions.php:4347 includes/functions.php:4458
2265
- #: includes/functions.php:4492
2266
  msgid "NO AD BLOCKING"
2267
  msgstr "NI BLOKIRANJA OGLASOV"
2268
 
2269
  #: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
2270
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
2271
- #: includes/functions.php:4389 includes/functions.php:4396
2272
  msgid "AD BLOCKING REPLACEMENT"
2273
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
2274
 
2275
  #: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
2276
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
2277
- #: includes/functions.php:4565 includes/functions.php:4774
2278
  msgid "Pageviews"
2279
  msgstr "Ogledi strani"
2280
 
2281
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2282
- #: includes/functions.php:4711
2283
  msgctxt "Version"
2284
  msgid "Unknown"
2285
  msgstr "Neznana"
2286
 
2287
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2288
- #: includes/functions.php:4711
2289
  msgctxt "Times"
2290
  msgid "DISPLAYED"
2291
  msgstr "PRIKAZANO"
2292
 
2293
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2294
- #: includes/functions.php:4711
2295
  msgid "No version"
2296
  msgstr "Brez različice"
2297
 
2298
  #: includes/functions-check-now.php:4366 includes/functions.old.php:4266
2299
- #: includes/functions.php:4712
2300
  msgctxt "Times"
2301
  msgid "BLOCKED"
2302
  msgstr "BLOKIRANO"
2303
 
2304
  #: includes/functions-check-now.php:4428 includes/functions.old.php:4328
2305
- #: includes/functions.php:4774
2306
  msgid "Impressions"
2307
  msgstr "Prikazi"
2308
 
2309
  #: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
2310
  #: includes/functions-check-now.php:4485 includes/functions.old.php:4329
2311
  #: includes/functions.old.php:4330 includes/functions.old.php:4385
2312
- #: includes/functions.php:4775 includes/functions.php:4776
2313
- #: includes/functions.php:4831
2314
  msgid "Clicks"
2315
  msgstr "Kliki"
2316
 
2317
  #: includes/functions-check-now.php:4430 includes/functions.old.php:4330
2318
- #: includes/functions.php:4776
2319
  msgid "events"
2320
  msgstr "dogodki"
2321
 
2322
  #: includes/functions-check-now.php:4431 includes/functions.old.php:4331
2323
- #: includes/functions.php:4777
2324
  msgid "Ad Blocking Share"
2325
  msgstr "Delež blokiranja oglasov"
2326
 
2327
  #. translators: CTR as Click Through Rate
2328
  #: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
2329
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
2330
- #: includes/functions.php:4777 includes/functions.php:4837
2331
  msgid "CTR"
2332
  msgstr "CTR"
2333
 
2334
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2335
- #: includes/functions.php:4919
2336
  msgid "pageviews"
2337
  msgid_plural "pageviews"
2338
  msgstr[0] "ogled strani"
@@ -2341,7 +2341,7 @@ msgstr[2] "oglede strani"
2341
  msgstr[3] "ogledov strani"
2342
 
2343
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2344
- #: includes/functions.php:4919
2345
  msgid "impressions"
2346
  msgid_plural "impressions"
2347
  msgstr[0] "prikaz"
@@ -2350,7 +2350,7 @@ msgstr[2] "prikazi"
2350
  msgstr[3] "prikazov"
2351
 
2352
  #: includes/functions-check-now.php:4577 includes/functions.old.php:4477
2353
- #: includes/functions.php:4923
2354
  msgid "event"
2355
  msgid_plural "events"
2356
  msgstr[0] "dogodek"
@@ -2359,19 +2359,19 @@ msgstr[2] "dogodki"
2359
  msgstr[3] "dogodkov"
2360
 
2361
  #: includes/functions-check-now.php:4672 includes/functions.old.php:4572
2362
- #: includes/functions.php:5018
2363
  msgctxt "Pageviews / Impressions"
2364
  msgid "Average"
2365
  msgstr "Povprečni"
2366
 
2367
  #: includes/functions-check-now.php:4693 includes/functions.old.php:4593
2368
- #: includes/functions.php:5039
2369
  msgctxt "Ad Blocking / Clicks"
2370
  msgid "Average"
2371
  msgstr "Povprečno"
2372
 
2373
  #: includes/functions-check-now.php:4717 includes/functions.old.php:4617
2374
- #: includes/functions.php:5063
2375
  msgctxt "Ad Blocking Share / CTR"
2376
  msgid "Average"
2377
  msgstr "Povprečni"
@@ -2380,82 +2380,115 @@ msgstr "Povprečni"
2380
  #: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
2381
  #: includes/functions-check-now.php:5334 includes/functions.old.php:4799
2382
  #: includes/functions.old.php:4891 includes/functions.old.php:5207
2383
- #: includes/functions.php:5246 includes/functions.php:5338
2384
- #: includes/functions.php:5681 strings.php:189
2385
  msgid "%s Report"
2386
  msgstr "%s Poročilo"
2387
 
2388
  #: includes/functions-check-now.php:5240 includes/functions.old.php:5113
2389
- #: includes/functions.php:5587
2390
  msgid "for last month"
2391
  msgstr "za zadnji mesec"
2392
 
2393
  #: includes/functions-check-now.php:5245 includes/functions.old.php:5118
2394
- #: includes/functions.php:5592
2395
  msgid "for this month"
2396
  msgstr "za ta mesec"
2397
 
2398
  #: includes/functions-check-now.php:5250 includes/functions.old.php:5123
2399
- #: includes/functions.php:5597
2400
  msgid "for this year"
2401
  msgstr "za to leto"
2402
 
2403
  #: includes/functions-check-now.php:5255 includes/functions.old.php:5128
2404
- #: includes/functions.php:5602
2405
  msgid "for the last 15 days"
2406
  msgstr "za zadnjih 15 dni"
2407
 
2408
  #: includes/functions-check-now.php:5260 includes/functions.old.php:5133
2409
- #: includes/functions.php:5607
2410
  msgid "for the last 30 days"
2411
  msgstr "za zadnjih 30 dni"
2412
 
2413
  #: includes/functions-check-now.php:5265 includes/functions.old.php:5138
2414
- #: includes/functions.php:5612
2415
  msgid "for the last 90 days"
2416
  msgstr "za zadnjih 90 dni"
2417
 
2418
  #: includes/functions-check-now.php:5270 includes/functions.old.php:5143
2419
- #: includes/functions.php:5617
2420
  msgid "for the last 180 days"
2421
  msgstr "za zadnjih 180 dni"
2422
 
2423
  #: includes/functions-check-now.php:5275 includes/functions.old.php:5148
2424
- #: includes/functions.php:5622
2425
  msgid "for the last 365 days"
2426
  msgstr "za zadnjih 365 dni"
2427
 
2428
  #. translators: %s: Ad Inserter Pro
2429
- #: includes/functions.php:557
2430
  msgid "Invalid %s version. Continue?"
2431
  msgstr "Neveljavna izdaja %s. Nadaljujem?"
2432
 
2433
- #: includes/functions.php:947 includes/functions.php:983 settings.php:1672
2434
- #: settings.php:1703 settings.php:1734 settings.php:1765 settings.php:1796
2435
- #: settings.php:1827 settings.php:1857 settings.php:1887
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2436
  msgid "Click to select black or white list"
2437
  msgstr "Klikni za za izbor črnega ali belega seznama"
2438
 
2439
  #. translators: %s: Ad Inserter Pro
2440
- #: includes/functions.php:1509
2441
  msgid "Invalid %s version."
2442
  msgstr "Neveljavna izdaja %s."
2443
 
2444
- #: includes/functions.php:1510
2445
  msgid "Check license"
2446
  msgstr "Preverite licenco"
2447
 
2448
- #: includes/functions.php:1522
2449
  msgid "License"
2450
  msgstr "Licenca"
2451
 
2452
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2453
- #: includes/functions.php:1845
2454
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2455
  msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
2456
 
2457
  #. Translators: %s: HTML tags
2458
- #: includes/functions.php:1890
2459
  msgid ""
2460
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2461
  "account %s and create license key."
@@ -2463,60 +2496,60 @@ msgstr ""
2463
  "Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
2464
  "za GeoLite2 račun %s in ustvarite licenčni ključ."
2465
 
2466
- #: includes/functions.php:2588
2467
  msgid "Start date"
2468
  msgstr "Začetni datum"
2469
 
2470
- #: includes/functions.php:2588
2471
  msgid "Enter date in format yyyy-mm-dd"
2472
  msgstr "Vnesite datum v formatu yyyy-mm-dd"
2473
 
2474
- #: includes/functions.php:2589
2475
  msgid "Start time"
2476
  msgstr "Začetni čas"
2477
 
2478
- #: includes/functions.php:2589
2479
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2480
  msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
2481
 
2482
- #: includes/functions.php:2591
2483
  msgid "End date"
2484
  msgstr "Končni datum"
2485
 
2486
- #: includes/functions.php:2592
2487
  msgid "End time"
2488
  msgstr "Končni čas"
2489
 
2490
- #: includes/functions.php:2595
2491
  msgid "Select wanted days in week"
2492
  msgstr "Izberite želene dneve v tednu"
2493
 
2494
- #: includes/functions.php:2927
2495
  msgid "Ad blocking detection is disabled"
2496
  msgstr "%s Zaznavanje blokiranja oglasov je onemogočeno %s"
2497
 
2498
- #: includes/functions.php:3065
2499
  msgid "Manual loading"
2500
  msgstr "Ročno nalaganje"
2501
 
2502
  #. Translators: %s HTML tags
2503
- #: includes/functions.php:3133
2504
  msgid "Create and manage %s MaxMind license key %s"
2505
  msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
2506
 
2507
- #: includes/functions.php:3169
2508
  msgid "MaxMind license key"
2509
  msgstr "MaxMind licenčni ključ"
2510
 
2511
- #: includes/functions.php:3172
2512
  msgid "Enter license key obtained from MaxMind"
2513
  msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
2514
 
2515
- #: includes/functions.php:3438
2516
  msgid "Event category"
2517
  msgstr "Kategorija dogodka"
2518
 
2519
- #: includes/functions.php:3441
2520
  msgid ""
2521
  "Category name used for external tracking events. You can use tags to get the "
2522
  "event, the number or the name of the block that caused the event."
@@ -2524,11 +2557,11 @@ msgstr ""
2524
  "Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2525
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2526
 
2527
- #: includes/functions.php:3446
2528
  msgid "Event action"
2529
  msgstr "Akcija dogodka"
2530
 
2531
- #: includes/functions.php:3449
2532
  msgid ""
2533
  "Action name used for external tracking events. You can use tags to get the "
2534
  "event, the number or the name of the block that caused the event."
@@ -2536,11 +2569,11 @@ msgstr ""
2536
  "Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2537
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2538
 
2539
- #: includes/functions.php:3454
2540
  msgid "Event label"
2541
  msgstr "Oznaka dogodka"
2542
 
2543
- #: includes/functions.php:3457
2544
  msgid ""
2545
  "Label name used for external tracking events. You can use tags to get the "
2546
  "event, the number or the name of the block that caused the event."
@@ -2549,18 +2582,18 @@ msgstr ""
2549
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2550
 
2551
  #. translators: %s: Ad Inserter Pro
2552
- #: includes/functions.php:3603
2553
  msgid "Show link to %s settings page for each site on the Sites page"
2554
  msgstr ""
2555
  "Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
2556
  "Spletišča"
2557
 
2558
  #. translators: %s: Ad Inserter Pro
2559
- #: includes/functions.php:3603
2560
  msgid "Show link to %s on the Sites page"
2561
  msgstr "Pokaži povezavo na %s na strani Spletišča"
2562
 
2563
- #: includes/functions.php:5193
2564
  msgid "File %s missing."
2565
  msgstr "Datoteka %s ni najdena."
2566
 
@@ -2592,11 +2625,11 @@ msgstr "Zapri urejevalnik polnila"
2592
  msgid "Placeholder"
2593
  msgstr "Polnilo"
2594
 
2595
- #: includes/placeholders.php:363 settings.php:954 settings.php:4346
2596
  msgid "Size"
2597
  msgstr "Velikost"
2598
 
2599
- #: includes/placeholders.php:379
2600
  msgid "Background color"
2601
  msgstr "Barva ozadja"
2602
 
@@ -2685,7 +2718,7 @@ msgstr "Dodaj testni odstavek"
2685
  msgid "Remove dummy paragraph"
2686
  msgstr "Odstrani testni odstavek"
2687
 
2688
- #: includes/preview-adb.php:9 includes/preview.php:1989
2689
  msgid "Use current settings"
2690
  msgstr "Uporabi trenutne nastavitve"
2691
 
@@ -2712,7 +2745,7 @@ msgctxt "Button"
2712
  msgid "Default"
2713
  msgstr "Privzeto"
2714
 
2715
- #: includes/preview-adb.php:12 includes/preview.php:1992
2716
  msgid "Close preview window"
2717
  msgstr "Zapri okno predogleda"
2718
 
@@ -2725,63 +2758,67 @@ msgstr "Prekliči"
2725
  msgid "Ad Blocking Detected Message Preview"
2726
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2727
 
2728
- #: includes/preview-adb.php:348 settings.php:2906
2729
  msgid "Message CSS"
2730
  msgstr "CSS sporočila"
2731
 
2732
- #: includes/preview-adb.php:353 settings.php:2914
2733
  msgid "Overlay CSS"
2734
  msgstr "CSS prevleke"
2735
 
2736
- #: includes/preview.php:229
2737
  msgid "Sticky Code Preview"
2738
  msgstr "Predogled Lepljive Kode"
2739
 
2740
- #: includes/preview.php:229
2741
  msgid "Code Preview"
2742
  msgstr "Predogled Kode"
2743
 
2744
- #: includes/preview.php:1987
2745
  msgid "Highlight inserted code"
2746
  msgstr "Označi vstavljeno kodo"
2747
 
2748
- #: includes/preview.php:1987
2749
  msgid "Highlight"
2750
  msgstr "Označi"
2751
 
2752
- #: includes/preview.php:1990
2753
  msgid "Reset to block settings"
2754
  msgstr "Ponastavi na nastavitve bloka"
2755
 
2756
- #: includes/preview.php:2005
2757
  msgid "AdSense ad unit"
2758
  msgstr "Oglasna enota AdSense"
2759
 
2760
- #: includes/preview.php:2072
2761
  msgid "wrapping div"
2762
  msgstr "div za ovijanje"
2763
 
2764
- #: includes/preview.php:2077 includes/preview.php:2084
2765
  msgid "background"
2766
  msgstr "ozadje"
2767
 
2768
- #: includes/preview.php:2111 includes/preview.php:2262 settings.php:1306
2769
  msgid "Alignment"
2770
  msgstr "Poravnava"
2771
 
2772
- #: includes/preview.php:2179
 
 
 
 
2773
  msgid "Horizontal margin"
2774
  msgstr "Vodoravni odmik"
2775
 
2776
- #: includes/preview.php:2228
2777
  msgid "Vertical margin"
2778
  msgstr "Navpični odmik"
2779
 
2780
- #: includes/preview.php:2250
2781
  msgid "Animate"
2782
  msgstr "Animiraj"
2783
 
2784
- #: includes/preview.php:2316
2785
  msgid ""
2786
  "This is a preview of the code between dummy paragraphs. Here you can test "
2787
  "various block alignments, visually edit margin and padding values of the "
@@ -2796,7 +2833,7 @@ msgstr ""
2796
  "označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
2797
  "Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
2798
 
2799
- #: includes/preview.php:2319
2800
  msgid ""
2801
  "This is a preview of the saved block between dummy paragraphs. It shows the "
2802
  "code with the alignment and style as it is set for this block. Highlight "
@@ -2806,7 +2843,7 @@ msgstr ""
2806
  "poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
2807
  "margin območje div-a za ovijanje in območje kode."
2808
 
2809
- #: includes/preview.php:2321
2810
  msgid ""
2811
  "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
2812
  "code was loaded from your AdSense account. The ad block is displayed on a "
@@ -2818,7 +2855,7 @@ msgstr ""
2818
  "testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
2819
  "Označi za označitev bloka."
2820
 
2821
- #: includes/preview.php:2327
2822
  msgid ""
2823
  "You can resize the window (and refresh the page to reload ads) to check "
2824
  "display with different screen widths.\n"
@@ -2830,7 +2867,7 @@ msgstr ""
2830
  "Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
2831
  "prenesle v aktivni blok."
2832
 
2833
- #: includes/preview.php:2329
2834
  msgid ""
2835
  "Please note that the code, block name, alignment and style are taken from "
2836
  "the current block settings (may not be saved).\n"
@@ -2843,9 +2880,9 @@ msgstr ""
2843
  "margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
2844
  "kodo za blok."
2845
 
2846
- #: includes/preview.php:2334 includes/preview.php:2348
2847
- #: includes/preview.php:2358 includes/preview.php:2368
2848
- #: includes/preview.php:2378
2849
  msgid ""
2850
  "Ad Inserter can be configured to insert any code anywhere on the page. Each "
2851
  "code with it's settings is called a block.\n"
@@ -2869,9 +2906,9 @@ msgstr ""
2869
  "številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
2870
  "številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
2871
 
2872
- #: includes/preview.php:2339 includes/preview.php:2353
2873
- #: includes/preview.php:2363 includes/preview.php:2373
2874
- #: includes/preview.php:2383
2875
  msgid ""
2876
  "Few very important things you need to know in order to insert code and "
2877
  "display some ad:\n"
@@ -2894,7 +2931,7 @@ msgstr ""
2894
  "za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
2895
  "uporabljate posamezne izjeme za prispevke/strani."
2896
 
2897
- #: includes/preview.php:2345
2898
  msgid ""
2899
  "This is a preview of the code for sticky ads. Here you can test various "
2900
  "horizontal and vertical alignments, close button locations, visually edit "
@@ -2917,7 +2954,7 @@ msgstr ""
2917
  "Opozorilo: počiščene samo izjeme za %d prispevkov, %d prispevkov ima še "
2918
  "vedno izjeme"
2919
 
2920
- #: settings.php:202 settings.php:1195
2921
  msgid ""
2922
  "Settings for individual exceptions have been updated. Please check all "
2923
  "blocks that have exceptions and and then save settings."
@@ -2929,7 +2966,7 @@ msgstr ""
2929
  msgid "Online documentation"
2930
  msgstr "Spletna Dokumentacija"
2931
 
2932
- #: settings.php:248 settings.php:789 settings.php:2289
2933
  msgid "Show AdSense ad units"
2934
  msgstr "Pokaži oglasne enote AdSense"
2935
 
@@ -2937,7 +2974,7 @@ msgstr "Pokaži oglasne enote AdSense"
2937
  msgid "Edit ads.txt file"
2938
  msgstr "Uredi datoteko ads.txt"
2939
 
2940
- #: settings.php:260 settings.php:1138
2941
  msgid "Check theme for available positions for automatic insertion"
2942
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2943
 
@@ -3085,158 +3122,158 @@ msgstr ""
3085
  msgid "General Settings"
3086
  msgstr "Splošne Nastavitve"
3087
 
3088
- #: settings.php:737 settings.php:2633 settings.php:2700 settings.php:2886
3089
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
3090
  msgstr ""
3091
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
3092
 
3093
- #: settings.php:744
3094
  msgid "Toggle tools"
3095
  msgstr "Preklopi orodja"
3096
 
3097
- #: settings.php:752
3098
  msgid "Process PHP code in block"
3099
  msgstr "Procesiraj PHP kodo v bloku"
3100
 
3101
- #: settings.php:759
3102
  msgid "Disable insertion of this block"
3103
  msgstr "Onemogoči vstavljanje tega bloka"
3104
 
3105
- #: settings.php:771
3106
  msgid "Toggle code generator"
3107
  msgstr "Preklopi generator kode"
3108
 
3109
- #: settings.php:775
3110
  msgid "Toggle rotation editor"
3111
  msgstr "Preklopi urejevalnik rotacije"
3112
 
3113
- #: settings.php:779
3114
  msgid "Open visual HTML editor"
3115
  msgstr "Odpri vizualni HTML urejevalnik"
3116
 
3117
- #: settings.php:798
3118
  msgid "Clear block"
3119
  msgstr "Počisti blok"
3120
 
3121
- #: settings.php:803 settings.php:4217
3122
  msgid "Copy block"
3123
  msgstr "Kopiraj blok"
3124
 
3125
- #: settings.php:807
3126
  msgid "Paste name"
3127
  msgstr "Prilepi ime"
3128
 
3129
- #: settings.php:811
3130
  msgid "Paste code"
3131
  msgstr "Prilepi kodo"
3132
 
3133
- #: settings.php:815
3134
  msgid "Paste settings"
3135
  msgstr "Prilepi nastavitve"
3136
 
3137
- #: settings.php:819
3138
  msgid "Paste block (name, code and settings)"
3139
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
3140
 
3141
- #: settings.php:838
3142
  msgid "Rotation groups"
3143
  msgstr "Skupine za rotacijo"
3144
 
3145
- #: settings.php:842
3146
  msgid "Remove option"
3147
  msgstr "Odstrani različico"
3148
 
3149
- #: settings.php:846
3150
  msgid "Add option"
3151
  msgstr "Dodaj različico"
3152
 
3153
- #: settings.php:861
3154
  msgid "Import code"
3155
  msgstr "Uvozi kodo"
3156
 
3157
- #: settings.php:865
3158
  msgid "Generate code"
3159
  msgstr "Generiraj kodo"
3160
 
3161
- #: settings.php:870
3162
  msgid "Banner"
3163
  msgstr "Pasica"
3164
 
3165
- #: settings.php:881
3166
  msgid "Image"
3167
  msgstr "Slika"
3168
 
3169
- #: settings.php:889
3170
  msgid "Link"
3171
  msgstr "Povezava"
3172
 
3173
- #: settings.php:900
3174
  msgid "Open link in a new tab"
3175
  msgstr "Odpri povezavo v novem zavihku"
3176
 
3177
- #: settings.php:901
3178
  msgid "Select Image"
3179
  msgstr "Izberi Sliko"
3180
 
3181
- #: settings.php:902
3182
  msgid "Select Placeholder"
3183
  msgstr "Izberi Polnilo"
3184
 
3185
- #: settings.php:914
3186
  msgid "Comment"
3187
  msgstr "Komentar"
3188
 
3189
- #: settings.php:923
3190
  msgctxt "AdSense"
3191
  msgid "Publisher ID"
3192
  msgstr "ID založnika"
3193
 
3194
- #: settings.php:932
3195
  msgctxt "AdSense"
3196
  msgid "Ad Slot ID"
3197
  msgstr "ID mesta"
3198
 
3199
- #: settings.php:941
3200
  msgid "Ad Type"
3201
  msgstr "Vrsta"
3202
 
3203
- #: settings.php:966
3204
  msgid "AMP Ad"
3205
  msgstr "AMP Oglas"
3206
 
3207
- #: settings.php:984
3208
  msgid "Show ad units from your AdSense account"
3209
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
3210
 
3211
- #: settings.php:984
3212
  msgid "AdSense ad units"
3213
  msgstr "Oglasne enote AdSense"
3214
 
3215
- #: settings.php:1001
3216
  msgctxt "AdSense"
3217
  msgid "Layout"
3218
  msgstr "Postavitev"
3219
 
3220
- #: settings.php:1010
3221
  msgctxt "AdSense"
3222
  msgid "Layout Key"
3223
  msgstr "Ključ postavitve"
3224
 
3225
- #: settings.php:1020
3226
  msgid "Full width"
3227
  msgstr "Celotna širina"
3228
 
3229
- #: settings.php:1022
3230
  msgctxt "Full width"
3231
  msgid "Enabled"
3232
  msgstr "Omogočena"
3233
 
3234
- #: settings.php:1023
3235
  msgctxt "Full width"
3236
  msgid "Disabled"
3237
  msgstr "Onemogočena"
3238
 
3239
- #: settings.php:1104
3240
  msgid ""
3241
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3242
  "Cookie or Referer (domain)"
@@ -3244,28 +3281,28 @@ msgstr ""
3244
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
3245
  "parametrov, Piškotkov ali napotiteljev (domen)"
3246
 
3247
- #: settings.php:1104
3248
  msgid "Lists"
3249
  msgstr "Seznami"
3250
 
3251
- #: settings.php:1105
3252
  msgid "Widget, Shortcode and PHP function call"
3253
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
3254
 
3255
- #: settings.php:1105
3256
  msgid "Manual"
3257
  msgstr "Ročno"
3258
 
3259
- #: settings.php:1106
3260
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3261
  msgstr ""
3262
  "Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
3263
 
3264
- #: settings.php:1106
3265
  msgid "Devices"
3266
  msgstr "Naprave"
3267
 
3268
- #: settings.php:1107
3269
  msgid ""
3270
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3271
  "feeds), Filter, Scheduling, General tag"
@@ -3273,15 +3310,15 @@ msgstr ""
3273
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
3274
  "RSS), Filter, Urnik, Splošna oznaka"
3275
 
3276
- #: settings.php:1107
3277
  msgid "Misc"
3278
  msgstr "Razno"
3279
 
3280
- #: settings.php:1108
3281
  msgid "Preview code and alignment"
3282
  msgstr "Predogled kode in poravnave"
3283
 
3284
- #: settings.php:1111 settings.php:2273
3285
  msgid ""
3286
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3287
  "editor is active before saving settings."
@@ -3289,15 +3326,15 @@ msgstr ""
3289
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
3290
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
3291
 
3292
- #: settings.php:1124 settings.php:1125
3293
  msgid "Enable insertion on posts"
3294
  msgstr "Omogoči vstavljanje na prispevkih"
3295
 
3296
- #: settings.php:1125 settings.php:3432
3297
  msgid "Posts"
3298
  msgstr "Prispevki"
3299
 
3300
- #: settings.php:1129 settings.php:1130
3301
  msgid ""
3302
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3303
  "page or theme homepage (available positions may depend on hooks used by the "
@@ -3307,43 +3344,43 @@ msgstr ""
3307
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
3308
  "lahko odvisni od ročic, ki jih tema uporablja)"
3309
 
3310
- #: settings.php:1130 settings.php:3434
3311
  msgid "Homepage"
3312
  msgstr "Domača stran"
3313
 
3314
- #: settings.php:1134 settings.php:1135
3315
  msgid "Enable insertion on category blog pages (including sub-pages)"
3316
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
3317
 
3318
- #: settings.php:1135 settings.php:3435
3319
  msgid "Category pages"
3320
  msgstr "Strani kategorij"
3321
 
3322
- #: settings.php:1145 settings.php:1146
3323
  msgid "Enable insertion on static pages"
3324
  msgstr "Omogoči vstavljanje na statičnih straneh"
3325
 
3326
- #: settings.php:1146 settings.php:3433
3327
  msgid "Static pages"
3328
  msgstr "Statične strani"
3329
 
3330
- #: settings.php:1150 settings.php:1151
3331
  msgid "Enable insertion on search blog pages"
3332
  msgstr "Omogoči vstavljanje na iskalnih straneh"
3333
 
3334
- #: settings.php:1151 settings.php:3437
3335
  msgid "Search pages"
3336
  msgstr "Iskalne strani"
3337
 
3338
- #: settings.php:1155 settings.php:1156
3339
  msgid "Enable insertion on tag or archive blog pages"
3340
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
3341
 
3342
- #: settings.php:1159
3343
  msgid "Toggle settings for default insertion and list of individual exceptions"
3344
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
3345
 
3346
- #: settings.php:1171
3347
  msgid ""
3348
  "Enable individual post/page exceptions for insertion of this block. They can "
3349
  "be configured on the individual post/page editor page (in the settings below "
@@ -3353,7 +3390,7 @@ msgstr ""
3353
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
3354
  "nastavitvah pod urejevalnikom)."
3355
 
3356
- #: settings.php:1172
3357
  msgid ""
3358
  "Enable individual post/page exceptions for insertion of this block. When "
3359
  "enabled they can be configured on the individual post/page editor page (in "
@@ -3363,13 +3400,13 @@ msgstr ""
3363
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
3364
  "strani (v nastavitvah pod urejevalnikom)."
3365
 
3366
- #: settings.php:1172
3367
  msgid "Use exceptions for individual posts or pages to change insertion"
3368
  msgstr ""
3369
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
3370
 
3371
  #. Translators: Enabled means...
3372
- #: settings.php:1180
3373
  msgid ""
3374
  "means the insertion for this block is enabled by default and disabled for "
3375
  "exceptions."
@@ -3378,7 +3415,7 @@ msgstr ""
3378
  "izjeme."
3379
 
3380
  #. Translators: Disabled means...
3381
- #: settings.php:1181
3382
  msgid ""
3383
  "means the insertion for this block is disabled by default and enabled for "
3384
  "exceptions."
@@ -3386,7 +3423,7 @@ msgstr ""
3386
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
3387
  "izjeme."
3388
 
3389
- #: settings.php:1182
3390
  msgid ""
3391
  "When individual post/page exceptions are enabled they can be configured on "
3392
  "the individual post/page editor page (in the settings below the editor)."
@@ -3395,31 +3432,31 @@ msgstr ""
3395
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
3396
  "urejevalnikom)."
3397
 
3398
- #: settings.php:1190
3399
  msgid ""
3400
  "No exception for post or static page defined. Block will not be inserted."
3401
  msgstr ""
3402
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
3403
 
3404
- #: settings.php:1208
3405
  msgctxt "post"
3406
  msgid "Type"
3407
  msgstr "Vrsta"
3408
 
3409
  #. translators: %d: block number
3410
- #: settings.php:1210
3411
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3412
  msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
3413
 
3414
- #: settings.php:1211
3415
  msgid "Clear listed exceptions for block"
3416
  msgstr "Pobriši izpisane izjeme za blok"
3417
 
3418
- #: settings.php:1237 settings.php:1385 settings.php:2047
3419
  msgid "Insertion"
3420
  msgstr "Vstavljanje"
3421
 
3422
- #: settings.php:1275
3423
  msgid ""
3424
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3425
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -3435,7 +3472,7 @@ msgstr ""
3435
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
3436
  "število pomeni štetje z nasprotne smeri"
3437
 
3438
- #: settings.php:1276
3439
  msgid ""
3440
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3441
  "means every N images, empty means all images, 0 means random image, value "
@@ -3450,7 +3487,7 @@ msgstr ""
3450
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
3451
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
3452
 
3453
- #: settings.php:1289
3454
  msgid ""
3455
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3456
  "numbers, %N means every N excerpts, empty means all excerpts"
@@ -3459,7 +3496,7 @@ msgstr ""
3459
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
3460
  "izvlečki"
3461
 
3462
- #: settings.php:1290
3463
  msgid ""
3464
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3465
  "numbers, %N means every N posts, empty means all posts"
@@ -3468,7 +3505,7 @@ msgstr ""
3468
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
3469
  "prispevki"
3470
 
3471
- #: settings.php:1291
3472
  msgid ""
3473
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3474
  "numbers, %N means every N comments, empty means all comments"
@@ -3477,44 +3514,44 @@ msgstr ""
3477
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
3478
  "vsi komentarji"
3479
 
3480
- #: settings.php:1298
3481
  msgid "Toggle paragraph counting settings"
3482
  msgstr "Preklopi nastavitve za štetje odstavkov"
3483
 
3484
- #: settings.php:1299
3485
  msgid "Toggle paragraph clearance settings"
3486
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
3487
 
3488
- #: settings.php:1302
3489
  msgid "Toggle insertion filter settings"
3490
  msgstr "Preklopi nastavitve filtra vstavljanja"
3491
 
3492
- #: settings.php:1320
3493
  msgid "Toggle insertion and alignment icons"
3494
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
3495
 
3496
- #: settings.php:1334
3497
  msgid "Custom CSS code for the wrapping div"
3498
  msgstr "CSS koda po meri za div za ovijanje"
3499
 
3500
- #: settings.php:1337 settings.php:1338 settings.php:1339 settings.php:1340
3501
- #: settings.php:1341 settings.php:1342
3502
  msgid "CSS code for the wrapping div, click to edit"
3503
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3504
 
3505
- #: settings.php:1355
3506
  msgid "HTML element"
3507
  msgstr "HTML element"
3508
 
3509
- #: settings.php:1368
3510
  msgid "HTML element selector or comma separated list of selectors"
3511
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3512
 
3513
- #: settings.php:1374 settings.php:2791
3514
  msgid "Action"
3515
  msgstr "Akcija"
3516
 
3517
- #: settings.php:1386
3518
  msgid ""
3519
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3520
  "Server-side insertion inserts block when the page is generated but needs "
@@ -3524,50 +3561,50 @@ msgstr ""
3524
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3525
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3526
 
3527
- #: settings.php:1395
3528
  msgid "Code position"
3529
  msgstr "Položaj kode"
3530
 
3531
- #: settings.php:1396
3532
  msgid ""
3533
  "Page position where the code for client-side insertion will be inserted."
3534
  msgstr ""
3535
  "Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
3536
 
3537
- #: settings.php:1411
3538
  msgid "Count"
3539
  msgstr "Štej"
3540
 
3541
- #: settings.php:1417
3542
  msgid "paragraphs with tags"
3543
  msgstr "odstavke z značkami"
3544
 
3545
- #: settings.php:1423
3546
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3547
  msgstr ""
3548
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3549
 
3550
- #: settings.php:1432
3551
  msgid "that have between"
3552
  msgstr "ki imajo med"
3553
 
3554
- #: settings.php:1438
3555
  msgid "Minimum number of paragraph words, leave empty for no limit"
3556
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3557
 
3558
- #: settings.php:1447
3559
  msgid "Maximum number of paragraph words, leave empty for no limit"
3560
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3561
 
3562
- #: settings.php:1450
3563
  msgid "words"
3564
  msgstr "besed"
3565
 
3566
- #: settings.php:1465 settings.php:1524 settings.php:1594 settings.php:1620
3567
  msgid "Comma separated texts"
3568
  msgstr "Z vejico ločena besedila"
3569
 
3570
- #: settings.php:1478
3571
  msgid ""
3572
  "Count also paragraphs inside these elements - defined on general plugin "
3573
  "settings page - tab [*] / tab General"
@@ -3576,38 +3613,61 @@ msgstr ""
3576
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3577
 
3578
  #. Translators: %s: HTML tags
3579
- #: settings.php:1484
3580
  msgid "Count inside %s elements"
3581
  msgstr "Štej znotraj elementov %s"
3582
 
3583
  #. translators: inside [HTML tags] elements that contain
3584
- #: settings.php:1496
3585
  msgid "inside"
3586
  msgstr "znotraj"
3587
 
3588
- #: settings.php:1502
3589
  msgid "Comma separated HTML tag names of container elements"
3590
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3591
 
3592
  #. translators: inside [HTML tags] elements that contain
3593
- #: settings.php:1511
3594
  msgid "elements that"
3595
  msgstr "elementov, ki"
3596
 
3597
- #: settings.php:1537 settings.php:2170
3598
- msgid "Post/Static page must have between"
3599
- msgstr "Prispevek/Statična stran mora imeti med"
 
 
 
 
 
3600
 
3601
- #: settings.php:1543
3602
- msgid "Minimum number of paragraphs, leave empty for no limit"
3603
- msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
 
 
 
 
3604
 
3605
- #: settings.php:1552
3606
- msgid "Maximum number of paragraphs, leave empty for no limit"
3607
- msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
 
 
 
 
 
3608
 
 
 
 
 
 
 
 
 
 
3609
  #. Translators: Post/Static page must have between X and Y paragraphs
3610
- #: settings.php:1555
3611
  msgid "paragraph"
3612
  msgid_plural "paragraphs"
3613
  msgstr[0] "odstavek"
@@ -3615,11 +3675,23 @@ msgstr[1] "odstavka"
3615
  msgstr[2] "odstavke"
3616
  msgstr[3] "odstavkov"
3617
 
3618
- #: settings.php:1563
 
 
 
 
 
 
 
 
 
 
 
 
3619
  msgid "Minimum number of words in paragraphs above"
3620
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3621
 
3622
- #: settings.php:1569
3623
  msgid ""
3624
  "Used only with automatic insertion After paragraph and empty paragraph "
3625
  "numbers"
@@ -3627,128 +3699,128 @@ msgstr ""
3627
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3628
  "številkami odstavkov"
3629
 
3630
- #: settings.php:1579 settings.php:1605
3631
  msgid "In"
3632
  msgstr "V"
3633
 
3634
- #: settings.php:1585
3635
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3636
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3637
 
3638
- #: settings.php:1588
3639
  msgid "paragraphs above avoid"
3640
  msgstr "odstavkih zgoraj se izogni"
3641
 
3642
- #: settings.php:1611
3643
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3644
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3645
 
3646
- #: settings.php:1614
3647
  msgid "paragraphs below avoid"
3648
  msgstr "odstavkih spodaj se izogni"
3649
 
3650
- #: settings.php:1630
3651
  msgid "If text is found"
3652
  msgstr "Če je besedilo najdeno"
3653
 
3654
- #: settings.php:1637
3655
  msgid "check up to"
3656
  msgstr "preveri do"
3657
 
3658
- #: settings.php:1645
3659
  msgctxt "check up to"
3660
  msgid "paragraphs"
3661
  msgstr "odstavkov"
3662
 
3663
- #: settings.php:1661
3664
  msgid "Categories"
3665
  msgstr "Kategorije"
3666
 
3667
- #: settings.php:1664
3668
  msgid "Toggle category editor"
3669
  msgstr "Preklopi urejevalnik kategorij"
3670
 
3671
- #: settings.php:1667
3672
  msgid "Comma separated category slugs"
3673
  msgstr "Z vejico ločeni ključi kategorij"
3674
 
3675
- #: settings.php:1676
3676
  msgid "Blacklist categories"
3677
  msgstr "Črni seznam kategorij"
3678
 
3679
- #: settings.php:1680
3680
  msgid "Whitelist categories"
3681
  msgstr "Beli seznam kategorij"
3682
 
3683
- #: settings.php:1692
3684
  msgid "Tags"
3685
  msgstr "Oznake"
3686
 
3687
- #: settings.php:1695
3688
  msgid "Toggle tag editor"
3689
  msgstr "Preklopi urejevalnik oznak"
3690
 
3691
- #: settings.php:1698
3692
  msgid "Comma separated tag slugs"
3693
  msgstr "Z vejico ločeni ključi oznak"
3694
 
3695
- #: settings.php:1707
3696
  msgid "Blacklist tags"
3697
  msgstr "Črni seznam oznak"
3698
 
3699
- #: settings.php:1711
3700
  msgid "Whitelist tags"
3701
  msgstr "Beli seznam oznak"
3702
 
3703
- #: settings.php:1723
3704
  msgid "Taxonomies"
3705
  msgstr "Taksonomije"
3706
 
3707
- #: settings.php:1726
3708
  msgid "Toggle taxonomy editor"
3709
  msgstr "Preklopi urejevalnik taksonomij"
3710
 
3711
- #: settings.php:1729
3712
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3713
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3714
 
3715
- #: settings.php:1738
3716
  msgid "Blacklist taxonomies"
3717
  msgstr "Črni seznam taksonomij"
3718
 
3719
- #: settings.php:1742
3720
  msgid "Whitelist taxonomies"
3721
  msgstr "Beli seznam taksonomij"
3722
 
3723
- #: settings.php:1754
3724
  msgid "Post IDs"
3725
  msgstr "ID-ji prispevkov"
3726
 
3727
- #: settings.php:1757
3728
  msgid "Toggle post/page ID editor"
3729
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3730
 
3731
- #: settings.php:1760
3732
  msgid "Comma separated post/page IDs"
3733
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3734
 
3735
- #: settings.php:1769
3736
  msgid "Blacklist IDs"
3737
  msgstr "Črni seznam ID-jev"
3738
 
3739
- #: settings.php:1773
3740
  msgid "Whitelist IDs"
3741
  msgstr "Beli seznam ID-jev"
3742
 
3743
- #: settings.php:1785
3744
  msgid "Urls"
3745
  msgstr "Url-ji"
3746
 
3747
- #: settings.php:1788
3748
  msgid "Toggle url editor"
3749
  msgstr "Preklopi urejevalnik url-jev"
3750
 
3751
- #: settings.php:1791
3752
  msgid ""
3753
  "Comma separated urls (page addresses) starting with / after domain name (e."
3754
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -3760,23 +3832,23 @@ msgstr ""
3760
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3761
  "začetek*. *url-vzorec*, *url-konec)"
3762
 
3763
- #: settings.php:1800
3764
  msgid "Blacklist urls"
3765
  msgstr "Črni seznam url-jev"
3766
 
3767
- #: settings.php:1804
3768
  msgid "Whitelist urls"
3769
  msgstr "Beli seznam url-jev"
3770
 
3771
- #: settings.php:1815
3772
  msgid "Url parameters"
3773
  msgstr "Url parametri"
3774
 
3775
- #: settings.php:1819
3776
  msgid "Toggle url parameter and cookie editor"
3777
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3778
 
3779
- #: settings.php:1822
3780
  msgid ""
3781
  "Comma separated url query parameters or cookies with optional values (use "
3782
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
@@ -3785,23 +3857,23 @@ msgstr ""
3785
  "vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
3786
  "'piškotek=vrednost')"
3787
 
3788
- #: settings.php:1831
3789
  msgid "Blacklist url parameters"
3790
  msgstr "Črni seznam url parametrov"
3791
 
3792
- #: settings.php:1835
3793
  msgid "Whitelist url parameters"
3794
  msgstr "Beli seznam url parametrov"
3795
 
3796
- #: settings.php:1846
3797
  msgid "Referrers"
3798
  msgstr "Napotitelji"
3799
 
3800
- #: settings.php:1849
3801
  msgid "Toggle referer editor"
3802
  msgstr "Preklopi urejevalnik napotiteljev"
3803
 
3804
- #: settings.php:1852
3805
  msgid ""
3806
  "Comma separated domains, use # for no referrer, you can also use partial "
3807
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
@@ -3809,48 +3881,48 @@ msgstr ""
3809
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3810
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3811
 
3812
- #: settings.php:1861
3813
  msgid "Blacklist referers"
3814
  msgstr "Črni seznam napotiteljev"
3815
 
3816
- #: settings.php:1865
3817
  msgid "Whitelist referers"
3818
  msgstr "Beli seznam napotiteljev"
3819
 
3820
- #: settings.php:1876
3821
  msgid "Clients"
3822
  msgstr "Odjemalci"
3823
 
3824
- #: settings.php:1879
3825
  msgid "Toggle client editor"
3826
  msgstr "Preklopi urejevalnik odjemalcev"
3827
 
3828
- #: settings.php:1882
3829
  msgid "Comma separated names (operating systems, browsers, devices)"
3830
  msgstr "Z vejico ločena imena (operacijski sistemi, brskalniki, naprave)"
3831
 
3832
- #: settings.php:1891
3833
  msgid "Blacklist clients"
3834
  msgstr "Črni seznam odjemalcev"
3835
 
3836
- #: settings.php:1895
3837
  msgid "Whitelist clients"
3838
  msgstr "Beli seznam odjemalcev"
3839
 
3840
- #: settings.php:1916
3841
  msgid "Enable widget for this block"
3842
  msgstr "Omogočite gradnik za ta blok"
3843
 
3844
- #: settings.php:1928
3845
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3846
  msgstr ""
3847
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3848
 
3849
- #: settings.php:1929 settings.php:4274
3850
  msgid "Shortcode"
3851
  msgstr "Kratka koda"
3852
 
3853
- #: settings.php:1944
3854
  msgid ""
3855
  "Enable PHP function call to insert this block at any position in theme file. "
3856
  "If function is disabled for block it will return empty string."
@@ -3859,66 +3931,66 @@ msgstr ""
3859
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3860
  "prazen niz."
3861
 
3862
- #: settings.php:1945
3863
  msgid "PHP function"
3864
  msgstr "PHP funkcija"
3865
 
3866
- #: settings.php:1960
3867
  msgid "Client-side device detection"
3868
  msgstr "Zaznavanje naprave na strani odjemalca"
3869
 
3870
- #: settings.php:1961
3871
  msgid "Server-side device detection"
3872
  msgstr "Zaznavanje naprave na strani strežnika"
3873
 
3874
- #: settings.php:1968
3875
  msgid "Use client-side detection to"
3876
  msgstr "Uporabi zaznavanje na strani odjemalca in"
3877
 
3878
- #: settings.php:1970
3879
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3880
  msgstr ""
3881
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3882
 
3883
  #. Translators: only on (the following devices): viewport names (devices)
3884
  #. listed
3885
- #: settings.php:1975
3886
  msgid "only on"
3887
  msgstr "samo na"
3888
 
3889
- #: settings.php:2003
3890
  msgid "Device min width %s px"
3891
  msgstr "Najmanjša širina naprave %s px"
3892
 
3893
- #: settings.php:2029
3894
  msgid "Use server-side detection to insert block only for"
3895
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3896
 
3897
- #: settings.php:2048
3898
  msgid "Filter"
3899
  msgstr "Filter"
3900
 
3901
- #: settings.php:2049
3902
  msgid "Word Count"
3903
  msgstr "Število Besed"
3904
 
3905
- #: settings.php:2050 settings.php:4264
3906
  msgid "Scheduling"
3907
  msgstr "Urnik"
3908
 
3909
- #: settings.php:2051
3910
  msgid "Display"
3911
  msgstr "Prikaz"
3912
 
3913
- #: settings.php:2053 settings.php:2315
3914
  msgid "General"
3915
  msgstr "Splošno"
3916
 
3917
- #: settings.php:2065
3918
  msgid "Old settings for AMP pages detected"
3919
  msgstr "Zaznane stare nastavitve za AMP strani"
3920
 
3921
- #: settings.php:2065
3922
  msgid ""
3923
  "To insert different codes on normal and AMP pages separate them with "
3924
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
@@ -3929,44 +4001,44 @@ msgstr ""
3929
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
3930
  "separatorja)."
3931
 
3932
- #: settings.php:2065
3933
  msgid "AMP pages"
3934
  msgstr "AMP strani"
3935
 
3936
- #: settings.php:2070
3937
  msgid "Enable insertion for Ajax requests"
3938
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
3939
 
3940
- #: settings.php:2070
3941
  msgid "Ajax requests"
3942
  msgstr "Ajax zahteve"
3943
 
3944
- #: settings.php:2075
3945
  msgid "Enable insertion in RSS feeds"
3946
  msgstr "Omogoči vstavljanje v RSS virih"
3947
 
3948
- #: settings.php:2075
3949
  msgid "RSS Feed"
3950
  msgstr "RSS Vir"
3951
 
3952
- #: settings.php:2080
3953
  msgid "Enable insertion on page for Error 404: Page not found"
3954
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
3955
 
3956
- #: settings.php:2080
3957
  msgid "Error 404 page"
3958
  msgstr "Stran napake 404"
3959
 
3960
- #: settings.php:2092
3961
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3962
  msgstr ""
3963
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
3964
 
3965
- #: settings.php:2093
3966
  msgid "insertions"
3967
  msgstr "vstavljanj"
3968
 
3969
- #: settings.php:2095
3970
  msgid ""
3971
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3972
  "General)"
@@ -3974,15 +4046,15 @@ msgstr ""
3974
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
3975
  "zavihek Splošno)"
3976
 
3977
- #: settings.php:2098 settings.php:2495
3978
  msgid "Max blocks per page"
3979
  msgstr "Največ blokov na stran"
3980
 
3981
- #: settings.php:2110
3982
  msgid "Insert for"
3983
  msgstr "Vstavi za"
3984
 
3985
- #: settings.php:2118
3986
  msgid ""
3987
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3988
  "currently active). Might speed up insertion on content pages when "
@@ -3992,26 +4064,26 @@ msgstr ""
3992
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
3993
  "filter the_content večkrat klican."
3994
 
3995
- #: settings.php:2121
3996
  msgid "Insert only in the loop"
3997
  msgstr "Vstavi samo v zanki"
3998
 
3999
- #: settings.php:2127
4000
  msgid ""
4001
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
4002
  msgstr ""
4003
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
4004
  "Rocket"
4005
 
4006
- #: settings.php:2127
4007
  msgid "Disable caching"
4008
  msgstr "Onemogoči predpomnjenje"
4009
 
4010
- #: settings.php:2139
4011
  msgid "Filter insertions"
4012
  msgstr "Filtriraj vstavljanja"
4013
 
4014
- #: settings.php:2142
4015
  msgid ""
4016
  "Filter multiple insertions by specifying wanted insertions for this block - "
4017
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -4023,56 +4095,56 @@ msgstr ""
4023
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
4024
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
4025
 
4026
- #: settings.php:2145
4027
  msgid "using"
4028
  msgstr "z uporabo"
4029
 
4030
- #: settings.php:2164
4031
  msgid "Checked means specified calls are unwanted"
4032
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
4033
 
4034
- #: settings.php:2164
4035
  msgid "Invert filter"
4036
  msgstr "Obrni filter"
4037
 
4038
- #: settings.php:2171
4039
  msgid "Minimum number of post/static page words, leave empty for no limit"
4040
  msgstr ""
4041
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4042
  "omejitev"
4043
 
4044
- #: settings.php:2173
4045
  msgid "Maximum number of post/static page words, leave empty for no limit"
4046
  msgstr ""
4047
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4048
  "omejitev"
4049
 
4050
- #: settings.php:2186
4051
  msgid "for"
4052
  msgstr "za"
4053
 
4054
- #: settings.php:2186
4055
  msgid "days after publishing"
4056
  msgstr "dni po objavi"
4057
 
4058
- #: settings.php:2188
4059
  msgid "Not available"
4060
  msgstr "Ni na razpolago"
4061
 
4062
- #: settings.php:2201 settings.php:2487
4063
  msgid "Ad label"
4064
  msgstr "Oznaka oglasa"
4065
 
4066
- #: settings.php:2221
4067
  msgid "General tag"
4068
  msgstr "Splošna oznaka"
4069
 
4070
- #: settings.php:2225
4071
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
4072
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
4073
 
4074
  #. translators: %s: HTML tags
4075
- #: settings.php:2234
4076
  msgid ""
4077
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
4078
  "client-side device detection!"
@@ -4081,7 +4153,7 @@ msgstr ""
4081
  "potrebna za zaznavanje naprave na strani odjemalca!"
4082
 
4083
  #. translators: %s: HTML tags for text and link
4084
- #: settings.php:2248
4085
  msgid ""
4086
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
4087
  "side %s insertion. Use %s Server-side %s insertion."
@@ -4090,86 +4162,86 @@ msgstr ""
4090
  "vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
4091
  "strežnika%s."
4092
 
4093
- #: settings.php:2264
4094
  msgid "Settings"
4095
  msgstr "Nastavitve"
4096
 
4097
- #: settings.php:2267
4098
  msgid "Settings timestamp"
4099
  msgstr "Časovni žig nastavitev"
4100
 
4101
- #: settings.php:2280
4102
  msgid "Are you sure you want to reset all settings?"
4103
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
4104
 
4105
- #: settings.php:2280
4106
  msgid "Reset All Settings"
4107
  msgstr "Ponastavi Vse Nastavitve"
4108
 
4109
- #: settings.php:2316
4110
  msgid "Viewports"
4111
  msgstr "Pogledi"
4112
 
4113
- #: settings.php:2317
4114
  msgid "Hooks"
4115
  msgstr "Ročice"
4116
 
4117
- #: settings.php:2318
4118
  msgid "Header"
4119
  msgstr "Glava"
4120
 
4121
- #: settings.php:2319 strings.php:30
4122
  msgid "Footer"
4123
  msgstr "Noga"
4124
 
4125
- #: settings.php:2324
4126
  msgid "Debugging"
4127
  msgstr "Razhroščevanje"
4128
 
4129
- #: settings.php:2334
4130
  msgid "Plugin priority"
4131
  msgstr "Prednost vtičnika"
4132
 
4133
- #: settings.php:2342
4134
  msgid "Output buffering"
4135
  msgstr "Predpomnjenje izhoda"
4136
 
4137
- #: settings.php:2345
4138
  msgid "Needed for position Above header but may not work with all themes"
4139
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
4140
 
4141
- #: settings.php:2353
4142
  msgid "Syntax highlighting theme"
4143
  msgstr "Tema za poudarjanje sintakse"
4144
 
4145
- #: settings.php:2360
4146
  msgctxt "no syntax highlighting themes"
4147
  msgid "None"
4148
  msgstr "Brez"
4149
 
4150
- #: settings.php:2361
4151
  msgid "No Syntax Highlighting"
4152
  msgstr "Brez Poudarjanja Sintakse"
4153
 
4154
- #: settings.php:2363
4155
  msgctxt "syntax highlighting themes"
4156
  msgid "Light"
4157
  msgstr "Svetle"
4158
 
4159
- #: settings.php:2378
4160
  msgctxt "syntax highlighting themes"
4161
  msgid "Dark"
4162
  msgstr "Temne"
4163
 
4164
- #: settings.php:2404
4165
  msgid "Min. user role for ind. exceptions editing"
4166
  msgstr "Najm. uporabniška vloga za urejanje izjem"
4167
 
4168
- #: settings.php:2414
4169
  msgid "Disable caching for logged in administrators"
4170
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
4171
 
4172
- #: settings.php:2417
4173
  msgid ""
4174
  "Enabled means that logged in administrators will see non-cached (live) pages "
4175
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
@@ -4177,11 +4249,11 @@ msgstr ""
4177
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
4178
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
4179
 
4180
- #: settings.php:2425
4181
  msgid "Wait for jQuery"
4182
  msgstr "Čakaj na jQuery"
4183
 
4184
- #: settings.php:2428
4185
  msgid ""
4186
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
4187
  "it will run the scripts that may need it"
@@ -4189,11 +4261,11 @@ msgstr ""
4189
  "Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
4190
  "bo pognal svoje skripte, ki jo potrebujejo"
4191
 
4192
- #: settings.php:2436
4193
  msgid "Sticky widget mode"
4194
  msgstr "Način za lepljive gradnike"
4195
 
4196
- #: settings.php:2439
4197
  msgid ""
4198
  "CSS mode is the best approach but may not work with all themes. JavaScript "
4199
  "mode works with most themes but may reload ads on page load."
@@ -4202,19 +4274,19 @@ msgstr ""
4202
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
4203
  "nalaganju strani."
4204
 
4205
- #: settings.php:2447
4206
  msgid "Sticky widget top margin"
4207
  msgstr "Zgornji rob za lepljiv gradnik"
4208
 
4209
- #: settings.php:2455
4210
  msgid "Dynamic blocks"
4211
  msgstr "Dinamični bloki"
4212
 
4213
- #: settings.php:2468
4214
  msgid "Functions for paragraph counting"
4215
  msgstr "Funkcije za štetje odstavkov"
4216
 
4217
- #: settings.php:2471
4218
  msgid ""
4219
  "Standard PHP functions are faster and work in most cases, use Multibyte "
4220
  "functions if paragraphs are not counted properly on non-english pages."
@@ -4223,15 +4295,15 @@ msgstr ""
4223
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
4224
  "šteti."
4225
 
4226
- #: settings.php:2479
4227
  msgid "No paragraph counting inside"
4228
  msgstr "Ni štetja odstavkov znotraj"
4229
 
4230
- #: settings.php:2490
4231
  msgid "Label text or HTML code"
4232
  msgstr "Besedilo oznake ali HTML koda"
4233
 
4234
- #: settings.php:2498
4235
  msgid ""
4236
  "Maximum number of inserted blocks per page. You need to enable Max page "
4237
  "insertions (button Misc / tab Insertion) to count block for this limit."
@@ -4240,12 +4312,12 @@ msgstr ""
4240
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
4241
  "omejitev."
4242
 
4243
- #: settings.php:2512
4244
  msgid "Plugin usage tracking"
4245
  msgstr "Sledenje uporabe vtičnika"
4246
 
4247
  #. translators: %s: Ad Inserter
4248
- #: settings.php:2515
4249
  msgid ""
4250
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
4251
  "Only information regarding the WordPress environment and %s usage is "
@@ -4255,125 +4327,125 @@ msgstr ""
4255
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
4256
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
4257
 
4258
- #: settings.php:2533
4259
  msgid "CSS class name for the wrapping div"
4260
  msgstr "Ime CSS razreda za div za ovijanje"
4261
 
4262
- #: settings.php:2533
4263
  msgid "Block class name"
4264
  msgstr "Ime razreda za blok"
4265
 
4266
- #: settings.php:2539
4267
  msgid "Include block number class"
4268
  msgstr "Vključi razred številke bloka"
4269
 
4270
- #: settings.php:2539
4271
  msgid "Block number class"
4272
  msgstr "Razred številke bloka"
4273
 
4274
- #: settings.php:2544
4275
  msgid "Include block name class"
4276
  msgstr "Vključi razred imena bloka"
4277
 
4278
- #: settings.php:2544
4279
  msgid "Block name class"
4280
  msgstr "Razred imena bloka"
4281
 
4282
- #: settings.php:2549
4283
  msgid ""
4284
  "Instead of alignment classes generate inline alignment styles for blocks"
4285
  msgstr ""
4286
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
4287
 
4288
- #: settings.php:2549
4289
  msgid "Inline styles"
4290
  msgstr "Medvrstični slogi"
4291
 
4292
- #: settings.php:2555
4293
  msgid "Preview of the block wrapping code"
4294
  msgstr "Predogled kode za ovijanje blokov"
4295
 
4296
- #: settings.php:2556
4297
  msgid "Wrapping div"
4298
  msgstr "div za ovijanje"
4299
 
4300
- #: settings.php:2557 settings.php:2997
4301
  msgid "BLOCK CODE"
4302
  msgstr "KODA BLOKA"
4303
 
4304
- #: settings.php:2565
4305
  msgid "Viewport Settings used for client-side device detection"
4306
  msgstr ""
4307
  "Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
4308
 
4309
  #. Translators: %d: viewport number
4310
- #: settings.php:2573
4311
  msgid "Viewport %d name"
4312
  msgstr "Ime pogleda %d"
4313
 
4314
- #: settings.php:2576
4315
  msgid "min width"
4316
  msgstr "najmanjša širina"
4317
 
4318
- #: settings.php:2587
4319
  msgid "Custom Hooks"
4320
  msgstr "Ročice Po Meri"
4321
 
4322
- #: settings.php:2599 settings.php:2602
4323
  msgid "Enable hook"
4324
  msgstr "Omogoči ročico"
4325
 
4326
  #. translators: %d: hook number
4327
- #: settings.php:2602
4328
  msgid "Hook %d name"
4329
  msgstr "Ime ročice %d"
4330
 
4331
- #: settings.php:2605
4332
  msgid "Hook name for automatic insertion selection"
4333
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
4334
 
4335
- #: settings.php:2608
4336
  msgid "action"
4337
  msgstr "akcija"
4338
 
4339
- #: settings.php:2611
4340
  msgid "Action name as used in the do_action () function"
4341
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
4342
 
4343
- #: settings.php:2614
4344
  msgid "priority"
4345
  msgstr "prednost"
4346
 
4347
- #: settings.php:2617
4348
  msgid "Priority for the hook (default is 10)"
4349
  msgstr "Prednost za ročico (privzeta je 10)"
4350
 
4351
- #: settings.php:2638
4352
  msgid "Enable insertion of this code into HTML page header"
4353
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
4354
 
4355
- #: settings.php:2642 settings.php:2709 settings.php:2891
4356
  msgid "Process PHP code"
4357
  msgstr "Procesiraj PHP kodo"
4358
 
4359
- #: settings.php:2646
4360
  msgid "HTML Page Header Code"
4361
  msgstr "Koda v Glavi HTML Strani"
4362
 
4363
- #: settings.php:2654
4364
  msgid "Code in the %s section of the HTML page"
4365
  msgstr "Koda v %s delu HTML strani"
4366
 
4367
- #: settings.php:2655
4368
  msgctxt "code in the header"
4369
  msgid "NOT ENABLED"
4370
  msgstr "NI OMOGOČENA"
4371
 
4372
- #: settings.php:2672 settings.php:2740
4373
  msgid "Use server-side detection to insert code only for"
4374
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
4375
 
4376
- #: settings.php:2687
4377
  msgid ""
4378
  "Enable insertion of this code into HTML page header on page for Error 404: "
4379
  "Page not found"
@@ -4381,29 +4453,29 @@ msgstr ""
4381
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
4382
  "obstaja"
4383
 
4384
- #: settings.php:2687 settings.php:2755
4385
  msgid "Insert on Error 404 page"
4386
  msgstr "Vstavi na strani Napake 404"
4387
 
4388
- #: settings.php:2705
4389
  msgid "Enable insertion of this code into HTML page footer"
4390
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
4391
 
4392
- #: settings.php:2713
4393
  msgid "HTML Page Footer Code"
4394
  msgstr "Koda v Nogi HTML Strani"
4395
 
4396
  #. translators: %s: HTML tags
4397
- #: settings.php:2721
4398
  msgid "Code before the %s tag of the the HTML page"
4399
  msgstr "Koda pred %s značko HTML strani"
4400
 
4401
- #: settings.php:2722
4402
  msgctxt "code in the footer"
4403
  msgid "NOT ENABLED"
4404
  msgstr "NI OMOGOČENA"
4405
 
4406
- #: settings.php:2755
4407
  msgid ""
4408
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4409
  "Page not found"
@@ -4411,32 +4483,32 @@ msgstr ""
4411
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
4412
  "Stran ne obstaja"
4413
 
4414
- #: settings.php:2771
4415
  msgid "Code for ad blocking detection inserted. Click for details."
4416
  msgstr ""
4417
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
4418
 
4419
- #: settings.php:2776
4420
  msgid "Enable detection of ad blocking"
4421
  msgstr "Omogoči zaznavanje blokiranja oglasov"
4422
 
4423
- #: settings.php:2794
4424
  msgid "Global action when ad blocking is detected"
4425
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
4426
 
4427
- #: settings.php:2800
4428
  msgid "No action for"
4429
  msgstr "Ni akcije za"
4430
 
4431
- #: settings.php:2801
4432
  msgid "Exceptions for global action when ad blocking is detected."
4433
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
4434
 
4435
- #: settings.php:2811
4436
  msgid "Delay Action"
4437
  msgstr "Zakasni Akcijo"
4438
 
4439
- #: settings.php:2814
4440
  msgid ""
4441
  "Number of page views to delay action when ad blocking is detected. Leave "
4442
  "empty for no delay (action fires on first page view). Sets cookie."
@@ -4445,16 +4517,16 @@ msgstr ""
4445
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
4446
  "strani). Nastavi piškotek."
4447
 
4448
- #: settings.php:2814
4449
  msgctxt "Delay Action for x "
4450
  msgid "page views"
4451
  msgstr "ogledov strani"
4452
 
4453
- #: settings.php:2819
4454
  msgid "No Action Period"
4455
  msgstr "Obdobje Brez Akcije"
4456
 
4457
- #: settings.php:2822
4458
  msgid ""
4459
  "Number of days to supress action when ad blocking is detected. Leave empty "
4460
  "for no no-action period (action fires always after defined page view delay). "
@@ -4464,16 +4536,16 @@ msgstr ""
4464
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
4465
  "strani). Nastavi piškotek."
4466
 
4467
- #: settings.php:2822
4468
  msgctxt "no action period"
4469
  msgid "days"
4470
  msgstr "dni"
4471
 
4472
- #: settings.php:2827
4473
  msgid "Custom Selectors"
4474
  msgstr "Selektorji Po Meri"
4475
 
4476
- #: settings.php:2830
4477
  msgid ""
4478
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4479
  "blocking detection. Invisible element or element with zero height means ad "
@@ -4483,15 +4555,15 @@ msgstr ""
4483
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
4484
  "pomeni prisotnost blokiranja oglasov."
4485
 
4486
- #: settings.php:2842
4487
  msgid "Redirection Page"
4488
  msgstr "Stran za Preusmeritev"
4489
 
4490
- #: settings.php:2854
4491
  msgid "Custom Url"
4492
  msgstr "Url Po Meri"
4493
 
4494
- #: settings.php:2859
4495
  msgid ""
4496
  "Static page for redirection when ad blocking is detected. For other pages "
4497
  "select Custom url and set it below."
@@ -4499,35 +4571,35 @@ msgstr ""
4499
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
4500
  "strani izberite Url Po Meri in ga nastavite spodaj."
4501
 
4502
- #: settings.php:2868
4503
  msgid "Custom Redirection Url"
4504
  msgstr "Url za Preusmeritev Po Meri"
4505
 
4506
- #: settings.php:2880
4507
  msgid "Message HTML code"
4508
  msgstr "HTML koda sporočila"
4509
 
4510
- #: settings.php:2893
4511
  msgid "Preview message when ad blocking is detected"
4512
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
4513
 
4514
- #: settings.php:2922
4515
  msgid "Prevent visitors from closing the warning message"
4516
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
4517
 
4518
- #: settings.php:2922
4519
  msgid "Undismissible Message"
4520
  msgstr "Neodstranljivo Sporočilo"
4521
 
4522
- #: settings.php:2928
4523
  msgid "Not undismissible for"
4524
  msgstr "Ni neodstranljivo za"
4525
 
4526
- #: settings.php:2929
4527
  msgid "Users which can close the warning message."
4528
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
4529
 
4530
- #: settings.php:2943
4531
  msgid ""
4532
  "Force showing admin toolbar for administrators when viewing site. Enable "
4533
  "this option when you are logged in as admin and you don't see admin toolbar."
@@ -4536,84 +4608,84 @@ msgstr ""
4536
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
4537
  "skrbnike."
4538
 
4539
- #: settings.php:2951
4540
  msgid "Disable header code (Header tab)"
4541
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
4542
 
4543
- #: settings.php:2955
4544
  msgid "Disable footer code (Footer tab)"
4545
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
4546
 
4547
  #. translators: %s: Ad Inserter
4548
- #: settings.php:2959
4549
  msgid "Disable %s JavaScript code"
4550
  msgstr "Onemogoči %s JavaScript kodo"
4551
 
4552
  #. translators: %s: Ad Inserter
4553
- #: settings.php:2963
4554
  msgid "Disable %s CSS code"
4555
  msgstr "Onemogoči %s CSS kodo"
4556
 
4557
- #: settings.php:2967
4558
  msgid ""
4559
  "Disable PHP code processing (in all blocks including header and footer code)"
4560
  msgstr ""
4561
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4562
 
4563
- #: settings.php:2971
4564
  msgid "Disable insertion of all blocks"
4565
  msgstr "Onemogoči vstavljanje vseh blokov"
4566
 
4567
- #: settings.php:2975
4568
  msgid "Disable insertions"
4569
  msgstr "Onemogoči vstavljanja"
4570
 
4571
  #. translators: %s: Ad Inserter
4572
- #: settings.php:2987
4573
  msgid "%s CSS CODE"
4574
  msgstr "%s CSS KODA"
4575
 
4576
- #: settings.php:2990
4577
  msgid "HEADER CODE"
4578
  msgstr "KODA GLAVE"
4579
 
4580
  #. translators: %s: PHP tags
4581
- #: settings.php:2996
4582
  msgid "BLOCK PHP CODE"
4583
  msgstr "PHP KODA BLOKA"
4584
 
4585
  #. translators: %s: Ad Inserter
4586
- #: settings.php:3002
4587
  msgid "%s JS CODE"
4588
  msgstr "%s JS KODA"
4589
 
4590
- #: settings.php:3005
4591
  msgid "FOOTER CODE"
4592
  msgstr "KODA NOGE"
4593
 
4594
- #: settings.php:3014
4595
  msgid "Force showing admin toolbar when viewing site"
4596
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4597
 
4598
- #: settings.php:3021
4599
  msgid "Enable debugging functions in admin toolbar"
4600
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4601
 
4602
- #: settings.php:3023
4603
  msgid "Debugging functions in admin toolbar"
4604
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4605
 
4606
- #: settings.php:3030
4607
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4608
  msgstr ""
4609
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4610
  "zaslonih"
4611
 
4612
- #: settings.php:3032
4613
  msgid "Debugging functions on mobile screens"
4614
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4615
 
4616
- #: settings.php:3039
4617
  msgid ""
4618
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4619
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -4628,11 +4700,11 @@ msgstr ""
4628
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
4629
  "vedno omogočeno."
4630
 
4631
- #: settings.php:3041
4632
  msgid "Remote debugging"
4633
  msgstr "Oddaljeno razhroščevanje"
4634
 
4635
- #: settings.php:3048
4636
  msgid ""
4637
  "Disable translation to see original texts for the settings and messages in "
4638
  "English"
@@ -4640,210 +4712,210 @@ msgstr ""
4640
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4641
  "angleščini"
4642
 
4643
- #: settings.php:3050
4644
  msgid "Disable translation"
4645
  msgstr "Onemogoči prevod"
4646
 
4647
- #: settings.php:3420
4648
  msgid "Available positions for current theme"
4649
  msgstr "Razpoložljivi položaji za trenutno temo"
4650
 
4651
- #: settings.php:3421
4652
  msgid "Error checking pages"
4653
  msgstr "Napaka pri preverjanju strani"
4654
 
4655
- #: settings.php:3424
4656
  msgid "Toggle theme checker for available positions for automatic insertion"
4657
  msgstr ""
4658
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4659
 
4660
- #: settings.php:3424
4661
  msgctxt "Button"
4662
  msgid "Check"
4663
  msgstr "Preveri"
4664
 
4665
- #: settings.php:3431
4666
  msgid "Position"
4667
  msgstr "Položaj"
4668
 
4669
- #: settings.php:3436
4670
  msgid "Archive pages"
4671
  msgstr "Strani arhiva"
4672
 
4673
- #: settings.php:3495
4674
  msgid ""
4675
  "Position not available because output buffering (tab [*]) is not enabled"
4676
  msgstr ""
4677
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4678
 
4679
- #: settings.php:3498 strings.php:231
4680
  msgid "Position not checked yet"
4681
  msgstr "Položaj še ni bil preverjen"
4682
 
4683
- #: settings.php:3534
4684
  msgid "Toggle active/all blocks"
4685
  msgstr "Preklopi aktive/vse bloke"
4686
 
4687
- #: settings.php:3538 strings.php:218
4688
  msgid "Rearrange block order"
4689
  msgstr "Preuredi vrstni red blokov"
4690
 
4691
- #: settings.php:3543
4692
  msgid "Save new block order"
4693
  msgstr "Shrani vrstni red blokov"
4694
 
4695
- #: settings.php:3569
4696
  msgid "Toggle active/all ad units"
4697
  msgstr "Preklopi aktivne/vse oglasne enote"
4698
 
4699
- #: settings.php:3573
4700
  msgid "Reload AdSense ad units"
4701
  msgstr "Ponovno naloži oglasne enote AdSense"
4702
 
4703
- #: settings.php:3577
4704
  msgid "Clear authorization to access AdSense account"
4705
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4706
 
4707
- #: settings.php:3581 settings.php:4431 settings.php:4498 strings.php:226
4708
  msgid "Google AdSense Homepage"
4709
  msgstr "Google AdSense Domača Stran"
4710
 
4711
- #: settings.php:3597
4712
  msgid "Switch to physical ads.txt file"
4713
  msgstr "Preklopi na fizično datoteko ads.txt"
4714
 
4715
- #: settings.php:3598
4716
  msgid "Switch to virtual ads.txt file"
4717
  msgstr "Preklopi na navidezno datoteko ads.txt"
4718
 
4719
  #. translators: %s: ads.txt
4720
- #: settings.php:3608
4721
  msgid "Open %s"
4722
  msgstr "Odpri %s"
4723
 
4724
- #: settings.php:3616
4725
  msgid "Reload ads.txt file"
4726
  msgstr "Ponovno naloži datoteko ads.txt"
4727
 
4728
- #: settings.php:3620 settings.php:4558
4729
  msgid "Save"
4730
  msgstr "Shrani"
4731
 
4732
  #. translators: %s: Ad Inserter
4733
- #: settings.php:3795
4734
  msgid "ads.txt file: %s virtual ads.txt file"
4735
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4736
 
4737
- #: settings.php:3800 settings.php:3820 strings.php:210
4738
  msgid "Warning"
4739
  msgstr "Opozorilo"
4740
 
4741
  #. translators: %s: Ad Inserter
4742
- #: settings.php:3800
4743
  msgid "%s virtual file ads.txt not found"
4744
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4745
 
4746
- #: settings.php:3808
4747
  msgid "IMPORTANT"
4748
  msgstr "POMEMBNO"
4749
 
4750
- #: settings.php:3808
4751
  msgid "ads.txt file must be placed on the root domain"
4752
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4753
 
4754
- #: settings.php:3813
4755
  msgid "ads.txt file"
4756
  msgstr "datoteka ads.txt"
4757
 
4758
- #: settings.php:3813
4759
  msgid "NOT WRITABLE"
4760
  msgstr "NI ZAPISLJIVO"
4761
 
4762
- #: settings.php:3820
4763
  msgid "file %s not found"
4764
  msgstr "datoteka %s ni najdena"
4765
 
4766
- #: settings.php:3830
4767
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4768
  msgstr ""
4769
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4770
 
4771
  #. translators: %s: Ad Inserter
4772
- #: settings.php:3836
4773
  msgid "%s virtual ads.txt file"
4774
  msgstr "%s navidezna datoteka ads.txt"
4775
 
4776
- #: settings.php:3858
4777
  msgid "Advertising system"
4778
  msgstr "Oglaševalski sistem"
4779
 
4780
- #: settings.php:3859
4781
  msgid "Account ID"
4782
  msgstr "ID Računa"
4783
 
4784
- #: settings.php:3861
4785
  msgid "Certification authority ID"
4786
  msgstr "ID organa za potrjevanje"
4787
 
4788
- #: settings.php:3876
4789
  msgid "Account ID found in block and present in ads.txt"
4790
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4791
 
4792
- #: settings.php:3880
4793
  msgid "Account ID found in block but not present in ads.txt"
4794
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4795
 
4796
- #: settings.php:4214
4797
  msgid "Preview block"
4798
  msgstr "Predogled bloka"
4799
 
4800
- #: settings.php:4221
4801
  msgid "Pause block"
4802
  msgstr "Ustavite blok"
4803
 
4804
- #: settings.php:4260
4805
  msgid "Automatic insertion"
4806
  msgstr "Samodejno vstavljanje"
4807
 
4808
  #. translators: %s HTML tags
4809
- #: settings.php:4261 settings.php:5229
4810
  msgid "PHP code processing"
4811
  msgstr "Procesiranje PHP kode"
4812
 
4813
- #: settings.php:4263
4814
  msgid "Device detection"
4815
  msgstr "Zaznavanje naprave"
4816
 
4817
- #: settings.php:4286
4818
  msgid "No active block"
4819
  msgstr "Noben aktiven blok"
4820
 
4821
- #: settings.php:4287
4822
  msgid "No block matches search keywords"
4823
  msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
4824
 
4825
- #: settings.php:4342
4826
  msgid "Ad unit"
4827
  msgstr "Enota"
4828
 
4829
- #: settings.php:4344
4830
  msgid "Slot ID"
4831
  msgstr "ID mesta"
4832
 
4833
- #: settings.php:4370
4834
  msgid "Copy AdSense code"
4835
  msgstr "Kopiraj kodo AdSense"
4836
 
4837
- #: settings.php:4373
4838
  msgid "Preview AdSense ad"
4839
  msgstr "Predogled oglasa AdSense"
4840
 
4841
- #: settings.php:4376
4842
  msgid "Get AdSense code"
4843
  msgstr "Pridobi kodo AdSense"
4844
 
4845
  #. translators: %s: HTML tags
4846
- #: settings.php:4408
4847
  msgid ""
4848
  "Please %s clear authorization %s with the button %s above and once again "
4849
  "authorize access to your AdSense account."
@@ -4851,16 +4923,16 @@ msgstr ""
4851
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4852
  "avtorizirajte dostop do vašega računa AdSense."
4853
 
4854
- #: settings.php:4427
4855
  msgid "AdSense Integration"
4856
  msgstr "Integracija AdSense"
4857
 
4858
- #: settings.php:4429
4859
  msgid "AdSense Integration - Step 2"
4860
  msgstr "Integracija AdSense - Korak 2"
4861
 
4862
  #. translators: %s: HTML tags
4863
- #: settings.php:4435
4864
  msgid ""
4865
  "Authorize %s to access your AdSense account. Click on the %s Get "
4866
  "Authorization Code %s button to open a new window where you can allow "
@@ -4873,7 +4945,7 @@ msgstr ""
4873
  "Avtoriziraj. %s"
4874
 
4875
  #. translators: %s: HTML tags
4876
- #: settings.php:4442
4877
  msgid ""
4878
  "If you get error, can't access ad units or would like to use own Google API "
4879
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -4884,7 +4956,7 @@ msgstr ""
4884
  "je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
4885
 
4886
  #. translators: %s: HTML tags
4887
- #: settings.php:4444
4888
  msgid ""
4889
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4890
  "Authorization Code %s button to open a new window where you can allow "
@@ -4897,7 +4969,7 @@ msgstr ""
4897
  "gumb %s Avtoriziraj. %s"
4898
 
4899
  #. translators: %s: HTML tags
4900
- #: settings.php:4451
4901
  msgid ""
4902
  "If you get error %s invalid client %s click on the button %s Clear and "
4903
  "return to Step 1 %s to re-enter Client ID and Client Secret."
@@ -4905,32 +4977,32 @@ msgstr ""
4905
  "Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
4906
  "in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
4907
 
4908
- #: settings.php:4462
4909
  msgid "Get Authorization Code"
4910
  msgstr "Pridobi Avtoriazcijsko Kodo"
4911
 
4912
- #: settings.php:4465
4913
  msgid "Enter Authorization Code"
4914
  msgstr "Vnesi Avorizacijsko Kodo"
4915
 
4916
- #: settings.php:4475
4917
  msgid "Use own API IDs"
4918
  msgstr "Uporabi lastne API ID-je"
4919
 
4920
- #: settings.php:4477
4921
  msgid "Clear and return to Step 1"
4922
  msgstr "Odstrani in se vrni na Korak 1"
4923
 
4924
- #: settings.php:4481
4925
  msgid "Authorize"
4926
  msgstr "Avtoriziraj"
4927
 
4928
- #: settings.php:4497
4929
  msgid "AdSense Integration - Step 1"
4930
  msgstr "Integracija AdSense - Korak 1"
4931
 
4932
  #. translators: %s: Ad Inserter
4933
- #: settings.php:4501
4934
  msgid ""
4935
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4936
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -4943,12 +5015,12 @@ msgstr ""
4943
  "Odjemalca in Skrivnost Odjemalca."
4944
 
4945
  #. translators: %s: HTML tags
4946
- #: settings.php:4510
4947
  msgid "Go to %s Google APIs and Services console %s"
4948
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
4949
 
4950
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4951
- #: settings.php:4511
4952
  msgid ""
4953
  "Create %1$s project - if the project and IDs are already created click on "
4954
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
@@ -4957,7 +5029,7 @@ msgstr ""
4957
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
4958
 
4959
  #. translators: %s: HTML tags
4960
- #: settings.php:4512
4961
  msgid ""
4962
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4963
  "create a new project"
@@ -4966,12 +5038,12 @@ msgstr ""
4966
  "ustvaritev novega projekta"
4967
 
4968
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4969
- #: settings.php:4513
4970
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4971
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4972
 
4973
  #. translators: %s: HTML tags
4974
- #: settings.php:4514
4975
  msgid ""
4976
  "Click on project selection, wait for the project to be created and then and "
4977
  "select %s as the current project"
@@ -4980,39 +5052,39 @@ msgstr ""
4980
  "izberite %s kot trenutni projekt"
4981
 
4982
  #. translators: %s: HTML tags
4983
- #: settings.php:4515
4984
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4985
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4986
 
4987
  #. translators: %s: HTML tags
4988
- #: settings.php:4516
4989
  msgid "Search for adsense and enable %s"
4990
  msgstr "Poiščite adsense in omogočite %s"
4991
 
4992
  #. translators: %s: HTML tags
4993
- #: settings.php:4517
4994
  msgid "Click on %s CREATE CREDENTIALS %s"
4995
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4996
 
4997
  #. translators: %s: HTML tags
4998
- #: settings.php:4518
4999
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
5000
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
5001
 
5002
  #. translators: %s: HTML tags
5003
- #: settings.php:4519
5004
  msgid "For %s What data will you be accessing? %s select %s User data %s"
5005
  msgstr ""
5006
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
5007
  "podatki %s"
5008
 
5009
  #. translators: %s: HTML tags
5010
- #: settings.php:4520
5011
  msgid "Click on %s What credentials do I need? %s"
5012
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
5013
 
5014
  #. translators: %s: HTML tags
5015
- #: settings.php:4521
5016
  msgid ""
5017
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
5018
  "Ad Inserter client %s"
@@ -5021,7 +5093,7 @@ msgstr ""
5021
  "vnestite %s Ad Inserter odjemalec %s"
5022
 
5023
  #. translators: %s: HTML tags
5024
- #: settings.php:4522
5025
  msgid ""
5026
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
5027
  "enter %s"
@@ -5030,17 +5102,17 @@ msgstr ""
5030
  "uporabnikom %s vnesite %s"
5031
 
5032
  #. translators: %s: HTML tags
5033
- #: settings.php:4523
5034
  msgid "Click on %s Continue %s"
5035
  msgstr "Kliknite na %s Nadaljuj %s"
5036
 
5037
  #. translators: %s: HTML tags
5038
- #: settings.php:4524
5039
  msgid "Click on %s Done %s"
5040
  msgstr "Kliknite na %s Končaj %s"
5041
 
5042
  #. translators: %s: HTML tags
5043
- #: settings.php:4525
5044
  msgid ""
5045
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
5046
  "secret %s"
@@ -5048,63 +5120,63 @@ msgstr ""
5048
  "Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
5049
  "%s Skrivnost odjemalca %s"
5050
 
5051
- #: settings.php:4526
5052
  msgid "Copy them to the appropriate fields below"
5053
  msgstr "Skopirajte ju na ustrezni polji spodaj"
5054
 
5055
- #: settings.php:4532
5056
  msgid "Client ID"
5057
  msgstr "ID odjemalca"
5058
 
5059
- #: settings.php:4535
5060
  msgid "Enter Client ID"
5061
  msgstr "Vnesite ID odjemalca"
5062
 
5063
- #: settings.php:4540
5064
  msgid "Client secret"
5065
  msgstr "Skrivnost odjemalca"
5066
 
5067
- #: settings.php:4543
5068
  msgid "Enter Client secret"
5069
  msgstr "Vnesite Skrivnost odjemalca"
5070
 
5071
- #: settings.php:4553
5072
  msgid "Use default API IDs"
5073
  msgstr "Uporabi privzete API ID-je"
5074
 
5075
- #: settings.php:4717
5076
  msgid "All posts"
5077
  msgstr "Vsi prispevki"
5078
 
5079
- #: settings.php:4718
5080
  msgid "All static pages"
5081
  msgstr "Vse statične strani"
5082
 
5083
- #: settings.php:4873 settings.php:4886 settings.php:4900 settings.php:4916
5084
  msgid "Blank ad blocks? Looking for AdSense alternative?"
5085
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
5086
 
5087
- #: settings.php:4878 settings.php:4891 settings.php:4905 settings.php:4921
5088
- #: settings.php:5120 settings.php:5122 settings.php:5138 settings.php:5143
5089
- #: settings.php:5151 settings.php:5152 settings.php:5155 settings.php:5161
5090
- #: settings.php:5171 settings.php:5175
5091
  msgid "Looking for AdSense alternative?"
5092
  msgstr "Iščete alternativo za AdSense?"
5093
 
5094
- #: settings.php:4933
5095
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
5096
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
5097
 
5098
- #: settings.php:4938 settings.php:5117 settings.php:5130 settings.php:5158
5099
- #: settings.php:5184
5100
  msgid "Use Infolinks ads with Adsense to earn more"
5101
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
5102
 
5103
- #: settings.php:4959 settings.php:5009
5104
  msgid "Support plugin development"
5105
  msgstr "Podprite razvoj vtičnika"
5106
 
5107
- #: settings.php:4964 settings.php:5010
5108
  msgid ""
5109
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5110
  "reviewing the plugin on WordPres"
@@ -5112,12 +5184,12 @@ msgstr ""
5112
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5113
  "razširiti novico z mnenjem o vtičniku na WordPress-u"
5114
 
5115
- #: settings.php:4964
5116
  msgctxt "Review Ad Inserter"
5117
  msgid "Review"
5118
  msgstr "Ocenite"
5119
 
5120
- #: settings.php:4969
5121
  msgid ""
5122
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5123
  "rating the plugin on WordPres"
@@ -5125,12 +5197,12 @@ msgstr ""
5125
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5126
  "razširiti novico z oceno vtičnika na WordPress-u"
5127
 
5128
- #: settings.php:4969
5129
  msgctxt "Rate Ad Inserter"
5130
  msgid "Rate"
5131
  msgstr "Ocenite"
5132
 
5133
- #: settings.php:4974
5134
  msgid ""
5135
  "Support free Ad Inserter development. If you are making money with Ad "
5136
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
@@ -5139,16 +5211,16 @@ msgstr ""
5139
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
5140
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
5141
 
5142
- #: settings.php:4974
5143
  msgid "Donate"
5144
  msgstr "Donirajte"
5145
 
5146
- #: settings.php:4981 settings.php:5025
5147
  msgid "Average rating of the plugin - Thank you!"
5148
  msgstr "Povprečna ocena vtičnika - Hvala!"
5149
 
5150
  #. translators: %s: Ad Inserter, HTML tags
5151
- #: settings.php:4992
5152
  msgid ""
5153
  "You've been using %s for a while now, and I hope you're happy with it. "
5154
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -5163,24 +5235,24 @@ msgstr ""
5163
  "monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
5164
  "bi rekli 'Hvala'."
5165
 
5166
- #: settings.php:5010
5167
  msgid "Review"
5168
  msgstr "Ocena"
5169
 
5170
- #: settings.php:5014
5171
  msgid "Ad Inserter on Twitter"
5172
  msgstr "Ad Inserter na Twitter-ju"
5173
 
5174
- #: settings.php:5015
5175
  msgid "Ad Inserter on Facebook"
5176
  msgstr "Ad Inserter na Facebook-u"
5177
 
5178
- #: settings.php:5018
5179
  msgid "Follow Ad Inserter"
5180
  msgstr "Sledi Ad Inserter-ju"
5181
 
5182
  #. translators: %s: HTML tags
5183
- #: settings.php:5045
5184
  msgid ""
5185
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5186
  "and %s Common Settings %s pages"
@@ -5189,7 +5261,7 @@ msgstr ""
5189
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
5190
 
5191
  #. translators: %s: HTML tags
5192
- #: settings.php:5057
5193
  msgid ""
5194
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5195
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
@@ -5200,7 +5272,7 @@ msgstr ""
5200
  "%s Infolinks %s oglasno kodo %s"
5201
 
5202
  #. translators: %s: HTML tags
5203
- #: settings.php:5078
5204
  msgid ""
5205
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5206
  "purchase you refer to us"
@@ -5209,7 +5281,7 @@ msgstr ""
5209
  "nakup, ki nam ga posredujete"
5210
 
5211
  #. translators: %s: HTML tags
5212
- #: settings.php:5085
5213
  msgid ""
5214
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5215
  "diagnose and fix the problem."
@@ -5218,7 +5290,7 @@ msgstr ""
5218
  "navodili za diagnozo in rešitvami za težave."
5219
 
5220
  #. translators: %s: HTML tags
5221
- #: settings.php:5089
5222
  msgid ""
5223
  "If you need any kind of help or support, please do not hesitate to open a "
5224
  "thread on the %s support forum. %s"
@@ -5226,57 +5298,57 @@ msgstr ""
5226
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
5227
  "nit na %s podpornem forumu. %s"
5228
 
5229
- #: settings.php:5115 settings.php:5179 settings.php:5183
5230
  msgid "Code preview with visual CSS editor"
5231
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
5232
 
5233
- #: settings.php:5119 settings.php:5169
5234
  msgid "A/B testing - Track ad impressions and clicks"
5235
  msgstr "A/B testiranje - Sledi prikazom in klikom"
5236
 
5237
- #: settings.php:5134
5238
  msgid "Insert ads on AMP pages"
5239
  msgstr "Vstavite oglase na AMP straneh"
5240
 
5241
- #: settings.php:5142
5242
  msgid "Ad blocking detection and content protection"
5243
  msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
5244
 
5245
- #: settings.php:5192
5246
  msgid "Looking for Pro Ad Management plugin?"
5247
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
5248
 
5249
- #: settings.php:5193
5250
  msgid "To Optimally Monetize your WordPress website?"
5251
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
5252
 
5253
  #. Translators: %s: price of Ad Inserter Pro
5254
- #: settings.php:5194
5255
  msgid "Different license types starting from %s"
5256
  msgstr "Različni tipi licenc začenši od %s"
5257
 
5258
  #. translators: %s HTML tags
5259
- #: settings.php:5197
5260
  msgid "%s AdSense Integration %s"
5261
  msgstr "%s Integracija AdSense %s"
5262
 
5263
  #. translators: %s HTML tags
5264
- #: settings.php:5198
5265
  msgid "Syntax highlighting %s editor %s"
5266
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
5267
 
5268
  #. translators: %s HTML tags
5269
- #: settings.php:5199
5270
  msgid "%s Code preview %s with visual CSS editor"
5271
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
5272
 
5273
  #. translators: %s HTML tags
5274
- #: settings.php:5200
5275
  msgid "Simple user interface - all settings on a single page"
5276
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
5277
 
5278
  #. translators: %s HTML tags
5279
- #: settings.php:5201
5280
  msgid ""
5281
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5282
  "image / excerpt"
@@ -5285,27 +5357,27 @@ msgstr ""
5285
  "%s / sliko / izvlečkom"
5286
 
5287
  #. translators: %s HTML tags
5288
- #: settings.php:5202
5289
  msgid "%s Automatic insertion %s between posts on blog pages"
5290
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
5291
 
5292
  #. translators: %s HTML tags
5293
- #: settings.php:5203
5294
  msgid "%s Automatic insertion %s before, between and after comments"
5295
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
5296
 
5297
  #. translators: %s HTML tags
5298
- #: settings.php:5204
5299
  msgid "%s Automatic insertion %s after %s or before %s tag"
5300
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
5301
 
5302
  #. translators: %s HTML tags
5303
- #: settings.php:5205
5304
  msgid "Automatic insertion at %s custom hook positions %s"
5305
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
5306
 
5307
  #. translators: %s HTML tags
5308
- #: settings.php:5206
5309
  msgid ""
5310
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5311
  "selectors)"
@@ -5314,17 +5386,17 @@ msgstr ""
5314
  "selektorjev)"
5315
 
5316
  #. translators: %s HTML tags
5317
- #: settings.php:5207
5318
  msgid "%s Insertion exceptions %s for individual posts and pages"
5319
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
5320
 
5321
  #. translators: %s HTML tags
5322
- #: settings.php:5208
5323
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5324
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
5325
 
5326
  #. translators: %s HTML tags
5327
- #: settings.php:5209
5328
  msgid ""
5329
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5330
  "scrolls)"
@@ -5333,19 +5405,24 @@ msgstr ""
5333
  "se stran pomika)"
5334
 
5335
  #. translators: %s HTML tags
5336
- #: settings.php:5210
 
 
 
 
 
5337
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5338
  msgstr ""
5339
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
5340
 
5341
  #. translators: %s HTML tags
5342
- #: settings.php:5211
5343
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5344
  msgstr ""
5345
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
5346
 
5347
  #. translators: %s HTML tags
5348
- #: settings.php:5212
5349
  msgid ""
5350
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5351
  "visible)"
@@ -5354,7 +5431,7 @@ msgstr ""
5354
  "postane viden)"
5355
 
5356
  #. translators: %s HTML tags
5357
- #: settings.php:5213
5358
  msgid ""
5359
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5360
  msgstr ""
@@ -5362,12 +5439,12 @@ msgstr ""
5362
  "strani)"
5363
 
5364
  #. translators: %s HTML tags
5365
- #: settings.php:5214
5366
  msgid "Block %s alignment and style %s customizations"
5367
  msgstr "%s Poravnave in slogi %s bloka po meri"
5368
 
5369
  #. translators: %s HTML tags
5370
- #: settings.php:5215
5371
  msgid ""
5372
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5373
  "TOS)"
@@ -5375,7 +5452,7 @@ msgstr ""
5375
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
5376
 
5377
  #. translators: %s HTML tags
5378
- #: settings.php:5216
5379
  msgid ""
5380
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5381
  "feeds"
@@ -5384,17 +5461,17 @@ msgstr ""
5384
  "virih"
5385
 
5386
  #. translators: %s HTML tags
5387
- #: settings.php:5217
5388
  msgid "%s Ad rotation %s (works also with caching)"
5389
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
5390
 
5391
  #. translators: %s HTML tags
5392
- #: settings.php:5218
5393
  msgid "Create, edit and check %s ads.txt %s file"
5394
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
5395
 
5396
  #. translators: %s HTML tags
5397
- #: settings.php:5219
5398
  msgid ""
5399
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5400
  "AdSense)"
@@ -5403,81 +5480,81 @@ msgstr ""
5403
  "AdSense)"
5404
 
5405
  #. translators: %s HTML tags
5406
- #: settings.php:5220
5407
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5408
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
5409
 
5410
  #. translators: %s HTML tags
5411
- #: settings.php:5221
5412
  msgid "%s Public web reports %s for clients, export to PDF"
5413
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
5414
 
5415
  #. translators: %s HTML tags
5416
- #: settings.php:5222
5417
  msgid "Support for %s A/B testing %s"
5418
  msgstr "Podpora za %s A/B testiranje %s"
5419
 
5420
  #. translators: %s HTML tags
5421
- #: settings.php:5223
5422
  msgid "Frequency capping - %s limit impressions or clicks %s"
5423
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
5424
 
5425
  #. translators: %s HTML tags
5426
- #: settings.php:5224
5427
  msgid "Click fraud %s protection %s"
5428
  msgstr "%s Zaščita %s pred goljufijo s kliki"
5429
 
5430
  #. translators: %s HTML tags
5431
- #: settings.php:5225
5432
  msgid "Support for %s lazy loading %s"
5433
  msgstr "Podpora za %s leno nalaganje %s"
5434
 
5435
  #. translators: %s HTML tags
5436
- #: settings.php:5226
5437
  msgid "Support for ads on %s AMP pages %s"
5438
  msgstr "Podpora za oglase na %s AMP straneh %s"
5439
 
5440
  #. translators: %s HTML tags
5441
- #: settings.php:5227
5442
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5443
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
5444
 
5445
  #. translators: %s HTML tags
5446
- #: settings.php:5228
5447
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5448
  msgstr ""
5449
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
5450
 
5451
  #. translators: %s HTML tags
5452
- #: settings.php:5230
5453
  msgid "%s Banner %s code generator"
5454
  msgstr "Generator kode za %s pasice %s"
5455
 
5456
  #. translators: %s HTML tags
5457
- #: settings.php:5231
5458
  msgid "Support for %s header and footer %s code"
5459
  msgstr "Podpora za kodo v %s glavi in nogi %s"
5460
 
5461
  #. translators: %s HTML tags
5462
- #: settings.php:5232
5463
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5464
  msgstr ""
5465
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
5466
 
5467
  #. translators: %s HTML tags
5468
- #: settings.php:5233
5469
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5470
  msgstr ""
5471
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
5472
  "strežnika"
5473
 
5474
  #. translators: %s HTML tags
5475
- #: settings.php:5234
5476
  msgid "Client-side %s mobile device detection %s (works with caching)"
5477
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
5478
 
5479
  #. translators: %s HTML tags
5480
- #: settings.php:5235
5481
  msgid ""
5482
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5483
  "protection"
@@ -5486,12 +5563,12 @@ msgstr ""
5486
  "vsebine"
5487
 
5488
  #. translators: %s HTML tags
5489
- #: settings.php:5236
5490
  msgid "%s Ad blocking statistics %s"
5491
  msgstr "%s Statistika blokiranja oglasov %s"
5492
 
5493
  #. translators: %s HTML tags
5494
- #: settings.php:5237
5495
  msgid ""
5496
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5497
  "referrers, operating systems, browsers"
@@ -5500,75 +5577,75 @@ msgstr ""
5500
  "prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
5501
 
5502
  #. translators: %s HTML tags
5503
- #: settings.php:5238
5504
  msgid ""
5505
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5506
  msgstr ""
5507
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
5508
 
5509
  #. translators: %s HTML tags
5510
- #: settings.php:5239
5511
  msgid "%s Multisite options %s to limit settings on the sites"
5512
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
5513
 
5514
  #. translators: %s HTML tags
5515
- #: settings.php:5240
5516
  msgid "%s Import/Export %s block or plugin settings"
5517
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
5518
 
5519
  #. translators: %s HTML tags
5520
- #: settings.php:5241
5521
  msgid "%s Insertion scheduling %s with fallback option"
5522
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
5523
 
5524
  #. translators: %s HTML tags
5525
- #: settings.php:5242
5526
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5527
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
5528
 
5529
  #. translators: %s HTML tags
5530
- #: settings.php:5243
5531
  msgid "Simple troubleshooting with many %s debugging functions %s"
5532
  msgstr ""
5533
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
5534
 
5535
  #. translators: %s HTML tags
5536
- #: settings.php:5244
5537
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5538
  msgstr ""
5539
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
5540
 
5541
  #. translators: %s HTML tags
5542
- #: settings.php:5245
5543
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5544
  msgstr ""
5545
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
5546
 
5547
  #. translators: %s HTML tags
5548
- #: settings.php:5246
5549
  msgid ""
5550
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5551
  msgstr ""
5552
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
5553
 
5554
  #. translators: %s HTML tags
5555
- #: settings.php:5247
5556
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5557
  msgstr ""
5558
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5559
 
5560
  #. translators: %s HTML tags
5561
- #: settings.php:5248
5562
  msgid "No ads on the settings page"
5563
  msgstr "Stran z nastavitvami brez oglasov"
5564
 
5565
  #. translators: %s HTML tags
5566
- #: settings.php:5249
5567
  msgid "Premium support"
5568
  msgstr "Vrhunska podpora"
5569
 
5570
  #. translators: %s HTML tags
5571
- #: settings.php:5252
5572
  msgid ""
5573
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5574
  "website with many advertising features to automatically insert adverts on "
@@ -5595,82 +5672,82 @@ msgstr ""
5595
  "bodo ohranile)."
5596
 
5597
  #. translators: %s HTML tags
5598
- #: settings.php:5265
5599
  msgid "Looking for %s Pro Ad Management plugin? %s"
5600
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5601
 
5602
  #. translators: %s HTML tags
5603
- #: settings.php:5270
5604
  msgid "Ads between posts"
5605
  msgstr "Oglasi med prispevki"
5606
 
5607
  #. translators: %s HTML tags
5608
- #: settings.php:5271
5609
  msgid "Ads between comments"
5610
  msgstr "Oglasi med komentarji"
5611
 
5612
  #. translators: %s HTML tags
5613
- #: settings.php:5272
5614
  msgid "Support via email"
5615
  msgstr "Podpora prek elektronske pošte"
5616
 
5617
  #. translators: %s HTML tags
5618
- #: settings.php:5278
5619
  msgid "%s Sticky positions %s"
5620
  msgstr "%s Lepljivi položaji %s"
5621
 
5622
  #. translators: %s HTML tags
5623
- #: settings.php:5279
5624
  msgid "%s Limit insertions %s"
5625
  msgstr "%s Omeji vstavljanja %s"
5626
 
5627
  #. translators: %s HTML tags
5628
- #: settings.php:5280
5629
  msgid "%s Clearance %s options"
5630
  msgstr "Možnosti %s izogibanja %s"
5631
 
5632
  #. translators: %s HTML tags
5633
- #: settings.php:5286
5634
  msgid "Ad rotation"
5635
  msgstr "Vrtenje oglasov"
5636
 
5637
  #. translators: %s HTML tags
5638
- #: settings.php:5287
5639
  msgid "%s A/B testing %s"
5640
  msgstr "%s A/B testiranje %s"
5641
 
5642
  #. translators: %s HTML tags
5643
- #: settings.php:5288
5644
  msgid "%s Ad tracking %s"
5645
  msgstr "%s Sledenje oglasom %s"
5646
 
5647
  #. translators: %s HTML tags
5648
- #: settings.php:5294
5649
  msgid "Support for %s AMP pages %s"
5650
  msgstr "Podpora za %s AMP strani %s"
5651
 
5652
  #. translators: %s HTML tags
5653
- #: settings.php:5295
5654
  msgid "%s Ad blocking detection %s"
5655
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5656
 
5657
  #. translators: %s HTML tags
5658
- #: settings.php:5296
5659
  msgid "%s Mobile device detection %s"
5660
  msgstr "%s Zaznavanje mobilne naprave %s"
5661
 
5662
  #. translators: %s HTML tags
5663
- #: settings.php:5303
5664
  msgid "64 code blocks"
5665
  msgstr "64 kodnih blokov"
5666
 
5667
  #. translators: %s HTML tags
5668
- #: settings.php:5304
5669
  msgid "%s GEO targeting %s"
5670
  msgstr "%s GEO ciljanje %s"
5671
 
5672
  #. translators: %s HTML tags
5673
- #: settings.php:5305
5674
  msgid "%s Scheduling %s"
5675
  msgstr "%s Urnik %s"
5676
 
@@ -5873,536 +5950,599 @@ msgid "Center"
5873
  msgstr "Sredinska"
5874
 
5875
  #: strings.php:66
 
 
 
 
 
5876
  msgctxt "alignment"
5877
  msgid "Float left"
5878
  msgstr "Plavajoča levo"
5879
 
5880
- #: strings.php:67
5881
  msgctxt "alignment"
5882
  msgid "Float right"
5883
  msgstr "Plavajoča desno"
5884
 
5885
- #: strings.php:68
5886
  msgctxt "alignment"
5887
  msgid "No wrapping"
5888
  msgstr "Brez ovijanja"
5889
 
5890
- #: strings.php:69
5891
  msgid "Custom CSS"
5892
  msgstr "CSS po meri"
5893
 
5894
- #: strings.php:70
5895
  msgid "Sticky left"
5896
  msgstr "Lepljiv levo"
5897
 
5898
- #: strings.php:71
5899
  msgid "Sticky right"
5900
  msgstr "Lepljiv desno"
5901
 
5902
- #: strings.php:72
5903
  msgid "Sticky top"
5904
  msgstr "Lepljiv zgoraj"
5905
 
5906
- #: strings.php:73
5907
  msgid "Sticky bottom"
5908
  msgstr "Lepljiv spodaj"
5909
 
5910
- #: strings.php:74
5911
  msgctxt "alignment"
5912
  msgid "Sticky"
5913
  msgstr "Lepljiva"
5914
 
5915
- #: strings.php:76
5916
  msgctxt "using"
5917
  msgid "auto counter"
5918
  msgstr "samodejnega števca"
5919
 
5920
- #: strings.php:77
5921
  msgctxt "using"
5922
  msgid "PHP function calls counter"
5923
  msgstr "števca klicev PHP funkcije"
5924
 
5925
- #: strings.php:78
5926
  msgctxt "using"
5927
  msgid "content processing counter"
5928
  msgstr "števca procesiranja vsebine"
5929
 
5930
- #: strings.php:79
5931
  msgctxt "using"
5932
  msgid "excerpt processing counter"
5933
  msgstr "števca procesiranja izvlečkov"
5934
 
5935
- #: strings.php:80
5936
  msgctxt "using"
5937
  msgid "before post processing counter"
5938
  msgstr "števca pred prispevkom"
5939
 
5940
- #: strings.php:81
5941
  msgctxt "using"
5942
  msgid "after post processing counter"
5943
  msgstr "števca za prispevkom"
5944
 
5945
- #: strings.php:82
5946
  msgctxt "using"
5947
  msgid "widget drawing counter"
5948
  msgstr "števca risanja gradnikov"
5949
 
5950
- #: strings.php:83
5951
  msgctxt "using"
5952
  msgid "subpages counter"
5953
  msgstr "števca podstrani"
5954
 
5955
- #: strings.php:84
5956
  msgctxt "using"
5957
  msgid "posts counter"
5958
  msgstr "števca prispevkov"
5959
 
5960
- #: strings.php:85
5961
  msgctxt "using"
5962
  msgid "paragraphs counter"
5963
  msgstr "števca odstavkov"
5964
 
5965
- #: strings.php:86
5966
  msgctxt "using"
5967
  msgid "comments counter"
5968
  msgstr "števca komentarjev"
5969
 
5970
- #: strings.php:87
5971
  msgctxt "using"
5972
  msgid "images counter"
5973
  msgstr "števca slik"
5974
 
5975
- #: strings.php:90
5976
  msgctxt "posts"
5977
  msgid "Individually disabled"
5978
  msgstr "Posamezno onemogočeni"
5979
 
5980
- #: strings.php:91
5981
  msgctxt "posts"
5982
  msgid "Individually enabled"
5983
  msgstr "Posamezno omogočeni"
5984
 
5985
- #: strings.php:93
5986
  msgctxt "static pages"
5987
  msgid "Individually disabled"
5988
  msgstr "Posamezno onemogočene"
5989
 
5990
- #: strings.php:94
5991
  msgctxt "static pages"
5992
  msgid "Individually enabled"
5993
  msgstr "Posamezno omogočene"
5994
 
5995
- #: strings.php:96
5996
  msgid "Server-side"
5997
  msgstr "Na strani strežnika"
5998
 
5999
- #: strings.php:97
6000
  msgctxt "Insertion"
6001
  msgid "Client-side"
6002
  msgstr "Na strani odjemalca"
6003
 
6004
- #: strings.php:98
6005
  msgctxt "Dynamic blocks"
6006
  msgid "Client-side show"
6007
  msgstr "Prikaži na strani odjemalca"
6008
 
6009
- #: strings.php:99
6010
  msgctxt "Dynamic blocks"
6011
  msgid "Client-side insert"
6012
  msgstr "Vstavi na strani odjemalca"
6013
 
6014
- #: strings.php:100
6015
  msgctxt "Insertion"
6016
  msgid "Server-side using W3 Total Cache"
6017
  msgstr "Na strani strežnika z uporabo W3 Total Cache"
6018
 
6019
- #: strings.php:106
6020
  msgid "Replace element"
6021
  msgstr "Nadomesti element"
6022
 
6023
- #: strings.php:108
6024
  msgid "desktop devices"
6025
  msgstr "namizne naprave"
6026
 
6027
- #: strings.php:109
6028
  msgid "mobile devices"
6029
  msgstr "mobilne naprave"
6030
 
6031
- #: strings.php:110
6032
  msgid "tablet devices"
6033
  msgstr "tablične naprave"
6034
 
6035
- #: strings.php:111
6036
  msgid "phone devices"
6037
  msgstr "telefonske naprave"
6038
 
6039
- #: strings.php:112
6040
  msgid "desktop and tablet devices"
6041
  msgstr "namizne in telefonske naprave"
6042
 
6043
- #: strings.php:113
6044
  msgid "desktop and phone devices"
6045
  msgstr "tablične in telefonske naprave"
6046
 
6047
- #: strings.php:115
6048
  msgid "Stick to the left"
6049
  msgstr "Lepljiv na levi"
6050
 
6051
- #: strings.php:116
6052
  msgid "Stick to the content left"
6053
  msgstr "Lepljiv na vsebino levo"
6054
 
6055
- #: strings.php:117
6056
  msgid "Stick to the content right"
6057
  msgstr "Lepljiv na vsebino desno"
6058
 
6059
- #: strings.php:118
6060
  msgid "Stick to the right"
6061
  msgstr "Lepljiv na desni"
6062
 
6063
- #: strings.php:120
6064
  msgid "Stick to the top"
6065
  msgstr "Lepljiv na vrh"
6066
 
6067
- #: strings.php:121
6068
  msgid "Scroll with the content"
6069
  msgstr "Pomikaj z vsebino"
6070
 
6071
- #: strings.php:122
6072
  msgid "Stick to the bottom"
6073
  msgstr "Lepljiv na dno"
6074
 
6075
- #: strings.php:124
6076
  msgid "Fade"
6077
  msgstr "Uveni"
6078
 
6079
- #: strings.php:125
6080
  msgid "Slide"
6081
  msgstr "Drsaj"
6082
 
6083
- #: strings.php:126
6084
  msgid "Slide and Fade"
6085
  msgstr "Drsaj in Uveni"
6086
 
6087
- #: strings.php:127
6088
  msgid "Flip"
6089
  msgstr "Zavrti"
6090
 
6091
- #: strings.php:128
6092
  msgid "Zoom In"
6093
  msgstr "Približaj"
6094
 
6095
- #: strings.php:129
6096
  msgid "Zoom Out"
6097
  msgstr "Oddalji"
6098
 
6099
- #: strings.php:130
6100
  msgid "Turn"
6101
  msgstr "Obrni"
6102
 
6103
- #: strings.php:132
6104
  msgid "Page loaded"
6105
  msgstr "Stran naložena"
6106
 
6107
- #: strings.php:133
6108
  msgid "Page scrolled (%)"
6109
  msgstr "Stran pomaknjena (%)"
6110
 
6111
- #: strings.php:134
6112
  msgid "Page scrolled (px)"
6113
  msgstr "Stran pomaknjena (px)"
6114
 
6115
- #: strings.php:135
6116
  msgid "Element visible"
6117
  msgstr "Element viden"
6118
 
6119
- #: strings.php:137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6120
  msgid "Insert immediately"
6121
  msgstr "Vstavi takoj"
6122
 
6123
- #: strings.php:138
6124
  msgid "Delay insertion"
6125
  msgstr "Zakasni vstavljanje"
6126
 
6127
- #: strings.php:139
6128
  msgid "Insert between dates"
6129
  msgstr "Vstavi med datumoma"
6130
 
6131
- #: strings.php:140
6132
  msgid "Insert outside dates"
6133
  msgstr "Vstavi izven datumov"
6134
 
6135
- #: strings.php:141
6136
  msgid "Insert only"
6137
  msgstr "Vstavi samo"
6138
 
6139
- #: strings.php:142
6140
  msgid "Insert for posts published between dates"
6141
  msgstr "Vstavi samo za prispevke objavljene med datumoma"
6142
 
6143
- #: strings.php:143
6144
  msgid "Insert for posts published outside dates"
6145
  msgstr "Vstavi samo za prispevke objavljene izven datumov"
6146
 
6147
- #: strings.php:145
6148
  msgctxt "functions"
6149
  msgid "Standard"
6150
  msgstr "Običajne"
6151
 
6152
- #: strings.php:146
6153
  msgctxt "detection"
6154
  msgid "Standard"
6155
  msgstr "Običajno"
6156
 
6157
- #: strings.php:147
6158
  msgctxt "functions"
6159
  msgid "Multibyte"
6160
  msgstr "Večznakovne"
6161
 
6162
- #: strings.php:149
6163
  msgctxt "action"
6164
  msgid "None"
6165
  msgstr "Nobena"
6166
 
6167
- #: strings.php:150
6168
  msgctxt "button"
6169
  msgid "None"
6170
  msgstr "Noben"
6171
 
6172
- #: strings.php:151
6173
  msgid "Popup Message"
6174
  msgstr "Pojavno Sporočilo"
6175
 
6176
- #: strings.php:152
6177
  msgid "Redirection"
6178
  msgstr "Preusmeritev"
6179
 
6180
- #: strings.php:154
6181
  msgid "Do nothing"
6182
  msgstr "Ne naredi ničesar"
6183
 
6184
- #: strings.php:156
6185
  msgctxt "Action when ad blocking detected"
6186
  msgid "Show"
6187
  msgstr "Pokaži"
6188
 
6189
- #: strings.php:157
6190
  msgctxt "Action when ad blocking detected"
6191
  msgid "Hide"
6192
  msgstr "Skrij"
6193
 
6194
- #: strings.php:159
6195
  msgctxt "tracking"
6196
  msgid "Internal"
6197
  msgstr "Interno"
6198
 
6199
- #: strings.php:160
6200
  msgctxt "detection"
6201
  msgid "Advanced"
6202
  msgstr "Napredno"
6203
 
6204
- #: strings.php:163
6205
  msgctxt "Manual loading"
6206
  msgid "Auto"
6207
  msgstr "Samodejno"
6208
 
6209
- #: strings.php:164
6210
  msgctxt "Manual loading"
6211
  msgid "Always"
6212
  msgstr "Vedno"
6213
 
6214
- #: strings.php:166
6215
  msgid "Top right"
6216
  msgstr "Zgoraj desno"
6217
 
6218
- #: strings.php:167
6219
  msgid "Top left"
6220
  msgstr "Zgoraj levo"
6221
 
6222
- #: strings.php:168
6223
  msgid "Bottom right"
6224
  msgstr "Spodaj desno"
6225
 
6226
- #: strings.php:169
6227
  msgid "Bottom left"
6228
  msgstr "Spodaj levo"
6229
 
6230
- #: strings.php:171
6231
  msgctxt "AdSense Ad Type"
6232
  msgid "Standard"
6233
  msgstr "Običajni"
6234
 
6235
- #: strings.php:172
6236
  msgctxt "AdSense Ad Type"
6237
  msgid "Link"
6238
  msgstr "Povezave"
6239
 
6240
- #: strings.php:173
6241
  msgctxt "AdSense Ad Type"
6242
  msgid "In-article"
6243
  msgstr "V članku"
6244
 
6245
- #: strings.php:174
6246
  msgctxt "AdSense Ad Type"
6247
  msgid "In-feed"
6248
  msgstr "V viru"
6249
 
6250
- #: strings.php:175
6251
  msgctxt "AdSense Ad Type"
6252
  msgid "Matched content"
6253
  msgstr "Prilagojena vsebina"
6254
 
6255
- #: strings.php:176
6256
  msgctxt "AdSense Ad Type"
6257
  msgid "Auto Ads"
6258
  msgstr "Samodejni"
6259
 
6260
- #: strings.php:177
6261
  msgctxt "AdSense Ad Type"
6262
  msgid "AMP Only"
6263
  msgstr "Samo AMP"
6264
 
6265
- #: strings.php:179
6266
  msgctxt "AMP ad"
6267
  msgid "Disabled"
6268
  msgstr "Onemogočen"
6269
 
6270
- #: strings.php:180
6271
  msgid "Above the fold"
6272
  msgstr "Nad pregibom"
6273
 
6274
- #: strings.php:181
6275
  msgid "Below the fold"
6276
  msgstr "Pod pregibom"
6277
 
6278
- #: strings.php:182
6279
  msgctxt "AMP ad"
6280
  msgid "Sticky"
6281
  msgstr "Lepljiv"
6282
 
6283
- #: strings.php:184
6284
  msgctxt "size"
6285
  msgid "Fixed"
6286
  msgstr "Fiksna"
6287
 
6288
- #: strings.php:185
6289
  msgctxt "size"
6290
  msgid "Responsive"
6291
  msgstr "Odzivna"
6292
 
6293
- #: strings.php:186
6294
  msgctxt "size"
6295
  msgid "Fixed by viewport"
6296
  msgstr "Fiksna glede na pogled"
6297
 
6298
- #: strings.php:190
6299
  msgid "Impressions and clicks"
6300
  msgstr "Prikazi in Kliki"
6301
 
6302
- #: strings.php:191
6303
  msgid "Advanced WordPress Ad Management Plugin"
6304
  msgstr "Napredni WordPress Vtičnik za Upravljanje z Oglasi"
6305
 
6306
- #: strings.php:197
6307
  msgctxt "Button"
6308
  msgid "Hide"
6309
  msgstr "Skrij"
6310
 
6311
- #: strings.php:198
6312
  msgctxt "Button"
6313
  msgid "Show"
6314
  msgstr "Pokaži"
6315
 
6316
- #: strings.php:199
6317
  msgid "Insertion expired"
6318
  msgstr "Vstavljanje poteklo"
6319
 
6320
- #: strings.php:200
6321
  msgid "Duration"
6322
  msgstr "Trajanje"
6323
 
6324
- #: strings.php:201
6325
  msgid "Invalid end date - must be after start date"
6326
  msgstr "Neveljaven končni datum - mora biti za začetnim datumom"
6327
 
6328
- #: strings.php:202
6329
  msgid "Invalid start date - only data for 1 year back is available"
6330
  msgstr "Neveljaven začetni datum - na voljo so samo pdatki za 1 leto nataj"
6331
 
6332
- #: strings.php:203
6333
  msgid "Invalid date range - only data for 1 year can be displayed"
6334
  msgstr ""
6335
  "Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
6336
 
6337
- #: strings.php:211
6338
  msgid "Delete"
6339
  msgstr "Pobriši"
6340
 
6341
- #: strings.php:212
6342
  msgid "Switch"
6343
  msgstr "Preklopi"
6344
 
6345
- #: strings.php:214
 
 
 
 
6346
  msgid "Delete all statistics data?"
6347
  msgstr "Pobrišem vse podatke o statistiki?"
6348
 
 
 
 
 
 
 
 
6349
  #. translators: %s: dates
6350
- #: strings.php:216
6351
  msgid "Delete statistics data between %s and %s?"
6352
  msgstr "Pobrišem podatke o statistiki med %s in %s?"
6353
 
6354
- #: strings.php:217
6355
  msgid "Cancel block order rearrangement"
6356
  msgstr "Prekliči preureditev vrstnega reda blokov"
6357
 
6358
- #: strings.php:219
6359
  msgid "downloading..."
6360
  msgstr "prenašam..."
6361
 
6362
- #: strings.php:220
6363
  msgid "download error"
6364
  msgstr "napaka pri prenosu"
6365
 
6366
- #: strings.php:221
6367
  msgid "update error"
6368
  msgstr "napaka pri posodobitvi"
6369
 
6370
- #: strings.php:222
6371
  msgid "Updating..."
6372
  msgstr "Posodabljam..."
6373
 
6374
- #: strings.php:224
6375
  msgid "ERROR"
6376
  msgstr "NAPAKA"
6377
 
6378
- #: strings.php:225
6379
  msgid "Error reloading settings"
6380
  msgstr "Napaka pri nalaganju nastavitev"
6381
 
6382
- #: strings.php:227
6383
  msgctxt "Search field placeholder"
6384
  msgid "Search..."
6385
  msgstr "Išči..."
6386
 
6387
- #: strings.php:228
6388
  msgctxt "Search field placeholder"
6389
  msgid "Filter..."
6390
  msgstr "Filter..."
6391
 
6392
- #: strings.php:229
6393
  msgid "Use filter to limit names in the list"
6394
  msgstr "Uporabite filter za omejitev imen v seznamu"
6395
 
6396
- #: strings.php:230
6397
  msgctxt "Button"
6398
  msgid "Filter"
6399
  msgstr "Filter"
6400
 
6401
- #: strings.php:232
6402
  msgid "Position not available"
6403
  msgstr "Položaj ni na razpolago"
6404
 
6405
- #: strings.php:233
6406
  msgid ""
6407
  "Theme check | Selected position for automatic insertion might not be not "
6408
  "available on this page type"
@@ -6410,101 +6550,101 @@ msgstr ""
6410
  "Preverjanje teme | Izbran položaj za samodejno vstavljanje mogoče ni na "
6411
  "razpolago na tem tipu strani"
6412
 
6413
- #: strings.php:234
6414
  msgid "Position available"
6415
  msgstr "Položaj na razpolago"
6416
 
6417
- #: strings.php:236
6418
  msgid "Select or upload banner image"
6419
  msgstr "Izberi ali naloži sliko pasice"
6420
 
6421
- #: strings.php:237
6422
  msgid "Use this image"
6423
  msgstr "Uporabi to sliko"
6424
 
6425
- #: strings.php:238
6426
  msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
6427
  msgstr ""
6428
  "Preklop na fizično datoteko ads.txt bo izbrisal navidezno datoreko ads.txt."
6429
 
6430
- #: strings.php:240
6431
  msgctxt "Monday"
6432
  msgid "MO"
6433
  msgstr "PO"
6434
 
6435
- #: strings.php:241
6436
  msgctxt "Tuesday"
6437
  msgid "TU"
6438
  msgstr "TO"
6439
 
6440
- #: strings.php:242
6441
  msgctxt "Wednesday"
6442
  msgid "WE"
6443
  msgstr "SR"
6444
 
6445
- #: strings.php:243
6446
  msgctxt "Thursday"
6447
  msgid "TH"
6448
  msgstr "ČE"
6449
 
6450
- #: strings.php:244
6451
  msgctxt "Friday"
6452
  msgid "FR"
6453
  msgstr "PE"
6454
 
6455
- #: strings.php:245
6456
  msgctxt "Saturday"
6457
  msgid "SA"
6458
  msgstr "SO"
6459
 
6460
- #: strings.php:246
6461
  msgctxt "Sunday"
6462
  msgid "SU"
6463
  msgstr "NE"
6464
 
6465
- #: strings.php:262
6466
  msgctxt "Scheduling"
6467
  msgid "FALLBACK"
6468
  msgstr "REZERVA"
6469
 
6470
- #: strings.php:263
6471
  msgid "Automatically placed by AdSense Auto ads code"
6472
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
6473
 
6474
- #: strings.php:268
6475
  msgid "Add"
6476
  msgstr "Dodaj"
6477
 
6478
- #: strings.php:269
6479
  msgctxt "Element"
6480
  msgid "Parent"
6481
  msgstr "Nadrejeni"
6482
 
6483
- #: strings.php:270
6484
  msgid "Cancel element selection"
6485
  msgstr "Prekliči izbor HTML elementa"
6486
 
6487
- #: strings.php:271
6488
  msgid "Select parent element"
6489
  msgstr "Izberi nadrejeni element"
6490
 
6491
- #: strings.php:272
6492
  msgid "CSS selector"
6493
  msgstr "CSS selektor"
6494
 
6495
- #: strings.php:273
6496
  msgid "Use current selector"
6497
  msgstr "Uporabi trenutni selektor"
6498
 
6499
- #: strings.php:274
6500
  msgid "ELEMENT"
6501
  msgstr "ELEMENT"
6502
 
6503
- #: strings.php:275
6504
  msgid "PATH"
6505
  msgstr "POT"
6506
 
6507
- #: strings.php:276
6508
  msgid "SELECTOR"
6509
  msgstr "SELEKTOR"
6510
 
@@ -6516,6 +6656,10 @@ msgstr ""
6516
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
6517
  "na optimalna mesta"
6518
 
 
 
 
 
6519
  #~ msgid "Maximize your revenue!"
6520
  #~ msgstr "Povečajte svoj prihodek!"
6521
 
@@ -6744,9 +6888,6 @@ msgstr ""
6744
  #~ msgid "Paragraphs"
6745
  #~ msgstr "Odstavki"
6746
 
6747
- #~ msgid "Images"
6748
- #~ msgstr "Slike"
6749
-
6750
  #~ msgid "Excerpts"
6751
  #~ msgstr "Izvlečki"
6752
 
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: 2020-04-22 16:51:30+00:00\n"
8
+ "PO-Revision-Date: 2020-04-22 18:51+0200\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\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:399
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
+ #: ad-inserter.php:415
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
+ #: ad-inserter.php:422
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
+ #: ad-inserter.php:507
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
+ #: ad-inserter.php:514
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
+ #: ad-inserter.php:523
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
+ #: ad-inserter.php:530
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
+ #: ad-inserter.php:541
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
+ #: ad-inserter.php:548
60
  msgctxt "Menu item"
61
  msgid "Show Log"
62
  msgstr "Pokaži beležko"
63
 
64
  #. translators: Debugging position name Before HTML element
65
+ #: ad-inserter.php:1192
66
  msgid "Before"
67
  msgstr "Pred"
68
 
69
  #. translators: Debugging position name After HTML element
70
+ #: ad-inserter.php:1197
71
  msgid "After"
72
  msgstr "Za"
73
 
74
  #. translators: Debugging position name Prepend content of HTML element (before
75
  #. the content of the HTML element)
76
+ #: ad-inserter.php:1202 strings.php:104
77
  msgid "Prepend content"
78
  msgstr "Dodaj pred vsebino"
79
 
80
  #. translators: Debugging position name Append content of HTML element (after
81
  #. the content of the HTML element)
82
+ #: ad-inserter.php:1207 strings.php:105
83
  msgid "Append content"
84
  msgstr "Dodaj za vsebino"
85
 
86
  #. translators: Debugging position name Replace content of HTML element
87
+ #: ad-inserter.php:1212 strings.php:106
88
  msgid "Replace content"
89
  msgstr "Nadomesti vsebino"
90
 
91
  #. translators: Debugging position name Replace HTML element
92
+ #: ad-inserter.php:1217 strings.php:169
93
  msgid "Replace"
94
  msgstr "Nadomesti"
95
 
96
  #. translators: Debugging message when output buffering is enabled
97
+ #: ad-inserter.php:1264
98
  msgid "OUTPUT BUFFERING"
99
  msgstr "PREDPOMNJENJE IZHODA"
100
 
101
  #. translators: Debugging position
102
+ #: ad-inserter.php:1268
103
  msgid "Above Header"
104
  msgstr "Nad Glavo"
105
 
106
+ #: ad-inserter.php:1563
107
  msgctxt "Menu item"
108
  msgid "Log In"
109
  msgstr "Prijava"
110
 
111
  #. translators: %s: Ad Inserter
112
+ #: ad-inserter.php:1898 ad-inserter.php:2993
113
  msgid "%s Settings"
114
  msgstr "%s Nastavitve"
115
 
116
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
117
+ #: ad-inserter.php:2384
118
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
119
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
120
 
121
+ #: ad-inserter.php:2384
122
  msgid "NO ACTION"
123
  msgstr "NI AKCIJE"
124
 
125
+ #: ad-inserter.php:2385
126
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
127
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
128
 
129
+ #: ad-inserter.php:2386
130
  msgid "AD BLOCKING DETECTED - ACTION"
131
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
132
 
133
+ #: ad-inserter.php:2387
134
  msgid "AD BLOCKING NOT DETECTED"
135
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
136
 
137
+ #: ad-inserter.php:2388
138
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
139
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
140
 
141
+ #: ad-inserter.php:2389
142
  msgid "AD BLOCKING DETECTED - NO ACTION"
143
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
144
 
145
  #. Translators: 1: number of blocks, 2: Ad Inserter
146
+ #: ad-inserter.php:2688
147
  msgid "Hey, you are now using %1$s %2$s block."
148
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
149
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
151
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
152
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
153
 
154
+ #: ad-inserter.php:2691
155
  msgid "Please help me to solve a problem first"
156
  msgstr "Najprej mi, prosim, pomagajte rešiti problem"
157
 
158
+ #: ad-inserter.php:2695
159
  msgid "Maybe later"
160
  msgstr "Mogoče kasneje"
161
 
162
  #. Translators: %s: Ad Inserter
163
+ #: ad-inserter.php:2700
164
  msgid "Hey, you are using %s and I hope you're happy with it."
165
  msgstr "Hej, uporabljate %s in upam, da ste zadovoljni z njim."
166
 
167
+ #: ad-inserter.php:2703
168
  msgid "OK, but please help me with the settings first"
169
  msgstr "V redu, ampak najprej mi, prosim, pomagajte pri nastavitvah"
170
 
171
+ #: ad-inserter.php:2716
172
  msgid ""
173
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
174
  "like saying 'Thank you'. Somebody will be happy."
176
  "Prosimo, vzemite si čas in ocenite vtičnik. Ko ga ocenite s 5-imi zvezdicami "
177
  "je kot bi rekli 'Hvala'. Nekdo bo vsesel."
178
 
179
+ #: ad-inserter.php:2718
180
  msgid ""
181
  "Positive reviews are a great incentive to fix bugs and to add new features "
182
  "for better monetization of your website."
184
  "Pozitivne ocene so velika vzpodbuda za odpravo hroščev in dodajanje novih "
185
  "funkcij za boljšo monetizacijo vašega spletnega mesta."
186
 
187
+ #: ad-inserter.php:2724
188
  msgid "Sure"
189
  msgstr "Seveda"
190
 
191
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
192
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
193
+ #: ad-inserter.php:2741 ad-inserter.php:2776
194
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
195
  msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
196
 
197
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
198
+ #: ad-inserter.php:2748
199
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
200
  msgstr ""
201
  "Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
202
 
203
+ #: ad-inserter.php:2758
204
  msgctxt "Menu item"
205
  msgid "Settings"
206
  msgstr "Nastavitve"
207
 
208
+ #: ad-inserter.php:2790
209
  msgid ""
210
  "Load settings page in safe mode to avoid collisions with other plugins or "
211
  "theme"
213
  "Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
214
  "drugimi vtičniki ali temo"
215
 
216
+ #: ad-inserter.php:2790
217
  msgid "Safe mode"
218
  msgstr "Varni način"
219
 
220
  #. translators: %s: Ad Inserter
221
+ #: ad-inserter.php:2885
222
  msgctxt "Meta box name"
223
  msgid "%s Individual Exceptions"
224
  msgstr "Posamezne Izjeme za %s"
225
 
226
+ #: ad-inserter.php:2914 ad-inserter.php:10166 class.php:2278
227
+ #: includes/preview.php:2295 includes/preview.php:2340
228
+ #: includes/preview.php:2377 settings.php:4285 strings.php:3
229
  msgid "Block"
230
  msgstr "Blok"
231
 
232
+ #: ad-inserter.php:2915 settings.php:4286 settings.php:4371
233
  msgid "Name"
234
  msgstr "Ime"
235
 
236
+ #: ad-inserter.php:2918 settings.php:1180
237
  msgid "Default insertion"
238
  msgstr "Privzeto vstavljanje"
239
 
240
  #. translators: For this post or page
241
+ #: ad-inserter.php:2921
242
  msgctxt "Page"
243
  msgid "For this"
244
  msgstr "Za to"
245
 
246
+ #: ad-inserter.php:2922
247
  msgctxt "Post"
248
  msgid "For this"
249
  msgstr "Za ta"
250
 
251
+ #: ad-inserter.php:2934
252
  msgctxt "Enabled/disabled on all"
253
  msgid "pages"
254
  msgstr "straneh"
255
 
256
+ #: ad-inserter.php:2937
257
  msgctxt "Enabled/disabled on all"
258
  msgid "posts"
259
  msgstr "prispevkih"
260
 
261
+ #: ad-inserter.php:2954 ad-inserter.php:2966 strings.php:175
262
  msgid "Enabled"
263
  msgstr "Omogočeno"
264
 
265
  #. translators: Menu items
266
+ #: ad-inserter.php:2954 ad-inserter.php:2966
267
  #: includes/functions-check-now.php:2401 includes/functions.old.php:2326
268
+ #: includes/functions.php:2650 strings.php:16
269
  msgid "Disabled"
270
  msgstr "Onemogočeno"
271
 
272
+ #: ad-inserter.php:2956
273
  msgid "No individual exceptions"
274
  msgstr "Ni posameznih izjem"
275
 
276
  #. translators: Not enabled for pages or posts
277
+ #: ad-inserter.php:2958
278
  msgid "Not enabled for"
279
  msgstr "Ni omogočeno za"
280
 
281
  #. translators: No individual exceptions enabled for pages or posts
282
+ #: ad-inserter.php:2986
283
  msgid "No block has individual exceptions enabled"
284
  msgstr "Noben blok nima omogočenih posameznih izjem"
285
 
286
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
287
+ #: ad-inserter.php:2991
288
  msgid ""
289
  "Default insertion can be configured for each block on %1$s page - button "
290
  "next to %2$s checkbox."
292
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
293
  "poleg kljukice za vklop %2$s."
294
 
295
+ #: ad-inserter.php:2994 settings.php:1158
296
  msgid "Tag / Archive pages"
297
  msgstr "Strani oznak / arhiva"
298
 
299
+ #: ad-inserter.php:2996
300
  msgid ""
301
  "When individual exceptions for a block are enabled, a checkbox will be "
302
  "listed here to change default insertion for this post or page."
304
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
305
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
306
 
307
+ #: ad-inserter.php:2997
308
  msgid ""
309
  "This way you can individually enable or disable blocks on specific posts or "
310
  "pages."
312
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
313
  "prispevku ali strani."
314
 
315
+ #: ad-inserter.php:2999
316
  msgid "For more information check page %s"
317
  msgstr "Za več informacij poglejte stran %s"
318
 
319
  #. translators: Ad Inserter Exceptions documentation page
320
+ #: ad-inserter.php:3001
321
  msgid "Individual Exceptions"
322
  msgstr "Posamezne Izjeme"
323
 
324
+ #: ad-inserter.php:3048
325
  msgid "STATIC PAGE"
326
  msgstr "STATIČNA STRAN"
327
 
328
+ #: ad-inserter.php:3051
329
  msgid "POST"
330
  msgstr "PRISPEVEK"
331
 
332
+ #: ad-inserter.php:3054
333
  msgid "HOMEPAGE"
334
  msgstr "DOMAČA STRAN"
335
 
336
+ #: ad-inserter.php:3057
337
  msgid "CATEGORY PAGE"
338
  msgstr "STRAN KATEGORIJE"
339
 
340
+ #: ad-inserter.php:3060
341
  msgid "SEARCH PAGE"
342
  msgstr "STRAN ISKANJE"
343
 
344
+ #: ad-inserter.php:3063
345
  msgid "ARCHIVE PAGE"
346
  msgstr "STRAN ARHIVA"
347
 
348
+ #: ad-inserter.php:3066
349
  msgid "ERROR 404 PAGE"
350
  msgstr "STRAN NAPAKA 404"
351
 
352
+ #: ad-inserter.php:3069
353
  msgid "AJAX CALL"
354
  msgstr "AJAX KLIC"
355
 
356
+ #: ad-inserter.php:3072
357
  msgid "UNKNOWN PAGE TYPE"
358
  msgstr "NEZNAN TIP STRANI"
359
 
360
+ #: ad-inserter.php:3089
361
  msgid "Click to delete ad blocking detection cokies"
362
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
363
 
364
+ #: ad-inserter.php:3090
365
  msgid "AD BLOCKING STATUS UNKNOWN"
366
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
367
 
368
  #. translators: %s: AdSense Auto Ads
369
+ #: ad-inserter.php:3119
370
  msgid ""
371
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
372
  "positions"
374
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
375
  "položaje"
376
 
377
+ #: ad-inserter.php:3254
378
  msgid "Code for insertion"
379
  msgstr "Koda za vstavljanje"
380
 
381
+ #: ad-inserter.php:3254
382
  msgid "character"
383
  msgid_plural "characters"
384
  msgstr[0] "znak"
386
  msgstr[2] "znaki"
387
  msgstr[3] "znakov"
388
 
389
+ #: ad-inserter.php:3270
390
  msgid "Header code"
391
  msgstr "Koda v glavi"
392
 
393
+ #: ad-inserter.php:3270
394
  msgctxt "Header code"
395
  msgid "DISABLED"
396
  msgstr "ONEMOGOČENA"
397
 
398
+ #: ad-inserter.php:3270 ad-inserter.php:3503
399
  msgid "character inserted"
400
  msgid_plural "characters inserted"
401
  msgstr[0] "znak vstavljen"
403
  msgstr[2] "znaki vstavljeni"
404
  msgstr[3] "znakov vstavljenih"
405
 
406
+ #: ad-inserter.php:3503
407
  msgid "Footer code"
408
  msgstr "Koda v nogi"
409
 
410
+ #: ad-inserter.php:3503
411
  msgctxt "Footer code"
412
  msgid "DISABLED"
413
  msgstr "ONEMOGOČENA"
414
 
415
+ #: ad-inserter.php:3509
416
  msgid "JAVASCRIPT NOT WORKING"
417
  msgstr "JAVASCRIPT NE DELA"
418
 
419
+ #: ad-inserter.php:3509
420
  msgid "NO JAVASCRIPT ERRORS"
421
  msgstr "BREZ JAVASCRIPT NAPAK"
422
 
423
+ #: ad-inserter.php:3509
424
  msgid "JAVASCRIPT ERRORS"
425
  msgstr "JAVASCRIPT NAPAKE"
426
 
427
  #. translators: block name (block with default settings)
428
+ #: ad-inserter.php:5956
429
  msgctxt "Block name"
430
  msgid "Default"
431
  msgstr "Privzeti"
432
 
433
  #. translators: %s: Ad Inserter
434
+ #: ad-inserter.php:6622
435
  msgid "Error importing %s settings."
436
  msgstr "Napaka pri uvozu %s nastavitev."
437
 
438
+ #: ad-inserter.php:6623
439
  msgid "Error importing settings for block"
440
  msgid_plural "Error importing settings for blocks:"
441
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
443
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
444
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
445
 
446
+ #: ad-inserter.php:6676
447
  msgid "Settings saved."
448
  msgstr "Nastavitve shranjene."
449
 
450
  #. translators: %s: Ad Inserter
451
+ #: ad-inserter.php:6678
452
  msgid "Invalid data received - %s settings not saved."
453
  msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
454
 
455
+ #: ad-inserter.php:6777
456
  msgid "Settings cleared."
457
  msgstr "Nastavitve ponastavljene."
458
 
459
  #. Translators: Post/Static page must have between X and Y words
460
+ #: ad-inserter.php:7162 ad-inserter.php:7164 ad-inserter.php:7187
461
+ #: settings.php:2202
462
  msgid "word"
463
  msgid_plural "words"
464
  msgstr[0] "besedo"
466
  msgstr[2] "besede"
467
  msgstr[3] "besed"
468
 
469
+ #: ad-inserter.php:7201 ad-inserter.php:7328
470
  msgid "HTML TAGS REMOVED"
471
  msgstr "HTML ZNAČKE ODSTRANJENE"
472
 
473
+ #: ad-inserter.php:7404
474
  msgid "BEFORE COMMENTS"
475
  msgstr "PRED KOMENTARJI"
476
 
477
+ #: ad-inserter.php:7530
478
  msgid "AFTER COMMENTS"
479
  msgstr "PO KOMETARJIH"
480
 
481
+ #: ad-inserter.php:7611
482
  msgid "BETWEEN COMMENTS"
483
  msgstr "MED KOMENTARJI"
484
 
485
+ #: ad-inserter.php:9473 ad-inserter.php:9556
486
  msgctxt "category name"
487
  msgid "Uncategorized"
488
  msgstr "Nekategorizirano"
489
 
490
+ #: ad-inserter.php:9784
491
  msgid "requires WordPress 4.6 or newer"
492
  msgstr "potrebuje WordPress 4.6 ali novejši"
493
 
494
+ #: ad-inserter.php:9784
495
  msgid "Please update!"
496
  msgstr "Prosimo, posodobite!"
497
 
498
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
499
  #. name with HTML tags will be added)
500
+ #: ad-inserter.php:10039
501
  msgid "Thank you for installing"
502
  msgstr "Hvala za namestitev vtičnika"
503
 
504
  #. translators: Opt-in message: %s: HTML tags
505
+ #: ad-inserter.php:10041
506
  msgid ""
507
  "We would like to %s track its usage %s on your site. This is completely "
508
  "optional and can be disabled at any time."
510
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
511
  "izbirno in se lahko izključi kadarkoli."
512
 
513
+ #: ad-inserter.php:10043
514
  msgid ""
515
  "We don't record any sensitive data, only information regarding the WordPress "
516
  "environment and plugin usage, which will help us to make improvements to the "
520
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
521
 
522
  #. translators: Deactivation message: %s: HTML tags
523
+ #: ad-inserter.php:10080
524
  msgid ""
525
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
526
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
531
  "nam %s in poskušali vam bomo pomagati."
532
 
533
  #. translators: %s: Ad Inserter
534
+ #: ad-inserter.php:10124
535
  msgid "%s block."
536
  msgstr "%s blok."
537
 
538
  #. translators: widget title
539
+ #: ad-inserter.php:10140 ad-inserter.php:10175
540
  msgid "Processing log"
541
  msgstr "Dnevnik procesiranja"
542
 
543
  #. translators: widget title
544
+ #: ad-inserter.php:10142 ad-inserter.php:10176
545
  msgid "Dummy widget"
546
  msgstr "Prazen gradnik"
547
 
548
  #. translators: widget title
549
+ #: ad-inserter.php:10144 ad-inserter.php:10174
550
  msgid "Debugging tools"
551
  msgstr "Orodja za razhroščevanje"
552
 
553
  #. translators: block status (widget title)
554
+ #: ad-inserter.php:10151
555
  msgctxt "block"
556
  msgid "PAUSED"
557
  msgstr "USTAVLJEN"
558
 
559
+ #: ad-inserter.php:10152
560
  msgid "WIDGET DISABLED"
561
  msgstr "GRADNIK ONEMOGOČEN"
562
 
563
+ #: ad-inserter.php:10153
564
  msgid "Unknown block"
565
  msgstr "Neznan blok"
566
 
567
+ #: ad-inserter.php:10161 includes/functions-check-now.php:3261
568
+ #: includes/functions.old.php:3186 includes/functions.php:3575
569
+ #: settings.php:1210
570
  msgid "Title"
571
  msgstr "Naslov"
572
 
573
+ #: ad-inserter.php:10183
574
  msgctxt "Widget"
575
  msgid "Sticky"
576
  msgstr "Lepljiv"
577
 
578
+ #: ad-inserter.php:10232
579
  msgid ""
580
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
581
  "Inserter you need to first deactivate Ad Inserter Pro."
584
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
585
  "Inserter Pro."
586
 
587
+ #: ad-inserter.php:10233
588
  msgid ""
589
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
590
  "will clear all settings that are available only in the Pro version "
595
  "različici (dodatne nastavitve blokov in vtičnika)!"
596
 
597
  #. translators: %s: Ad Inserter
598
+ #: class.php:543 class.php:552 class.php:555
599
  msgid "PHP error in %s block"
600
  msgstr "PHP napaka v bloku %s"
601
 
602
+ #: class.php:2228
603
  msgid "Counters"
604
  msgstr "Števci"
605
 
606
+ #: class.php:2232
607
  msgid "Content"
608
  msgstr "Vsebina"
609
 
610
+ #: class.php:2237
611
  msgid "Excerpt"
612
  msgstr "Izvleček"
613
 
614
+ #: class.php:2242 strings.php:17
615
  msgid "Before post"
616
  msgstr "Pred prispevkom"
617
 
618
+ #: class.php:2247 strings.php:18
619
  msgid "After post"
620
  msgstr "Za prispevkom"
621
 
622
+ #: class.php:2252 strings.php:25
623
  msgid "Between posts"
624
  msgstr "Med prispevki"
625
 
626
+ #: class.php:2257 settings.php:1945 settings.php:4303
627
  msgid "Widget"
628
  msgstr "Gradnik"
629
 
630
+ #: class.php:2262 settings.php:4301
631
  msgid "PHP function call"
632
  msgstr "Klic PHP funkcije"
633
 
634
  #. Translators: %s: custom hook name
635
+ #: class.php:2272
636
  msgid "Custom hook %s call"
637
  msgstr "Klic ročice po meri %s"
638
 
639
+ #: class.php:2308
640
  msgid "AJAX REQUEST"
641
  msgstr "AJAX ZAHTEVEK"
642
 
643
+ #: class.php:2311
644
  msgid "Ajax request for block in iframe"
645
  msgstr "Ajax zahtevek za blok v iframe-u"
646
 
647
+ #: class.php:2345
648
  msgid "Ajax request url, click to open it in a new tab"
649
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
650
 
651
+ #: class.php:2348
652
  msgid "IN THE LOOP"
653
  msgstr "V ZANKI"
654
 
655
+ #: class.php:2348
656
  msgid "YES"
657
  msgstr "DA"
658
 
659
+ #: class.php:2348
660
  msgid "NO"
661
  msgstr "NE"
662
 
663
+ #: class.php:2384
664
  msgid "BLOCK"
665
  msgstr "BLOK"
666
 
667
+ #: class.php:2384
668
  msgctxt "block or widget"
669
  msgid "INSERTED BUT NOT VISIBLE"
670
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
671
 
672
+ #: class.php:2552
673
  msgctxt "viewports"
674
  msgid "ALL"
675
  msgstr "VSI"
676
 
677
+ #: class.php:2585 class.php:2627 class.php:3920 strings.php:278
678
  msgctxt "Block"
679
  msgid "HIDDEN"
680
  msgstr "SKRIT"
681
 
682
+ #: class.php:2634 class.php:3923 strings.php:277
683
  msgctxt "Block"
684
  msgid "VISIBLE"
685
  msgstr "VIDEN"
686
 
687
+ #: class.php:3159 class.php:3229
688
  msgid "ACTIVE GROUPS"
689
  msgstr "AKTIVNE SKUPINE"
690
 
691
+ #: class.php:3619
692
  msgid "start='%s' end='%s' days='%s' type='%s'"
693
  msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
694
 
695
  #. translators: %s: list parameters and type
696
+ #: class.php:3627
697
  msgid "parameters='%s' type='%s'"
698
  msgstr "parametri='%s' tip='%s'"
699
 
700
  #. translators: %s: list parameters and type
701
+ #: class.php:3629
702
  msgid "referers='%s' type='%s'"
703
  msgstr "napotitelji='%s' tip='%s'"
704
 
705
  #. translators: %s: list parameters and type
706
+ #: class.php:3631
707
  msgid "clients='%s' type='%s'"
708
  msgstr "odjemalci='%s' tip='%s'"
709
 
710
  #. translators: %s: list parameters and type
711
+ #: class.php:3803
712
  msgid "countries='%s' type='%s'"
713
  msgstr "države='%s' tip='%s'"
714
 
715
  #. translators: %s: list parameters and type
716
+ #: class.php:3805
717
  msgid "ip addresses='%s' type='%s'"
718
  msgstr "ip naslovi='%s' tip='%s'"
719
 
720
+ #: class.php:3920 class.php:3923
721
  msgid "viewport='%s' type='%s'"
722
  msgstr "pogled='%s' tip='%s'"
723
 
724
+ #: class.php:4277 strings.php:271
725
  msgid "BEFORE"
726
  msgstr "PRED"
727
 
728
+ #: class.php:4285 strings.php:273
729
  msgid "PREPEND CONTENT"
730
  msgstr "DODAJ PRED VSEBINO"
731
 
732
+ #: class.php:4289 strings.php:274
733
  msgid "APPEND CONTENT"
734
  msgstr "DODAJ ZA VSEBINO"
735
 
736
+ #: class.php:4293 strings.php:275
737
  msgid "REPLACE CONTENT"
738
  msgstr "NADOMESTI VSEBINO"
739
 
740
+ #: class.php:4297 strings.php:276
741
  msgid "REPLACE ELEMENT"
742
  msgstr "NADOMESTI ELEMENT"
743
 
744
+ #: class.php:4308 strings.php:272
745
  msgid "AFTER"
746
  msgstr "ZA"
747
 
748
+ #: class.php:4393 includes/preview.php:2340 includes/preview.php:2377
749
  msgid "Code"
750
  msgstr "Koda"
751
 
752
+ #: class.php:4396
753
  msgid "for block"
754
  msgstr "za blok"
755
 
756
+ #: class.php:8174
757
  msgid ""
758
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
759
  "extension for PHP."
762
  "namestiti DOM razširitev za PHP."
763
 
764
  #: includes/editor.php:7 includes/placeholders.php:352
765
+ #: includes/preview.php:2281 strings.php:284
766
  msgid "Use"
767
  msgstr "Uporabi"
768
 
769
+ #: includes/editor.php:8 includes/preview.php:2282
770
  msgid "Reset"
771
  msgstr "Ponastavi"
772
 
773
  #: includes/editor.php:9 includes/placeholders.php:354
774
+ #: includes/preview.php:2284 settings.php:3644 strings.php:227 strings.php:283
775
  msgid "Cancel"
776
  msgstr "Prekliči"
777
 
780
  msgstr "Vizualni Urejevalnik Kode"
781
 
782
  #: includes/editor.php:262 includes/preview-adb.php:289
783
+ #: includes/preview.php:2271
784
  msgid ""
785
  "This page was not loaded properly. Please check browser, plugins and ad "
786
  "blockers."
793
  msgstr "Napaka pri nalaganju strani"
794
 
795
  #: includes/editor.php:264 includes/preview-adb.php:291
796
+ #: includes/preview.php:2273
797
  msgid "PAGE BLOCKED"
798
  msgstr "STRAN BLOKIRANA"
799
 
800
  #: includes/functions-check-now.php:288 includes/functions.old.php:289
801
+ #: includes/functions.php:303
802
  msgid "%d of %d names shown"
803
  msgstr "Prikazanih %d od %d imen"
804
 
805
  #. translators: %s: name filter
806
  #: includes/functions-check-now.php:307 includes/functions.old.php:308
807
+ #: includes/functions.php:322
808
  msgid "No name matches filter"
809
  msgstr "Noben podatek ne ustreza filtru"
810
 
811
  #. translators: %s: Ad Inserter Pro
812
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
813
+ #: includes/functions.php:402
814
  msgid ""
815
  "Import %s settings when saving - if checked, the encoded settings below will "
816
  "be imported for all blocks and settings"
819
  "nastavitve spodaj uvozile za vse bloke in nastavitve"
820
 
821
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
822
+ #: includes/functions.php:402
823
  msgid "Import Settings for"
824
  msgstr "Uvozi Nastavitve za"
825
 
826
  #: includes/functions-check-now.php:400 includes/functions.old.php:387
827
+ #: includes/functions.php:406
828
  msgid "Saved settings for"
829
  msgstr "Shranjene nastavitve za"
830
 
831
  #: includes/functions-check-now.php:420 includes/functions.old.php:407
832
+ #: includes/functions.php:426
833
  msgid "License Key"
834
  msgstr "Licenčni Ključ"
835
 
836
  #: includes/functions-check-now.php:423 includes/functions.old.php:410
837
+ #: includes/functions.php:429
838
  msgid "License Key for"
839
  msgstr "Licenčni Ključ za"
840
 
841
  #: includes/functions-check-now.php:425 includes/functions.old.php:413
842
+ #: includes/functions.php:431
843
  msgid "Open license page"
844
  msgstr "Odpri licenčno stran"
845
 
846
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
847
+ #: includes/functions.php:438
848
  msgid "Hide license key"
849
  msgstr "Skrij licenčni ključ"
850
 
851
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
852
+ #: includes/functions.php:438
853
  msgid "Hide key"
854
  msgstr "Skrij ključ"
855
 
856
  #: includes/functions-check-now.php:447 includes/functions.old.php:436
857
+ #: includes/functions.php:453
858
  msgid "Main content element"
859
  msgstr "Glavni element vsebine"
860
 
861
  #: includes/functions-check-now.php:450 includes/functions.old.php:439
862
+ #: includes/functions.php:456
863
  msgid ""
864
  "Main content element (#id or .class) for 'Stick to the content' position. "
865
  "Leave empty unless position is not properly calculated."
868
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
869
 
870
  #: includes/functions-check-now.php:451 includes/functions.old.php:440
871
+ #: includes/functions.php:457 settings.php:1361 settings.php:2859
872
  msgid "Open HTML element selector"
873
  msgstr "Odpri izbirnik HTML elementa"
874
 
875
  #: includes/functions-check-now.php:456 includes/functions.old.php:445
876
+ #: includes/functions.php:462
877
  msgid "Lazy loading offset"
878
  msgstr "Zamik za leno nalaganje"
879
 
880
  #: includes/functions-check-now.php:459 includes/functions.old.php:448
881
+ #: includes/functions.php:465
882
  msgid "Offset of the block from the visible viewport when it should be loaded"
883
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
884
 
885
  #: includes/functions-check-now.php:470 includes/functions.old.php:459
886
+ #: includes/functions.php:476
887
  msgid "Export / Import Block Settings"
888
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
889
 
890
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
891
+ #: includes/functions.php:491
892
  msgid "Track impressions and clicks for this block"
893
  msgstr "Sledi prikazom in klikom za ta blok"
894
 
895
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
896
+ #: includes/functions.php:491
897
  msgid " - global tracking disabled"
898
  msgstr " - globalno sledenje onemogočeno"
899
 
900
  #: includes/functions-check-now.php:492 includes/functions.old.php:481
901
+ #: includes/functions.php:498
902
  msgid "Generate PDF report"
903
  msgstr "Generiraj PDF poročilo"
904
 
905
  #: includes/functions-check-now.php:497 includes/functions.old.php:486
906
+ #: includes/functions.php:503
907
  msgid "Open public report"
908
  msgstr "Odpri javno poročilo"
909
 
910
  #: includes/functions-check-now.php:511 includes/functions.old.php:500
911
+ #: includes/functions.php:517
912
  msgid "Toggle Ad Blocking Statistics"
913
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
914
 
915
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
916
  #: includes/functions.old.php:508 includes/functions.old.php:2960
917
+ #: includes/functions.php:525 includes/functions.php:3318
918
  msgid "Toggle Statistics"
919
  msgstr "Preklopi Statistiko"
920
 
921
+ #: includes/functions-check-now.php:528 includes/functions.php:534
922
  msgid "Pin list"
923
  msgstr "Pripni seznam"
924
 
925
  #. translators: %s: Ad Inserter Pro
926
  #: includes/functions-check-now.php:543 includes/functions.old.php:524
927
+ #: includes/functions.php:549
928
  msgid "%s license key is not set. Continue?"
929
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
930
 
931
  #. translators: %s: Ad Inserter Pro
932
  #: includes/functions-check-now.php:547 includes/functions.old.php:528
933
+ #: includes/functions.php:553
934
  msgid "Invalid %s license key. Continue?"
935
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
936
 
937
  #. translators: %s: Ad Inserter Pro
938
  #: includes/functions-check-now.php:551 includes/functions.old.php:532
939
+ #: includes/functions.php:557
940
  msgid "%s license overused. Continue?"
941
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
942
 
943
  #: includes/functions-check-now.php:555 includes/functions.old.php:536
944
+ #: includes/functions.php:565 settings.php:1115 settings.php:2303
945
  msgid "Save Settings"
946
  msgstr "Shrani Nastavitve"
947
 
948
  #: includes/functions-check-now.php:615 includes/functions.old.php:596
949
+ #: includes/functions.php:625 includes/preview.php:2473
950
  msgid "Horizontal position"
951
  msgstr "Vodoravni položaj"
952
 
953
  #: includes/functions-check-now.php:638 includes/functions.old.php:619
954
+ #: includes/functions.php:650
955
  msgid ""
956
  "Horizontal margin from the content or screen edge, empty means default value "
957
  "from CSS"
960
  "iz CSS"
961
 
962
  #: includes/functions-check-now.php:646 includes/functions.old.php:627
963
+ #: includes/functions.php:658 includes/preview.php:2533
964
  msgid "Vertical position"
965
  msgstr "Navpični položaj"
966
 
967
  #: includes/functions-check-now.php:661 includes/functions.old.php:642
968
+ #: includes/functions.php:673
969
  msgid ""
970
  "Vertical margin from the top or bottom screen edge, empty means default "
971
  "value from CSS"
974
  "iz CSS"
975
 
976
  #: includes/functions-check-now.php:686 includes/functions.old.php:667
977
+ #: includes/functions.php:701 includes/preview.php:2588
978
  msgid "Animation"
979
  msgstr "Animacija"
980
 
981
  #: includes/functions-check-now.php:704 includes/functions.old.php:685
982
+ #: includes/functions.php:720
983
  msgid "Trigger"
984
  msgstr "Sporžilec"
985
 
986
  #: includes/functions-check-now.php:713 includes/functions.old.php:694
987
+ #: includes/functions.php:729
988
  msgid ""
989
  "Trigger value: page scroll in %, page scroll in px or element with selector "
990
  "(#id or .class) becomes visible"
993
  "selektorjem (#id ali .razred) postane viden"
994
 
995
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
996
+ #: includes/functions.php:733
997
  msgid "Offset"
998
  msgstr "Zamik"
999
 
1000
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
1001
+ #: includes/functions.php:733
1002
  msgid "Offset of trigger element"
1003
  msgstr "Zamik sprožilnega elementa"
1004
 
1005
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
1006
+ #: includes/functions.php:737
1007
  msgid "Delay"
1008
  msgstr "Zakasnitev"
1009
 
1010
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
1011
+ #: includes/functions.php:737
1012
  msgid "Delay animation after trigger condition"
1013
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
1014
 
1015
  #: includes/functions-check-now.php:725 includes/functions.old.php:706
1016
+ #: includes/functions.php:741
1017
  msgid "Trigger once"
1018
  msgstr "Sproži enkrat"
1019
 
1020
  #: includes/functions-check-now.php:727 includes/functions.old.php:708
1021
+ #: includes/functions.php:743
1022
  msgid "Trigger animation only once"
1023
  msgstr "Sproži animacijo samo enkrat"
1024
 
1025
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
1026
  #: includes/functions-check-now.php:2545 includes/functions.old.php:750
1027
  #: includes/functions.old.php:2453 includes/functions.old.php:2470
1028
+ #: includes/functions.php:851 includes/functions.php:2789
1029
+ #: includes/functions.php:2805
1030
  msgid "Tracking is globally disabled"
1031
  msgstr "Sledenje je globalno onemogočeno"
1032
 
1033
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
1034
  #: includes/functions-check-now.php:2549 includes/functions.old.php:754
1035
  #: includes/functions.old.php:2457 includes/functions.old.php:2474
1036
+ #: includes/functions.php:855 includes/functions.php:2793
1037
+ #: includes/functions.php:2809
1038
  msgid "Tracking for this block is disabled"
1039
  msgstr "Sledenje za ta blok je onemogočeno"
1040
 
1041
  #: includes/functions-check-now.php:780 includes/functions.old.php:761
1042
+ #: includes/functions.php:862
1043
  msgid "Double click to toggle controls in public reports"
1044
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
1045
 
1046
  #: includes/functions-check-now.php:786 includes/functions.old.php:767
1047
+ #: includes/functions.php:868 settings.php:3579 settings.php:3615
1048
+ #: settings.php:3657 strings.php:240
1049
  msgid "Loading..."
1050
  msgstr "Nalagam..."
1051
 
1052
  #: includes/functions-check-now.php:807 includes/functions.old.php:788
1053
+ #: includes/functions.php:889
1054
  msgid ""
1055
  "Clear statistics data for the selected range - clear both dates to delete "
1056
  "all data for this block"
1059
  "brisanje vseh podatkov za ta blok"
1060
 
1061
  #: includes/functions-check-now.php:811 includes/functions.old.php:792
1062
+ #: includes/functions.php:893
1063
  msgid "Auto refresh data for the selected range every 60 seconds"
1064
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
1065
 
1066
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1067
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1068
+ #: includes/functions.php:896 includes/functions.php:5812
1069
  msgid "Load data for last month"
1070
  msgstr "Naloži podatke za zadnji mesec"
1071
 
1072
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1073
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1074
+ #: includes/functions.php:896 includes/functions.php:5812
1075
  msgid "Last Month"
1076
  msgstr "Zadnji Mesec"
1077
 
1078
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1079
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1080
+ #: includes/functions.php:899 includes/functions.php:5815
1081
  msgid "Load data for this month"
1082
  msgstr "Naloži podatke za ta mesec"
1083
 
1084
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1085
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1086
+ #: includes/functions.php:899 includes/functions.php:5815
1087
  msgid "This Month"
1088
  msgstr "Ta Mesec"
1089
 
1090
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1091
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1092
+ #: includes/functions.php:902 includes/functions.php:5818
1093
  msgid "Load data for this year"
1094
  msgstr "Naloži podatke za to leto"
1095
 
1096
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1097
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1098
+ #: includes/functions.php:902 includes/functions.php:5818
1099
  msgid "This Year"
1100
  msgstr "To Leto"
1101
 
1102
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
1103
  #: includes/functions.old.php:804 includes/functions.old.php:5271
1104
+ #: includes/functions.php:905 includes/functions.php:5821
1105
  msgid "Load data for the last 15 days"
1106
  msgstr "Naloži podatke za zadnjih 15 dni"
1107
 
1108
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
1109
  #: includes/functions.old.php:807 includes/functions.old.php:5274
1110
+ #: includes/functions.php:908 includes/functions.php:5824
1111
  msgid "Load data for the last 30 days"
1112
  msgstr "Naloži podatke za zadnjih 30 dni"
1113
 
1114
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
1115
  #: includes/functions.old.php:810 includes/functions.old.php:5277
1116
+ #: includes/functions.php:911 includes/functions.php:5827
1117
  msgid "Load data for the last 90 days"
1118
  msgstr "Naloži podatke za zadnjih 90 dni"
1119
 
1120
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
1121
  #: includes/functions.old.php:813 includes/functions.old.php:5280
1122
+ #: includes/functions.php:914 includes/functions.php:5830
1123
  msgid "Load data for the last 180 days"
1124
  msgstr "Naloži podatke za zadnjih 180 dni"
1125
 
1126
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
1127
  #: includes/functions.old.php:816 includes/functions.old.php:5283
1128
+ #: includes/functions.php:917 includes/functions.php:5833
1129
  msgid "Load data for the last 365 days"
1130
  msgstr "Naloži podatke za zadnjih 365 dni"
1131
 
1132
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
1133
  #: includes/functions.old.php:826 includes/functions.old.php:5293
1134
+ #: includes/functions.php:927 includes/functions.php:5843
1135
  msgid "Load data for the selected range"
1136
  msgstr "Naloži podatke za izbrano obdobje"
1137
 
1138
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1139
+ #: includes/functions.php:943
1140
  msgid ""
1141
  "Import settings when saving - if checked, the encoded settings below will be "
1142
  "imported for this block"
1145
  "nastavitve spodaj uvozile za ta blok"
1146
 
1147
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1148
+ #: includes/functions.php:943
1149
  msgid "Import settings for block"
1150
  msgstr "Uvozi nastavitve za blok"
1151
 
1152
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1153
+ #: includes/functions.php:947
1154
  msgid ""
1155
  "Import block name when saving - if checked and 'Import settings for block' "
1156
  "is also checked, the name from encoded settings below will be imported for "
1161
  "uvozilo za ta blok"
1162
 
1163
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1164
+ #: includes/functions.php:947
1165
  msgid "Import block name"
1166
  msgstr "Uvozi ime bloka"
1167
 
1168
  #: includes/functions-check-now.php:869 includes/functions.old.php:850
1169
+ #: includes/functions.php:951
1170
  msgid "Saved settings for block"
1171
  msgstr "Shranjene nastavitve za blok"
1172
 
1173
  #: includes/functions-check-now.php:882 includes/functions.old.php:863
1174
+ #: includes/functions.php:964
1175
  msgid "Export / Import Ad Inserter Pro Settings"
1176
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1177
 
1178
  #: includes/functions-check-now.php:892 includes/functions.old.php:873
1179
+ #: includes/functions.php:974
1180
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1181
  msgstr ""
1182
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1183
  "bloke?"
1184
 
1185
  #: includes/functions-check-now.php:894 includes/functions.old.php:875
1186
+ #: includes/functions.php:976
1187
  msgid "Clear All Statistics Data"
1188
  msgstr "Pobriši Vse Podatke o Statistiki"
1189
 
1190
  #: includes/functions-check-now.php:921 includes/functions.old.php:902
1191
+ #: includes/functions.php:1006
1192
  msgid "Toggle country/city editor"
1193
  msgstr "Preklopi urejevalnik držav/mest"
1194
 
1195
  #: includes/functions-check-now.php:927 includes/functions.old.php:908
1196
+ #: includes/functions.php:1012
1197
  msgid "IP Addresses"
1198
  msgstr "IP Naslovi"
1199
 
1200
  #: includes/functions-check-now.php:930 includes/functions.old.php:911
1201
+ #: includes/functions.php:1015
1202
  msgid "Toggle IP address editor"
1203
  msgstr "Preklopi urejevalnik IP nslovov"
1204
 
1205
  #: includes/functions-check-now.php:933 includes/functions.old.php:914
1206
+ #: includes/functions.php:1018
1207
  msgid ""
1208
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1209
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1212
  "naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
1213
 
1214
  #: includes/functions-check-now.php:937 includes/functions.old.php:918
1215
+ #: includes/functions.php:1027
1216
  msgid "Blacklist IP addresses"
1217
  msgstr "Črni seznam IP naslovov"
1218
 
1219
  #: includes/functions-check-now.php:941 includes/functions.old.php:922
1220
+ #: includes/functions.php:1031
1221
  msgid "Whitelist IP addresses"
1222
  msgstr "Beli seznam IP naslovov"
1223
 
1224
  #: includes/functions-check-now.php:952 includes/functions.old.php:933
1225
+ #: includes/functions.php:1042
1226
  msgid "Countries"
1227
  msgstr "Države"
1228
 
1229
  #: includes/functions-check-now.php:953 includes/functions.old.php:934
1230
+ #: includes/functions.php:1043
1231
  msgid "Cities"
1232
  msgstr "Mesta"
1233
 
1234
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
1235
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1236
+ #: includes/functions.php:1047 includes/functions.php:3283
1237
  msgid "Toggle country editor"
1238
  msgstr "Preklopi urejevalnik držav"
1239
 
1240
  #: includes/functions-check-now.php:960 includes/functions.old.php:941
1241
+ #: includes/functions.php:1050
1242
  msgid "Toggle city editor"
1243
  msgstr "Preklopi urejevalnik mest"
1244
 
1245
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
1246
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1247
+ #: includes/functions.php:1054 includes/functions.php:3286
1248
  msgid "Comma separated country ISO Alpha-2 codes"
1249
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1250
 
1251
  #: includes/functions-check-now.php:968 includes/functions.old.php:949
1252
+ #: includes/functions.php:1063
1253
  msgid "Blacklist countries"
1254
  msgstr "Črni seznam držav"
1255
 
1256
  #: includes/functions-check-now.php:972 includes/functions.old.php:953
1257
+ #: includes/functions.php:1067
1258
  msgid "Whitelist countries"
1259
  msgstr "Beli seznam držav"
1260
 
1261
  #: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
1262
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1263
+ #: includes/functions.php:1523 includes/functions.php:1833
1264
  msgid "Enter license key"
1265
  msgstr "Vnesite licenčni ključ"
1266
 
1267
  #. translators: %s: Ad Inserter Pro
1268
  #: includes/functions-check-now.php:1388 includes/functions.old.php:1367
1269
+ #: includes/functions.php:1529
1270
  msgid ""
1271
  "%s license key is not set. Plugin functionality is limited and updates are "
1272
  "disabled."
1275
  "posodobitve onemogočene."
1276
 
1277
  #. translators: %s: Ad Inserter Pro
1278
+ #: includes/functions-check-now.php:1402 includes/functions.php:1543
1279
  msgid "Warning: %s plugin update server is not accessible"
1280
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
1281
 
1282
  #. translators: updates are not available
1283
+ #: includes/functions-check-now.php:1404 includes/functions.php:1545
1284
  msgid "updates"
1285
  msgstr "posodobitve"
1286
 
1287
  #. translators: updates are not available
1288
+ #: includes/functions-check-now.php:1406 includes/functions.php:1547
1289
  msgid "are not available"
1290
  msgstr "niso na razpolago"
1291
 
1292
  #: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
1293
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1294
+ #: includes/functions.php:1552 includes/functions.php:1842
1295
  msgid "Check license key"
1296
  msgstr "Preverite licenčni ključ"
1297
 
1298
  #. translators: %s: Ad Inserter Pro
1299
  #: includes/functions-check-now.php:1417 includes/functions.old.php:1385
1300
+ #: includes/functions.php:1558
1301
  msgid "Invalid %s license key."
1302
  msgstr "Neveljaven %s licenčni ključ."
1303
 
1304
  #. translators: %s: Ad Inserter Pro
1305
  #: includes/functions-check-now.php:1426 includes/functions.old.php:1394
1306
+ #: includes/functions.php:1567
1307
  msgid "%s license expired. Plugin updates are disabled."
1308
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1309
 
1310
  #: includes/functions-check-now.php:1427 includes/functions.old.php:1395
1311
+ #: includes/functions.php:1568
1312
  msgid "Renew license"
1313
  msgstr "Obnovite licenco"
1314
 
1315
  #. translators: %s: Ad Inserter Pro
1316
  #: includes/functions-check-now.php:1435 includes/functions.old.php:1403
1317
+ #: includes/functions.php:1576
1318
  msgid "%s license overused. Plugin updates are disabled."
1319
  msgstr ""
1320
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1321
 
1322
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1323
+ #: includes/functions.php:1577
1324
  msgid "Manage licenses"
1325
  msgstr "Upravljajte z licencami"
1326
 
1327
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1328
+ #: includes/functions.php:1577
1329
  msgid "Upgrade license"
1330
  msgstr "Nadgradite licenco"
1331
 
1332
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1333
  #: includes/functions-check-now.php:1683 includes/functions.old.php:1610
1334
+ #: includes/functions.php:1835
1335
  msgid ""
1336
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1337
  "limited and updates are disabled."
1341
 
1342
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1343
  #: includes/functions-check-now.php:1692 includes/functions.old.php:1619
1344
+ #: includes/functions.php:1844
1345
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1346
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1347
 
1348
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1349
  #: includes/functions-check-now.php:1708 includes/functions.old.php:1635
1350
+ #: includes/functions.php:1860
1351
  msgid ""
1352
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1353
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1358
 
1359
  #. translators: 1, 3: HTML tags, 2: percentage
1360
  #: includes/functions-check-now.php:1715 includes/functions.old.php:1642
1361
+ #: includes/functions.php:1867
1362
  msgid ""
1363
  "During the license period and 30 days after the license has expired we offer "
1364
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1367
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1368
 
1369
  #: includes/functions-check-now.php:1725 includes/functions.old.php:1652
1370
+ #: includes/functions.php:1877
1371
  msgid "No, thank you."
1372
  msgstr "Ne, hvala."
1373
 
1374
  #: includes/functions-check-now.php:1728 includes/functions.old.php:1655
1375
+ #: includes/functions.php:1880
1376
  msgid "Not now, maybe later."
1377
  msgstr "Ne zdaj, mogoče kasneje."
1378
 
1379
  #: includes/functions-check-now.php:1742 includes/functions.old.php:1669
1380
+ #: includes/functions.php:1894
1381
  msgid "Renew the licence"
1382
  msgstr "Obnovi licenco"
1383
 
1384
  #: includes/functions-check-now.php:1744 includes/functions.old.php:1671
1385
+ #: includes/functions.php:1896
1386
  msgid "Update license status"
1387
  msgstr "Posodobi status licence"
1388
 
1389
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1390
  #: includes/functions-check-now.php:1755 includes/functions.old.php:1682
1391
+ #: includes/functions.php:1909
1392
  msgid ""
1393
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1394
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1399
 
1400
  #. Translators: %s: HTML tag
1401
  #: includes/functions-check-now.php:1777 includes/functions.old.php:1704
1402
+ #: includes/functions.php:1961
1403
  msgid "Warning: %s MaxMind IP geolocation database not found."
1404
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1405
 
1406
  #: includes/functions-check-now.php:2330 includes/functions.old.php:2255
1407
+ #: includes/functions.php:2582
1408
  msgid "Geolocation"
1409
  msgstr "Geolokacija"
1410
 
1411
  #: includes/functions-check-now.php:2334 includes/functions.old.php:2259
1412
+ #: includes/functions.php:2586 settings.php:4290
1413
  msgid "Exceptions"
1414
  msgstr "Izjeme"
1415
 
1416
  #: includes/functions-check-now.php:2339 includes/functions.old.php:2264
1417
+ #: includes/functions.php:2591
1418
  msgid "Multisite"
1419
  msgstr "Multisite"
1420
 
1421
  #: includes/functions-check-now.php:2344 includes/functions.old.php:2269
1422
+ #: includes/functions.php:2596 settings.php:4296
1423
  msgid "Tracking"
1424
  msgstr "Sledenje"
1425
 
1426
  #. translators: %d: days, hours, minutes
1427
  #: includes/functions-check-now.php:2375 includes/functions.old.php:2300
1428
+ #: includes/functions.php:2627
1429
  msgid "Scheduled in %d days %d hours %d minutes"
1430
  msgstr "Planirano v %d dneh %d urah %d minutah"
1431
 
1432
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1433
  #. HTML code for long dash separator
1434
  #: includes/functions-check-now.php:2384 includes/functions.old.php:2309
1435
+ #: includes/functions.php:2636
1436
  msgid "Active %s expires in %d days %d hours %d minutes"
1437
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1438
 
1439
  #: includes/functions-check-now.php:2388 includes/functions.old.php:2313
1440
+ #: includes/functions.php:2640
1441
  msgid "Expired"
1442
  msgstr "Poteklo"
1443
 
1444
  #: includes/functions-check-now.php:2396 includes/functions.old.php:2321
1445
+ #: includes/functions.php:2666 settings.php:1443 settings.php:1458
1446
+ #: settings.php:1574 settings.php:2200
1447
  msgid "and"
1448
  msgstr "in"
1449
 
1450
  #: includes/functions-check-now.php:2399 includes/functions.old.php:2324
1451
+ #: includes/functions.php:2648
1452
  msgid "fallback"
1453
  msgstr "rezerva"
1454
 
1455
  #: includes/functions-check-now.php:2400 includes/functions.old.php:2325
1456
+ #: includes/functions.php:2649
1457
  msgid "Block to be used when scheduling expires"
1458
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1459
 
1460
  #: includes/functions-check-now.php:2425 includes/functions.old.php:2350
1461
+ #: includes/functions.php:2686
1462
  msgid "Load in iframe"
1463
  msgstr "Naloži v iframe-u"
1464
 
1465
  #: includes/functions-check-now.php:2429 includes/functions.old.php:2354
1466
+ #: includes/functions.php:2690 includes/placeholders.php:389
1467
  msgid "Width"
1468
  msgstr "Širina"
1469
 
1470
  #: includes/functions-check-now.php:2430 includes/functions.old.php:2355
1471
+ #: includes/functions.php:2691
1472
  msgid "iframe width, empty means full width (100%)"
1473
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1474
 
1475
  #: includes/functions-check-now.php:2436 includes/functions.old.php:2361
1476
+ #: includes/functions.php:2697 includes/placeholders.php:384
1477
  msgid "Height"
1478
  msgstr "Višina"
1479
 
1480
  #: includes/functions-check-now.php:2437 includes/functions.old.php:2362
1481
+ #: includes/functions.php:2698
1482
  msgid "iframe height, empty means adjust it to iframe content height"
1483
  msgstr ""
1484
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1485
 
1486
  #: includes/functions-check-now.php:2444 includes/functions.old.php:2369
1487
+ #: includes/functions.php:2705
1488
  msgid "Ad label in iframe"
1489
  msgstr "Oznaka oglasa v iframe-u"
1490
 
1491
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1492
+ #: includes/functions.php:2710
1493
  msgid "Preview iframe code"
1494
  msgstr "Predpreglej kodo iframe"
1495
 
1496
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1497
+ #: includes/functions.php:2710 includes/preview.php:2293 settings.php:1110
1498
+ #: settings.php:2921
1499
  msgid "Preview"
1500
  msgstr "Predogled"
1501
 
1502
  #: includes/functions-check-now.php:2463 includes/functions.old.php:2388
1503
+ #: includes/functions.php:2724 settings.php:4297
1504
  msgid "Limits"
1505
  msgstr "Omejitve"
1506
 
1507
  #: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
1508
  #: includes/functions-check-now.php:4429 includes/functions.old.php:2393
1509
  #: includes/functions.old.php:4266 includes/functions.old.php:4329
1510
+ #: includes/functions.php:2729 includes/functions.php:4788
1511
+ #: includes/functions.php:4851 settings.php:2350
1512
  msgid "Ad Blocking"
1513
  msgstr "Blokiranje Oglasov"
1514
 
1515
  #. translators: 1, 2 and 3, 4: HTML tags
1516
  #: includes/functions-check-now.php:2477 includes/functions.old.php:2402
1517
+ #: includes/functions.php:2738
1518
  msgid ""
1519
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1520
  "for tracking!"
1525
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1526
  #. header
1527
  #: includes/functions-check-now.php:2486 includes/functions.old.php:2411
1528
+ #: includes/functions.php:2747
1529
  msgid ""
1530
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1531
  "enabled and automatic insertion %6$s!"
1534
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1535
 
1536
  #: includes/functions-check-now.php:2553 includes/functions.old.php:2478
1537
+ #: includes/functions.php:2813
1538
  msgid "Click fraud protection is globally disabled"
1539
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1540
 
1541
  #: includes/functions-check-now.php:2557 includes/functions.old.php:2482
1542
+ #: includes/functions.php:2817
1543
  msgid "Max clicks per time period are not defined"
1544
  msgstr "Največje število klikov na časovno enoto ni definirano"
1545
 
1546
  #. Translators: Max n impressions
1547
  #: includes/functions-check-now.php:2571 includes/functions.old.php:2496
1548
+ #: includes/functions.php:2831
1549
  msgid "General limits"
1550
  msgstr "Splošne omejitve"
1551
 
1553
  #: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
1554
  #: includes/functions-check-now.php:2674 includes/functions.old.php:2502
1555
  #: includes/functions.old.php:2514 includes/functions.old.php:2599
1556
+ #: includes/functions.php:2837 includes/functions.php:2849
1557
+ #: includes/functions.php:2934
1558
  msgid "Current value"
1559
  msgstr "Trenutna vrednost"
1560
 
1574
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1575
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1576
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1577
+ #: includes/functions.php:2856 includes/functions.php:2866
1578
+ #: includes/functions.php:2885 includes/functions.php:2895
1579
+ #: includes/functions.php:2941 includes/functions.php:2950
1580
+ #: includes/functions.php:2968 includes/functions.php:2977 settings.php:2121
1581
  msgid "Max"
1582
  msgstr "Največ"
1583
 
1584
  #: includes/functions-check-now.php:2597 includes/functions.old.php:2522
1585
+ #: includes/functions.php:2857
1586
  msgid ""
1587
  "Maximum number of impressions for this block. Empty means no general "
1588
  "impression limit."
1598
  #: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
1599
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1600
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1601
+ #: includes/functions.php:2859 includes/functions.php:2869
1602
+ #: includes/functions.php:2944 includes/functions.php:2953
1603
  msgid "impression"
1604
  msgid_plural "impressions"
1605
  msgstr[0] "prikaz"
1608
  msgstr[3] "prikazov"
1609
 
1610
  #: includes/functions-check-now.php:2607 includes/functions.old.php:2532
1611
+ #: includes/functions.php:2867
1612
  msgid ""
1613
  "Maximum number of impressions per time period. Empty means no time limit."
1614
  msgstr ""
1623
  #: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
1624
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1625
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1626
+ #: includes/functions.php:2873 includes/functions.php:2902
1627
+ #: includes/functions.php:2957 includes/functions.php:2984
1628
  msgid "per"
1629
  msgstr "na"
1630
 
1631
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1632
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1633
+ #: includes/functions.php:2874 includes/functions.php:2903
1634
  msgid "Time period in days. Empty means no time limit."
1635
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1636
 
1645
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1646
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1647
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1648
+ #: includes/functions.php:2876 includes/functions.php:2905
1649
+ #: includes/functions.php:2960 includes/functions.php:2987
1650
+ #: includes/functions.php:3093 includes/functions.php:3444 strings.php:218
1651
+ #: strings.php:219 strings.php:220 strings.php:221 strings.php:222
1652
+ #: strings.php:223
1653
  msgid "day"
1654
  msgid_plural "days"
1655
  msgstr[0] "dan"
1658
  msgstr[3] "dni"
1659
 
1660
  #: includes/functions-check-now.php:2626 includes/functions.old.php:2551
1661
+ #: includes/functions.php:2886
1662
  msgid ""
1663
  "Maximum number of clicks on this block. Empty means no general click limit."
1664
  msgstr ""
1674
  #: includes/functions-check-now.php:4577 includes/functions.old.php:2553
1675
  #: includes/functions.old.php:2563 includes/functions.old.php:2636
1676
  #: includes/functions.old.php:2645 includes/functions.old.php:4477
1677
+ #: includes/functions.php:2888 includes/functions.php:2898
1678
+ #: includes/functions.php:2971 includes/functions.php:2980
1679
+ #: includes/functions.php:4999
1680
  msgid "click"
1681
  msgid_plural "clicks"
1682
  msgstr[0] "klik"
1685
  msgstr[3] "klikov"
1686
 
1687
  #: includes/functions-check-now.php:2636 includes/functions.old.php:2561
1688
+ #: includes/functions.php:2896
1689
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1690
  msgstr ""
1691
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1692
  "omejitev."
1693
 
1694
  #: includes/functions-check-now.php:2661 includes/functions.old.php:2586
1695
+ #: includes/functions.php:2921
1696
  msgid "Individual visitor limits"
1697
  msgstr "Omejitve posameznih obiskovalcev"
1698
 
1699
  #: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
1700
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1701
+ #: includes/functions.php:2925 includes/functions.php:2927
1702
  msgid ""
1703
  "When specified number of clicks on this block for a visitor will be reached "
1704
  "in the specified time period, all blocks that have click fraud protection "
1711
  "pred goljufijo s kliki."
1712
 
1713
  #: includes/functions-check-now.php:2667 includes/functions.old.php:2592
1714
+ #: includes/functions.php:2927
1715
  msgid "Trigger click fraud protection"
1716
  msgstr "Sproži zaščito pred goljufijo s kliki"
1717
 
1718
  #: includes/functions-check-now.php:2682 includes/functions.old.php:2607
1719
+ #: includes/functions.php:2942
1720
  msgid ""
1721
  "Maximum number of impressions of this block for each visitor. Empty means no "
1722
  "impression limit."
1725
  "pomeni brez omejitev prikazov."
1726
 
1727
  #: includes/functions-check-now.php:2691 includes/functions.old.php:2616
1728
+ #: includes/functions.php:2951
1729
  msgid ""
1730
  "Maximum number of impressions per time period for each visitor. Empty means "
1731
  "no impression limit per time period for visitors."
1735
 
1736
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1737
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1738
+ #: includes/functions.php:2958 includes/functions.php:2985
1739
  msgid ""
1740
  "Time period in days. Use decimal value (with decimal point) for shorter "
1741
  "periods. Empty means no time limit."
1744
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1745
 
1746
  #: includes/functions-check-now.php:2709 includes/functions.old.php:2634
1747
+ #: includes/functions.php:2969
1748
  msgid ""
1749
  "Maximum number of clicks on this block for each visitor. Empty means no "
1750
  "click limit."
1753
  "brez omejitev klikov."
1754
 
1755
  #: includes/functions-check-now.php:2718 includes/functions.old.php:2643
1756
+ #: includes/functions.php:2978
1757
  msgid ""
1758
  "Maximum number of clicks per time period for each visitor. Empty means no "
1759
  "click limit per time period for visitors."
1762
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1763
 
1764
  #: includes/functions-check-now.php:2744 includes/functions.old.php:2669
1765
+ #: includes/functions.php:3004
1766
  msgid "When ad blocking is detected"
1767
  msgstr "Ko je blokiranje oglasov zaznano"
1768
 
1769
  #: includes/functions-check-now.php:2753 includes/functions.old.php:2678
1770
+ #: includes/functions.php:3013
1771
  msgid "replacement"
1772
  msgstr "nadomestek"
1773
 
1774
  #: includes/functions-check-now.php:2754 includes/functions.old.php:2679
1775
+ #: includes/functions.php:3014
1776
  msgid "Block to be shown when ad blocking is detected"
1777
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1778
 
1779
  #: includes/functions-check-now.php:2755 includes/functions.old.php:2680
1780
+ #: includes/functions.php:3015
1781
  msgctxt "replacement"
1782
  msgid "None"
1783
  msgstr "Noben"
1784
 
1785
  #: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
1786
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1787
+ #: includes/functions.php:3032 includes/functions.php:6056
1788
  msgid "Close button"
1789
  msgstr "Gumb Zapri"
1790
 
1791
  #: includes/functions-check-now.php:2824 includes/functions.old.php:2749
1792
+ #: includes/functions.php:3084
1793
  msgid "Auto close after"
1794
  msgstr "Ssamodejno zapri po"
1795
 
1796
  #: includes/functions-check-now.php:2825 includes/functions.old.php:2750
1797
+ #: includes/functions.php:3085
1798
  msgid ""
1799
  "Time in seconds in which the ad will automatically close. Leave empty to "
1800
  "disable auto closing."
1804
 
1805
  #. Translators: Don't show for x days
1806
  #: includes/functions-check-now.php:2830 includes/functions.old.php:2755
1807
+ #: includes/functions.php:3090
1808
  msgid "Don't show for"
1809
  msgstr "Ne prikaži"
1810
 
1811
  #: includes/functions-check-now.php:2831 includes/functions.old.php:2756
1812
+ #: includes/functions.php:3091
1813
  msgid ""
1814
  "Time in days in which closed ad will not be shown again. Use decimal value "
1815
  "(with decimal point) for shorter time period or leave empty to show it again "
1821
 
1822
  #. Translators: Delay showing for x pageviews
1823
  #: includes/functions-check-now.php:2851 includes/functions.old.php:2776
1824
+ #: includes/functions.php:3111
1825
  msgid "Delay showing for"
1826
  msgstr "Zakasni prikaz za"
1827
 
1828
  #: includes/functions-check-now.php:2852 includes/functions.old.php:2777
1829
+ #: includes/functions.php:3112
1830
  msgid ""
1831
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1832
  "empty to insert the code for the first pageview."
1838
  #. Translators: Show every x pageviews
1839
  #: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
1840
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1841
+ #: includes/functions.php:3114 includes/functions.php:3121
1842
  msgid "pageview"
1843
  msgid_plural "pageviews"
1844
  msgstr[0] "ogled strani"
1848
 
1849
  #. Translators: Show every x pageviews
1850
  #: includes/functions-check-now.php:2858 includes/functions.old.php:2783
1851
+ #: includes/functions.php:3118
1852
  msgid "Show every"
1853
  msgid_plural "Show every"
1854
  msgstr[0] "Prikaži vsak"
1857
  msgstr[3] "Prikaži vsakih"
1858
 
1859
  #: includes/functions-check-now.php:2859 includes/functions.old.php:2784
1860
+ #: includes/functions.php:3119
1861
  msgid ""
1862
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1863
  "for every pageview."
1866
  "vstavljanje kode pri vsakem ogledu strani."
1867
 
1868
  #: includes/functions-check-now.php:2878 includes/functions.old.php:2803
1869
+ #: includes/functions.php:3138
1870
  msgid "Lazy loading"
1871
  msgstr "Leno nalaganje"
1872
 
1873
  #. Translators: %s MaxMind
1874
  #: includes/functions-check-now.php:2935 includes/functions.old.php:2860
1875
+ #: includes/functions.php:3207
1876
  msgid "This product includes GeoLite2 data created by %s"
1877
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1878
 
1879
  #: includes/functions-check-now.php:2946 includes/functions.old.php:2871
1880
+ #: includes/functions.php:3220
1881
  msgid "IP geolocation database"
1882
  msgstr "Podatkovna baza za IP geolokacijo"
1883
 
1884
  #: includes/functions-check-now.php:2949 includes/functions.old.php:2874
1885
+ #: includes/functions.php:3223
1886
  msgid "Select IP geolocation database."
1887
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1888
 
1889
  #: includes/functions-check-now.php:2960 includes/functions.old.php:2885
1890
+ #: includes/functions.php:3234
1891
  msgid "Automatic database updates"
1892
  msgstr "Samodejna posodobitev podatkovne baze"
1893
 
1894
  #: includes/functions-check-now.php:2963 includes/functions.old.php:2888
1895
+ #: includes/functions.php:3237
1896
  msgid ""
1897
  "Automatically download and update free GeoLite2 IP geolocation database by "
1898
  "MaxMind"
1901
  "podatkovno bazo MaxMind"
1902
 
1903
  #: includes/functions-check-now.php:2971 includes/functions.old.php:2896
1904
+ #: includes/functions.php:3254
1905
  msgid "Database"
1906
  msgstr "Podatkovna baza"
1907
 
1908
  #: includes/functions-check-now.php:2974 includes/functions.old.php:2899
1909
+ #: includes/functions.php:3257
1910
  msgid ""
1911
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1912
  "file"
1916
 
1917
  #. translators: %d: group number
1918
  #: includes/functions-check-now.php:2992 includes/functions.old.php:2917
1919
+ #: includes/functions.php:3275
1920
  msgid "Group %d"
1921
  msgstr "Skupina %d"
1922
 
1923
  #: includes/functions-check-now.php:2998 includes/functions.old.php:2923
1924
+ #: includes/functions.php:3281
1925
  msgid "countries"
1926
  msgstr "države"
1927
 
1928
  #: includes/functions-check-now.php:3043 includes/functions.old.php:2968
1929
+ #: includes/functions.php:3326
1930
  msgid ""
1931
  "Enable impression and click tracking. You also need to enable tracking for "
1932
  "each block you want to track."
1935
  "vsak blok, ki bi ga radi sledili."
1936
 
1937
  #: includes/functions-check-now.php:3050 includes/functions.old.php:2975
1938
+ #: includes/functions.php:3333
1939
  msgid "Generate report"
1940
  msgstr "Generiraj poročilo"
1941
 
1942
  #: includes/functions-check-now.php:3058 includes/functions.old.php:2983
1943
+ #: includes/functions.php:3341
1944
  msgid "Impression and Click Tracking"
1945
  msgstr "Sledenje Prikazov in Klikov"
1946
 
1947
  #: includes/functions-check-now.php:3059 includes/functions.old.php:2984
1948
+ #: includes/functions.php:3342 settings.php:2809
1949
  msgctxt "ad blocking detection"
1950
  msgid "NOT ENABLED"
1951
  msgstr "NI OMOGOČENO"
1952
 
1953
  #: includes/functions-check-now.php:3075 includes/functions.old.php:3000
1954
+ #: includes/functions.php:3358
1955
  msgid "Internal"
1956
  msgstr "Notranje"
1957
 
1958
  #: includes/functions-check-now.php:3079 includes/functions.old.php:3004
1959
+ #: includes/functions.php:3362
1960
  msgid "Track impressions and clicks with internal tracking and statistics"
1961
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1962
 
1963
  #: includes/functions-check-now.php:3084 includes/functions.old.php:3009
1964
+ #: includes/functions.php:3367
1965
  msgid "External"
1966
  msgstr "Zunanje"
1967
 
1968
  #: includes/functions-check-now.php:3088 includes/functions.old.php:3013
1969
+ #: includes/functions.php:3371
1970
  msgid ""
1971
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1972
  "code installed)"
1975
  "kodo za sledenje)"
1976
 
1977
  #: includes/functions-check-now.php:3093 includes/functions.old.php:3018
1978
+ #: includes/functions.php:3376
1979
  msgid "Track Pageviews"
1980
  msgstr "Sledi Ogledom Strani"
1981
 
1982
  #: includes/functions-check-now.php:3099 includes/functions.old.php:3024
1983
+ #: includes/functions.php:3382
1984
  msgid "Track Pageviews by Device (as configured for viewports)"
1985
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1986
 
1987
  #: includes/functions-check-now.php:3109 includes/functions.old.php:3034
1988
+ #: includes/functions.php:3392
1989
  msgid "Track for Logged in Users"
1990
  msgstr "Sledi za Prijavljene Upor."
1991
 
1992
  #: includes/functions-check-now.php:3115 includes/functions.old.php:3040
1993
+ #: includes/functions.php:3398
1994
  msgid "Track impressions and clicks from logged in users"
1995
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1996
 
1997
  #: includes/functions-check-now.php:3125 includes/functions.old.php:3050
1998
+ #: includes/functions.php:3408
1999
  msgid "Click Detection"
2000
  msgstr "Zaznavanje klikov"
2001
 
2002
  #: includes/functions-check-now.php:3131 includes/functions.old.php:3056
2003
+ #: includes/functions.php:3414
2004
  msgid ""
2005
  "Standard method detects clicks only on banners with links, Advanced method "
2006
  "can detect clicks on any kind of ads, but it is slightly less accurate"
2009
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
2010
 
2011
  #: includes/functions-check-now.php:3150 includes/functions.old.php:3075
2012
+ #: includes/functions.php:3433
2013
  msgid "Click fraud protection"
2014
  msgstr "Zaščita pred goljufijo s kliki"
2015
 
2016
  #: includes/functions-check-now.php:3154 includes/functions.old.php:3079
2017
+ #: includes/functions.php:3437
2018
  msgid "Globally enable click fraud protection for selected blocks."
2019
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
2020
 
2021
  #: includes/functions-check-now.php:3160 includes/functions.old.php:3085
2022
+ #: includes/functions.php:3443
2023
  msgid "Protection time"
2024
  msgstr "Čas zaščite"
2025
 
2026
  #: includes/functions-check-now.php:3161 includes/functions.old.php:3086
2027
+ #: includes/functions.php:3444
2028
  msgid ""
2029
  "Time period in days in which blocks with enabled click fraud protection will "
2030
  "be hidden. Use decimal value (with decimal point) for shorter periods."
2034
  "za krajša obdobja."
2035
 
2036
  #: includes/functions-check-now.php:3180 includes/functions.old.php:3105
2037
+ #: includes/functions.php:3463
2038
  msgid "Report header image"
2039
  msgstr "Slika v glavi poročila"
2040
 
2041
  #: includes/functions-check-now.php:3183 includes/functions.old.php:3108
2042
+ #: includes/functions.php:3466
2043
  msgid ""
2044
  "Image or logo to be displayed in the header of the statistins report. "
2045
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
2050
  "ponastavitev na privzeto sliko."
2051
 
2052
  #: includes/functions-check-now.php:3184 includes/functions.old.php:3109
2053
+ #: includes/functions.php:3467 strings.php:252
2054
  msgid "Select or upload header image"
2055
  msgstr "Izberi ali naloži sliko glave"
2056
 
2057
  #: includes/functions-check-now.php:3189 includes/functions.old.php:3114
2058
+ #: includes/functions.php:3472
2059
  msgid "Report header title"
2060
  msgstr "Naslov v glavi poročila"
2061
 
2062
  #: includes/functions-check-now.php:3192 includes/functions.old.php:3117
2063
+ #: includes/functions.php:3475
2064
  msgid ""
2065
  "Title to be displayed in the header of the statistics report. Text or HTML "
2066
  "code, clear to reset to default text."
2069
  "pobrišite za ponastavitev na privzeto besedilo."
2070
 
2071
  #: includes/functions-check-now.php:3197 includes/functions.old.php:3122
2072
+ #: includes/functions.php:3480
2073
  msgid "Report header description"
2074
  msgstr "Opis v glavi poročila"
2075
 
2076
  #: includes/functions-check-now.php:3200 includes/functions.old.php:3125
2077
+ #: includes/functions.php:3483
2078
  msgid ""
2079
  "Description to be displayed in the header of the statistics report. Text or "
2080
  "HTML code, clear to reset to default text."
2083
  "pobrišite za ponastavitev na privzeto besedilo."
2084
 
2085
  #: includes/functions-check-now.php:3205 includes/functions.old.php:3130
2086
+ #: includes/functions.php:3488
2087
  msgid "Report footer"
2088
  msgstr "Noga poročila"
2089
 
2090
  #: includes/functions-check-now.php:3208 includes/functions.old.php:3133
2091
+ #: includes/functions.php:3491
2092
  msgid ""
2093
  "Text to be displayed in the footer of the statistics report. Clear to reset "
2094
  "to default text."
2097
  "koda, pobrišite za ponastavitev na privzeto besedilo."
2098
 
2099
  #: includes/functions-check-now.php:3213 includes/functions.old.php:3138
2100
+ #: includes/functions.php:3496
2101
  msgid "Public report key"
2102
  msgstr "Ključ za javno poročilo"
2103
 
2104
  #: includes/functions-check-now.php:3216 includes/functions.old.php:3141
2105
+ #: includes/functions.php:3499
2106
  msgid "String to generate unique report IDs. Clear to reset to default value."
2107
  msgstr ""
2108
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
2109
  "privzeto vrednost."
2110
 
2111
  #: includes/functions-check-now.php:3248 includes/functions.old.php:3173
2112
+ #: includes/functions.php:3562
2113
  msgid "Are you sure you want to clear all exceptions for block"
2114
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
2115
 
2116
  #: includes/functions-check-now.php:3249 includes/functions.old.php:3174
2117
+ #: includes/functions.php:3563
2118
  msgid "Clear all exceptions for block"
2119
  msgstr "Pobriši vse izjeme za blok"
2120
 
2121
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
2122
+ #: includes/functions.php:3570
2123
  msgid "Are you sure you want to clear all exceptions?"
2124
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
2125
 
2126
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
2127
+ #: includes/functions.php:3570
2128
  msgid "Clear all exceptions for all blocks"
2129
  msgstr "Pobriši vse izjeme za vse bloke"
2130
 
2131
  #: includes/functions-check-now.php:3261 includes/functions.old.php:3186
2132
+ #: includes/functions.php:3575 settings.php:3888 settings.php:4373
2133
  msgid "Type"
2134
  msgstr "Vrsta"
2135
 
2136
  #: includes/functions-check-now.php:3279 includes/functions.old.php:3204
2137
+ #: includes/functions.php:3593
2138
  msgid "View"
2139
  msgstr "Poglej"
2140
 
2141
  #: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
2142
  #: includes/functions-check-now.php:3291 includes/functions.old.php:3205
2143
  #: includes/functions.old.php:3212 includes/functions.old.php:3216
2144
+ #: includes/functions.php:3594 includes/functions.php:3601
2145
+ #: includes/functions.php:3605 includes/placeholders.php:353
2146
+ #: includes/preview.php:2663 settings.php:1347 settings.php:3648
2147
  msgid "Edit"
2148
  msgstr "Uredi"
2149
 
2150
  #: includes/functions-check-now.php:3310 includes/functions.old.php:3235
2151
+ #: includes/functions.php:3624
2152
  msgid "Are you sure you want to clear all exceptions for"
2153
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
2154
 
2155
  #: includes/functions-check-now.php:3311 includes/functions.old.php:3236
2156
+ #: includes/functions.php:3625
2157
  msgid "Clear all exceptions for"
2158
  msgstr "Pobriši vse izjeme za"
2159
 
2160
  #: includes/functions-check-now.php:3324 includes/functions.old.php:3249
2161
+ #: includes/functions.php:3638
2162
  msgid "No exceptions"
2163
  msgstr "Brez izjem"
2164
 
2165
  #. translators: %s: Ad Inserter Pro
2166
  #: includes/functions-check-now.php:3335 includes/functions.old.php:3260
2167
+ #: includes/functions.php:3649
2168
  msgid "%s options for network blogs"
2169
  msgstr "%s izbire za omrežne bloge"
2170
 
2171
  #. translators: %s: Ad Inserter Pro
2172
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2173
+ #: includes/functions.php:3654
2174
  msgid "Enable %s widgets for sub-sites"
2175
  msgstr "Omogoči %s gradnik za pod-spletišča"
2176
 
2177
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2178
+ #: includes/functions.php:3654
2179
  msgid "Widgets"
2180
  msgstr "Gradniki"
2181
 
2182
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2183
+ #: includes/functions.php:3659
2184
  msgid "Enable PHP code processing for sub-sites"
2185
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
2186
 
2187
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2188
+ #: includes/functions.php:3659
2189
  msgid "PHP Processing"
2190
  msgstr "PHP Procesiranje"
2191
 
2192
  #. translators: %s: Ad Inserter Pro
2193
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2194
+ #: includes/functions.php:3664
2195
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2196
  msgstr ""
2197
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
2198
 
2199
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2200
+ #: includes/functions.php:3664
2201
  msgid "Post/Page exceptions"
2202
  msgstr "Izjeme prispevkov/strani"
2203
 
2204
  #. translators: %s: Ad Inserter Pro
2205
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2206
+ #: includes/functions.php:3669
2207
  msgid "Enable %s settings page for sub-sites"
2208
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
2209
 
2210
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2211
+ #: includes/functions.php:3669
2212
  msgid "Settings page"
2213
  msgstr "Stran z nastavitvami"
2214
 
2215
  #. translators: %s: Ad Inserter Pro
2216
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2217
+ #: includes/functions.php:3674
2218
  msgid "Enable %s settings of main site to be used for all blogs"
2219
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
2220
 
2221
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2222
+ #: includes/functions.php:3674
2223
  msgid "Main site settings used for all blogs"
2224
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
2225
 
2226
  #: includes/functions-check-now.php:3371 includes/functions.old.php:3296
2227
+ #: includes/functions.php:3690 settings.php:2808
2228
  msgid "Ad Blocking Detection"
2229
  msgstr "Zaznavanje Blokiranja Oglasov"
2230
 
2231
  #: includes/functions-check-now.php:3377 includes/functions.old.php:3302
2232
+ #: includes/functions.php:3696
2233
  msgid ""
2234
  "Standard method is reliable but should be used only if Advanced method does "
2235
  "not work. Advanced method recreates files used for detection with random "
2244
  #: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
2245
  #: includes/functions-check-now.php:4139 includes/functions.old.php:3929
2246
  #: includes/functions.old.php:4019 includes/functions.old.php:4039
2247
+ #: includes/functions.php:4419 includes/functions.php:4541
2248
+ #: includes/functions.php:4561
2249
  msgid "AD BLOCKING"
2250
  msgstr "BLOKIRANJE OGLASOV"
2251
 
2253
  #: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
2254
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
2255
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
2256
+ #: includes/functions.php:4420 includes/functions.php:4466
2257
+ #: includes/functions.php:4535 includes/functions.php:4562
2258
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2259
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
2260
 
2261
  #: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
2262
  #: includes/functions-check-now.php:4146 includes/functions.old.php:3933
2263
  #: includes/functions.old.php:4012 includes/functions.old.php:4046
2264
+ #: includes/functions.php:4423 includes/functions.php:4534
2265
+ #: includes/functions.php:4568
2266
  msgid "NO AD BLOCKING"
2267
  msgstr "NI BLOKIRANJA OGLASOV"
2268
 
2269
  #: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
2270
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
2271
+ #: includes/functions.php:4465 includes/functions.php:4472
2272
  msgid "AD BLOCKING REPLACEMENT"
2273
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
2274
 
2275
  #: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
2276
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
2277
+ #: includes/functions.php:4641 includes/functions.php:4850
2278
  msgid "Pageviews"
2279
  msgstr "Ogledi strani"
2280
 
2281
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2282
+ #: includes/functions.php:4787
2283
  msgctxt "Version"
2284
  msgid "Unknown"
2285
  msgstr "Neznana"
2286
 
2287
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2288
+ #: includes/functions.php:4787
2289
  msgctxt "Times"
2290
  msgid "DISPLAYED"
2291
  msgstr "PRIKAZANO"
2292
 
2293
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2294
+ #: includes/functions.php:4787
2295
  msgid "No version"
2296
  msgstr "Brez različice"
2297
 
2298
  #: includes/functions-check-now.php:4366 includes/functions.old.php:4266
2299
+ #: includes/functions.php:4788
2300
  msgctxt "Times"
2301
  msgid "BLOCKED"
2302
  msgstr "BLOKIRANO"
2303
 
2304
  #: includes/functions-check-now.php:4428 includes/functions.old.php:4328
2305
+ #: includes/functions.php:4850
2306
  msgid "Impressions"
2307
  msgstr "Prikazi"
2308
 
2309
  #: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
2310
  #: includes/functions-check-now.php:4485 includes/functions.old.php:4329
2311
  #: includes/functions.old.php:4330 includes/functions.old.php:4385
2312
+ #: includes/functions.php:4851 includes/functions.php:4852
2313
+ #: includes/functions.php:4907
2314
  msgid "Clicks"
2315
  msgstr "Kliki"
2316
 
2317
  #: includes/functions-check-now.php:4430 includes/functions.old.php:4330
2318
+ #: includes/functions.php:4852
2319
  msgid "events"
2320
  msgstr "dogodki"
2321
 
2322
  #: includes/functions-check-now.php:4431 includes/functions.old.php:4331
2323
+ #: includes/functions.php:4853
2324
  msgid "Ad Blocking Share"
2325
  msgstr "Delež blokiranja oglasov"
2326
 
2327
  #. translators: CTR as Click Through Rate
2328
  #: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
2329
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
2330
+ #: includes/functions.php:4853 includes/functions.php:4913
2331
  msgid "CTR"
2332
  msgstr "CTR"
2333
 
2334
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2335
+ #: includes/functions.php:4995
2336
  msgid "pageviews"
2337
  msgid_plural "pageviews"
2338
  msgstr[0] "ogled strani"
2341
  msgstr[3] "ogledov strani"
2342
 
2343
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2344
+ #: includes/functions.php:4995
2345
  msgid "impressions"
2346
  msgid_plural "impressions"
2347
  msgstr[0] "prikaz"
2350
  msgstr[3] "prikazov"
2351
 
2352
  #: includes/functions-check-now.php:4577 includes/functions.old.php:4477
2353
+ #: includes/functions.php:4999
2354
  msgid "event"
2355
  msgid_plural "events"
2356
  msgstr[0] "dogodek"
2359
  msgstr[3] "dogodkov"
2360
 
2361
  #: includes/functions-check-now.php:4672 includes/functions.old.php:4572
2362
+ #: includes/functions.php:5094
2363
  msgctxt "Pageviews / Impressions"
2364
  msgid "Average"
2365
  msgstr "Povprečni"
2366
 
2367
  #: includes/functions-check-now.php:4693 includes/functions.old.php:4593
2368
+ #: includes/functions.php:5115
2369
  msgctxt "Ad Blocking / Clicks"
2370
  msgid "Average"
2371
  msgstr "Povprečno"
2372
 
2373
  #: includes/functions-check-now.php:4717 includes/functions.old.php:4617
2374
+ #: includes/functions.php:5139
2375
  msgctxt "Ad Blocking Share / CTR"
2376
  msgid "Average"
2377
  msgstr "Povprečni"
2380
  #: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
2381
  #: includes/functions-check-now.php:5334 includes/functions.old.php:4799
2382
  #: includes/functions.old.php:4891 includes/functions.old.php:5207
2383
+ #: includes/functions.php:5322 includes/functions.php:5414
2384
+ #: includes/functions.php:5757 strings.php:203
2385
  msgid "%s Report"
2386
  msgstr "%s Poročilo"
2387
 
2388
  #: includes/functions-check-now.php:5240 includes/functions.old.php:5113
2389
+ #: includes/functions.php:5663
2390
  msgid "for last month"
2391
  msgstr "za zadnji mesec"
2392
 
2393
  #: includes/functions-check-now.php:5245 includes/functions.old.php:5118
2394
+ #: includes/functions.php:5668
2395
  msgid "for this month"
2396
  msgstr "za ta mesec"
2397
 
2398
  #: includes/functions-check-now.php:5250 includes/functions.old.php:5123
2399
+ #: includes/functions.php:5673
2400
  msgid "for this year"
2401
  msgstr "za to leto"
2402
 
2403
  #: includes/functions-check-now.php:5255 includes/functions.old.php:5128
2404
+ #: includes/functions.php:5678
2405
  msgid "for the last 15 days"
2406
  msgstr "za zadnjih 15 dni"
2407
 
2408
  #: includes/functions-check-now.php:5260 includes/functions.old.php:5133
2409
+ #: includes/functions.php:5683
2410
  msgid "for the last 30 days"
2411
  msgstr "za zadnjih 30 dni"
2412
 
2413
  #: includes/functions-check-now.php:5265 includes/functions.old.php:5138
2414
+ #: includes/functions.php:5688
2415
  msgid "for the last 90 days"
2416
  msgstr "za zadnjih 90 dni"
2417
 
2418
  #: includes/functions-check-now.php:5270 includes/functions.old.php:5143
2419
+ #: includes/functions.php:5693
2420
  msgid "for the last 180 days"
2421
  msgstr "za zadnjih 180 dni"
2422
 
2423
  #: includes/functions-check-now.php:5275 includes/functions.old.php:5148
2424
+ #: includes/functions.php:5698
2425
  msgid "for the last 365 days"
2426
  msgstr "za zadnjih 365 dni"
2427
 
2428
  #. translators: %s: Ad Inserter Pro
2429
+ #: includes/functions.php:561
2430
  msgid "Invalid %s version. Continue?"
2431
  msgstr "Neveljavna izdaja %s. Nadaljujem?"
2432
 
2433
+ #: includes/functions.php:753 includes/preview.php:2606
2434
+ msgid "Background"
2435
+ msgstr "Ozadje"
2436
+
2437
+ #. translators: %s HTML body tag
2438
+ #: includes/functions.php:760
2439
+ msgid "Set %s background"
2440
+ msgstr "Nastavi ozadje za %s"
2441
+
2442
+ #: includes/functions.php:773
2443
+ msgid "Image to be used for the background"
2444
+ msgstr "Slika, ki bo uporabljena za ozadje"
2445
+
2446
+ #: includes/functions.php:778
2447
+ msgid "Color"
2448
+ msgstr "Barva"
2449
+
2450
+ #: includes/functions.php:779 includes/preview.php:2424
2451
+ msgid "Color to be used for the background"
2452
+ msgstr "Barva, ki bo uporabljena za ozadje"
2453
+
2454
+ #: includes/functions.php:782 includes/preview.php:2429
2455
+ msgid "Image size"
2456
+ msgstr "Velikost slike"
2457
+
2458
+ #: includes/functions.php:792
2459
+ msgid "Repeat"
2460
+ msgstr "Ponavljanje"
2461
+
2462
+ #: includes/functions.php:805
2463
+ msgid "Select image"
2464
+ msgstr "Izberi sliko"
2465
+
2466
+ #: includes/functions.php:1023 includes/functions.php:1059 settings.php:1700
2467
+ #: settings.php:1731 settings.php:1762 settings.php:1793 settings.php:1824
2468
+ #: settings.php:1855 settings.php:1885 settings.php:1915
2469
  msgid "Click to select black or white list"
2470
  msgstr "Klikni za za izbor črnega ali belega seznama"
2471
 
2472
  #. translators: %s: Ad Inserter Pro
2473
+ #: includes/functions.php:1585
2474
  msgid "Invalid %s version."
2475
  msgstr "Neveljavna izdaja %s."
2476
 
2477
+ #: includes/functions.php:1586
2478
  msgid "Check license"
2479
  msgstr "Preverite licenco"
2480
 
2481
+ #: includes/functions.php:1598
2482
  msgid "License"
2483
  msgstr "Licenca"
2484
 
2485
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2486
+ #: includes/functions.php:1921
2487
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2488
  msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
2489
 
2490
  #. Translators: %s: HTML tags
2491
+ #: includes/functions.php:1966
2492
  msgid ""
2493
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2494
  "account %s and create license key."
2496
  "Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
2497
  "za GeoLite2 račun %s in ustvarite licenčni ključ."
2498
 
2499
+ #: includes/functions.php:2664
2500
  msgid "Start date"
2501
  msgstr "Začetni datum"
2502
 
2503
+ #: includes/functions.php:2664
2504
  msgid "Enter date in format yyyy-mm-dd"
2505
  msgstr "Vnesite datum v formatu yyyy-mm-dd"
2506
 
2507
+ #: includes/functions.php:2665
2508
  msgid "Start time"
2509
  msgstr "Začetni čas"
2510
 
2511
+ #: includes/functions.php:2665
2512
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2513
  msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
2514
 
2515
+ #: includes/functions.php:2667
2516
  msgid "End date"
2517
  msgstr "Končni datum"
2518
 
2519
+ #: includes/functions.php:2668
2520
  msgid "End time"
2521
  msgstr "Končni čas"
2522
 
2523
+ #: includes/functions.php:2671
2524
  msgid "Select wanted days in week"
2525
  msgstr "Izberite želene dneve v tednu"
2526
 
2527
+ #: includes/functions.php:3003
2528
  msgid "Ad blocking detection is disabled"
2529
  msgstr "%s Zaznavanje blokiranja oglasov je onemogočeno %s"
2530
 
2531
+ #: includes/functions.php:3141
2532
  msgid "Manual loading"
2533
  msgstr "Ročno nalaganje"
2534
 
2535
  #. Translators: %s HTML tags
2536
+ #: includes/functions.php:3209
2537
  msgid "Create and manage %s MaxMind license key %s"
2538
  msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
2539
 
2540
+ #: includes/functions.php:3245
2541
  msgid "MaxMind license key"
2542
  msgstr "MaxMind licenčni ključ"
2543
 
2544
+ #: includes/functions.php:3248
2545
  msgid "Enter license key obtained from MaxMind"
2546
  msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
2547
 
2548
+ #: includes/functions.php:3514
2549
  msgid "Event category"
2550
  msgstr "Kategorija dogodka"
2551
 
2552
+ #: includes/functions.php:3517
2553
  msgid ""
2554
  "Category name used for external tracking events. You can use tags to get the "
2555
  "event, the number or the name of the block that caused the event."
2557
  "Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2558
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2559
 
2560
+ #: includes/functions.php:3522
2561
  msgid "Event action"
2562
  msgstr "Akcija dogodka"
2563
 
2564
+ #: includes/functions.php:3525
2565
  msgid ""
2566
  "Action name used for external tracking events. You can use tags to get the "
2567
  "event, the number or the name of the block that caused the event."
2569
  "Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2570
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2571
 
2572
+ #: includes/functions.php:3530
2573
  msgid "Event label"
2574
  msgstr "Oznaka dogodka"
2575
 
2576
+ #: includes/functions.php:3533
2577
  msgid ""
2578
  "Label name used for external tracking events. You can use tags to get the "
2579
  "event, the number or the name of the block that caused the event."
2582
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2583
 
2584
  #. translators: %s: Ad Inserter Pro
2585
+ #: includes/functions.php:3679
2586
  msgid "Show link to %s settings page for each site on the Sites page"
2587
  msgstr ""
2588
  "Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
2589
  "Spletišča"
2590
 
2591
  #. translators: %s: Ad Inserter Pro
2592
+ #: includes/functions.php:3679
2593
  msgid "Show link to %s on the Sites page"
2594
  msgstr "Pokaži povezavo na %s na strani Spletišča"
2595
 
2596
+ #: includes/functions.php:5269
2597
  msgid "File %s missing."
2598
  msgstr "Datoteka %s ni najdena."
2599
 
2625
  msgid "Placeholder"
2626
  msgstr "Polnilo"
2627
 
2628
+ #: includes/placeholders.php:363 settings.php:956 settings.php:4374
2629
  msgid "Size"
2630
  msgstr "Velikost"
2631
 
2632
+ #: includes/placeholders.php:379 includes/preview.php:2421
2633
  msgid "Background color"
2634
  msgstr "Barva ozadja"
2635
 
2718
  msgid "Remove dummy paragraph"
2719
  msgstr "Odstrani testni odstavek"
2720
 
2721
+ #: includes/preview-adb.php:9 includes/preview.php:2281
2722
  msgid "Use current settings"
2723
  msgstr "Uporabi trenutne nastavitve"
2724
 
2745
  msgid "Default"
2746
  msgstr "Privzeto"
2747
 
2748
+ #: includes/preview-adb.php:12 includes/preview.php:2284
2749
  msgid "Close preview window"
2750
  msgstr "Zapri okno predogleda"
2751
 
2758
  msgid "Ad Blocking Detected Message Preview"
2759
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2760
 
2761
+ #: includes/preview-adb.php:348 settings.php:2934
2762
  msgid "Message CSS"
2763
  msgstr "CSS sporočila"
2764
 
2765
+ #: includes/preview-adb.php:353 settings.php:2942
2766
  msgid "Overlay CSS"
2767
  msgstr "CSS prevleke"
2768
 
2769
+ #: includes/preview.php:237
2770
  msgid "Sticky Code Preview"
2771
  msgstr "Predogled Lepljive Kode"
2772
 
2773
+ #: includes/preview.php:237
2774
  msgid "Code Preview"
2775
  msgstr "Predogled Kode"
2776
 
2777
+ #: includes/preview.php:2279
2778
  msgid "Highlight inserted code"
2779
  msgstr "Označi vstavljeno kodo"
2780
 
2781
+ #: includes/preview.php:2279
2782
  msgid "Highlight"
2783
  msgstr "Označi"
2784
 
2785
+ #: includes/preview.php:2282
2786
  msgid "Reset to block settings"
2787
  msgstr "Ponastavi na nastavitve bloka"
2788
 
2789
+ #: includes/preview.php:2297
2790
  msgid "AdSense ad unit"
2791
  msgstr "Oglasna enota AdSense"
2792
 
2793
+ #: includes/preview.php:2366
2794
  msgid "wrapping div"
2795
  msgstr "div za ovijanje"
2796
 
2797
+ #: includes/preview.php:2371 includes/preview.php:2378
2798
  msgid "background"
2799
  msgstr "ozadje"
2800
 
2801
+ #: includes/preview.php:2405 includes/preview.php:2618 settings.php:1308
2802
  msgid "Alignment"
2803
  msgstr "Poravnava"
2804
 
2805
+ #: includes/preview.php:2442
2806
+ msgid "Repeat image"
2807
+ msgstr "Ponavljaj sliko"
2808
+
2809
+ #: includes/preview.php:2525
2810
  msgid "Horizontal margin"
2811
  msgstr "Vodoravni odmik"
2812
 
2813
+ #: includes/preview.php:2577
2814
  msgid "Vertical margin"
2815
  msgstr "Navpični odmik"
2816
 
2817
+ #: includes/preview.php:2601
2818
  msgid "Animate"
2819
  msgstr "Animiraj"
2820
 
2821
+ #: includes/preview.php:2672
2822
  msgid ""
2823
  "This is a preview of the code between dummy paragraphs. Here you can test "
2824
  "various block alignments, visually edit margin and padding values of the "
2833
  "označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
2834
  "Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
2835
 
2836
+ #: includes/preview.php:2675
2837
  msgid ""
2838
  "This is a preview of the saved block between dummy paragraphs. It shows the "
2839
  "code with the alignment and style as it is set for this block. Highlight "
2843
  "poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
2844
  "margin območje div-a za ovijanje in območje kode."
2845
 
2846
+ #: includes/preview.php:2677
2847
  msgid ""
2848
  "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
2849
  "code was loaded from your AdSense account. The ad block is displayed on a "
2855
  "testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
2856
  "Označi za označitev bloka."
2857
 
2858
+ #: includes/preview.php:2683
2859
  msgid ""
2860
  "You can resize the window (and refresh the page to reload ads) to check "
2861
  "display with different screen widths.\n"
2867
  "Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
2868
  "prenesle v aktivni blok."
2869
 
2870
+ #: includes/preview.php:2685
2871
  msgid ""
2872
  "Please note that the code, block name, alignment and style are taken from "
2873
  "the current block settings (may not be saved).\n"
2880
  "margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
2881
  "kodo za blok."
2882
 
2883
+ #: includes/preview.php:2690 includes/preview.php:2704
2884
+ #: includes/preview.php:2714 includes/preview.php:2724
2885
+ #: includes/preview.php:2734
2886
  msgid ""
2887
  "Ad Inserter can be configured to insert any code anywhere on the page. Each "
2888
  "code with it's settings is called a block.\n"
2906
  "številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
2907
  "številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
2908
 
2909
+ #: includes/preview.php:2695 includes/preview.php:2709
2910
+ #: includes/preview.php:2719 includes/preview.php:2729
2911
+ #: includes/preview.php:2739
2912
  msgid ""
2913
  "Few very important things you need to know in order to insert code and "
2914
  "display some ad:\n"
2931
  "za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
2932
  "uporabljate posamezne izjeme za prispevke/strani."
2933
 
2934
+ #: includes/preview.php:2701
2935
  msgid ""
2936
  "This is a preview of the code for sticky ads. Here you can test various "
2937
  "horizontal and vertical alignments, close button locations, visually edit "
2954
  "Opozorilo: počiščene samo izjeme za %d prispevkov, %d prispevkov ima še "
2955
  "vedno izjeme"
2956
 
2957
+ #: settings.php:202 settings.php:1197
2958
  msgid ""
2959
  "Settings for individual exceptions have been updated. Please check all "
2960
  "blocks that have exceptions and and then save settings."
2966
  msgid "Online documentation"
2967
  msgstr "Spletna Dokumentacija"
2968
 
2969
+ #: settings.php:248 settings.php:791 settings.php:2317
2970
  msgid "Show AdSense ad units"
2971
  msgstr "Pokaži oglasne enote AdSense"
2972
 
2974
  msgid "Edit ads.txt file"
2975
  msgstr "Uredi datoteko ads.txt"
2976
 
2977
+ #: settings.php:260 settings.php:1140
2978
  msgid "Check theme for available positions for automatic insertion"
2979
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2980
 
3122
  msgid "General Settings"
3123
  msgstr "Splošne Nastavitve"
3124
 
3125
+ #: settings.php:739 settings.php:2661 settings.php:2728 settings.php:2914
3126
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
3127
  msgstr ""
3128
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
3129
 
3130
+ #: settings.php:746
3131
  msgid "Toggle tools"
3132
  msgstr "Preklopi orodja"
3133
 
3134
+ #: settings.php:754
3135
  msgid "Process PHP code in block"
3136
  msgstr "Procesiraj PHP kodo v bloku"
3137
 
3138
+ #: settings.php:761
3139
  msgid "Disable insertion of this block"
3140
  msgstr "Onemogoči vstavljanje tega bloka"
3141
 
3142
+ #: settings.php:773
3143
  msgid "Toggle code generator"
3144
  msgstr "Preklopi generator kode"
3145
 
3146
+ #: settings.php:777
3147
  msgid "Toggle rotation editor"
3148
  msgstr "Preklopi urejevalnik rotacije"
3149
 
3150
+ #: settings.php:781
3151
  msgid "Open visual HTML editor"
3152
  msgstr "Odpri vizualni HTML urejevalnik"
3153
 
3154
+ #: settings.php:800
3155
  msgid "Clear block"
3156
  msgstr "Počisti blok"
3157
 
3158
+ #: settings.php:805 settings.php:4245
3159
  msgid "Copy block"
3160
  msgstr "Kopiraj blok"
3161
 
3162
+ #: settings.php:809
3163
  msgid "Paste name"
3164
  msgstr "Prilepi ime"
3165
 
3166
+ #: settings.php:813
3167
  msgid "Paste code"
3168
  msgstr "Prilepi kodo"
3169
 
3170
+ #: settings.php:817
3171
  msgid "Paste settings"
3172
  msgstr "Prilepi nastavitve"
3173
 
3174
+ #: settings.php:821
3175
  msgid "Paste block (name, code and settings)"
3176
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
3177
 
3178
+ #: settings.php:840
3179
  msgid "Rotation groups"
3180
  msgstr "Skupine za rotacijo"
3181
 
3182
+ #: settings.php:844
3183
  msgid "Remove option"
3184
  msgstr "Odstrani različico"
3185
 
3186
+ #: settings.php:848
3187
  msgid "Add option"
3188
  msgstr "Dodaj različico"
3189
 
3190
+ #: settings.php:863
3191
  msgid "Import code"
3192
  msgstr "Uvozi kodo"
3193
 
3194
+ #: settings.php:867
3195
  msgid "Generate code"
3196
  msgstr "Generiraj kodo"
3197
 
3198
+ #: settings.php:872
3199
  msgid "Banner"
3200
  msgstr "Pasica"
3201
 
3202
+ #: settings.php:883
3203
  msgid "Image"
3204
  msgstr "Slika"
3205
 
3206
+ #: settings.php:891
3207
  msgid "Link"
3208
  msgstr "Povezava"
3209
 
3210
+ #: settings.php:902
3211
  msgid "Open link in a new tab"
3212
  msgstr "Odpri povezavo v novem zavihku"
3213
 
3214
+ #: settings.php:903
3215
  msgid "Select Image"
3216
  msgstr "Izberi Sliko"
3217
 
3218
+ #: settings.php:904
3219
  msgid "Select Placeholder"
3220
  msgstr "Izberi Polnilo"
3221
 
3222
+ #: settings.php:916
3223
  msgid "Comment"
3224
  msgstr "Komentar"
3225
 
3226
+ #: settings.php:925
3227
  msgctxt "AdSense"
3228
  msgid "Publisher ID"
3229
  msgstr "ID založnika"
3230
 
3231
+ #: settings.php:934
3232
  msgctxt "AdSense"
3233
  msgid "Ad Slot ID"
3234
  msgstr "ID mesta"
3235
 
3236
+ #: settings.php:943
3237
  msgid "Ad Type"
3238
  msgstr "Vrsta"
3239
 
3240
+ #: settings.php:968
3241
  msgid "AMP Ad"
3242
  msgstr "AMP Oglas"
3243
 
3244
+ #: settings.php:986
3245
  msgid "Show ad units from your AdSense account"
3246
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
3247
 
3248
+ #: settings.php:986
3249
  msgid "AdSense ad units"
3250
  msgstr "Oglasne enote AdSense"
3251
 
3252
+ #: settings.php:1003
3253
  msgctxt "AdSense"
3254
  msgid "Layout"
3255
  msgstr "Postavitev"
3256
 
3257
+ #: settings.php:1012
3258
  msgctxt "AdSense"
3259
  msgid "Layout Key"
3260
  msgstr "Ključ postavitve"
3261
 
3262
+ #: settings.php:1022
3263
  msgid "Full width"
3264
  msgstr "Celotna širina"
3265
 
3266
+ #: settings.php:1024
3267
  msgctxt "Full width"
3268
  msgid "Enabled"
3269
  msgstr "Omogočena"
3270
 
3271
+ #: settings.php:1025
3272
  msgctxt "Full width"
3273
  msgid "Disabled"
3274
  msgstr "Onemogočena"
3275
 
3276
+ #: settings.php:1106
3277
  msgid ""
3278
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3279
  "Cookie or Referer (domain)"
3281
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
3282
  "parametrov, Piškotkov ali napotiteljev (domen)"
3283
 
3284
+ #: settings.php:1106
3285
  msgid "Lists"
3286
  msgstr "Seznami"
3287
 
3288
+ #: settings.php:1107
3289
  msgid "Widget, Shortcode and PHP function call"
3290
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
3291
 
3292
+ #: settings.php:1107
3293
  msgid "Manual"
3294
  msgstr "Ročno"
3295
 
3296
+ #: settings.php:1108
3297
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3298
  msgstr ""
3299
  "Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
3300
 
3301
+ #: settings.php:1108
3302
  msgid "Devices"
3303
  msgstr "Naprave"
3304
 
3305
+ #: settings.php:1109
3306
  msgid ""
3307
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3308
  "feeds), Filter, Scheduling, General tag"
3310
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
3311
  "RSS), Filter, Urnik, Splošna oznaka"
3312
 
3313
+ #: settings.php:1109
3314
  msgid "Misc"
3315
  msgstr "Razno"
3316
 
3317
+ #: settings.php:1110
3318
  msgid "Preview code and alignment"
3319
  msgstr "Predogled kode in poravnave"
3320
 
3321
+ #: settings.php:1113 settings.php:2301
3322
  msgid ""
3323
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3324
  "editor is active before saving settings."
3326
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
3327
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
3328
 
3329
+ #: settings.php:1126 settings.php:1127
3330
  msgid "Enable insertion on posts"
3331
  msgstr "Omogoči vstavljanje na prispevkih"
3332
 
3333
+ #: settings.php:1127 settings.php:3460
3334
  msgid "Posts"
3335
  msgstr "Prispevki"
3336
 
3337
+ #: settings.php:1131 settings.php:1132
3338
  msgid ""
3339
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3340
  "page or theme homepage (available positions may depend on hooks used by the "
3344
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
3345
  "lahko odvisni od ročic, ki jih tema uporablja)"
3346
 
3347
+ #: settings.php:1132 settings.php:3462
3348
  msgid "Homepage"
3349
  msgstr "Domača stran"
3350
 
3351
+ #: settings.php:1136 settings.php:1137
3352
  msgid "Enable insertion on category blog pages (including sub-pages)"
3353
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
3354
 
3355
+ #: settings.php:1137 settings.php:3463
3356
  msgid "Category pages"
3357
  msgstr "Strani kategorij"
3358
 
3359
+ #: settings.php:1147 settings.php:1148
3360
  msgid "Enable insertion on static pages"
3361
  msgstr "Omogoči vstavljanje na statičnih straneh"
3362
 
3363
+ #: settings.php:1148 settings.php:3461
3364
  msgid "Static pages"
3365
  msgstr "Statične strani"
3366
 
3367
+ #: settings.php:1152 settings.php:1153
3368
  msgid "Enable insertion on search blog pages"
3369
  msgstr "Omogoči vstavljanje na iskalnih straneh"
3370
 
3371
+ #: settings.php:1153 settings.php:3465
3372
  msgid "Search pages"
3373
  msgstr "Iskalne strani"
3374
 
3375
+ #: settings.php:1157 settings.php:1158
3376
  msgid "Enable insertion on tag or archive blog pages"
3377
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
3378
 
3379
+ #: settings.php:1161
3380
  msgid "Toggle settings for default insertion and list of individual exceptions"
3381
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
3382
 
3383
+ #: settings.php:1173
3384
  msgid ""
3385
  "Enable individual post/page exceptions for insertion of this block. They can "
3386
  "be configured on the individual post/page editor page (in the settings below "
3390
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
3391
  "nastavitvah pod urejevalnikom)."
3392
 
3393
+ #: settings.php:1174
3394
  msgid ""
3395
  "Enable individual post/page exceptions for insertion of this block. When "
3396
  "enabled they can be configured on the individual post/page editor page (in "
3400
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
3401
  "strani (v nastavitvah pod urejevalnikom)."
3402
 
3403
+ #: settings.php:1174
3404
  msgid "Use exceptions for individual posts or pages to change insertion"
3405
  msgstr ""
3406
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
3407
 
3408
  #. Translators: Enabled means...
3409
+ #: settings.php:1182
3410
  msgid ""
3411
  "means the insertion for this block is enabled by default and disabled for "
3412
  "exceptions."
3415
  "izjeme."
3416
 
3417
  #. Translators: Disabled means...
3418
+ #: settings.php:1183
3419
  msgid ""
3420
  "means the insertion for this block is disabled by default and enabled for "
3421
  "exceptions."
3423
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
3424
  "izjeme."
3425
 
3426
+ #: settings.php:1184
3427
  msgid ""
3428
  "When individual post/page exceptions are enabled they can be configured on "
3429
  "the individual post/page editor page (in the settings below the editor)."
3432
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
3433
  "urejevalnikom)."
3434
 
3435
+ #: settings.php:1192
3436
  msgid ""
3437
  "No exception for post or static page defined. Block will not be inserted."
3438
  msgstr ""
3439
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
3440
 
3441
+ #: settings.php:1210
3442
  msgctxt "post"
3443
  msgid "Type"
3444
  msgstr "Vrsta"
3445
 
3446
  #. translators: %d: block number
3447
+ #: settings.php:1212
3448
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3449
  msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
3450
 
3451
+ #: settings.php:1213
3452
  msgid "Clear listed exceptions for block"
3453
  msgstr "Pobriši izpisane izjeme za blok"
3454
 
3455
+ #: settings.php:1239 settings.php:1387 settings.php:2075
3456
  msgid "Insertion"
3457
  msgstr "Vstavljanje"
3458
 
3459
+ #: settings.php:1277
3460
  msgid ""
3461
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3462
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
3472
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
3473
  "število pomeni štetje z nasprotne smeri"
3474
 
3475
+ #: settings.php:1278
3476
  msgid ""
3477
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3478
  "means every N images, empty means all images, 0 means random image, value "
3487
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
3488
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
3489
 
3490
+ #: settings.php:1291
3491
  msgid ""
3492
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3493
  "numbers, %N means every N excerpts, empty means all excerpts"
3496
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
3497
  "izvlečki"
3498
 
3499
+ #: settings.php:1292
3500
  msgid ""
3501
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3502
  "numbers, %N means every N posts, empty means all posts"
3505
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
3506
  "prispevki"
3507
 
3508
+ #: settings.php:1293
3509
  msgid ""
3510
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3511
  "numbers, %N means every N comments, empty means all comments"
3514
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
3515
  "vsi komentarji"
3516
 
3517
+ #: settings.php:1300
3518
  msgid "Toggle paragraph counting settings"
3519
  msgstr "Preklopi nastavitve za štetje odstavkov"
3520
 
3521
+ #: settings.php:1301
3522
  msgid "Toggle paragraph clearance settings"
3523
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
3524
 
3525
+ #: settings.php:1304
3526
  msgid "Toggle insertion filter settings"
3527
  msgstr "Preklopi nastavitve filtra vstavljanja"
3528
 
3529
+ #: settings.php:1322
3530
  msgid "Toggle insertion and alignment icons"
3531
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
3532
 
3533
+ #: settings.php:1336
3534
  msgid "Custom CSS code for the wrapping div"
3535
  msgstr "CSS koda po meri za div za ovijanje"
3536
 
3537
+ #: settings.php:1339 settings.php:1340 settings.php:1341 settings.php:1342
3538
+ #: settings.php:1343 settings.php:1344
3539
  msgid "CSS code for the wrapping div, click to edit"
3540
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3541
 
3542
+ #: settings.php:1357
3543
  msgid "HTML element"
3544
  msgstr "HTML element"
3545
 
3546
+ #: settings.php:1370
3547
  msgid "HTML element selector or comma separated list of selectors"
3548
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3549
 
3550
+ #: settings.php:1376 settings.php:2819
3551
  msgid "Action"
3552
  msgstr "Akcija"
3553
 
3554
+ #: settings.php:1388
3555
  msgid ""
3556
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3557
  "Server-side insertion inserts block when the page is generated but needs "
3561
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3562
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3563
 
3564
+ #: settings.php:1397
3565
  msgid "Code position"
3566
  msgstr "Položaj kode"
3567
 
3568
+ #: settings.php:1398
3569
  msgid ""
3570
  "Page position where the code for client-side insertion will be inserted."
3571
  msgstr ""
3572
  "Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
3573
 
3574
+ #: settings.php:1413
3575
  msgid "Count"
3576
  msgstr "Štej"
3577
 
3578
+ #: settings.php:1419
3579
  msgid "paragraphs with tags"
3580
  msgstr "odstavke z značkami"
3581
 
3582
+ #: settings.php:1425
3583
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3584
  msgstr ""
3585
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3586
 
3587
+ #: settings.php:1434
3588
  msgid "that have between"
3589
  msgstr "ki imajo med"
3590
 
3591
+ #: settings.php:1440
3592
  msgid "Minimum number of paragraph words, leave empty for no limit"
3593
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3594
 
3595
+ #: settings.php:1449
3596
  msgid "Maximum number of paragraph words, leave empty for no limit"
3597
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3598
 
3599
+ #: settings.php:1452
3600
  msgid "words"
3601
  msgstr "besed"
3602
 
3603
+ #: settings.php:1467 settings.php:1526 settings.php:1622 settings.php:1648
3604
  msgid "Comma separated texts"
3605
  msgstr "Z vejico ločena besedila"
3606
 
3607
+ #: settings.php:1480
3608
  msgid ""
3609
  "Count also paragraphs inside these elements - defined on general plugin "
3610
  "settings page - tab [*] / tab General"
3613
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3614
 
3615
  #. Translators: %s: HTML tags
3616
+ #: settings.php:1486
3617
  msgid "Count inside %s elements"
3618
  msgstr "Štej znotraj elementov %s"
3619
 
3620
  #. translators: inside [HTML tags] elements that contain
3621
+ #: settings.php:1498
3622
  msgid "inside"
3623
  msgstr "znotraj"
3624
 
3625
+ #: settings.php:1504
3626
  msgid "Comma separated HTML tag names of container elements"
3627
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3628
 
3629
  #. translators: inside [HTML tags] elements that contain
3630
+ #: settings.php:1513
3631
  msgid "elements that"
3632
  msgstr "elementov, ki"
3633
 
3634
+ #. Translators: Do not insert for first X and last Y paragraphs
3635
+ #: settings.php:1539
3636
+ msgid "Do not insert for first"
3637
+ msgid_plural "Do not insert for first"
3638
+ msgstr[0] "Ne vstavi za prvi"
3639
+ msgstr[1] "Ne vstavi za prva"
3640
+ msgstr[2] "Ne vstavi za prve"
3641
+ msgstr[3] "Ne vstavi za prvih"
3642
 
3643
+ #: settings.php:1545
3644
+ msgid ""
3645
+ "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3646
+ "first paragraphs"
3647
+ msgstr ""
3648
+ "Izvzame prve odstavke pri vstavljanju, pustite prazno za brez izvzetka prvih "
3649
+ "odstavkov"
3650
 
3651
+ #. Translators: Do not insert for first X and last Y paragraphs
3652
+ #: settings.php:1548
3653
+ msgid "and last"
3654
+ msgid_plural "and last"
3655
+ msgstr[0] "in zadnji"
3656
+ msgstr[1] "in zadnja"
3657
+ msgstr[2] "in zadnje"
3658
+ msgstr[3] "in zadnjih"
3659
 
3660
+ #: settings.php:1554
3661
+ msgid ""
3662
+ "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3663
+ "last paragraphs"
3664
+ msgstr ""
3665
+ "Izvzame zadnje odstavke pri vstavljanju, pustite prazno za brez izjeme "
3666
+ "zadnjih odstavkov"
3667
+
3668
+ #. Translators: Do not insert for first X and last Y paragraphs
3669
  #. Translators: Post/Static page must have between X and Y paragraphs
3670
+ #: settings.php:1557 settings.php:1583
3671
  msgid "paragraph"
3672
  msgid_plural "paragraphs"
3673
  msgstr[0] "odstavek"
3675
  msgstr[2] "odstavke"
3676
  msgstr[3] "odstavkov"
3677
 
3678
+ #: settings.php:1565 settings.php:2198
3679
+ msgid "Post/Static page must have between"
3680
+ msgstr "Prispevek/Statična stran mora imeti med"
3681
+
3682
+ #: settings.php:1571
3683
+ msgid "Minimum number of paragraphs, leave empty for no limit"
3684
+ msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
3685
+
3686
+ #: settings.php:1580
3687
+ msgid "Maximum number of paragraphs, leave empty for no limit"
3688
+ msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
3689
+
3690
+ #: settings.php:1591
3691
  msgid "Minimum number of words in paragraphs above"
3692
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3693
 
3694
+ #: settings.php:1597
3695
  msgid ""
3696
  "Used only with automatic insertion After paragraph and empty paragraph "
3697
  "numbers"
3699
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3700
  "številkami odstavkov"
3701
 
3702
+ #: settings.php:1607 settings.php:1633
3703
  msgid "In"
3704
  msgstr "V"
3705
 
3706
+ #: settings.php:1613
3707
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3708
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3709
 
3710
+ #: settings.php:1616
3711
  msgid "paragraphs above avoid"
3712
  msgstr "odstavkih zgoraj se izogni"
3713
 
3714
+ #: settings.php:1639
3715
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3716
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3717
 
3718
+ #: settings.php:1642
3719
  msgid "paragraphs below avoid"
3720
  msgstr "odstavkih spodaj se izogni"
3721
 
3722
+ #: settings.php:1658
3723
  msgid "If text is found"
3724
  msgstr "Če je besedilo najdeno"
3725
 
3726
+ #: settings.php:1665
3727
  msgid "check up to"
3728
  msgstr "preveri do"
3729
 
3730
+ #: settings.php:1673
3731
  msgctxt "check up to"
3732
  msgid "paragraphs"
3733
  msgstr "odstavkov"
3734
 
3735
+ #: settings.php:1689
3736
  msgid "Categories"
3737
  msgstr "Kategorije"
3738
 
3739
+ #: settings.php:1692
3740
  msgid "Toggle category editor"
3741
  msgstr "Preklopi urejevalnik kategorij"
3742
 
3743
+ #: settings.php:1695
3744
  msgid "Comma separated category slugs"
3745
  msgstr "Z vejico ločeni ključi kategorij"
3746
 
3747
+ #: settings.php:1704
3748
  msgid "Blacklist categories"
3749
  msgstr "Črni seznam kategorij"
3750
 
3751
+ #: settings.php:1708
3752
  msgid "Whitelist categories"
3753
  msgstr "Beli seznam kategorij"
3754
 
3755
+ #: settings.php:1720
3756
  msgid "Tags"
3757
  msgstr "Oznake"
3758
 
3759
+ #: settings.php:1723
3760
  msgid "Toggle tag editor"
3761
  msgstr "Preklopi urejevalnik oznak"
3762
 
3763
+ #: settings.php:1726
3764
  msgid "Comma separated tag slugs"
3765
  msgstr "Z vejico ločeni ključi oznak"
3766
 
3767
+ #: settings.php:1735
3768
  msgid "Blacklist tags"
3769
  msgstr "Črni seznam oznak"
3770
 
3771
+ #: settings.php:1739
3772
  msgid "Whitelist tags"
3773
  msgstr "Beli seznam oznak"
3774
 
3775
+ #: settings.php:1751
3776
  msgid "Taxonomies"
3777
  msgstr "Taksonomije"
3778
 
3779
+ #: settings.php:1754
3780
  msgid "Toggle taxonomy editor"
3781
  msgstr "Preklopi urejevalnik taksonomij"
3782
 
3783
+ #: settings.php:1757
3784
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3785
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3786
 
3787
+ #: settings.php:1766
3788
  msgid "Blacklist taxonomies"
3789
  msgstr "Črni seznam taksonomij"
3790
 
3791
+ #: settings.php:1770
3792
  msgid "Whitelist taxonomies"
3793
  msgstr "Beli seznam taksonomij"
3794
 
3795
+ #: settings.php:1782
3796
  msgid "Post IDs"
3797
  msgstr "ID-ji prispevkov"
3798
 
3799
+ #: settings.php:1785
3800
  msgid "Toggle post/page ID editor"
3801
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3802
 
3803
+ #: settings.php:1788
3804
  msgid "Comma separated post/page IDs"
3805
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3806
 
3807
+ #: settings.php:1797
3808
  msgid "Blacklist IDs"
3809
  msgstr "Črni seznam ID-jev"
3810
 
3811
+ #: settings.php:1801
3812
  msgid "Whitelist IDs"
3813
  msgstr "Beli seznam ID-jev"
3814
 
3815
+ #: settings.php:1813
3816
  msgid "Urls"
3817
  msgstr "Url-ji"
3818
 
3819
+ #: settings.php:1816
3820
  msgid "Toggle url editor"
3821
  msgstr "Preklopi urejevalnik url-jev"
3822
 
3823
+ #: settings.php:1819
3824
  msgid ""
3825
  "Comma separated urls (page addresses) starting with / after domain name (e."
3826
  "g. /permalink-url, use only when you need to taget a specific url not "
3832
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3833
  "začetek*. *url-vzorec*, *url-konec)"
3834
 
3835
+ #: settings.php:1828
3836
  msgid "Blacklist urls"
3837
  msgstr "Črni seznam url-jev"
3838
 
3839
+ #: settings.php:1832
3840
  msgid "Whitelist urls"
3841
  msgstr "Beli seznam url-jev"
3842
 
3843
+ #: settings.php:1843
3844
  msgid "Url parameters"
3845
  msgstr "Url parametri"
3846
 
3847
+ #: settings.php:1847
3848
  msgid "Toggle url parameter and cookie editor"
3849
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3850
 
3851
+ #: settings.php:1850
3852
  msgid ""
3853
  "Comma separated url query parameters or cookies with optional values (use "
3854
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
3857
  "vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
3858
  "'piškotek=vrednost')"
3859
 
3860
+ #: settings.php:1859
3861
  msgid "Blacklist url parameters"
3862
  msgstr "Črni seznam url parametrov"
3863
 
3864
+ #: settings.php:1863
3865
  msgid "Whitelist url parameters"
3866
  msgstr "Beli seznam url parametrov"
3867
 
3868
+ #: settings.php:1874
3869
  msgid "Referrers"
3870
  msgstr "Napotitelji"
3871
 
3872
+ #: settings.php:1877
3873
  msgid "Toggle referer editor"
3874
  msgstr "Preklopi urejevalnik napotiteljev"
3875
 
3876
+ #: settings.php:1880
3877
  msgid ""
3878
  "Comma separated domains, use # for no referrer, you can also use partial "
3879
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3881
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3882
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3883
 
3884
+ #: settings.php:1889
3885
  msgid "Blacklist referers"
3886
  msgstr "Črni seznam napotiteljev"
3887
 
3888
+ #: settings.php:1893
3889
  msgid "Whitelist referers"
3890
  msgstr "Beli seznam napotiteljev"
3891
 
3892
+ #: settings.php:1904
3893
  msgid "Clients"
3894
  msgstr "Odjemalci"
3895
 
3896
+ #: settings.php:1907
3897
  msgid "Toggle client editor"
3898
  msgstr "Preklopi urejevalnik odjemalcev"
3899
 
3900
+ #: settings.php:1910
3901
  msgid "Comma separated names (operating systems, browsers, devices)"
3902
  msgstr "Z vejico ločena imena (operacijski sistemi, brskalniki, naprave)"
3903
 
3904
+ #: settings.php:1919
3905
  msgid "Blacklist clients"
3906
  msgstr "Črni seznam odjemalcev"
3907
 
3908
+ #: settings.php:1923
3909
  msgid "Whitelist clients"
3910
  msgstr "Beli seznam odjemalcev"
3911
 
3912
+ #: settings.php:1944
3913
  msgid "Enable widget for this block"
3914
  msgstr "Omogočite gradnik za ta blok"
3915
 
3916
+ #: settings.php:1956
3917
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3918
  msgstr ""
3919
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3920
 
3921
+ #: settings.php:1957 settings.php:4302
3922
  msgid "Shortcode"
3923
  msgstr "Kratka koda"
3924
 
3925
+ #: settings.php:1972
3926
  msgid ""
3927
  "Enable PHP function call to insert this block at any position in theme file. "
3928
  "If function is disabled for block it will return empty string."
3931
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3932
  "prazen niz."
3933
 
3934
+ #: settings.php:1973
3935
  msgid "PHP function"
3936
  msgstr "PHP funkcija"
3937
 
3938
+ #: settings.php:1988
3939
  msgid "Client-side device detection"
3940
  msgstr "Zaznavanje naprave na strani odjemalca"
3941
 
3942
+ #: settings.php:1989
3943
  msgid "Server-side device detection"
3944
  msgstr "Zaznavanje naprave na strani strežnika"
3945
 
3946
+ #: settings.php:1996
3947
  msgid "Use client-side detection to"
3948
  msgstr "Uporabi zaznavanje na strani odjemalca in"
3949
 
3950
+ #: settings.php:1998
3951
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3952
  msgstr ""
3953
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3954
 
3955
  #. Translators: only on (the following devices): viewport names (devices)
3956
  #. listed
3957
+ #: settings.php:2003
3958
  msgid "only on"
3959
  msgstr "samo na"
3960
 
3961
+ #: settings.php:2031
3962
  msgid "Device min width %s px"
3963
  msgstr "Najmanjša širina naprave %s px"
3964
 
3965
+ #: settings.php:2057
3966
  msgid "Use server-side detection to insert block only for"
3967
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3968
 
3969
+ #: settings.php:2076
3970
  msgid "Filter"
3971
  msgstr "Filter"
3972
 
3973
+ #: settings.php:2077
3974
  msgid "Word Count"
3975
  msgstr "Število Besed"
3976
 
3977
+ #: settings.php:2078 settings.php:4292
3978
  msgid "Scheduling"
3979
  msgstr "Urnik"
3980
 
3981
+ #: settings.php:2079
3982
  msgid "Display"
3983
  msgstr "Prikaz"
3984
 
3985
+ #: settings.php:2081 settings.php:2343
3986
  msgid "General"
3987
  msgstr "Splošno"
3988
 
3989
+ #: settings.php:2093
3990
  msgid "Old settings for AMP pages detected"
3991
  msgstr "Zaznane stare nastavitve za AMP strani"
3992
 
3993
+ #: settings.php:2093
3994
  msgid ""
3995
  "To insert different codes on normal and AMP pages separate them with "
3996
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
4001
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
4002
  "separatorja)."
4003
 
4004
+ #: settings.php:2093
4005
  msgid "AMP pages"
4006
  msgstr "AMP strani"
4007
 
4008
+ #: settings.php:2098
4009
  msgid "Enable insertion for Ajax requests"
4010
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
4011
 
4012
+ #: settings.php:2098
4013
  msgid "Ajax requests"
4014
  msgstr "Ajax zahteve"
4015
 
4016
+ #: settings.php:2103
4017
  msgid "Enable insertion in RSS feeds"
4018
  msgstr "Omogoči vstavljanje v RSS virih"
4019
 
4020
+ #: settings.php:2103
4021
  msgid "RSS Feed"
4022
  msgstr "RSS Vir"
4023
 
4024
+ #: settings.php:2108
4025
  msgid "Enable insertion on page for Error 404: Page not found"
4026
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
4027
 
4028
+ #: settings.php:2108
4029
  msgid "Error 404 page"
4030
  msgstr "Stran napake 404"
4031
 
4032
+ #: settings.php:2120
4033
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
4034
  msgstr ""
4035
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
4036
 
4037
+ #: settings.php:2121
4038
  msgid "insertions"
4039
  msgstr "vstavljanj"
4040
 
4041
+ #: settings.php:2123
4042
  msgid ""
4043
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
4044
  "General)"
4046
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
4047
  "zavihek Splošno)"
4048
 
4049
+ #: settings.php:2126 settings.php:2523
4050
  msgid "Max blocks per page"
4051
  msgstr "Največ blokov na stran"
4052
 
4053
+ #: settings.php:2138
4054
  msgid "Insert for"
4055
  msgstr "Vstavi za"
4056
 
4057
+ #: settings.php:2146
4058
  msgid ""
4059
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
4060
  "currently active). Might speed up insertion on content pages when "
4064
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
4065
  "filter the_content večkrat klican."
4066
 
4067
+ #: settings.php:2149
4068
  msgid "Insert only in the loop"
4069
  msgstr "Vstavi samo v zanki"
4070
 
4071
+ #: settings.php:2155
4072
  msgid ""
4073
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
4074
  msgstr ""
4075
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
4076
  "Rocket"
4077
 
4078
+ #: settings.php:2155
4079
  msgid "Disable caching"
4080
  msgstr "Onemogoči predpomnjenje"
4081
 
4082
+ #: settings.php:2167
4083
  msgid "Filter insertions"
4084
  msgstr "Filtriraj vstavljanja"
4085
 
4086
+ #: settings.php:2170
4087
  msgid ""
4088
  "Filter multiple insertions by specifying wanted insertions for this block - "
4089
  "single number, comma separated numbers or %N for every N insertions - empty "
4095
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
4096
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
4097
 
4098
+ #: settings.php:2173
4099
  msgid "using"
4100
  msgstr "z uporabo"
4101
 
4102
+ #: settings.php:2192
4103
  msgid "Checked means specified calls are unwanted"
4104
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
4105
 
4106
+ #: settings.php:2192
4107
  msgid "Invert filter"
4108
  msgstr "Obrni filter"
4109
 
4110
+ #: settings.php:2199
4111
  msgid "Minimum number of post/static page words, leave empty for no limit"
4112
  msgstr ""
4113
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4114
  "omejitev"
4115
 
4116
+ #: settings.php:2201
4117
  msgid "Maximum number of post/static page words, leave empty for no limit"
4118
  msgstr ""
4119
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4120
  "omejitev"
4121
 
4122
+ #: settings.php:2214
4123
  msgid "for"
4124
  msgstr "za"
4125
 
4126
+ #: settings.php:2214
4127
  msgid "days after publishing"
4128
  msgstr "dni po objavi"
4129
 
4130
+ #: settings.php:2216
4131
  msgid "Not available"
4132
  msgstr "Ni na razpolago"
4133
 
4134
+ #: settings.php:2229 settings.php:2515
4135
  msgid "Ad label"
4136
  msgstr "Oznaka oglasa"
4137
 
4138
+ #: settings.php:2249
4139
  msgid "General tag"
4140
  msgstr "Splošna oznaka"
4141
 
4142
+ #: settings.php:2253
4143
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
4144
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
4145
 
4146
  #. translators: %s: HTML tags
4147
+ #: settings.php:2262
4148
  msgid ""
4149
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
4150
  "client-side device detection!"
4153
  "potrebna za zaznavanje naprave na strani odjemalca!"
4154
 
4155
  #. translators: %s: HTML tags for text and link
4156
+ #: settings.php:2276
4157
  msgid ""
4158
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
4159
  "side %s insertion. Use %s Server-side %s insertion."
4162
  "vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
4163
  "strežnika%s."
4164
 
4165
+ #: settings.php:2292
4166
  msgid "Settings"
4167
  msgstr "Nastavitve"
4168
 
4169
+ #: settings.php:2295
4170
  msgid "Settings timestamp"
4171
  msgstr "Časovni žig nastavitev"
4172
 
4173
+ #: settings.php:2308
4174
  msgid "Are you sure you want to reset all settings?"
4175
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
4176
 
4177
+ #: settings.php:2308
4178
  msgid "Reset All Settings"
4179
  msgstr "Ponastavi Vse Nastavitve"
4180
 
4181
+ #: settings.php:2344
4182
  msgid "Viewports"
4183
  msgstr "Pogledi"
4184
 
4185
+ #: settings.php:2345
4186
  msgid "Hooks"
4187
  msgstr "Ročice"
4188
 
4189
+ #: settings.php:2346
4190
  msgid "Header"
4191
  msgstr "Glava"
4192
 
4193
+ #: settings.php:2347 strings.php:30
4194
  msgid "Footer"
4195
  msgstr "Noga"
4196
 
4197
+ #: settings.php:2352
4198
  msgid "Debugging"
4199
  msgstr "Razhroščevanje"
4200
 
4201
+ #: settings.php:2362
4202
  msgid "Plugin priority"
4203
  msgstr "Prednost vtičnika"
4204
 
4205
+ #: settings.php:2370
4206
  msgid "Output buffering"
4207
  msgstr "Predpomnjenje izhoda"
4208
 
4209
+ #: settings.php:2373
4210
  msgid "Needed for position Above header but may not work with all themes"
4211
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
4212
 
4213
+ #: settings.php:2381
4214
  msgid "Syntax highlighting theme"
4215
  msgstr "Tema za poudarjanje sintakse"
4216
 
4217
+ #: settings.php:2388
4218
  msgctxt "no syntax highlighting themes"
4219
  msgid "None"
4220
  msgstr "Brez"
4221
 
4222
+ #: settings.php:2389
4223
  msgid "No Syntax Highlighting"
4224
  msgstr "Brez Poudarjanja Sintakse"
4225
 
4226
+ #: settings.php:2391
4227
  msgctxt "syntax highlighting themes"
4228
  msgid "Light"
4229
  msgstr "Svetle"
4230
 
4231
+ #: settings.php:2406
4232
  msgctxt "syntax highlighting themes"
4233
  msgid "Dark"
4234
  msgstr "Temne"
4235
 
4236
+ #: settings.php:2432
4237
  msgid "Min. user role for ind. exceptions editing"
4238
  msgstr "Najm. uporabniška vloga za urejanje izjem"
4239
 
4240
+ #: settings.php:2442
4241
  msgid "Disable caching for logged in administrators"
4242
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
4243
 
4244
+ #: settings.php:2445
4245
  msgid ""
4246
  "Enabled means that logged in administrators will see non-cached (live) pages "
4247
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
4249
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
4250
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
4251
 
4252
+ #: settings.php:2453
4253
  msgid "Wait for jQuery"
4254
  msgstr "Čakaj na jQuery"
4255
 
4256
+ #: settings.php:2456
4257
  msgid ""
4258
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
4259
  "it will run the scripts that may need it"
4261
  "Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
4262
  "bo pognal svoje skripte, ki jo potrebujejo"
4263
 
4264
+ #: settings.php:2464
4265
  msgid "Sticky widget mode"
4266
  msgstr "Način za lepljive gradnike"
4267
 
4268
+ #: settings.php:2467
4269
  msgid ""
4270
  "CSS mode is the best approach but may not work with all themes. JavaScript "
4271
  "mode works with most themes but may reload ads on page load."
4274
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
4275
  "nalaganju strani."
4276
 
4277
+ #: settings.php:2475
4278
  msgid "Sticky widget top margin"
4279
  msgstr "Zgornji rob za lepljiv gradnik"
4280
 
4281
+ #: settings.php:2483
4282
  msgid "Dynamic blocks"
4283
  msgstr "Dinamični bloki"
4284
 
4285
+ #: settings.php:2496
4286
  msgid "Functions for paragraph counting"
4287
  msgstr "Funkcije za štetje odstavkov"
4288
 
4289
+ #: settings.php:2499
4290
  msgid ""
4291
  "Standard PHP functions are faster and work in most cases, use Multibyte "
4292
  "functions if paragraphs are not counted properly on non-english pages."
4295
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
4296
  "šteti."
4297
 
4298
+ #: settings.php:2507
4299
  msgid "No paragraph counting inside"
4300
  msgstr "Ni štetja odstavkov znotraj"
4301
 
4302
+ #: settings.php:2518
4303
  msgid "Label text or HTML code"
4304
  msgstr "Besedilo oznake ali HTML koda"
4305
 
4306
+ #: settings.php:2526
4307
  msgid ""
4308
  "Maximum number of inserted blocks per page. You need to enable Max page "
4309
  "insertions (button Misc / tab Insertion) to count block for this limit."
4312
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
4313
  "omejitev."
4314
 
4315
+ #: settings.php:2540
4316
  msgid "Plugin usage tracking"
4317
  msgstr "Sledenje uporabe vtičnika"
4318
 
4319
  #. translators: %s: Ad Inserter
4320
+ #: settings.php:2543
4321
  msgid ""
4322
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
4323
  "Only information regarding the WordPress environment and %s usage is "
4327
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
4328
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
4329
 
4330
+ #: settings.php:2561
4331
  msgid "CSS class name for the wrapping div"
4332
  msgstr "Ime CSS razreda za div za ovijanje"
4333
 
4334
+ #: settings.php:2561
4335
  msgid "Block class name"
4336
  msgstr "Ime razreda za blok"
4337
 
4338
+ #: settings.php:2567
4339
  msgid "Include block number class"
4340
  msgstr "Vključi razred številke bloka"
4341
 
4342
+ #: settings.php:2567
4343
  msgid "Block number class"
4344
  msgstr "Razred številke bloka"
4345
 
4346
+ #: settings.php:2572
4347
  msgid "Include block name class"
4348
  msgstr "Vključi razred imena bloka"
4349
 
4350
+ #: settings.php:2572
4351
  msgid "Block name class"
4352
  msgstr "Razred imena bloka"
4353
 
4354
+ #: settings.php:2577
4355
  msgid ""
4356
  "Instead of alignment classes generate inline alignment styles for blocks"
4357
  msgstr ""
4358
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
4359
 
4360
+ #: settings.php:2577
4361
  msgid "Inline styles"
4362
  msgstr "Medvrstični slogi"
4363
 
4364
+ #: settings.php:2583
4365
  msgid "Preview of the block wrapping code"
4366
  msgstr "Predogled kode za ovijanje blokov"
4367
 
4368
+ #: settings.php:2584
4369
  msgid "Wrapping div"
4370
  msgstr "div za ovijanje"
4371
 
4372
+ #: settings.php:2585 settings.php:3025
4373
  msgid "BLOCK CODE"
4374
  msgstr "KODA BLOKA"
4375
 
4376
+ #: settings.php:2593
4377
  msgid "Viewport Settings used for client-side device detection"
4378
  msgstr ""
4379
  "Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
4380
 
4381
  #. Translators: %d: viewport number
4382
+ #: settings.php:2601
4383
  msgid "Viewport %d name"
4384
  msgstr "Ime pogleda %d"
4385
 
4386
+ #: settings.php:2604
4387
  msgid "min width"
4388
  msgstr "najmanjša širina"
4389
 
4390
+ #: settings.php:2615
4391
  msgid "Custom Hooks"
4392
  msgstr "Ročice Po Meri"
4393
 
4394
+ #: settings.php:2627 settings.php:2630
4395
  msgid "Enable hook"
4396
  msgstr "Omogoči ročico"
4397
 
4398
  #. translators: %d: hook number
4399
+ #: settings.php:2630
4400
  msgid "Hook %d name"
4401
  msgstr "Ime ročice %d"
4402
 
4403
+ #: settings.php:2633
4404
  msgid "Hook name for automatic insertion selection"
4405
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
4406
 
4407
+ #: settings.php:2636
4408
  msgid "action"
4409
  msgstr "akcija"
4410
 
4411
+ #: settings.php:2639
4412
  msgid "Action name as used in the do_action () function"
4413
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
4414
 
4415
+ #: settings.php:2642
4416
  msgid "priority"
4417
  msgstr "prednost"
4418
 
4419
+ #: settings.php:2645
4420
  msgid "Priority for the hook (default is 10)"
4421
  msgstr "Prednost za ročico (privzeta je 10)"
4422
 
4423
+ #: settings.php:2666
4424
  msgid "Enable insertion of this code into HTML page header"
4425
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
4426
 
4427
+ #: settings.php:2670 settings.php:2737 settings.php:2919
4428
  msgid "Process PHP code"
4429
  msgstr "Procesiraj PHP kodo"
4430
 
4431
+ #: settings.php:2674
4432
  msgid "HTML Page Header Code"
4433
  msgstr "Koda v Glavi HTML Strani"
4434
 
4435
+ #: settings.php:2682
4436
  msgid "Code in the %s section of the HTML page"
4437
  msgstr "Koda v %s delu HTML strani"
4438
 
4439
+ #: settings.php:2683
4440
  msgctxt "code in the header"
4441
  msgid "NOT ENABLED"
4442
  msgstr "NI OMOGOČENA"
4443
 
4444
+ #: settings.php:2700 settings.php:2768
4445
  msgid "Use server-side detection to insert code only for"
4446
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
4447
 
4448
+ #: settings.php:2715
4449
  msgid ""
4450
  "Enable insertion of this code into HTML page header on page for Error 404: "
4451
  "Page not found"
4453
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
4454
  "obstaja"
4455
 
4456
+ #: settings.php:2715 settings.php:2783
4457
  msgid "Insert on Error 404 page"
4458
  msgstr "Vstavi na strani Napake 404"
4459
 
4460
+ #: settings.php:2733
4461
  msgid "Enable insertion of this code into HTML page footer"
4462
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
4463
 
4464
+ #: settings.php:2741
4465
  msgid "HTML Page Footer Code"
4466
  msgstr "Koda v Nogi HTML Strani"
4467
 
4468
  #. translators: %s: HTML tags
4469
+ #: settings.php:2749
4470
  msgid "Code before the %s tag of the the HTML page"
4471
  msgstr "Koda pred %s značko HTML strani"
4472
 
4473
+ #: settings.php:2750
4474
  msgctxt "code in the footer"
4475
  msgid "NOT ENABLED"
4476
  msgstr "NI OMOGOČENA"
4477
 
4478
+ #: settings.php:2783
4479
  msgid ""
4480
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4481
  "Page not found"
4483
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
4484
  "Stran ne obstaja"
4485
 
4486
+ #: settings.php:2799
4487
  msgid "Code for ad blocking detection inserted. Click for details."
4488
  msgstr ""
4489
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
4490
 
4491
+ #: settings.php:2804
4492
  msgid "Enable detection of ad blocking"
4493
  msgstr "Omogoči zaznavanje blokiranja oglasov"
4494
 
4495
+ #: settings.php:2822
4496
  msgid "Global action when ad blocking is detected"
4497
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
4498
 
4499
+ #: settings.php:2828
4500
  msgid "No action for"
4501
  msgstr "Ni akcije za"
4502
 
4503
+ #: settings.php:2829
4504
  msgid "Exceptions for global action when ad blocking is detected."
4505
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
4506
 
4507
+ #: settings.php:2839
4508
  msgid "Delay Action"
4509
  msgstr "Zakasni Akcijo"
4510
 
4511
+ #: settings.php:2842
4512
  msgid ""
4513
  "Number of page views to delay action when ad blocking is detected. Leave "
4514
  "empty for no delay (action fires on first page view). Sets cookie."
4517
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
4518
  "strani). Nastavi piškotek."
4519
 
4520
+ #: settings.php:2842
4521
  msgctxt "Delay Action for x "
4522
  msgid "page views"
4523
  msgstr "ogledov strani"
4524
 
4525
+ #: settings.php:2847
4526
  msgid "No Action Period"
4527
  msgstr "Obdobje Brez Akcije"
4528
 
4529
+ #: settings.php:2850
4530
  msgid ""
4531
  "Number of days to supress action when ad blocking is detected. Leave empty "
4532
  "for no no-action period (action fires always after defined page view delay). "
4536
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
4537
  "strani). Nastavi piškotek."
4538
 
4539
+ #: settings.php:2850
4540
  msgctxt "no action period"
4541
  msgid "days"
4542
  msgstr "dni"
4543
 
4544
+ #: settings.php:2855
4545
  msgid "Custom Selectors"
4546
  msgstr "Selektorji Po Meri"
4547
 
4548
+ #: settings.php:2858
4549
  msgid ""
4550
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4551
  "blocking detection. Invisible element or element with zero height means ad "
4555
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
4556
  "pomeni prisotnost blokiranja oglasov."
4557
 
4558
+ #: settings.php:2870
4559
  msgid "Redirection Page"
4560
  msgstr "Stran za Preusmeritev"
4561
 
4562
+ #: settings.php:2882
4563
  msgid "Custom Url"
4564
  msgstr "Url Po Meri"
4565
 
4566
+ #: settings.php:2887
4567
  msgid ""
4568
  "Static page for redirection when ad blocking is detected. For other pages "
4569
  "select Custom url and set it below."
4571
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
4572
  "strani izberite Url Po Meri in ga nastavite spodaj."
4573
 
4574
+ #: settings.php:2896
4575
  msgid "Custom Redirection Url"
4576
  msgstr "Url za Preusmeritev Po Meri"
4577
 
4578
+ #: settings.php:2908
4579
  msgid "Message HTML code"
4580
  msgstr "HTML koda sporočila"
4581
 
4582
+ #: settings.php:2921
4583
  msgid "Preview message when ad blocking is detected"
4584
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
4585
 
4586
+ #: settings.php:2950
4587
  msgid "Prevent visitors from closing the warning message"
4588
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
4589
 
4590
+ #: settings.php:2950
4591
  msgid "Undismissible Message"
4592
  msgstr "Neodstranljivo Sporočilo"
4593
 
4594
+ #: settings.php:2956
4595
  msgid "Not undismissible for"
4596
  msgstr "Ni neodstranljivo za"
4597
 
4598
+ #: settings.php:2957
4599
  msgid "Users which can close the warning message."
4600
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
4601
 
4602
+ #: settings.php:2971
4603
  msgid ""
4604
  "Force showing admin toolbar for administrators when viewing site. Enable "
4605
  "this option when you are logged in as admin and you don't see admin toolbar."
4608
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
4609
  "skrbnike."
4610
 
4611
+ #: settings.php:2979
4612
  msgid "Disable header code (Header tab)"
4613
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
4614
 
4615
+ #: settings.php:2983
4616
  msgid "Disable footer code (Footer tab)"
4617
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
4618
 
4619
  #. translators: %s: Ad Inserter
4620
+ #: settings.php:2987
4621
  msgid "Disable %s JavaScript code"
4622
  msgstr "Onemogoči %s JavaScript kodo"
4623
 
4624
  #. translators: %s: Ad Inserter
4625
+ #: settings.php:2991
4626
  msgid "Disable %s CSS code"
4627
  msgstr "Onemogoči %s CSS kodo"
4628
 
4629
+ #: settings.php:2995
4630
  msgid ""
4631
  "Disable PHP code processing (in all blocks including header and footer code)"
4632
  msgstr ""
4633
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4634
 
4635
+ #: settings.php:2999
4636
  msgid "Disable insertion of all blocks"
4637
  msgstr "Onemogoči vstavljanje vseh blokov"
4638
 
4639
+ #: settings.php:3003
4640
  msgid "Disable insertions"
4641
  msgstr "Onemogoči vstavljanja"
4642
 
4643
  #. translators: %s: Ad Inserter
4644
+ #: settings.php:3015
4645
  msgid "%s CSS CODE"
4646
  msgstr "%s CSS KODA"
4647
 
4648
+ #: settings.php:3018
4649
  msgid "HEADER CODE"
4650
  msgstr "KODA GLAVE"
4651
 
4652
  #. translators: %s: PHP tags
4653
+ #: settings.php:3024
4654
  msgid "BLOCK PHP CODE"
4655
  msgstr "PHP KODA BLOKA"
4656
 
4657
  #. translators: %s: Ad Inserter
4658
+ #: settings.php:3030
4659
  msgid "%s JS CODE"
4660
  msgstr "%s JS KODA"
4661
 
4662
+ #: settings.php:3033
4663
  msgid "FOOTER CODE"
4664
  msgstr "KODA NOGE"
4665
 
4666
+ #: settings.php:3042
4667
  msgid "Force showing admin toolbar when viewing site"
4668
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4669
 
4670
+ #: settings.php:3049
4671
  msgid "Enable debugging functions in admin toolbar"
4672
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4673
 
4674
+ #: settings.php:3051
4675
  msgid "Debugging functions in admin toolbar"
4676
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4677
 
4678
+ #: settings.php:3058
4679
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4680
  msgstr ""
4681
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4682
  "zaslonih"
4683
 
4684
+ #: settings.php:3060
4685
  msgid "Debugging functions on mobile screens"
4686
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4687
 
4688
+ #: settings.php:3067
4689
  msgid ""
4690
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4691
  "tags, processing) by url parameters for non-logged in users. Enable this "
4700
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
4701
  "vedno omogočeno."
4702
 
4703
+ #: settings.php:3069
4704
  msgid "Remote debugging"
4705
  msgstr "Oddaljeno razhroščevanje"
4706
 
4707
+ #: settings.php:3076
4708
  msgid ""
4709
  "Disable translation to see original texts for the settings and messages in "
4710
  "English"
4712
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4713
  "angleščini"
4714
 
4715
+ #: settings.php:3078
4716
  msgid "Disable translation"
4717
  msgstr "Onemogoči prevod"
4718
 
4719
+ #: settings.php:3448
4720
  msgid "Available positions for current theme"
4721
  msgstr "Razpoložljivi položaji za trenutno temo"
4722
 
4723
+ #: settings.php:3449
4724
  msgid "Error checking pages"
4725
  msgstr "Napaka pri preverjanju strani"
4726
 
4727
+ #: settings.php:3452
4728
  msgid "Toggle theme checker for available positions for automatic insertion"
4729
  msgstr ""
4730
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4731
 
4732
+ #: settings.php:3452
4733
  msgctxt "Button"
4734
  msgid "Check"
4735
  msgstr "Preveri"
4736
 
4737
+ #: settings.php:3459
4738
  msgid "Position"
4739
  msgstr "Položaj"
4740
 
4741
+ #: settings.php:3464
4742
  msgid "Archive pages"
4743
  msgstr "Strani arhiva"
4744
 
4745
+ #: settings.php:3523
4746
  msgid ""
4747
  "Position not available because output buffering (tab [*]) is not enabled"
4748
  msgstr ""
4749
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4750
 
4751
+ #: settings.php:3526 strings.php:248
4752
  msgid "Position not checked yet"
4753
  msgstr "Položaj še ni bil preverjen"
4754
 
4755
+ #: settings.php:3562
4756
  msgid "Toggle active/all blocks"
4757
  msgstr "Preklopi aktive/vse bloke"
4758
 
4759
+ #: settings.php:3566 strings.php:235
4760
  msgid "Rearrange block order"
4761
  msgstr "Preuredi vrstni red blokov"
4762
 
4763
+ #: settings.php:3571
4764
  msgid "Save new block order"
4765
  msgstr "Shrani vrstni red blokov"
4766
 
4767
+ #: settings.php:3597
4768
  msgid "Toggle active/all ad units"
4769
  msgstr "Preklopi aktivne/vse oglasne enote"
4770
 
4771
+ #: settings.php:3601
4772
  msgid "Reload AdSense ad units"
4773
  msgstr "Ponovno naloži oglasne enote AdSense"
4774
 
4775
+ #: settings.php:3605
4776
  msgid "Clear authorization to access AdSense account"
4777
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4778
 
4779
+ #: settings.php:3609 settings.php:4459 settings.php:4526 strings.php:243
4780
  msgid "Google AdSense Homepage"
4781
  msgstr "Google AdSense Domača Stran"
4782
 
4783
+ #: settings.php:3625
4784
  msgid "Switch to physical ads.txt file"
4785
  msgstr "Preklopi na fizično datoteko ads.txt"
4786
 
4787
+ #: settings.php:3626
4788
  msgid "Switch to virtual ads.txt file"
4789
  msgstr "Preklopi na navidezno datoteko ads.txt"
4790
 
4791
  #. translators: %s: ads.txt
4792
+ #: settings.php:3636
4793
  msgid "Open %s"
4794
  msgstr "Odpri %s"
4795
 
4796
+ #: settings.php:3644
4797
  msgid "Reload ads.txt file"
4798
  msgstr "Ponovno naloži datoteko ads.txt"
4799
 
4800
+ #: settings.php:3648 settings.php:4586
4801
  msgid "Save"
4802
  msgstr "Shrani"
4803
 
4804
  #. translators: %s: Ad Inserter
4805
+ #: settings.php:3823
4806
  msgid "ads.txt file: %s virtual ads.txt file"
4807
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4808
 
4809
+ #: settings.php:3828 settings.php:3848 strings.php:224
4810
  msgid "Warning"
4811
  msgstr "Opozorilo"
4812
 
4813
  #. translators: %s: Ad Inserter
4814
+ #: settings.php:3828
4815
  msgid "%s virtual file ads.txt not found"
4816
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4817
 
4818
+ #: settings.php:3836
4819
  msgid "IMPORTANT"
4820
  msgstr "POMEMBNO"
4821
 
4822
+ #: settings.php:3836
4823
  msgid "ads.txt file must be placed on the root domain"
4824
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4825
 
4826
+ #: settings.php:3841
4827
  msgid "ads.txt file"
4828
  msgstr "datoteka ads.txt"
4829
 
4830
+ #: settings.php:3841
4831
  msgid "NOT WRITABLE"
4832
  msgstr "NI ZAPISLJIVO"
4833
 
4834
+ #: settings.php:3848
4835
  msgid "file %s not found"
4836
  msgstr "datoteka %s ni najdena"
4837
 
4838
+ #: settings.php:3858
4839
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4840
  msgstr ""
4841
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4842
 
4843
  #. translators: %s: Ad Inserter
4844
+ #: settings.php:3864
4845
  msgid "%s virtual ads.txt file"
4846
  msgstr "%s navidezna datoteka ads.txt"
4847
 
4848
+ #: settings.php:3886
4849
  msgid "Advertising system"
4850
  msgstr "Oglaševalski sistem"
4851
 
4852
+ #: settings.php:3887
4853
  msgid "Account ID"
4854
  msgstr "ID Računa"
4855
 
4856
+ #: settings.php:3889
4857
  msgid "Certification authority ID"
4858
  msgstr "ID organa za potrjevanje"
4859
 
4860
+ #: settings.php:3904
4861
  msgid "Account ID found in block and present in ads.txt"
4862
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4863
 
4864
+ #: settings.php:3908
4865
  msgid "Account ID found in block but not present in ads.txt"
4866
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4867
 
4868
+ #: settings.php:4242
4869
  msgid "Preview block"
4870
  msgstr "Predogled bloka"
4871
 
4872
+ #: settings.php:4249
4873
  msgid "Pause block"
4874
  msgstr "Ustavite blok"
4875
 
4876
+ #: settings.php:4288
4877
  msgid "Automatic insertion"
4878
  msgstr "Samodejno vstavljanje"
4879
 
4880
  #. translators: %s HTML tags
4881
+ #: settings.php:4289 settings.php:5258
4882
  msgid "PHP code processing"
4883
  msgstr "Procesiranje PHP kode"
4884
 
4885
+ #: settings.php:4291
4886
  msgid "Device detection"
4887
  msgstr "Zaznavanje naprave"
4888
 
4889
+ #: settings.php:4314
4890
  msgid "No active block"
4891
  msgstr "Noben aktiven blok"
4892
 
4893
+ #: settings.php:4315
4894
  msgid "No block matches search keywords"
4895
  msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
4896
 
4897
+ #: settings.php:4370
4898
  msgid "Ad unit"
4899
  msgstr "Enota"
4900
 
4901
+ #: settings.php:4372
4902
  msgid "Slot ID"
4903
  msgstr "ID mesta"
4904
 
4905
+ #: settings.php:4398
4906
  msgid "Copy AdSense code"
4907
  msgstr "Kopiraj kodo AdSense"
4908
 
4909
+ #: settings.php:4401
4910
  msgid "Preview AdSense ad"
4911
  msgstr "Predogled oglasa AdSense"
4912
 
4913
+ #: settings.php:4404
4914
  msgid "Get AdSense code"
4915
  msgstr "Pridobi kodo AdSense"
4916
 
4917
  #. translators: %s: HTML tags
4918
+ #: settings.php:4436
4919
  msgid ""
4920
  "Please %s clear authorization %s with the button %s above and once again "
4921
  "authorize access to your AdSense account."
4923
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4924
  "avtorizirajte dostop do vašega računa AdSense."
4925
 
4926
+ #: settings.php:4455
4927
  msgid "AdSense Integration"
4928
  msgstr "Integracija AdSense"
4929
 
4930
+ #: settings.php:4457
4931
  msgid "AdSense Integration - Step 2"
4932
  msgstr "Integracija AdSense - Korak 2"
4933
 
4934
  #. translators: %s: HTML tags
4935
+ #: settings.php:4463
4936
  msgid ""
4937
  "Authorize %s to access your AdSense account. Click on the %s Get "
4938
  "Authorization Code %s button to open a new window where you can allow "
4945
  "Avtoriziraj. %s"
4946
 
4947
  #. translators: %s: HTML tags
4948
+ #: settings.php:4470
4949
  msgid ""
4950
  "If you get error, can't access ad units or would like to use own Google API "
4951
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4956
  "je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
4957
 
4958
  #. translators: %s: HTML tags
4959
+ #: settings.php:4472
4960
  msgid ""
4961
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4962
  "Authorization Code %s button to open a new window where you can allow "
4969
  "gumb %s Avtoriziraj. %s"
4970
 
4971
  #. translators: %s: HTML tags
4972
+ #: settings.php:4479
4973
  msgid ""
4974
  "If you get error %s invalid client %s click on the button %s Clear and "
4975
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4977
  "Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
4978
  "in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
4979
 
4980
+ #: settings.php:4490
4981
  msgid "Get Authorization Code"
4982
  msgstr "Pridobi Avtoriazcijsko Kodo"
4983
 
4984
+ #: settings.php:4493
4985
  msgid "Enter Authorization Code"
4986
  msgstr "Vnesi Avorizacijsko Kodo"
4987
 
4988
+ #: settings.php:4503
4989
  msgid "Use own API IDs"
4990
  msgstr "Uporabi lastne API ID-je"
4991
 
4992
+ #: settings.php:4505
4993
  msgid "Clear and return to Step 1"
4994
  msgstr "Odstrani in se vrni na Korak 1"
4995
 
4996
+ #: settings.php:4509
4997
  msgid "Authorize"
4998
  msgstr "Avtoriziraj"
4999
 
5000
+ #: settings.php:4525
5001
  msgid "AdSense Integration - Step 1"
5002
  msgstr "Integracija AdSense - Korak 1"
5003
 
5004
  #. translators: %s: Ad Inserter
5005
+ #: settings.php:4529
5006
  msgid ""
5007
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
5008
  "To do this you need to authorize %s to access your AdSense account. The "
5015
  "Odjemalca in Skrivnost Odjemalca."
5016
 
5017
  #. translators: %s: HTML tags
5018
+ #: settings.php:4538
5019
  msgid "Go to %s Google APIs and Services console %s"
5020
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
5021
 
5022
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
5023
+ #: settings.php:4539
5024
  msgid ""
5025
  "Create %1$s project - if the project and IDs are already created click on "
5026
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
5029
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
5030
 
5031
  #. translators: %s: HTML tags
5032
+ #: settings.php:4540
5033
  msgid ""
5034
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
5035
  "create a new project"
5038
  "ustvaritev novega projekta"
5039
 
5040
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
5041
+ #: settings.php:4541
5042
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
5043
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
5044
 
5045
  #. translators: %s: HTML tags
5046
+ #: settings.php:4542
5047
  msgid ""
5048
  "Click on project selection, wait for the project to be created and then and "
5049
  "select %s as the current project"
5052
  "izberite %s kot trenutni projekt"
5053
 
5054
  #. translators: %s: HTML tags
5055
+ #: settings.php:4543
5056
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
5057
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
5058
 
5059
  #. translators: %s: HTML tags
5060
+ #: settings.php:4544
5061
  msgid "Search for adsense and enable %s"
5062
  msgstr "Poiščite adsense in omogočite %s"
5063
 
5064
  #. translators: %s: HTML tags
5065
+ #: settings.php:4545
5066
  msgid "Click on %s CREATE CREDENTIALS %s"
5067
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
5068
 
5069
  #. translators: %s: HTML tags
5070
+ #: settings.php:4546
5071
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
5072
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
5073
 
5074
  #. translators: %s: HTML tags
5075
+ #: settings.php:4547
5076
  msgid "For %s What data will you be accessing? %s select %s User data %s"
5077
  msgstr ""
5078
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
5079
  "podatki %s"
5080
 
5081
  #. translators: %s: HTML tags
5082
+ #: settings.php:4548
5083
  msgid "Click on %s What credentials do I need? %s"
5084
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
5085
 
5086
  #. translators: %s: HTML tags
5087
+ #: settings.php:4549
5088
  msgid ""
5089
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
5090
  "Ad Inserter client %s"
5093
  "vnestite %s Ad Inserter odjemalec %s"
5094
 
5095
  #. translators: %s: HTML tags
5096
+ #: settings.php:4550
5097
  msgid ""
5098
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
5099
  "enter %s"
5102
  "uporabnikom %s vnesite %s"
5103
 
5104
  #. translators: %s: HTML tags
5105
+ #: settings.php:4551
5106
  msgid "Click on %s Continue %s"
5107
  msgstr "Kliknite na %s Nadaljuj %s"
5108
 
5109
  #. translators: %s: HTML tags
5110
+ #: settings.php:4552
5111
  msgid "Click on %s Done %s"
5112
  msgstr "Kliknite na %s Končaj %s"
5113
 
5114
  #. translators: %s: HTML tags
5115
+ #: settings.php:4553
5116
  msgid ""
5117
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
5118
  "secret %s"
5120
  "Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
5121
  "%s Skrivnost odjemalca %s"
5122
 
5123
+ #: settings.php:4554
5124
  msgid "Copy them to the appropriate fields below"
5125
  msgstr "Skopirajte ju na ustrezni polji spodaj"
5126
 
5127
+ #: settings.php:4560
5128
  msgid "Client ID"
5129
  msgstr "ID odjemalca"
5130
 
5131
+ #: settings.php:4563
5132
  msgid "Enter Client ID"
5133
  msgstr "Vnesite ID odjemalca"
5134
 
5135
+ #: settings.php:4568
5136
  msgid "Client secret"
5137
  msgstr "Skrivnost odjemalca"
5138
 
5139
+ #: settings.php:4571
5140
  msgid "Enter Client secret"
5141
  msgstr "Vnesite Skrivnost odjemalca"
5142
 
5143
+ #: settings.php:4581
5144
  msgid "Use default API IDs"
5145
  msgstr "Uporabi privzete API ID-je"
5146
 
5147
+ #: settings.php:4745
5148
  msgid "All posts"
5149
  msgstr "Vsi prispevki"
5150
 
5151
+ #: settings.php:4746
5152
  msgid "All static pages"
5153
  msgstr "Vse statične strani"
5154
 
5155
+ #: settings.php:4901 settings.php:4914 settings.php:4928 settings.php:4944
5156
  msgid "Blank ad blocks? Looking for AdSense alternative?"
5157
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
5158
 
5159
+ #: settings.php:4906 settings.php:4919 settings.php:4933 settings.php:4949
5160
+ #: settings.php:5148 settings.php:5150 settings.php:5166 settings.php:5171
5161
+ #: settings.php:5179 settings.php:5180 settings.php:5183 settings.php:5189
5162
+ #: settings.php:5199 settings.php:5203
5163
  msgid "Looking for AdSense alternative?"
5164
  msgstr "Iščete alternativo za AdSense?"
5165
 
5166
+ #: settings.php:4961
5167
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
5168
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
5169
 
5170
+ #: settings.php:4966 settings.php:5145 settings.php:5158 settings.php:5186
5171
+ #: settings.php:5212
5172
  msgid "Use Infolinks ads with Adsense to earn more"
5173
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
5174
 
5175
+ #: settings.php:4987 settings.php:5037
5176
  msgid "Support plugin development"
5177
  msgstr "Podprite razvoj vtičnika"
5178
 
5179
+ #: settings.php:4992 settings.php:5038
5180
  msgid ""
5181
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5182
  "reviewing the plugin on WordPres"
5184
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5185
  "razširiti novico z mnenjem o vtičniku na WordPress-u"
5186
 
5187
+ #: settings.php:4992
5188
  msgctxt "Review Ad Inserter"
5189
  msgid "Review"
5190
  msgstr "Ocenite"
5191
 
5192
+ #: settings.php:4997
5193
  msgid ""
5194
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5195
  "rating the plugin on WordPres"
5197
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5198
  "razširiti novico z oceno vtičnika na WordPress-u"
5199
 
5200
+ #: settings.php:4997
5201
  msgctxt "Rate Ad Inserter"
5202
  msgid "Rate"
5203
  msgstr "Ocenite"
5204
 
5205
+ #: settings.php:5002
5206
  msgid ""
5207
  "Support free Ad Inserter development. If you are making money with Ad "
5208
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
5211
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
5212
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
5213
 
5214
+ #: settings.php:5002
5215
  msgid "Donate"
5216
  msgstr "Donirajte"
5217
 
5218
+ #: settings.php:5009 settings.php:5053
5219
  msgid "Average rating of the plugin - Thank you!"
5220
  msgstr "Povprečna ocena vtičnika - Hvala!"
5221
 
5222
  #. translators: %s: Ad Inserter, HTML tags
5223
+ #: settings.php:5020
5224
  msgid ""
5225
  "You've been using %s for a while now, and I hope you're happy with it. "
5226
  "Positive %s reviews %s are a great way to show your appreciation for my "
5235
  "monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
5236
  "bi rekli 'Hvala'."
5237
 
5238
+ #: settings.php:5038
5239
  msgid "Review"
5240
  msgstr "Ocena"
5241
 
5242
+ #: settings.php:5042
5243
  msgid "Ad Inserter on Twitter"
5244
  msgstr "Ad Inserter na Twitter-ju"
5245
 
5246
+ #: settings.php:5043
5247
  msgid "Ad Inserter on Facebook"
5248
  msgstr "Ad Inserter na Facebook-u"
5249
 
5250
+ #: settings.php:5046
5251
  msgid "Follow Ad Inserter"
5252
  msgstr "Sledi Ad Inserter-ju"
5253
 
5254
  #. translators: %s: HTML tags
5255
+ #: settings.php:5073
5256
  msgid ""
5257
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5258
  "and %s Common Settings %s pages"
5261
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
5262
 
5263
  #. translators: %s: HTML tags
5264
+ #: settings.php:5085
5265
  msgid ""
5266
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5267
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
5272
  "%s Infolinks %s oglasno kodo %s"
5273
 
5274
  #. translators: %s: HTML tags
5275
+ #: settings.php:5106
5276
  msgid ""
5277
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5278
  "purchase you refer to us"
5281
  "nakup, ki nam ga posredujete"
5282
 
5283
  #. translators: %s: HTML tags
5284
+ #: settings.php:5113
5285
  msgid ""
5286
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5287
  "diagnose and fix the problem."
5290
  "navodili za diagnozo in rešitvami za težave."
5291
 
5292
  #. translators: %s: HTML tags
5293
+ #: settings.php:5117
5294
  msgid ""
5295
  "If you need any kind of help or support, please do not hesitate to open a "
5296
  "thread on the %s support forum. %s"
5298
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
5299
  "nit na %s podpornem forumu. %s"
5300
 
5301
+ #: settings.php:5143 settings.php:5207 settings.php:5211
5302
  msgid "Code preview with visual CSS editor"
5303
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
5304
 
5305
+ #: settings.php:5147 settings.php:5197
5306
  msgid "A/B testing - Track ad impressions and clicks"
5307
  msgstr "A/B testiranje - Sledi prikazom in klikom"
5308
 
5309
+ #: settings.php:5162
5310
  msgid "Insert ads on AMP pages"
5311
  msgstr "Vstavite oglase na AMP straneh"
5312
 
5313
+ #: settings.php:5170
5314
  msgid "Ad blocking detection and content protection"
5315
  msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
5316
 
5317
+ #: settings.php:5220
5318
  msgid "Looking for Pro Ad Management plugin?"
5319
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
5320
 
5321
+ #: settings.php:5221
5322
  msgid "To Optimally Monetize your WordPress website?"
5323
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
5324
 
5325
  #. Translators: %s: price of Ad Inserter Pro
5326
+ #: settings.php:5222
5327
  msgid "Different license types starting from %s"
5328
  msgstr "Različni tipi licenc začenši od %s"
5329
 
5330
  #. translators: %s HTML tags
5331
+ #: settings.php:5225
5332
  msgid "%s AdSense Integration %s"
5333
  msgstr "%s Integracija AdSense %s"
5334
 
5335
  #. translators: %s HTML tags
5336
+ #: settings.php:5226
5337
  msgid "Syntax highlighting %s editor %s"
5338
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
5339
 
5340
  #. translators: %s HTML tags
5341
+ #: settings.php:5227
5342
  msgid "%s Code preview %s with visual CSS editor"
5343
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
5344
 
5345
  #. translators: %s HTML tags
5346
+ #: settings.php:5228
5347
  msgid "Simple user interface - all settings on a single page"
5348
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
5349
 
5350
  #. translators: %s HTML tags
5351
+ #: settings.php:5229
5352
  msgid ""
5353
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5354
  "image / excerpt"
5357
  "%s / sliko / izvlečkom"
5358
 
5359
  #. translators: %s HTML tags
5360
+ #: settings.php:5230
5361
  msgid "%s Automatic insertion %s between posts on blog pages"
5362
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
5363
 
5364
  #. translators: %s HTML tags
5365
+ #: settings.php:5231
5366
  msgid "%s Automatic insertion %s before, between and after comments"
5367
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
5368
 
5369
  #. translators: %s HTML tags
5370
+ #: settings.php:5232
5371
  msgid "%s Automatic insertion %s after %s or before %s tag"
5372
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
5373
 
5374
  #. translators: %s HTML tags
5375
+ #: settings.php:5233
5376
  msgid "Automatic insertion at %s custom hook positions %s"
5377
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
5378
 
5379
  #. translators: %s HTML tags
5380
+ #: settings.php:5234
5381
  msgid ""
5382
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5383
  "selectors)"
5386
  "selektorjev)"
5387
 
5388
  #. translators: %s HTML tags
5389
+ #: settings.php:5235
5390
  msgid "%s Insertion exceptions %s for individual posts and pages"
5391
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
5392
 
5393
  #. translators: %s HTML tags
5394
+ #: settings.php:5236
5395
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5396
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
5397
 
5398
  #. translators: %s HTML tags
5399
+ #: settings.php:5237
5400
  msgid ""
5401
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5402
  "scrolls)"
5405
  "se stran pomika)"
5406
 
5407
  #. translators: %s HTML tags
5408
+ #: settings.php:5238
5409
+ msgid "%s Background ads %s with one or left and right background images"
5410
+ msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
5411
+
5412
+ #. translators: %s HTML tags
5413
+ #: settings.php:5239
5414
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5415
  msgstr ""
5416
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
5417
 
5418
  #. translators: %s HTML tags
5419
+ #: settings.php:5240
5420
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5421
  msgstr ""
5422
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
5423
 
5424
  #. translators: %s HTML tags
5425
+ #: settings.php:5241
5426
  msgid ""
5427
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5428
  "visible)"
5431
  "postane viden)"
5432
 
5433
  #. translators: %s HTML tags
5434
+ #: settings.php:5242
5435
  msgid ""
5436
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5437
  msgstr ""
5439
  "strani)"
5440
 
5441
  #. translators: %s HTML tags
5442
+ #: settings.php:5243
5443
  msgid "Block %s alignment and style %s customizations"
5444
  msgstr "%s Poravnave in slogi %s bloka po meri"
5445
 
5446
  #. translators: %s HTML tags
5447
+ #: settings.php:5244
5448
  msgid ""
5449
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5450
  "TOS)"
5452
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
5453
 
5454
  #. translators: %s HTML tags
5455
+ #: settings.php:5245
5456
  msgid ""
5457
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5458
  "feeds"
5461
  "virih"
5462
 
5463
  #. translators: %s HTML tags
5464
+ #: settings.php:5246
5465
  msgid "%s Ad rotation %s (works also with caching)"
5466
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
5467
 
5468
  #. translators: %s HTML tags
5469
+ #: settings.php:5247
5470
  msgid "Create, edit and check %s ads.txt %s file"
5471
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
5472
 
5473
  #. translators: %s HTML tags
5474
+ #: settings.php:5248
5475
  msgid ""
5476
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5477
  "AdSense)"
5480
  "AdSense)"
5481
 
5482
  #. translators: %s HTML tags
5483
+ #: settings.php:5249
5484
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5485
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
5486
 
5487
  #. translators: %s HTML tags
5488
+ #: settings.php:5250
5489
  msgid "%s Public web reports %s for clients, export to PDF"
5490
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
5491
 
5492
  #. translators: %s HTML tags
5493
+ #: settings.php:5251
5494
  msgid "Support for %s A/B testing %s"
5495
  msgstr "Podpora za %s A/B testiranje %s"
5496
 
5497
  #. translators: %s HTML tags
5498
+ #: settings.php:5252
5499
  msgid "Frequency capping - %s limit impressions or clicks %s"
5500
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
5501
 
5502
  #. translators: %s HTML tags
5503
+ #: settings.php:5253
5504
  msgid "Click fraud %s protection %s"
5505
  msgstr "%s Zaščita %s pred goljufijo s kliki"
5506
 
5507
  #. translators: %s HTML tags
5508
+ #: settings.php:5254
5509
  msgid "Support for %s lazy loading %s"
5510
  msgstr "Podpora za %s leno nalaganje %s"
5511
 
5512
  #. translators: %s HTML tags
5513
+ #: settings.php:5255
5514
  msgid "Support for ads on %s AMP pages %s"
5515
  msgstr "Podpora za oglase na %s AMP straneh %s"
5516
 
5517
  #. translators: %s HTML tags
5518
+ #: settings.php:5256
5519
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5520
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
5521
 
5522
  #. translators: %s HTML tags
5523
+ #: settings.php:5257
5524
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5525
  msgstr ""
5526
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
5527
 
5528
  #. translators: %s HTML tags
5529
+ #: settings.php:5259
5530
  msgid "%s Banner %s code generator"
5531
  msgstr "Generator kode za %s pasice %s"
5532
 
5533
  #. translators: %s HTML tags
5534
+ #: settings.php:5260
5535
  msgid "Support for %s header and footer %s code"
5536
  msgstr "Podpora za kodo v %s glavi in nogi %s"
5537
 
5538
  #. translators: %s HTML tags
5539
+ #: settings.php:5261
5540
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5541
  msgstr ""
5542
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
5543
 
5544
  #. translators: %s HTML tags
5545
+ #: settings.php:5262
5546
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5547
  msgstr ""
5548
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
5549
  "strežnika"
5550
 
5551
  #. translators: %s HTML tags
5552
+ #: settings.php:5263
5553
  msgid "Client-side %s mobile device detection %s (works with caching)"
5554
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
5555
 
5556
  #. translators: %s HTML tags
5557
+ #: settings.php:5264
5558
  msgid ""
5559
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5560
  "protection"
5563
  "vsebine"
5564
 
5565
  #. translators: %s HTML tags
5566
+ #: settings.php:5265
5567
  msgid "%s Ad blocking statistics %s"
5568
  msgstr "%s Statistika blokiranja oglasov %s"
5569
 
5570
  #. translators: %s HTML tags
5571
+ #: settings.php:5266
5572
  msgid ""
5573
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5574
  "referrers, operating systems, browsers"
5577
  "prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
5578
 
5579
  #. translators: %s HTML tags
5580
+ #: settings.php:5267
5581
  msgid ""
5582
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5583
  msgstr ""
5584
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
5585
 
5586
  #. translators: %s HTML tags
5587
+ #: settings.php:5268
5588
  msgid "%s Multisite options %s to limit settings on the sites"
5589
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
5590
 
5591
  #. translators: %s HTML tags
5592
+ #: settings.php:5269
5593
  msgid "%s Import/Export %s block or plugin settings"
5594
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
5595
 
5596
  #. translators: %s HTML tags
5597
+ #: settings.php:5270
5598
  msgid "%s Insertion scheduling %s with fallback option"
5599
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
5600
 
5601
  #. translators: %s HTML tags
5602
+ #: settings.php:5271
5603
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5604
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
5605
 
5606
  #. translators: %s HTML tags
5607
+ #: settings.php:5272
5608
  msgid "Simple troubleshooting with many %s debugging functions %s"
5609
  msgstr ""
5610
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
5611
 
5612
  #. translators: %s HTML tags
5613
+ #: settings.php:5273
5614
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5615
  msgstr ""
5616
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
5617
 
5618
  #. translators: %s HTML tags
5619
+ #: settings.php:5274
5620
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5621
  msgstr ""
5622
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
5623
 
5624
  #. translators: %s HTML tags
5625
+ #: settings.php:5275
5626
  msgid ""
5627
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5628
  msgstr ""
5629
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
5630
 
5631
  #. translators: %s HTML tags
5632
+ #: settings.php:5276
5633
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5634
  msgstr ""
5635
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5636
 
5637
  #. translators: %s HTML tags
5638
+ #: settings.php:5277
5639
  msgid "No ads on the settings page"
5640
  msgstr "Stran z nastavitvami brez oglasov"
5641
 
5642
  #. translators: %s HTML tags
5643
+ #: settings.php:5278
5644
  msgid "Premium support"
5645
  msgstr "Vrhunska podpora"
5646
 
5647
  #. translators: %s HTML tags
5648
+ #: settings.php:5281
5649
  msgid ""
5650
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5651
  "website with many advertising features to automatically insert adverts on "
5672
  "bodo ohranile)."
5673
 
5674
  #. translators: %s HTML tags
5675
+ #: settings.php:5294
5676
  msgid "Looking for %s Pro Ad Management plugin? %s"
5677
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5678
 
5679
  #. translators: %s HTML tags
5680
+ #: settings.php:5299
5681
  msgid "Ads between posts"
5682
  msgstr "Oglasi med prispevki"
5683
 
5684
  #. translators: %s HTML tags
5685
+ #: settings.php:5300
5686
  msgid "Ads between comments"
5687
  msgstr "Oglasi med komentarji"
5688
 
5689
  #. translators: %s HTML tags
5690
+ #: settings.php:5301
5691
  msgid "Support via email"
5692
  msgstr "Podpora prek elektronske pošte"
5693
 
5694
  #. translators: %s HTML tags
5695
+ #: settings.php:5307
5696
  msgid "%s Sticky positions %s"
5697
  msgstr "%s Lepljivi položaji %s"
5698
 
5699
  #. translators: %s HTML tags
5700
+ #: settings.php:5308
5701
  msgid "%s Limit insertions %s"
5702
  msgstr "%s Omeji vstavljanja %s"
5703
 
5704
  #. translators: %s HTML tags
5705
+ #: settings.php:5309
5706
  msgid "%s Clearance %s options"
5707
  msgstr "Možnosti %s izogibanja %s"
5708
 
5709
  #. translators: %s HTML tags
5710
+ #: settings.php:5315
5711
  msgid "Ad rotation"
5712
  msgstr "Vrtenje oglasov"
5713
 
5714
  #. translators: %s HTML tags
5715
+ #: settings.php:5316
5716
  msgid "%s A/B testing %s"
5717
  msgstr "%s A/B testiranje %s"
5718
 
5719
  #. translators: %s HTML tags
5720
+ #: settings.php:5317
5721
  msgid "%s Ad tracking %s"
5722
  msgstr "%s Sledenje oglasom %s"
5723
 
5724
  #. translators: %s HTML tags
5725
+ #: settings.php:5323
5726
  msgid "Support for %s AMP pages %s"
5727
  msgstr "Podpora za %s AMP strani %s"
5728
 
5729
  #. translators: %s HTML tags
5730
+ #: settings.php:5324
5731
  msgid "%s Ad blocking detection %s"
5732
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5733
 
5734
  #. translators: %s HTML tags
5735
+ #: settings.php:5325
5736
  msgid "%s Mobile device detection %s"
5737
  msgstr "%s Zaznavanje mobilne naprave %s"
5738
 
5739
  #. translators: %s HTML tags
5740
+ #: settings.php:5332
5741
  msgid "64 code blocks"
5742
  msgstr "64 kodnih blokov"
5743
 
5744
  #. translators: %s HTML tags
5745
+ #: settings.php:5333
5746
  msgid "%s GEO targeting %s"
5747
  msgstr "%s GEO ciljanje %s"
5748
 
5749
  #. translators: %s HTML tags
5750
+ #: settings.php:5334
5751
  msgid "%s Scheduling %s"
5752
  msgstr "%s Urnik %s"
5753
 
5950
  msgstr "Sredinska"
5951
 
5952
  #: strings.php:66
5953
+ msgctxt "position"
5954
+ msgid "Center"
5955
+ msgstr "Sredinski"
5956
+
5957
+ #: strings.php:67
5958
  msgctxt "alignment"
5959
  msgid "Float left"
5960
  msgstr "Plavajoča levo"
5961
 
5962
+ #: strings.php:68
5963
  msgctxt "alignment"
5964
  msgid "Float right"
5965
  msgstr "Plavajoča desno"
5966
 
5967
+ #: strings.php:69
5968
  msgctxt "alignment"
5969
  msgid "No wrapping"
5970
  msgstr "Brez ovijanja"
5971
 
5972
+ #: strings.php:70
5973
  msgid "Custom CSS"
5974
  msgstr "CSS po meri"
5975
 
5976
+ #: strings.php:71
5977
  msgid "Sticky left"
5978
  msgstr "Lepljiv levo"
5979
 
5980
+ #: strings.php:72
5981
  msgid "Sticky right"
5982
  msgstr "Lepljiv desno"
5983
 
5984
+ #: strings.php:73
5985
  msgid "Sticky top"
5986
  msgstr "Lepljiv zgoraj"
5987
 
5988
+ #: strings.php:74
5989
  msgid "Sticky bottom"
5990
  msgstr "Lepljiv spodaj"
5991
 
5992
+ #: strings.php:75
5993
  msgctxt "alignment"
5994
  msgid "Sticky"
5995
  msgstr "Lepljiva"
5996
 
5997
+ #: strings.php:77
5998
  msgctxt "using"
5999
  msgid "auto counter"
6000
  msgstr "samodejnega števca"
6001
 
6002
+ #: strings.php:78
6003
  msgctxt "using"
6004
  msgid "PHP function calls counter"
6005
  msgstr "števca klicev PHP funkcije"
6006
 
6007
+ #: strings.php:79
6008
  msgctxt "using"
6009
  msgid "content processing counter"
6010
  msgstr "števca procesiranja vsebine"
6011
 
6012
+ #: strings.php:80
6013
  msgctxt "using"
6014
  msgid "excerpt processing counter"
6015
  msgstr "števca procesiranja izvlečkov"
6016
 
6017
+ #: strings.php:81
6018
  msgctxt "using"
6019
  msgid "before post processing counter"
6020
  msgstr "števca pred prispevkom"
6021
 
6022
+ #: strings.php:82
6023
  msgctxt "using"
6024
  msgid "after post processing counter"
6025
  msgstr "števca za prispevkom"
6026
 
6027
+ #: strings.php:83
6028
  msgctxt "using"
6029
  msgid "widget drawing counter"
6030
  msgstr "števca risanja gradnikov"
6031
 
6032
+ #: strings.php:84
6033
  msgctxt "using"
6034
  msgid "subpages counter"
6035
  msgstr "števca podstrani"
6036
 
6037
+ #: strings.php:85
6038
  msgctxt "using"
6039
  msgid "posts counter"
6040
  msgstr "števca prispevkov"
6041
 
6042
+ #: strings.php:86
6043
  msgctxt "using"
6044
  msgid "paragraphs counter"
6045
  msgstr "števca odstavkov"
6046
 
6047
+ #: strings.php:87
6048
  msgctxt "using"
6049
  msgid "comments counter"
6050
  msgstr "števca komentarjev"
6051
 
6052
+ #: strings.php:88
6053
  msgctxt "using"
6054
  msgid "images counter"
6055
  msgstr "števca slik"
6056
 
6057
+ #: strings.php:91
6058
  msgctxt "posts"
6059
  msgid "Individually disabled"
6060
  msgstr "Posamezno onemogočeni"
6061
 
6062
+ #: strings.php:92
6063
  msgctxt "posts"
6064
  msgid "Individually enabled"
6065
  msgstr "Posamezno omogočeni"
6066
 
6067
+ #: strings.php:94
6068
  msgctxt "static pages"
6069
  msgid "Individually disabled"
6070
  msgstr "Posamezno onemogočene"
6071
 
6072
+ #: strings.php:95
6073
  msgctxt "static pages"
6074
  msgid "Individually enabled"
6075
  msgstr "Posamezno omogočene"
6076
 
6077
+ #: strings.php:97
6078
  msgid "Server-side"
6079
  msgstr "Na strani strežnika"
6080
 
6081
+ #: strings.php:98
6082
  msgctxt "Insertion"
6083
  msgid "Client-side"
6084
  msgstr "Na strani odjemalca"
6085
 
6086
+ #: strings.php:99
6087
  msgctxt "Dynamic blocks"
6088
  msgid "Client-side show"
6089
  msgstr "Prikaži na strani odjemalca"
6090
 
6091
+ #: strings.php:100
6092
  msgctxt "Dynamic blocks"
6093
  msgid "Client-side insert"
6094
  msgstr "Vstavi na strani odjemalca"
6095
 
6096
+ #: strings.php:101
6097
  msgctxt "Insertion"
6098
  msgid "Server-side using W3 Total Cache"
6099
  msgstr "Na strani strežnika z uporabo W3 Total Cache"
6100
 
6101
+ #: strings.php:107
6102
  msgid "Replace element"
6103
  msgstr "Nadomesti element"
6104
 
6105
+ #: strings.php:109
6106
  msgid "desktop devices"
6107
  msgstr "namizne naprave"
6108
 
6109
+ #: strings.php:110
6110
  msgid "mobile devices"
6111
  msgstr "mobilne naprave"
6112
 
6113
+ #: strings.php:111
6114
  msgid "tablet devices"
6115
  msgstr "tablične naprave"
6116
 
6117
+ #: strings.php:112
6118
  msgid "phone devices"
6119
  msgstr "telefonske naprave"
6120
 
6121
+ #: strings.php:113
6122
  msgid "desktop and tablet devices"
6123
  msgstr "namizne in telefonske naprave"
6124
 
6125
+ #: strings.php:114
6126
  msgid "desktop and phone devices"
6127
  msgstr "tablične in telefonske naprave"
6128
 
6129
+ #: strings.php:116
6130
  msgid "Stick to the left"
6131
  msgstr "Lepljiv na levi"
6132
 
6133
+ #: strings.php:117
6134
  msgid "Stick to the content left"
6135
  msgstr "Lepljiv na vsebino levo"
6136
 
6137
+ #: strings.php:118
6138
  msgid "Stick to the content right"
6139
  msgstr "Lepljiv na vsebino desno"
6140
 
6141
+ #: strings.php:119
6142
  msgid "Stick to the right"
6143
  msgstr "Lepljiv na desni"
6144
 
6145
+ #: strings.php:121
6146
  msgid "Stick to the top"
6147
  msgstr "Lepljiv na vrh"
6148
 
6149
+ #: strings.php:122
6150
  msgid "Scroll with the content"
6151
  msgstr "Pomikaj z vsebino"
6152
 
6153
+ #: strings.php:123
6154
  msgid "Stick to the bottom"
6155
  msgstr "Lepljiv na dno"
6156
 
6157
+ #: strings.php:125
6158
  msgid "Fade"
6159
  msgstr "Uveni"
6160
 
6161
+ #: strings.php:126
6162
  msgid "Slide"
6163
  msgstr "Drsaj"
6164
 
6165
+ #: strings.php:127
6166
  msgid "Slide and Fade"
6167
  msgstr "Drsaj in Uveni"
6168
 
6169
+ #: strings.php:128
6170
  msgid "Flip"
6171
  msgstr "Zavrti"
6172
 
6173
+ #: strings.php:129
6174
  msgid "Zoom In"
6175
  msgstr "Približaj"
6176
 
6177
+ #: strings.php:130
6178
  msgid "Zoom Out"
6179
  msgstr "Oddalji"
6180
 
6181
+ #: strings.php:131
6182
  msgid "Turn"
6183
  msgstr "Obrni"
6184
 
6185
+ #: strings.php:133
6186
  msgid "Page loaded"
6187
  msgstr "Stran naložena"
6188
 
6189
+ #: strings.php:134
6190
  msgid "Page scrolled (%)"
6191
  msgstr "Stran pomaknjena (%)"
6192
 
6193
+ #: strings.php:135
6194
  msgid "Page scrolled (px)"
6195
  msgstr "Stran pomaknjena (px)"
6196
 
6197
+ #: strings.php:136
6198
  msgid "Element visible"
6199
  msgstr "Element viden"
6200
 
6201
+ #: strings.php:138
6202
+ msgctxt "image repeat"
6203
+ msgid "Default"
6204
+ msgstr "Privzeto"
6205
+
6206
+ #: strings.php:139
6207
+ msgid "No"
6208
+ msgstr "Ne"
6209
+
6210
+ #: strings.php:140
6211
+ msgid "Yes"
6212
+ msgstr "Da"
6213
+
6214
+ #: strings.php:141
6215
+ msgid "Horizontally"
6216
+ msgstr "Vodoravno"
6217
+
6218
+ #: strings.php:142
6219
+ msgid "Vertically"
6220
+ msgstr "Navpično"
6221
+
6222
+ #: strings.php:143
6223
+ msgid "Space"
6224
+ msgstr "Prostor"
6225
+
6226
+ #: strings.php:144
6227
+ msgid "Round"
6228
+ msgstr "Zaokroženo"
6229
+
6230
+ #: strings.php:146
6231
+ msgctxt "image size"
6232
+ msgid "Default"
6233
+ msgstr "Privzeta"
6234
+
6235
+ #: strings.php:147
6236
+ msgid "Cover"
6237
+ msgstr "Pokrij"
6238
+
6239
+ #: strings.php:148
6240
+ msgctxt "image size"
6241
+ msgid "Fit"
6242
+ msgstr "Prilagodi"
6243
+
6244
+ #: strings.php:149
6245
+ msgid "Fill"
6246
+ msgstr "Zapolni"
6247
+
6248
+ #: strings.php:151
6249
  msgid "Insert immediately"
6250
  msgstr "Vstavi takoj"
6251
 
6252
+ #: strings.php:152
6253
  msgid "Delay insertion"
6254
  msgstr "Zakasni vstavljanje"
6255
 
6256
+ #: strings.php:153
6257
  msgid "Insert between dates"
6258
  msgstr "Vstavi med datumoma"
6259
 
6260
+ #: strings.php:154
6261
  msgid "Insert outside dates"
6262
  msgstr "Vstavi izven datumov"
6263
 
6264
+ #: strings.php:155
6265
  msgid "Insert only"
6266
  msgstr "Vstavi samo"
6267
 
6268
+ #: strings.php:156
6269
  msgid "Insert for posts published between dates"
6270
  msgstr "Vstavi samo za prispevke objavljene med datumoma"
6271
 
6272
+ #: strings.php:157
6273
  msgid "Insert for posts published outside dates"
6274
  msgstr "Vstavi samo za prispevke objavljene izven datumov"
6275
 
6276
+ #: strings.php:159
6277
  msgctxt "functions"
6278
  msgid "Standard"
6279
  msgstr "Običajne"
6280
 
6281
+ #: strings.php:160
6282
  msgctxt "detection"
6283
  msgid "Standard"
6284
  msgstr "Običajno"
6285
 
6286
+ #: strings.php:161
6287
  msgctxt "functions"
6288
  msgid "Multibyte"
6289
  msgstr "Večznakovne"
6290
 
6291
+ #: strings.php:163
6292
  msgctxt "action"
6293
  msgid "None"
6294
  msgstr "Nobena"
6295
 
6296
+ #: strings.php:164
6297
  msgctxt "button"
6298
  msgid "None"
6299
  msgstr "Noben"
6300
 
6301
+ #: strings.php:165
6302
  msgid "Popup Message"
6303
  msgstr "Pojavno Sporočilo"
6304
 
6305
+ #: strings.php:166
6306
  msgid "Redirection"
6307
  msgstr "Preusmeritev"
6308
 
6309
+ #: strings.php:168
6310
  msgid "Do nothing"
6311
  msgstr "Ne naredi ničesar"
6312
 
6313
+ #: strings.php:170
6314
  msgctxt "Action when ad blocking detected"
6315
  msgid "Show"
6316
  msgstr "Pokaži"
6317
 
6318
+ #: strings.php:171
6319
  msgctxt "Action when ad blocking detected"
6320
  msgid "Hide"
6321
  msgstr "Skrij"
6322
 
6323
+ #: strings.php:173
6324
  msgctxt "tracking"
6325
  msgid "Internal"
6326
  msgstr "Interno"
6327
 
6328
+ #: strings.php:174
6329
  msgctxt "detection"
6330
  msgid "Advanced"
6331
  msgstr "Napredno"
6332
 
6333
+ #: strings.php:177
6334
  msgctxt "Manual loading"
6335
  msgid "Auto"
6336
  msgstr "Samodejno"
6337
 
6338
+ #: strings.php:178
6339
  msgctxt "Manual loading"
6340
  msgid "Always"
6341
  msgstr "Vedno"
6342
 
6343
+ #: strings.php:180
6344
  msgid "Top right"
6345
  msgstr "Zgoraj desno"
6346
 
6347
+ #: strings.php:181
6348
  msgid "Top left"
6349
  msgstr "Zgoraj levo"
6350
 
6351
+ #: strings.php:182
6352
  msgid "Bottom right"
6353
  msgstr "Spodaj desno"
6354
 
6355
+ #: strings.php:183
6356
  msgid "Bottom left"
6357
  msgstr "Spodaj levo"
6358
 
6359
+ #: strings.php:185
6360
  msgctxt "AdSense Ad Type"
6361
  msgid "Standard"
6362
  msgstr "Običajni"
6363
 
6364
+ #: strings.php:186
6365
  msgctxt "AdSense Ad Type"
6366
  msgid "Link"
6367
  msgstr "Povezave"
6368
 
6369
+ #: strings.php:187
6370
  msgctxt "AdSense Ad Type"
6371
  msgid "In-article"
6372
  msgstr "V članku"
6373
 
6374
+ #: strings.php:188
6375
  msgctxt "AdSense Ad Type"
6376
  msgid "In-feed"
6377
  msgstr "V viru"
6378
 
6379
+ #: strings.php:189
6380
  msgctxt "AdSense Ad Type"
6381
  msgid "Matched content"
6382
  msgstr "Prilagojena vsebina"
6383
 
6384
+ #: strings.php:190
6385
  msgctxt "AdSense Ad Type"
6386
  msgid "Auto Ads"
6387
  msgstr "Samodejni"
6388
 
6389
+ #: strings.php:191
6390
  msgctxt "AdSense Ad Type"
6391
  msgid "AMP Only"
6392
  msgstr "Samo AMP"
6393
 
6394
+ #: strings.php:193
6395
  msgctxt "AMP ad"
6396
  msgid "Disabled"
6397
  msgstr "Onemogočen"
6398
 
6399
+ #: strings.php:194
6400
  msgid "Above the fold"
6401
  msgstr "Nad pregibom"
6402
 
6403
+ #: strings.php:195
6404
  msgid "Below the fold"
6405
  msgstr "Pod pregibom"
6406
 
6407
+ #: strings.php:196
6408
  msgctxt "AMP ad"
6409
  msgid "Sticky"
6410
  msgstr "Lepljiv"
6411
 
6412
+ #: strings.php:198
6413
  msgctxt "size"
6414
  msgid "Fixed"
6415
  msgstr "Fiksna"
6416
 
6417
+ #: strings.php:199
6418
  msgctxt "size"
6419
  msgid "Responsive"
6420
  msgstr "Odzivna"
6421
 
6422
+ #: strings.php:200
6423
  msgctxt "size"
6424
  msgid "Fixed by viewport"
6425
  msgstr "Fiksna glede na pogled"
6426
 
6427
+ #: strings.php:204
6428
  msgid "Impressions and clicks"
6429
  msgstr "Prikazi in Kliki"
6430
 
6431
+ #: strings.php:205
6432
  msgid "Advanced WordPress Ad Management Plugin"
6433
  msgstr "Napredni WordPress Vtičnik za Upravljanje z Oglasi"
6434
 
6435
+ #: strings.php:211
6436
  msgctxt "Button"
6437
  msgid "Hide"
6438
  msgstr "Skrij"
6439
 
6440
+ #: strings.php:212
6441
  msgctxt "Button"
6442
  msgid "Show"
6443
  msgstr "Pokaži"
6444
 
6445
+ #: strings.php:213
6446
  msgid "Insertion expired"
6447
  msgstr "Vstavljanje poteklo"
6448
 
6449
+ #: strings.php:214
6450
  msgid "Duration"
6451
  msgstr "Trajanje"
6452
 
6453
+ #: strings.php:215
6454
  msgid "Invalid end date - must be after start date"
6455
  msgstr "Neveljaven končni datum - mora biti za začetnim datumom"
6456
 
6457
+ #: strings.php:216
6458
  msgid "Invalid start date - only data for 1 year back is available"
6459
  msgstr "Neveljaven začetni datum - na voljo so samo pdatki za 1 leto nataj"
6460
 
6461
+ #: strings.php:217
6462
  msgid "Invalid date range - only data for 1 year can be displayed"
6463
  msgstr ""
6464
  "Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
6465
 
6466
+ #: strings.php:225
6467
  msgid "Delete"
6468
  msgstr "Pobriši"
6469
 
6470
+ #: strings.php:226
6471
  msgid "Switch"
6472
  msgstr "Preklopi"
6473
 
6474
+ #: strings.php:228
6475
+ msgid "OK"
6476
+ msgstr "V redu"
6477
+
6478
+ #: strings.php:229
6479
  msgid "Delete all statistics data?"
6480
  msgstr "Pobrišem vse podatke o statistiki?"
6481
 
6482
+ #: strings.php:230
6483
+ msgid ""
6484
+ "Rotation code editor active. Click on the rotation button to generate code."
6485
+ msgstr ""
6486
+ "Aktiven je urejevalnik kode za rotacijo. Kliknite na gumb za rotacijo za "
6487
+ "generiranje kode."
6488
+
6489
  #. translators: %s: dates
6490
+ #: strings.php:233
6491
  msgid "Delete statistics data between %s and %s?"
6492
  msgstr "Pobrišem podatke o statistiki med %s in %s?"
6493
 
6494
+ #: strings.php:234
6495
  msgid "Cancel block order rearrangement"
6496
  msgstr "Prekliči preureditev vrstnega reda blokov"
6497
 
6498
+ #: strings.php:236
6499
  msgid "downloading..."
6500
  msgstr "prenašam..."
6501
 
6502
+ #: strings.php:237
6503
  msgid "download error"
6504
  msgstr "napaka pri prenosu"
6505
 
6506
+ #: strings.php:238
6507
  msgid "update error"
6508
  msgstr "napaka pri posodobitvi"
6509
 
6510
+ #: strings.php:239
6511
  msgid "Updating..."
6512
  msgstr "Posodabljam..."
6513
 
6514
+ #: strings.php:241
6515
  msgid "ERROR"
6516
  msgstr "NAPAKA"
6517
 
6518
+ #: strings.php:242
6519
  msgid "Error reloading settings"
6520
  msgstr "Napaka pri nalaganju nastavitev"
6521
 
6522
+ #: strings.php:244
6523
  msgctxt "Search field placeholder"
6524
  msgid "Search..."
6525
  msgstr "Išči..."
6526
 
6527
+ #: strings.php:245
6528
  msgctxt "Search field placeholder"
6529
  msgid "Filter..."
6530
  msgstr "Filter..."
6531
 
6532
+ #: strings.php:246
6533
  msgid "Use filter to limit names in the list"
6534
  msgstr "Uporabite filter za omejitev imen v seznamu"
6535
 
6536
+ #: strings.php:247
6537
  msgctxt "Button"
6538
  msgid "Filter"
6539
  msgstr "Filter"
6540
 
6541
+ #: strings.php:249
6542
  msgid "Position not available"
6543
  msgstr "Položaj ni na razpolago"
6544
 
6545
+ #: strings.php:250
6546
  msgid ""
6547
  "Theme check | Selected position for automatic insertion might not be not "
6548
  "available on this page type"
6550
  "Preverjanje teme | Izbran položaj za samodejno vstavljanje mogoče ni na "
6551
  "razpolago na tem tipu strani"
6552
 
6553
+ #: strings.php:251
6554
  msgid "Position available"
6555
  msgstr "Položaj na razpolago"
6556
 
6557
+ #: strings.php:253
6558
  msgid "Select or upload banner image"
6559
  msgstr "Izberi ali naloži sliko pasice"
6560
 
6561
+ #: strings.php:254
6562
  msgid "Use this image"
6563
  msgstr "Uporabi to sliko"
6564
 
6565
+ #: strings.php:255
6566
  msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
6567
  msgstr ""
6568
  "Preklop na fizično datoteko ads.txt bo izbrisal navidezno datoreko ads.txt."
6569
 
6570
+ #: strings.php:257
6571
  msgctxt "Monday"
6572
  msgid "MO"
6573
  msgstr "PO"
6574
 
6575
+ #: strings.php:258
6576
  msgctxt "Tuesday"
6577
  msgid "TU"
6578
  msgstr "TO"
6579
 
6580
+ #: strings.php:259
6581
  msgctxt "Wednesday"
6582
  msgid "WE"
6583
  msgstr "SR"
6584
 
6585
+ #: strings.php:260
6586
  msgctxt "Thursday"
6587
  msgid "TH"
6588
  msgstr "ČE"
6589
 
6590
+ #: strings.php:261
6591
  msgctxt "Friday"
6592
  msgid "FR"
6593
  msgstr "PE"
6594
 
6595
+ #: strings.php:262
6596
  msgctxt "Saturday"
6597
  msgid "SA"
6598
  msgstr "SO"
6599
 
6600
+ #: strings.php:263
6601
  msgctxt "Sunday"
6602
  msgid "SU"
6603
  msgstr "NE"
6604
 
6605
+ #: strings.php:279
6606
  msgctxt "Scheduling"
6607
  msgid "FALLBACK"
6608
  msgstr "REZERVA"
6609
 
6610
+ #: strings.php:280
6611
  msgid "Automatically placed by AdSense Auto ads code"
6612
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
6613
 
6614
+ #: strings.php:285
6615
  msgid "Add"
6616
  msgstr "Dodaj"
6617
 
6618
+ #: strings.php:286
6619
  msgctxt "Element"
6620
  msgid "Parent"
6621
  msgstr "Nadrejeni"
6622
 
6623
+ #: strings.php:287
6624
  msgid "Cancel element selection"
6625
  msgstr "Prekliči izbor HTML elementa"
6626
 
6627
+ #: strings.php:288
6628
  msgid "Select parent element"
6629
  msgstr "Izberi nadrejeni element"
6630
 
6631
+ #: strings.php:289
6632
  msgid "CSS selector"
6633
  msgstr "CSS selektor"
6634
 
6635
+ #: strings.php:290
6636
  msgid "Use current selector"
6637
  msgstr "Uporabi trenutni selektor"
6638
 
6639
+ #: strings.php:291
6640
  msgid "ELEMENT"
6641
  msgstr "ELEMENT"
6642
 
6643
+ #: strings.php:292
6644
  msgid "PATH"
6645
  msgstr "POT"
6646
 
6647
+ #: strings.php:293
6648
  msgid "SELECTOR"
6649
  msgstr "SELEKTOR"
6650
 
6656
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
6657
  "na optimalna mesta"
6658
 
6659
+ #~ msgctxt "image size"
6660
+ #~ msgid "Contain"
6661
+ #~ msgstr "Vsebovano"
6662
+
6663
  #~ msgid "Maximize your revenue!"
6664
  #~ msgstr "Povečajte svoj prihodek!"
6665
 
6888
  #~ msgid "Paragraphs"
6889
  #~ msgstr "Odstavki"
6890
 
 
 
 
6891
  #~ msgid "Excerpts"
6892
  #~ msgstr "Izvlečki"
6893
 
languages/ad-inserter.pot CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.6.7\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2020-04-07 13:55:50+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,474 +12,474 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: ad-inserter.php:390
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
- #: ad-inserter.php:406
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
- #: ad-inserter.php:413
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
- #: ad-inserter.php:498
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
- #: ad-inserter.php:505
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
- #: ad-inserter.php:514
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
- #: ad-inserter.php:521
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
- #: ad-inserter.php:532
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
- #: ad-inserter.php:539
56
  msgctxt "Menu item"
57
  msgid "Show Log"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name Before HTML element
61
- #: ad-inserter.php:1163
62
  msgid "Before"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name After HTML element
66
- #: ad-inserter.php:1168
67
  msgid "After"
68
  msgstr ""
69
 
70
  #. translators: Debugging position name Prepend content of HTML element (before
71
  #. the content of the HTML element)
72
- #: ad-inserter.php:1173 strings.php:103
73
  msgid "Prepend content"
74
  msgstr ""
75
 
76
  #. translators: Debugging position name Append content of HTML element (after
77
  #. the content of the HTML element)
78
- #: ad-inserter.php:1178 strings.php:104
79
  msgid "Append content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace content of HTML element
83
- #: ad-inserter.php:1183 strings.php:105
84
  msgid "Replace content"
85
  msgstr ""
86
 
87
  #. translators: Debugging position name Replace HTML element
88
- #: ad-inserter.php:1188 strings.php:155
89
  msgid "Replace"
90
  msgstr ""
91
 
92
  #. translators: Debugging message when output buffering is enabled
93
- #: ad-inserter.php:1235
94
  msgid "OUTPUT BUFFERING"
95
  msgstr ""
96
 
97
  #. translators: Debugging position
98
- #: ad-inserter.php:1239
99
  msgid "Above Header"
100
  msgstr ""
101
 
102
- #: ad-inserter.php:1534
103
  msgctxt "Menu item"
104
  msgid "Log In"
105
  msgstr ""
106
 
107
  #. translators: %s: Ad Inserter
108
- #: ad-inserter.php:1869 ad-inserter.php:2964
109
  msgid "%s Settings"
110
  msgstr ""
111
 
112
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
113
- #: ad-inserter.php:2355
114
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
115
  msgstr ""
116
 
117
- #: ad-inserter.php:2355
118
  msgid "NO ACTION"
119
  msgstr ""
120
 
121
- #: ad-inserter.php:2356
122
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
123
  msgstr ""
124
 
125
- #: ad-inserter.php:2357
126
  msgid "AD BLOCKING DETECTED - ACTION"
127
  msgstr ""
128
 
129
- #: ad-inserter.php:2358
130
  msgid "AD BLOCKING NOT DETECTED"
131
  msgstr ""
132
 
133
- #: ad-inserter.php:2359
134
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
135
  msgstr ""
136
 
137
- #: ad-inserter.php:2360
138
  msgid "AD BLOCKING DETECTED - NO ACTION"
139
  msgstr ""
140
 
141
  #. Translators: 1: number of blocks, 2: Ad Inserter
142
- #: ad-inserter.php:2659
143
  msgid "Hey, you are now using %1$s %2$s block."
144
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
145
  msgstr[0] ""
146
  msgstr[1] ""
147
 
148
- #: ad-inserter.php:2662
149
  msgid "Please help me to solve a problem first"
150
  msgstr ""
151
 
152
- #: ad-inserter.php:2666
153
  msgid "Maybe later"
154
  msgstr ""
155
 
156
  #. Translators: %s: Ad Inserter
157
- #: ad-inserter.php:2671
158
  msgid "Hey, you are using %s and I hope you're happy with it."
159
  msgstr ""
160
 
161
- #: ad-inserter.php:2674
162
  msgid "OK, but please help me with the settings first"
163
  msgstr ""
164
 
165
- #: ad-inserter.php:2687
166
  msgid ""
167
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
168
  "like saying 'Thank you'. Somebody will be happy."
169
  msgstr ""
170
 
171
- #: ad-inserter.php:2689
172
  msgid ""
173
  "Positive reviews are a great incentive to fix bugs and to add new features "
174
  "for better monetization of your website."
175
  msgstr ""
176
 
177
- #: ad-inserter.php:2695
178
  msgid "Sure"
179
  msgstr ""
180
 
181
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
182
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
183
- #: ad-inserter.php:2712 ad-inserter.php:2747
184
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
185
  msgstr ""
186
 
187
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
188
- #: ad-inserter.php:2719
189
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
190
  msgstr ""
191
 
192
- #: ad-inserter.php:2729
193
  msgctxt "Menu item"
194
  msgid "Settings"
195
  msgstr ""
196
 
197
- #: ad-inserter.php:2761
198
  msgid ""
199
  "Load settings page in safe mode to avoid collisions with other plugins or "
200
  "theme"
201
  msgstr ""
202
 
203
- #: ad-inserter.php:2761
204
  msgid "Safe mode"
205
  msgstr ""
206
 
207
  #. translators: %s: Ad Inserter
208
- #: ad-inserter.php:2856
209
  msgctxt "Meta box name"
210
  msgid "%s Individual Exceptions"
211
  msgstr ""
212
 
213
- #: ad-inserter.php:2885 ad-inserter.php:10073 class.php:2123
214
- #: includes/preview.php:2003 includes/preview.php:2046
215
- #: includes/preview.php:2083 settings.php:4257 strings.php:3
216
  msgid "Block"
217
  msgstr ""
218
 
219
- #: ad-inserter.php:2886 settings.php:4258 settings.php:4343
220
  msgid "Name"
221
  msgstr ""
222
 
223
- #: ad-inserter.php:2889 settings.php:1178
224
  msgid "Default insertion"
225
  msgstr ""
226
 
227
  #. translators: For this post or page
228
- #: ad-inserter.php:2892
229
  msgctxt "Page"
230
  msgid "For this"
231
  msgstr ""
232
 
233
- #: ad-inserter.php:2893
234
  msgctxt "Post"
235
  msgid "For this"
236
  msgstr ""
237
 
238
- #: ad-inserter.php:2905
239
  msgctxt "Enabled/disabled on all"
240
  msgid "pages"
241
  msgstr ""
242
 
243
- #: ad-inserter.php:2908
244
  msgctxt "Enabled/disabled on all"
245
  msgid "posts"
246
  msgstr ""
247
 
248
- #: ad-inserter.php:2925 ad-inserter.php:2937 strings.php:161
249
  msgid "Enabled"
250
  msgstr ""
251
 
252
  #. translators: Menu items
253
- #: ad-inserter.php:2925 ad-inserter.php:2937
254
  #: includes/functions-check-now.php:2401 includes/functions.old.php:2326
255
- #: includes/functions.php:2574 strings.php:16
256
  msgid "Disabled"
257
  msgstr ""
258
 
259
- #: ad-inserter.php:2927
260
  msgid "No individual exceptions"
261
  msgstr ""
262
 
263
  #. translators: Not enabled for pages or posts
264
- #: ad-inserter.php:2929
265
  msgid "Not enabled for"
266
  msgstr ""
267
 
268
  #. translators: No individual exceptions enabled for pages or posts
269
- #: ad-inserter.php:2957
270
  msgid "No block has individual exceptions enabled"
271
  msgstr ""
272
 
273
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
274
- #: ad-inserter.php:2962
275
  msgid ""
276
  "Default insertion can be configured for each block on %1$s page - button "
277
  "next to %2$s checkbox."
278
  msgstr ""
279
 
280
- #: ad-inserter.php:2965 settings.php:1156
281
  msgid "Tag / Archive pages"
282
  msgstr ""
283
 
284
- #: ad-inserter.php:2967
285
  msgid ""
286
  "When individual exceptions for a block are enabled, a checkbox will be "
287
  "listed here to change default insertion for this post or page."
288
  msgstr ""
289
 
290
- #: ad-inserter.php:2968
291
  msgid ""
292
  "This way you can individually enable or disable blocks on specific posts or "
293
  "pages."
294
  msgstr ""
295
 
296
- #: ad-inserter.php:2970
297
  msgid "For more information check page %s"
298
  msgstr ""
299
 
300
  #. translators: Ad Inserter Exceptions documentation page
301
- #: ad-inserter.php:2972
302
  msgid "Individual Exceptions"
303
  msgstr ""
304
 
305
- #: ad-inserter.php:3019
306
  msgid "STATIC PAGE"
307
  msgstr ""
308
 
309
- #: ad-inserter.php:3022
310
  msgid "POST"
311
  msgstr ""
312
 
313
- #: ad-inserter.php:3025
314
  msgid "HOMEPAGE"
315
  msgstr ""
316
 
317
- #: ad-inserter.php:3028
318
  msgid "CATEGORY PAGE"
319
  msgstr ""
320
 
321
- #: ad-inserter.php:3031
322
  msgid "SEARCH PAGE"
323
  msgstr ""
324
 
325
- #: ad-inserter.php:3034
326
  msgid "ARCHIVE PAGE"
327
  msgstr ""
328
 
329
- #: ad-inserter.php:3037
330
  msgid "ERROR 404 PAGE"
331
  msgstr ""
332
 
333
- #: ad-inserter.php:3040
334
  msgid "AJAX CALL"
335
  msgstr ""
336
 
337
- #: ad-inserter.php:3043
338
  msgid "UNKNOWN PAGE TYPE"
339
  msgstr ""
340
 
341
- #: ad-inserter.php:3060
342
  msgid "Click to delete ad blocking detection cokies"
343
  msgstr ""
344
 
345
- #: ad-inserter.php:3061
346
  msgid "AD BLOCKING STATUS UNKNOWN"
347
  msgstr ""
348
 
349
  #. translators: %s: AdSense Auto Ads
350
- #: ad-inserter.php:3090
351
  msgid ""
352
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
353
  "positions"
354
  msgstr ""
355
 
356
- #: ad-inserter.php:3225
357
  msgid "Code for insertion"
358
  msgstr ""
359
 
360
- #: ad-inserter.php:3225
361
  msgid "character"
362
  msgid_plural "characters"
363
  msgstr[0] ""
364
  msgstr[1] ""
365
 
366
- #: ad-inserter.php:3241
367
  msgid "Header code"
368
  msgstr ""
369
 
370
- #: ad-inserter.php:3241
371
  msgctxt "Header code"
372
  msgid "DISABLED"
373
  msgstr ""
374
 
375
- #: ad-inserter.php:3241 ad-inserter.php:3474
376
  msgid "character inserted"
377
  msgid_plural "characters inserted"
378
  msgstr[0] ""
379
  msgstr[1] ""
380
 
381
- #: ad-inserter.php:3474
382
  msgid "Footer code"
383
  msgstr ""
384
 
385
- #: ad-inserter.php:3474
386
  msgctxt "Footer code"
387
  msgid "DISABLED"
388
  msgstr ""
389
 
390
- #: ad-inserter.php:3480
391
  msgid "JAVASCRIPT NOT WORKING"
392
  msgstr ""
393
 
394
- #: ad-inserter.php:3480
395
  msgid "NO JAVASCRIPT ERRORS"
396
  msgstr ""
397
 
398
- #: ad-inserter.php:3480
399
  msgid "JAVASCRIPT ERRORS"
400
  msgstr ""
401
 
402
  #. translators: block name (block with default settings)
403
- #: ad-inserter.php:5915
404
  msgctxt "Block name"
405
  msgid "Default"
406
  msgstr ""
407
 
408
  #. translators: %s: Ad Inserter
409
- #: ad-inserter.php:6581
410
  msgid "Error importing %s settings."
411
  msgstr ""
412
 
413
- #: ad-inserter.php:6582
414
  msgid "Error importing settings for block"
415
  msgid_plural "Error importing settings for blocks:"
416
  msgstr[0] ""
417
  msgstr[1] ""
418
 
419
- #: ad-inserter.php:6635
420
  msgid "Settings saved."
421
  msgstr ""
422
 
423
  #. translators: %s: Ad Inserter
424
- #: ad-inserter.php:6637
425
  msgid "Invalid data received - %s settings not saved."
426
  msgstr ""
427
 
428
- #: ad-inserter.php:6736
429
  msgid "Settings cleared."
430
  msgstr ""
431
 
432
  #. Translators: Post/Static page must have between X and Y words
433
- #: ad-inserter.php:7112 ad-inserter.php:7114 ad-inserter.php:7137
434
- #: settings.php:2174
435
  msgid "word"
436
  msgid_plural "words"
437
  msgstr[0] ""
438
  msgstr[1] ""
439
 
440
- #: ad-inserter.php:7151 ad-inserter.php:7272
441
  msgid "HTML TAGS REMOVED"
442
  msgstr ""
443
 
444
- #: ad-inserter.php:7348
445
  msgid "BEFORE COMMENTS"
446
  msgstr ""
447
 
448
- #: ad-inserter.php:7468
449
  msgid "AFTER COMMENTS"
450
  msgstr ""
451
 
452
- #: ad-inserter.php:7543
453
  msgid "BETWEEN COMMENTS"
454
  msgstr ""
455
 
456
- #: ad-inserter.php:9381 ad-inserter.php:9464
457
  msgctxt "category name"
458
  msgid "Uncategorized"
459
  msgstr ""
460
 
461
- #: ad-inserter.php:9691
462
  msgid "requires WordPress 4.6 or newer"
463
  msgstr ""
464
 
465
- #: ad-inserter.php:9691
466
  msgid "Please update!"
467
  msgstr ""
468
 
469
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
470
  #. name with HTML tags will be added)
471
- #: ad-inserter.php:9946
472
  msgid "Thank you for installing"
473
  msgstr ""
474
 
475
  #. translators: Opt-in message: %s: HTML tags
476
- #: ad-inserter.php:9948
477
  msgid ""
478
  "We would like to %s track its usage %s on your site. This is completely "
479
  "optional and can be disabled at any time."
480
  msgstr ""
481
 
482
- #: ad-inserter.php:9950
483
  msgid ""
484
  "We don't record any sensitive data, only information regarding the WordPress "
485
  "environment and plugin usage, which will help us to make improvements to the "
@@ -487,7 +487,7 @@ msgid ""
487
  msgstr ""
488
 
489
  #. translators: Deactivation message: %s: HTML tags
490
- #: ad-inserter.php:9987
491
  msgid ""
492
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
493
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -495,57 +495,57 @@ msgid ""
495
  msgstr ""
496
 
497
  #. translators: %s: Ad Inserter
498
- #: ad-inserter.php:10031
499
  msgid "%s block."
500
  msgstr ""
501
 
502
  #. translators: widget title
503
- #: ad-inserter.php:10047 ad-inserter.php:10082
504
  msgid "Processing log"
505
  msgstr ""
506
 
507
  #. translators: widget title
508
- #: ad-inserter.php:10049 ad-inserter.php:10083
509
  msgid "Dummy widget"
510
  msgstr ""
511
 
512
  #. translators: widget title
513
- #: ad-inserter.php:10051 ad-inserter.php:10081
514
  msgid "Debugging tools"
515
  msgstr ""
516
 
517
  #. translators: block status (widget title)
518
- #: ad-inserter.php:10058
519
  msgctxt "block"
520
  msgid "PAUSED"
521
  msgstr ""
522
 
523
- #: ad-inserter.php:10059
524
  msgid "WIDGET DISABLED"
525
  msgstr ""
526
 
527
- #: ad-inserter.php:10060
528
  msgid "Unknown block"
529
  msgstr ""
530
 
531
- #: ad-inserter.php:10068 includes/functions-check-now.php:3261
532
- #: includes/functions.old.php:3186 includes/functions.php:3499
533
- #: settings.php:1208
534
  msgid "Title"
535
  msgstr ""
536
 
537
- #: ad-inserter.php:10090
538
  msgctxt "Widget"
539
  msgid "Sticky"
540
  msgstr ""
541
 
542
- #: ad-inserter.php:10139
543
  msgid ""
544
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
545
  "Inserter you need to first deactivate Ad Inserter Pro."
546
  msgstr ""
547
 
548
- #: ad-inserter.php:10140
549
  msgid ""
550
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
551
  "will clear all settings that are available only in the Pro version "
@@ -553,181 +553,181 @@ msgid ""
553
  msgstr ""
554
 
555
  #. translators: %s: Ad Inserter
556
- #: class.php:538 class.php:547 class.php:550
557
  msgid "PHP error in %s block"
558
  msgstr ""
559
 
560
- #: class.php:2073
561
  msgid "Counters"
562
  msgstr ""
563
 
564
- #: class.php:2077
565
  msgid "Content"
566
  msgstr ""
567
 
568
- #: class.php:2082
569
  msgid "Excerpt"
570
  msgstr ""
571
 
572
- #: class.php:2087 strings.php:17
573
  msgid "Before post"
574
  msgstr ""
575
 
576
- #: class.php:2092 strings.php:18
577
  msgid "After post"
578
  msgstr ""
579
 
580
- #: class.php:2097 strings.php:25
581
  msgid "Between posts"
582
  msgstr ""
583
 
584
- #: class.php:2102 settings.php:1917 settings.php:4275
585
  msgid "Widget"
586
  msgstr ""
587
 
588
- #: class.php:2107 settings.php:4273
589
  msgid "PHP function call"
590
  msgstr ""
591
 
592
  #. Translators: %s: custom hook name
593
- #: class.php:2117
594
  msgid "Custom hook %s call"
595
  msgstr ""
596
 
597
- #: class.php:2153
598
  msgid "AJAX REQUEST"
599
  msgstr ""
600
 
601
- #: class.php:2156
602
  msgid "Ajax request for block in iframe"
603
  msgstr ""
604
 
605
- #: class.php:2190
606
  msgid "Ajax request url, click to open it in a new tab"
607
  msgstr ""
608
 
609
- #: class.php:2193
610
  msgid "IN THE LOOP"
611
  msgstr ""
612
 
613
- #: class.php:2193
614
  msgid "YES"
615
  msgstr ""
616
 
617
- #: class.php:2193
618
  msgid "NO"
619
  msgstr ""
620
 
621
- #: class.php:2229
622
  msgid "BLOCK"
623
  msgstr ""
624
 
625
- #: class.php:2229
626
  msgctxt "block or widget"
627
  msgid "INSERTED BUT NOT VISIBLE"
628
  msgstr ""
629
 
630
- #: class.php:2397
631
  msgctxt "viewports"
632
  msgid "ALL"
633
  msgstr ""
634
 
635
- #: class.php:2430 class.php:2472 class.php:3745 strings.php:261
636
  msgctxt "Block"
637
  msgid "HIDDEN"
638
  msgstr ""
639
 
640
- #: class.php:2479 class.php:3748 strings.php:260
641
  msgctxt "Block"
642
  msgid "VISIBLE"
643
  msgstr ""
644
 
645
- #: class.php:2984 class.php:3054
646
  msgid "ACTIVE GROUPS"
647
  msgstr ""
648
 
649
- #: class.php:3444
650
  msgid "start='%s' end='%s' days='%s' type='%s'"
651
  msgstr ""
652
 
653
  #. translators: %s: list parameters and type
654
- #: class.php:3452
655
  msgid "parameters='%s' type='%s'"
656
  msgstr ""
657
 
658
  #. translators: %s: list parameters and type
659
- #: class.php:3454
660
  msgid "referers='%s' type='%s'"
661
  msgstr ""
662
 
663
  #. translators: %s: list parameters and type
664
- #: class.php:3456
665
  msgid "clients='%s' type='%s'"
666
  msgstr ""
667
 
668
  #. translators: %s: list parameters and type
669
- #: class.php:3628
670
  msgid "countries='%s' type='%s'"
671
  msgstr ""
672
 
673
  #. translators: %s: list parameters and type
674
- #: class.php:3630
675
  msgid "ip addresses='%s' type='%s'"
676
  msgstr ""
677
 
678
- #: class.php:3745 class.php:3748
679
  msgid "viewport='%s' type='%s'"
680
  msgstr ""
681
 
682
- #: class.php:4102 strings.php:254
683
  msgid "BEFORE"
684
  msgstr ""
685
 
686
- #: class.php:4110 strings.php:256
687
  msgid "PREPEND CONTENT"
688
  msgstr ""
689
 
690
- #: class.php:4114 strings.php:257
691
  msgid "APPEND CONTENT"
692
  msgstr ""
693
 
694
- #: class.php:4118 strings.php:258
695
  msgid "REPLACE CONTENT"
696
  msgstr ""
697
 
698
- #: class.php:4122 strings.php:259
699
  msgid "REPLACE ELEMENT"
700
  msgstr ""
701
 
702
- #: class.php:4133 strings.php:255
703
  msgid "AFTER"
704
  msgstr ""
705
 
706
- #: class.php:4218 includes/preview.php:2046 includes/preview.php:2083
707
  msgid "Code"
708
  msgstr ""
709
 
710
- #: class.php:4221
711
  msgid "for block"
712
  msgstr ""
713
 
714
- #: class.php:7886
715
  msgid ""
716
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
717
  "extension for PHP."
718
  msgstr ""
719
 
720
  #: includes/editor.php:7 includes/placeholders.php:352
721
- #: includes/preview.php:1989 strings.php:267
722
  msgid "Use"
723
  msgstr ""
724
 
725
- #: includes/editor.php:8 includes/preview.php:1990
726
  msgid "Reset"
727
  msgstr ""
728
 
729
  #: includes/editor.php:9 includes/placeholders.php:354
730
- #: includes/preview.php:1992 settings.php:3616 strings.php:213 strings.php:266
731
  msgid "Cancel"
732
  msgstr ""
733
 
@@ -736,7 +736,7 @@ msgid "Visual Code Editor"
736
  msgstr ""
737
 
738
  #: includes/editor.php:262 includes/preview-adb.php:289
739
- #: includes/preview.php:1979
740
  msgid ""
741
  "This page was not loaded properly. Please check browser, plugins and ad "
742
  "blockers."
@@ -747,350 +747,350 @@ msgid "Error loading page"
747
  msgstr ""
748
 
749
  #: includes/editor.php:264 includes/preview-adb.php:291
750
- #: includes/preview.php:1981
751
  msgid "PAGE BLOCKED"
752
  msgstr ""
753
 
754
  #: includes/functions-check-now.php:288 includes/functions.old.php:289
755
- #: includes/functions.php:302
756
  msgid "%d of %d names shown"
757
  msgstr ""
758
 
759
  #. translators: %s: name filter
760
  #: includes/functions-check-now.php:307 includes/functions.old.php:308
761
- #: includes/functions.php:321
762
  msgid "No name matches filter"
763
  msgstr ""
764
 
765
  #. translators: %s: Ad Inserter Pro
766
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
767
- #: includes/functions.php:398
768
  msgid ""
769
  "Import %s settings when saving - if checked, the encoded settings below will "
770
  "be imported for all blocks and settings"
771
  msgstr ""
772
 
773
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
774
- #: includes/functions.php:398
775
  msgid "Import Settings for"
776
  msgstr ""
777
 
778
  #: includes/functions-check-now.php:400 includes/functions.old.php:387
779
- #: includes/functions.php:402
780
  msgid "Saved settings for"
781
  msgstr ""
782
 
783
  #: includes/functions-check-now.php:420 includes/functions.old.php:407
784
- #: includes/functions.php:422
785
  msgid "License Key"
786
  msgstr ""
787
 
788
  #: includes/functions-check-now.php:423 includes/functions.old.php:410
789
- #: includes/functions.php:425
790
  msgid "License Key for"
791
  msgstr ""
792
 
793
  #: includes/functions-check-now.php:425 includes/functions.old.php:413
794
- #: includes/functions.php:427
795
  msgid "Open license page"
796
  msgstr ""
797
 
798
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
799
- #: includes/functions.php:434
800
  msgid "Hide license key"
801
  msgstr ""
802
 
803
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
804
- #: includes/functions.php:434
805
  msgid "Hide key"
806
  msgstr ""
807
 
808
  #: includes/functions-check-now.php:447 includes/functions.old.php:436
809
- #: includes/functions.php:449
810
  msgid "Main content element"
811
  msgstr ""
812
 
813
  #: includes/functions-check-now.php:450 includes/functions.old.php:439
814
- #: includes/functions.php:452
815
  msgid ""
816
  "Main content element (#id or .class) for 'Stick to the content' position. "
817
  "Leave empty unless position is not properly calculated."
818
  msgstr ""
819
 
820
  #: includes/functions-check-now.php:451 includes/functions.old.php:440
821
- #: includes/functions.php:453 settings.php:1359 settings.php:2831
822
  msgid "Open HTML element selector"
823
  msgstr ""
824
 
825
  #: includes/functions-check-now.php:456 includes/functions.old.php:445
826
- #: includes/functions.php:458
827
  msgid "Lazy loading offset"
828
  msgstr ""
829
 
830
  #: includes/functions-check-now.php:459 includes/functions.old.php:448
831
- #: includes/functions.php:461
832
  msgid "Offset of the block from the visible viewport when it should be loaded"
833
  msgstr ""
834
 
835
  #: includes/functions-check-now.php:470 includes/functions.old.php:459
836
- #: includes/functions.php:472
837
  msgid "Export / Import Block Settings"
838
  msgstr ""
839
 
840
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
841
- #: includes/functions.php:487
842
  msgid "Track impressions and clicks for this block"
843
  msgstr ""
844
 
845
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
846
- #: includes/functions.php:487
847
  msgid " - global tracking disabled"
848
  msgstr ""
849
 
850
  #: includes/functions-check-now.php:492 includes/functions.old.php:481
851
- #: includes/functions.php:494
852
  msgid "Generate PDF report"
853
  msgstr ""
854
 
855
  #: includes/functions-check-now.php:497 includes/functions.old.php:486
856
- #: includes/functions.php:499
857
  msgid "Open public report"
858
  msgstr ""
859
 
860
  #: includes/functions-check-now.php:511 includes/functions.old.php:500
861
- #: includes/functions.php:513
862
  msgid "Toggle Ad Blocking Statistics"
863
  msgstr ""
864
 
865
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
866
  #: includes/functions.old.php:508 includes/functions.old.php:2960
867
- #: includes/functions.php:521 includes/functions.php:3242
868
  msgid "Toggle Statistics"
869
  msgstr ""
870
 
871
- #: includes/functions-check-now.php:528 includes/functions.php:530
872
  msgid "Pin list"
873
  msgstr ""
874
 
875
  #. translators: %s: Ad Inserter Pro
876
  #: includes/functions-check-now.php:543 includes/functions.old.php:524
877
- #: includes/functions.php:545
878
  msgid "%s license key is not set. Continue?"
879
  msgstr ""
880
 
881
  #. translators: %s: Ad Inserter Pro
882
  #: includes/functions-check-now.php:547 includes/functions.old.php:528
883
- #: includes/functions.php:549
884
  msgid "Invalid %s license key. Continue?"
885
  msgstr ""
886
 
887
  #. translators: %s: Ad Inserter Pro
888
  #: includes/functions-check-now.php:551 includes/functions.old.php:532
889
- #: includes/functions.php:553
890
  msgid "%s license overused. Continue?"
891
  msgstr ""
892
 
893
  #: includes/functions-check-now.php:555 includes/functions.old.php:536
894
- #: includes/functions.php:561 settings.php:1113 settings.php:2275
895
  msgid "Save Settings"
896
  msgstr ""
897
 
898
  #: includes/functions-check-now.php:615 includes/functions.old.php:596
899
- #: includes/functions.php:621 includes/preview.php:2132
900
  msgid "Horizontal position"
901
  msgstr ""
902
 
903
  #: includes/functions-check-now.php:638 includes/functions.old.php:619
904
- #: includes/functions.php:644
905
  msgid ""
906
  "Horizontal margin from the content or screen edge, empty means default value "
907
  "from CSS"
908
  msgstr ""
909
 
910
  #: includes/functions-check-now.php:646 includes/functions.old.php:627
911
- #: includes/functions.php:652 includes/preview.php:2187
912
  msgid "Vertical position"
913
  msgstr ""
914
 
915
  #: includes/functions-check-now.php:661 includes/functions.old.php:642
916
- #: includes/functions.php:667
917
  msgid ""
918
  "Vertical margin from the top or bottom screen edge, empty means default "
919
  "value from CSS"
920
  msgstr ""
921
 
922
  #: includes/functions-check-now.php:686 includes/functions.old.php:667
923
- #: includes/functions.php:692 includes/preview.php:2238
924
  msgid "Animation"
925
  msgstr ""
926
 
927
  #: includes/functions-check-now.php:704 includes/functions.old.php:685
928
- #: includes/functions.php:710
929
  msgid "Trigger"
930
  msgstr ""
931
 
932
  #: includes/functions-check-now.php:713 includes/functions.old.php:694
933
- #: includes/functions.php:719
934
  msgid ""
935
  "Trigger value: page scroll in %, page scroll in px or element with selector "
936
  "(#id or .class) becomes visible"
937
  msgstr ""
938
 
939
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
940
- #: includes/functions.php:723
941
  msgid "Offset"
942
  msgstr ""
943
 
944
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
945
- #: includes/functions.php:723
946
  msgid "Offset of trigger element"
947
  msgstr ""
948
 
949
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
950
- #: includes/functions.php:727
951
  msgid "Delay"
952
  msgstr ""
953
 
954
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
955
- #: includes/functions.php:727
956
  msgid "Delay animation after trigger condition"
957
  msgstr ""
958
 
959
  #: includes/functions-check-now.php:725 includes/functions.old.php:706
960
- #: includes/functions.php:731
961
  msgid "Trigger once"
962
  msgstr ""
963
 
964
  #: includes/functions-check-now.php:727 includes/functions.old.php:708
965
- #: includes/functions.php:733
966
  msgid "Trigger animation only once"
967
  msgstr ""
968
 
969
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
970
  #: includes/functions-check-now.php:2545 includes/functions.old.php:750
971
  #: includes/functions.old.php:2453 includes/functions.old.php:2470
972
- #: includes/functions.php:775 includes/functions.php:2713
973
- #: includes/functions.php:2729
974
  msgid "Tracking is globally disabled"
975
  msgstr ""
976
 
977
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
978
  #: includes/functions-check-now.php:2549 includes/functions.old.php:754
979
  #: includes/functions.old.php:2457 includes/functions.old.php:2474
980
- #: includes/functions.php:779 includes/functions.php:2717
981
- #: includes/functions.php:2733
982
  msgid "Tracking for this block is disabled"
983
  msgstr ""
984
 
985
  #: includes/functions-check-now.php:780 includes/functions.old.php:761
986
- #: includes/functions.php:786
987
  msgid "Double click to toggle controls in public reports"
988
  msgstr ""
989
 
990
  #: includes/functions-check-now.php:786 includes/functions.old.php:767
991
- #: includes/functions.php:792 settings.php:3551 settings.php:3587
992
- #: settings.php:3629 strings.php:223
993
  msgid "Loading..."
994
  msgstr ""
995
 
996
  #: includes/functions-check-now.php:807 includes/functions.old.php:788
997
- #: includes/functions.php:813
998
  msgid ""
999
  "Clear statistics data for the selected range - clear both dates to delete "
1000
  "all data for this block"
1001
  msgstr ""
1002
 
1003
  #: includes/functions-check-now.php:811 includes/functions.old.php:792
1004
- #: includes/functions.php:817
1005
  msgid "Auto refresh data for the selected range every 60 seconds"
1006
  msgstr ""
1007
 
1008
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1009
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1010
- #: includes/functions.php:820 includes/functions.php:5736
1011
  msgid "Load data for last month"
1012
  msgstr ""
1013
 
1014
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1015
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1016
- #: includes/functions.php:820 includes/functions.php:5736
1017
  msgid "Last Month"
1018
  msgstr ""
1019
 
1020
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1021
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1022
- #: includes/functions.php:823 includes/functions.php:5739
1023
  msgid "Load data for this month"
1024
  msgstr ""
1025
 
1026
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1027
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1028
- #: includes/functions.php:823 includes/functions.php:5739
1029
  msgid "This Month"
1030
  msgstr ""
1031
 
1032
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1033
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1034
- #: includes/functions.php:826 includes/functions.php:5742
1035
  msgid "Load data for this year"
1036
  msgstr ""
1037
 
1038
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1039
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1040
- #: includes/functions.php:826 includes/functions.php:5742
1041
  msgid "This Year"
1042
  msgstr ""
1043
 
1044
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
1045
  #: includes/functions.old.php:804 includes/functions.old.php:5271
1046
- #: includes/functions.php:829 includes/functions.php:5745
1047
  msgid "Load data for the last 15 days"
1048
  msgstr ""
1049
 
1050
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
1051
  #: includes/functions.old.php:807 includes/functions.old.php:5274
1052
- #: includes/functions.php:832 includes/functions.php:5748
1053
  msgid "Load data for the last 30 days"
1054
  msgstr ""
1055
 
1056
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
1057
  #: includes/functions.old.php:810 includes/functions.old.php:5277
1058
- #: includes/functions.php:835 includes/functions.php:5751
1059
  msgid "Load data for the last 90 days"
1060
  msgstr ""
1061
 
1062
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
1063
  #: includes/functions.old.php:813 includes/functions.old.php:5280
1064
- #: includes/functions.php:838 includes/functions.php:5754
1065
  msgid "Load data for the last 180 days"
1066
  msgstr ""
1067
 
1068
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
1069
  #: includes/functions.old.php:816 includes/functions.old.php:5283
1070
- #: includes/functions.php:841 includes/functions.php:5757
1071
  msgid "Load data for the last 365 days"
1072
  msgstr ""
1073
 
1074
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
1075
  #: includes/functions.old.php:826 includes/functions.old.php:5293
1076
- #: includes/functions.php:851 includes/functions.php:5767
1077
  msgid "Load data for the selected range"
1078
  msgstr ""
1079
 
1080
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1081
- #: includes/functions.php:867
1082
  msgid ""
1083
  "Import settings when saving - if checked, the encoded settings below will be "
1084
  "imported for this block"
1085
  msgstr ""
1086
 
1087
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1088
- #: includes/functions.php:867
1089
  msgid "Import settings for block"
1090
  msgstr ""
1091
 
1092
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1093
- #: includes/functions.php:871
1094
  msgid ""
1095
  "Import block name when saving - if checked and 'Import settings for block' "
1096
  "is also checked, the name from encoded settings below will be imported for "
@@ -1098,170 +1098,170 @@ msgid ""
1098
  msgstr ""
1099
 
1100
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1101
- #: includes/functions.php:871
1102
  msgid "Import block name"
1103
  msgstr ""
1104
 
1105
  #: includes/functions-check-now.php:869 includes/functions.old.php:850
1106
- #: includes/functions.php:875
1107
  msgid "Saved settings for block"
1108
  msgstr ""
1109
 
1110
  #: includes/functions-check-now.php:882 includes/functions.old.php:863
1111
- #: includes/functions.php:888
1112
  msgid "Export / Import Ad Inserter Pro Settings"
1113
  msgstr ""
1114
 
1115
  #: includes/functions-check-now.php:892 includes/functions.old.php:873
1116
- #: includes/functions.php:898
1117
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1118
  msgstr ""
1119
 
1120
  #: includes/functions-check-now.php:894 includes/functions.old.php:875
1121
- #: includes/functions.php:900
1122
  msgid "Clear All Statistics Data"
1123
  msgstr ""
1124
 
1125
  #: includes/functions-check-now.php:921 includes/functions.old.php:902
1126
- #: includes/functions.php:930
1127
  msgid "Toggle country/city editor"
1128
  msgstr ""
1129
 
1130
  #: includes/functions-check-now.php:927 includes/functions.old.php:908
1131
- #: includes/functions.php:936
1132
  msgid "IP Addresses"
1133
  msgstr ""
1134
 
1135
  #: includes/functions-check-now.php:930 includes/functions.old.php:911
1136
- #: includes/functions.php:939
1137
  msgid "Toggle IP address editor"
1138
  msgstr ""
1139
 
1140
  #: includes/functions-check-now.php:933 includes/functions.old.php:914
1141
- #: includes/functions.php:942
1142
  msgid ""
1143
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1144
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1145
  msgstr ""
1146
 
1147
  #: includes/functions-check-now.php:937 includes/functions.old.php:918
1148
- #: includes/functions.php:951
1149
  msgid "Blacklist IP addresses"
1150
  msgstr ""
1151
 
1152
  #: includes/functions-check-now.php:941 includes/functions.old.php:922
1153
- #: includes/functions.php:955
1154
  msgid "Whitelist IP addresses"
1155
  msgstr ""
1156
 
1157
  #: includes/functions-check-now.php:952 includes/functions.old.php:933
1158
- #: includes/functions.php:966
1159
  msgid "Countries"
1160
  msgstr ""
1161
 
1162
  #: includes/functions-check-now.php:953 includes/functions.old.php:934
1163
- #: includes/functions.php:967
1164
  msgid "Cities"
1165
  msgstr ""
1166
 
1167
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
1168
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1169
- #: includes/functions.php:971 includes/functions.php:3207
1170
  msgid "Toggle country editor"
1171
  msgstr ""
1172
 
1173
  #: includes/functions-check-now.php:960 includes/functions.old.php:941
1174
- #: includes/functions.php:974
1175
  msgid "Toggle city editor"
1176
  msgstr ""
1177
 
1178
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
1179
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1180
- #: includes/functions.php:978 includes/functions.php:3210
1181
  msgid "Comma separated country ISO Alpha-2 codes"
1182
  msgstr ""
1183
 
1184
  #: includes/functions-check-now.php:968 includes/functions.old.php:949
1185
- #: includes/functions.php:987
1186
  msgid "Blacklist countries"
1187
  msgstr ""
1188
 
1189
  #: includes/functions-check-now.php:972 includes/functions.old.php:953
1190
- #: includes/functions.php:991
1191
  msgid "Whitelist countries"
1192
  msgstr ""
1193
 
1194
  #: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
1195
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1196
- #: includes/functions.php:1447 includes/functions.php:1757
1197
  msgid "Enter license key"
1198
  msgstr ""
1199
 
1200
  #. translators: %s: Ad Inserter Pro
1201
  #: includes/functions-check-now.php:1388 includes/functions.old.php:1367
1202
- #: includes/functions.php:1453
1203
  msgid ""
1204
  "%s license key is not set. Plugin functionality is limited and updates are "
1205
  "disabled."
1206
  msgstr ""
1207
 
1208
  #. translators: %s: Ad Inserter Pro
1209
- #: includes/functions-check-now.php:1402 includes/functions.php:1467
1210
  msgid "Warning: %s plugin update server is not accessible"
1211
  msgstr ""
1212
 
1213
  #. translators: updates are not available
1214
- #: includes/functions-check-now.php:1404 includes/functions.php:1469
1215
  msgid "updates"
1216
  msgstr ""
1217
 
1218
  #. translators: updates are not available
1219
- #: includes/functions-check-now.php:1406 includes/functions.php:1471
1220
  msgid "are not available"
1221
  msgstr ""
1222
 
1223
  #: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
1224
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1225
- #: includes/functions.php:1476 includes/functions.php:1766
1226
  msgid "Check license key"
1227
  msgstr ""
1228
 
1229
  #. translators: %s: Ad Inserter Pro
1230
  #: includes/functions-check-now.php:1417 includes/functions.old.php:1385
1231
- #: includes/functions.php:1482
1232
  msgid "Invalid %s license key."
1233
  msgstr ""
1234
 
1235
  #. translators: %s: Ad Inserter Pro
1236
  #: includes/functions-check-now.php:1426 includes/functions.old.php:1394
1237
- #: includes/functions.php:1491
1238
  msgid "%s license expired. Plugin updates are disabled."
1239
  msgstr ""
1240
 
1241
  #: includes/functions-check-now.php:1427 includes/functions.old.php:1395
1242
- #: includes/functions.php:1492
1243
  msgid "Renew license"
1244
  msgstr ""
1245
 
1246
  #. translators: %s: Ad Inserter Pro
1247
  #: includes/functions-check-now.php:1435 includes/functions.old.php:1403
1248
- #: includes/functions.php:1500
1249
  msgid "%s license overused. Plugin updates are disabled."
1250
  msgstr ""
1251
 
1252
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1253
- #: includes/functions.php:1501
1254
  msgid "Manage licenses"
1255
  msgstr ""
1256
 
1257
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1258
- #: includes/functions.php:1501
1259
  msgid "Upgrade license"
1260
  msgstr ""
1261
 
1262
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1263
  #: includes/functions-check-now.php:1683 includes/functions.old.php:1610
1264
- #: includes/functions.php:1759
1265
  msgid ""
1266
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1267
  "limited and updates are disabled."
@@ -1269,13 +1269,13 @@ msgstr ""
1269
 
1270
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1271
  #: includes/functions-check-now.php:1692 includes/functions.old.php:1619
1272
- #: includes/functions.php:1768
1273
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1274
  msgstr ""
1275
 
1276
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1277
  #: includes/functions-check-now.php:1708 includes/functions.old.php:1635
1278
- #: includes/functions.php:1784
1279
  msgid ""
1280
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1281
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
@@ -1283,35 +1283,35 @@ msgstr ""
1283
 
1284
  #. translators: 1, 3: HTML tags, 2: percentage
1285
  #: includes/functions-check-now.php:1715 includes/functions.old.php:1642
1286
- #: includes/functions.php:1791
1287
  msgid ""
1288
  "During the license period and 30 days after the license has expired we offer "
1289
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1290
  msgstr ""
1291
 
1292
  #: includes/functions-check-now.php:1725 includes/functions.old.php:1652
1293
- #: includes/functions.php:1801
1294
  msgid "No, thank you."
1295
  msgstr ""
1296
 
1297
  #: includes/functions-check-now.php:1728 includes/functions.old.php:1655
1298
- #: includes/functions.php:1804
1299
  msgid "Not now, maybe later."
1300
  msgstr ""
1301
 
1302
  #: includes/functions-check-now.php:1742 includes/functions.old.php:1669
1303
- #: includes/functions.php:1818
1304
  msgid "Renew the licence"
1305
  msgstr ""
1306
 
1307
  #: includes/functions-check-now.php:1744 includes/functions.old.php:1671
1308
- #: includes/functions.php:1820
1309
  msgid "Update license status"
1310
  msgstr ""
1311
 
1312
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1313
  #: includes/functions-check-now.php:1755 includes/functions.old.php:1682
1314
- #: includes/functions.php:1833
1315
  msgid ""
1316
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1317
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
@@ -1319,121 +1319,121 @@ msgstr ""
1319
 
1320
  #. Translators: %s: HTML tag
1321
  #: includes/functions-check-now.php:1777 includes/functions.old.php:1704
1322
- #: includes/functions.php:1885
1323
  msgid "Warning: %s MaxMind IP geolocation database not found."
1324
  msgstr ""
1325
 
1326
  #: includes/functions-check-now.php:2330 includes/functions.old.php:2255
1327
- #: includes/functions.php:2506
1328
  msgid "Geolocation"
1329
  msgstr ""
1330
 
1331
  #: includes/functions-check-now.php:2334 includes/functions.old.php:2259
1332
- #: includes/functions.php:2510 settings.php:4262
1333
  msgid "Exceptions"
1334
  msgstr ""
1335
 
1336
  #: includes/functions-check-now.php:2339 includes/functions.old.php:2264
1337
- #: includes/functions.php:2515
1338
  msgid "Multisite"
1339
  msgstr ""
1340
 
1341
  #: includes/functions-check-now.php:2344 includes/functions.old.php:2269
1342
- #: includes/functions.php:2520 settings.php:4268
1343
  msgid "Tracking"
1344
  msgstr ""
1345
 
1346
  #. translators: %d: days, hours, minutes
1347
  #: includes/functions-check-now.php:2375 includes/functions.old.php:2300
1348
- #: includes/functions.php:2551
1349
  msgid "Scheduled in %d days %d hours %d minutes"
1350
  msgstr ""
1351
 
1352
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1353
  #. HTML code for long dash separator
1354
  #: includes/functions-check-now.php:2384 includes/functions.old.php:2309
1355
- #: includes/functions.php:2560
1356
  msgid "Active %s expires in %d days %d hours %d minutes"
1357
  msgstr ""
1358
 
1359
  #: includes/functions-check-now.php:2388 includes/functions.old.php:2313
1360
- #: includes/functions.php:2564
1361
  msgid "Expired"
1362
  msgstr ""
1363
 
1364
  #: includes/functions-check-now.php:2396 includes/functions.old.php:2321
1365
- #: includes/functions.php:2590 settings.php:1441 settings.php:1456
1366
- #: settings.php:1546 settings.php:2172
1367
  msgid "and"
1368
  msgstr ""
1369
 
1370
  #: includes/functions-check-now.php:2399 includes/functions.old.php:2324
1371
- #: includes/functions.php:2572
1372
  msgid "fallback"
1373
  msgstr ""
1374
 
1375
  #: includes/functions-check-now.php:2400 includes/functions.old.php:2325
1376
- #: includes/functions.php:2573
1377
  msgid "Block to be used when scheduling expires"
1378
  msgstr ""
1379
 
1380
  #: includes/functions-check-now.php:2425 includes/functions.old.php:2350
1381
- #: includes/functions.php:2610
1382
  msgid "Load in iframe"
1383
  msgstr ""
1384
 
1385
  #: includes/functions-check-now.php:2429 includes/functions.old.php:2354
1386
- #: includes/functions.php:2614 includes/placeholders.php:389
1387
  msgid "Width"
1388
  msgstr ""
1389
 
1390
  #: includes/functions-check-now.php:2430 includes/functions.old.php:2355
1391
- #: includes/functions.php:2615
1392
  msgid "iframe width, empty means full width (100%)"
1393
  msgstr ""
1394
 
1395
  #: includes/functions-check-now.php:2436 includes/functions.old.php:2361
1396
- #: includes/functions.php:2621 includes/placeholders.php:384
1397
  msgid "Height"
1398
  msgstr ""
1399
 
1400
  #: includes/functions-check-now.php:2437 includes/functions.old.php:2362
1401
- #: includes/functions.php:2622
1402
  msgid "iframe height, empty means adjust it to iframe content height"
1403
  msgstr ""
1404
 
1405
  #: includes/functions-check-now.php:2444 includes/functions.old.php:2369
1406
- #: includes/functions.php:2629
1407
  msgid "Ad label in iframe"
1408
  msgstr ""
1409
 
1410
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1411
- #: includes/functions.php:2634
1412
  msgid "Preview iframe code"
1413
  msgstr ""
1414
 
1415
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1416
- #: includes/functions.php:2634 includes/preview.php:2001 settings.php:1108
1417
- #: settings.php:2893
1418
  msgid "Preview"
1419
  msgstr ""
1420
 
1421
  #: includes/functions-check-now.php:2463 includes/functions.old.php:2388
1422
- #: includes/functions.php:2648 settings.php:4269
1423
  msgid "Limits"
1424
  msgstr ""
1425
 
1426
  #: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
1427
  #: includes/functions-check-now.php:4429 includes/functions.old.php:2393
1428
  #: includes/functions.old.php:4266 includes/functions.old.php:4329
1429
- #: includes/functions.php:2653 includes/functions.php:4712
1430
- #: includes/functions.php:4775 settings.php:2322
1431
  msgid "Ad Blocking"
1432
  msgstr ""
1433
 
1434
  #. translators: 1, 2 and 3, 4: HTML tags
1435
  #: includes/functions-check-now.php:2477 includes/functions.old.php:2402
1436
- #: includes/functions.php:2662
1437
  msgid ""
1438
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1439
  "for tracking!"
@@ -1442,25 +1442,25 @@ msgstr ""
1442
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1443
  #. header
1444
  #: includes/functions-check-now.php:2486 includes/functions.old.php:2411
1445
- #: includes/functions.php:2671
1446
  msgid ""
1447
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1448
  "enabled and automatic insertion %6$s!"
1449
  msgstr ""
1450
 
1451
  #: includes/functions-check-now.php:2553 includes/functions.old.php:2478
1452
- #: includes/functions.php:2737
1453
  msgid "Click fraud protection is globally disabled"
1454
  msgstr ""
1455
 
1456
  #: includes/functions-check-now.php:2557 includes/functions.old.php:2482
1457
- #: includes/functions.php:2741
1458
  msgid "Max clicks per time period are not defined"
1459
  msgstr ""
1460
 
1461
  #. Translators: Max n impressions
1462
  #: includes/functions-check-now.php:2571 includes/functions.old.php:2496
1463
- #: includes/functions.php:2755
1464
  msgid "General limits"
1465
  msgstr ""
1466
 
@@ -1468,8 +1468,8 @@ msgstr ""
1468
  #: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
1469
  #: includes/functions-check-now.php:2674 includes/functions.old.php:2502
1470
  #: includes/functions.old.php:2514 includes/functions.old.php:2599
1471
- #: includes/functions.php:2761 includes/functions.php:2773
1472
- #: includes/functions.php:2858
1473
  msgid "Current value"
1474
  msgstr ""
1475
 
@@ -1489,15 +1489,15 @@ msgstr ""
1489
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1490
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1491
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1492
- #: includes/functions.php:2780 includes/functions.php:2790
1493
- #: includes/functions.php:2809 includes/functions.php:2819
1494
- #: includes/functions.php:2865 includes/functions.php:2874
1495
- #: includes/functions.php:2892 includes/functions.php:2901 settings.php:2093
1496
  msgid "Max"
1497
  msgstr ""
1498
 
1499
  #: includes/functions-check-now.php:2597 includes/functions.old.php:2522
1500
- #: includes/functions.php:2781
1501
  msgid ""
1502
  "Maximum number of impressions for this block. Empty means no general "
1503
  "impression limit."
@@ -1511,15 +1511,15 @@ msgstr ""
1511
  #: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
1512
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1513
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1514
- #: includes/functions.php:2783 includes/functions.php:2793
1515
- #: includes/functions.php:2868 includes/functions.php:2877
1516
  msgid "impression"
1517
  msgid_plural "impressions"
1518
  msgstr[0] ""
1519
  msgstr[1] ""
1520
 
1521
  #: includes/functions-check-now.php:2607 includes/functions.old.php:2532
1522
- #: includes/functions.php:2791
1523
  msgid ""
1524
  "Maximum number of impressions per time period. Empty means no time limit."
1525
  msgstr ""
@@ -1532,14 +1532,14 @@ msgstr ""
1532
  #: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
1533
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1534
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1535
- #: includes/functions.php:2797 includes/functions.php:2826
1536
- #: includes/functions.php:2881 includes/functions.php:2908
1537
  msgid "per"
1538
  msgstr ""
1539
 
1540
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1541
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1542
- #: includes/functions.php:2798 includes/functions.php:2827
1543
  msgid "Time period in days. Empty means no time limit."
1544
  msgstr ""
1545
 
@@ -1554,18 +1554,18 @@ msgstr ""
1554
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1555
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1556
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1557
- #: includes/functions.php:2800 includes/functions.php:2829
1558
- #: includes/functions.php:2884 includes/functions.php:2911
1559
- #: includes/functions.php:3017 includes/functions.php:3368 strings.php:204
1560
- #: strings.php:205 strings.php:206 strings.php:207 strings.php:208
1561
- #: strings.php:209
1562
  msgid "day"
1563
  msgid_plural "days"
1564
  msgstr[0] ""
1565
  msgstr[1] ""
1566
 
1567
  #: includes/functions-check-now.php:2626 includes/functions.old.php:2551
1568
- #: includes/functions.php:2810
1569
  msgid ""
1570
  "Maximum number of clicks on this block. Empty means no general click limit."
1571
  msgstr ""
@@ -1579,27 +1579,27 @@ msgstr ""
1579
  #: includes/functions-check-now.php:4577 includes/functions.old.php:2553
1580
  #: includes/functions.old.php:2563 includes/functions.old.php:2636
1581
  #: includes/functions.old.php:2645 includes/functions.old.php:4477
1582
- #: includes/functions.php:2812 includes/functions.php:2822
1583
- #: includes/functions.php:2895 includes/functions.php:2904
1584
- #: includes/functions.php:4923
1585
  msgid "click"
1586
  msgid_plural "clicks"
1587
  msgstr[0] ""
1588
  msgstr[1] ""
1589
 
1590
  #: includes/functions-check-now.php:2636 includes/functions.old.php:2561
1591
- #: includes/functions.php:2820
1592
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1593
  msgstr ""
1594
 
1595
  #: includes/functions-check-now.php:2661 includes/functions.old.php:2586
1596
- #: includes/functions.php:2845
1597
  msgid "Individual visitor limits"
1598
  msgstr ""
1599
 
1600
  #: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
1601
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1602
- #: includes/functions.php:2849 includes/functions.php:2851
1603
  msgid ""
1604
  "When specified number of clicks on this block for a visitor will be reached "
1605
  "in the specified time period, all blocks that have click fraud protection "
@@ -1608,19 +1608,19 @@ msgid ""
1608
  msgstr ""
1609
 
1610
  #: includes/functions-check-now.php:2667 includes/functions.old.php:2592
1611
- #: includes/functions.php:2851
1612
  msgid "Trigger click fraud protection"
1613
  msgstr ""
1614
 
1615
  #: includes/functions-check-now.php:2682 includes/functions.old.php:2607
1616
- #: includes/functions.php:2866
1617
  msgid ""
1618
  "Maximum number of impressions of this block for each visitor. Empty means no "
1619
  "impression limit."
1620
  msgstr ""
1621
 
1622
  #: includes/functions-check-now.php:2691 includes/functions.old.php:2616
1623
- #: includes/functions.php:2875
1624
  msgid ""
1625
  "Maximum number of impressions per time period for each visitor. Empty means "
1626
  "no impression limit per time period for visitors."
@@ -1628,60 +1628,60 @@ msgstr ""
1628
 
1629
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1630
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1631
- #: includes/functions.php:2882 includes/functions.php:2909
1632
  msgid ""
1633
  "Time period in days. Use decimal value (with decimal point) for shorter "
1634
  "periods. Empty means no time limit."
1635
  msgstr ""
1636
 
1637
  #: includes/functions-check-now.php:2709 includes/functions.old.php:2634
1638
- #: includes/functions.php:2893
1639
  msgid ""
1640
  "Maximum number of clicks on this block for each visitor. Empty means no "
1641
  "click limit."
1642
  msgstr ""
1643
 
1644
  #: includes/functions-check-now.php:2718 includes/functions.old.php:2643
1645
- #: includes/functions.php:2902
1646
  msgid ""
1647
  "Maximum number of clicks per time period for each visitor. Empty means no "
1648
  "click limit per time period for visitors."
1649
  msgstr ""
1650
 
1651
  #: includes/functions-check-now.php:2744 includes/functions.old.php:2669
1652
- #: includes/functions.php:2928
1653
  msgid "When ad blocking is detected"
1654
  msgstr ""
1655
 
1656
  #: includes/functions-check-now.php:2753 includes/functions.old.php:2678
1657
- #: includes/functions.php:2937
1658
  msgid "replacement"
1659
  msgstr ""
1660
 
1661
  #: includes/functions-check-now.php:2754 includes/functions.old.php:2679
1662
- #: includes/functions.php:2938
1663
  msgid "Block to be shown when ad blocking is detected"
1664
  msgstr ""
1665
 
1666
  #: includes/functions-check-now.php:2755 includes/functions.old.php:2680
1667
- #: includes/functions.php:2939
1668
  msgctxt "replacement"
1669
  msgid "None"
1670
  msgstr ""
1671
 
1672
  #: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
1673
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1674
- #: includes/functions.php:2956 includes/functions.php:5980
1675
  msgid "Close button"
1676
  msgstr ""
1677
 
1678
  #: includes/functions-check-now.php:2824 includes/functions.old.php:2749
1679
- #: includes/functions.php:3008
1680
  msgid "Auto close after"
1681
  msgstr ""
1682
 
1683
  #: includes/functions-check-now.php:2825 includes/functions.old.php:2750
1684
- #: includes/functions.php:3009
1685
  msgid ""
1686
  "Time in seconds in which the ad will automatically close. Leave empty to "
1687
  "disable auto closing."
@@ -1689,12 +1689,12 @@ msgstr ""
1689
 
1690
  #. Translators: Don't show for x days
1691
  #: includes/functions-check-now.php:2830 includes/functions.old.php:2755
1692
- #: includes/functions.php:3014
1693
  msgid "Don't show for"
1694
  msgstr ""
1695
 
1696
  #: includes/functions-check-now.php:2831 includes/functions.old.php:2756
1697
- #: includes/functions.php:3015
1698
  msgid ""
1699
  "Time in days in which closed ad will not be shown again. Use decimal value "
1700
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1703,12 +1703,12 @@ msgstr ""
1703
 
1704
  #. Translators: Delay showing for x pageviews
1705
  #: includes/functions-check-now.php:2851 includes/functions.old.php:2776
1706
- #: includes/functions.php:3035
1707
  msgid "Delay showing for"
1708
  msgstr ""
1709
 
1710
  #: includes/functions-check-now.php:2852 includes/functions.old.php:2777
1711
- #: includes/functions.php:3036
1712
  msgid ""
1713
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1714
  "empty to insert the code for the first pageview."
@@ -1718,7 +1718,7 @@ msgstr ""
1718
  #. Translators: Show every x pageviews
1719
  #: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
1720
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1721
- #: includes/functions.php:3038 includes/functions.php:3045
1722
  msgid "pageview"
1723
  msgid_plural "pageviews"
1724
  msgstr[0] ""
@@ -1726,59 +1726,59 @@ msgstr[1] ""
1726
 
1727
  #. Translators: Show every x pageviews
1728
  #: includes/functions-check-now.php:2858 includes/functions.old.php:2783
1729
- #: includes/functions.php:3042
1730
  msgid "Show every"
1731
  msgid_plural "Show every"
1732
  msgstr[0] ""
1733
  msgstr[1] ""
1734
 
1735
  #: includes/functions-check-now.php:2859 includes/functions.old.php:2784
1736
- #: includes/functions.php:3043
1737
  msgid ""
1738
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1739
  "for every pageview."
1740
  msgstr ""
1741
 
1742
  #: includes/functions-check-now.php:2878 includes/functions.old.php:2803
1743
- #: includes/functions.php:3062
1744
  msgid "Lazy loading"
1745
  msgstr ""
1746
 
1747
  #. Translators: %s MaxMind
1748
  #: includes/functions-check-now.php:2935 includes/functions.old.php:2860
1749
- #: includes/functions.php:3131
1750
  msgid "This product includes GeoLite2 data created by %s"
1751
  msgstr ""
1752
 
1753
  #: includes/functions-check-now.php:2946 includes/functions.old.php:2871
1754
- #: includes/functions.php:3144
1755
  msgid "IP geolocation database"
1756
  msgstr ""
1757
 
1758
  #: includes/functions-check-now.php:2949 includes/functions.old.php:2874
1759
- #: includes/functions.php:3147
1760
  msgid "Select IP geolocation database."
1761
  msgstr ""
1762
 
1763
  #: includes/functions-check-now.php:2960 includes/functions.old.php:2885
1764
- #: includes/functions.php:3158
1765
  msgid "Automatic database updates"
1766
  msgstr ""
1767
 
1768
  #: includes/functions-check-now.php:2963 includes/functions.old.php:2888
1769
- #: includes/functions.php:3161
1770
  msgid ""
1771
  "Automatically download and update free GeoLite2 IP geolocation database by "
1772
  "MaxMind"
1773
  msgstr ""
1774
 
1775
  #: includes/functions-check-now.php:2971 includes/functions.old.php:2896
1776
- #: includes/functions.php:3178
1777
  msgid "Database"
1778
  msgstr ""
1779
 
1780
  #: includes/functions-check-now.php:2974 includes/functions.old.php:2899
1781
- #: includes/functions.php:3181
1782
  msgid ""
1783
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1784
  "file"
@@ -1786,121 +1786,121 @@ msgstr ""
1786
 
1787
  #. translators: %d: group number
1788
  #: includes/functions-check-now.php:2992 includes/functions.old.php:2917
1789
- #: includes/functions.php:3199
1790
  msgid "Group %d"
1791
  msgstr ""
1792
 
1793
  #: includes/functions-check-now.php:2998 includes/functions.old.php:2923
1794
- #: includes/functions.php:3205
1795
  msgid "countries"
1796
  msgstr ""
1797
 
1798
  #: includes/functions-check-now.php:3043 includes/functions.old.php:2968
1799
- #: includes/functions.php:3250
1800
  msgid ""
1801
  "Enable impression and click tracking. You also need to enable tracking for "
1802
  "each block you want to track."
1803
  msgstr ""
1804
 
1805
  #: includes/functions-check-now.php:3050 includes/functions.old.php:2975
1806
- #: includes/functions.php:3257
1807
  msgid "Generate report"
1808
  msgstr ""
1809
 
1810
  #: includes/functions-check-now.php:3058 includes/functions.old.php:2983
1811
- #: includes/functions.php:3265
1812
  msgid "Impression and Click Tracking"
1813
  msgstr ""
1814
 
1815
  #: includes/functions-check-now.php:3059 includes/functions.old.php:2984
1816
- #: includes/functions.php:3266 settings.php:2781
1817
  msgctxt "ad blocking detection"
1818
  msgid "NOT ENABLED"
1819
  msgstr ""
1820
 
1821
  #: includes/functions-check-now.php:3075 includes/functions.old.php:3000
1822
- #: includes/functions.php:3282
1823
  msgid "Internal"
1824
  msgstr ""
1825
 
1826
  #: includes/functions-check-now.php:3079 includes/functions.old.php:3004
1827
- #: includes/functions.php:3286
1828
  msgid "Track impressions and clicks with internal tracking and statistics"
1829
  msgstr ""
1830
 
1831
  #: includes/functions-check-now.php:3084 includes/functions.old.php:3009
1832
- #: includes/functions.php:3291
1833
  msgid "External"
1834
  msgstr ""
1835
 
1836
  #: includes/functions-check-now.php:3088 includes/functions.old.php:3013
1837
- #: includes/functions.php:3295
1838
  msgid ""
1839
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1840
  "code installed)"
1841
  msgstr ""
1842
 
1843
  #: includes/functions-check-now.php:3093 includes/functions.old.php:3018
1844
- #: includes/functions.php:3300
1845
  msgid "Track Pageviews"
1846
  msgstr ""
1847
 
1848
  #: includes/functions-check-now.php:3099 includes/functions.old.php:3024
1849
- #: includes/functions.php:3306
1850
  msgid "Track Pageviews by Device (as configured for viewports)"
1851
  msgstr ""
1852
 
1853
  #: includes/functions-check-now.php:3109 includes/functions.old.php:3034
1854
- #: includes/functions.php:3316
1855
  msgid "Track for Logged in Users"
1856
  msgstr ""
1857
 
1858
  #: includes/functions-check-now.php:3115 includes/functions.old.php:3040
1859
- #: includes/functions.php:3322
1860
  msgid "Track impressions and clicks from logged in users"
1861
  msgstr ""
1862
 
1863
  #: includes/functions-check-now.php:3125 includes/functions.old.php:3050
1864
- #: includes/functions.php:3332
1865
  msgid "Click Detection"
1866
  msgstr ""
1867
 
1868
  #: includes/functions-check-now.php:3131 includes/functions.old.php:3056
1869
- #: includes/functions.php:3338
1870
  msgid ""
1871
  "Standard method detects clicks only on banners with links, Advanced method "
1872
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1873
  msgstr ""
1874
 
1875
  #: includes/functions-check-now.php:3150 includes/functions.old.php:3075
1876
- #: includes/functions.php:3357
1877
  msgid "Click fraud protection"
1878
  msgstr ""
1879
 
1880
  #: includes/functions-check-now.php:3154 includes/functions.old.php:3079
1881
- #: includes/functions.php:3361
1882
  msgid "Globally enable click fraud protection for selected blocks."
1883
  msgstr ""
1884
 
1885
  #: includes/functions-check-now.php:3160 includes/functions.old.php:3085
1886
- #: includes/functions.php:3367
1887
  msgid "Protection time"
1888
  msgstr ""
1889
 
1890
  #: includes/functions-check-now.php:3161 includes/functions.old.php:3086
1891
- #: includes/functions.php:3368
1892
  msgid ""
1893
  "Time period in days in which blocks with enabled click fraud protection will "
1894
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1895
  msgstr ""
1896
 
1897
  #: includes/functions-check-now.php:3180 includes/functions.old.php:3105
1898
- #: includes/functions.php:3387
1899
  msgid "Report header image"
1900
  msgstr ""
1901
 
1902
  #: includes/functions-check-now.php:3183 includes/functions.old.php:3108
1903
- #: includes/functions.php:3390
1904
  msgid ""
1905
  "Image or logo to be displayed in the header of the statistins report. "
1906
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
@@ -1908,177 +1908,177 @@ msgid ""
1908
  msgstr ""
1909
 
1910
  #: includes/functions-check-now.php:3184 includes/functions.old.php:3109
1911
- #: includes/functions.php:3391 strings.php:235
1912
  msgid "Select or upload header image"
1913
  msgstr ""
1914
 
1915
  #: includes/functions-check-now.php:3189 includes/functions.old.php:3114
1916
- #: includes/functions.php:3396
1917
  msgid "Report header title"
1918
  msgstr ""
1919
 
1920
  #: includes/functions-check-now.php:3192 includes/functions.old.php:3117
1921
- #: includes/functions.php:3399
1922
  msgid ""
1923
  "Title to be displayed in the header of the statistics report. Text or HTML "
1924
  "code, clear to reset to default text."
1925
  msgstr ""
1926
 
1927
  #: includes/functions-check-now.php:3197 includes/functions.old.php:3122
1928
- #: includes/functions.php:3404
1929
  msgid "Report header description"
1930
  msgstr ""
1931
 
1932
  #: includes/functions-check-now.php:3200 includes/functions.old.php:3125
1933
- #: includes/functions.php:3407
1934
  msgid ""
1935
  "Description to be displayed in the header of the statistics report. Text or "
1936
  "HTML code, clear to reset to default text."
1937
  msgstr ""
1938
 
1939
  #: includes/functions-check-now.php:3205 includes/functions.old.php:3130
1940
- #: includes/functions.php:3412
1941
  msgid "Report footer"
1942
  msgstr ""
1943
 
1944
  #: includes/functions-check-now.php:3208 includes/functions.old.php:3133
1945
- #: includes/functions.php:3415
1946
  msgid ""
1947
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1948
  "to default text."
1949
  msgstr ""
1950
 
1951
  #: includes/functions-check-now.php:3213 includes/functions.old.php:3138
1952
- #: includes/functions.php:3420
1953
  msgid "Public report key"
1954
  msgstr ""
1955
 
1956
  #: includes/functions-check-now.php:3216 includes/functions.old.php:3141
1957
- #: includes/functions.php:3423
1958
  msgid "String to generate unique report IDs. Clear to reset to default value."
1959
  msgstr ""
1960
 
1961
  #: includes/functions-check-now.php:3248 includes/functions.old.php:3173
1962
- #: includes/functions.php:3486
1963
  msgid "Are you sure you want to clear all exceptions for block"
1964
  msgstr ""
1965
 
1966
  #: includes/functions-check-now.php:3249 includes/functions.old.php:3174
1967
- #: includes/functions.php:3487
1968
  msgid "Clear all exceptions for block"
1969
  msgstr ""
1970
 
1971
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
1972
- #: includes/functions.php:3494
1973
  msgid "Are you sure you want to clear all exceptions?"
1974
  msgstr ""
1975
 
1976
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
1977
- #: includes/functions.php:3494
1978
  msgid "Clear all exceptions for all blocks"
1979
  msgstr ""
1980
 
1981
  #: includes/functions-check-now.php:3261 includes/functions.old.php:3186
1982
- #: includes/functions.php:3499 settings.php:3860 settings.php:4345
1983
  msgid "Type"
1984
  msgstr ""
1985
 
1986
  #: includes/functions-check-now.php:3279 includes/functions.old.php:3204
1987
- #: includes/functions.php:3517
1988
  msgid "View"
1989
  msgstr ""
1990
 
1991
  #: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
1992
  #: includes/functions-check-now.php:3291 includes/functions.old.php:3205
1993
  #: includes/functions.old.php:3212 includes/functions.old.php:3216
1994
- #: includes/functions.php:3518 includes/functions.php:3525
1995
- #: includes/functions.php:3529 includes/placeholders.php:353
1996
- #: includes/preview.php:2307 settings.php:1345 settings.php:3620
1997
  msgid "Edit"
1998
  msgstr ""
1999
 
2000
  #: includes/functions-check-now.php:3310 includes/functions.old.php:3235
2001
- #: includes/functions.php:3548
2002
  msgid "Are you sure you want to clear all exceptions for"
2003
  msgstr ""
2004
 
2005
  #: includes/functions-check-now.php:3311 includes/functions.old.php:3236
2006
- #: includes/functions.php:3549
2007
  msgid "Clear all exceptions for"
2008
  msgstr ""
2009
 
2010
  #: includes/functions-check-now.php:3324 includes/functions.old.php:3249
2011
- #: includes/functions.php:3562
2012
  msgid "No exceptions"
2013
  msgstr ""
2014
 
2015
  #. translators: %s: Ad Inserter Pro
2016
  #: includes/functions-check-now.php:3335 includes/functions.old.php:3260
2017
- #: includes/functions.php:3573
2018
  msgid "%s options for network blogs"
2019
  msgstr ""
2020
 
2021
  #. translators: %s: Ad Inserter Pro
2022
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2023
- #: includes/functions.php:3578
2024
  msgid "Enable %s widgets for sub-sites"
2025
  msgstr ""
2026
 
2027
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2028
- #: includes/functions.php:3578
2029
  msgid "Widgets"
2030
  msgstr ""
2031
 
2032
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2033
- #: includes/functions.php:3583
2034
  msgid "Enable PHP code processing for sub-sites"
2035
  msgstr ""
2036
 
2037
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2038
- #: includes/functions.php:3583
2039
  msgid "PHP Processing"
2040
  msgstr ""
2041
 
2042
  #. translators: %s: Ad Inserter Pro
2043
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2044
- #: includes/functions.php:3588
2045
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2046
  msgstr ""
2047
 
2048
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2049
- #: includes/functions.php:3588
2050
  msgid "Post/Page exceptions"
2051
  msgstr ""
2052
 
2053
  #. translators: %s: Ad Inserter Pro
2054
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2055
- #: includes/functions.php:3593
2056
  msgid "Enable %s settings page for sub-sites"
2057
  msgstr ""
2058
 
2059
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2060
- #: includes/functions.php:3593
2061
  msgid "Settings page"
2062
  msgstr ""
2063
 
2064
  #. translators: %s: Ad Inserter Pro
2065
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2066
- #: includes/functions.php:3598
2067
  msgid "Enable %s settings of main site to be used for all blogs"
2068
  msgstr ""
2069
 
2070
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2071
- #: includes/functions.php:3598
2072
  msgid "Main site settings used for all blogs"
2073
  msgstr ""
2074
 
2075
  #: includes/functions-check-now.php:3371 includes/functions.old.php:3296
2076
- #: includes/functions.php:3614 settings.php:2780
2077
  msgid "Ad Blocking Detection"
2078
  msgstr ""
2079
 
2080
  #: includes/functions-check-now.php:3377 includes/functions.old.php:3302
2081
- #: includes/functions.php:3620
2082
  msgid ""
2083
  "Standard method is reliable but should be used only if Advanced method does "
2084
  "not work. Advanced method recreates files used for detection with random "
@@ -2089,8 +2089,8 @@ msgstr ""
2089
  #: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
2090
  #: includes/functions-check-now.php:4139 includes/functions.old.php:3929
2091
  #: includes/functions.old.php:4019 includes/functions.old.php:4039
2092
- #: includes/functions.php:4343 includes/functions.php:4465
2093
- #: includes/functions.php:4485
2094
  msgid "AD BLOCKING"
2095
  msgstr ""
2096
 
@@ -2098,119 +2098,119 @@ msgstr ""
2098
  #: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
2099
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
2100
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
2101
- #: includes/functions.php:4344 includes/functions.php:4390
2102
- #: includes/functions.php:4459 includes/functions.php:4486
2103
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2104
  msgstr ""
2105
 
2106
  #: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
2107
  #: includes/functions-check-now.php:4146 includes/functions.old.php:3933
2108
  #: includes/functions.old.php:4012 includes/functions.old.php:4046
2109
- #: includes/functions.php:4347 includes/functions.php:4458
2110
- #: includes/functions.php:4492
2111
  msgid "NO AD BLOCKING"
2112
  msgstr ""
2113
 
2114
  #: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
2115
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
2116
- #: includes/functions.php:4389 includes/functions.php:4396
2117
  msgid "AD BLOCKING REPLACEMENT"
2118
  msgstr ""
2119
 
2120
  #: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
2121
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
2122
- #: includes/functions.php:4565 includes/functions.php:4774
2123
  msgid "Pageviews"
2124
  msgstr ""
2125
 
2126
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2127
- #: includes/functions.php:4711
2128
  msgctxt "Version"
2129
  msgid "Unknown"
2130
  msgstr ""
2131
 
2132
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2133
- #: includes/functions.php:4711
2134
  msgctxt "Times"
2135
  msgid "DISPLAYED"
2136
  msgstr ""
2137
 
2138
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2139
- #: includes/functions.php:4711
2140
  msgid "No version"
2141
  msgstr ""
2142
 
2143
  #: includes/functions-check-now.php:4366 includes/functions.old.php:4266
2144
- #: includes/functions.php:4712
2145
  msgctxt "Times"
2146
  msgid "BLOCKED"
2147
  msgstr ""
2148
 
2149
  #: includes/functions-check-now.php:4428 includes/functions.old.php:4328
2150
- #: includes/functions.php:4774
2151
  msgid "Impressions"
2152
  msgstr ""
2153
 
2154
  #: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
2155
  #: includes/functions-check-now.php:4485 includes/functions.old.php:4329
2156
  #: includes/functions.old.php:4330 includes/functions.old.php:4385
2157
- #: includes/functions.php:4775 includes/functions.php:4776
2158
- #: includes/functions.php:4831
2159
  msgid "Clicks"
2160
  msgstr ""
2161
 
2162
  #: includes/functions-check-now.php:4430 includes/functions.old.php:4330
2163
- #: includes/functions.php:4776
2164
  msgid "events"
2165
  msgstr ""
2166
 
2167
  #: includes/functions-check-now.php:4431 includes/functions.old.php:4331
2168
- #: includes/functions.php:4777
2169
  msgid "Ad Blocking Share"
2170
  msgstr ""
2171
 
2172
  #. translators: CTR as Click Through Rate
2173
  #: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
2174
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
2175
- #: includes/functions.php:4777 includes/functions.php:4837
2176
  msgid "CTR"
2177
  msgstr ""
2178
 
2179
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2180
- #: includes/functions.php:4919
2181
  msgid "pageviews"
2182
  msgid_plural "pageviews"
2183
  msgstr[0] ""
2184
  msgstr[1] ""
2185
 
2186
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2187
- #: includes/functions.php:4919
2188
  msgid "impressions"
2189
  msgid_plural "impressions"
2190
  msgstr[0] ""
2191
  msgstr[1] ""
2192
 
2193
  #: includes/functions-check-now.php:4577 includes/functions.old.php:4477
2194
- #: includes/functions.php:4923
2195
  msgid "event"
2196
  msgid_plural "events"
2197
  msgstr[0] ""
2198
  msgstr[1] ""
2199
 
2200
  #: includes/functions-check-now.php:4672 includes/functions.old.php:4572
2201
- #: includes/functions.php:5018
2202
  msgctxt "Pageviews / Impressions"
2203
  msgid "Average"
2204
  msgstr ""
2205
 
2206
  #: includes/functions-check-now.php:4693 includes/functions.old.php:4593
2207
- #: includes/functions.php:5039
2208
  msgctxt "Ad Blocking / Clicks"
2209
  msgid "Average"
2210
  msgstr ""
2211
 
2212
  #: includes/functions-check-now.php:4717 includes/functions.old.php:4617
2213
- #: includes/functions.php:5063
2214
  msgctxt "Ad Blocking Share / CTR"
2215
  msgid "Average"
2216
  msgstr ""
@@ -2219,177 +2219,210 @@ msgstr ""
2219
  #: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
2220
  #: includes/functions-check-now.php:5334 includes/functions.old.php:4799
2221
  #: includes/functions.old.php:4891 includes/functions.old.php:5207
2222
- #: includes/functions.php:5246 includes/functions.php:5338
2223
- #: includes/functions.php:5681 strings.php:189
2224
  msgid "%s Report"
2225
  msgstr ""
2226
 
2227
  #: includes/functions-check-now.php:5240 includes/functions.old.php:5113
2228
- #: includes/functions.php:5587
2229
  msgid "for last month"
2230
  msgstr ""
2231
 
2232
  #: includes/functions-check-now.php:5245 includes/functions.old.php:5118
2233
- #: includes/functions.php:5592
2234
  msgid "for this month"
2235
  msgstr ""
2236
 
2237
  #: includes/functions-check-now.php:5250 includes/functions.old.php:5123
2238
- #: includes/functions.php:5597
2239
  msgid "for this year"
2240
  msgstr ""
2241
 
2242
  #: includes/functions-check-now.php:5255 includes/functions.old.php:5128
2243
- #: includes/functions.php:5602
2244
  msgid "for the last 15 days"
2245
  msgstr ""
2246
 
2247
  #: includes/functions-check-now.php:5260 includes/functions.old.php:5133
2248
- #: includes/functions.php:5607
2249
  msgid "for the last 30 days"
2250
  msgstr ""
2251
 
2252
  #: includes/functions-check-now.php:5265 includes/functions.old.php:5138
2253
- #: includes/functions.php:5612
2254
  msgid "for the last 90 days"
2255
  msgstr ""
2256
 
2257
  #: includes/functions-check-now.php:5270 includes/functions.old.php:5143
2258
- #: includes/functions.php:5617
2259
  msgid "for the last 180 days"
2260
  msgstr ""
2261
 
2262
  #: includes/functions-check-now.php:5275 includes/functions.old.php:5148
2263
- #: includes/functions.php:5622
2264
  msgid "for the last 365 days"
2265
  msgstr ""
2266
 
2267
  #. translators: %s: Ad Inserter Pro
2268
- #: includes/functions.php:557
2269
  msgid "Invalid %s version. Continue?"
2270
  msgstr ""
2271
 
2272
- #: includes/functions.php:947 includes/functions.php:983 settings.php:1672
2273
- #: settings.php:1703 settings.php:1734 settings.php:1765 settings.php:1796
2274
- #: settings.php:1827 settings.php:1857 settings.php:1887
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2275
  msgid "Click to select black or white list"
2276
  msgstr ""
2277
 
2278
  #. translators: %s: Ad Inserter Pro
2279
- #: includes/functions.php:1509
2280
  msgid "Invalid %s version."
2281
  msgstr ""
2282
 
2283
- #: includes/functions.php:1510
2284
  msgid "Check license"
2285
  msgstr ""
2286
 
2287
- #: includes/functions.php:1522
2288
  msgid "License"
2289
  msgstr ""
2290
 
2291
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2292
- #: includes/functions.php:1845
2293
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2294
  msgstr ""
2295
 
2296
  #. Translators: %s: HTML tags
2297
- #: includes/functions.php:1890
2298
  msgid ""
2299
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2300
  "account %s and create license key."
2301
  msgstr ""
2302
 
2303
- #: includes/functions.php:2588
2304
  msgid "Start date"
2305
  msgstr ""
2306
 
2307
- #: includes/functions.php:2588
2308
  msgid "Enter date in format yyyy-mm-dd"
2309
  msgstr ""
2310
 
2311
- #: includes/functions.php:2589
2312
  msgid "Start time"
2313
  msgstr ""
2314
 
2315
- #: includes/functions.php:2589
2316
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2317
  msgstr ""
2318
 
2319
- #: includes/functions.php:2591
2320
  msgid "End date"
2321
  msgstr ""
2322
 
2323
- #: includes/functions.php:2592
2324
  msgid "End time"
2325
  msgstr ""
2326
 
2327
- #: includes/functions.php:2595
2328
  msgid "Select wanted days in week"
2329
  msgstr ""
2330
 
2331
- #: includes/functions.php:2927
2332
  msgid "Ad blocking detection is disabled"
2333
  msgstr ""
2334
 
2335
- #: includes/functions.php:3065
2336
  msgid "Manual loading"
2337
  msgstr ""
2338
 
2339
  #. Translators: %s HTML tags
2340
- #: includes/functions.php:3133
2341
  msgid "Create and manage %s MaxMind license key %s"
2342
  msgstr ""
2343
 
2344
- #: includes/functions.php:3169
2345
  msgid "MaxMind license key"
2346
  msgstr ""
2347
 
2348
- #: includes/functions.php:3172
2349
  msgid "Enter license key obtained from MaxMind"
2350
  msgstr ""
2351
 
2352
- #: includes/functions.php:3438
2353
  msgid "Event category"
2354
  msgstr ""
2355
 
2356
- #: includes/functions.php:3441
2357
  msgid ""
2358
  "Category name used for external tracking events. You can use tags to get the "
2359
  "event, the number or the name of the block that caused the event."
2360
  msgstr ""
2361
 
2362
- #: includes/functions.php:3446
2363
  msgid "Event action"
2364
  msgstr ""
2365
 
2366
- #: includes/functions.php:3449
2367
  msgid ""
2368
  "Action name used for external tracking events. You can use tags to get the "
2369
  "event, the number or the name of the block that caused the event."
2370
  msgstr ""
2371
 
2372
- #: includes/functions.php:3454
2373
  msgid "Event label"
2374
  msgstr ""
2375
 
2376
- #: includes/functions.php:3457
2377
  msgid ""
2378
  "Label name used for external tracking events. You can use tags to get the "
2379
  "event, the number or the name of the block that caused the event."
2380
  msgstr ""
2381
 
2382
  #. translators: %s: Ad Inserter Pro
2383
- #: includes/functions.php:3603
2384
  msgid "Show link to %s settings page for each site on the Sites page"
2385
  msgstr ""
2386
 
2387
  #. translators: %s: Ad Inserter Pro
2388
- #: includes/functions.php:3603
2389
  msgid "Show link to %s on the Sites page"
2390
  msgstr ""
2391
 
2392
- #: includes/functions.php:5193
2393
  msgid "File %s missing."
2394
  msgstr ""
2395
 
@@ -2421,11 +2454,11 @@ msgstr ""
2421
  msgid "Placeholder"
2422
  msgstr ""
2423
 
2424
- #: includes/placeholders.php:363 settings.php:954 settings.php:4346
2425
  msgid "Size"
2426
  msgstr ""
2427
 
2428
- #: includes/placeholders.php:379
2429
  msgid "Background color"
2430
  msgstr ""
2431
 
@@ -2489,7 +2522,7 @@ msgstr ""
2489
  msgid "Remove dummy paragraph"
2490
  msgstr ""
2491
 
2492
- #: includes/preview-adb.php:9 includes/preview.php:1989
2493
  msgid "Use current settings"
2494
  msgstr ""
2495
 
@@ -2516,7 +2549,7 @@ msgctxt "Button"
2516
  msgid "Default"
2517
  msgstr ""
2518
 
2519
- #: includes/preview-adb.php:12 includes/preview.php:1992
2520
  msgid "Close preview window"
2521
  msgstr ""
2522
 
@@ -2529,63 +2562,67 @@ msgstr ""
2529
  msgid "Ad Blocking Detected Message Preview"
2530
  msgstr ""
2531
 
2532
- #: includes/preview-adb.php:348 settings.php:2906
2533
  msgid "Message CSS"
2534
  msgstr ""
2535
 
2536
- #: includes/preview-adb.php:353 settings.php:2914
2537
  msgid "Overlay CSS"
2538
  msgstr ""
2539
 
2540
- #: includes/preview.php:229
2541
  msgid "Sticky Code Preview"
2542
  msgstr ""
2543
 
2544
- #: includes/preview.php:229
2545
  msgid "Code Preview"
2546
  msgstr ""
2547
 
2548
- #: includes/preview.php:1987
2549
  msgid "Highlight inserted code"
2550
  msgstr ""
2551
 
2552
- #: includes/preview.php:1987
2553
  msgid "Highlight"
2554
  msgstr ""
2555
 
2556
- #: includes/preview.php:1990
2557
  msgid "Reset to block settings"
2558
  msgstr ""
2559
 
2560
- #: includes/preview.php:2005
2561
  msgid "AdSense ad unit"
2562
  msgstr ""
2563
 
2564
- #: includes/preview.php:2072
2565
  msgid "wrapping div"
2566
  msgstr ""
2567
 
2568
- #: includes/preview.php:2077 includes/preview.php:2084
2569
  msgid "background"
2570
  msgstr ""
2571
 
2572
- #: includes/preview.php:2111 includes/preview.php:2262 settings.php:1306
2573
  msgid "Alignment"
2574
  msgstr ""
2575
 
2576
- #: includes/preview.php:2179
 
 
 
 
2577
  msgid "Horizontal margin"
2578
  msgstr ""
2579
 
2580
- #: includes/preview.php:2228
2581
  msgid "Vertical margin"
2582
  msgstr ""
2583
 
2584
- #: includes/preview.php:2250
2585
  msgid "Animate"
2586
  msgstr ""
2587
 
2588
- #: includes/preview.php:2316
2589
  msgid ""
2590
  "This is a preview of the code between dummy paragraphs. Here you can test "
2591
  "various block alignments, visually edit margin and padding values of the "
@@ -2595,14 +2632,14 @@ msgid ""
2595
  "restores all the values to those of the current block."
2596
  msgstr ""
2597
 
2598
- #: includes/preview.php:2319
2599
  msgid ""
2600
  "This is a preview of the saved block between dummy paragraphs. It shows the "
2601
  "code with the alignment and style as it is set for this block. Highlight "
2602
  "button highlights background, wrapping div margin and code area."
2603
  msgstr ""
2604
 
2605
- #: includes/preview.php:2321
2606
  msgid ""
2607
  "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
2608
  "code was loaded from your AdSense account. The ad block is displayed on a "
@@ -2610,7 +2647,7 @@ msgid ""
2610
  "highlight ad block."
2611
  msgstr ""
2612
 
2613
- #: includes/preview.php:2327
2614
  msgid ""
2615
  "You can resize the window (and refresh the page to reload ads) to check "
2616
  "display with different screen widths.\n"
@@ -2618,7 +2655,7 @@ msgid ""
2618
  "settings will be copied to the active block."
2619
  msgstr ""
2620
 
2621
- #: includes/preview.php:2329
2622
  msgid ""
2623
  "Please note that the code, block name, alignment and style are taken from "
2624
  "the current block settings (may not be saved).\n"
@@ -2626,9 +2663,9 @@ msgid ""
2626
  "padding can't be set. However, you can use own HTML code for the block."
2627
  msgstr ""
2628
 
2629
- #: includes/preview.php:2334 includes/preview.php:2348
2630
- #: includes/preview.php:2358 includes/preview.php:2368
2631
- #: includes/preview.php:2378
2632
  msgid ""
2633
  "Ad Inserter can be configured to insert any code anywhere on the page. Each "
2634
  "code with it's settings is called a block.\n"
@@ -2642,9 +2679,9 @@ msgid ""
2642
  "and manual insertion."
2643
  msgstr ""
2644
 
2645
- #: includes/preview.php:2339 includes/preview.php:2353
2646
- #: includes/preview.php:2363 includes/preview.php:2373
2647
- #: includes/preview.php:2383
2648
  msgid ""
2649
  "Few very important things you need to know in order to insert code and "
2650
  "display some ad:\n"
@@ -2657,7 +2694,7 @@ msgid ""
2657
  "individual post/page exceptions."
2658
  msgstr ""
2659
 
2660
- #: includes/preview.php:2345
2661
  msgid ""
2662
  "This is a preview of the code for sticky ads. Here you can test various "
2663
  "horizontal and vertical alignments, close button locations, visually edit "
@@ -2672,7 +2709,7 @@ msgid ""
2672
  "Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
2673
  msgstr ""
2674
 
2675
- #: settings.php:202 settings.php:1195
2676
  msgid ""
2677
  "Settings for individual exceptions have been updated. Please check all "
2678
  "blocks that have exceptions and and then save settings."
@@ -2682,7 +2719,7 @@ msgstr ""
2682
  msgid "Online documentation"
2683
  msgstr ""
2684
 
2685
- #: settings.php:248 settings.php:789 settings.php:2289
2686
  msgid "Show AdSense ad units"
2687
  msgstr ""
2688
 
@@ -2690,7 +2727,7 @@ msgstr ""
2690
  msgid "Edit ads.txt file"
2691
  msgstr ""
2692
 
2693
- #: settings.php:260 settings.php:1138
2694
  msgid "Check theme for available positions for automatic insertion"
2695
  msgstr ""
2696
 
@@ -2815,315 +2852,315 @@ msgstr ""
2815
  msgid "General Settings"
2816
  msgstr ""
2817
 
2818
- #: settings.php:737 settings.php:2633 settings.php:2700 settings.php:2886
2819
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2820
  msgstr ""
2821
 
2822
- #: settings.php:744
2823
  msgid "Toggle tools"
2824
  msgstr ""
2825
 
2826
- #: settings.php:752
2827
  msgid "Process PHP code in block"
2828
  msgstr ""
2829
 
2830
- #: settings.php:759
2831
  msgid "Disable insertion of this block"
2832
  msgstr ""
2833
 
2834
- #: settings.php:771
2835
  msgid "Toggle code generator"
2836
  msgstr ""
2837
 
2838
- #: settings.php:775
2839
  msgid "Toggle rotation editor"
2840
  msgstr ""
2841
 
2842
- #: settings.php:779
2843
  msgid "Open visual HTML editor"
2844
  msgstr ""
2845
 
2846
- #: settings.php:798
2847
  msgid "Clear block"
2848
  msgstr ""
2849
 
2850
- #: settings.php:803 settings.php:4217
2851
  msgid "Copy block"
2852
  msgstr ""
2853
 
2854
- #: settings.php:807
2855
  msgid "Paste name"
2856
  msgstr ""
2857
 
2858
- #: settings.php:811
2859
  msgid "Paste code"
2860
  msgstr ""
2861
 
2862
- #: settings.php:815
2863
  msgid "Paste settings"
2864
  msgstr ""
2865
 
2866
- #: settings.php:819
2867
  msgid "Paste block (name, code and settings)"
2868
  msgstr ""
2869
 
2870
- #: settings.php:838
2871
  msgid "Rotation groups"
2872
  msgstr ""
2873
 
2874
- #: settings.php:842
2875
  msgid "Remove option"
2876
  msgstr ""
2877
 
2878
- #: settings.php:846
2879
  msgid "Add option"
2880
  msgstr ""
2881
 
2882
- #: settings.php:861
2883
  msgid "Import code"
2884
  msgstr ""
2885
 
2886
- #: settings.php:865
2887
  msgid "Generate code"
2888
  msgstr ""
2889
 
2890
- #: settings.php:870
2891
  msgid "Banner"
2892
  msgstr ""
2893
 
2894
- #: settings.php:881
2895
  msgid "Image"
2896
  msgstr ""
2897
 
2898
- #: settings.php:889
2899
  msgid "Link"
2900
  msgstr ""
2901
 
2902
- #: settings.php:900
2903
  msgid "Open link in a new tab"
2904
  msgstr ""
2905
 
2906
- #: settings.php:901
2907
  msgid "Select Image"
2908
  msgstr ""
2909
 
2910
- #: settings.php:902
2911
  msgid "Select Placeholder"
2912
  msgstr ""
2913
 
2914
- #: settings.php:914
2915
  msgid "Comment"
2916
  msgstr ""
2917
 
2918
- #: settings.php:923
2919
  msgctxt "AdSense"
2920
  msgid "Publisher ID"
2921
  msgstr ""
2922
 
2923
- #: settings.php:932
2924
  msgctxt "AdSense"
2925
  msgid "Ad Slot ID"
2926
  msgstr ""
2927
 
2928
- #: settings.php:941
2929
  msgid "Ad Type"
2930
  msgstr ""
2931
 
2932
- #: settings.php:966
2933
  msgid "AMP Ad"
2934
  msgstr ""
2935
 
2936
- #: settings.php:984
2937
  msgid "Show ad units from your AdSense account"
2938
  msgstr ""
2939
 
2940
- #: settings.php:984
2941
  msgid "AdSense ad units"
2942
  msgstr ""
2943
 
2944
- #: settings.php:1001
2945
  msgctxt "AdSense"
2946
  msgid "Layout"
2947
  msgstr ""
2948
 
2949
- #: settings.php:1010
2950
  msgctxt "AdSense"
2951
  msgid "Layout Key"
2952
  msgstr ""
2953
 
2954
- #: settings.php:1020
2955
  msgid "Full width"
2956
  msgstr ""
2957
 
2958
- #: settings.php:1022
2959
  msgctxt "Full width"
2960
  msgid "Enabled"
2961
  msgstr ""
2962
 
2963
- #: settings.php:1023
2964
  msgctxt "Full width"
2965
  msgid "Disabled"
2966
  msgstr ""
2967
 
2968
- #: settings.php:1104
2969
  msgid ""
2970
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2971
  "Cookie or Referer (domain)"
2972
  msgstr ""
2973
 
2974
- #: settings.php:1104
2975
  msgid "Lists"
2976
  msgstr ""
2977
 
2978
- #: settings.php:1105
2979
  msgid "Widget, Shortcode and PHP function call"
2980
  msgstr ""
2981
 
2982
- #: settings.php:1105
2983
  msgid "Manual"
2984
  msgstr ""
2985
 
2986
- #: settings.php:1106
2987
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2988
  msgstr ""
2989
 
2990
- #: settings.php:1106
2991
  msgid "Devices"
2992
  msgstr ""
2993
 
2994
- #: settings.php:1107
2995
  msgid ""
2996
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2997
  "feeds), Filter, Scheduling, General tag"
2998
  msgstr ""
2999
 
3000
- #: settings.php:1107
3001
  msgid "Misc"
3002
  msgstr ""
3003
 
3004
- #: settings.php:1108
3005
  msgid "Preview code and alignment"
3006
  msgstr ""
3007
 
3008
- #: settings.php:1111 settings.php:2273
3009
  msgid ""
3010
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3011
  "editor is active before saving settings."
3012
  msgstr ""
3013
 
3014
- #: settings.php:1124 settings.php:1125
3015
  msgid "Enable insertion on posts"
3016
  msgstr ""
3017
 
3018
- #: settings.php:1125 settings.php:3432
3019
  msgid "Posts"
3020
  msgstr ""
3021
 
3022
- #: settings.php:1129 settings.php:1130
3023
  msgid ""
3024
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3025
  "page or theme homepage (available positions may depend on hooks used by the "
3026
  "theme)"
3027
  msgstr ""
3028
 
3029
- #: settings.php:1130 settings.php:3434
3030
  msgid "Homepage"
3031
  msgstr ""
3032
 
3033
- #: settings.php:1134 settings.php:1135
3034
  msgid "Enable insertion on category blog pages (including sub-pages)"
3035
  msgstr ""
3036
 
3037
- #: settings.php:1135 settings.php:3435
3038
  msgid "Category pages"
3039
  msgstr ""
3040
 
3041
- #: settings.php:1145 settings.php:1146
3042
  msgid "Enable insertion on static pages"
3043
  msgstr ""
3044
 
3045
- #: settings.php:1146 settings.php:3433
3046
  msgid "Static pages"
3047
  msgstr ""
3048
 
3049
- #: settings.php:1150 settings.php:1151
3050
  msgid "Enable insertion on search blog pages"
3051
  msgstr ""
3052
 
3053
- #: settings.php:1151 settings.php:3437
3054
  msgid "Search pages"
3055
  msgstr ""
3056
 
3057
- #: settings.php:1155 settings.php:1156
3058
  msgid "Enable insertion on tag or archive blog pages"
3059
  msgstr ""
3060
 
3061
- #: settings.php:1159
3062
  msgid "Toggle settings for default insertion and list of individual exceptions"
3063
  msgstr ""
3064
 
3065
- #: settings.php:1171
3066
  msgid ""
3067
  "Enable individual post/page exceptions for insertion of this block. They can "
3068
  "be configured on the individual post/page editor page (in the settings below "
3069
  "the editor)."
3070
  msgstr ""
3071
 
3072
- #: settings.php:1172
3073
  msgid ""
3074
  "Enable individual post/page exceptions for insertion of this block. When "
3075
  "enabled they can be configured on the individual post/page editor page (in "
3076
  "the settings below the editor)."
3077
  msgstr ""
3078
 
3079
- #: settings.php:1172
3080
  msgid "Use exceptions for individual posts or pages to change insertion"
3081
  msgstr ""
3082
 
3083
  #. Translators: Enabled means...
3084
- #: settings.php:1180
3085
  msgid ""
3086
  "means the insertion for this block is enabled by default and disabled for "
3087
  "exceptions."
3088
  msgstr ""
3089
 
3090
  #. Translators: Disabled means...
3091
- #: settings.php:1181
3092
  msgid ""
3093
  "means the insertion for this block is disabled by default and enabled for "
3094
  "exceptions."
3095
  msgstr ""
3096
 
3097
- #: settings.php:1182
3098
  msgid ""
3099
  "When individual post/page exceptions are enabled they can be configured on "
3100
  "the individual post/page editor page (in the settings below the editor)."
3101
  msgstr ""
3102
 
3103
- #: settings.php:1190
3104
  msgid ""
3105
  "No exception for post or static page defined. Block will not be inserted."
3106
  msgstr ""
3107
 
3108
- #: settings.php:1208
3109
  msgctxt "post"
3110
  msgid "Type"
3111
  msgstr ""
3112
 
3113
  #. translators: %d: block number
3114
- #: settings.php:1210
3115
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3116
  msgstr ""
3117
 
3118
- #: settings.php:1211
3119
  msgid "Clear listed exceptions for block"
3120
  msgstr ""
3121
 
3122
- #: settings.php:1237 settings.php:1385 settings.php:2047
3123
  msgid "Insertion"
3124
  msgstr ""
3125
 
3126
- #: settings.php:1275
3127
  msgid ""
3128
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3129
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -3133,7 +3170,7 @@ msgid ""
3133
  "negative number means counting from the opposite direction"
3134
  msgstr ""
3135
 
3136
- #: settings.php:1276
3137
  msgid ""
3138
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3139
  "means every N images, empty means all images, 0 means random image, value "
@@ -3143,285 +3180,312 @@ msgid ""
3143
  "direction"
3144
  msgstr ""
3145
 
3146
- #: settings.php:1289
3147
  msgid ""
3148
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3149
  "numbers, %N means every N excerpts, empty means all excerpts"
3150
  msgstr ""
3151
 
3152
- #: settings.php:1290
3153
  msgid ""
3154
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3155
  "numbers, %N means every N posts, empty means all posts"
3156
  msgstr ""
3157
 
3158
- #: settings.php:1291
3159
  msgid ""
3160
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3161
  "numbers, %N means every N comments, empty means all comments"
3162
  msgstr ""
3163
 
3164
- #: settings.php:1298
3165
  msgid "Toggle paragraph counting settings"
3166
  msgstr ""
3167
 
3168
- #: settings.php:1299
3169
  msgid "Toggle paragraph clearance settings"
3170
  msgstr ""
3171
 
3172
- #: settings.php:1302
3173
  msgid "Toggle insertion filter settings"
3174
  msgstr ""
3175
 
3176
- #: settings.php:1320
3177
  msgid "Toggle insertion and alignment icons"
3178
  msgstr ""
3179
 
3180
- #: settings.php:1334
3181
  msgid "Custom CSS code for the wrapping div"
3182
  msgstr ""
3183
 
3184
- #: settings.php:1337 settings.php:1338 settings.php:1339 settings.php:1340
3185
- #: settings.php:1341 settings.php:1342
3186
  msgid "CSS code for the wrapping div, click to edit"
3187
  msgstr ""
3188
 
3189
- #: settings.php:1355
3190
  msgid "HTML element"
3191
  msgstr ""
3192
 
3193
- #: settings.php:1368
3194
  msgid "HTML element selector or comma separated list of selectors"
3195
  msgstr ""
3196
 
3197
- #: settings.php:1374 settings.php:2791
3198
  msgid "Action"
3199
  msgstr ""
3200
 
3201
- #: settings.php:1386
3202
  msgid ""
3203
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3204
  "Server-side insertion inserts block when the page is generated but needs "
3205
  "Output buffering enabled."
3206
  msgstr ""
3207
 
3208
- #: settings.php:1395
3209
  msgid "Code position"
3210
  msgstr ""
3211
 
3212
- #: settings.php:1396
3213
  msgid ""
3214
  "Page position where the code for client-side insertion will be inserted."
3215
  msgstr ""
3216
 
3217
- #: settings.php:1411
3218
  msgid "Count"
3219
  msgstr ""
3220
 
3221
- #: settings.php:1417
3222
  msgid "paragraphs with tags"
3223
  msgstr ""
3224
 
3225
- #: settings.php:1423
3226
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3227
  msgstr ""
3228
 
3229
- #: settings.php:1432
3230
  msgid "that have between"
3231
  msgstr ""
3232
 
3233
- #: settings.php:1438
3234
  msgid "Minimum number of paragraph words, leave empty for no limit"
3235
  msgstr ""
3236
 
3237
- #: settings.php:1447
3238
  msgid "Maximum number of paragraph words, leave empty for no limit"
3239
  msgstr ""
3240
 
3241
- #: settings.php:1450
3242
  msgid "words"
3243
  msgstr ""
3244
 
3245
- #: settings.php:1465 settings.php:1524 settings.php:1594 settings.php:1620
3246
  msgid "Comma separated texts"
3247
  msgstr ""
3248
 
3249
- #: settings.php:1478
3250
  msgid ""
3251
  "Count also paragraphs inside these elements - defined on general plugin "
3252
  "settings page - tab [*] / tab General"
3253
  msgstr ""
3254
 
3255
  #. Translators: %s: HTML tags
3256
- #: settings.php:1484
3257
  msgid "Count inside %s elements"
3258
  msgstr ""
3259
 
3260
  #. translators: inside [HTML tags] elements that contain
3261
- #: settings.php:1496
3262
  msgid "inside"
3263
  msgstr ""
3264
 
3265
- #: settings.php:1502
3266
  msgid "Comma separated HTML tag names of container elements"
3267
  msgstr ""
3268
 
3269
  #. translators: inside [HTML tags] elements that contain
3270
- #: settings.php:1511
3271
  msgid "elements that"
3272
  msgstr ""
3273
 
3274
- #: settings.php:1537 settings.php:2170
3275
- msgid "Post/Static page must have between"
3276
- msgstr ""
 
 
 
3277
 
3278
- #: settings.php:1543
3279
- msgid "Minimum number of paragraphs, leave empty for no limit"
 
 
3280
  msgstr ""
3281
 
3282
- #: settings.php:1552
3283
- msgid "Maximum number of paragraphs, leave empty for no limit"
 
 
 
 
 
 
 
 
 
3284
  msgstr ""
3285
 
 
3286
  #. Translators: Post/Static page must have between X and Y paragraphs
3287
- #: settings.php:1555
3288
  msgid "paragraph"
3289
  msgid_plural "paragraphs"
3290
  msgstr[0] ""
3291
  msgstr[1] ""
3292
 
3293
- #: settings.php:1563
 
 
 
 
 
 
 
 
 
 
 
 
3294
  msgid "Minimum number of words in paragraphs above"
3295
  msgstr ""
3296
 
3297
- #: settings.php:1569
3298
  msgid ""
3299
  "Used only with automatic insertion After paragraph and empty paragraph "
3300
  "numbers"
3301
  msgstr ""
3302
 
3303
- #: settings.php:1579 settings.php:1605
3304
  msgid "In"
3305
  msgstr ""
3306
 
3307
- #: settings.php:1585
3308
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3309
  msgstr ""
3310
 
3311
- #: settings.php:1588
3312
  msgid "paragraphs above avoid"
3313
  msgstr ""
3314
 
3315
- #: settings.php:1611
3316
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3317
  msgstr ""
3318
 
3319
- #: settings.php:1614
3320
  msgid "paragraphs below avoid"
3321
  msgstr ""
3322
 
3323
- #: settings.php:1630
3324
  msgid "If text is found"
3325
  msgstr ""
3326
 
3327
- #: settings.php:1637
3328
  msgid "check up to"
3329
  msgstr ""
3330
 
3331
- #: settings.php:1645
3332
  msgctxt "check up to"
3333
  msgid "paragraphs"
3334
  msgstr ""
3335
 
3336
- #: settings.php:1661
3337
  msgid "Categories"
3338
  msgstr ""
3339
 
3340
- #: settings.php:1664
3341
  msgid "Toggle category editor"
3342
  msgstr ""
3343
 
3344
- #: settings.php:1667
3345
  msgid "Comma separated category slugs"
3346
  msgstr ""
3347
 
3348
- #: settings.php:1676
3349
  msgid "Blacklist categories"
3350
  msgstr ""
3351
 
3352
- #: settings.php:1680
3353
  msgid "Whitelist categories"
3354
  msgstr ""
3355
 
3356
- #: settings.php:1692
3357
  msgid "Tags"
3358
  msgstr ""
3359
 
3360
- #: settings.php:1695
3361
  msgid "Toggle tag editor"
3362
  msgstr ""
3363
 
3364
- #: settings.php:1698
3365
  msgid "Comma separated tag slugs"
3366
  msgstr ""
3367
 
3368
- #: settings.php:1707
3369
  msgid "Blacklist tags"
3370
  msgstr ""
3371
 
3372
- #: settings.php:1711
3373
  msgid "Whitelist tags"
3374
  msgstr ""
3375
 
3376
- #: settings.php:1723
3377
  msgid "Taxonomies"
3378
  msgstr ""
3379
 
3380
- #: settings.php:1726
3381
  msgid "Toggle taxonomy editor"
3382
  msgstr ""
3383
 
3384
- #: settings.php:1729
3385
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3386
  msgstr ""
3387
 
3388
- #: settings.php:1738
3389
  msgid "Blacklist taxonomies"
3390
  msgstr ""
3391
 
3392
- #: settings.php:1742
3393
  msgid "Whitelist taxonomies"
3394
  msgstr ""
3395
 
3396
- #: settings.php:1754
3397
  msgid "Post IDs"
3398
  msgstr ""
3399
 
3400
- #: settings.php:1757
3401
  msgid "Toggle post/page ID editor"
3402
  msgstr ""
3403
 
3404
- #: settings.php:1760
3405
  msgid "Comma separated post/page IDs"
3406
  msgstr ""
3407
 
3408
- #: settings.php:1769
3409
  msgid "Blacklist IDs"
3410
  msgstr ""
3411
 
3412
- #: settings.php:1773
3413
  msgid "Whitelist IDs"
3414
  msgstr ""
3415
 
3416
- #: settings.php:1785
3417
  msgid "Urls"
3418
  msgstr ""
3419
 
3420
- #: settings.php:1788
3421
  msgid "Toggle url editor"
3422
  msgstr ""
3423
 
3424
- #: settings.php:1791
3425
  msgid ""
3426
  "Comma separated urls (page addresses) starting with / after domain name (e."
3427
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -3429,236 +3493,236 @@ msgid ""
3429
  "start*. *url-pattern*, *url-end)"
3430
  msgstr ""
3431
 
3432
- #: settings.php:1800
3433
  msgid "Blacklist urls"
3434
  msgstr ""
3435
 
3436
- #: settings.php:1804
3437
  msgid "Whitelist urls"
3438
  msgstr ""
3439
 
3440
- #: settings.php:1815
3441
  msgid "Url parameters"
3442
  msgstr ""
3443
 
3444
- #: settings.php:1819
3445
  msgid "Toggle url parameter and cookie editor"
3446
  msgstr ""
3447
 
3448
- #: settings.php:1822
3449
  msgid ""
3450
  "Comma separated url query parameters or cookies with optional values (use "
3451
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
3452
  msgstr ""
3453
 
3454
- #: settings.php:1831
3455
  msgid "Blacklist url parameters"
3456
  msgstr ""
3457
 
3458
- #: settings.php:1835
3459
  msgid "Whitelist url parameters"
3460
  msgstr ""
3461
 
3462
- #: settings.php:1846
3463
  msgid "Referrers"
3464
  msgstr ""
3465
 
3466
- #: settings.php:1849
3467
  msgid "Toggle referer editor"
3468
  msgstr ""
3469
 
3470
- #: settings.php:1852
3471
  msgid ""
3472
  "Comma separated domains, use # for no referrer, you can also use partial "
3473
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3474
  msgstr ""
3475
 
3476
- #: settings.php:1861
3477
  msgid "Blacklist referers"
3478
  msgstr ""
3479
 
3480
- #: settings.php:1865
3481
  msgid "Whitelist referers"
3482
  msgstr ""
3483
 
3484
- #: settings.php:1876
3485
  msgid "Clients"
3486
  msgstr ""
3487
 
3488
- #: settings.php:1879
3489
  msgid "Toggle client editor"
3490
  msgstr ""
3491
 
3492
- #: settings.php:1882
3493
  msgid "Comma separated names (operating systems, browsers, devices)"
3494
  msgstr ""
3495
 
3496
- #: settings.php:1891
3497
  msgid "Blacklist clients"
3498
  msgstr ""
3499
 
3500
- #: settings.php:1895
3501
  msgid "Whitelist clients"
3502
  msgstr ""
3503
 
3504
- #: settings.php:1916
3505
  msgid "Enable widget for this block"
3506
  msgstr ""
3507
 
3508
- #: settings.php:1928
3509
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3510
  msgstr ""
3511
 
3512
- #: settings.php:1929 settings.php:4274
3513
  msgid "Shortcode"
3514
  msgstr ""
3515
 
3516
- #: settings.php:1944
3517
  msgid ""
3518
  "Enable PHP function call to insert this block at any position in theme file. "
3519
  "If function is disabled for block it will return empty string."
3520
  msgstr ""
3521
 
3522
- #: settings.php:1945
3523
  msgid "PHP function"
3524
  msgstr ""
3525
 
3526
- #: settings.php:1960
3527
  msgid "Client-side device detection"
3528
  msgstr ""
3529
 
3530
- #: settings.php:1961
3531
  msgid "Server-side device detection"
3532
  msgstr ""
3533
 
3534
- #: settings.php:1968
3535
  msgid "Use client-side detection to"
3536
  msgstr ""
3537
 
3538
- #: settings.php:1970
3539
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3540
  msgstr ""
3541
 
3542
  #. Translators: only on (the following devices): viewport names (devices)
3543
  #. listed
3544
- #: settings.php:1975
3545
  msgid "only on"
3546
  msgstr ""
3547
 
3548
- #: settings.php:2003
3549
  msgid "Device min width %s px"
3550
  msgstr ""
3551
 
3552
- #: settings.php:2029
3553
  msgid "Use server-side detection to insert block only for"
3554
  msgstr ""
3555
 
3556
- #: settings.php:2048
3557
  msgid "Filter"
3558
  msgstr ""
3559
 
3560
- #: settings.php:2049
3561
  msgid "Word Count"
3562
  msgstr ""
3563
 
3564
- #: settings.php:2050 settings.php:4264
3565
  msgid "Scheduling"
3566
  msgstr ""
3567
 
3568
- #: settings.php:2051
3569
  msgid "Display"
3570
  msgstr ""
3571
 
3572
- #: settings.php:2053 settings.php:2315
3573
  msgid "General"
3574
  msgstr ""
3575
 
3576
- #: settings.php:2065
3577
  msgid "Old settings for AMP pages detected"
3578
  msgstr ""
3579
 
3580
- #: settings.php:2065
3581
  msgid ""
3582
  "To insert different codes on normal and AMP pages separate them with "
3583
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3584
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3585
  msgstr ""
3586
 
3587
- #: settings.php:2065
3588
  msgid "AMP pages"
3589
  msgstr ""
3590
 
3591
- #: settings.php:2070
3592
  msgid "Enable insertion for Ajax requests"
3593
  msgstr ""
3594
 
3595
- #: settings.php:2070
3596
  msgid "Ajax requests"
3597
  msgstr ""
3598
 
3599
- #: settings.php:2075
3600
  msgid "Enable insertion in RSS feeds"
3601
  msgstr ""
3602
 
3603
- #: settings.php:2075
3604
  msgid "RSS Feed"
3605
  msgstr ""
3606
 
3607
- #: settings.php:2080
3608
  msgid "Enable insertion on page for Error 404: Page not found"
3609
  msgstr ""
3610
 
3611
- #: settings.php:2080
3612
  msgid "Error 404 page"
3613
  msgstr ""
3614
 
3615
- #: settings.php:2092
3616
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3617
  msgstr ""
3618
 
3619
- #: settings.php:2093
3620
  msgid "insertions"
3621
  msgstr ""
3622
 
3623
- #: settings.php:2095
3624
  msgid ""
3625
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3626
  "General)"
3627
  msgstr ""
3628
 
3629
- #: settings.php:2098 settings.php:2495
3630
  msgid "Max blocks per page"
3631
  msgstr ""
3632
 
3633
- #: settings.php:2110
3634
  msgid "Insert for"
3635
  msgstr ""
3636
 
3637
- #: settings.php:2118
3638
  msgid ""
3639
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3640
  "currently active). Might speed up insertion on content pages when "
3641
  "the_content filter is called multiple times."
3642
  msgstr ""
3643
 
3644
- #: settings.php:2121
3645
  msgid "Insert only in the loop"
3646
  msgstr ""
3647
 
3648
- #: settings.php:2127
3649
  msgid ""
3650
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3651
  msgstr ""
3652
 
3653
- #: settings.php:2127
3654
  msgid "Disable caching"
3655
  msgstr ""
3656
 
3657
- #: settings.php:2139
3658
  msgid "Filter insertions"
3659
  msgstr ""
3660
 
3661
- #: settings.php:2142
3662
  msgid ""
3663
  "Filter multiple insertions by specifying wanted insertions for this block - "
3664
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -3666,548 +3730,548 @@ msgid ""
3666
  "using only one insertion type."
3667
  msgstr ""
3668
 
3669
- #: settings.php:2145
3670
  msgid "using"
3671
  msgstr ""
3672
 
3673
- #: settings.php:2164
3674
  msgid "Checked means specified calls are unwanted"
3675
  msgstr ""
3676
 
3677
- #: settings.php:2164
3678
  msgid "Invert filter"
3679
  msgstr ""
3680
 
3681
- #: settings.php:2171
3682
  msgid "Minimum number of post/static page words, leave empty for no limit"
3683
  msgstr ""
3684
 
3685
- #: settings.php:2173
3686
  msgid "Maximum number of post/static page words, leave empty for no limit"
3687
  msgstr ""
3688
 
3689
- #: settings.php:2186
3690
  msgid "for"
3691
  msgstr ""
3692
 
3693
- #: settings.php:2186
3694
  msgid "days after publishing"
3695
  msgstr ""
3696
 
3697
- #: settings.php:2188
3698
  msgid "Not available"
3699
  msgstr ""
3700
 
3701
- #: settings.php:2201 settings.php:2487
3702
  msgid "Ad label"
3703
  msgstr ""
3704
 
3705
- #: settings.php:2221
3706
  msgid "General tag"
3707
  msgstr ""
3708
 
3709
- #: settings.php:2225
3710
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3711
  msgstr ""
3712
 
3713
  #. translators: %s: HTML tags
3714
- #: settings.php:2234
3715
  msgid ""
3716
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
3717
  "client-side device detection!"
3718
  msgstr ""
3719
 
3720
  #. translators: %s: HTML tags for text and link
3721
- #: settings.php:2248
3722
  msgid ""
3723
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
3724
  "side %s insertion. Use %s Server-side %s insertion."
3725
  msgstr ""
3726
 
3727
- #: settings.php:2264
3728
  msgid "Settings"
3729
  msgstr ""
3730
 
3731
- #: settings.php:2267
3732
  msgid "Settings timestamp"
3733
  msgstr ""
3734
 
3735
- #: settings.php:2280
3736
  msgid "Are you sure you want to reset all settings?"
3737
  msgstr ""
3738
 
3739
- #: settings.php:2280
3740
  msgid "Reset All Settings"
3741
  msgstr ""
3742
 
3743
- #: settings.php:2316
3744
  msgid "Viewports"
3745
  msgstr ""
3746
 
3747
- #: settings.php:2317
3748
  msgid "Hooks"
3749
  msgstr ""
3750
 
3751
- #: settings.php:2318
3752
  msgid "Header"
3753
  msgstr ""
3754
 
3755
- #: settings.php:2319 strings.php:30
3756
  msgid "Footer"
3757
  msgstr ""
3758
 
3759
- #: settings.php:2324
3760
  msgid "Debugging"
3761
  msgstr ""
3762
 
3763
- #: settings.php:2334
3764
  msgid "Plugin priority"
3765
  msgstr ""
3766
 
3767
- #: settings.php:2342
3768
  msgid "Output buffering"
3769
  msgstr ""
3770
 
3771
- #: settings.php:2345
3772
  msgid "Needed for position Above header but may not work with all themes"
3773
  msgstr ""
3774
 
3775
- #: settings.php:2353
3776
  msgid "Syntax highlighting theme"
3777
  msgstr ""
3778
 
3779
- #: settings.php:2360
3780
  msgctxt "no syntax highlighting themes"
3781
  msgid "None"
3782
  msgstr ""
3783
 
3784
- #: settings.php:2361
3785
  msgid "No Syntax Highlighting"
3786
  msgstr ""
3787
 
3788
- #: settings.php:2363
3789
  msgctxt "syntax highlighting themes"
3790
  msgid "Light"
3791
  msgstr ""
3792
 
3793
- #: settings.php:2378
3794
  msgctxt "syntax highlighting themes"
3795
  msgid "Dark"
3796
  msgstr ""
3797
 
3798
- #: settings.php:2404
3799
  msgid "Min. user role for ind. exceptions editing"
3800
  msgstr ""
3801
 
3802
- #: settings.php:2414
3803
  msgid "Disable caching for logged in administrators"
3804
  msgstr ""
3805
 
3806
- #: settings.php:2417
3807
  msgid ""
3808
  "Enabled means that logged in administrators will see non-cached (live) pages "
3809
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3810
  msgstr ""
3811
 
3812
- #: settings.php:2425
3813
  msgid "Wait for jQuery"
3814
  msgstr ""
3815
 
3816
- #: settings.php:2428
3817
  msgid ""
3818
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
3819
  "it will run the scripts that may need it"
3820
  msgstr ""
3821
 
3822
- #: settings.php:2436
3823
  msgid "Sticky widget mode"
3824
  msgstr ""
3825
 
3826
- #: settings.php:2439
3827
  msgid ""
3828
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3829
  "mode works with most themes but may reload ads on page load."
3830
  msgstr ""
3831
 
3832
- #: settings.php:2447
3833
  msgid "Sticky widget top margin"
3834
  msgstr ""
3835
 
3836
- #: settings.php:2455
3837
  msgid "Dynamic blocks"
3838
  msgstr ""
3839
 
3840
- #: settings.php:2468
3841
  msgid "Functions for paragraph counting"
3842
  msgstr ""
3843
 
3844
- #: settings.php:2471
3845
  msgid ""
3846
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3847
  "functions if paragraphs are not counted properly on non-english pages."
3848
  msgstr ""
3849
 
3850
- #: settings.php:2479
3851
  msgid "No paragraph counting inside"
3852
  msgstr ""
3853
 
3854
- #: settings.php:2490
3855
  msgid "Label text or HTML code"
3856
  msgstr ""
3857
 
3858
- #: settings.php:2498
3859
  msgid ""
3860
  "Maximum number of inserted blocks per page. You need to enable Max page "
3861
  "insertions (button Misc / tab Insertion) to count block for this limit."
3862
  msgstr ""
3863
 
3864
- #: settings.php:2512
3865
  msgid "Plugin usage tracking"
3866
  msgstr ""
3867
 
3868
  #. translators: %s: Ad Inserter
3869
- #: settings.php:2515
3870
  msgid ""
3871
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3872
  "Only information regarding the WordPress environment and %s usage is "
3873
  "recorded (once per month and on events like plugin activation/deactivation)."
3874
  msgstr ""
3875
 
3876
- #: settings.php:2533
3877
  msgid "CSS class name for the wrapping div"
3878
  msgstr ""
3879
 
3880
- #: settings.php:2533
3881
  msgid "Block class name"
3882
  msgstr ""
3883
 
3884
- #: settings.php:2539
3885
  msgid "Include block number class"
3886
  msgstr ""
3887
 
3888
- #: settings.php:2539
3889
  msgid "Block number class"
3890
  msgstr ""
3891
 
3892
- #: settings.php:2544
3893
  msgid "Include block name class"
3894
  msgstr ""
3895
 
3896
- #: settings.php:2544
3897
  msgid "Block name class"
3898
  msgstr ""
3899
 
3900
- #: settings.php:2549
3901
  msgid ""
3902
  "Instead of alignment classes generate inline alignment styles for blocks"
3903
  msgstr ""
3904
 
3905
- #: settings.php:2549
3906
  msgid "Inline styles"
3907
  msgstr ""
3908
 
3909
- #: settings.php:2555
3910
  msgid "Preview of the block wrapping code"
3911
  msgstr ""
3912
 
3913
- #: settings.php:2556
3914
  msgid "Wrapping div"
3915
  msgstr ""
3916
 
3917
- #: settings.php:2557 settings.php:2997
3918
  msgid "BLOCK CODE"
3919
  msgstr ""
3920
 
3921
- #: settings.php:2565
3922
  msgid "Viewport Settings used for client-side device detection"
3923
  msgstr ""
3924
 
3925
  #. Translators: %d: viewport number
3926
- #: settings.php:2573
3927
  msgid "Viewport %d name"
3928
  msgstr ""
3929
 
3930
- #: settings.php:2576
3931
  msgid "min width"
3932
  msgstr ""
3933
 
3934
- #: settings.php:2587
3935
  msgid "Custom Hooks"
3936
  msgstr ""
3937
 
3938
- #: settings.php:2599 settings.php:2602
3939
  msgid "Enable hook"
3940
  msgstr ""
3941
 
3942
  #. translators: %d: hook number
3943
- #: settings.php:2602
3944
  msgid "Hook %d name"
3945
  msgstr ""
3946
 
3947
- #: settings.php:2605
3948
  msgid "Hook name for automatic insertion selection"
3949
  msgstr ""
3950
 
3951
- #: settings.php:2608
3952
  msgid "action"
3953
  msgstr ""
3954
 
3955
- #: settings.php:2611
3956
  msgid "Action name as used in the do_action () function"
3957
  msgstr ""
3958
 
3959
- #: settings.php:2614
3960
  msgid "priority"
3961
  msgstr ""
3962
 
3963
- #: settings.php:2617
3964
  msgid "Priority for the hook (default is 10)"
3965
  msgstr ""
3966
 
3967
- #: settings.php:2638
3968
  msgid "Enable insertion of this code into HTML page header"
3969
  msgstr ""
3970
 
3971
- #: settings.php:2642 settings.php:2709 settings.php:2891
3972
  msgid "Process PHP code"
3973
  msgstr ""
3974
 
3975
- #: settings.php:2646
3976
  msgid "HTML Page Header Code"
3977
  msgstr ""
3978
 
3979
- #: settings.php:2654
3980
  msgid "Code in the %s section of the HTML page"
3981
  msgstr ""
3982
 
3983
- #: settings.php:2655
3984
  msgctxt "code in the header"
3985
  msgid "NOT ENABLED"
3986
  msgstr ""
3987
 
3988
- #: settings.php:2672 settings.php:2740
3989
  msgid "Use server-side detection to insert code only for"
3990
  msgstr ""
3991
 
3992
- #: settings.php:2687
3993
  msgid ""
3994
  "Enable insertion of this code into HTML page header on page for Error 404: "
3995
  "Page not found"
3996
  msgstr ""
3997
 
3998
- #: settings.php:2687 settings.php:2755
3999
  msgid "Insert on Error 404 page"
4000
  msgstr ""
4001
 
4002
- #: settings.php:2705
4003
  msgid "Enable insertion of this code into HTML page footer"
4004
  msgstr ""
4005
 
4006
- #: settings.php:2713
4007
  msgid "HTML Page Footer Code"
4008
  msgstr ""
4009
 
4010
  #. translators: %s: HTML tags
4011
- #: settings.php:2721
4012
  msgid "Code before the %s tag of the the HTML page"
4013
  msgstr ""
4014
 
4015
- #: settings.php:2722
4016
  msgctxt "code in the footer"
4017
  msgid "NOT ENABLED"
4018
  msgstr ""
4019
 
4020
- #: settings.php:2755
4021
  msgid ""
4022
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4023
  "Page not found"
4024
  msgstr ""
4025
 
4026
- #: settings.php:2771
4027
  msgid "Code for ad blocking detection inserted. Click for details."
4028
  msgstr ""
4029
 
4030
- #: settings.php:2776
4031
  msgid "Enable detection of ad blocking"
4032
  msgstr ""
4033
 
4034
- #: settings.php:2794
4035
  msgid "Global action when ad blocking is detected"
4036
  msgstr ""
4037
 
4038
- #: settings.php:2800
4039
  msgid "No action for"
4040
  msgstr ""
4041
 
4042
- #: settings.php:2801
4043
  msgid "Exceptions for global action when ad blocking is detected."
4044
  msgstr ""
4045
 
4046
- #: settings.php:2811
4047
  msgid "Delay Action"
4048
  msgstr ""
4049
 
4050
- #: settings.php:2814
4051
  msgid ""
4052
  "Number of page views to delay action when ad blocking is detected. Leave "
4053
  "empty for no delay (action fires on first page view). Sets cookie."
4054
  msgstr ""
4055
 
4056
- #: settings.php:2814
4057
  msgctxt "Delay Action for x "
4058
  msgid "page views"
4059
  msgstr ""
4060
 
4061
- #: settings.php:2819
4062
  msgid "No Action Period"
4063
  msgstr ""
4064
 
4065
- #: settings.php:2822
4066
  msgid ""
4067
  "Number of days to supress action when ad blocking is detected. Leave empty "
4068
  "for no no-action period (action fires always after defined page view delay). "
4069
  "Sets cookie."
4070
  msgstr ""
4071
 
4072
- #: settings.php:2822
4073
  msgctxt "no action period"
4074
  msgid "days"
4075
  msgstr ""
4076
 
4077
- #: settings.php:2827
4078
  msgid "Custom Selectors"
4079
  msgstr ""
4080
 
4081
- #: settings.php:2830
4082
  msgid ""
4083
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4084
  "blocking detection. Invisible element or element with zero height means ad "
4085
  "blocking is present."
4086
  msgstr ""
4087
 
4088
- #: settings.php:2842
4089
  msgid "Redirection Page"
4090
  msgstr ""
4091
 
4092
- #: settings.php:2854
4093
  msgid "Custom Url"
4094
  msgstr ""
4095
 
4096
- #: settings.php:2859
4097
  msgid ""
4098
  "Static page for redirection when ad blocking is detected. For other pages "
4099
  "select Custom url and set it below."
4100
  msgstr ""
4101
 
4102
- #: settings.php:2868
4103
  msgid "Custom Redirection Url"
4104
  msgstr ""
4105
 
4106
- #: settings.php:2880
4107
  msgid "Message HTML code"
4108
  msgstr ""
4109
 
4110
- #: settings.php:2893
4111
  msgid "Preview message when ad blocking is detected"
4112
  msgstr ""
4113
 
4114
- #: settings.php:2922
4115
  msgid "Prevent visitors from closing the warning message"
4116
  msgstr ""
4117
 
4118
- #: settings.php:2922
4119
  msgid "Undismissible Message"
4120
  msgstr ""
4121
 
4122
- #: settings.php:2928
4123
  msgid "Not undismissible for"
4124
  msgstr ""
4125
 
4126
- #: settings.php:2929
4127
  msgid "Users which can close the warning message."
4128
  msgstr ""
4129
 
4130
- #: settings.php:2943
4131
  msgid ""
4132
  "Force showing admin toolbar for administrators when viewing site. Enable "
4133
  "this option when you are logged in as admin and you don't see admin toolbar."
4134
  msgstr ""
4135
 
4136
- #: settings.php:2951
4137
  msgid "Disable header code (Header tab)"
4138
  msgstr ""
4139
 
4140
- #: settings.php:2955
4141
  msgid "Disable footer code (Footer tab)"
4142
  msgstr ""
4143
 
4144
  #. translators: %s: Ad Inserter
4145
- #: settings.php:2959
4146
  msgid "Disable %s JavaScript code"
4147
  msgstr ""
4148
 
4149
  #. translators: %s: Ad Inserter
4150
- #: settings.php:2963
4151
  msgid "Disable %s CSS code"
4152
  msgstr ""
4153
 
4154
- #: settings.php:2967
4155
  msgid ""
4156
  "Disable PHP code processing (in all blocks including header and footer code)"
4157
  msgstr ""
4158
 
4159
- #: settings.php:2971
4160
  msgid "Disable insertion of all blocks"
4161
  msgstr ""
4162
 
4163
- #: settings.php:2975
4164
  msgid "Disable insertions"
4165
  msgstr ""
4166
 
4167
  #. translators: %s: Ad Inserter
4168
- #: settings.php:2987
4169
  msgid "%s CSS CODE"
4170
  msgstr ""
4171
 
4172
- #: settings.php:2990
4173
  msgid "HEADER CODE"
4174
  msgstr ""
4175
 
4176
  #. translators: %s: PHP tags
4177
- #: settings.php:2996
4178
  msgid "BLOCK PHP CODE"
4179
  msgstr ""
4180
 
4181
  #. translators: %s: Ad Inserter
4182
- #: settings.php:3002
4183
  msgid "%s JS CODE"
4184
  msgstr ""
4185
 
4186
- #: settings.php:3005
4187
  msgid "FOOTER CODE"
4188
  msgstr ""
4189
 
4190
- #: settings.php:3014
4191
  msgid "Force showing admin toolbar when viewing site"
4192
  msgstr ""
4193
 
4194
- #: settings.php:3021
4195
  msgid "Enable debugging functions in admin toolbar"
4196
  msgstr ""
4197
 
4198
- #: settings.php:3023
4199
  msgid "Debugging functions in admin toolbar"
4200
  msgstr ""
4201
 
4202
- #: settings.php:3030
4203
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4204
  msgstr ""
4205
 
4206
- #: settings.php:3032
4207
  msgid "Debugging functions on mobile screens"
4208
  msgstr ""
4209
 
4210
- #: settings.php:3039
4211
  msgid ""
4212
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4213
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -4216,232 +4280,232 @@ msgid ""
4216
  "administrators debugging is always enabled."
4217
  msgstr ""
4218
 
4219
- #: settings.php:3041
4220
  msgid "Remote debugging"
4221
  msgstr ""
4222
 
4223
- #: settings.php:3048
4224
  msgid ""
4225
  "Disable translation to see original texts for the settings and messages in "
4226
  "English"
4227
  msgstr ""
4228
 
4229
- #: settings.php:3050
4230
  msgid "Disable translation"
4231
  msgstr ""
4232
 
4233
- #: settings.php:3420
4234
  msgid "Available positions for current theme"
4235
  msgstr ""
4236
 
4237
- #: settings.php:3421
4238
  msgid "Error checking pages"
4239
  msgstr ""
4240
 
4241
- #: settings.php:3424
4242
  msgid "Toggle theme checker for available positions for automatic insertion"
4243
  msgstr ""
4244
 
4245
- #: settings.php:3424
4246
  msgctxt "Button"
4247
  msgid "Check"
4248
  msgstr ""
4249
 
4250
- #: settings.php:3431
4251
  msgid "Position"
4252
  msgstr ""
4253
 
4254
- #: settings.php:3436
4255
  msgid "Archive pages"
4256
  msgstr ""
4257
 
4258
- #: settings.php:3495
4259
  msgid ""
4260
  "Position not available because output buffering (tab [*]) is not enabled"
4261
  msgstr ""
4262
 
4263
- #: settings.php:3498 strings.php:231
4264
  msgid "Position not checked yet"
4265
  msgstr ""
4266
 
4267
- #: settings.php:3534
4268
  msgid "Toggle active/all blocks"
4269
  msgstr ""
4270
 
4271
- #: settings.php:3538 strings.php:218
4272
  msgid "Rearrange block order"
4273
  msgstr ""
4274
 
4275
- #: settings.php:3543
4276
  msgid "Save new block order"
4277
  msgstr ""
4278
 
4279
- #: settings.php:3569
4280
  msgid "Toggle active/all ad units"
4281
  msgstr ""
4282
 
4283
- #: settings.php:3573
4284
  msgid "Reload AdSense ad units"
4285
  msgstr ""
4286
 
4287
- #: settings.php:3577
4288
  msgid "Clear authorization to access AdSense account"
4289
  msgstr ""
4290
 
4291
- #: settings.php:3581 settings.php:4431 settings.php:4498 strings.php:226
4292
  msgid "Google AdSense Homepage"
4293
  msgstr ""
4294
 
4295
- #: settings.php:3597
4296
  msgid "Switch to physical ads.txt file"
4297
  msgstr ""
4298
 
4299
- #: settings.php:3598
4300
  msgid "Switch to virtual ads.txt file"
4301
  msgstr ""
4302
 
4303
  #. translators: %s: ads.txt
4304
- #: settings.php:3608
4305
  msgid "Open %s"
4306
  msgstr ""
4307
 
4308
- #: settings.php:3616
4309
  msgid "Reload ads.txt file"
4310
  msgstr ""
4311
 
4312
- #: settings.php:3620 settings.php:4558
4313
  msgid "Save"
4314
  msgstr ""
4315
 
4316
  #. translators: %s: Ad Inserter
4317
- #: settings.php:3795
4318
  msgid "ads.txt file: %s virtual ads.txt file"
4319
  msgstr ""
4320
 
4321
- #: settings.php:3800 settings.php:3820 strings.php:210
4322
  msgid "Warning"
4323
  msgstr ""
4324
 
4325
  #. translators: %s: Ad Inserter
4326
- #: settings.php:3800
4327
  msgid "%s virtual file ads.txt not found"
4328
  msgstr ""
4329
 
4330
- #: settings.php:3808
4331
  msgid "IMPORTANT"
4332
  msgstr ""
4333
 
4334
- #: settings.php:3808
4335
  msgid "ads.txt file must be placed on the root domain"
4336
  msgstr ""
4337
 
4338
- #: settings.php:3813
4339
  msgid "ads.txt file"
4340
  msgstr ""
4341
 
4342
- #: settings.php:3813
4343
  msgid "NOT WRITABLE"
4344
  msgstr ""
4345
 
4346
- #: settings.php:3820
4347
  msgid "file %s not found"
4348
  msgstr ""
4349
 
4350
- #: settings.php:3830
4351
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4352
  msgstr ""
4353
 
4354
  #. translators: %s: Ad Inserter
4355
- #: settings.php:3836
4356
  msgid "%s virtual ads.txt file"
4357
  msgstr ""
4358
 
4359
- #: settings.php:3858
4360
  msgid "Advertising system"
4361
  msgstr ""
4362
 
4363
- #: settings.php:3859
4364
  msgid "Account ID"
4365
  msgstr ""
4366
 
4367
- #: settings.php:3861
4368
  msgid "Certification authority ID"
4369
  msgstr ""
4370
 
4371
- #: settings.php:3876
4372
  msgid "Account ID found in block and present in ads.txt"
4373
  msgstr ""
4374
 
4375
- #: settings.php:3880
4376
  msgid "Account ID found in block but not present in ads.txt"
4377
  msgstr ""
4378
 
4379
- #: settings.php:4214
4380
  msgid "Preview block"
4381
  msgstr ""
4382
 
4383
- #: settings.php:4221
4384
  msgid "Pause block"
4385
  msgstr ""
4386
 
4387
- #: settings.php:4260
4388
  msgid "Automatic insertion"
4389
  msgstr ""
4390
 
4391
  #. translators: %s HTML tags
4392
- #: settings.php:4261 settings.php:5229
4393
  msgid "PHP code processing"
4394
  msgstr ""
4395
 
4396
- #: settings.php:4263
4397
  msgid "Device detection"
4398
  msgstr ""
4399
 
4400
- #: settings.php:4286
4401
  msgid "No active block"
4402
  msgstr ""
4403
 
4404
- #: settings.php:4287
4405
  msgid "No block matches search keywords"
4406
  msgstr ""
4407
 
4408
- #: settings.php:4342
4409
  msgid "Ad unit"
4410
  msgstr ""
4411
 
4412
- #: settings.php:4344
4413
  msgid "Slot ID"
4414
  msgstr ""
4415
 
4416
- #: settings.php:4370
4417
  msgid "Copy AdSense code"
4418
  msgstr ""
4419
 
4420
- #: settings.php:4373
4421
  msgid "Preview AdSense ad"
4422
  msgstr ""
4423
 
4424
- #: settings.php:4376
4425
  msgid "Get AdSense code"
4426
  msgstr ""
4427
 
4428
  #. translators: %s: HTML tags
4429
- #: settings.php:4408
4430
  msgid ""
4431
  "Please %s clear authorization %s with the button %s above and once again "
4432
  "authorize access to your AdSense account."
4433
  msgstr ""
4434
 
4435
- #: settings.php:4427
4436
  msgid "AdSense Integration"
4437
  msgstr ""
4438
 
4439
- #: settings.php:4429
4440
  msgid "AdSense Integration - Step 2"
4441
  msgstr ""
4442
 
4443
  #. translators: %s: HTML tags
4444
- #: settings.php:4435
4445
  msgid ""
4446
  "Authorize %s to access your AdSense account. Click on the %s Get "
4447
  "Authorization Code %s button to open a new window where you can allow "
@@ -4450,7 +4514,7 @@ msgid ""
4450
  msgstr ""
4451
 
4452
  #. translators: %s: HTML tags
4453
- #: settings.php:4442
4454
  msgid ""
4455
  "If you get error, can't access ad units or would like to use own Google API "
4456
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -4458,7 +4522,7 @@ msgid ""
4458
  msgstr ""
4459
 
4460
  #. translators: %s: HTML tags
4461
- #: settings.php:4444
4462
  msgid ""
4463
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4464
  "Authorization Code %s button to open a new window where you can allow "
@@ -4467,38 +4531,38 @@ msgid ""
4467
  msgstr ""
4468
 
4469
  #. translators: %s: HTML tags
4470
- #: settings.php:4451
4471
  msgid ""
4472
  "If you get error %s invalid client %s click on the button %s Clear and "
4473
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4474
  msgstr ""
4475
 
4476
- #: settings.php:4462
4477
  msgid "Get Authorization Code"
4478
  msgstr ""
4479
 
4480
- #: settings.php:4465
4481
  msgid "Enter Authorization Code"
4482
  msgstr ""
4483
 
4484
- #: settings.php:4475
4485
  msgid "Use own API IDs"
4486
  msgstr ""
4487
 
4488
- #: settings.php:4477
4489
  msgid "Clear and return to Step 1"
4490
  msgstr ""
4491
 
4492
- #: settings.php:4481
4493
  msgid "Authorize"
4494
  msgstr ""
4495
 
4496
- #: settings.php:4497
4497
  msgid "AdSense Integration - Step 1"
4498
  msgstr ""
4499
 
4500
  #. translators: %s: Ad Inserter
4501
- #: settings.php:4501
4502
  msgid ""
4503
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4504
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -4507,192 +4571,192 @@ msgid ""
4507
  msgstr ""
4508
 
4509
  #. translators: %s: HTML tags
4510
- #: settings.php:4510
4511
  msgid "Go to %s Google APIs and Services console %s"
4512
  msgstr ""
4513
 
4514
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4515
- #: settings.php:4511
4516
  msgid ""
4517
  "Create %1$s project - if the project and IDs are already created click on "
4518
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
4519
  msgstr ""
4520
 
4521
  #. translators: %s: HTML tags
4522
- #: settings.php:4512
4523
  msgid ""
4524
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4525
  "create a new project"
4526
  msgstr ""
4527
 
4528
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4529
- #: settings.php:4513
4530
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4531
  msgstr ""
4532
 
4533
  #. translators: %s: HTML tags
4534
- #: settings.php:4514
4535
  msgid ""
4536
  "Click on project selection, wait for the project to be created and then and "
4537
  "select %s as the current project"
4538
  msgstr ""
4539
 
4540
  #. translators: %s: HTML tags
4541
- #: settings.php:4515
4542
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4543
  msgstr ""
4544
 
4545
  #. translators: %s: HTML tags
4546
- #: settings.php:4516
4547
  msgid "Search for adsense and enable %s"
4548
  msgstr ""
4549
 
4550
  #. translators: %s: HTML tags
4551
- #: settings.php:4517
4552
  msgid "Click on %s CREATE CREDENTIALS %s"
4553
  msgstr ""
4554
 
4555
  #. translators: %s: HTML tags
4556
- #: settings.php:4518
4557
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4558
  msgstr ""
4559
 
4560
  #. translators: %s: HTML tags
4561
- #: settings.php:4519
4562
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4563
  msgstr ""
4564
 
4565
  #. translators: %s: HTML tags
4566
- #: settings.php:4520
4567
  msgid "Click on %s What credentials do I need? %s"
4568
  msgstr ""
4569
 
4570
  #. translators: %s: HTML tags
4571
- #: settings.php:4521
4572
  msgid ""
4573
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4574
  "Ad Inserter client %s"
4575
  msgstr ""
4576
 
4577
  #. translators: %s: HTML tags
4578
- #: settings.php:4522
4579
  msgid ""
4580
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4581
  "enter %s"
4582
  msgstr ""
4583
 
4584
  #. translators: %s: HTML tags
4585
- #: settings.php:4523
4586
  msgid "Click on %s Continue %s"
4587
  msgstr ""
4588
 
4589
  #. translators: %s: HTML tags
4590
- #: settings.php:4524
4591
  msgid "Click on %s Done %s"
4592
  msgstr ""
4593
 
4594
  #. translators: %s: HTML tags
4595
- #: settings.php:4525
4596
  msgid ""
4597
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4598
  "secret %s"
4599
  msgstr ""
4600
 
4601
- #: settings.php:4526
4602
  msgid "Copy them to the appropriate fields below"
4603
  msgstr ""
4604
 
4605
- #: settings.php:4532
4606
  msgid "Client ID"
4607
  msgstr ""
4608
 
4609
- #: settings.php:4535
4610
  msgid "Enter Client ID"
4611
  msgstr ""
4612
 
4613
- #: settings.php:4540
4614
  msgid "Client secret"
4615
  msgstr ""
4616
 
4617
- #: settings.php:4543
4618
  msgid "Enter Client secret"
4619
  msgstr ""
4620
 
4621
- #: settings.php:4553
4622
  msgid "Use default API IDs"
4623
  msgstr ""
4624
 
4625
- #: settings.php:4717
4626
  msgid "All posts"
4627
  msgstr ""
4628
 
4629
- #: settings.php:4718
4630
  msgid "All static pages"
4631
  msgstr ""
4632
 
4633
- #: settings.php:4873 settings.php:4886 settings.php:4900 settings.php:4916
4634
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4635
  msgstr ""
4636
 
4637
- #: settings.php:4878 settings.php:4891 settings.php:4905 settings.php:4921
4638
- #: settings.php:5120 settings.php:5122 settings.php:5138 settings.php:5143
4639
- #: settings.php:5151 settings.php:5152 settings.php:5155 settings.php:5161
4640
- #: settings.php:5171 settings.php:5175
4641
  msgid "Looking for AdSense alternative?"
4642
  msgstr ""
4643
 
4644
- #: settings.php:4933
4645
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4646
  msgstr ""
4647
 
4648
- #: settings.php:4938 settings.php:5117 settings.php:5130 settings.php:5158
4649
- #: settings.php:5184
4650
  msgid "Use Infolinks ads with Adsense to earn more"
4651
  msgstr ""
4652
 
4653
- #: settings.php:4959 settings.php:5009
4654
  msgid "Support plugin development"
4655
  msgstr ""
4656
 
4657
- #: settings.php:4964 settings.php:5010
4658
  msgid ""
4659
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4660
  "reviewing the plugin on WordPres"
4661
  msgstr ""
4662
 
4663
- #: settings.php:4964
4664
  msgctxt "Review Ad Inserter"
4665
  msgid "Review"
4666
  msgstr ""
4667
 
4668
- #: settings.php:4969
4669
  msgid ""
4670
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4671
  "rating the plugin on WordPres"
4672
  msgstr ""
4673
 
4674
- #: settings.php:4969
4675
  msgctxt "Rate Ad Inserter"
4676
  msgid "Rate"
4677
  msgstr ""
4678
 
4679
- #: settings.php:4974
4680
  msgid ""
4681
  "Support free Ad Inserter development. If you are making money with Ad "
4682
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4683
  "you!"
4684
  msgstr ""
4685
 
4686
- #: settings.php:4974
4687
  msgid "Donate"
4688
  msgstr ""
4689
 
4690
- #: settings.php:4981 settings.php:5025
4691
  msgid "Average rating of the plugin - Thank you!"
4692
  msgstr ""
4693
 
4694
  #. translators: %s: Ad Inserter, HTML tags
4695
- #: settings.php:4992
4696
  msgid ""
4697
  "You've been using %s for a while now, and I hope you're happy with it. "
4698
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4701,31 +4765,31 @@ msgid ""
4701
  "your website. When you rate it with 5 stars it's like saying 'Thank you'."
4702
  msgstr ""
4703
 
4704
- #: settings.php:5010
4705
  msgid "Review"
4706
  msgstr ""
4707
 
4708
- #: settings.php:5014
4709
  msgid "Ad Inserter on Twitter"
4710
  msgstr ""
4711
 
4712
- #: settings.php:5015
4713
  msgid "Ad Inserter on Facebook"
4714
  msgstr ""
4715
 
4716
- #: settings.php:5018
4717
  msgid "Follow Ad Inserter"
4718
  msgstr ""
4719
 
4720
  #. translators: %s: HTML tags
4721
- #: settings.php:5045
4722
  msgid ""
4723
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4724
  "and %s Common Settings %s pages"
4725
  msgstr ""
4726
 
4727
  #. translators: %s: HTML tags
4728
- #: settings.php:5057
4729
  msgid ""
4730
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4731
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
@@ -4733,338 +4797,343 @@ msgid ""
4733
  msgstr ""
4734
 
4735
  #. translators: %s: HTML tags
4736
- #: settings.php:5078
4737
  msgid ""
4738
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4739
  "purchase you refer to us"
4740
  msgstr ""
4741
 
4742
  #. translators: %s: HTML tags
4743
- #: settings.php:5085
4744
  msgid ""
4745
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4746
  "diagnose and fix the problem."
4747
  msgstr ""
4748
 
4749
  #. translators: %s: HTML tags
4750
- #: settings.php:5089
4751
  msgid ""
4752
  "If you need any kind of help or support, please do not hesitate to open a "
4753
  "thread on the %s support forum. %s"
4754
  msgstr ""
4755
 
4756
- #: settings.php:5115 settings.php:5179 settings.php:5183
4757
  msgid "Code preview with visual CSS editor"
4758
  msgstr ""
4759
 
4760
- #: settings.php:5119 settings.php:5169
4761
  msgid "A/B testing - Track ad impressions and clicks"
4762
  msgstr ""
4763
 
4764
- #: settings.php:5134
4765
  msgid "Insert ads on AMP pages"
4766
  msgstr ""
4767
 
4768
- #: settings.php:5142
4769
  msgid "Ad blocking detection and content protection"
4770
  msgstr ""
4771
 
4772
- #: settings.php:5192
4773
  msgid "Looking for Pro Ad Management plugin?"
4774
  msgstr ""
4775
 
4776
- #: settings.php:5193
4777
  msgid "To Optimally Monetize your WordPress website?"
4778
  msgstr ""
4779
 
4780
  #. Translators: %s: price of Ad Inserter Pro
4781
- #: settings.php:5194
4782
  msgid "Different license types starting from %s"
4783
  msgstr ""
4784
 
4785
  #. translators: %s HTML tags
4786
- #: settings.php:5197
4787
  msgid "%s AdSense Integration %s"
4788
  msgstr ""
4789
 
4790
  #. translators: %s HTML tags
4791
- #: settings.php:5198
4792
  msgid "Syntax highlighting %s editor %s"
4793
  msgstr ""
4794
 
4795
  #. translators: %s HTML tags
4796
- #: settings.php:5199
4797
  msgid "%s Code preview %s with visual CSS editor"
4798
  msgstr ""
4799
 
4800
  #. translators: %s HTML tags
4801
- #: settings.php:5200
4802
  msgid "Simple user interface - all settings on a single page"
4803
  msgstr ""
4804
 
4805
  #. translators: %s HTML tags
4806
- #: settings.php:5201
4807
  msgid ""
4808
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4809
  "image / excerpt"
4810
  msgstr ""
4811
 
4812
  #. translators: %s HTML tags
4813
- #: settings.php:5202
4814
  msgid "%s Automatic insertion %s between posts on blog pages"
4815
  msgstr ""
4816
 
4817
  #. translators: %s HTML tags
4818
- #: settings.php:5203
4819
  msgid "%s Automatic insertion %s before, between and after comments"
4820
  msgstr ""
4821
 
4822
  #. translators: %s HTML tags
4823
- #: settings.php:5204
4824
  msgid "%s Automatic insertion %s after %s or before %s tag"
4825
  msgstr ""
4826
 
4827
  #. translators: %s HTML tags
4828
- #: settings.php:5205
4829
  msgid "Automatic insertion at %s custom hook positions %s"
4830
  msgstr ""
4831
 
4832
  #. translators: %s HTML tags
4833
- #: settings.php:5206
4834
  msgid ""
4835
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4836
  "selectors)"
4837
  msgstr ""
4838
 
4839
  #. translators: %s HTML tags
4840
- #: settings.php:5207
4841
  msgid "%s Insertion exceptions %s for individual posts and pages"
4842
  msgstr ""
4843
 
4844
  #. translators: %s HTML tags
4845
- #: settings.php:5208
4846
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4847
  msgstr ""
4848
 
4849
  #. translators: %s HTML tags
4850
- #: settings.php:5209
4851
  msgid ""
4852
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4853
  "scrolls)"
4854
  msgstr ""
4855
 
4856
  #. translators: %s HTML tags
4857
- #: settings.php:5210
 
 
 
 
 
4858
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4859
  msgstr ""
4860
 
4861
  #. translators: %s HTML tags
4862
- #: settings.php:5211
4863
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4864
  msgstr ""
4865
 
4866
  #. translators: %s HTML tags
4867
- #: settings.php:5212
4868
  msgid ""
4869
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4870
  "visible)"
4871
  msgstr ""
4872
 
4873
  #. translators: %s HTML tags
4874
- #: settings.php:5213
4875
  msgid ""
4876
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4877
  msgstr ""
4878
 
4879
  #. translators: %s HTML tags
4880
- #: settings.php:5214
4881
  msgid "Block %s alignment and style %s customizations"
4882
  msgstr ""
4883
 
4884
  #. translators: %s HTML tags
4885
- #: settings.php:5215
4886
  msgid ""
4887
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4888
  "TOS)"
4889
  msgstr ""
4890
 
4891
  #. translators: %s HTML tags
4892
- #: settings.php:5216
4893
  msgid ""
4894
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4895
  "feeds"
4896
  msgstr ""
4897
 
4898
  #. translators: %s HTML tags
4899
- #: settings.php:5217
4900
  msgid "%s Ad rotation %s (works also with caching)"
4901
  msgstr ""
4902
 
4903
  #. translators: %s HTML tags
4904
- #: settings.php:5218
4905
  msgid "Create, edit and check %s ads.txt %s file"
4906
  msgstr ""
4907
 
4908
  #. translators: %s HTML tags
4909
- #: settings.php:5219
4910
  msgid ""
4911
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4912
  "AdSense)"
4913
  msgstr ""
4914
 
4915
  #. translators: %s HTML tags
4916
- #: settings.php:5220
4917
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4918
  msgstr ""
4919
 
4920
  #. translators: %s HTML tags
4921
- #: settings.php:5221
4922
  msgid "%s Public web reports %s for clients, export to PDF"
4923
  msgstr ""
4924
 
4925
  #. translators: %s HTML tags
4926
- #: settings.php:5222
4927
  msgid "Support for %s A/B testing %s"
4928
  msgstr ""
4929
 
4930
  #. translators: %s HTML tags
4931
- #: settings.php:5223
4932
  msgid "Frequency capping - %s limit impressions or clicks %s"
4933
  msgstr ""
4934
 
4935
  #. translators: %s HTML tags
4936
- #: settings.php:5224
4937
  msgid "Click fraud %s protection %s"
4938
  msgstr ""
4939
 
4940
  #. translators: %s HTML tags
4941
- #: settings.php:5225
4942
  msgid "Support for %s lazy loading %s"
4943
  msgstr ""
4944
 
4945
  #. translators: %s HTML tags
4946
- #: settings.php:5226
4947
  msgid "Support for ads on %s AMP pages %s"
4948
  msgstr ""
4949
 
4950
  #. translators: %s HTML tags
4951
- #: settings.php:5227
4952
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4953
  msgstr ""
4954
 
4955
  #. translators: %s HTML tags
4956
- #: settings.php:5228
4957
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4958
  msgstr ""
4959
 
4960
  #. translators: %s HTML tags
4961
- #: settings.php:5230
4962
  msgid "%s Banner %s code generator"
4963
  msgstr ""
4964
 
4965
  #. translators: %s HTML tags
4966
- #: settings.php:5231
4967
  msgid "Support for %s header and footer %s code"
4968
  msgstr ""
4969
 
4970
  #. translators: %s HTML tags
4971
- #: settings.php:5232
4972
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4973
  msgstr ""
4974
 
4975
  #. translators: %s HTML tags
4976
- #: settings.php:5233
4977
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4978
  msgstr ""
4979
 
4980
  #. translators: %s HTML tags
4981
- #: settings.php:5234
4982
  msgid "Client-side %s mobile device detection %s (works with caching)"
4983
  msgstr ""
4984
 
4985
  #. translators: %s HTML tags
4986
- #: settings.php:5235
4987
  msgid ""
4988
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4989
  "protection"
4990
  msgstr ""
4991
 
4992
  #. translators: %s HTML tags
4993
- #: settings.php:5236
4994
  msgid "%s Ad blocking statistics %s"
4995
  msgstr ""
4996
 
4997
  #. translators: %s HTML tags
4998
- #: settings.php:5237
4999
  msgid ""
5000
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5001
  "referrers, operating systems, browsers"
5002
  msgstr ""
5003
 
5004
  #. translators: %s HTML tags
5005
- #: settings.php:5238
5006
  msgid ""
5007
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5008
  msgstr ""
5009
 
5010
  #. translators: %s HTML tags
5011
- #: settings.php:5239
5012
  msgid "%s Multisite options %s to limit settings on the sites"
5013
  msgstr ""
5014
 
5015
  #. translators: %s HTML tags
5016
- #: settings.php:5240
5017
  msgid "%s Import/Export %s block or plugin settings"
5018
  msgstr ""
5019
 
5020
  #. translators: %s HTML tags
5021
- #: settings.php:5241
5022
  msgid "%s Insertion scheduling %s with fallback option"
5023
  msgstr ""
5024
 
5025
  #. translators: %s HTML tags
5026
- #: settings.php:5242
5027
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5028
  msgstr ""
5029
 
5030
  #. translators: %s HTML tags
5031
- #: settings.php:5243
5032
  msgid "Simple troubleshooting with many %s debugging functions %s"
5033
  msgstr ""
5034
 
5035
  #. translators: %s HTML tags
5036
- #: settings.php:5244
5037
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5038
  msgstr ""
5039
 
5040
  #. translators: %s HTML tags
5041
- #: settings.php:5245
5042
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5043
  msgstr ""
5044
 
5045
  #. translators: %s HTML tags
5046
- #: settings.php:5246
5047
  msgid ""
5048
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5049
  msgstr ""
5050
 
5051
  #. translators: %s HTML tags
5052
- #: settings.php:5247
5053
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5054
  msgstr ""
5055
 
5056
  #. translators: %s HTML tags
5057
- #: settings.php:5248
5058
  msgid "No ads on the settings page"
5059
  msgstr ""
5060
 
5061
  #. translators: %s HTML tags
5062
- #: settings.php:5249
5063
  msgid "Premium support"
5064
  msgstr ""
5065
 
5066
  #. translators: %s HTML tags
5067
- #: settings.php:5252
5068
  msgid ""
5069
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5070
  "website with many advertising features to automatically insert adverts on "
@@ -5079,82 +5148,82 @@ msgid ""
5079
  msgstr ""
5080
 
5081
  #. translators: %s HTML tags
5082
- #: settings.php:5265
5083
  msgid "Looking for %s Pro Ad Management plugin? %s"
5084
  msgstr ""
5085
 
5086
  #. translators: %s HTML tags
5087
- #: settings.php:5270
5088
  msgid "Ads between posts"
5089
  msgstr ""
5090
 
5091
  #. translators: %s HTML tags
5092
- #: settings.php:5271
5093
  msgid "Ads between comments"
5094
  msgstr ""
5095
 
5096
  #. translators: %s HTML tags
5097
- #: settings.php:5272
5098
  msgid "Support via email"
5099
  msgstr ""
5100
 
5101
  #. translators: %s HTML tags
5102
- #: settings.php:5278
5103
  msgid "%s Sticky positions %s"
5104
  msgstr ""
5105
 
5106
  #. translators: %s HTML tags
5107
- #: settings.php:5279
5108
  msgid "%s Limit insertions %s"
5109
  msgstr ""
5110
 
5111
  #. translators: %s HTML tags
5112
- #: settings.php:5280
5113
  msgid "%s Clearance %s options"
5114
  msgstr ""
5115
 
5116
  #. translators: %s HTML tags
5117
- #: settings.php:5286
5118
  msgid "Ad rotation"
5119
  msgstr ""
5120
 
5121
  #. translators: %s HTML tags
5122
- #: settings.php:5287
5123
  msgid "%s A/B testing %s"
5124
  msgstr ""
5125
 
5126
  #. translators: %s HTML tags
5127
- #: settings.php:5288
5128
  msgid "%s Ad tracking %s"
5129
  msgstr ""
5130
 
5131
  #. translators: %s HTML tags
5132
- #: settings.php:5294
5133
  msgid "Support for %s AMP pages %s"
5134
  msgstr ""
5135
 
5136
  #. translators: %s HTML tags
5137
- #: settings.php:5295
5138
  msgid "%s Ad blocking detection %s"
5139
  msgstr ""
5140
 
5141
  #. translators: %s HTML tags
5142
- #: settings.php:5296
5143
  msgid "%s Mobile device detection %s"
5144
  msgstr ""
5145
 
5146
  #. translators: %s HTML tags
5147
- #: settings.php:5303
5148
  msgid "64 code blocks"
5149
  msgstr ""
5150
 
5151
  #. translators: %s HTML tags
5152
- #: settings.php:5304
5153
  msgid "%s GEO targeting %s"
5154
  msgstr ""
5155
 
5156
  #. translators: %s HTML tags
5157
- #: settings.php:5305
5158
  msgid "%s Scheduling %s"
5159
  msgstr ""
5160
 
@@ -5353,634 +5422,695 @@ msgid "Center"
5353
  msgstr ""
5354
 
5355
  #: strings.php:66
 
 
 
 
 
5356
  msgctxt "alignment"
5357
  msgid "Float left"
5358
  msgstr ""
5359
 
5360
- #: strings.php:67
5361
  msgctxt "alignment"
5362
  msgid "Float right"
5363
  msgstr ""
5364
 
5365
- #: strings.php:68
5366
  msgctxt "alignment"
5367
  msgid "No wrapping"
5368
  msgstr ""
5369
 
5370
- #: strings.php:69
5371
  msgid "Custom CSS"
5372
  msgstr ""
5373
 
5374
- #: strings.php:70
5375
  msgid "Sticky left"
5376
  msgstr ""
5377
 
5378
- #: strings.php:71
5379
  msgid "Sticky right"
5380
  msgstr ""
5381
 
5382
- #: strings.php:72
5383
  msgid "Sticky top"
5384
  msgstr ""
5385
 
5386
- #: strings.php:73
5387
  msgid "Sticky bottom"
5388
  msgstr ""
5389
 
5390
- #: strings.php:74
5391
  msgctxt "alignment"
5392
  msgid "Sticky"
5393
  msgstr ""
5394
 
5395
- #: strings.php:76
5396
  msgctxt "using"
5397
  msgid "auto counter"
5398
  msgstr ""
5399
 
5400
- #: strings.php:77
5401
  msgctxt "using"
5402
  msgid "PHP function calls counter"
5403
  msgstr ""
5404
 
5405
- #: strings.php:78
5406
  msgctxt "using"
5407
  msgid "content processing counter"
5408
  msgstr ""
5409
 
5410
- #: strings.php:79
5411
  msgctxt "using"
5412
  msgid "excerpt processing counter"
5413
  msgstr ""
5414
 
5415
- #: strings.php:80
5416
  msgctxt "using"
5417
  msgid "before post processing counter"
5418
  msgstr ""
5419
 
5420
- #: strings.php:81
5421
  msgctxt "using"
5422
  msgid "after post processing counter"
5423
  msgstr ""
5424
 
5425
- #: strings.php:82
5426
  msgctxt "using"
5427
  msgid "widget drawing counter"
5428
  msgstr ""
5429
 
5430
- #: strings.php:83
5431
  msgctxt "using"
5432
  msgid "subpages counter"
5433
  msgstr ""
5434
 
5435
- #: strings.php:84
5436
  msgctxt "using"
5437
  msgid "posts counter"
5438
  msgstr ""
5439
 
5440
- #: strings.php:85
5441
  msgctxt "using"
5442
  msgid "paragraphs counter"
5443
  msgstr ""
5444
 
5445
- #: strings.php:86
5446
  msgctxt "using"
5447
  msgid "comments counter"
5448
  msgstr ""
5449
 
5450
- #: strings.php:87
5451
  msgctxt "using"
5452
  msgid "images counter"
5453
  msgstr ""
5454
 
5455
- #: strings.php:90
5456
  msgctxt "posts"
5457
  msgid "Individually disabled"
5458
  msgstr ""
5459
 
5460
- #: strings.php:91
5461
  msgctxt "posts"
5462
  msgid "Individually enabled"
5463
  msgstr ""
5464
 
5465
- #: strings.php:93
5466
  msgctxt "static pages"
5467
  msgid "Individually disabled"
5468
  msgstr ""
5469
 
5470
- #: strings.php:94
5471
  msgctxt "static pages"
5472
  msgid "Individually enabled"
5473
  msgstr ""
5474
 
5475
- #: strings.php:96
5476
  msgid "Server-side"
5477
  msgstr ""
5478
 
5479
- #: strings.php:97
5480
  msgctxt "Insertion"
5481
  msgid "Client-side"
5482
  msgstr ""
5483
 
5484
- #: strings.php:98
5485
  msgctxt "Dynamic blocks"
5486
  msgid "Client-side show"
5487
  msgstr ""
5488
 
5489
- #: strings.php:99
5490
  msgctxt "Dynamic blocks"
5491
  msgid "Client-side insert"
5492
  msgstr ""
5493
 
5494
- #: strings.php:100
5495
  msgctxt "Insertion"
5496
  msgid "Server-side using W3 Total Cache"
5497
  msgstr ""
5498
 
5499
- #: strings.php:106
5500
  msgid "Replace element"
5501
  msgstr ""
5502
 
5503
- #: strings.php:108
5504
  msgid "desktop devices"
5505
  msgstr ""
5506
 
5507
- #: strings.php:109
5508
  msgid "mobile devices"
5509
  msgstr ""
5510
 
5511
- #: strings.php:110
5512
  msgid "tablet devices"
5513
  msgstr ""
5514
 
5515
- #: strings.php:111
5516
  msgid "phone devices"
5517
  msgstr ""
5518
 
5519
- #: strings.php:112
5520
  msgid "desktop and tablet devices"
5521
  msgstr ""
5522
 
5523
- #: strings.php:113
5524
  msgid "desktop and phone devices"
5525
  msgstr ""
5526
 
5527
- #: strings.php:115
5528
  msgid "Stick to the left"
5529
  msgstr ""
5530
 
5531
- #: strings.php:116
5532
  msgid "Stick to the content left"
5533
  msgstr ""
5534
 
5535
- #: strings.php:117
5536
  msgid "Stick to the content right"
5537
  msgstr ""
5538
 
5539
- #: strings.php:118
5540
  msgid "Stick to the right"
5541
  msgstr ""
5542
 
5543
- #: strings.php:120
5544
  msgid "Stick to the top"
5545
  msgstr ""
5546
 
5547
- #: strings.php:121
5548
  msgid "Scroll with the content"
5549
  msgstr ""
5550
 
5551
- #: strings.php:122
5552
  msgid "Stick to the bottom"
5553
  msgstr ""
5554
 
5555
- #: strings.php:124
5556
  msgid "Fade"
5557
  msgstr ""
5558
 
5559
- #: strings.php:125
5560
  msgid "Slide"
5561
  msgstr ""
5562
 
5563
- #: strings.php:126
5564
  msgid "Slide and Fade"
5565
  msgstr ""
5566
 
5567
- #: strings.php:127
5568
  msgid "Flip"
5569
  msgstr ""
5570
 
5571
- #: strings.php:128
5572
  msgid "Zoom In"
5573
  msgstr ""
5574
 
5575
- #: strings.php:129
5576
  msgid "Zoom Out"
5577
  msgstr ""
5578
 
5579
- #: strings.php:130
5580
  msgid "Turn"
5581
  msgstr ""
5582
 
5583
- #: strings.php:132
5584
  msgid "Page loaded"
5585
  msgstr ""
5586
 
5587
- #: strings.php:133
5588
  msgid "Page scrolled (%)"
5589
  msgstr ""
5590
 
5591
- #: strings.php:134
5592
  msgid "Page scrolled (px)"
5593
  msgstr ""
5594
 
5595
- #: strings.php:135
5596
  msgid "Element visible"
5597
  msgstr ""
5598
 
5599
- #: strings.php:137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5600
  msgid "Insert immediately"
5601
  msgstr ""
5602
 
5603
- #: strings.php:138
5604
  msgid "Delay insertion"
5605
  msgstr ""
5606
 
5607
- #: strings.php:139
5608
  msgid "Insert between dates"
5609
  msgstr ""
5610
 
5611
- #: strings.php:140
5612
  msgid "Insert outside dates"
5613
  msgstr ""
5614
 
5615
- #: strings.php:141
5616
  msgid "Insert only"
5617
  msgstr ""
5618
 
5619
- #: strings.php:142
5620
  msgid "Insert for posts published between dates"
5621
  msgstr ""
5622
 
5623
- #: strings.php:143
5624
  msgid "Insert for posts published outside dates"
5625
  msgstr ""
5626
 
5627
- #: strings.php:145
5628
  msgctxt "functions"
5629
  msgid "Standard"
5630
  msgstr ""
5631
 
5632
- #: strings.php:146
5633
  msgctxt "detection"
5634
  msgid "Standard"
5635
  msgstr ""
5636
 
5637
- #: strings.php:147
5638
  msgctxt "functions"
5639
  msgid "Multibyte"
5640
  msgstr ""
5641
 
5642
- #: strings.php:149
5643
  msgctxt "action"
5644
  msgid "None"
5645
  msgstr ""
5646
 
5647
- #: strings.php:150
5648
  msgctxt "button"
5649
  msgid "None"
5650
  msgstr ""
5651
 
5652
- #: strings.php:151
5653
  msgid "Popup Message"
5654
  msgstr ""
5655
 
5656
- #: strings.php:152
5657
  msgid "Redirection"
5658
  msgstr ""
5659
 
5660
- #: strings.php:154
5661
  msgid "Do nothing"
5662
  msgstr ""
5663
 
5664
- #: strings.php:156
5665
  msgctxt "Action when ad blocking detected"
5666
  msgid "Show"
5667
  msgstr ""
5668
 
5669
- #: strings.php:157
5670
  msgctxt "Action when ad blocking detected"
5671
  msgid "Hide"
5672
  msgstr ""
5673
 
5674
- #: strings.php:159
5675
  msgctxt "tracking"
5676
  msgid "Internal"
5677
  msgstr ""
5678
 
5679
- #: strings.php:160
5680
  msgctxt "detection"
5681
  msgid "Advanced"
5682
  msgstr ""
5683
 
5684
- #: strings.php:163
5685
  msgctxt "Manual loading"
5686
  msgid "Auto"
5687
  msgstr ""
5688
 
5689
- #: strings.php:164
5690
  msgctxt "Manual loading"
5691
  msgid "Always"
5692
  msgstr ""
5693
 
5694
- #: strings.php:166
5695
  msgid "Top right"
5696
  msgstr ""
5697
 
5698
- #: strings.php:167
5699
  msgid "Top left"
5700
  msgstr ""
5701
 
5702
- #: strings.php:168
5703
  msgid "Bottom right"
5704
  msgstr ""
5705
 
5706
- #: strings.php:169
5707
  msgid "Bottom left"
5708
  msgstr ""
5709
 
5710
- #: strings.php:171
5711
  msgctxt "AdSense Ad Type"
5712
  msgid "Standard"
5713
  msgstr ""
5714
 
5715
- #: strings.php:172
5716
  msgctxt "AdSense Ad Type"
5717
  msgid "Link"
5718
  msgstr ""
5719
 
5720
- #: strings.php:173
5721
  msgctxt "AdSense Ad Type"
5722
  msgid "In-article"
5723
  msgstr ""
5724
 
5725
- #: strings.php:174
5726
  msgctxt "AdSense Ad Type"
5727
  msgid "In-feed"
5728
  msgstr ""
5729
 
5730
- #: strings.php:175
5731
  msgctxt "AdSense Ad Type"
5732
  msgid "Matched content"
5733
  msgstr ""
5734
 
5735
- #: strings.php:176
5736
  msgctxt "AdSense Ad Type"
5737
  msgid "Auto Ads"
5738
  msgstr ""
5739
 
5740
- #: strings.php:177
5741
  msgctxt "AdSense Ad Type"
5742
  msgid "AMP Only"
5743
  msgstr ""
5744
 
5745
- #: strings.php:179
5746
  msgctxt "AMP ad"
5747
  msgid "Disabled"
5748
  msgstr ""
5749
 
5750
- #: strings.php:180
5751
  msgid "Above the fold"
5752
  msgstr ""
5753
 
5754
- #: strings.php:181
5755
  msgid "Below the fold"
5756
  msgstr ""
5757
 
5758
- #: strings.php:182
5759
  msgctxt "AMP ad"
5760
  msgid "Sticky"
5761
  msgstr ""
5762
 
5763
- #: strings.php:184
5764
  msgctxt "size"
5765
  msgid "Fixed"
5766
  msgstr ""
5767
 
5768
- #: strings.php:185
5769
  msgctxt "size"
5770
  msgid "Responsive"
5771
  msgstr ""
5772
 
5773
- #: strings.php:186
5774
  msgctxt "size"
5775
  msgid "Fixed by viewport"
5776
  msgstr ""
5777
 
5778
- #: strings.php:190
5779
  msgid "Impressions and clicks"
5780
  msgstr ""
5781
 
5782
- #: strings.php:191
5783
  msgid "Advanced WordPress Ad Management Plugin"
5784
  msgstr ""
5785
 
5786
- #: strings.php:197
5787
  msgctxt "Button"
5788
  msgid "Hide"
5789
  msgstr ""
5790
 
5791
- #: strings.php:198
5792
  msgctxt "Button"
5793
  msgid "Show"
5794
  msgstr ""
5795
 
5796
- #: strings.php:199
5797
  msgid "Insertion expired"
5798
  msgstr ""
5799
 
5800
- #: strings.php:200
5801
  msgid "Duration"
5802
  msgstr ""
5803
 
5804
- #: strings.php:201
5805
  msgid "Invalid end date - must be after start date"
5806
  msgstr ""
5807
 
5808
- #: strings.php:202
5809
  msgid "Invalid start date - only data for 1 year back is available"
5810
  msgstr ""
5811
 
5812
- #: strings.php:203
5813
  msgid "Invalid date range - only data for 1 year can be displayed"
5814
  msgstr ""
5815
 
5816
- #: strings.php:211
5817
  msgid "Delete"
5818
  msgstr ""
5819
 
5820
- #: strings.php:212
5821
  msgid "Switch"
5822
  msgstr ""
5823
 
5824
- #: strings.php:214
 
 
 
 
5825
  msgid "Delete all statistics data?"
5826
  msgstr ""
5827
 
 
 
 
 
 
5828
  #. translators: %s: dates
5829
- #: strings.php:216
5830
  msgid "Delete statistics data between %s and %s?"
5831
  msgstr ""
5832
 
5833
- #: strings.php:217
5834
  msgid "Cancel block order rearrangement"
5835
  msgstr ""
5836
 
5837
- #: strings.php:219
5838
  msgid "downloading..."
5839
  msgstr ""
5840
 
5841
- #: strings.php:220
5842
  msgid "download error"
5843
  msgstr ""
5844
 
5845
- #: strings.php:221
5846
  msgid "update error"
5847
  msgstr ""
5848
 
5849
- #: strings.php:222
5850
  msgid "Updating..."
5851
  msgstr ""
5852
 
5853
- #: strings.php:224
5854
  msgid "ERROR"
5855
  msgstr ""
5856
 
5857
- #: strings.php:225
5858
  msgid "Error reloading settings"
5859
  msgstr ""
5860
 
5861
- #: strings.php:227
5862
  msgctxt "Search field placeholder"
5863
  msgid "Search..."
5864
  msgstr ""
5865
 
5866
- #: strings.php:228
5867
  msgctxt "Search field placeholder"
5868
  msgid "Filter..."
5869
  msgstr ""
5870
 
5871
- #: strings.php:229
5872
  msgid "Use filter to limit names in the list"
5873
  msgstr ""
5874
 
5875
- #: strings.php:230
5876
  msgctxt "Button"
5877
  msgid "Filter"
5878
  msgstr ""
5879
 
5880
- #: strings.php:232
5881
  msgid "Position not available"
5882
  msgstr ""
5883
 
5884
- #: strings.php:233
5885
  msgid ""
5886
  "Theme check | Selected position for automatic insertion might not be not "
5887
  "available on this page type"
5888
  msgstr ""
5889
 
5890
- #: strings.php:234
5891
  msgid "Position available"
5892
  msgstr ""
5893
 
5894
- #: strings.php:236
5895
  msgid "Select or upload banner image"
5896
  msgstr ""
5897
 
5898
- #: strings.php:237
5899
  msgid "Use this image"
5900
  msgstr ""
5901
 
5902
- #: strings.php:238
5903
  msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
5904
  msgstr ""
5905
 
5906
- #: strings.php:240
5907
  msgctxt "Monday"
5908
  msgid "MO"
5909
  msgstr ""
5910
 
5911
- #: strings.php:241
5912
  msgctxt "Tuesday"
5913
  msgid "TU"
5914
  msgstr ""
5915
 
5916
- #: strings.php:242
5917
  msgctxt "Wednesday"
5918
  msgid "WE"
5919
  msgstr ""
5920
 
5921
- #: strings.php:243
5922
  msgctxt "Thursday"
5923
  msgid "TH"
5924
  msgstr ""
5925
 
5926
- #: strings.php:244
5927
  msgctxt "Friday"
5928
  msgid "FR"
5929
  msgstr ""
5930
 
5931
- #: strings.php:245
5932
  msgctxt "Saturday"
5933
  msgid "SA"
5934
  msgstr ""
5935
 
5936
- #: strings.php:246
5937
  msgctxt "Sunday"
5938
  msgid "SU"
5939
  msgstr ""
5940
 
5941
- #: strings.php:262
5942
  msgctxt "Scheduling"
5943
  msgid "FALLBACK"
5944
  msgstr ""
5945
 
5946
- #: strings.php:263
5947
  msgid "Automatically placed by AdSense Auto ads code"
5948
  msgstr ""
5949
 
5950
- #: strings.php:268
5951
  msgid "Add"
5952
  msgstr ""
5953
 
5954
- #: strings.php:269
5955
  msgctxt "Element"
5956
  msgid "Parent"
5957
  msgstr ""
5958
 
5959
- #: strings.php:270
5960
  msgid "Cancel element selection"
5961
  msgstr ""
5962
 
5963
- #: strings.php:271
5964
  msgid "Select parent element"
5965
  msgstr ""
5966
 
5967
- #: strings.php:272
5968
  msgid "CSS selector"
5969
  msgstr ""
5970
 
5971
- #: strings.php:273
5972
  msgid "Use current selector"
5973
  msgstr ""
5974
 
5975
- #: strings.php:274
5976
  msgid "ELEMENT"
5977
  msgstr ""
5978
 
5979
- #: strings.php:275
5980
  msgid "PATH"
5981
  msgstr ""
5982
 
5983
- #: strings.php:276
5984
  msgid "SELECTOR"
5985
  msgstr ""
5986
 
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.6.7\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2020-04-22 16:51:30+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:399
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
+ #: ad-inserter.php:415
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
+ #: ad-inserter.php:422
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
+ #: ad-inserter.php:507
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
+ #: ad-inserter.php:514
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
+ #: ad-inserter.php:523
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
+ #: ad-inserter.php:530
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
+ #: ad-inserter.php:541
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
+ #: ad-inserter.php:548
56
  msgctxt "Menu item"
57
  msgid "Show Log"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name Before HTML element
61
+ #: ad-inserter.php:1192
62
  msgid "Before"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name After HTML element
66
+ #: ad-inserter.php:1197
67
  msgid "After"
68
  msgstr ""
69
 
70
  #. translators: Debugging position name Prepend content of HTML element (before
71
  #. the content of the HTML element)
72
+ #: ad-inserter.php:1202 strings.php:104
73
  msgid "Prepend content"
74
  msgstr ""
75
 
76
  #. translators: Debugging position name Append content of HTML element (after
77
  #. the content of the HTML element)
78
+ #: ad-inserter.php:1207 strings.php:105
79
  msgid "Append content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace content of HTML element
83
+ #: ad-inserter.php:1212 strings.php:106
84
  msgid "Replace content"
85
  msgstr ""
86
 
87
  #. translators: Debugging position name Replace HTML element
88
+ #: ad-inserter.php:1217 strings.php:169
89
  msgid "Replace"
90
  msgstr ""
91
 
92
  #. translators: Debugging message when output buffering is enabled
93
+ #: ad-inserter.php:1264
94
  msgid "OUTPUT BUFFERING"
95
  msgstr ""
96
 
97
  #. translators: Debugging position
98
+ #: ad-inserter.php:1268
99
  msgid "Above Header"
100
  msgstr ""
101
 
102
+ #: ad-inserter.php:1563
103
  msgctxt "Menu item"
104
  msgid "Log In"
105
  msgstr ""
106
 
107
  #. translators: %s: Ad Inserter
108
+ #: ad-inserter.php:1898 ad-inserter.php:2993
109
  msgid "%s Settings"
110
  msgstr ""
111
 
112
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
113
+ #: ad-inserter.php:2384
114
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
115
  msgstr ""
116
 
117
+ #: ad-inserter.php:2384
118
  msgid "NO ACTION"
119
  msgstr ""
120
 
121
+ #: ad-inserter.php:2385
122
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
123
  msgstr ""
124
 
125
+ #: ad-inserter.php:2386
126
  msgid "AD BLOCKING DETECTED - ACTION"
127
  msgstr ""
128
 
129
+ #: ad-inserter.php:2387
130
  msgid "AD BLOCKING NOT DETECTED"
131
  msgstr ""
132
 
133
+ #: ad-inserter.php:2388
134
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
135
  msgstr ""
136
 
137
+ #: ad-inserter.php:2389
138
  msgid "AD BLOCKING DETECTED - NO ACTION"
139
  msgstr ""
140
 
141
  #. Translators: 1: number of blocks, 2: Ad Inserter
142
+ #: ad-inserter.php:2688
143
  msgid "Hey, you are now using %1$s %2$s block."
144
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
145
  msgstr[0] ""
146
  msgstr[1] ""
147
 
148
+ #: ad-inserter.php:2691
149
  msgid "Please help me to solve a problem first"
150
  msgstr ""
151
 
152
+ #: ad-inserter.php:2695
153
  msgid "Maybe later"
154
  msgstr ""
155
 
156
  #. Translators: %s: Ad Inserter
157
+ #: ad-inserter.php:2700
158
  msgid "Hey, you are using %s and I hope you're happy with it."
159
  msgstr ""
160
 
161
+ #: ad-inserter.php:2703
162
  msgid "OK, but please help me with the settings first"
163
  msgstr ""
164
 
165
+ #: ad-inserter.php:2716
166
  msgid ""
167
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
168
  "like saying 'Thank you'. Somebody will be happy."
169
  msgstr ""
170
 
171
+ #: ad-inserter.php:2718
172
  msgid ""
173
  "Positive reviews are a great incentive to fix bugs and to add new features "
174
  "for better monetization of your website."
175
  msgstr ""
176
 
177
+ #: ad-inserter.php:2724
178
  msgid "Sure"
179
  msgstr ""
180
 
181
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
182
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
183
+ #: ad-inserter.php:2741 ad-inserter.php:2776
184
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
185
  msgstr ""
186
 
187
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
188
+ #: ad-inserter.php:2748
189
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
190
  msgstr ""
191
 
192
+ #: ad-inserter.php:2758
193
  msgctxt "Menu item"
194
  msgid "Settings"
195
  msgstr ""
196
 
197
+ #: ad-inserter.php:2790
198
  msgid ""
199
  "Load settings page in safe mode to avoid collisions with other plugins or "
200
  "theme"
201
  msgstr ""
202
 
203
+ #: ad-inserter.php:2790
204
  msgid "Safe mode"
205
  msgstr ""
206
 
207
  #. translators: %s: Ad Inserter
208
+ #: ad-inserter.php:2885
209
  msgctxt "Meta box name"
210
  msgid "%s Individual Exceptions"
211
  msgstr ""
212
 
213
+ #: ad-inserter.php:2914 ad-inserter.php:10166 class.php:2278
214
+ #: includes/preview.php:2295 includes/preview.php:2340
215
+ #: includes/preview.php:2377 settings.php:4285 strings.php:3
216
  msgid "Block"
217
  msgstr ""
218
 
219
+ #: ad-inserter.php:2915 settings.php:4286 settings.php:4371
220
  msgid "Name"
221
  msgstr ""
222
 
223
+ #: ad-inserter.php:2918 settings.php:1180
224
  msgid "Default insertion"
225
  msgstr ""
226
 
227
  #. translators: For this post or page
228
+ #: ad-inserter.php:2921
229
  msgctxt "Page"
230
  msgid "For this"
231
  msgstr ""
232
 
233
+ #: ad-inserter.php:2922
234
  msgctxt "Post"
235
  msgid "For this"
236
  msgstr ""
237
 
238
+ #: ad-inserter.php:2934
239
  msgctxt "Enabled/disabled on all"
240
  msgid "pages"
241
  msgstr ""
242
 
243
+ #: ad-inserter.php:2937
244
  msgctxt "Enabled/disabled on all"
245
  msgid "posts"
246
  msgstr ""
247
 
248
+ #: ad-inserter.php:2954 ad-inserter.php:2966 strings.php:175
249
  msgid "Enabled"
250
  msgstr ""
251
 
252
  #. translators: Menu items
253
+ #: ad-inserter.php:2954 ad-inserter.php:2966
254
  #: includes/functions-check-now.php:2401 includes/functions.old.php:2326
255
+ #: includes/functions.php:2650 strings.php:16
256
  msgid "Disabled"
257
  msgstr ""
258
 
259
+ #: ad-inserter.php:2956
260
  msgid "No individual exceptions"
261
  msgstr ""
262
 
263
  #. translators: Not enabled for pages or posts
264
+ #: ad-inserter.php:2958
265
  msgid "Not enabled for"
266
  msgstr ""
267
 
268
  #. translators: No individual exceptions enabled for pages or posts
269
+ #: ad-inserter.php:2986
270
  msgid "No block has individual exceptions enabled"
271
  msgstr ""
272
 
273
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
274
+ #: ad-inserter.php:2991
275
  msgid ""
276
  "Default insertion can be configured for each block on %1$s page - button "
277
  "next to %2$s checkbox."
278
  msgstr ""
279
 
280
+ #: ad-inserter.php:2994 settings.php:1158
281
  msgid "Tag / Archive pages"
282
  msgstr ""
283
 
284
+ #: ad-inserter.php:2996
285
  msgid ""
286
  "When individual exceptions for a block are enabled, a checkbox will be "
287
  "listed here to change default insertion for this post or page."
288
  msgstr ""
289
 
290
+ #: ad-inserter.php:2997
291
  msgid ""
292
  "This way you can individually enable or disable blocks on specific posts or "
293
  "pages."
294
  msgstr ""
295
 
296
+ #: ad-inserter.php:2999
297
  msgid "For more information check page %s"
298
  msgstr ""
299
 
300
  #. translators: Ad Inserter Exceptions documentation page
301
+ #: ad-inserter.php:3001
302
  msgid "Individual Exceptions"
303
  msgstr ""
304
 
305
+ #: ad-inserter.php:3048
306
  msgid "STATIC PAGE"
307
  msgstr ""
308
 
309
+ #: ad-inserter.php:3051
310
  msgid "POST"
311
  msgstr ""
312
 
313
+ #: ad-inserter.php:3054
314
  msgid "HOMEPAGE"
315
  msgstr ""
316
 
317
+ #: ad-inserter.php:3057
318
  msgid "CATEGORY PAGE"
319
  msgstr ""
320
 
321
+ #: ad-inserter.php:3060
322
  msgid "SEARCH PAGE"
323
  msgstr ""
324
 
325
+ #: ad-inserter.php:3063
326
  msgid "ARCHIVE PAGE"
327
  msgstr ""
328
 
329
+ #: ad-inserter.php:3066
330
  msgid "ERROR 404 PAGE"
331
  msgstr ""
332
 
333
+ #: ad-inserter.php:3069
334
  msgid "AJAX CALL"
335
  msgstr ""
336
 
337
+ #: ad-inserter.php:3072
338
  msgid "UNKNOWN PAGE TYPE"
339
  msgstr ""
340
 
341
+ #: ad-inserter.php:3089
342
  msgid "Click to delete ad blocking detection cokies"
343
  msgstr ""
344
 
345
+ #: ad-inserter.php:3090
346
  msgid "AD BLOCKING STATUS UNKNOWN"
347
  msgstr ""
348
 
349
  #. translators: %s: AdSense Auto Ads
350
+ #: ad-inserter.php:3119
351
  msgid ""
352
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
353
  "positions"
354
  msgstr ""
355
 
356
+ #: ad-inserter.php:3254
357
  msgid "Code for insertion"
358
  msgstr ""
359
 
360
+ #: ad-inserter.php:3254
361
  msgid "character"
362
  msgid_plural "characters"
363
  msgstr[0] ""
364
  msgstr[1] ""
365
 
366
+ #: ad-inserter.php:3270
367
  msgid "Header code"
368
  msgstr ""
369
 
370
+ #: ad-inserter.php:3270
371
  msgctxt "Header code"
372
  msgid "DISABLED"
373
  msgstr ""
374
 
375
+ #: ad-inserter.php:3270 ad-inserter.php:3503
376
  msgid "character inserted"
377
  msgid_plural "characters inserted"
378
  msgstr[0] ""
379
  msgstr[1] ""
380
 
381
+ #: ad-inserter.php:3503
382
  msgid "Footer code"
383
  msgstr ""
384
 
385
+ #: ad-inserter.php:3503
386
  msgctxt "Footer code"
387
  msgid "DISABLED"
388
  msgstr ""
389
 
390
+ #: ad-inserter.php:3509
391
  msgid "JAVASCRIPT NOT WORKING"
392
  msgstr ""
393
 
394
+ #: ad-inserter.php:3509
395
  msgid "NO JAVASCRIPT ERRORS"
396
  msgstr ""
397
 
398
+ #: ad-inserter.php:3509
399
  msgid "JAVASCRIPT ERRORS"
400
  msgstr ""
401
 
402
  #. translators: block name (block with default settings)
403
+ #: ad-inserter.php:5956
404
  msgctxt "Block name"
405
  msgid "Default"
406
  msgstr ""
407
 
408
  #. translators: %s: Ad Inserter
409
+ #: ad-inserter.php:6622
410
  msgid "Error importing %s settings."
411
  msgstr ""
412
 
413
+ #: ad-inserter.php:6623
414
  msgid "Error importing settings for block"
415
  msgid_plural "Error importing settings for blocks:"
416
  msgstr[0] ""
417
  msgstr[1] ""
418
 
419
+ #: ad-inserter.php:6676
420
  msgid "Settings saved."
421
  msgstr ""
422
 
423
  #. translators: %s: Ad Inserter
424
+ #: ad-inserter.php:6678
425
  msgid "Invalid data received - %s settings not saved."
426
  msgstr ""
427
 
428
+ #: ad-inserter.php:6777
429
  msgid "Settings cleared."
430
  msgstr ""
431
 
432
  #. Translators: Post/Static page must have between X and Y words
433
+ #: ad-inserter.php:7162 ad-inserter.php:7164 ad-inserter.php:7187
434
+ #: settings.php:2202
435
  msgid "word"
436
  msgid_plural "words"
437
  msgstr[0] ""
438
  msgstr[1] ""
439
 
440
+ #: ad-inserter.php:7201 ad-inserter.php:7328
441
  msgid "HTML TAGS REMOVED"
442
  msgstr ""
443
 
444
+ #: ad-inserter.php:7404
445
  msgid "BEFORE COMMENTS"
446
  msgstr ""
447
 
448
+ #: ad-inserter.php:7530
449
  msgid "AFTER COMMENTS"
450
  msgstr ""
451
 
452
+ #: ad-inserter.php:7611
453
  msgid "BETWEEN COMMENTS"
454
  msgstr ""
455
 
456
+ #: ad-inserter.php:9473 ad-inserter.php:9556
457
  msgctxt "category name"
458
  msgid "Uncategorized"
459
  msgstr ""
460
 
461
+ #: ad-inserter.php:9784
462
  msgid "requires WordPress 4.6 or newer"
463
  msgstr ""
464
 
465
+ #: ad-inserter.php:9784
466
  msgid "Please update!"
467
  msgstr ""
468
 
469
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
470
  #. name with HTML tags will be added)
471
+ #: ad-inserter.php:10039
472
  msgid "Thank you for installing"
473
  msgstr ""
474
 
475
  #. translators: Opt-in message: %s: HTML tags
476
+ #: ad-inserter.php:10041
477
  msgid ""
478
  "We would like to %s track its usage %s on your site. This is completely "
479
  "optional and can be disabled at any time."
480
  msgstr ""
481
 
482
+ #: ad-inserter.php:10043
483
  msgid ""
484
  "We don't record any sensitive data, only information regarding the WordPress "
485
  "environment and plugin usage, which will help us to make improvements to the "
487
  msgstr ""
488
 
489
  #. translators: Deactivation message: %s: HTML tags
490
+ #: ad-inserter.php:10080
491
  msgid ""
492
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
493
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
495
  msgstr ""
496
 
497
  #. translators: %s: Ad Inserter
498
+ #: ad-inserter.php:10124
499
  msgid "%s block."
500
  msgstr ""
501
 
502
  #. translators: widget title
503
+ #: ad-inserter.php:10140 ad-inserter.php:10175
504
  msgid "Processing log"
505
  msgstr ""
506
 
507
  #. translators: widget title
508
+ #: ad-inserter.php:10142 ad-inserter.php:10176
509
  msgid "Dummy widget"
510
  msgstr ""
511
 
512
  #. translators: widget title
513
+ #: ad-inserter.php:10144 ad-inserter.php:10174
514
  msgid "Debugging tools"
515
  msgstr ""
516
 
517
  #. translators: block status (widget title)
518
+ #: ad-inserter.php:10151
519
  msgctxt "block"
520
  msgid "PAUSED"
521
  msgstr ""
522
 
523
+ #: ad-inserter.php:10152
524
  msgid "WIDGET DISABLED"
525
  msgstr ""
526
 
527
+ #: ad-inserter.php:10153
528
  msgid "Unknown block"
529
  msgstr ""
530
 
531
+ #: ad-inserter.php:10161 includes/functions-check-now.php:3261
532
+ #: includes/functions.old.php:3186 includes/functions.php:3575
533
+ #: settings.php:1210
534
  msgid "Title"
535
  msgstr ""
536
 
537
+ #: ad-inserter.php:10183
538
  msgctxt "Widget"
539
  msgid "Sticky"
540
  msgstr ""
541
 
542
+ #: ad-inserter.php:10232
543
  msgid ""
544
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
545
  "Inserter you need to first deactivate Ad Inserter Pro."
546
  msgstr ""
547
 
548
+ #: ad-inserter.php:10233
549
  msgid ""
550
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
551
  "will clear all settings that are available only in the Pro version "
553
  msgstr ""
554
 
555
  #. translators: %s: Ad Inserter
556
+ #: class.php:543 class.php:552 class.php:555
557
  msgid "PHP error in %s block"
558
  msgstr ""
559
 
560
+ #: class.php:2228
561
  msgid "Counters"
562
  msgstr ""
563
 
564
+ #: class.php:2232
565
  msgid "Content"
566
  msgstr ""
567
 
568
+ #: class.php:2237
569
  msgid "Excerpt"
570
  msgstr ""
571
 
572
+ #: class.php:2242 strings.php:17
573
  msgid "Before post"
574
  msgstr ""
575
 
576
+ #: class.php:2247 strings.php:18
577
  msgid "After post"
578
  msgstr ""
579
 
580
+ #: class.php:2252 strings.php:25
581
  msgid "Between posts"
582
  msgstr ""
583
 
584
+ #: class.php:2257 settings.php:1945 settings.php:4303
585
  msgid "Widget"
586
  msgstr ""
587
 
588
+ #: class.php:2262 settings.php:4301
589
  msgid "PHP function call"
590
  msgstr ""
591
 
592
  #. Translators: %s: custom hook name
593
+ #: class.php:2272
594
  msgid "Custom hook %s call"
595
  msgstr ""
596
 
597
+ #: class.php:2308
598
  msgid "AJAX REQUEST"
599
  msgstr ""
600
 
601
+ #: class.php:2311
602
  msgid "Ajax request for block in iframe"
603
  msgstr ""
604
 
605
+ #: class.php:2345
606
  msgid "Ajax request url, click to open it in a new tab"
607
  msgstr ""
608
 
609
+ #: class.php:2348
610
  msgid "IN THE LOOP"
611
  msgstr ""
612
 
613
+ #: class.php:2348
614
  msgid "YES"
615
  msgstr ""
616
 
617
+ #: class.php:2348
618
  msgid "NO"
619
  msgstr ""
620
 
621
+ #: class.php:2384
622
  msgid "BLOCK"
623
  msgstr ""
624
 
625
+ #: class.php:2384
626
  msgctxt "block or widget"
627
  msgid "INSERTED BUT NOT VISIBLE"
628
  msgstr ""
629
 
630
+ #: class.php:2552
631
  msgctxt "viewports"
632
  msgid "ALL"
633
  msgstr ""
634
 
635
+ #: class.php:2585 class.php:2627 class.php:3920 strings.php:278
636
  msgctxt "Block"
637
  msgid "HIDDEN"
638
  msgstr ""
639
 
640
+ #: class.php:2634 class.php:3923 strings.php:277
641
  msgctxt "Block"
642
  msgid "VISIBLE"
643
  msgstr ""
644
 
645
+ #: class.php:3159 class.php:3229
646
  msgid "ACTIVE GROUPS"
647
  msgstr ""
648
 
649
+ #: class.php:3619
650
  msgid "start='%s' end='%s' days='%s' type='%s'"
651
  msgstr ""
652
 
653
  #. translators: %s: list parameters and type
654
+ #: class.php:3627
655
  msgid "parameters='%s' type='%s'"
656
  msgstr ""
657
 
658
  #. translators: %s: list parameters and type
659
+ #: class.php:3629
660
  msgid "referers='%s' type='%s'"
661
  msgstr ""
662
 
663
  #. translators: %s: list parameters and type
664
+ #: class.php:3631
665
  msgid "clients='%s' type='%s'"
666
  msgstr ""
667
 
668
  #. translators: %s: list parameters and type
669
+ #: class.php:3803
670
  msgid "countries='%s' type='%s'"
671
  msgstr ""
672
 
673
  #. translators: %s: list parameters and type
674
+ #: class.php:3805
675
  msgid "ip addresses='%s' type='%s'"
676
  msgstr ""
677
 
678
+ #: class.php:3920 class.php:3923
679
  msgid "viewport='%s' type='%s'"
680
  msgstr ""
681
 
682
+ #: class.php:4277 strings.php:271
683
  msgid "BEFORE"
684
  msgstr ""
685
 
686
+ #: class.php:4285 strings.php:273
687
  msgid "PREPEND CONTENT"
688
  msgstr ""
689
 
690
+ #: class.php:4289 strings.php:274
691
  msgid "APPEND CONTENT"
692
  msgstr ""
693
 
694
+ #: class.php:4293 strings.php:275
695
  msgid "REPLACE CONTENT"
696
  msgstr ""
697
 
698
+ #: class.php:4297 strings.php:276
699
  msgid "REPLACE ELEMENT"
700
  msgstr ""
701
 
702
+ #: class.php:4308 strings.php:272
703
  msgid "AFTER"
704
  msgstr ""
705
 
706
+ #: class.php:4393 includes/preview.php:2340 includes/preview.php:2377
707
  msgid "Code"
708
  msgstr ""
709
 
710
+ #: class.php:4396
711
  msgid "for block"
712
  msgstr ""
713
 
714
+ #: class.php:8174
715
  msgid ""
716
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
717
  "extension for PHP."
718
  msgstr ""
719
 
720
  #: includes/editor.php:7 includes/placeholders.php:352
721
+ #: includes/preview.php:2281 strings.php:284
722
  msgid "Use"
723
  msgstr ""
724
 
725
+ #: includes/editor.php:8 includes/preview.php:2282
726
  msgid "Reset"
727
  msgstr ""
728
 
729
  #: includes/editor.php:9 includes/placeholders.php:354
730
+ #: includes/preview.php:2284 settings.php:3644 strings.php:227 strings.php:283
731
  msgid "Cancel"
732
  msgstr ""
733
 
736
  msgstr ""
737
 
738
  #: includes/editor.php:262 includes/preview-adb.php:289
739
+ #: includes/preview.php:2271
740
  msgid ""
741
  "This page was not loaded properly. Please check browser, plugins and ad "
742
  "blockers."
747
  msgstr ""
748
 
749
  #: includes/editor.php:264 includes/preview-adb.php:291
750
+ #: includes/preview.php:2273
751
  msgid "PAGE BLOCKED"
752
  msgstr ""
753
 
754
  #: includes/functions-check-now.php:288 includes/functions.old.php:289
755
+ #: includes/functions.php:303
756
  msgid "%d of %d names shown"
757
  msgstr ""
758
 
759
  #. translators: %s: name filter
760
  #: includes/functions-check-now.php:307 includes/functions.old.php:308
761
+ #: includes/functions.php:322
762
  msgid "No name matches filter"
763
  msgstr ""
764
 
765
  #. translators: %s: Ad Inserter Pro
766
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
767
+ #: includes/functions.php:402
768
  msgid ""
769
  "Import %s settings when saving - if checked, the encoded settings below will "
770
  "be imported for all blocks and settings"
771
  msgstr ""
772
 
773
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
774
+ #: includes/functions.php:402
775
  msgid "Import Settings for"
776
  msgstr ""
777
 
778
  #: includes/functions-check-now.php:400 includes/functions.old.php:387
779
+ #: includes/functions.php:406
780
  msgid "Saved settings for"
781
  msgstr ""
782
 
783
  #: includes/functions-check-now.php:420 includes/functions.old.php:407
784
+ #: includes/functions.php:426
785
  msgid "License Key"
786
  msgstr ""
787
 
788
  #: includes/functions-check-now.php:423 includes/functions.old.php:410
789
+ #: includes/functions.php:429
790
  msgid "License Key for"
791
  msgstr ""
792
 
793
  #: includes/functions-check-now.php:425 includes/functions.old.php:413
794
+ #: includes/functions.php:431
795
  msgid "Open license page"
796
  msgstr ""
797
 
798
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
799
+ #: includes/functions.php:438
800
  msgid "Hide license key"
801
  msgstr ""
802
 
803
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
804
+ #: includes/functions.php:438
805
  msgid "Hide key"
806
  msgstr ""
807
 
808
  #: includes/functions-check-now.php:447 includes/functions.old.php:436
809
+ #: includes/functions.php:453
810
  msgid "Main content element"
811
  msgstr ""
812
 
813
  #: includes/functions-check-now.php:450 includes/functions.old.php:439
814
+ #: includes/functions.php:456
815
  msgid ""
816
  "Main content element (#id or .class) for 'Stick to the content' position. "
817
  "Leave empty unless position is not properly calculated."
818
  msgstr ""
819
 
820
  #: includes/functions-check-now.php:451 includes/functions.old.php:440
821
+ #: includes/functions.php:457 settings.php:1361 settings.php:2859
822
  msgid "Open HTML element selector"
823
  msgstr ""
824
 
825
  #: includes/functions-check-now.php:456 includes/functions.old.php:445
826
+ #: includes/functions.php:462
827
  msgid "Lazy loading offset"
828
  msgstr ""
829
 
830
  #: includes/functions-check-now.php:459 includes/functions.old.php:448
831
+ #: includes/functions.php:465
832
  msgid "Offset of the block from the visible viewport when it should be loaded"
833
  msgstr ""
834
 
835
  #: includes/functions-check-now.php:470 includes/functions.old.php:459
836
+ #: includes/functions.php:476
837
  msgid "Export / Import Block Settings"
838
  msgstr ""
839
 
840
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
841
+ #: includes/functions.php:491
842
  msgid "Track impressions and clicks for this block"
843
  msgstr ""
844
 
845
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
846
+ #: includes/functions.php:491
847
  msgid " - global tracking disabled"
848
  msgstr ""
849
 
850
  #: includes/functions-check-now.php:492 includes/functions.old.php:481
851
+ #: includes/functions.php:498
852
  msgid "Generate PDF report"
853
  msgstr ""
854
 
855
  #: includes/functions-check-now.php:497 includes/functions.old.php:486
856
+ #: includes/functions.php:503
857
  msgid "Open public report"
858
  msgstr ""
859
 
860
  #: includes/functions-check-now.php:511 includes/functions.old.php:500
861
+ #: includes/functions.php:517
862
  msgid "Toggle Ad Blocking Statistics"
863
  msgstr ""
864
 
865
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
866
  #: includes/functions.old.php:508 includes/functions.old.php:2960
867
+ #: includes/functions.php:525 includes/functions.php:3318
868
  msgid "Toggle Statistics"
869
  msgstr ""
870
 
871
+ #: includes/functions-check-now.php:528 includes/functions.php:534
872
  msgid "Pin list"
873
  msgstr ""
874
 
875
  #. translators: %s: Ad Inserter Pro
876
  #: includes/functions-check-now.php:543 includes/functions.old.php:524
877
+ #: includes/functions.php:549
878
  msgid "%s license key is not set. Continue?"
879
  msgstr ""
880
 
881
  #. translators: %s: Ad Inserter Pro
882
  #: includes/functions-check-now.php:547 includes/functions.old.php:528
883
+ #: includes/functions.php:553
884
  msgid "Invalid %s license key. Continue?"
885
  msgstr ""
886
 
887
  #. translators: %s: Ad Inserter Pro
888
  #: includes/functions-check-now.php:551 includes/functions.old.php:532
889
+ #: includes/functions.php:557
890
  msgid "%s license overused. Continue?"
891
  msgstr ""
892
 
893
  #: includes/functions-check-now.php:555 includes/functions.old.php:536
894
+ #: includes/functions.php:565 settings.php:1115 settings.php:2303
895
  msgid "Save Settings"
896
  msgstr ""
897
 
898
  #: includes/functions-check-now.php:615 includes/functions.old.php:596
899
+ #: includes/functions.php:625 includes/preview.php:2473
900
  msgid "Horizontal position"
901
  msgstr ""
902
 
903
  #: includes/functions-check-now.php:638 includes/functions.old.php:619
904
+ #: includes/functions.php:650
905
  msgid ""
906
  "Horizontal margin from the content or screen edge, empty means default value "
907
  "from CSS"
908
  msgstr ""
909
 
910
  #: includes/functions-check-now.php:646 includes/functions.old.php:627
911
+ #: includes/functions.php:658 includes/preview.php:2533
912
  msgid "Vertical position"
913
  msgstr ""
914
 
915
  #: includes/functions-check-now.php:661 includes/functions.old.php:642
916
+ #: includes/functions.php:673
917
  msgid ""
918
  "Vertical margin from the top or bottom screen edge, empty means default "
919
  "value from CSS"
920
  msgstr ""
921
 
922
  #: includes/functions-check-now.php:686 includes/functions.old.php:667
923
+ #: includes/functions.php:701 includes/preview.php:2588
924
  msgid "Animation"
925
  msgstr ""
926
 
927
  #: includes/functions-check-now.php:704 includes/functions.old.php:685
928
+ #: includes/functions.php:720
929
  msgid "Trigger"
930
  msgstr ""
931
 
932
  #: includes/functions-check-now.php:713 includes/functions.old.php:694
933
+ #: includes/functions.php:729
934
  msgid ""
935
  "Trigger value: page scroll in %, page scroll in px or element with selector "
936
  "(#id or .class) becomes visible"
937
  msgstr ""
938
 
939
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
940
+ #: includes/functions.php:733
941
  msgid "Offset"
942
  msgstr ""
943
 
944
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
945
+ #: includes/functions.php:733
946
  msgid "Offset of trigger element"
947
  msgstr ""
948
 
949
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
950
+ #: includes/functions.php:737
951
  msgid "Delay"
952
  msgstr ""
953
 
954
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
955
+ #: includes/functions.php:737
956
  msgid "Delay animation after trigger condition"
957
  msgstr ""
958
 
959
  #: includes/functions-check-now.php:725 includes/functions.old.php:706
960
+ #: includes/functions.php:741
961
  msgid "Trigger once"
962
  msgstr ""
963
 
964
  #: includes/functions-check-now.php:727 includes/functions.old.php:708
965
+ #: includes/functions.php:743
966
  msgid "Trigger animation only once"
967
  msgstr ""
968
 
969
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
970
  #: includes/functions-check-now.php:2545 includes/functions.old.php:750
971
  #: includes/functions.old.php:2453 includes/functions.old.php:2470
972
+ #: includes/functions.php:851 includes/functions.php:2789
973
+ #: includes/functions.php:2805
974
  msgid "Tracking is globally disabled"
975
  msgstr ""
976
 
977
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
978
  #: includes/functions-check-now.php:2549 includes/functions.old.php:754
979
  #: includes/functions.old.php:2457 includes/functions.old.php:2474
980
+ #: includes/functions.php:855 includes/functions.php:2793
981
+ #: includes/functions.php:2809
982
  msgid "Tracking for this block is disabled"
983
  msgstr ""
984
 
985
  #: includes/functions-check-now.php:780 includes/functions.old.php:761
986
+ #: includes/functions.php:862
987
  msgid "Double click to toggle controls in public reports"
988
  msgstr ""
989
 
990
  #: includes/functions-check-now.php:786 includes/functions.old.php:767
991
+ #: includes/functions.php:868 settings.php:3579 settings.php:3615
992
+ #: settings.php:3657 strings.php:240
993
  msgid "Loading..."
994
  msgstr ""
995
 
996
  #: includes/functions-check-now.php:807 includes/functions.old.php:788
997
+ #: includes/functions.php:889
998
  msgid ""
999
  "Clear statistics data for the selected range - clear both dates to delete "
1000
  "all data for this block"
1001
  msgstr ""
1002
 
1003
  #: includes/functions-check-now.php:811 includes/functions.old.php:792
1004
+ #: includes/functions.php:893
1005
  msgid "Auto refresh data for the selected range every 60 seconds"
1006
  msgstr ""
1007
 
1008
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1009
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1010
+ #: includes/functions.php:896 includes/functions.php:5812
1011
  msgid "Load data for last month"
1012
  msgstr ""
1013
 
1014
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1015
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1016
+ #: includes/functions.php:896 includes/functions.php:5812
1017
  msgid "Last Month"
1018
  msgstr ""
1019
 
1020
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1021
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1022
+ #: includes/functions.php:899 includes/functions.php:5815
1023
  msgid "Load data for this month"
1024
  msgstr ""
1025
 
1026
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1027
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1028
+ #: includes/functions.php:899 includes/functions.php:5815
1029
  msgid "This Month"
1030
  msgstr ""
1031
 
1032
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1033
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1034
+ #: includes/functions.php:902 includes/functions.php:5818
1035
  msgid "Load data for this year"
1036
  msgstr ""
1037
 
1038
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1039
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1040
+ #: includes/functions.php:902 includes/functions.php:5818
1041
  msgid "This Year"
1042
  msgstr ""
1043
 
1044
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
1045
  #: includes/functions.old.php:804 includes/functions.old.php:5271
1046
+ #: includes/functions.php:905 includes/functions.php:5821
1047
  msgid "Load data for the last 15 days"
1048
  msgstr ""
1049
 
1050
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
1051
  #: includes/functions.old.php:807 includes/functions.old.php:5274
1052
+ #: includes/functions.php:908 includes/functions.php:5824
1053
  msgid "Load data for the last 30 days"
1054
  msgstr ""
1055
 
1056
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
1057
  #: includes/functions.old.php:810 includes/functions.old.php:5277
1058
+ #: includes/functions.php:911 includes/functions.php:5827
1059
  msgid "Load data for the last 90 days"
1060
  msgstr ""
1061
 
1062
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
1063
  #: includes/functions.old.php:813 includes/functions.old.php:5280
1064
+ #: includes/functions.php:914 includes/functions.php:5830
1065
  msgid "Load data for the last 180 days"
1066
  msgstr ""
1067
 
1068
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
1069
  #: includes/functions.old.php:816 includes/functions.old.php:5283
1070
+ #: includes/functions.php:917 includes/functions.php:5833
1071
  msgid "Load data for the last 365 days"
1072
  msgstr ""
1073
 
1074
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
1075
  #: includes/functions.old.php:826 includes/functions.old.php:5293
1076
+ #: includes/functions.php:927 includes/functions.php:5843
1077
  msgid "Load data for the selected range"
1078
  msgstr ""
1079
 
1080
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1081
+ #: includes/functions.php:943
1082
  msgid ""
1083
  "Import settings when saving - if checked, the encoded settings below will be "
1084
  "imported for this block"
1085
  msgstr ""
1086
 
1087
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1088
+ #: includes/functions.php:943
1089
  msgid "Import settings for block"
1090
  msgstr ""
1091
 
1092
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1093
+ #: includes/functions.php:947
1094
  msgid ""
1095
  "Import block name when saving - if checked and 'Import settings for block' "
1096
  "is also checked, the name from encoded settings below will be imported for "
1098
  msgstr ""
1099
 
1100
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1101
+ #: includes/functions.php:947
1102
  msgid "Import block name"
1103
  msgstr ""
1104
 
1105
  #: includes/functions-check-now.php:869 includes/functions.old.php:850
1106
+ #: includes/functions.php:951
1107
  msgid "Saved settings for block"
1108
  msgstr ""
1109
 
1110
  #: includes/functions-check-now.php:882 includes/functions.old.php:863
1111
+ #: includes/functions.php:964
1112
  msgid "Export / Import Ad Inserter Pro Settings"
1113
  msgstr ""
1114
 
1115
  #: includes/functions-check-now.php:892 includes/functions.old.php:873
1116
+ #: includes/functions.php:974
1117
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1118
  msgstr ""
1119
 
1120
  #: includes/functions-check-now.php:894 includes/functions.old.php:875
1121
+ #: includes/functions.php:976
1122
  msgid "Clear All Statistics Data"
1123
  msgstr ""
1124
 
1125
  #: includes/functions-check-now.php:921 includes/functions.old.php:902
1126
+ #: includes/functions.php:1006
1127
  msgid "Toggle country/city editor"
1128
  msgstr ""
1129
 
1130
  #: includes/functions-check-now.php:927 includes/functions.old.php:908
1131
+ #: includes/functions.php:1012
1132
  msgid "IP Addresses"
1133
  msgstr ""
1134
 
1135
  #: includes/functions-check-now.php:930 includes/functions.old.php:911
1136
+ #: includes/functions.php:1015
1137
  msgid "Toggle IP address editor"
1138
  msgstr ""
1139
 
1140
  #: includes/functions-check-now.php:933 includes/functions.old.php:914
1141
+ #: includes/functions.php:1018
1142
  msgid ""
1143
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1144
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1145
  msgstr ""
1146
 
1147
  #: includes/functions-check-now.php:937 includes/functions.old.php:918
1148
+ #: includes/functions.php:1027
1149
  msgid "Blacklist IP addresses"
1150
  msgstr ""
1151
 
1152
  #: includes/functions-check-now.php:941 includes/functions.old.php:922
1153
+ #: includes/functions.php:1031
1154
  msgid "Whitelist IP addresses"
1155
  msgstr ""
1156
 
1157
  #: includes/functions-check-now.php:952 includes/functions.old.php:933
1158
+ #: includes/functions.php:1042
1159
  msgid "Countries"
1160
  msgstr ""
1161
 
1162
  #: includes/functions-check-now.php:953 includes/functions.old.php:934
1163
+ #: includes/functions.php:1043
1164
  msgid "Cities"
1165
  msgstr ""
1166
 
1167
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
1168
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1169
+ #: includes/functions.php:1047 includes/functions.php:3283
1170
  msgid "Toggle country editor"
1171
  msgstr ""
1172
 
1173
  #: includes/functions-check-now.php:960 includes/functions.old.php:941
1174
+ #: includes/functions.php:1050
1175
  msgid "Toggle city editor"
1176
  msgstr ""
1177
 
1178
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
1179
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1180
+ #: includes/functions.php:1054 includes/functions.php:3286
1181
  msgid "Comma separated country ISO Alpha-2 codes"
1182
  msgstr ""
1183
 
1184
  #: includes/functions-check-now.php:968 includes/functions.old.php:949
1185
+ #: includes/functions.php:1063
1186
  msgid "Blacklist countries"
1187
  msgstr ""
1188
 
1189
  #: includes/functions-check-now.php:972 includes/functions.old.php:953
1190
+ #: includes/functions.php:1067
1191
  msgid "Whitelist countries"
1192
  msgstr ""
1193
 
1194
  #: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
1195
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1196
+ #: includes/functions.php:1523 includes/functions.php:1833
1197
  msgid "Enter license key"
1198
  msgstr ""
1199
 
1200
  #. translators: %s: Ad Inserter Pro
1201
  #: includes/functions-check-now.php:1388 includes/functions.old.php:1367
1202
+ #: includes/functions.php:1529
1203
  msgid ""
1204
  "%s license key is not set. Plugin functionality is limited and updates are "
1205
  "disabled."
1206
  msgstr ""
1207
 
1208
  #. translators: %s: Ad Inserter Pro
1209
+ #: includes/functions-check-now.php:1402 includes/functions.php:1543
1210
  msgid "Warning: %s plugin update server is not accessible"
1211
  msgstr ""
1212
 
1213
  #. translators: updates are not available
1214
+ #: includes/functions-check-now.php:1404 includes/functions.php:1545
1215
  msgid "updates"
1216
  msgstr ""
1217
 
1218
  #. translators: updates are not available
1219
+ #: includes/functions-check-now.php:1406 includes/functions.php:1547
1220
  msgid "are not available"
1221
  msgstr ""
1222
 
1223
  #: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
1224
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1225
+ #: includes/functions.php:1552 includes/functions.php:1842
1226
  msgid "Check license key"
1227
  msgstr ""
1228
 
1229
  #. translators: %s: Ad Inserter Pro
1230
  #: includes/functions-check-now.php:1417 includes/functions.old.php:1385
1231
+ #: includes/functions.php:1558
1232
  msgid "Invalid %s license key."
1233
  msgstr ""
1234
 
1235
  #. translators: %s: Ad Inserter Pro
1236
  #: includes/functions-check-now.php:1426 includes/functions.old.php:1394
1237
+ #: includes/functions.php:1567
1238
  msgid "%s license expired. Plugin updates are disabled."
1239
  msgstr ""
1240
 
1241
  #: includes/functions-check-now.php:1427 includes/functions.old.php:1395
1242
+ #: includes/functions.php:1568
1243
  msgid "Renew license"
1244
  msgstr ""
1245
 
1246
  #. translators: %s: Ad Inserter Pro
1247
  #: includes/functions-check-now.php:1435 includes/functions.old.php:1403
1248
+ #: includes/functions.php:1576
1249
  msgid "%s license overused. Plugin updates are disabled."
1250
  msgstr ""
1251
 
1252
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1253
+ #: includes/functions.php:1577
1254
  msgid "Manage licenses"
1255
  msgstr ""
1256
 
1257
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1258
+ #: includes/functions.php:1577
1259
  msgid "Upgrade license"
1260
  msgstr ""
1261
 
1262
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1263
  #: includes/functions-check-now.php:1683 includes/functions.old.php:1610
1264
+ #: includes/functions.php:1835
1265
  msgid ""
1266
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1267
  "limited and updates are disabled."
1269
 
1270
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1271
  #: includes/functions-check-now.php:1692 includes/functions.old.php:1619
1272
+ #: includes/functions.php:1844
1273
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1274
  msgstr ""
1275
 
1276
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1277
  #: includes/functions-check-now.php:1708 includes/functions.old.php:1635
1278
+ #: includes/functions.php:1860
1279
  msgid ""
1280
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1281
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1283
 
1284
  #. translators: 1, 3: HTML tags, 2: percentage
1285
  #: includes/functions-check-now.php:1715 includes/functions.old.php:1642
1286
+ #: includes/functions.php:1867
1287
  msgid ""
1288
  "During the license period and 30 days after the license has expired we offer "
1289
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1290
  msgstr ""
1291
 
1292
  #: includes/functions-check-now.php:1725 includes/functions.old.php:1652
1293
+ #: includes/functions.php:1877
1294
  msgid "No, thank you."
1295
  msgstr ""
1296
 
1297
  #: includes/functions-check-now.php:1728 includes/functions.old.php:1655
1298
+ #: includes/functions.php:1880
1299
  msgid "Not now, maybe later."
1300
  msgstr ""
1301
 
1302
  #: includes/functions-check-now.php:1742 includes/functions.old.php:1669
1303
+ #: includes/functions.php:1894
1304
  msgid "Renew the licence"
1305
  msgstr ""
1306
 
1307
  #: includes/functions-check-now.php:1744 includes/functions.old.php:1671
1308
+ #: includes/functions.php:1896
1309
  msgid "Update license status"
1310
  msgstr ""
1311
 
1312
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1313
  #: includes/functions-check-now.php:1755 includes/functions.old.php:1682
1314
+ #: includes/functions.php:1909
1315
  msgid ""
1316
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1317
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1319
 
1320
  #. Translators: %s: HTML tag
1321
  #: includes/functions-check-now.php:1777 includes/functions.old.php:1704
1322
+ #: includes/functions.php:1961
1323
  msgid "Warning: %s MaxMind IP geolocation database not found."
1324
  msgstr ""
1325
 
1326
  #: includes/functions-check-now.php:2330 includes/functions.old.php:2255
1327
+ #: includes/functions.php:2582
1328
  msgid "Geolocation"
1329
  msgstr ""
1330
 
1331
  #: includes/functions-check-now.php:2334 includes/functions.old.php:2259
1332
+ #: includes/functions.php:2586 settings.php:4290
1333
  msgid "Exceptions"
1334
  msgstr ""
1335
 
1336
  #: includes/functions-check-now.php:2339 includes/functions.old.php:2264
1337
+ #: includes/functions.php:2591
1338
  msgid "Multisite"
1339
  msgstr ""
1340
 
1341
  #: includes/functions-check-now.php:2344 includes/functions.old.php:2269
1342
+ #: includes/functions.php:2596 settings.php:4296
1343
  msgid "Tracking"
1344
  msgstr ""
1345
 
1346
  #. translators: %d: days, hours, minutes
1347
  #: includes/functions-check-now.php:2375 includes/functions.old.php:2300
1348
+ #: includes/functions.php:2627
1349
  msgid "Scheduled in %d days %d hours %d minutes"
1350
  msgstr ""
1351
 
1352
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1353
  #. HTML code for long dash separator
1354
  #: includes/functions-check-now.php:2384 includes/functions.old.php:2309
1355
+ #: includes/functions.php:2636
1356
  msgid "Active %s expires in %d days %d hours %d minutes"
1357
  msgstr ""
1358
 
1359
  #: includes/functions-check-now.php:2388 includes/functions.old.php:2313
1360
+ #: includes/functions.php:2640
1361
  msgid "Expired"
1362
  msgstr ""
1363
 
1364
  #: includes/functions-check-now.php:2396 includes/functions.old.php:2321
1365
+ #: includes/functions.php:2666 settings.php:1443 settings.php:1458
1366
+ #: settings.php:1574 settings.php:2200
1367
  msgid "and"
1368
  msgstr ""
1369
 
1370
  #: includes/functions-check-now.php:2399 includes/functions.old.php:2324
1371
+ #: includes/functions.php:2648
1372
  msgid "fallback"
1373
  msgstr ""
1374
 
1375
  #: includes/functions-check-now.php:2400 includes/functions.old.php:2325
1376
+ #: includes/functions.php:2649
1377
  msgid "Block to be used when scheduling expires"
1378
  msgstr ""
1379
 
1380
  #: includes/functions-check-now.php:2425 includes/functions.old.php:2350
1381
+ #: includes/functions.php:2686
1382
  msgid "Load in iframe"
1383
  msgstr ""
1384
 
1385
  #: includes/functions-check-now.php:2429 includes/functions.old.php:2354
1386
+ #: includes/functions.php:2690 includes/placeholders.php:389
1387
  msgid "Width"
1388
  msgstr ""
1389
 
1390
  #: includes/functions-check-now.php:2430 includes/functions.old.php:2355
1391
+ #: includes/functions.php:2691
1392
  msgid "iframe width, empty means full width (100%)"
1393
  msgstr ""
1394
 
1395
  #: includes/functions-check-now.php:2436 includes/functions.old.php:2361
1396
+ #: includes/functions.php:2697 includes/placeholders.php:384
1397
  msgid "Height"
1398
  msgstr ""
1399
 
1400
  #: includes/functions-check-now.php:2437 includes/functions.old.php:2362
1401
+ #: includes/functions.php:2698
1402
  msgid "iframe height, empty means adjust it to iframe content height"
1403
  msgstr ""
1404
 
1405
  #: includes/functions-check-now.php:2444 includes/functions.old.php:2369
1406
+ #: includes/functions.php:2705
1407
  msgid "Ad label in iframe"
1408
  msgstr ""
1409
 
1410
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1411
+ #: includes/functions.php:2710
1412
  msgid "Preview iframe code"
1413
  msgstr ""
1414
 
1415
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1416
+ #: includes/functions.php:2710 includes/preview.php:2293 settings.php:1110
1417
+ #: settings.php:2921
1418
  msgid "Preview"
1419
  msgstr ""
1420
 
1421
  #: includes/functions-check-now.php:2463 includes/functions.old.php:2388
1422
+ #: includes/functions.php:2724 settings.php:4297
1423
  msgid "Limits"
1424
  msgstr ""
1425
 
1426
  #: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
1427
  #: includes/functions-check-now.php:4429 includes/functions.old.php:2393
1428
  #: includes/functions.old.php:4266 includes/functions.old.php:4329
1429
+ #: includes/functions.php:2729 includes/functions.php:4788
1430
+ #: includes/functions.php:4851 settings.php:2350
1431
  msgid "Ad Blocking"
1432
  msgstr ""
1433
 
1434
  #. translators: 1, 2 and 3, 4: HTML tags
1435
  #: includes/functions-check-now.php:2477 includes/functions.old.php:2402
1436
+ #: includes/functions.php:2738
1437
  msgid ""
1438
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1439
  "for tracking!"
1442
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1443
  #. header
1444
  #: includes/functions-check-now.php:2486 includes/functions.old.php:2411
1445
+ #: includes/functions.php:2747
1446
  msgid ""
1447
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1448
  "enabled and automatic insertion %6$s!"
1449
  msgstr ""
1450
 
1451
  #: includes/functions-check-now.php:2553 includes/functions.old.php:2478
1452
+ #: includes/functions.php:2813
1453
  msgid "Click fraud protection is globally disabled"
1454
  msgstr ""
1455
 
1456
  #: includes/functions-check-now.php:2557 includes/functions.old.php:2482
1457
+ #: includes/functions.php:2817
1458
  msgid "Max clicks per time period are not defined"
1459
  msgstr ""
1460
 
1461
  #. Translators: Max n impressions
1462
  #: includes/functions-check-now.php:2571 includes/functions.old.php:2496
1463
+ #: includes/functions.php:2831
1464
  msgid "General limits"
1465
  msgstr ""
1466
 
1468
  #: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
1469
  #: includes/functions-check-now.php:2674 includes/functions.old.php:2502
1470
  #: includes/functions.old.php:2514 includes/functions.old.php:2599
1471
+ #: includes/functions.php:2837 includes/functions.php:2849
1472
+ #: includes/functions.php:2934
1473
  msgid "Current value"
1474
  msgstr ""
1475
 
1489
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1490
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1491
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1492
+ #: includes/functions.php:2856 includes/functions.php:2866
1493
+ #: includes/functions.php:2885 includes/functions.php:2895
1494
+ #: includes/functions.php:2941 includes/functions.php:2950
1495
+ #: includes/functions.php:2968 includes/functions.php:2977 settings.php:2121
1496
  msgid "Max"
1497
  msgstr ""
1498
 
1499
  #: includes/functions-check-now.php:2597 includes/functions.old.php:2522
1500
+ #: includes/functions.php:2857
1501
  msgid ""
1502
  "Maximum number of impressions for this block. Empty means no general "
1503
  "impression limit."
1511
  #: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
1512
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1513
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1514
+ #: includes/functions.php:2859 includes/functions.php:2869
1515
+ #: includes/functions.php:2944 includes/functions.php:2953
1516
  msgid "impression"
1517
  msgid_plural "impressions"
1518
  msgstr[0] ""
1519
  msgstr[1] ""
1520
 
1521
  #: includes/functions-check-now.php:2607 includes/functions.old.php:2532
1522
+ #: includes/functions.php:2867
1523
  msgid ""
1524
  "Maximum number of impressions per time period. Empty means no time limit."
1525
  msgstr ""
1532
  #: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
1533
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1534
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1535
+ #: includes/functions.php:2873 includes/functions.php:2902
1536
+ #: includes/functions.php:2957 includes/functions.php:2984
1537
  msgid "per"
1538
  msgstr ""
1539
 
1540
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1541
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1542
+ #: includes/functions.php:2874 includes/functions.php:2903
1543
  msgid "Time period in days. Empty means no time limit."
1544
  msgstr ""
1545
 
1554
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1555
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1556
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1557
+ #: includes/functions.php:2876 includes/functions.php:2905
1558
+ #: includes/functions.php:2960 includes/functions.php:2987
1559
+ #: includes/functions.php:3093 includes/functions.php:3444 strings.php:218
1560
+ #: strings.php:219 strings.php:220 strings.php:221 strings.php:222
1561
+ #: strings.php:223
1562
  msgid "day"
1563
  msgid_plural "days"
1564
  msgstr[0] ""
1565
  msgstr[1] ""
1566
 
1567
  #: includes/functions-check-now.php:2626 includes/functions.old.php:2551
1568
+ #: includes/functions.php:2886
1569
  msgid ""
1570
  "Maximum number of clicks on this block. Empty means no general click limit."
1571
  msgstr ""
1579
  #: includes/functions-check-now.php:4577 includes/functions.old.php:2553
1580
  #: includes/functions.old.php:2563 includes/functions.old.php:2636
1581
  #: includes/functions.old.php:2645 includes/functions.old.php:4477
1582
+ #: includes/functions.php:2888 includes/functions.php:2898
1583
+ #: includes/functions.php:2971 includes/functions.php:2980
1584
+ #: includes/functions.php:4999
1585
  msgid "click"
1586
  msgid_plural "clicks"
1587
  msgstr[0] ""
1588
  msgstr[1] ""
1589
 
1590
  #: includes/functions-check-now.php:2636 includes/functions.old.php:2561
1591
+ #: includes/functions.php:2896
1592
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1593
  msgstr ""
1594
 
1595
  #: includes/functions-check-now.php:2661 includes/functions.old.php:2586
1596
+ #: includes/functions.php:2921
1597
  msgid "Individual visitor limits"
1598
  msgstr ""
1599
 
1600
  #: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
1601
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1602
+ #: includes/functions.php:2925 includes/functions.php:2927
1603
  msgid ""
1604
  "When specified number of clicks on this block for a visitor will be reached "
1605
  "in the specified time period, all blocks that have click fraud protection "
1608
  msgstr ""
1609
 
1610
  #: includes/functions-check-now.php:2667 includes/functions.old.php:2592
1611
+ #: includes/functions.php:2927
1612
  msgid "Trigger click fraud protection"
1613
  msgstr ""
1614
 
1615
  #: includes/functions-check-now.php:2682 includes/functions.old.php:2607
1616
+ #: includes/functions.php:2942
1617
  msgid ""
1618
  "Maximum number of impressions of this block for each visitor. Empty means no "
1619
  "impression limit."
1620
  msgstr ""
1621
 
1622
  #: includes/functions-check-now.php:2691 includes/functions.old.php:2616
1623
+ #: includes/functions.php:2951
1624
  msgid ""
1625
  "Maximum number of impressions per time period for each visitor. Empty means "
1626
  "no impression limit per time period for visitors."
1628
 
1629
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1630
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1631
+ #: includes/functions.php:2958 includes/functions.php:2985
1632
  msgid ""
1633
  "Time period in days. Use decimal value (with decimal point) for shorter "
1634
  "periods. Empty means no time limit."
1635
  msgstr ""
1636
 
1637
  #: includes/functions-check-now.php:2709 includes/functions.old.php:2634
1638
+ #: includes/functions.php:2969
1639
  msgid ""
1640
  "Maximum number of clicks on this block for each visitor. Empty means no "
1641
  "click limit."
1642
  msgstr ""
1643
 
1644
  #: includes/functions-check-now.php:2718 includes/functions.old.php:2643
1645
+ #: includes/functions.php:2978
1646
  msgid ""
1647
  "Maximum number of clicks per time period for each visitor. Empty means no "
1648
  "click limit per time period for visitors."
1649
  msgstr ""
1650
 
1651
  #: includes/functions-check-now.php:2744 includes/functions.old.php:2669
1652
+ #: includes/functions.php:3004
1653
  msgid "When ad blocking is detected"
1654
  msgstr ""
1655
 
1656
  #: includes/functions-check-now.php:2753 includes/functions.old.php:2678
1657
+ #: includes/functions.php:3013
1658
  msgid "replacement"
1659
  msgstr ""
1660
 
1661
  #: includes/functions-check-now.php:2754 includes/functions.old.php:2679
1662
+ #: includes/functions.php:3014
1663
  msgid "Block to be shown when ad blocking is detected"
1664
  msgstr ""
1665
 
1666
  #: includes/functions-check-now.php:2755 includes/functions.old.php:2680
1667
+ #: includes/functions.php:3015
1668
  msgctxt "replacement"
1669
  msgid "None"
1670
  msgstr ""
1671
 
1672
  #: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
1673
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1674
+ #: includes/functions.php:3032 includes/functions.php:6056
1675
  msgid "Close button"
1676
  msgstr ""
1677
 
1678
  #: includes/functions-check-now.php:2824 includes/functions.old.php:2749
1679
+ #: includes/functions.php:3084
1680
  msgid "Auto close after"
1681
  msgstr ""
1682
 
1683
  #: includes/functions-check-now.php:2825 includes/functions.old.php:2750
1684
+ #: includes/functions.php:3085
1685
  msgid ""
1686
  "Time in seconds in which the ad will automatically close. Leave empty to "
1687
  "disable auto closing."
1689
 
1690
  #. Translators: Don't show for x days
1691
  #: includes/functions-check-now.php:2830 includes/functions.old.php:2755
1692
+ #: includes/functions.php:3090
1693
  msgid "Don't show for"
1694
  msgstr ""
1695
 
1696
  #: includes/functions-check-now.php:2831 includes/functions.old.php:2756
1697
+ #: includes/functions.php:3091
1698
  msgid ""
1699
  "Time in days in which closed ad will not be shown again. Use decimal value "
1700
  "(with decimal point) for shorter time period or leave empty to show it again "
1703
 
1704
  #. Translators: Delay showing for x pageviews
1705
  #: includes/functions-check-now.php:2851 includes/functions.old.php:2776
1706
+ #: includes/functions.php:3111
1707
  msgid "Delay showing for"
1708
  msgstr ""
1709
 
1710
  #: includes/functions-check-now.php:2852 includes/functions.old.php:2777
1711
+ #: includes/functions.php:3112
1712
  msgid ""
1713
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1714
  "empty to insert the code for the first pageview."
1718
  #. Translators: Show every x pageviews
1719
  #: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
1720
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1721
+ #: includes/functions.php:3114 includes/functions.php:3121
1722
  msgid "pageview"
1723
  msgid_plural "pageviews"
1724
  msgstr[0] ""
1726
 
1727
  #. Translators: Show every x pageviews
1728
  #: includes/functions-check-now.php:2858 includes/functions.old.php:2783
1729
+ #: includes/functions.php:3118
1730
  msgid "Show every"
1731
  msgid_plural "Show every"
1732
  msgstr[0] ""
1733
  msgstr[1] ""
1734
 
1735
  #: includes/functions-check-now.php:2859 includes/functions.old.php:2784
1736
+ #: includes/functions.php:3119
1737
  msgid ""
1738
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1739
  "for every pageview."
1740
  msgstr ""
1741
 
1742
  #: includes/functions-check-now.php:2878 includes/functions.old.php:2803
1743
+ #: includes/functions.php:3138
1744
  msgid "Lazy loading"
1745
  msgstr ""
1746
 
1747
  #. Translators: %s MaxMind
1748
  #: includes/functions-check-now.php:2935 includes/functions.old.php:2860
1749
+ #: includes/functions.php:3207
1750
  msgid "This product includes GeoLite2 data created by %s"
1751
  msgstr ""
1752
 
1753
  #: includes/functions-check-now.php:2946 includes/functions.old.php:2871
1754
+ #: includes/functions.php:3220
1755
  msgid "IP geolocation database"
1756
  msgstr ""
1757
 
1758
  #: includes/functions-check-now.php:2949 includes/functions.old.php:2874
1759
+ #: includes/functions.php:3223
1760
  msgid "Select IP geolocation database."
1761
  msgstr ""
1762
 
1763
  #: includes/functions-check-now.php:2960 includes/functions.old.php:2885
1764
+ #: includes/functions.php:3234
1765
  msgid "Automatic database updates"
1766
  msgstr ""
1767
 
1768
  #: includes/functions-check-now.php:2963 includes/functions.old.php:2888
1769
+ #: includes/functions.php:3237
1770
  msgid ""
1771
  "Automatically download and update free GeoLite2 IP geolocation database by "
1772
  "MaxMind"
1773
  msgstr ""
1774
 
1775
  #: includes/functions-check-now.php:2971 includes/functions.old.php:2896
1776
+ #: includes/functions.php:3254
1777
  msgid "Database"
1778
  msgstr ""
1779
 
1780
  #: includes/functions-check-now.php:2974 includes/functions.old.php:2899
1781
+ #: includes/functions.php:3257
1782
  msgid ""
1783
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1784
  "file"
1786
 
1787
  #. translators: %d: group number
1788
  #: includes/functions-check-now.php:2992 includes/functions.old.php:2917
1789
+ #: includes/functions.php:3275
1790
  msgid "Group %d"
1791
  msgstr ""
1792
 
1793
  #: includes/functions-check-now.php:2998 includes/functions.old.php:2923
1794
+ #: includes/functions.php:3281
1795
  msgid "countries"
1796
  msgstr ""
1797
 
1798
  #: includes/functions-check-now.php:3043 includes/functions.old.php:2968
1799
+ #: includes/functions.php:3326
1800
  msgid ""
1801
  "Enable impression and click tracking. You also need to enable tracking for "
1802
  "each block you want to track."
1803
  msgstr ""
1804
 
1805
  #: includes/functions-check-now.php:3050 includes/functions.old.php:2975
1806
+ #: includes/functions.php:3333
1807
  msgid "Generate report"
1808
  msgstr ""
1809
 
1810
  #: includes/functions-check-now.php:3058 includes/functions.old.php:2983
1811
+ #: includes/functions.php:3341
1812
  msgid "Impression and Click Tracking"
1813
  msgstr ""
1814
 
1815
  #: includes/functions-check-now.php:3059 includes/functions.old.php:2984
1816
+ #: includes/functions.php:3342 settings.php:2809
1817
  msgctxt "ad blocking detection"
1818
  msgid "NOT ENABLED"
1819
  msgstr ""
1820
 
1821
  #: includes/functions-check-now.php:3075 includes/functions.old.php:3000
1822
+ #: includes/functions.php:3358
1823
  msgid "Internal"
1824
  msgstr ""
1825
 
1826
  #: includes/functions-check-now.php:3079 includes/functions.old.php:3004
1827
+ #: includes/functions.php:3362
1828
  msgid "Track impressions and clicks with internal tracking and statistics"
1829
  msgstr ""
1830
 
1831
  #: includes/functions-check-now.php:3084 includes/functions.old.php:3009
1832
+ #: includes/functions.php:3367
1833
  msgid "External"
1834
  msgstr ""
1835
 
1836
  #: includes/functions-check-now.php:3088 includes/functions.old.php:3013
1837
+ #: includes/functions.php:3371
1838
  msgid ""
1839
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1840
  "code installed)"
1841
  msgstr ""
1842
 
1843
  #: includes/functions-check-now.php:3093 includes/functions.old.php:3018
1844
+ #: includes/functions.php:3376
1845
  msgid "Track Pageviews"
1846
  msgstr ""
1847
 
1848
  #: includes/functions-check-now.php:3099 includes/functions.old.php:3024
1849
+ #: includes/functions.php:3382
1850
  msgid "Track Pageviews by Device (as configured for viewports)"
1851
  msgstr ""
1852
 
1853
  #: includes/functions-check-now.php:3109 includes/functions.old.php:3034
1854
+ #: includes/functions.php:3392
1855
  msgid "Track for Logged in Users"
1856
  msgstr ""
1857
 
1858
  #: includes/functions-check-now.php:3115 includes/functions.old.php:3040
1859
+ #: includes/functions.php:3398
1860
  msgid "Track impressions and clicks from logged in users"
1861
  msgstr ""
1862
 
1863
  #: includes/functions-check-now.php:3125 includes/functions.old.php:3050
1864
+ #: includes/functions.php:3408
1865
  msgid "Click Detection"
1866
  msgstr ""
1867
 
1868
  #: includes/functions-check-now.php:3131 includes/functions.old.php:3056
1869
+ #: includes/functions.php:3414
1870
  msgid ""
1871
  "Standard method detects clicks only on banners with links, Advanced method "
1872
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1873
  msgstr ""
1874
 
1875
  #: includes/functions-check-now.php:3150 includes/functions.old.php:3075
1876
+ #: includes/functions.php:3433
1877
  msgid "Click fraud protection"
1878
  msgstr ""
1879
 
1880
  #: includes/functions-check-now.php:3154 includes/functions.old.php:3079
1881
+ #: includes/functions.php:3437
1882
  msgid "Globally enable click fraud protection for selected blocks."
1883
  msgstr ""
1884
 
1885
  #: includes/functions-check-now.php:3160 includes/functions.old.php:3085
1886
+ #: includes/functions.php:3443
1887
  msgid "Protection time"
1888
  msgstr ""
1889
 
1890
  #: includes/functions-check-now.php:3161 includes/functions.old.php:3086
1891
+ #: includes/functions.php:3444
1892
  msgid ""
1893
  "Time period in days in which blocks with enabled click fraud protection will "
1894
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1895
  msgstr ""
1896
 
1897
  #: includes/functions-check-now.php:3180 includes/functions.old.php:3105
1898
+ #: includes/functions.php:3463
1899
  msgid "Report header image"
1900
  msgstr ""
1901
 
1902
  #: includes/functions-check-now.php:3183 includes/functions.old.php:3108
1903
+ #: includes/functions.php:3466
1904
  msgid ""
1905
  "Image or logo to be displayed in the header of the statistins report. "
1906
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
1908
  msgstr ""
1909
 
1910
  #: includes/functions-check-now.php:3184 includes/functions.old.php:3109
1911
+ #: includes/functions.php:3467 strings.php:252
1912
  msgid "Select or upload header image"
1913
  msgstr ""
1914
 
1915
  #: includes/functions-check-now.php:3189 includes/functions.old.php:3114
1916
+ #: includes/functions.php:3472
1917
  msgid "Report header title"
1918
  msgstr ""
1919
 
1920
  #: includes/functions-check-now.php:3192 includes/functions.old.php:3117
1921
+ #: includes/functions.php:3475
1922
  msgid ""
1923
  "Title to be displayed in the header of the statistics report. Text or HTML "
1924
  "code, clear to reset to default text."
1925
  msgstr ""
1926
 
1927
  #: includes/functions-check-now.php:3197 includes/functions.old.php:3122
1928
+ #: includes/functions.php:3480
1929
  msgid "Report header description"
1930
  msgstr ""
1931
 
1932
  #: includes/functions-check-now.php:3200 includes/functions.old.php:3125
1933
+ #: includes/functions.php:3483
1934
  msgid ""
1935
  "Description to be displayed in the header of the statistics report. Text or "
1936
  "HTML code, clear to reset to default text."
1937
  msgstr ""
1938
 
1939
  #: includes/functions-check-now.php:3205 includes/functions.old.php:3130
1940
+ #: includes/functions.php:3488
1941
  msgid "Report footer"
1942
  msgstr ""
1943
 
1944
  #: includes/functions-check-now.php:3208 includes/functions.old.php:3133
1945
+ #: includes/functions.php:3491
1946
  msgid ""
1947
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1948
  "to default text."
1949
  msgstr ""
1950
 
1951
  #: includes/functions-check-now.php:3213 includes/functions.old.php:3138
1952
+ #: includes/functions.php:3496
1953
  msgid "Public report key"
1954
  msgstr ""
1955
 
1956
  #: includes/functions-check-now.php:3216 includes/functions.old.php:3141
1957
+ #: includes/functions.php:3499
1958
  msgid "String to generate unique report IDs. Clear to reset to default value."
1959
  msgstr ""
1960
 
1961
  #: includes/functions-check-now.php:3248 includes/functions.old.php:3173
1962
+ #: includes/functions.php:3562
1963
  msgid "Are you sure you want to clear all exceptions for block"
1964
  msgstr ""
1965
 
1966
  #: includes/functions-check-now.php:3249 includes/functions.old.php:3174
1967
+ #: includes/functions.php:3563
1968
  msgid "Clear all exceptions for block"
1969
  msgstr ""
1970
 
1971
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
1972
+ #: includes/functions.php:3570
1973
  msgid "Are you sure you want to clear all exceptions?"
1974
  msgstr ""
1975
 
1976
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
1977
+ #: includes/functions.php:3570
1978
  msgid "Clear all exceptions for all blocks"
1979
  msgstr ""
1980
 
1981
  #: includes/functions-check-now.php:3261 includes/functions.old.php:3186
1982
+ #: includes/functions.php:3575 settings.php:3888 settings.php:4373
1983
  msgid "Type"
1984
  msgstr ""
1985
 
1986
  #: includes/functions-check-now.php:3279 includes/functions.old.php:3204
1987
+ #: includes/functions.php:3593
1988
  msgid "View"
1989
  msgstr ""
1990
 
1991
  #: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
1992
  #: includes/functions-check-now.php:3291 includes/functions.old.php:3205
1993
  #: includes/functions.old.php:3212 includes/functions.old.php:3216
1994
+ #: includes/functions.php:3594 includes/functions.php:3601
1995
+ #: includes/functions.php:3605 includes/placeholders.php:353
1996
+ #: includes/preview.php:2663 settings.php:1347 settings.php:3648
1997
  msgid "Edit"
1998
  msgstr ""
1999
 
2000
  #: includes/functions-check-now.php:3310 includes/functions.old.php:3235
2001
+ #: includes/functions.php:3624
2002
  msgid "Are you sure you want to clear all exceptions for"
2003
  msgstr ""
2004
 
2005
  #: includes/functions-check-now.php:3311 includes/functions.old.php:3236
2006
+ #: includes/functions.php:3625
2007
  msgid "Clear all exceptions for"
2008
  msgstr ""
2009
 
2010
  #: includes/functions-check-now.php:3324 includes/functions.old.php:3249
2011
+ #: includes/functions.php:3638
2012
  msgid "No exceptions"
2013
  msgstr ""
2014
 
2015
  #. translators: %s: Ad Inserter Pro
2016
  #: includes/functions-check-now.php:3335 includes/functions.old.php:3260
2017
+ #: includes/functions.php:3649
2018
  msgid "%s options for network blogs"
2019
  msgstr ""
2020
 
2021
  #. translators: %s: Ad Inserter Pro
2022
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2023
+ #: includes/functions.php:3654
2024
  msgid "Enable %s widgets for sub-sites"
2025
  msgstr ""
2026
 
2027
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2028
+ #: includes/functions.php:3654
2029
  msgid "Widgets"
2030
  msgstr ""
2031
 
2032
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2033
+ #: includes/functions.php:3659
2034
  msgid "Enable PHP code processing for sub-sites"
2035
  msgstr ""
2036
 
2037
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2038
+ #: includes/functions.php:3659
2039
  msgid "PHP Processing"
2040
  msgstr ""
2041
 
2042
  #. translators: %s: Ad Inserter Pro
2043
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2044
+ #: includes/functions.php:3664
2045
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2046
  msgstr ""
2047
 
2048
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2049
+ #: includes/functions.php:3664
2050
  msgid "Post/Page exceptions"
2051
  msgstr ""
2052
 
2053
  #. translators: %s: Ad Inserter Pro
2054
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2055
+ #: includes/functions.php:3669
2056
  msgid "Enable %s settings page for sub-sites"
2057
  msgstr ""
2058
 
2059
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2060
+ #: includes/functions.php:3669
2061
  msgid "Settings page"
2062
  msgstr ""
2063
 
2064
  #. translators: %s: Ad Inserter Pro
2065
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2066
+ #: includes/functions.php:3674
2067
  msgid "Enable %s settings of main site to be used for all blogs"
2068
  msgstr ""
2069
 
2070
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2071
+ #: includes/functions.php:3674
2072
  msgid "Main site settings used for all blogs"
2073
  msgstr ""
2074
 
2075
  #: includes/functions-check-now.php:3371 includes/functions.old.php:3296
2076
+ #: includes/functions.php:3690 settings.php:2808
2077
  msgid "Ad Blocking Detection"
2078
  msgstr ""
2079
 
2080
  #: includes/functions-check-now.php:3377 includes/functions.old.php:3302
2081
+ #: includes/functions.php:3696
2082
  msgid ""
2083
  "Standard method is reliable but should be used only if Advanced method does "
2084
  "not work. Advanced method recreates files used for detection with random "
2089
  #: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
2090
  #: includes/functions-check-now.php:4139 includes/functions.old.php:3929
2091
  #: includes/functions.old.php:4019 includes/functions.old.php:4039
2092
+ #: includes/functions.php:4419 includes/functions.php:4541
2093
+ #: includes/functions.php:4561
2094
  msgid "AD BLOCKING"
2095
  msgstr ""
2096
 
2098
  #: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
2099
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
2100
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
2101
+ #: includes/functions.php:4420 includes/functions.php:4466
2102
+ #: includes/functions.php:4535 includes/functions.php:4562
2103
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2104
  msgstr ""
2105
 
2106
  #: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
2107
  #: includes/functions-check-now.php:4146 includes/functions.old.php:3933
2108
  #: includes/functions.old.php:4012 includes/functions.old.php:4046
2109
+ #: includes/functions.php:4423 includes/functions.php:4534
2110
+ #: includes/functions.php:4568
2111
  msgid "NO AD BLOCKING"
2112
  msgstr ""
2113
 
2114
  #: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
2115
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
2116
+ #: includes/functions.php:4465 includes/functions.php:4472
2117
  msgid "AD BLOCKING REPLACEMENT"
2118
  msgstr ""
2119
 
2120
  #: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
2121
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
2122
+ #: includes/functions.php:4641 includes/functions.php:4850
2123
  msgid "Pageviews"
2124
  msgstr ""
2125
 
2126
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2127
+ #: includes/functions.php:4787
2128
  msgctxt "Version"
2129
  msgid "Unknown"
2130
  msgstr ""
2131
 
2132
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2133
+ #: includes/functions.php:4787
2134
  msgctxt "Times"
2135
  msgid "DISPLAYED"
2136
  msgstr ""
2137
 
2138
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2139
+ #: includes/functions.php:4787
2140
  msgid "No version"
2141
  msgstr ""
2142
 
2143
  #: includes/functions-check-now.php:4366 includes/functions.old.php:4266
2144
+ #: includes/functions.php:4788
2145
  msgctxt "Times"
2146
  msgid "BLOCKED"
2147
  msgstr ""
2148
 
2149
  #: includes/functions-check-now.php:4428 includes/functions.old.php:4328
2150
+ #: includes/functions.php:4850
2151
  msgid "Impressions"
2152
  msgstr ""
2153
 
2154
  #: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
2155
  #: includes/functions-check-now.php:4485 includes/functions.old.php:4329
2156
  #: includes/functions.old.php:4330 includes/functions.old.php:4385
2157
+ #: includes/functions.php:4851 includes/functions.php:4852
2158
+ #: includes/functions.php:4907
2159
  msgid "Clicks"
2160
  msgstr ""
2161
 
2162
  #: includes/functions-check-now.php:4430 includes/functions.old.php:4330
2163
+ #: includes/functions.php:4852
2164
  msgid "events"
2165
  msgstr ""
2166
 
2167
  #: includes/functions-check-now.php:4431 includes/functions.old.php:4331
2168
+ #: includes/functions.php:4853
2169
  msgid "Ad Blocking Share"
2170
  msgstr ""
2171
 
2172
  #. translators: CTR as Click Through Rate
2173
  #: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
2174
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
2175
+ #: includes/functions.php:4853 includes/functions.php:4913
2176
  msgid "CTR"
2177
  msgstr ""
2178
 
2179
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2180
+ #: includes/functions.php:4995
2181
  msgid "pageviews"
2182
  msgid_plural "pageviews"
2183
  msgstr[0] ""
2184
  msgstr[1] ""
2185
 
2186
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2187
+ #: includes/functions.php:4995
2188
  msgid "impressions"
2189
  msgid_plural "impressions"
2190
  msgstr[0] ""
2191
  msgstr[1] ""
2192
 
2193
  #: includes/functions-check-now.php:4577 includes/functions.old.php:4477
2194
+ #: includes/functions.php:4999
2195
  msgid "event"
2196
  msgid_plural "events"
2197
  msgstr[0] ""
2198
  msgstr[1] ""
2199
 
2200
  #: includes/functions-check-now.php:4672 includes/functions.old.php:4572
2201
+ #: includes/functions.php:5094
2202
  msgctxt "Pageviews / Impressions"
2203
  msgid "Average"
2204
  msgstr ""
2205
 
2206
  #: includes/functions-check-now.php:4693 includes/functions.old.php:4593
2207
+ #: includes/functions.php:5115
2208
  msgctxt "Ad Blocking / Clicks"
2209
  msgid "Average"
2210
  msgstr ""
2211
 
2212
  #: includes/functions-check-now.php:4717 includes/functions.old.php:4617
2213
+ #: includes/functions.php:5139
2214
  msgctxt "Ad Blocking Share / CTR"
2215
  msgid "Average"
2216
  msgstr ""
2219
  #: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
2220
  #: includes/functions-check-now.php:5334 includes/functions.old.php:4799
2221
  #: includes/functions.old.php:4891 includes/functions.old.php:5207
2222
+ #: includes/functions.php:5322 includes/functions.php:5414
2223
+ #: includes/functions.php:5757 strings.php:203
2224
  msgid "%s Report"
2225
  msgstr ""
2226
 
2227
  #: includes/functions-check-now.php:5240 includes/functions.old.php:5113
2228
+ #: includes/functions.php:5663
2229
  msgid "for last month"
2230
  msgstr ""
2231
 
2232
  #: includes/functions-check-now.php:5245 includes/functions.old.php:5118
2233
+ #: includes/functions.php:5668
2234
  msgid "for this month"
2235
  msgstr ""
2236
 
2237
  #: includes/functions-check-now.php:5250 includes/functions.old.php:5123
2238
+ #: includes/functions.php:5673
2239
  msgid "for this year"
2240
  msgstr ""
2241
 
2242
  #: includes/functions-check-now.php:5255 includes/functions.old.php:5128
2243
+ #: includes/functions.php:5678
2244
  msgid "for the last 15 days"
2245
  msgstr ""
2246
 
2247
  #: includes/functions-check-now.php:5260 includes/functions.old.php:5133
2248
+ #: includes/functions.php:5683
2249
  msgid "for the last 30 days"
2250
  msgstr ""
2251
 
2252
  #: includes/functions-check-now.php:5265 includes/functions.old.php:5138
2253
+ #: includes/functions.php:5688
2254
  msgid "for the last 90 days"
2255
  msgstr ""
2256
 
2257
  #: includes/functions-check-now.php:5270 includes/functions.old.php:5143
2258
+ #: includes/functions.php:5693
2259
  msgid "for the last 180 days"
2260
  msgstr ""
2261
 
2262
  #: includes/functions-check-now.php:5275 includes/functions.old.php:5148
2263
+ #: includes/functions.php:5698
2264
  msgid "for the last 365 days"
2265
  msgstr ""
2266
 
2267
  #. translators: %s: Ad Inserter Pro
2268
+ #: includes/functions.php:561
2269
  msgid "Invalid %s version. Continue?"
2270
  msgstr ""
2271
 
2272
+ #: includes/functions.php:753 includes/preview.php:2606
2273
+ msgid "Background"
2274
+ msgstr ""
2275
+
2276
+ #. translators: %s HTML body tag
2277
+ #: includes/functions.php:760
2278
+ msgid "Set %s background"
2279
+ msgstr ""
2280
+
2281
+ #: includes/functions.php:773
2282
+ msgid "Image to be used for the background"
2283
+ msgstr ""
2284
+
2285
+ #: includes/functions.php:778
2286
+ msgid "Color"
2287
+ msgstr ""
2288
+
2289
+ #: includes/functions.php:779 includes/preview.php:2424
2290
+ msgid "Color to be used for the background"
2291
+ msgstr ""
2292
+
2293
+ #: includes/functions.php:782 includes/preview.php:2429
2294
+ msgid "Image size"
2295
+ msgstr ""
2296
+
2297
+ #: includes/functions.php:792
2298
+ msgid "Repeat"
2299
+ msgstr ""
2300
+
2301
+ #: includes/functions.php:805
2302
+ msgid "Select image"
2303
+ msgstr ""
2304
+
2305
+ #: includes/functions.php:1023 includes/functions.php:1059 settings.php:1700
2306
+ #: settings.php:1731 settings.php:1762 settings.php:1793 settings.php:1824
2307
+ #: settings.php:1855 settings.php:1885 settings.php:1915
2308
  msgid "Click to select black or white list"
2309
  msgstr ""
2310
 
2311
  #. translators: %s: Ad Inserter Pro
2312
+ #: includes/functions.php:1585
2313
  msgid "Invalid %s version."
2314
  msgstr ""
2315
 
2316
+ #: includes/functions.php:1586
2317
  msgid "Check license"
2318
  msgstr ""
2319
 
2320
+ #: includes/functions.php:1598
2321
  msgid "License"
2322
  msgstr ""
2323
 
2324
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2325
+ #: includes/functions.php:1921
2326
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2327
  msgstr ""
2328
 
2329
  #. Translators: %s: HTML tags
2330
+ #: includes/functions.php:1966
2331
  msgid ""
2332
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2333
  "account %s and create license key."
2334
  msgstr ""
2335
 
2336
+ #: includes/functions.php:2664
2337
  msgid "Start date"
2338
  msgstr ""
2339
 
2340
+ #: includes/functions.php:2664
2341
  msgid "Enter date in format yyyy-mm-dd"
2342
  msgstr ""
2343
 
2344
+ #: includes/functions.php:2665
2345
  msgid "Start time"
2346
  msgstr ""
2347
 
2348
+ #: includes/functions.php:2665
2349
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2350
  msgstr ""
2351
 
2352
+ #: includes/functions.php:2667
2353
  msgid "End date"
2354
  msgstr ""
2355
 
2356
+ #: includes/functions.php:2668
2357
  msgid "End time"
2358
  msgstr ""
2359
 
2360
+ #: includes/functions.php:2671
2361
  msgid "Select wanted days in week"
2362
  msgstr ""
2363
 
2364
+ #: includes/functions.php:3003
2365
  msgid "Ad blocking detection is disabled"
2366
  msgstr ""
2367
 
2368
+ #: includes/functions.php:3141
2369
  msgid "Manual loading"
2370
  msgstr ""
2371
 
2372
  #. Translators: %s HTML tags
2373
+ #: includes/functions.php:3209
2374
  msgid "Create and manage %s MaxMind license key %s"
2375
  msgstr ""
2376
 
2377
+ #: includes/functions.php:3245
2378
  msgid "MaxMind license key"
2379
  msgstr ""
2380
 
2381
+ #: includes/functions.php:3248
2382
  msgid "Enter license key obtained from MaxMind"
2383
  msgstr ""
2384
 
2385
+ #: includes/functions.php:3514
2386
  msgid "Event category"
2387
  msgstr ""
2388
 
2389
+ #: includes/functions.php:3517
2390
  msgid ""
2391
  "Category name used for external tracking events. You can use tags to get the "
2392
  "event, the number or the name of the block that caused the event."
2393
  msgstr ""
2394
 
2395
+ #: includes/functions.php:3522
2396
  msgid "Event action"
2397
  msgstr ""
2398
 
2399
+ #: includes/functions.php:3525
2400
  msgid ""
2401
  "Action name used for external tracking events. You can use tags to get the "
2402
  "event, the number or the name of the block that caused the event."
2403
  msgstr ""
2404
 
2405
+ #: includes/functions.php:3530
2406
  msgid "Event label"
2407
  msgstr ""
2408
 
2409
+ #: includes/functions.php:3533
2410
  msgid ""
2411
  "Label name used for external tracking events. You can use tags to get the "
2412
  "event, the number or the name of the block that caused the event."
2413
  msgstr ""
2414
 
2415
  #. translators: %s: Ad Inserter Pro
2416
+ #: includes/functions.php:3679
2417
  msgid "Show link to %s settings page for each site on the Sites page"
2418
  msgstr ""
2419
 
2420
  #. translators: %s: Ad Inserter Pro
2421
+ #: includes/functions.php:3679
2422
  msgid "Show link to %s on the Sites page"
2423
  msgstr ""
2424
 
2425
+ #: includes/functions.php:5269
2426
  msgid "File %s missing."
2427
  msgstr ""
2428
 
2454
  msgid "Placeholder"
2455
  msgstr ""
2456
 
2457
+ #: includes/placeholders.php:363 settings.php:956 settings.php:4374
2458
  msgid "Size"
2459
  msgstr ""
2460
 
2461
+ #: includes/placeholders.php:379 includes/preview.php:2421
2462
  msgid "Background color"
2463
  msgstr ""
2464
 
2522
  msgid "Remove dummy paragraph"
2523
  msgstr ""
2524
 
2525
+ #: includes/preview-adb.php:9 includes/preview.php:2281
2526
  msgid "Use current settings"
2527
  msgstr ""
2528
 
2549
  msgid "Default"
2550
  msgstr ""
2551
 
2552
+ #: includes/preview-adb.php:12 includes/preview.php:2284
2553
  msgid "Close preview window"
2554
  msgstr ""
2555
 
2562
  msgid "Ad Blocking Detected Message Preview"
2563
  msgstr ""
2564
 
2565
+ #: includes/preview-adb.php:348 settings.php:2934
2566
  msgid "Message CSS"
2567
  msgstr ""
2568
 
2569
+ #: includes/preview-adb.php:353 settings.php:2942
2570
  msgid "Overlay CSS"
2571
  msgstr ""
2572
 
2573
+ #: includes/preview.php:237
2574
  msgid "Sticky Code Preview"
2575
  msgstr ""
2576
 
2577
+ #: includes/preview.php:237
2578
  msgid "Code Preview"
2579
  msgstr ""
2580
 
2581
+ #: includes/preview.php:2279
2582
  msgid "Highlight inserted code"
2583
  msgstr ""
2584
 
2585
+ #: includes/preview.php:2279
2586
  msgid "Highlight"
2587
  msgstr ""
2588
 
2589
+ #: includes/preview.php:2282
2590
  msgid "Reset to block settings"
2591
  msgstr ""
2592
 
2593
+ #: includes/preview.php:2297
2594
  msgid "AdSense ad unit"
2595
  msgstr ""
2596
 
2597
+ #: includes/preview.php:2366
2598
  msgid "wrapping div"
2599
  msgstr ""
2600
 
2601
+ #: includes/preview.php:2371 includes/preview.php:2378
2602
  msgid "background"
2603
  msgstr ""
2604
 
2605
+ #: includes/preview.php:2405 includes/preview.php:2618 settings.php:1308
2606
  msgid "Alignment"
2607
  msgstr ""
2608
 
2609
+ #: includes/preview.php:2442
2610
+ msgid "Repeat image"
2611
+ msgstr ""
2612
+
2613
+ #: includes/preview.php:2525
2614
  msgid "Horizontal margin"
2615
  msgstr ""
2616
 
2617
+ #: includes/preview.php:2577
2618
  msgid "Vertical margin"
2619
  msgstr ""
2620
 
2621
+ #: includes/preview.php:2601
2622
  msgid "Animate"
2623
  msgstr ""
2624
 
2625
+ #: includes/preview.php:2672
2626
  msgid ""
2627
  "This is a preview of the code between dummy paragraphs. Here you can test "
2628
  "various block alignments, visually edit margin and padding values of the "
2632
  "restores all the values to those of the current block."
2633
  msgstr ""
2634
 
2635
+ #: includes/preview.php:2675
2636
  msgid ""
2637
  "This is a preview of the saved block between dummy paragraphs. It shows the "
2638
  "code with the alignment and style as it is set for this block. Highlight "
2639
  "button highlights background, wrapping div margin and code area."
2640
  msgstr ""
2641
 
2642
+ #: includes/preview.php:2677
2643
  msgid ""
2644
  "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
2645
  "code was loaded from your AdSense account. The ad block is displayed on a "
2647
  "highlight ad block."
2648
  msgstr ""
2649
 
2650
+ #: includes/preview.php:2683
2651
  msgid ""
2652
  "You can resize the window (and refresh the page to reload ads) to check "
2653
  "display with different screen widths.\n"
2655
  "settings will be copied to the active block."
2656
  msgstr ""
2657
 
2658
+ #: includes/preview.php:2685
2659
  msgid ""
2660
  "Please note that the code, block name, alignment and style are taken from "
2661
  "the current block settings (may not be saved).\n"
2663
  "padding can't be set. However, you can use own HTML code for the block."
2664
  msgstr ""
2665
 
2666
+ #: includes/preview.php:2690 includes/preview.php:2704
2667
+ #: includes/preview.php:2714 includes/preview.php:2724
2668
+ #: includes/preview.php:2734
2669
  msgid ""
2670
  "Ad Inserter can be configured to insert any code anywhere on the page. Each "
2671
  "code with it's settings is called a block.\n"
2679
  "and manual insertion."
2680
  msgstr ""
2681
 
2682
+ #: includes/preview.php:2695 includes/preview.php:2709
2683
+ #: includes/preview.php:2719 includes/preview.php:2729
2684
+ #: includes/preview.php:2739
2685
  msgid ""
2686
  "Few very important things you need to know in order to insert code and "
2687
  "display some ad:\n"
2694
  "individual post/page exceptions."
2695
  msgstr ""
2696
 
2697
+ #: includes/preview.php:2701
2698
  msgid ""
2699
  "This is a preview of the code for sticky ads. Here you can test various "
2700
  "horizontal and vertical alignments, close button locations, visually edit "
2709
  "Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
2710
  msgstr ""
2711
 
2712
+ #: settings.php:202 settings.php:1197
2713
  msgid ""
2714
  "Settings for individual exceptions have been updated. Please check all "
2715
  "blocks that have exceptions and and then save settings."
2719
  msgid "Online documentation"
2720
  msgstr ""
2721
 
2722
+ #: settings.php:248 settings.php:791 settings.php:2317
2723
  msgid "Show AdSense ad units"
2724
  msgstr ""
2725
 
2727
  msgid "Edit ads.txt file"
2728
  msgstr ""
2729
 
2730
+ #: settings.php:260 settings.php:1140
2731
  msgid "Check theme for available positions for automatic insertion"
2732
  msgstr ""
2733
 
2852
  msgid "General Settings"
2853
  msgstr ""
2854
 
2855
+ #: settings.php:739 settings.php:2661 settings.php:2728 settings.php:2914
2856
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2857
  msgstr ""
2858
 
2859
+ #: settings.php:746
2860
  msgid "Toggle tools"
2861
  msgstr ""
2862
 
2863
+ #: settings.php:754
2864
  msgid "Process PHP code in block"
2865
  msgstr ""
2866
 
2867
+ #: settings.php:761
2868
  msgid "Disable insertion of this block"
2869
  msgstr ""
2870
 
2871
+ #: settings.php:773
2872
  msgid "Toggle code generator"
2873
  msgstr ""
2874
 
2875
+ #: settings.php:777
2876
  msgid "Toggle rotation editor"
2877
  msgstr ""
2878
 
2879
+ #: settings.php:781
2880
  msgid "Open visual HTML editor"
2881
  msgstr ""
2882
 
2883
+ #: settings.php:800
2884
  msgid "Clear block"
2885
  msgstr ""
2886
 
2887
+ #: settings.php:805 settings.php:4245
2888
  msgid "Copy block"
2889
  msgstr ""
2890
 
2891
+ #: settings.php:809
2892
  msgid "Paste name"
2893
  msgstr ""
2894
 
2895
+ #: settings.php:813
2896
  msgid "Paste code"
2897
  msgstr ""
2898
 
2899
+ #: settings.php:817
2900
  msgid "Paste settings"
2901
  msgstr ""
2902
 
2903
+ #: settings.php:821
2904
  msgid "Paste block (name, code and settings)"
2905
  msgstr ""
2906
 
2907
+ #: settings.php:840
2908
  msgid "Rotation groups"
2909
  msgstr ""
2910
 
2911
+ #: settings.php:844
2912
  msgid "Remove option"
2913
  msgstr ""
2914
 
2915
+ #: settings.php:848
2916
  msgid "Add option"
2917
  msgstr ""
2918
 
2919
+ #: settings.php:863
2920
  msgid "Import code"
2921
  msgstr ""
2922
 
2923
+ #: settings.php:867
2924
  msgid "Generate code"
2925
  msgstr ""
2926
 
2927
+ #: settings.php:872
2928
  msgid "Banner"
2929
  msgstr ""
2930
 
2931
+ #: settings.php:883
2932
  msgid "Image"
2933
  msgstr ""
2934
 
2935
+ #: settings.php:891
2936
  msgid "Link"
2937
  msgstr ""
2938
 
2939
+ #: settings.php:902
2940
  msgid "Open link in a new tab"
2941
  msgstr ""
2942
 
2943
+ #: settings.php:903
2944
  msgid "Select Image"
2945
  msgstr ""
2946
 
2947
+ #: settings.php:904
2948
  msgid "Select Placeholder"
2949
  msgstr ""
2950
 
2951
+ #: settings.php:916
2952
  msgid "Comment"
2953
  msgstr ""
2954
 
2955
+ #: settings.php:925
2956
  msgctxt "AdSense"
2957
  msgid "Publisher ID"
2958
  msgstr ""
2959
 
2960
+ #: settings.php:934
2961
  msgctxt "AdSense"
2962
  msgid "Ad Slot ID"
2963
  msgstr ""
2964
 
2965
+ #: settings.php:943
2966
  msgid "Ad Type"
2967
  msgstr ""
2968
 
2969
+ #: settings.php:968
2970
  msgid "AMP Ad"
2971
  msgstr ""
2972
 
2973
+ #: settings.php:986
2974
  msgid "Show ad units from your AdSense account"
2975
  msgstr ""
2976
 
2977
+ #: settings.php:986
2978
  msgid "AdSense ad units"
2979
  msgstr ""
2980
 
2981
+ #: settings.php:1003
2982
  msgctxt "AdSense"
2983
  msgid "Layout"
2984
  msgstr ""
2985
 
2986
+ #: settings.php:1012
2987
  msgctxt "AdSense"
2988
  msgid "Layout Key"
2989
  msgstr ""
2990
 
2991
+ #: settings.php:1022
2992
  msgid "Full width"
2993
  msgstr ""
2994
 
2995
+ #: settings.php:1024
2996
  msgctxt "Full width"
2997
  msgid "Enabled"
2998
  msgstr ""
2999
 
3000
+ #: settings.php:1025
3001
  msgctxt "Full width"
3002
  msgid "Disabled"
3003
  msgstr ""
3004
 
3005
+ #: settings.php:1106
3006
  msgid ""
3007
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3008
  "Cookie or Referer (domain)"
3009
  msgstr ""
3010
 
3011
+ #: settings.php:1106
3012
  msgid "Lists"
3013
  msgstr ""
3014
 
3015
+ #: settings.php:1107
3016
  msgid "Widget, Shortcode and PHP function call"
3017
  msgstr ""
3018
 
3019
+ #: settings.php:1107
3020
  msgid "Manual"
3021
  msgstr ""
3022
 
3023
+ #: settings.php:1108
3024
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3025
  msgstr ""
3026
 
3027
+ #: settings.php:1108
3028
  msgid "Devices"
3029
  msgstr ""
3030
 
3031
+ #: settings.php:1109
3032
  msgid ""
3033
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3034
  "feeds), Filter, Scheduling, General tag"
3035
  msgstr ""
3036
 
3037
+ #: settings.php:1109
3038
  msgid "Misc"
3039
  msgstr ""
3040
 
3041
+ #: settings.php:1110
3042
  msgid "Preview code and alignment"
3043
  msgstr ""
3044
 
3045
+ #: settings.php:1113 settings.php:2301
3046
  msgid ""
3047
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3048
  "editor is active before saving settings."
3049
  msgstr ""
3050
 
3051
+ #: settings.php:1126 settings.php:1127
3052
  msgid "Enable insertion on posts"
3053
  msgstr ""
3054
 
3055
+ #: settings.php:1127 settings.php:3460
3056
  msgid "Posts"
3057
  msgstr ""
3058
 
3059
+ #: settings.php:1131 settings.php:1132
3060
  msgid ""
3061
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3062
  "page or theme homepage (available positions may depend on hooks used by the "
3063
  "theme)"
3064
  msgstr ""
3065
 
3066
+ #: settings.php:1132 settings.php:3462
3067
  msgid "Homepage"
3068
  msgstr ""
3069
 
3070
+ #: settings.php:1136 settings.php:1137
3071
  msgid "Enable insertion on category blog pages (including sub-pages)"
3072
  msgstr ""
3073
 
3074
+ #: settings.php:1137 settings.php:3463
3075
  msgid "Category pages"
3076
  msgstr ""
3077
 
3078
+ #: settings.php:1147 settings.php:1148
3079
  msgid "Enable insertion on static pages"
3080
  msgstr ""
3081
 
3082
+ #: settings.php:1148 settings.php:3461
3083
  msgid "Static pages"
3084
  msgstr ""
3085
 
3086
+ #: settings.php:1152 settings.php:1153
3087
  msgid "Enable insertion on search blog pages"
3088
  msgstr ""
3089
 
3090
+ #: settings.php:1153 settings.php:3465
3091
  msgid "Search pages"
3092
  msgstr ""
3093
 
3094
+ #: settings.php:1157 settings.php:1158
3095
  msgid "Enable insertion on tag or archive blog pages"
3096
  msgstr ""
3097
 
3098
+ #: settings.php:1161
3099
  msgid "Toggle settings for default insertion and list of individual exceptions"
3100
  msgstr ""
3101
 
3102
+ #: settings.php:1173
3103
  msgid ""
3104
  "Enable individual post/page exceptions for insertion of this block. They can "
3105
  "be configured on the individual post/page editor page (in the settings below "
3106
  "the editor)."
3107
  msgstr ""
3108
 
3109
+ #: settings.php:1174
3110
  msgid ""
3111
  "Enable individual post/page exceptions for insertion of this block. When "
3112
  "enabled they can be configured on the individual post/page editor page (in "
3113
  "the settings below the editor)."
3114
  msgstr ""
3115
 
3116
+ #: settings.php:1174
3117
  msgid "Use exceptions for individual posts or pages to change insertion"
3118
  msgstr ""
3119
 
3120
  #. Translators: Enabled means...
3121
+ #: settings.php:1182
3122
  msgid ""
3123
  "means the insertion for this block is enabled by default and disabled for "
3124
  "exceptions."
3125
  msgstr ""
3126
 
3127
  #. Translators: Disabled means...
3128
+ #: settings.php:1183
3129
  msgid ""
3130
  "means the insertion for this block is disabled by default and enabled for "
3131
  "exceptions."
3132
  msgstr ""
3133
 
3134
+ #: settings.php:1184
3135
  msgid ""
3136
  "When individual post/page exceptions are enabled they can be configured on "
3137
  "the individual post/page editor page (in the settings below the editor)."
3138
  msgstr ""
3139
 
3140
+ #: settings.php:1192
3141
  msgid ""
3142
  "No exception for post or static page defined. Block will not be inserted."
3143
  msgstr ""
3144
 
3145
+ #: settings.php:1210
3146
  msgctxt "post"
3147
  msgid "Type"
3148
  msgstr ""
3149
 
3150
  #. translators: %d: block number
3151
+ #: settings.php:1212
3152
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3153
  msgstr ""
3154
 
3155
+ #: settings.php:1213
3156
  msgid "Clear listed exceptions for block"
3157
  msgstr ""
3158
 
3159
+ #: settings.php:1239 settings.php:1387 settings.php:2075
3160
  msgid "Insertion"
3161
  msgstr ""
3162
 
3163
+ #: settings.php:1277
3164
  msgid ""
3165
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3166
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
3170
  "negative number means counting from the opposite direction"
3171
  msgstr ""
3172
 
3173
+ #: settings.php:1278
3174
  msgid ""
3175
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3176
  "means every N images, empty means all images, 0 means random image, value "
3180
  "direction"
3181
  msgstr ""
3182
 
3183
+ #: settings.php:1291
3184
  msgid ""
3185
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3186
  "numbers, %N means every N excerpts, empty means all excerpts"
3187
  msgstr ""
3188
 
3189
+ #: settings.php:1292
3190
  msgid ""
3191
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3192
  "numbers, %N means every N posts, empty means all posts"
3193
  msgstr ""
3194
 
3195
+ #: settings.php:1293
3196
  msgid ""
3197
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3198
  "numbers, %N means every N comments, empty means all comments"
3199
  msgstr ""
3200
 
3201
+ #: settings.php:1300
3202
  msgid "Toggle paragraph counting settings"
3203
  msgstr ""
3204
 
3205
+ #: settings.php:1301
3206
  msgid "Toggle paragraph clearance settings"
3207
  msgstr ""
3208
 
3209
+ #: settings.php:1304
3210
  msgid "Toggle insertion filter settings"
3211
  msgstr ""
3212
 
3213
+ #: settings.php:1322
3214
  msgid "Toggle insertion and alignment icons"
3215
  msgstr ""
3216
 
3217
+ #: settings.php:1336
3218
  msgid "Custom CSS code for the wrapping div"
3219
  msgstr ""
3220
 
3221
+ #: settings.php:1339 settings.php:1340 settings.php:1341 settings.php:1342
3222
+ #: settings.php:1343 settings.php:1344
3223
  msgid "CSS code for the wrapping div, click to edit"
3224
  msgstr ""
3225
 
3226
+ #: settings.php:1357
3227
  msgid "HTML element"
3228
  msgstr ""
3229
 
3230
+ #: settings.php:1370
3231
  msgid "HTML element selector or comma separated list of selectors"
3232
  msgstr ""
3233
 
3234
+ #: settings.php:1376 settings.php:2819
3235
  msgid "Action"
3236
  msgstr ""
3237
 
3238
+ #: settings.php:1388
3239
  msgid ""
3240
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3241
  "Server-side insertion inserts block when the page is generated but needs "
3242
  "Output buffering enabled."
3243
  msgstr ""
3244
 
3245
+ #: settings.php:1397
3246
  msgid "Code position"
3247
  msgstr ""
3248
 
3249
+ #: settings.php:1398
3250
  msgid ""
3251
  "Page position where the code for client-side insertion will be inserted."
3252
  msgstr ""
3253
 
3254
+ #: settings.php:1413
3255
  msgid "Count"
3256
  msgstr ""
3257
 
3258
+ #: settings.php:1419
3259
  msgid "paragraphs with tags"
3260
  msgstr ""
3261
 
3262
+ #: settings.php:1425
3263
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3264
  msgstr ""
3265
 
3266
+ #: settings.php:1434
3267
  msgid "that have between"
3268
  msgstr ""
3269
 
3270
+ #: settings.php:1440
3271
  msgid "Minimum number of paragraph words, leave empty for no limit"
3272
  msgstr ""
3273
 
3274
+ #: settings.php:1449
3275
  msgid "Maximum number of paragraph words, leave empty for no limit"
3276
  msgstr ""
3277
 
3278
+ #: settings.php:1452
3279
  msgid "words"
3280
  msgstr ""
3281
 
3282
+ #: settings.php:1467 settings.php:1526 settings.php:1622 settings.php:1648
3283
  msgid "Comma separated texts"
3284
  msgstr ""
3285
 
3286
+ #: settings.php:1480
3287
  msgid ""
3288
  "Count also paragraphs inside these elements - defined on general plugin "
3289
  "settings page - tab [*] / tab General"
3290
  msgstr ""
3291
 
3292
  #. Translators: %s: HTML tags
3293
+ #: settings.php:1486
3294
  msgid "Count inside %s elements"
3295
  msgstr ""
3296
 
3297
  #. translators: inside [HTML tags] elements that contain
3298
+ #: settings.php:1498
3299
  msgid "inside"
3300
  msgstr ""
3301
 
3302
+ #: settings.php:1504
3303
  msgid "Comma separated HTML tag names of container elements"
3304
  msgstr ""
3305
 
3306
  #. translators: inside [HTML tags] elements that contain
3307
+ #: settings.php:1513
3308
  msgid "elements that"
3309
  msgstr ""
3310
 
3311
+ #. Translators: Do not insert for first X and last Y paragraphs
3312
+ #: settings.php:1539
3313
+ msgid "Do not insert for first"
3314
+ msgid_plural "Do not insert for first"
3315
+ msgstr[0] ""
3316
+ msgstr[1] ""
3317
 
3318
+ #: settings.php:1545
3319
+ msgid ""
3320
+ "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3321
+ "first paragraphs"
3322
  msgstr ""
3323
 
3324
+ #. Translators: Do not insert for first X and last Y paragraphs
3325
+ #: settings.php:1548
3326
+ msgid "and last"
3327
+ msgid_plural "and last"
3328
+ msgstr[0] ""
3329
+ msgstr[1] ""
3330
+
3331
+ #: settings.php:1554
3332
+ msgid ""
3333
+ "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3334
+ "last paragraphs"
3335
  msgstr ""
3336
 
3337
+ #. Translators: Do not insert for first X and last Y paragraphs
3338
  #. Translators: Post/Static page must have between X and Y paragraphs
3339
+ #: settings.php:1557 settings.php:1583
3340
  msgid "paragraph"
3341
  msgid_plural "paragraphs"
3342
  msgstr[0] ""
3343
  msgstr[1] ""
3344
 
3345
+ #: settings.php:1565 settings.php:2198
3346
+ msgid "Post/Static page must have between"
3347
+ msgstr ""
3348
+
3349
+ #: settings.php:1571
3350
+ msgid "Minimum number of paragraphs, leave empty for no limit"
3351
+ msgstr ""
3352
+
3353
+ #: settings.php:1580
3354
+ msgid "Maximum number of paragraphs, leave empty for no limit"
3355
+ msgstr ""
3356
+
3357
+ #: settings.php:1591
3358
  msgid "Minimum number of words in paragraphs above"
3359
  msgstr ""
3360
 
3361
+ #: settings.php:1597
3362
  msgid ""
3363
  "Used only with automatic insertion After paragraph and empty paragraph "
3364
  "numbers"
3365
  msgstr ""
3366
 
3367
+ #: settings.php:1607 settings.php:1633
3368
  msgid "In"
3369
  msgstr ""
3370
 
3371
+ #: settings.php:1613
3372
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3373
  msgstr ""
3374
 
3375
+ #: settings.php:1616
3376
  msgid "paragraphs above avoid"
3377
  msgstr ""
3378
 
3379
+ #: settings.php:1639
3380
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3381
  msgstr ""
3382
 
3383
+ #: settings.php:1642
3384
  msgid "paragraphs below avoid"
3385
  msgstr ""
3386
 
3387
+ #: settings.php:1658
3388
  msgid "If text is found"
3389
  msgstr ""
3390
 
3391
+ #: settings.php:1665
3392
  msgid "check up to"
3393
  msgstr ""
3394
 
3395
+ #: settings.php:1673
3396
  msgctxt "check up to"
3397
  msgid "paragraphs"
3398
  msgstr ""
3399
 
3400
+ #: settings.php:1689
3401
  msgid "Categories"
3402
  msgstr ""
3403
 
3404
+ #: settings.php:1692
3405
  msgid "Toggle category editor"
3406
  msgstr ""
3407
 
3408
+ #: settings.php:1695
3409
  msgid "Comma separated category slugs"
3410
  msgstr ""
3411
 
3412
+ #: settings.php:1704
3413
  msgid "Blacklist categories"
3414
  msgstr ""
3415
 
3416
+ #: settings.php:1708
3417
  msgid "Whitelist categories"
3418
  msgstr ""
3419
 
3420
+ #: settings.php:1720
3421
  msgid "Tags"
3422
  msgstr ""
3423
 
3424
+ #: settings.php:1723
3425
  msgid "Toggle tag editor"
3426
  msgstr ""
3427
 
3428
+ #: settings.php:1726
3429
  msgid "Comma separated tag slugs"
3430
  msgstr ""
3431
 
3432
+ #: settings.php:1735
3433
  msgid "Blacklist tags"
3434
  msgstr ""
3435
 
3436
+ #: settings.php:1739
3437
  msgid "Whitelist tags"
3438
  msgstr ""
3439
 
3440
+ #: settings.php:1751
3441
  msgid "Taxonomies"
3442
  msgstr ""
3443
 
3444
+ #: settings.php:1754
3445
  msgid "Toggle taxonomy editor"
3446
  msgstr ""
3447
 
3448
+ #: settings.php:1757
3449
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3450
  msgstr ""
3451
 
3452
+ #: settings.php:1766
3453
  msgid "Blacklist taxonomies"
3454
  msgstr ""
3455
 
3456
+ #: settings.php:1770
3457
  msgid "Whitelist taxonomies"
3458
  msgstr ""
3459
 
3460
+ #: settings.php:1782
3461
  msgid "Post IDs"
3462
  msgstr ""
3463
 
3464
+ #: settings.php:1785
3465
  msgid "Toggle post/page ID editor"
3466
  msgstr ""
3467
 
3468
+ #: settings.php:1788
3469
  msgid "Comma separated post/page IDs"
3470
  msgstr ""
3471
 
3472
+ #: settings.php:1797
3473
  msgid "Blacklist IDs"
3474
  msgstr ""
3475
 
3476
+ #: settings.php:1801
3477
  msgid "Whitelist IDs"
3478
  msgstr ""
3479
 
3480
+ #: settings.php:1813
3481
  msgid "Urls"
3482
  msgstr ""
3483
 
3484
+ #: settings.php:1816
3485
  msgid "Toggle url editor"
3486
  msgstr ""
3487
 
3488
+ #: settings.php:1819
3489
  msgid ""
3490
  "Comma separated urls (page addresses) starting with / after domain name (e."
3491
  "g. /permalink-url, use only when you need to taget a specific url not "
3493
  "start*. *url-pattern*, *url-end)"
3494
  msgstr ""
3495
 
3496
+ #: settings.php:1828
3497
  msgid "Blacklist urls"
3498
  msgstr ""
3499
 
3500
+ #: settings.php:1832
3501
  msgid "Whitelist urls"
3502
  msgstr ""
3503
 
3504
+ #: settings.php:1843
3505
  msgid "Url parameters"
3506
  msgstr ""
3507
 
3508
+ #: settings.php:1847
3509
  msgid "Toggle url parameter and cookie editor"
3510
  msgstr ""
3511
 
3512
+ #: settings.php:1850
3513
  msgid ""
3514
  "Comma separated url query parameters or cookies with optional values (use "
3515
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
3516
  msgstr ""
3517
 
3518
+ #: settings.php:1859
3519
  msgid "Blacklist url parameters"
3520
  msgstr ""
3521
 
3522
+ #: settings.php:1863
3523
  msgid "Whitelist url parameters"
3524
  msgstr ""
3525
 
3526
+ #: settings.php:1874
3527
  msgid "Referrers"
3528
  msgstr ""
3529
 
3530
+ #: settings.php:1877
3531
  msgid "Toggle referer editor"
3532
  msgstr ""
3533
 
3534
+ #: settings.php:1880
3535
  msgid ""
3536
  "Comma separated domains, use # for no referrer, you can also use partial "
3537
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3538
  msgstr ""
3539
 
3540
+ #: settings.php:1889
3541
  msgid "Blacklist referers"
3542
  msgstr ""
3543
 
3544
+ #: settings.php:1893
3545
  msgid "Whitelist referers"
3546
  msgstr ""
3547
 
3548
+ #: settings.php:1904
3549
  msgid "Clients"
3550
  msgstr ""
3551
 
3552
+ #: settings.php:1907
3553
  msgid "Toggle client editor"
3554
  msgstr ""
3555
 
3556
+ #: settings.php:1910
3557
  msgid "Comma separated names (operating systems, browsers, devices)"
3558
  msgstr ""
3559
 
3560
+ #: settings.php:1919
3561
  msgid "Blacklist clients"
3562
  msgstr ""
3563
 
3564
+ #: settings.php:1923
3565
  msgid "Whitelist clients"
3566
  msgstr ""
3567
 
3568
+ #: settings.php:1944
3569
  msgid "Enable widget for this block"
3570
  msgstr ""
3571
 
3572
+ #: settings.php:1956
3573
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3574
  msgstr ""
3575
 
3576
+ #: settings.php:1957 settings.php:4302
3577
  msgid "Shortcode"
3578
  msgstr ""
3579
 
3580
+ #: settings.php:1972
3581
  msgid ""
3582
  "Enable PHP function call to insert this block at any position in theme file. "
3583
  "If function is disabled for block it will return empty string."
3584
  msgstr ""
3585
 
3586
+ #: settings.php:1973
3587
  msgid "PHP function"
3588
  msgstr ""
3589
 
3590
+ #: settings.php:1988
3591
  msgid "Client-side device detection"
3592
  msgstr ""
3593
 
3594
+ #: settings.php:1989
3595
  msgid "Server-side device detection"
3596
  msgstr ""
3597
 
3598
+ #: settings.php:1996
3599
  msgid "Use client-side detection to"
3600
  msgstr ""
3601
 
3602
+ #: settings.php:1998
3603
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3604
  msgstr ""
3605
 
3606
  #. Translators: only on (the following devices): viewport names (devices)
3607
  #. listed
3608
+ #: settings.php:2003
3609
  msgid "only on"
3610
  msgstr ""
3611
 
3612
+ #: settings.php:2031
3613
  msgid "Device min width %s px"
3614
  msgstr ""
3615
 
3616
+ #: settings.php:2057
3617
  msgid "Use server-side detection to insert block only for"
3618
  msgstr ""
3619
 
3620
+ #: settings.php:2076
3621
  msgid "Filter"
3622
  msgstr ""
3623
 
3624
+ #: settings.php:2077
3625
  msgid "Word Count"
3626
  msgstr ""
3627
 
3628
+ #: settings.php:2078 settings.php:4292
3629
  msgid "Scheduling"
3630
  msgstr ""
3631
 
3632
+ #: settings.php:2079
3633
  msgid "Display"
3634
  msgstr ""
3635
 
3636
+ #: settings.php:2081 settings.php:2343
3637
  msgid "General"
3638
  msgstr ""
3639
 
3640
+ #: settings.php:2093
3641
  msgid "Old settings for AMP pages detected"
3642
  msgstr ""
3643
 
3644
+ #: settings.php:2093
3645
  msgid ""
3646
  "To insert different codes on normal and AMP pages separate them with "
3647
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3648
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3649
  msgstr ""
3650
 
3651
+ #: settings.php:2093
3652
  msgid "AMP pages"
3653
  msgstr ""
3654
 
3655
+ #: settings.php:2098
3656
  msgid "Enable insertion for Ajax requests"
3657
  msgstr ""
3658
 
3659
+ #: settings.php:2098
3660
  msgid "Ajax requests"
3661
  msgstr ""
3662
 
3663
+ #: settings.php:2103
3664
  msgid "Enable insertion in RSS feeds"
3665
  msgstr ""
3666
 
3667
+ #: settings.php:2103
3668
  msgid "RSS Feed"
3669
  msgstr ""
3670
 
3671
+ #: settings.php:2108
3672
  msgid "Enable insertion on page for Error 404: Page not found"
3673
  msgstr ""
3674
 
3675
+ #: settings.php:2108
3676
  msgid "Error 404 page"
3677
  msgstr ""
3678
 
3679
+ #: settings.php:2120
3680
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3681
  msgstr ""
3682
 
3683
+ #: settings.php:2121
3684
  msgid "insertions"
3685
  msgstr ""
3686
 
3687
+ #: settings.php:2123
3688
  msgid ""
3689
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3690
  "General)"
3691
  msgstr ""
3692
 
3693
+ #: settings.php:2126 settings.php:2523
3694
  msgid "Max blocks per page"
3695
  msgstr ""
3696
 
3697
+ #: settings.php:2138
3698
  msgid "Insert for"
3699
  msgstr ""
3700
 
3701
+ #: settings.php:2146
3702
  msgid ""
3703
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3704
  "currently active). Might speed up insertion on content pages when "
3705
  "the_content filter is called multiple times."
3706
  msgstr ""
3707
 
3708
+ #: settings.php:2149
3709
  msgid "Insert only in the loop"
3710
  msgstr ""
3711
 
3712
+ #: settings.php:2155
3713
  msgid ""
3714
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3715
  msgstr ""
3716
 
3717
+ #: settings.php:2155
3718
  msgid "Disable caching"
3719
  msgstr ""
3720
 
3721
+ #: settings.php:2167
3722
  msgid "Filter insertions"
3723
  msgstr ""
3724
 
3725
+ #: settings.php:2170
3726
  msgid ""
3727
  "Filter multiple insertions by specifying wanted insertions for this block - "
3728
  "single number, comma separated numbers or %N for every N insertions - empty "
3730
  "using only one insertion type."
3731
  msgstr ""
3732
 
3733
+ #: settings.php:2173
3734
  msgid "using"
3735
  msgstr ""
3736
 
3737
+ #: settings.php:2192
3738
  msgid "Checked means specified calls are unwanted"
3739
  msgstr ""
3740
 
3741
+ #: settings.php:2192
3742
  msgid "Invert filter"
3743
  msgstr ""
3744
 
3745
+ #: settings.php:2199
3746
  msgid "Minimum number of post/static page words, leave empty for no limit"
3747
  msgstr ""
3748
 
3749
+ #: settings.php:2201
3750
  msgid "Maximum number of post/static page words, leave empty for no limit"
3751
  msgstr ""
3752
 
3753
+ #: settings.php:2214
3754
  msgid "for"
3755
  msgstr ""
3756
 
3757
+ #: settings.php:2214
3758
  msgid "days after publishing"
3759
  msgstr ""
3760
 
3761
+ #: settings.php:2216
3762
  msgid "Not available"
3763
  msgstr ""
3764
 
3765
+ #: settings.php:2229 settings.php:2515
3766
  msgid "Ad label"
3767
  msgstr ""
3768
 
3769
+ #: settings.php:2249
3770
  msgid "General tag"
3771
  msgstr ""
3772
 
3773
+ #: settings.php:2253
3774
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3775
  msgstr ""
3776
 
3777
  #. translators: %s: HTML tags
3778
+ #: settings.php:2262
3779
  msgid ""
3780
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
3781
  "client-side device detection!"
3782
  msgstr ""
3783
 
3784
  #. translators: %s: HTML tags for text and link
3785
+ #: settings.php:2276
3786
  msgid ""
3787
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
3788
  "side %s insertion. Use %s Server-side %s insertion."
3789
  msgstr ""
3790
 
3791
+ #: settings.php:2292
3792
  msgid "Settings"
3793
  msgstr ""
3794
 
3795
+ #: settings.php:2295
3796
  msgid "Settings timestamp"
3797
  msgstr ""
3798
 
3799
+ #: settings.php:2308
3800
  msgid "Are you sure you want to reset all settings?"
3801
  msgstr ""
3802
 
3803
+ #: settings.php:2308
3804
  msgid "Reset All Settings"
3805
  msgstr ""
3806
 
3807
+ #: settings.php:2344
3808
  msgid "Viewports"
3809
  msgstr ""
3810
 
3811
+ #: settings.php:2345
3812
  msgid "Hooks"
3813
  msgstr ""
3814
 
3815
+ #: settings.php:2346
3816
  msgid "Header"
3817
  msgstr ""
3818
 
3819
+ #: settings.php:2347 strings.php:30
3820
  msgid "Footer"
3821
  msgstr ""
3822
 
3823
+ #: settings.php:2352
3824
  msgid "Debugging"
3825
  msgstr ""
3826
 
3827
+ #: settings.php:2362
3828
  msgid "Plugin priority"
3829
  msgstr ""
3830
 
3831
+ #: settings.php:2370
3832
  msgid "Output buffering"
3833
  msgstr ""
3834
 
3835
+ #: settings.php:2373
3836
  msgid "Needed for position Above header but may not work with all themes"
3837
  msgstr ""
3838
 
3839
+ #: settings.php:2381
3840
  msgid "Syntax highlighting theme"
3841
  msgstr ""
3842
 
3843
+ #: settings.php:2388
3844
  msgctxt "no syntax highlighting themes"
3845
  msgid "None"
3846
  msgstr ""
3847
 
3848
+ #: settings.php:2389
3849
  msgid "No Syntax Highlighting"
3850
  msgstr ""
3851
 
3852
+ #: settings.php:2391
3853
  msgctxt "syntax highlighting themes"
3854
  msgid "Light"
3855
  msgstr ""
3856
 
3857
+ #: settings.php:2406
3858
  msgctxt "syntax highlighting themes"
3859
  msgid "Dark"
3860
  msgstr ""
3861
 
3862
+ #: settings.php:2432
3863
  msgid "Min. user role for ind. exceptions editing"
3864
  msgstr ""
3865
 
3866
+ #: settings.php:2442
3867
  msgid "Disable caching for logged in administrators"
3868
  msgstr ""
3869
 
3870
+ #: settings.php:2445
3871
  msgid ""
3872
  "Enabled means that logged in administrators will see non-cached (live) pages "
3873
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3874
  msgstr ""
3875
 
3876
+ #: settings.php:2453
3877
  msgid "Wait for jQuery"
3878
  msgstr ""
3879
 
3880
+ #: settings.php:2456
3881
  msgid ""
3882
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
3883
  "it will run the scripts that may need it"
3884
  msgstr ""
3885
 
3886
+ #: settings.php:2464
3887
  msgid "Sticky widget mode"
3888
  msgstr ""
3889
 
3890
+ #: settings.php:2467
3891
  msgid ""
3892
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3893
  "mode works with most themes but may reload ads on page load."
3894
  msgstr ""
3895
 
3896
+ #: settings.php:2475
3897
  msgid "Sticky widget top margin"
3898
  msgstr ""
3899
 
3900
+ #: settings.php:2483
3901
  msgid "Dynamic blocks"
3902
  msgstr ""
3903
 
3904
+ #: settings.php:2496
3905
  msgid "Functions for paragraph counting"
3906
  msgstr ""
3907
 
3908
+ #: settings.php:2499
3909
  msgid ""
3910
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3911
  "functions if paragraphs are not counted properly on non-english pages."
3912
  msgstr ""
3913
 
3914
+ #: settings.php:2507
3915
  msgid "No paragraph counting inside"
3916
  msgstr ""
3917
 
3918
+ #: settings.php:2518
3919
  msgid "Label text or HTML code"
3920
  msgstr ""
3921
 
3922
+ #: settings.php:2526
3923
  msgid ""
3924
  "Maximum number of inserted blocks per page. You need to enable Max page "
3925
  "insertions (button Misc / tab Insertion) to count block for this limit."
3926
  msgstr ""
3927
 
3928
+ #: settings.php:2540
3929
  msgid "Plugin usage tracking"
3930
  msgstr ""
3931
 
3932
  #. translators: %s: Ad Inserter
3933
+ #: settings.php:2543
3934
  msgid ""
3935
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3936
  "Only information regarding the WordPress environment and %s usage is "
3937
  "recorded (once per month and on events like plugin activation/deactivation)."
3938
  msgstr ""
3939
 
3940
+ #: settings.php:2561
3941
  msgid "CSS class name for the wrapping div"
3942
  msgstr ""
3943
 
3944
+ #: settings.php:2561
3945
  msgid "Block class name"
3946
  msgstr ""
3947
 
3948
+ #: settings.php:2567
3949
  msgid "Include block number class"
3950
  msgstr ""
3951
 
3952
+ #: settings.php:2567
3953
  msgid "Block number class"
3954
  msgstr ""
3955
 
3956
+ #: settings.php:2572
3957
  msgid "Include block name class"
3958
  msgstr ""
3959
 
3960
+ #: settings.php:2572
3961
  msgid "Block name class"
3962
  msgstr ""
3963
 
3964
+ #: settings.php:2577
3965
  msgid ""
3966
  "Instead of alignment classes generate inline alignment styles for blocks"
3967
  msgstr ""
3968
 
3969
+ #: settings.php:2577
3970
  msgid "Inline styles"
3971
  msgstr ""
3972
 
3973
+ #: settings.php:2583
3974
  msgid "Preview of the block wrapping code"
3975
  msgstr ""
3976
 
3977
+ #: settings.php:2584
3978
  msgid "Wrapping div"
3979
  msgstr ""
3980
 
3981
+ #: settings.php:2585 settings.php:3025
3982
  msgid "BLOCK CODE"
3983
  msgstr ""
3984
 
3985
+ #: settings.php:2593
3986
  msgid "Viewport Settings used for client-side device detection"
3987
  msgstr ""
3988
 
3989
  #. Translators: %d: viewport number
3990
+ #: settings.php:2601
3991
  msgid "Viewport %d name"
3992
  msgstr ""
3993
 
3994
+ #: settings.php:2604
3995
  msgid "min width"
3996
  msgstr ""
3997
 
3998
+ #: settings.php:2615
3999
  msgid "Custom Hooks"
4000
  msgstr ""
4001
 
4002
+ #: settings.php:2627 settings.php:2630
4003
  msgid "Enable hook"
4004
  msgstr ""
4005
 
4006
  #. translators: %d: hook number
4007
+ #: settings.php:2630
4008
  msgid "Hook %d name"
4009
  msgstr ""
4010
 
4011
+ #: settings.php:2633
4012
  msgid "Hook name for automatic insertion selection"
4013
  msgstr ""
4014
 
4015
+ #: settings.php:2636
4016
  msgid "action"
4017
  msgstr ""
4018
 
4019
+ #: settings.php:2639
4020
  msgid "Action name as used in the do_action () function"
4021
  msgstr ""
4022
 
4023
+ #: settings.php:2642
4024
  msgid "priority"
4025
  msgstr ""
4026
 
4027
+ #: settings.php:2645
4028
  msgid "Priority for the hook (default is 10)"
4029
  msgstr ""
4030
 
4031
+ #: settings.php:2666
4032
  msgid "Enable insertion of this code into HTML page header"
4033
  msgstr ""
4034
 
4035
+ #: settings.php:2670 settings.php:2737 settings.php:2919
4036
  msgid "Process PHP code"
4037
  msgstr ""
4038
 
4039
+ #: settings.php:2674
4040
  msgid "HTML Page Header Code"
4041
  msgstr ""
4042
 
4043
+ #: settings.php:2682
4044
  msgid "Code in the %s section of the HTML page"
4045
  msgstr ""
4046
 
4047
+ #: settings.php:2683
4048
  msgctxt "code in the header"
4049
  msgid "NOT ENABLED"
4050
  msgstr ""
4051
 
4052
+ #: settings.php:2700 settings.php:2768
4053
  msgid "Use server-side detection to insert code only for"
4054
  msgstr ""
4055
 
4056
+ #: settings.php:2715
4057
  msgid ""
4058
  "Enable insertion of this code into HTML page header on page for Error 404: "
4059
  "Page not found"
4060
  msgstr ""
4061
 
4062
+ #: settings.php:2715 settings.php:2783
4063
  msgid "Insert on Error 404 page"
4064
  msgstr ""
4065
 
4066
+ #: settings.php:2733
4067
  msgid "Enable insertion of this code into HTML page footer"
4068
  msgstr ""
4069
 
4070
+ #: settings.php:2741
4071
  msgid "HTML Page Footer Code"
4072
  msgstr ""
4073
 
4074
  #. translators: %s: HTML tags
4075
+ #: settings.php:2749
4076
  msgid "Code before the %s tag of the the HTML page"
4077
  msgstr ""
4078
 
4079
+ #: settings.php:2750
4080
  msgctxt "code in the footer"
4081
  msgid "NOT ENABLED"
4082
  msgstr ""
4083
 
4084
+ #: settings.php:2783
4085
  msgid ""
4086
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4087
  "Page not found"
4088
  msgstr ""
4089
 
4090
+ #: settings.php:2799
4091
  msgid "Code for ad blocking detection inserted. Click for details."
4092
  msgstr ""
4093
 
4094
+ #: settings.php:2804
4095
  msgid "Enable detection of ad blocking"
4096
  msgstr ""
4097
 
4098
+ #: settings.php:2822
4099
  msgid "Global action when ad blocking is detected"
4100
  msgstr ""
4101
 
4102
+ #: settings.php:2828
4103
  msgid "No action for"
4104
  msgstr ""
4105
 
4106
+ #: settings.php:2829
4107
  msgid "Exceptions for global action when ad blocking is detected."
4108
  msgstr ""
4109
 
4110
+ #: settings.php:2839
4111
  msgid "Delay Action"
4112
  msgstr ""
4113
 
4114
+ #: settings.php:2842
4115
  msgid ""
4116
  "Number of page views to delay action when ad blocking is detected. Leave "
4117
  "empty for no delay (action fires on first page view). Sets cookie."
4118
  msgstr ""
4119
 
4120
+ #: settings.php:2842
4121
  msgctxt "Delay Action for x "
4122
  msgid "page views"
4123
  msgstr ""
4124
 
4125
+ #: settings.php:2847
4126
  msgid "No Action Period"
4127
  msgstr ""
4128
 
4129
+ #: settings.php:2850
4130
  msgid ""
4131
  "Number of days to supress action when ad blocking is detected. Leave empty "
4132
  "for no no-action period (action fires always after defined page view delay). "
4133
  "Sets cookie."
4134
  msgstr ""
4135
 
4136
+ #: settings.php:2850
4137
  msgctxt "no action period"
4138
  msgid "days"
4139
  msgstr ""
4140
 
4141
+ #: settings.php:2855
4142
  msgid "Custom Selectors"
4143
  msgstr ""
4144
 
4145
+ #: settings.php:2858
4146
  msgid ""
4147
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4148
  "blocking detection. Invisible element or element with zero height means ad "
4149
  "blocking is present."
4150
  msgstr ""
4151
 
4152
+ #: settings.php:2870
4153
  msgid "Redirection Page"
4154
  msgstr ""
4155
 
4156
+ #: settings.php:2882
4157
  msgid "Custom Url"
4158
  msgstr ""
4159
 
4160
+ #: settings.php:2887
4161
  msgid ""
4162
  "Static page for redirection when ad blocking is detected. For other pages "
4163
  "select Custom url and set it below."
4164
  msgstr ""
4165
 
4166
+ #: settings.php:2896
4167
  msgid "Custom Redirection Url"
4168
  msgstr ""
4169
 
4170
+ #: settings.php:2908
4171
  msgid "Message HTML code"
4172
  msgstr ""
4173
 
4174
+ #: settings.php:2921
4175
  msgid "Preview message when ad blocking is detected"
4176
  msgstr ""
4177
 
4178
+ #: settings.php:2950
4179
  msgid "Prevent visitors from closing the warning message"
4180
  msgstr ""
4181
 
4182
+ #: settings.php:2950
4183
  msgid "Undismissible Message"
4184
  msgstr ""
4185
 
4186
+ #: settings.php:2956
4187
  msgid "Not undismissible for"
4188
  msgstr ""
4189
 
4190
+ #: settings.php:2957
4191
  msgid "Users which can close the warning message."
4192
  msgstr ""
4193
 
4194
+ #: settings.php:2971
4195
  msgid ""
4196
  "Force showing admin toolbar for administrators when viewing site. Enable "
4197
  "this option when you are logged in as admin and you don't see admin toolbar."
4198
  msgstr ""
4199
 
4200
+ #: settings.php:2979
4201
  msgid "Disable header code (Header tab)"
4202
  msgstr ""
4203
 
4204
+ #: settings.php:2983
4205
  msgid "Disable footer code (Footer tab)"
4206
  msgstr ""
4207
 
4208
  #. translators: %s: Ad Inserter
4209
+ #: settings.php:2987
4210
  msgid "Disable %s JavaScript code"
4211
  msgstr ""
4212
 
4213
  #. translators: %s: Ad Inserter
4214
+ #: settings.php:2991
4215
  msgid "Disable %s CSS code"
4216
  msgstr ""
4217
 
4218
+ #: settings.php:2995
4219
  msgid ""
4220
  "Disable PHP code processing (in all blocks including header and footer code)"
4221
  msgstr ""
4222
 
4223
+ #: settings.php:2999
4224
  msgid "Disable insertion of all blocks"
4225
  msgstr ""
4226
 
4227
+ #: settings.php:3003
4228
  msgid "Disable insertions"
4229
  msgstr ""
4230
 
4231
  #. translators: %s: Ad Inserter
4232
+ #: settings.php:3015
4233
  msgid "%s CSS CODE"
4234
  msgstr ""
4235
 
4236
+ #: settings.php:3018
4237
  msgid "HEADER CODE"
4238
  msgstr ""
4239
 
4240
  #. translators: %s: PHP tags
4241
+ #: settings.php:3024
4242
  msgid "BLOCK PHP CODE"
4243
  msgstr ""
4244
 
4245
  #. translators: %s: Ad Inserter
4246
+ #: settings.php:3030
4247
  msgid "%s JS CODE"
4248
  msgstr ""
4249
 
4250
+ #: settings.php:3033
4251
  msgid "FOOTER CODE"
4252
  msgstr ""
4253
 
4254
+ #: settings.php:3042
4255
  msgid "Force showing admin toolbar when viewing site"
4256
  msgstr ""
4257
 
4258
+ #: settings.php:3049
4259
  msgid "Enable debugging functions in admin toolbar"
4260
  msgstr ""
4261
 
4262
+ #: settings.php:3051
4263
  msgid "Debugging functions in admin toolbar"
4264
  msgstr ""
4265
 
4266
+ #: settings.php:3058
4267
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4268
  msgstr ""
4269
 
4270
+ #: settings.php:3060
4271
  msgid "Debugging functions on mobile screens"
4272
  msgstr ""
4273
 
4274
+ #: settings.php:3067
4275
  msgid ""
4276
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4277
  "tags, processing) by url parameters for non-logged in users. Enable this "
4280
  "administrators debugging is always enabled."
4281
  msgstr ""
4282
 
4283
+ #: settings.php:3069
4284
  msgid "Remote debugging"
4285
  msgstr ""
4286
 
4287
+ #: settings.php:3076
4288
  msgid ""
4289
  "Disable translation to see original texts for the settings and messages in "
4290
  "English"
4291
  msgstr ""
4292
 
4293
+ #: settings.php:3078
4294
  msgid "Disable translation"
4295
  msgstr ""
4296
 
4297
+ #: settings.php:3448
4298
  msgid "Available positions for current theme"
4299
  msgstr ""
4300
 
4301
+ #: settings.php:3449
4302
  msgid "Error checking pages"
4303
  msgstr ""
4304
 
4305
+ #: settings.php:3452
4306
  msgid "Toggle theme checker for available positions for automatic insertion"
4307
  msgstr ""
4308
 
4309
+ #: settings.php:3452
4310
  msgctxt "Button"
4311
  msgid "Check"
4312
  msgstr ""
4313
 
4314
+ #: settings.php:3459
4315
  msgid "Position"
4316
  msgstr ""
4317
 
4318
+ #: settings.php:3464
4319
  msgid "Archive pages"
4320
  msgstr ""
4321
 
4322
+ #: settings.php:3523
4323
  msgid ""
4324
  "Position not available because output buffering (tab [*]) is not enabled"
4325
  msgstr ""
4326
 
4327
+ #: settings.php:3526 strings.php:248
4328
  msgid "Position not checked yet"
4329
  msgstr ""
4330
 
4331
+ #: settings.php:3562
4332
  msgid "Toggle active/all blocks"
4333
  msgstr ""
4334
 
4335
+ #: settings.php:3566 strings.php:235
4336
  msgid "Rearrange block order"
4337
  msgstr ""
4338
 
4339
+ #: settings.php:3571
4340
  msgid "Save new block order"
4341
  msgstr ""
4342
 
4343
+ #: settings.php:3597
4344
  msgid "Toggle active/all ad units"
4345
  msgstr ""
4346
 
4347
+ #: settings.php:3601
4348
  msgid "Reload AdSense ad units"
4349
  msgstr ""
4350
 
4351
+ #: settings.php:3605
4352
  msgid "Clear authorization to access AdSense account"
4353
  msgstr ""
4354
 
4355
+ #: settings.php:3609 settings.php:4459 settings.php:4526 strings.php:243
4356
  msgid "Google AdSense Homepage"
4357
  msgstr ""
4358
 
4359
+ #: settings.php:3625
4360
  msgid "Switch to physical ads.txt file"
4361
  msgstr ""
4362
 
4363
+ #: settings.php:3626
4364
  msgid "Switch to virtual ads.txt file"
4365
  msgstr ""
4366
 
4367
  #. translators: %s: ads.txt
4368
+ #: settings.php:3636
4369
  msgid "Open %s"
4370
  msgstr ""
4371
 
4372
+ #: settings.php:3644
4373
  msgid "Reload ads.txt file"
4374
  msgstr ""
4375
 
4376
+ #: settings.php:3648 settings.php:4586
4377
  msgid "Save"
4378
  msgstr ""
4379
 
4380
  #. translators: %s: Ad Inserter
4381
+ #: settings.php:3823
4382
  msgid "ads.txt file: %s virtual ads.txt file"
4383
  msgstr ""
4384
 
4385
+ #: settings.php:3828 settings.php:3848 strings.php:224
4386
  msgid "Warning"
4387
  msgstr ""
4388
 
4389
  #. translators: %s: Ad Inserter
4390
+ #: settings.php:3828
4391
  msgid "%s virtual file ads.txt not found"
4392
  msgstr ""
4393
 
4394
+ #: settings.php:3836
4395
  msgid "IMPORTANT"
4396
  msgstr ""
4397
 
4398
+ #: settings.php:3836
4399
  msgid "ads.txt file must be placed on the root domain"
4400
  msgstr ""
4401
 
4402
+ #: settings.php:3841
4403
  msgid "ads.txt file"
4404
  msgstr ""
4405
 
4406
+ #: settings.php:3841
4407
  msgid "NOT WRITABLE"
4408
  msgstr ""
4409
 
4410
+ #: settings.php:3848
4411
  msgid "file %s not found"
4412
  msgstr ""
4413
 
4414
+ #: settings.php:3858
4415
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4416
  msgstr ""
4417
 
4418
  #. translators: %s: Ad Inserter
4419
+ #: settings.php:3864
4420
  msgid "%s virtual ads.txt file"
4421
  msgstr ""
4422
 
4423
+ #: settings.php:3886
4424
  msgid "Advertising system"
4425
  msgstr ""
4426
 
4427
+ #: settings.php:3887
4428
  msgid "Account ID"
4429
  msgstr ""
4430
 
4431
+ #: settings.php:3889
4432
  msgid "Certification authority ID"
4433
  msgstr ""
4434
 
4435
+ #: settings.php:3904
4436
  msgid "Account ID found in block and present in ads.txt"
4437
  msgstr ""
4438
 
4439
+ #: settings.php:3908
4440
  msgid "Account ID found in block but not present in ads.txt"
4441
  msgstr ""
4442
 
4443
+ #: settings.php:4242
4444
  msgid "Preview block"
4445
  msgstr ""
4446
 
4447
+ #: settings.php:4249
4448
  msgid "Pause block"
4449
  msgstr ""
4450
 
4451
+ #: settings.php:4288
4452
  msgid "Automatic insertion"
4453
  msgstr ""
4454
 
4455
  #. translators: %s HTML tags
4456
+ #: settings.php:4289 settings.php:5258
4457
  msgid "PHP code processing"
4458
  msgstr ""
4459
 
4460
+ #: settings.php:4291
4461
  msgid "Device detection"
4462
  msgstr ""
4463
 
4464
+ #: settings.php:4314
4465
  msgid "No active block"
4466
  msgstr ""
4467
 
4468
+ #: settings.php:4315
4469
  msgid "No block matches search keywords"
4470
  msgstr ""
4471
 
4472
+ #: settings.php:4370
4473
  msgid "Ad unit"
4474
  msgstr ""
4475
 
4476
+ #: settings.php:4372
4477
  msgid "Slot ID"
4478
  msgstr ""
4479
 
4480
+ #: settings.php:4398
4481
  msgid "Copy AdSense code"
4482
  msgstr ""
4483
 
4484
+ #: settings.php:4401
4485
  msgid "Preview AdSense ad"
4486
  msgstr ""
4487
 
4488
+ #: settings.php:4404
4489
  msgid "Get AdSense code"
4490
  msgstr ""
4491
 
4492
  #. translators: %s: HTML tags
4493
+ #: settings.php:4436
4494
  msgid ""
4495
  "Please %s clear authorization %s with the button %s above and once again "
4496
  "authorize access to your AdSense account."
4497
  msgstr ""
4498
 
4499
+ #: settings.php:4455
4500
  msgid "AdSense Integration"
4501
  msgstr ""
4502
 
4503
+ #: settings.php:4457
4504
  msgid "AdSense Integration - Step 2"
4505
  msgstr ""
4506
 
4507
  #. translators: %s: HTML tags
4508
+ #: settings.php:4463
4509
  msgid ""
4510
  "Authorize %s to access your AdSense account. Click on the %s Get "
4511
  "Authorization Code %s button to open a new window where you can allow "
4514
  msgstr ""
4515
 
4516
  #. translators: %s: HTML tags
4517
+ #: settings.php:4470
4518
  msgid ""
4519
  "If you get error, can't access ad units or would like to use own Google API "
4520
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4522
  msgstr ""
4523
 
4524
  #. translators: %s: HTML tags
4525
+ #: settings.php:4472
4526
  msgid ""
4527
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4528
  "Authorization Code %s button to open a new window where you can allow "
4531
  msgstr ""
4532
 
4533
  #. translators: %s: HTML tags
4534
+ #: settings.php:4479
4535
  msgid ""
4536
  "If you get error %s invalid client %s click on the button %s Clear and "
4537
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4538
  msgstr ""
4539
 
4540
+ #: settings.php:4490
4541
  msgid "Get Authorization Code"
4542
  msgstr ""
4543
 
4544
+ #: settings.php:4493
4545
  msgid "Enter Authorization Code"
4546
  msgstr ""
4547
 
4548
+ #: settings.php:4503
4549
  msgid "Use own API IDs"
4550
  msgstr ""
4551
 
4552
+ #: settings.php:4505
4553
  msgid "Clear and return to Step 1"
4554
  msgstr ""
4555
 
4556
+ #: settings.php:4509
4557
  msgid "Authorize"
4558
  msgstr ""
4559
 
4560
+ #: settings.php:4525
4561
  msgid "AdSense Integration - Step 1"
4562
  msgstr ""
4563
 
4564
  #. translators: %s: Ad Inserter
4565
+ #: settings.php:4529
4566
  msgid ""
4567
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4568
  "To do this you need to authorize %s to access your AdSense account. The "
4571
  msgstr ""
4572
 
4573
  #. translators: %s: HTML tags
4574
+ #: settings.php:4538
4575
  msgid "Go to %s Google APIs and Services console %s"
4576
  msgstr ""
4577
 
4578
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4579
+ #: settings.php:4539
4580
  msgid ""
4581
  "Create %1$s project - if the project and IDs are already created click on "
4582
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
4583
  msgstr ""
4584
 
4585
  #. translators: %s: HTML tags
4586
+ #: settings.php:4540
4587
  msgid ""
4588
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4589
  "create a new project"
4590
  msgstr ""
4591
 
4592
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4593
+ #: settings.php:4541
4594
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4595
  msgstr ""
4596
 
4597
  #. translators: %s: HTML tags
4598
+ #: settings.php:4542
4599
  msgid ""
4600
  "Click on project selection, wait for the project to be created and then and "
4601
  "select %s as the current project"
4602
  msgstr ""
4603
 
4604
  #. translators: %s: HTML tags
4605
+ #: settings.php:4543
4606
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4607
  msgstr ""
4608
 
4609
  #. translators: %s: HTML tags
4610
+ #: settings.php:4544
4611
  msgid "Search for adsense and enable %s"
4612
  msgstr ""
4613
 
4614
  #. translators: %s: HTML tags
4615
+ #: settings.php:4545
4616
  msgid "Click on %s CREATE CREDENTIALS %s"
4617
  msgstr ""
4618
 
4619
  #. translators: %s: HTML tags
4620
+ #: settings.php:4546
4621
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4622
  msgstr ""
4623
 
4624
  #. translators: %s: HTML tags
4625
+ #: settings.php:4547
4626
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4627
  msgstr ""
4628
 
4629
  #. translators: %s: HTML tags
4630
+ #: settings.php:4548
4631
  msgid "Click on %s What credentials do I need? %s"
4632
  msgstr ""
4633
 
4634
  #. translators: %s: HTML tags
4635
+ #: settings.php:4549
4636
  msgid ""
4637
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4638
  "Ad Inserter client %s"
4639
  msgstr ""
4640
 
4641
  #. translators: %s: HTML tags
4642
+ #: settings.php:4550
4643
  msgid ""
4644
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4645
  "enter %s"
4646
  msgstr ""
4647
 
4648
  #. translators: %s: HTML tags
4649
+ #: settings.php:4551
4650
  msgid "Click on %s Continue %s"
4651
  msgstr ""
4652
 
4653
  #. translators: %s: HTML tags
4654
+ #: settings.php:4552
4655
  msgid "Click on %s Done %s"
4656
  msgstr ""
4657
 
4658
  #. translators: %s: HTML tags
4659
+ #: settings.php:4553
4660
  msgid ""
4661
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4662
  "secret %s"
4663
  msgstr ""
4664
 
4665
+ #: settings.php:4554
4666
  msgid "Copy them to the appropriate fields below"
4667
  msgstr ""
4668
 
4669
+ #: settings.php:4560
4670
  msgid "Client ID"
4671
  msgstr ""
4672
 
4673
+ #: settings.php:4563
4674
  msgid "Enter Client ID"
4675
  msgstr ""
4676
 
4677
+ #: settings.php:4568
4678
  msgid "Client secret"
4679
  msgstr ""
4680
 
4681
+ #: settings.php:4571
4682
  msgid "Enter Client secret"
4683
  msgstr ""
4684
 
4685
+ #: settings.php:4581
4686
  msgid "Use default API IDs"
4687
  msgstr ""
4688
 
4689
+ #: settings.php:4745
4690
  msgid "All posts"
4691
  msgstr ""
4692
 
4693
+ #: settings.php:4746
4694
  msgid "All static pages"
4695
  msgstr ""
4696
 
4697
+ #: settings.php:4901 settings.php:4914 settings.php:4928 settings.php:4944
4698
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4699
  msgstr ""
4700
 
4701
+ #: settings.php:4906 settings.php:4919 settings.php:4933 settings.php:4949
4702
+ #: settings.php:5148 settings.php:5150 settings.php:5166 settings.php:5171
4703
+ #: settings.php:5179 settings.php:5180 settings.php:5183 settings.php:5189
4704
+ #: settings.php:5199 settings.php:5203
4705
  msgid "Looking for AdSense alternative?"
4706
  msgstr ""
4707
 
4708
+ #: settings.php:4961
4709
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4710
  msgstr ""
4711
 
4712
+ #: settings.php:4966 settings.php:5145 settings.php:5158 settings.php:5186
4713
+ #: settings.php:5212
4714
  msgid "Use Infolinks ads with Adsense to earn more"
4715
  msgstr ""
4716
 
4717
+ #: settings.php:4987 settings.php:5037
4718
  msgid "Support plugin development"
4719
  msgstr ""
4720
 
4721
+ #: settings.php:4992 settings.php:5038
4722
  msgid ""
4723
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4724
  "reviewing the plugin on WordPres"
4725
  msgstr ""
4726
 
4727
+ #: settings.php:4992
4728
  msgctxt "Review Ad Inserter"
4729
  msgid "Review"
4730
  msgstr ""
4731
 
4732
+ #: settings.php:4997
4733
  msgid ""
4734
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4735
  "rating the plugin on WordPres"
4736
  msgstr ""
4737
 
4738
+ #: settings.php:4997
4739
  msgctxt "Rate Ad Inserter"
4740
  msgid "Rate"
4741
  msgstr ""
4742
 
4743
+ #: settings.php:5002
4744
  msgid ""
4745
  "Support free Ad Inserter development. If you are making money with Ad "
4746
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4747
  "you!"
4748
  msgstr ""
4749
 
4750
+ #: settings.php:5002
4751
  msgid "Donate"
4752
  msgstr ""
4753
 
4754
+ #: settings.php:5009 settings.php:5053
4755
  msgid "Average rating of the plugin - Thank you!"
4756
  msgstr ""
4757
 
4758
  #. translators: %s: Ad Inserter, HTML tags
4759
+ #: settings.php:5020
4760
  msgid ""
4761
  "You've been using %s for a while now, and I hope you're happy with it. "
4762
  "Positive %s reviews %s are a great way to show your appreciation for my "
4765
  "your website. When you rate it with 5 stars it's like saying 'Thank you'."
4766
  msgstr ""
4767
 
4768
+ #: settings.php:5038
4769
  msgid "Review"
4770
  msgstr ""
4771
 
4772
+ #: settings.php:5042
4773
  msgid "Ad Inserter on Twitter"
4774
  msgstr ""
4775
 
4776
+ #: settings.php:5043
4777
  msgid "Ad Inserter on Facebook"
4778
  msgstr ""
4779
 
4780
+ #: settings.php:5046
4781
  msgid "Follow Ad Inserter"
4782
  msgstr ""
4783
 
4784
  #. translators: %s: HTML tags
4785
+ #: settings.php:5073
4786
  msgid ""
4787
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4788
  "and %s Common Settings %s pages"
4789
  msgstr ""
4790
 
4791
  #. translators: %s: HTML tags
4792
+ #: settings.php:5085
4793
  msgid ""
4794
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4795
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
4797
  msgstr ""
4798
 
4799
  #. translators: %s: HTML tags
4800
+ #: settings.php:5106
4801
  msgid ""
4802
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4803
  "purchase you refer to us"
4804
  msgstr ""
4805
 
4806
  #. translators: %s: HTML tags
4807
+ #: settings.php:5113
4808
  msgid ""
4809
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4810
  "diagnose and fix the problem."
4811
  msgstr ""
4812
 
4813
  #. translators: %s: HTML tags
4814
+ #: settings.php:5117
4815
  msgid ""
4816
  "If you need any kind of help or support, please do not hesitate to open a "
4817
  "thread on the %s support forum. %s"
4818
  msgstr ""
4819
 
4820
+ #: settings.php:5143 settings.php:5207 settings.php:5211
4821
  msgid "Code preview with visual CSS editor"
4822
  msgstr ""
4823
 
4824
+ #: settings.php:5147 settings.php:5197
4825
  msgid "A/B testing - Track ad impressions and clicks"
4826
  msgstr ""
4827
 
4828
+ #: settings.php:5162
4829
  msgid "Insert ads on AMP pages"
4830
  msgstr ""
4831
 
4832
+ #: settings.php:5170
4833
  msgid "Ad blocking detection and content protection"
4834
  msgstr ""
4835
 
4836
+ #: settings.php:5220
4837
  msgid "Looking for Pro Ad Management plugin?"
4838
  msgstr ""
4839
 
4840
+ #: settings.php:5221
4841
  msgid "To Optimally Monetize your WordPress website?"
4842
  msgstr ""
4843
 
4844
  #. Translators: %s: price of Ad Inserter Pro
4845
+ #: settings.php:5222
4846
  msgid "Different license types starting from %s"
4847
  msgstr ""
4848
 
4849
  #. translators: %s HTML tags
4850
+ #: settings.php:5225
4851
  msgid "%s AdSense Integration %s"
4852
  msgstr ""
4853
 
4854
  #. translators: %s HTML tags
4855
+ #: settings.php:5226
4856
  msgid "Syntax highlighting %s editor %s"
4857
  msgstr ""
4858
 
4859
  #. translators: %s HTML tags
4860
+ #: settings.php:5227
4861
  msgid "%s Code preview %s with visual CSS editor"
4862
  msgstr ""
4863
 
4864
  #. translators: %s HTML tags
4865
+ #: settings.php:5228
4866
  msgid "Simple user interface - all settings on a single page"
4867
  msgstr ""
4868
 
4869
  #. translators: %s HTML tags
4870
+ #: settings.php:5229
4871
  msgid ""
4872
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4873
  "image / excerpt"
4874
  msgstr ""
4875
 
4876
  #. translators: %s HTML tags
4877
+ #: settings.php:5230
4878
  msgid "%s Automatic insertion %s between posts on blog pages"
4879
  msgstr ""
4880
 
4881
  #. translators: %s HTML tags
4882
+ #: settings.php:5231
4883
  msgid "%s Automatic insertion %s before, between and after comments"
4884
  msgstr ""
4885
 
4886
  #. translators: %s HTML tags
4887
+ #: settings.php:5232
4888
  msgid "%s Automatic insertion %s after %s or before %s tag"
4889
  msgstr ""
4890
 
4891
  #. translators: %s HTML tags
4892
+ #: settings.php:5233
4893
  msgid "Automatic insertion at %s custom hook positions %s"
4894
  msgstr ""
4895
 
4896
  #. translators: %s HTML tags
4897
+ #: settings.php:5234
4898
  msgid ""
4899
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4900
  "selectors)"
4901
  msgstr ""
4902
 
4903
  #. translators: %s HTML tags
4904
+ #: settings.php:5235
4905
  msgid "%s Insertion exceptions %s for individual posts and pages"
4906
  msgstr ""
4907
 
4908
  #. translators: %s HTML tags
4909
+ #: settings.php:5236
4910
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4911
  msgstr ""
4912
 
4913
  #. translators: %s HTML tags
4914
+ #: settings.php:5237
4915
  msgid ""
4916
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4917
  "scrolls)"
4918
  msgstr ""
4919
 
4920
  #. translators: %s HTML tags
4921
+ #: settings.php:5238
4922
+ msgid "%s Background ads %s with one or left and right background images"
4923
+ msgstr ""
4924
+
4925
+ #. translators: %s HTML tags
4926
+ #: settings.php:5239
4927
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4928
  msgstr ""
4929
 
4930
  #. translators: %s HTML tags
4931
+ #: settings.php:5240
4932
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4933
  msgstr ""
4934
 
4935
  #. translators: %s HTML tags
4936
+ #: settings.php:5241
4937
  msgid ""
4938
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4939
  "visible)"
4940
  msgstr ""
4941
 
4942
  #. translators: %s HTML tags
4943
+ #: settings.php:5242
4944
  msgid ""
4945
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4946
  msgstr ""
4947
 
4948
  #. translators: %s HTML tags
4949
+ #: settings.php:5243
4950
  msgid "Block %s alignment and style %s customizations"
4951
  msgstr ""
4952
 
4953
  #. translators: %s HTML tags
4954
+ #: settings.php:5244
4955
  msgid ""
4956
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4957
  "TOS)"
4958
  msgstr ""
4959
 
4960
  #. translators: %s HTML tags
4961
+ #: settings.php:5245
4962
  msgid ""
4963
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4964
  "feeds"
4965
  msgstr ""
4966
 
4967
  #. translators: %s HTML tags
4968
+ #: settings.php:5246
4969
  msgid "%s Ad rotation %s (works also with caching)"
4970
  msgstr ""
4971
 
4972
  #. translators: %s HTML tags
4973
+ #: settings.php:5247
4974
  msgid "Create, edit and check %s ads.txt %s file"
4975
  msgstr ""
4976
 
4977
  #. translators: %s HTML tags
4978
+ #: settings.php:5248
4979
  msgid ""
4980
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4981
  "AdSense)"
4982
  msgstr ""
4983
 
4984
  #. translators: %s HTML tags
4985
+ #: settings.php:5249
4986
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4987
  msgstr ""
4988
 
4989
  #. translators: %s HTML tags
4990
+ #: settings.php:5250
4991
  msgid "%s Public web reports %s for clients, export to PDF"
4992
  msgstr ""
4993
 
4994
  #. translators: %s HTML tags
4995
+ #: settings.php:5251
4996
  msgid "Support for %s A/B testing %s"
4997
  msgstr ""
4998
 
4999
  #. translators: %s HTML tags
5000
+ #: settings.php:5252
5001
  msgid "Frequency capping - %s limit impressions or clicks %s"
5002
  msgstr ""
5003
 
5004
  #. translators: %s HTML tags
5005
+ #: settings.php:5253
5006
  msgid "Click fraud %s protection %s"
5007
  msgstr ""
5008
 
5009
  #. translators: %s HTML tags
5010
+ #: settings.php:5254
5011
  msgid "Support for %s lazy loading %s"
5012
  msgstr ""
5013
 
5014
  #. translators: %s HTML tags
5015
+ #: settings.php:5255
5016
  msgid "Support for ads on %s AMP pages %s"
5017
  msgstr ""
5018
 
5019
  #. translators: %s HTML tags
5020
+ #: settings.php:5256
5021
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5022
  msgstr ""
5023
 
5024
  #. translators: %s HTML tags
5025
+ #: settings.php:5257
5026
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5027
  msgstr ""
5028
 
5029
  #. translators: %s HTML tags
5030
+ #: settings.php:5259
5031
  msgid "%s Banner %s code generator"
5032
  msgstr ""
5033
 
5034
  #. translators: %s HTML tags
5035
+ #: settings.php:5260
5036
  msgid "Support for %s header and footer %s code"
5037
  msgstr ""
5038
 
5039
  #. translators: %s HTML tags
5040
+ #: settings.php:5261
5041
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5042
  msgstr ""
5043
 
5044
  #. translators: %s HTML tags
5045
+ #: settings.php:5262
5046
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5047
  msgstr ""
5048
 
5049
  #. translators: %s HTML tags
5050
+ #: settings.php:5263
5051
  msgid "Client-side %s mobile device detection %s (works with caching)"
5052
  msgstr ""
5053
 
5054
  #. translators: %s HTML tags
5055
+ #: settings.php:5264
5056
  msgid ""
5057
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5058
  "protection"
5059
  msgstr ""
5060
 
5061
  #. translators: %s HTML tags
5062
+ #: settings.php:5265
5063
  msgid "%s Ad blocking statistics %s"
5064
  msgstr ""
5065
 
5066
  #. translators: %s HTML tags
5067
+ #: settings.php:5266
5068
  msgid ""
5069
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5070
  "referrers, operating systems, browsers"
5071
  msgstr ""
5072
 
5073
  #. translators: %s HTML tags
5074
+ #: settings.php:5267
5075
  msgid ""
5076
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5077
  msgstr ""
5078
 
5079
  #. translators: %s HTML tags
5080
+ #: settings.php:5268
5081
  msgid "%s Multisite options %s to limit settings on the sites"
5082
  msgstr ""
5083
 
5084
  #. translators: %s HTML tags
5085
+ #: settings.php:5269
5086
  msgid "%s Import/Export %s block or plugin settings"
5087
  msgstr ""
5088
 
5089
  #. translators: %s HTML tags
5090
+ #: settings.php:5270
5091
  msgid "%s Insertion scheduling %s with fallback option"
5092
  msgstr ""
5093
 
5094
  #. translators: %s HTML tags
5095
+ #: settings.php:5271
5096
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5097
  msgstr ""
5098
 
5099
  #. translators: %s HTML tags
5100
+ #: settings.php:5272
5101
  msgid "Simple troubleshooting with many %s debugging functions %s"
5102
  msgstr ""
5103
 
5104
  #. translators: %s HTML tags
5105
+ #: settings.php:5273
5106
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5107
  msgstr ""
5108
 
5109
  #. translators: %s HTML tags
5110
+ #: settings.php:5274
5111
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5112
  msgstr ""
5113
 
5114
  #. translators: %s HTML tags
5115
+ #: settings.php:5275
5116
  msgid ""
5117
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5118
  msgstr ""
5119
 
5120
  #. translators: %s HTML tags
5121
+ #: settings.php:5276
5122
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5123
  msgstr ""
5124
 
5125
  #. translators: %s HTML tags
5126
+ #: settings.php:5277
5127
  msgid "No ads on the settings page"
5128
  msgstr ""
5129
 
5130
  #. translators: %s HTML tags
5131
+ #: settings.php:5278
5132
  msgid "Premium support"
5133
  msgstr ""
5134
 
5135
  #. translators: %s HTML tags
5136
+ #: settings.php:5281
5137
  msgid ""
5138
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5139
  "website with many advertising features to automatically insert adverts on "
5148
  msgstr ""
5149
 
5150
  #. translators: %s HTML tags
5151
+ #: settings.php:5294
5152
  msgid "Looking for %s Pro Ad Management plugin? %s"
5153
  msgstr ""
5154
 
5155
  #. translators: %s HTML tags
5156
+ #: settings.php:5299
5157
  msgid "Ads between posts"
5158
  msgstr ""
5159
 
5160
  #. translators: %s HTML tags
5161
+ #: settings.php:5300
5162
  msgid "Ads between comments"
5163
  msgstr ""
5164
 
5165
  #. translators: %s HTML tags
5166
+ #: settings.php:5301
5167
  msgid "Support via email"
5168
  msgstr ""
5169
 
5170
  #. translators: %s HTML tags
5171
+ #: settings.php:5307
5172
  msgid "%s Sticky positions %s"
5173
  msgstr ""
5174
 
5175
  #. translators: %s HTML tags
5176
+ #: settings.php:5308
5177
  msgid "%s Limit insertions %s"
5178
  msgstr ""
5179
 
5180
  #. translators: %s HTML tags
5181
+ #: settings.php:5309
5182
  msgid "%s Clearance %s options"
5183
  msgstr ""
5184
 
5185
  #. translators: %s HTML tags
5186
+ #: settings.php:5315
5187
  msgid "Ad rotation"
5188
  msgstr ""
5189
 
5190
  #. translators: %s HTML tags
5191
+ #: settings.php:5316
5192
  msgid "%s A/B testing %s"
5193
  msgstr ""
5194
 
5195
  #. translators: %s HTML tags
5196
+ #: settings.php:5317
5197
  msgid "%s Ad tracking %s"
5198
  msgstr ""
5199
 
5200
  #. translators: %s HTML tags
5201
+ #: settings.php:5323
5202
  msgid "Support for %s AMP pages %s"
5203
  msgstr ""
5204
 
5205
  #. translators: %s HTML tags
5206
+ #: settings.php:5324
5207
  msgid "%s Ad blocking detection %s"
5208
  msgstr ""
5209
 
5210
  #. translators: %s HTML tags
5211
+ #: settings.php:5325
5212
  msgid "%s Mobile device detection %s"
5213
  msgstr ""
5214
 
5215
  #. translators: %s HTML tags
5216
+ #: settings.php:5332
5217
  msgid "64 code blocks"
5218
  msgstr ""
5219
 
5220
  #. translators: %s HTML tags
5221
+ #: settings.php:5333
5222
  msgid "%s GEO targeting %s"
5223
  msgstr ""
5224
 
5225
  #. translators: %s HTML tags
5226
+ #: settings.php:5334
5227
  msgid "%s Scheduling %s"
5228
  msgstr ""
5229
 
5422
  msgstr ""
5423
 
5424
  #: strings.php:66
5425
+ msgctxt "position"
5426
+ msgid "Center"
5427
+ msgstr ""
5428
+
5429
+ #: strings.php:67
5430
  msgctxt "alignment"
5431
  msgid "Float left"
5432
  msgstr ""
5433
 
5434
+ #: strings.php:68
5435
  msgctxt "alignment"
5436
  msgid "Float right"
5437
  msgstr ""
5438
 
5439
+ #: strings.php:69
5440
  msgctxt "alignment"
5441
  msgid "No wrapping"
5442
  msgstr ""
5443
 
5444
+ #: strings.php:70
5445
  msgid "Custom CSS"
5446
  msgstr ""
5447
 
5448
+ #: strings.php:71
5449
  msgid "Sticky left"
5450
  msgstr ""
5451
 
5452
+ #: strings.php:72
5453
  msgid "Sticky right"
5454
  msgstr ""
5455
 
5456
+ #: strings.php:73
5457
  msgid "Sticky top"
5458
  msgstr ""
5459
 
5460
+ #: strings.php:74
5461
  msgid "Sticky bottom"
5462
  msgstr ""
5463
 
5464
+ #: strings.php:75
5465
  msgctxt "alignment"
5466
  msgid "Sticky"
5467
  msgstr ""
5468
 
5469
+ #: strings.php:77
5470
  msgctxt "using"
5471
  msgid "auto counter"
5472
  msgstr ""
5473
 
5474
+ #: strings.php:78
5475
  msgctxt "using"
5476
  msgid "PHP function calls counter"
5477
  msgstr ""
5478
 
5479
+ #: strings.php:79
5480
  msgctxt "using"
5481
  msgid "content processing counter"
5482
  msgstr ""
5483
 
5484
+ #: strings.php:80
5485
  msgctxt "using"
5486
  msgid "excerpt processing counter"
5487
  msgstr ""
5488
 
5489
+ #: strings.php:81
5490
  msgctxt "using"
5491
  msgid "before post processing counter"
5492
  msgstr ""
5493
 
5494
+ #: strings.php:82
5495
  msgctxt "using"
5496
  msgid "after post processing counter"
5497
  msgstr ""
5498
 
5499
+ #: strings.php:83
5500
  msgctxt "using"
5501
  msgid "widget drawing counter"
5502
  msgstr ""
5503
 
5504
+ #: strings.php:84
5505
  msgctxt "using"
5506
  msgid "subpages counter"
5507
  msgstr ""
5508
 
5509
+ #: strings.php:85
5510
  msgctxt "using"
5511
  msgid "posts counter"
5512
  msgstr ""
5513
 
5514
+ #: strings.php:86
5515
  msgctxt "using"
5516
  msgid "paragraphs counter"
5517
  msgstr ""
5518
 
5519
+ #: strings.php:87
5520
  msgctxt "using"
5521
  msgid "comments counter"
5522
  msgstr ""
5523
 
5524
+ #: strings.php:88
5525
  msgctxt "using"
5526
  msgid "images counter"
5527
  msgstr ""
5528
 
5529
+ #: strings.php:91
5530
  msgctxt "posts"
5531
  msgid "Individually disabled"
5532
  msgstr ""
5533
 
5534
+ #: strings.php:92
5535
  msgctxt "posts"
5536
  msgid "Individually enabled"
5537
  msgstr ""
5538
 
5539
+ #: strings.php:94
5540
  msgctxt "static pages"
5541
  msgid "Individually disabled"
5542
  msgstr ""
5543
 
5544
+ #: strings.php:95
5545
  msgctxt "static pages"
5546
  msgid "Individually enabled"
5547
  msgstr ""
5548
 
5549
+ #: strings.php:97
5550
  msgid "Server-side"
5551
  msgstr ""
5552
 
5553
+ #: strings.php:98
5554
  msgctxt "Insertion"
5555
  msgid "Client-side"
5556
  msgstr ""
5557
 
5558
+ #: strings.php:99
5559
  msgctxt "Dynamic blocks"
5560
  msgid "Client-side show"
5561
  msgstr ""
5562
 
5563
+ #: strings.php:100
5564
  msgctxt "Dynamic blocks"
5565
  msgid "Client-side insert"
5566
  msgstr ""
5567
 
5568
+ #: strings.php:101
5569
  msgctxt "Insertion"
5570
  msgid "Server-side using W3 Total Cache"
5571
  msgstr ""
5572
 
5573
+ #: strings.php:107
5574
  msgid "Replace element"
5575
  msgstr ""
5576
 
5577
+ #: strings.php:109
5578
  msgid "desktop devices"
5579
  msgstr ""
5580
 
5581
+ #: strings.php:110
5582
  msgid "mobile devices"
5583
  msgstr ""
5584
 
5585
+ #: strings.php:111
5586
  msgid "tablet devices"
5587
  msgstr ""
5588
 
5589
+ #: strings.php:112
5590
  msgid "phone devices"
5591
  msgstr ""
5592
 
5593
+ #: strings.php:113
5594
  msgid "desktop and tablet devices"
5595
  msgstr ""
5596
 
5597
+ #: strings.php:114
5598
  msgid "desktop and phone devices"
5599
  msgstr ""
5600
 
5601
+ #: strings.php:116
5602
  msgid "Stick to the left"
5603
  msgstr ""
5604
 
5605
+ #: strings.php:117
5606
  msgid "Stick to the content left"
5607
  msgstr ""
5608
 
5609
+ #: strings.php:118
5610
  msgid "Stick to the content right"
5611
  msgstr ""
5612
 
5613
+ #: strings.php:119
5614
  msgid "Stick to the right"
5615
  msgstr ""
5616
 
5617
+ #: strings.php:121
5618
  msgid "Stick to the top"
5619
  msgstr ""
5620
 
5621
+ #: strings.php:122
5622
  msgid "Scroll with the content"
5623
  msgstr ""
5624
 
5625
+ #: strings.php:123
5626
  msgid "Stick to the bottom"
5627
  msgstr ""
5628
 
5629
+ #: strings.php:125
5630
  msgid "Fade"
5631
  msgstr ""
5632
 
5633
+ #: strings.php:126
5634
  msgid "Slide"
5635
  msgstr ""
5636
 
5637
+ #: strings.php:127
5638
  msgid "Slide and Fade"
5639
  msgstr ""
5640
 
5641
+ #: strings.php:128
5642
  msgid "Flip"
5643
  msgstr ""
5644
 
5645
+ #: strings.php:129
5646
  msgid "Zoom In"
5647
  msgstr ""
5648
 
5649
+ #: strings.php:130
5650
  msgid "Zoom Out"
5651
  msgstr ""
5652
 
5653
+ #: strings.php:131
5654
  msgid "Turn"
5655
  msgstr ""
5656
 
5657
+ #: strings.php:133
5658
  msgid "Page loaded"
5659
  msgstr ""
5660
 
5661
+ #: strings.php:134
5662
  msgid "Page scrolled (%)"
5663
  msgstr ""
5664
 
5665
+ #: strings.php:135
5666
  msgid "Page scrolled (px)"
5667
  msgstr ""
5668
 
5669
+ #: strings.php:136
5670
  msgid "Element visible"
5671
  msgstr ""
5672
 
5673
+ #: strings.php:138
5674
+ msgctxt "image repeat"
5675
+ msgid "Default"
5676
+ msgstr ""
5677
+
5678
+ #: strings.php:139
5679
+ msgid "No"
5680
+ msgstr ""
5681
+
5682
+ #: strings.php:140
5683
+ msgid "Yes"
5684
+ msgstr ""
5685
+
5686
+ #: strings.php:141
5687
+ msgid "Horizontally"
5688
+ msgstr ""
5689
+
5690
+ #: strings.php:142
5691
+ msgid "Vertically"
5692
+ msgstr ""
5693
+
5694
+ #: strings.php:143
5695
+ msgid "Space"
5696
+ msgstr ""
5697
+
5698
+ #: strings.php:144
5699
+ msgid "Round"
5700
+ msgstr ""
5701
+
5702
+ #: strings.php:146
5703
+ msgctxt "image size"
5704
+ msgid "Default"
5705
+ msgstr ""
5706
+
5707
+ #: strings.php:147
5708
+ msgid "Cover"
5709
+ msgstr ""
5710
+
5711
+ #: strings.php:148
5712
+ msgctxt "image size"
5713
+ msgid "Fit"
5714
+ msgstr ""
5715
+
5716
+ #: strings.php:149
5717
+ msgid "Fill"
5718
+ msgstr ""
5719
+
5720
+ #: strings.php:151
5721
  msgid "Insert immediately"
5722
  msgstr ""
5723
 
5724
+ #: strings.php:152
5725
  msgid "Delay insertion"
5726
  msgstr ""
5727
 
5728
+ #: strings.php:153
5729
  msgid "Insert between dates"
5730
  msgstr ""
5731
 
5732
+ #: strings.php:154
5733
  msgid "Insert outside dates"
5734
  msgstr ""
5735
 
5736
+ #: strings.php:155
5737
  msgid "Insert only"
5738
  msgstr ""
5739
 
5740
+ #: strings.php:156
5741
  msgid "Insert for posts published between dates"
5742
  msgstr ""
5743
 
5744
+ #: strings.php:157
5745
  msgid "Insert for posts published outside dates"
5746
  msgstr ""
5747
 
5748
+ #: strings.php:159
5749
  msgctxt "functions"
5750
  msgid "Standard"
5751
  msgstr ""
5752
 
5753
+ #: strings.php:160
5754
  msgctxt "detection"
5755
  msgid "Standard"
5756
  msgstr ""
5757
 
5758
+ #: strings.php:161
5759
  msgctxt "functions"
5760
  msgid "Multibyte"
5761
  msgstr ""
5762
 
5763
+ #: strings.php:163
5764
  msgctxt "action"
5765
  msgid "None"
5766
  msgstr ""
5767
 
5768
+ #: strings.php:164
5769
  msgctxt "button"
5770
  msgid "None"
5771
  msgstr ""
5772
 
5773
+ #: strings.php:165
5774
  msgid "Popup Message"
5775
  msgstr ""
5776
 
5777
+ #: strings.php:166
5778
  msgid "Redirection"
5779
  msgstr ""
5780
 
5781
+ #: strings.php:168
5782
  msgid "Do nothing"
5783
  msgstr ""
5784
 
5785
+ #: strings.php:170
5786
  msgctxt "Action when ad blocking detected"
5787
  msgid "Show"
5788
  msgstr ""
5789
 
5790
+ #: strings.php:171
5791
  msgctxt "Action when ad blocking detected"
5792
  msgid "Hide"
5793
  msgstr ""
5794
 
5795
+ #: strings.php:173
5796
  msgctxt "tracking"
5797
  msgid "Internal"
5798
  msgstr ""
5799
 
5800
+ #: strings.php:174
5801
  msgctxt "detection"
5802
  msgid "Advanced"
5803
  msgstr ""
5804
 
5805
+ #: strings.php:177
5806
  msgctxt "Manual loading"
5807
  msgid "Auto"
5808
  msgstr ""
5809
 
5810
+ #: strings.php:178
5811
  msgctxt "Manual loading"
5812
  msgid "Always"
5813
  msgstr ""
5814
 
5815
+ #: strings.php:180
5816
  msgid "Top right"
5817
  msgstr ""
5818
 
5819
+ #: strings.php:181
5820
  msgid "Top left"
5821
  msgstr ""
5822
 
5823
+ #: strings.php:182
5824
  msgid "Bottom right"
5825
  msgstr ""
5826
 
5827
+ #: strings.php:183
5828
  msgid "Bottom left"
5829
  msgstr ""
5830
 
5831
+ #: strings.php:185
5832
  msgctxt "AdSense Ad Type"
5833
  msgid "Standard"
5834
  msgstr ""
5835
 
5836
+ #: strings.php:186
5837
  msgctxt "AdSense Ad Type"
5838
  msgid "Link"
5839
  msgstr ""
5840
 
5841
+ #: strings.php:187
5842
  msgctxt "AdSense Ad Type"
5843
  msgid "In-article"
5844
  msgstr ""
5845
 
5846
+ #: strings.php:188
5847
  msgctxt "AdSense Ad Type"
5848
  msgid "In-feed"
5849
  msgstr ""
5850
 
5851
+ #: strings.php:189
5852
  msgctxt "AdSense Ad Type"
5853
  msgid "Matched content"
5854
  msgstr ""
5855
 
5856
+ #: strings.php:190
5857
  msgctxt "AdSense Ad Type"
5858
  msgid "Auto Ads"
5859
  msgstr ""
5860
 
5861
+ #: strings.php:191
5862
  msgctxt "AdSense Ad Type"
5863
  msgid "AMP Only"
5864
  msgstr ""
5865
 
5866
+ #: strings.php:193
5867
  msgctxt "AMP ad"
5868
  msgid "Disabled"
5869
  msgstr ""
5870
 
5871
+ #: strings.php:194
5872
  msgid "Above the fold"
5873
  msgstr ""
5874
 
5875
+ #: strings.php:195
5876
  msgid "Below the fold"
5877
  msgstr ""
5878
 
5879
+ #: strings.php:196
5880
  msgctxt "AMP ad"
5881
  msgid "Sticky"
5882
  msgstr ""
5883
 
5884
+ #: strings.php:198
5885
  msgctxt "size"
5886
  msgid "Fixed"
5887
  msgstr ""
5888
 
5889
+ #: strings.php:199
5890
  msgctxt "size"
5891
  msgid "Responsive"
5892
  msgstr ""
5893
 
5894
+ #: strings.php:200
5895
  msgctxt "size"
5896
  msgid "Fixed by viewport"
5897
  msgstr ""
5898
 
5899
+ #: strings.php:204
5900
  msgid "Impressions and clicks"
5901
  msgstr ""
5902
 
5903
+ #: strings.php:205
5904
  msgid "Advanced WordPress Ad Management Plugin"
5905
  msgstr ""
5906
 
5907
+ #: strings.php:211
5908
  msgctxt "Button"
5909
  msgid "Hide"
5910
  msgstr ""
5911
 
5912
+ #: strings.php:212
5913
  msgctxt "Button"
5914
  msgid "Show"
5915
  msgstr ""
5916
 
5917
+ #: strings.php:213
5918
  msgid "Insertion expired"
5919
  msgstr ""
5920
 
5921
+ #: strings.php:214
5922
  msgid "Duration"
5923
  msgstr ""
5924
 
5925
+ #: strings.php:215
5926
  msgid "Invalid end date - must be after start date"
5927
  msgstr ""
5928
 
5929
+ #: strings.php:216
5930
  msgid "Invalid start date - only data for 1 year back is available"
5931
  msgstr ""
5932
 
5933
+ #: strings.php:217
5934
  msgid "Invalid date range - only data for 1 year can be displayed"
5935
  msgstr ""
5936
 
5937
+ #: strings.php:225
5938
  msgid "Delete"
5939
  msgstr ""
5940
 
5941
+ #: strings.php:226
5942
  msgid "Switch"
5943
  msgstr ""
5944
 
5945
+ #: strings.php:228
5946
+ msgid "OK"
5947
+ msgstr ""
5948
+
5949
+ #: strings.php:229
5950
  msgid "Delete all statistics data?"
5951
  msgstr ""
5952
 
5953
+ #: strings.php:230
5954
+ msgid ""
5955
+ "Rotation code editor active. Click on the rotation button to generate code."
5956
+ msgstr ""
5957
+
5958
  #. translators: %s: dates
5959
+ #: strings.php:233
5960
  msgid "Delete statistics data between %s and %s?"
5961
  msgstr ""
5962
 
5963
+ #: strings.php:234
5964
  msgid "Cancel block order rearrangement"
5965
  msgstr ""
5966
 
5967
+ #: strings.php:236
5968
  msgid "downloading..."
5969
  msgstr ""
5970
 
5971
+ #: strings.php:237
5972
  msgid "download error"
5973
  msgstr ""
5974
 
5975
+ #: strings.php:238
5976
  msgid "update error"
5977
  msgstr ""
5978
 
5979
+ #: strings.php:239
5980
  msgid "Updating..."
5981
  msgstr ""
5982
 
5983
+ #: strings.php:241
5984
  msgid "ERROR"
5985
  msgstr ""
5986
 
5987
+ #: strings.php:242
5988
  msgid "Error reloading settings"
5989
  msgstr ""
5990
 
5991
+ #: strings.php:244
5992
  msgctxt "Search field placeholder"
5993
  msgid "Search..."
5994
  msgstr ""
5995
 
5996
+ #: strings.php:245
5997
  msgctxt "Search field placeholder"
5998
  msgid "Filter..."
5999
  msgstr ""
6000
 
6001
+ #: strings.php:246
6002
  msgid "Use filter to limit names in the list"
6003
  msgstr ""
6004
 
6005
+ #: strings.php:247
6006
  msgctxt "Button"
6007
  msgid "Filter"
6008
  msgstr ""
6009
 
6010
+ #: strings.php:249
6011
  msgid "Position not available"
6012
  msgstr ""
6013
 
6014
+ #: strings.php:250
6015
  msgid ""
6016
  "Theme check | Selected position for automatic insertion might not be not "
6017
  "available on this page type"
6018
  msgstr ""
6019
 
6020
+ #: strings.php:251
6021
  msgid "Position available"
6022
  msgstr ""
6023
 
6024
+ #: strings.php:253
6025
  msgid "Select or upload banner image"
6026
  msgstr ""
6027
 
6028
+ #: strings.php:254
6029
  msgid "Use this image"
6030
  msgstr ""
6031
 
6032
+ #: strings.php:255
6033
  msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
6034
  msgstr ""
6035
 
6036
+ #: strings.php:257
6037
  msgctxt "Monday"
6038
  msgid "MO"
6039
  msgstr ""
6040
 
6041
+ #: strings.php:258
6042
  msgctxt "Tuesday"
6043
  msgid "TU"
6044
  msgstr ""
6045
 
6046
+ #: strings.php:259
6047
  msgctxt "Wednesday"
6048
  msgid "WE"
6049
  msgstr ""
6050
 
6051
+ #: strings.php:260
6052
  msgctxt "Thursday"
6053
  msgid "TH"
6054
  msgstr ""
6055
 
6056
+ #: strings.php:261
6057
  msgctxt "Friday"
6058
  msgid "FR"
6059
  msgstr ""
6060
 
6061
+ #: strings.php:262
6062
  msgctxt "Saturday"
6063
  msgid "SA"
6064
  msgstr ""
6065
 
6066
+ #: strings.php:263
6067
  msgctxt "Sunday"
6068
  msgid "SU"
6069
  msgstr ""
6070
 
6071
+ #: strings.php:279
6072
  msgctxt "Scheduling"
6073
  msgid "FALLBACK"
6074
  msgstr ""
6075
 
6076
+ #: strings.php:280
6077
  msgid "Automatically placed by AdSense Auto ads code"
6078
  msgstr ""
6079
 
6080
+ #: strings.php:285
6081
  msgid "Add"
6082
  msgstr ""
6083
 
6084
+ #: strings.php:286
6085
  msgctxt "Element"
6086
  msgid "Parent"
6087
  msgstr ""
6088
 
6089
+ #: strings.php:287
6090
  msgid "Cancel element selection"
6091
  msgstr ""
6092
 
6093
+ #: strings.php:288
6094
  msgid "Select parent element"
6095
  msgstr ""
6096
 
6097
+ #: strings.php:289
6098
  msgid "CSS selector"
6099
  msgstr ""
6100
 
6101
+ #: strings.php:290
6102
  msgid "Use current selector"
6103
  msgstr ""
6104
 
6105
+ #: strings.php:291
6106
  msgid "ELEMENT"
6107
  msgstr ""
6108
 
6109
+ #: strings.php:292
6110
  msgid "PATH"
6111
  msgstr ""
6112
 
6113
+ #: strings.php:293
6114
  msgid "SELECTOR"
6115
  msgstr ""
6116
 
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.4
8
  Requires PHP: 5.6
9
- Stable tag: 2.6.7
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
@@ -123,11 +123,12 @@ It's all about the [settings](https://adinserter.pro/documentation).
123
  * Frequency capping - limit impressions or clicks
124
  * Click fraud protection
125
  * Lazy loading
126
- * [Sticky ads](https://adinserter.pro/documentation/alignments-and-styles#sticky-ads) with optional close button
127
  * Sticky sidebar ads (stick to the screen or to the content)
128
  * Floating slide-in banner adverts
129
- * [Sticky (floating) ads](https://adinserter.pro/documentation/alignments-and-styles#sticky-ads) with animations (fade, slide, turn, flip, zoom)
130
  * Animation trigger for sticky ads (page scroll in % or px, HTML element becomes visible)
 
131
  * Support for sticky ad bar
132
  * Support for scheduling date and time with fallback option
133
  * Support for ads in iframes
@@ -331,6 +332,15 @@ If you are not happy to reveal this information and you have opted in, simply di
331
 
332
  == Changelog ==
333
 
 
 
 
 
 
 
 
 
 
334
  = 2.6.7 =
335
  - Added support for various shortcodes for post categories
336
  - Added support for various shortcodes for post tags
@@ -473,6 +483,15 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
473
 
474
  == Upgrade Notice ==
475
 
 
 
 
 
 
 
 
 
 
476
  = 2.6.7 =
477
  Added support for various shortcodes for post categories;
478
  Added support for various shortcodes for post tags;
6
  Requires at least: 4.6
7
  Tested up to: 5.4
8
  Requires PHP: 5.6
9
+ Stable tag: 2.6.8
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
123
  * Frequency capping - limit impressions or clicks
124
  * Click fraud protection
125
  * Lazy loading
126
+ * [Sticky ads](https://adinserter.pro/documentation/sticky-ads) with optional close button
127
  * Sticky sidebar ads (stick to the screen or to the content)
128
  * Floating slide-in banner adverts
129
+ * [Sticky (floating) ads](https://adinserter.pro/documentation/sticky-ads) with animations (fade, slide, turn, flip, zoom)
130
  * Animation trigger for sticky ads (page scroll in % or px, HTML element becomes visible)
131
+ * [background ads (skin ads)](https://adinserter.pro/documentation/sticky-ads#background-ads)
132
  * Support for sticky ad bar
133
  * Support for scheduling date and time with fallback option
134
  * Support for ads in iframes
332
 
333
  == Changelog ==
334
 
335
+ = 2.6.8 =
336
+ - Added support to disable PHP processing by PHP constant
337
+ - Added support to repeat COUNT options
338
+ - Added support for offset for %n paragraph number (%n@o)
339
+ - Added support for options to skip insertion for first and last paragraphs
340
+ - Added support for hook filter 'ai_block_insertion_check'
341
+ - Added support for background ads (Pro only)
342
+ - Few minor bug fixes, cosmetic changes and code improvements
343
+
344
  = 2.6.7 =
345
  - Added support for various shortcodes for post categories
346
  - Added support for various shortcodes for post tags
483
 
484
  == Upgrade Notice ==
485
 
486
+ = 2.6.8 =
487
+ Added support to disable PHP processing by PHP constant;
488
+ Added support to repeat COUNT options;
489
+ Added support for offset for %n paragraph number (%n@o);
490
+ Added support for options to skip insertion for first and last paragraphs;
491
+ Added support for hook filter 'ai_block_insertion_check';
492
+ Added support for background ads (Pro only);
493
+ Few minor bug fixes, cosmetic changes and code improvements
494
+
495
  = 2.6.7 =
496
  Added support for various shortcodes for post categories;
497
  Added support for various shortcodes for post tags;
settings.php CHANGED
@@ -657,6 +657,8 @@ function generate_settings_form (){
657
  $obj->get_paragraph_text() != $default->get_paragraph_text() ||
658
  $obj->get_paragraph_number_minimum() != $default->get_paragraph_number_minimum() ||
659
  $obj->get_paragraph_number_maximum() != $default->get_paragraph_number_maximum() ||
 
 
660
  $obj->get_minimum_words_above() != $default->get_minimum_words_above() ||
661
  $obj->get_count_inside_blockquote() != $default->get_count_inside_blockquote()
662
  );
@@ -1329,10 +1331,10 @@ function generate_settings_form (){
1329
 
1330
  <?php if (function_exists ('ai_sticky_positions')) ai_sticky_positions ($block, $obj, $default); ?>
1331
 
1332
- <div class="max-input">
1333
  <span id="css-label-<?php echo $block; ?>" style="display: table-cell; width: 36px; padding: 0; height: 26px; vertical-align: middle; margin: 4px 0 0 0; font-size: 14px; font-weight: bold;">CSS</span>
1334
  <input id="custom-css-<?php echo $block; ?>" style="width: 100%; display: none; font-family: monospace, Courier, 'Courier New'; font-weight: bold;" type="text" name="<?php echo AI_OPTION_CUSTOM_CSS, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_custom_css(); ?>" value="<?php echo $obj->get_custom_css(); ?>" maxlength="500" title="<?php _e ('Custom CSS code for the wrapping div', 'ad-inserter'); ?>" />
1335
- <span style="display: table-cell; vertical-align: middle; font-family: monospace, Courier, 'Courier New'; font-size: 12px; font-weight: bold; cursor: pointer;">
1336
  <span id="css-no-wrapping-<?php echo $block; ?>" class='css-code' style="height: 26px; padding-left: 7px; display: none;"></span>
1337
  <span id="css-none-<?php echo $block; ?>" class='css-code-<?php echo $block; ?>' style="height: 18px; padding-left: 7px; display: none;" title="<?php _e ('CSS code for the wrapping div, click to edit', 'ad-inserter'); ?>"><?php echo $obj->alignment_style (AI_ALIGNMENT_DEFAULT); ?></span>
1338
  <span id="css-left-<?php echo $block; ?>" class='css-code-<?php echo $block; ?>' style="height: 18px; padding-left: 7px; display: none;" title="<?php _e ('CSS code for the wrapping div, click to edit', 'ad-inserter'); ?>"><?php echo $obj->alignment_style (AI_ALIGNMENT_LEFT); ?></span>
@@ -1342,7 +1344,7 @@ function generate_settings_form (){
1342
  <span id="css-float-right-<?php echo $block; ?>" class='css-code-<?php echo $block; ?>' style="height: 18px; padding-right: 7px; display: none;" title="<?php _e ('CSS code for the wrapping div, click to edit', 'ad-inserter'); ?>"><?php echo $obj->alignment_style (AI_ALIGNMENT_FLOAT_RIGHT); ?></span>
1343
  <?php if (function_exists ('ai_style_css')) ai_style_css ($block, $obj); ?>
1344
  </span>
1345
- <span style="display:table-cell; width: 46px;" ><button id="edit-css-button-<?php echo $block; ?>" type="button" class='ai-button' style="display: table-cell; padding: 0; margin: 0 0 0 8px;"><?php _e ('Edit', 'ad-inserter'); ?></button></span>
1346
  </div>
1347
  </div>
1348
  </div>
@@ -1532,6 +1534,32 @@ function generate_settings_form (){
1532
 
1533
  <hr style="margin: 0 -8px;" />
1534
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1535
  <div class="max-input" style="margin: 8px 0 8px 0;">
1536
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
1537
  <?php _e ('Post/Static page must have between', 'ad-inserter'); ?>
@@ -3699,7 +3727,10 @@ function ads_txt ($action) {
3699
  $ads_txt_home = 'http' . (is_ssl() ? 's' : '') . '://'. $url_parts [0];
3700
  $ads_txt_url = $ads_txt_home . DIRECTORY_SEPARATOR . 'ads.txt';
3701
 
3702
- $root_path = str_replace ('wp-content', '', WP_CONTENT_DIR);
 
 
 
3703
  $ads_txt_file = $root_path . 'ads.txt';
3704
 
3705
  $wp_folder = '';
@@ -5206,10 +5237,11 @@ function sidebar_pro () {
5206
  <li><?php /* translators: %s HTML tags */ printf (__('Insertion %s before or after any HTML element on the page %s (using CSS selectors)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/automatic-insertion#before-after-html-element" class="simple-link" target="_blank">', '</a>'); ?></li>
5207
  <li><?php /* translators: %s HTML tags */ printf (__('%s Insertion exceptions %s for individual posts and pages', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/individual-post-and-page-exceptions" class="simple-link" target="_blank">', '</a>'); ?></li>
5208
  <li><?php /* translators: %s HTML tags */ printf (__('%s Manual insertion: %s widgets, shortcodes, PHP function call', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/manual-insertion" class="simple-link" target="_blank">', '</a>'); ?></li>
5209
- <li><?php /* translators: %s HTML tags */ printf (__('%s Sticky ads %s with optional close button (ads stay fixed when the page scrolls)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/alignments-and-styles#sticky-ads" class="simple-link" target="_blank">', '</a>'); ?></li>
5210
- <li><?php /* translators: %s HTML tags */ printf (__('%s Sticky sidebar ads %s (stick to the screen or to the content)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/alignments-and-styles#sticky-ads" class="simple-link" target="_blank">', '</a>'); ?></li>
5211
- <li><?php /* translators: %s HTML tags */ printf (__('%s Sticky ad animations %s (fade, slide, turn, flip, zoom)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/alignments-and-styles#sticky-ads" class="simple-link" target="_blank">', '</a>'); ?></li>
5212
- <li><?php /* translators: %s HTML tags */ printf (__('%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes visible)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/alignments-and-styles#sticky-ads" class="simple-link" target="_blank">', '</a>'); ?></li>
 
5213
  <li><?php /* translators: %s HTML tags */ printf (__('%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/manual-insertion" class="simple-link" target="_blank">', '</a>'); ?></li>
5214
  <li><?php /* translators: %s HTML tags */ printf (__('Block %s alignment and style %s customizations', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/alignments-and-styles" class="simple-link" target="_blank">', '</a>'); ?></li>
5215
  <li><?php /* translators: %s HTML tags */ printf (__('%s Clearance %s options to avoid insertion near images or headers (AdSense TOS)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/paragraph-settings" class="simple-link" target="_blank">', '</a>'); ?></li>
657
  $obj->get_paragraph_text() != $default->get_paragraph_text() ||
658
  $obj->get_paragraph_number_minimum() != $default->get_paragraph_number_minimum() ||
659
  $obj->get_paragraph_number_maximum() != $default->get_paragraph_number_maximum() ||
660
+ $obj->get_skip_first_paragraphs() != $default->get_skip_first_paragraphs() ||
661
+ $obj->get_skip_last_paragraphs() != $default->get_skip_last_paragraphs() ||
662
  $obj->get_minimum_words_above() != $default->get_minimum_words_above() ||
663
  $obj->get_count_inside_blockquote() != $default->get_count_inside_blockquote()
664
  );
1331
 
1332
  <?php if (function_exists ('ai_sticky_positions')) ai_sticky_positions ($block, $obj, $default); ?>
1333
 
1334
+ <div class="max-input" style="min-height: 27px;">
1335
  <span id="css-label-<?php echo $block; ?>" style="display: table-cell; width: 36px; padding: 0; height: 26px; vertical-align: middle; margin: 4px 0 0 0; font-size: 14px; font-weight: bold;">CSS</span>
1336
  <input id="custom-css-<?php echo $block; ?>" style="width: 100%; display: none; font-family: monospace, Courier, 'Courier New'; font-weight: bold;" type="text" name="<?php echo AI_OPTION_CUSTOM_CSS, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_custom_css(); ?>" value="<?php echo $obj->get_custom_css(); ?>" maxlength="500" title="<?php _e ('Custom CSS code for the wrapping div', 'ad-inserter'); ?>" />
1337
+ <span style="display: table-cell; vertical-align: middle; font-family: monospace, Courier, 'Courier New'; font-size: 12px; font-weight: bold; cursor: pointer; padding-left: 10px;">
1338
  <span id="css-no-wrapping-<?php echo $block; ?>" class='css-code' style="height: 26px; padding-left: 7px; display: none;"></span>
1339
  <span id="css-none-<?php echo $block; ?>" class='css-code-<?php echo $block; ?>' style="height: 18px; padding-left: 7px; display: none;" title="<?php _e ('CSS code for the wrapping div, click to edit', 'ad-inserter'); ?>"><?php echo $obj->alignment_style (AI_ALIGNMENT_DEFAULT); ?></span>
1340
  <span id="css-left-<?php echo $block; ?>" class='css-code-<?php echo $block; ?>' style="height: 18px; padding-left: 7px; display: none;" title="<?php _e ('CSS code for the wrapping div, click to edit', 'ad-inserter'); ?>"><?php echo $obj->alignment_style (AI_ALIGNMENT_LEFT); ?></span>
1344
  <span id="css-float-right-<?php echo $block; ?>" class='css-code-<?php echo $block; ?>' style="height: 18px; padding-right: 7px; display: none;" title="<?php _e ('CSS code for the wrapping div, click to edit', 'ad-inserter'); ?>"><?php echo $obj->alignment_style (AI_ALIGNMENT_FLOAT_RIGHT); ?></span>
1345
  <?php if (function_exists ('ai_style_css')) ai_style_css ($block, $obj); ?>
1346
  </span>
1347
+ <span style="display:table-cell; width: 46px; padding-top: 1px;" ><button id="edit-css-button-<?php echo $block; ?>" type="button" class='ai-button' style="display: table-cell; padding: 0; margin: 0 0 0 8px;"><?php _e ('Edit', 'ad-inserter'); ?></button></span>
1348
  </div>
1349
  </div>
1350
  </div>
1534
 
1535
  <hr style="margin: 0 -8px;" />
1536
 
1537
+ <div class="max-input" style="margin: 8px 0 8px 0;">
1538
+ <span style="display: table-cell; width: 1px; white-space: nowrap;">
1539
+ <?php /* Translators: Do not insert for first X and last Y paragraphs */ echo _n ('Do not insert for first', 'Do not insert for first', $obj->get_skip_first_paragraphs(),'ad-inserter'); ?>
1540
+ <input
1541
+ type="text"
1542
+ name="<?php echo AI_OPTION_SKIP_FIRST_PARAGRAPHS, WP_FORM_FIELD_POSTFIX, $block; ?>"
1543
+ default="<?php echo $default->get_skip_first_paragraphs(); ?>"
1544
+ value="<?php echo $obj->get_skip_first_paragraphs() ?>"
1545
+ title="<?php _e ('Excludes first paragraphs from insertion, leave empty for no exclusion of first paragraphs', 'ad-inserter'); ?>"
1546
+ size="2"
1547
+ maxlength="3" />
1548
+ <?php /* Translators: Do not insert for first X and last Y paragraphs */ echo _n ('and last', 'and last', $obj->get_skip_last_paragraphs(),'ad-inserter'); ?>
1549
+ <input
1550
+ type="text"
1551
+ name="<?php echo AI_OPTION_SKIP_LAST_PARAGRAPHS, WP_FORM_FIELD_POSTFIX, $block; ?>"
1552
+ default="<?php echo $default->get_skip_last_paragraphs(); ?>"
1553
+ value="<?php echo $obj->get_skip_last_paragraphs() ?>"
1554
+ title="<?php _e ('Excludes last paragraphs from insertion, leave empty for no exclusion of last paragraphs', 'ad-inserter'); ?>"
1555
+ size="2"
1556
+ maxlength="3" />
1557
+ <?php /* Translators: Do not insert for first X and last Y paragraphs */ echo _n ('paragraph', 'paragraphs', $obj->get_skip_last_paragraphs(), 'ad-inserter'); ?>
1558
+ </span>
1559
+ </div>
1560
+
1561
+ <hr style="margin: 0 -8px;" />
1562
+
1563
  <div class="max-input" style="margin: 8px 0 8px 0;">
1564
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
1565
  <?php _e ('Post/Static page must have between', 'ad-inserter'); ?>
3727
  $ads_txt_home = 'http' . (is_ssl() ? 's' : '') . '://'. $url_parts [0];
3728
  $ads_txt_url = $ads_txt_home . DIRECTORY_SEPARATOR . 'ads.txt';
3729
 
3730
+ $wp_content_dir_array = explode ('/', WP_CONTENT_DIR);
3731
+ $wp_content_dir = $wp_content_dir_array [count ($wp_content_dir_array) - 1];
3732
+
3733
+ $root_path = str_replace ($wp_content_dir, '', WP_CONTENT_DIR);
3734
  $ads_txt_file = $root_path . 'ads.txt';
3735
 
3736
  $wp_folder = '';
5237
  <li><?php /* translators: %s HTML tags */ printf (__('Insertion %s before or after any HTML element on the page %s (using CSS selectors)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/automatic-insertion#before-after-html-element" class="simple-link" target="_blank">', '</a>'); ?></li>
5238
  <li><?php /* translators: %s HTML tags */ printf (__('%s Insertion exceptions %s for individual posts and pages', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/individual-post-and-page-exceptions" class="simple-link" target="_blank">', '</a>'); ?></li>
5239
  <li><?php /* translators: %s HTML tags */ printf (__('%s Manual insertion: %s widgets, shortcodes, PHP function call', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/manual-insertion" class="simple-link" target="_blank">', '</a>'); ?></li>
5240
+ <li><?php /* translators: %s HTML tags */ printf (__('%s Sticky ads %s with optional close button (ads stay fixed when the page scrolls)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/sticky-ads" class="simple-link" target="_blank">', '</a>'); ?></li>
5241
+ <li><?php /* translators: %s HTML tags */ printf (__('%s Background ads %s with one or left and right background images', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/sticky-ads#background-ads" class="simple-link" target="_blank">', '</a>'); ?></li>
5242
+ <li><?php /* translators: %s HTML tags */ printf (__('%s Sticky sidebar ads %s (stick to the screen or to the content)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/sticky-ads" class="simple-link" target="_blank">', '</a>'); ?></li>
5243
+ <li><?php /* translators: %s HTML tags */ printf (__('%s Sticky ad animations %s (fade, slide, turn, flip, zoom)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/sticky-ads" class="simple-link" target="_blank">', '</a>'); ?></li>
5244
+ <li><?php /* translators: %s HTML tags */ printf (__('%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes visible)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/sticky-ads" class="simple-link" target="_blank">', '</a>'); ?></li>
5245
  <li><?php /* translators: %s HTML tags */ printf (__('%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/manual-insertion" class="simple-link" target="_blank">', '</a>'); ?></li>
5246
  <li><?php /* translators: %s HTML tags */ printf (__('Block %s alignment and style %s customizations', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/alignments-and-styles" class="simple-link" target="_blank">', '</a>'); ?></li>
5247
  <li><?php /* translators: %s HTML tags */ printf (__('%s Clearance %s options to avoid insertion near images or headers (AdSense TOS)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/paragraph-settings" class="simple-link" target="_blank">', '</a>'); ?></li>
strings.php CHANGED
@@ -63,6 +63,7 @@ define('AI_TEXT_DEFAULT', _x('Default', 'alignment', 'ad-inserter'
63
  define('AI_TEXT_LEFT', _x('Left', 'alignment', 'ad-inserter'));
64
  define('AI_TEXT_RIGHT', _x('Right', 'alignment', 'ad-inserter'));
65
  define('AI_TEXT_CENTER', _x('Center', 'alignment', 'ad-inserter'));
 
66
  define('AI_TEXT_FLOAT_LEFT', _x('Float left', 'alignment', 'ad-inserter'));
67
  define('AI_TEXT_FLOAT_RIGHT', _x('Float right', 'alignment', 'ad-inserter'));
68
  define('AI_TEXT_NO_WRAPPING', _x('No wrapping', 'alignment', 'ad-inserter'));
@@ -134,6 +135,19 @@ define ('AI_TEXT_PAGE_SCROLLED_PC', __('Page scrolled (%)', 'ad-inserter')
134
  define ('AI_TEXT_PAGE_SCROLLED_PX', __('Page scrolled (px)', 'ad-inserter'));
135
  define ('AI_TEXT_ELEMENT_VISIBLE', __('Element visible', 'ad-inserter'));
136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
137
  define ('AI_TEXT_INSERT_IMMEDIATELY', __('Insert immediately', 'ad-inserter'));
138
  define ('AI_TEXT_DELAY_INSERTION', __('Delay insertion', 'ad-inserter'));
139
  define ('AI_TEXT_INSERT_BETWEEN_DATES', __('Insert between dates', 'ad-inserter'));
@@ -211,7 +225,10 @@ $ai_admin_translations = array (
211
  'delete' => __('Delete', 'ad-inserter'),
212
  'switch' => __('Switch', 'ad-inserter'),
213
  'cancel' => __('Cancel', 'ad-inserter'),
 
214
  'delete_all_statistics' => __('Delete all statistics data?', 'ad-inserter'),
 
 
215
  // translators: %s: dates
216
  'delete_statistics_between' => sprintf (__('Delete statistics data between %s and %s?', 'ad-inserter'), '{start_date}', '{end_date}'),
217
  'cancel_rearrangement' => __('Cancel block order rearrangement', 'ad-inserter'),
63
  define('AI_TEXT_LEFT', _x('Left', 'alignment', 'ad-inserter'));
64
  define('AI_TEXT_RIGHT', _x('Right', 'alignment', 'ad-inserter'));
65
  define('AI_TEXT_CENTER', _x('Center', 'alignment', 'ad-inserter'));
66
+ define('AI_TEXT_POSITION_CENTER', _x('Center', 'position', 'ad-inserter'));
67
  define('AI_TEXT_FLOAT_LEFT', _x('Float left', 'alignment', 'ad-inserter'));
68
  define('AI_TEXT_FLOAT_RIGHT', _x('Float right', 'alignment', 'ad-inserter'));
69
  define('AI_TEXT_NO_WRAPPING', _x('No wrapping', 'alignment', 'ad-inserter'));
135
  define ('AI_TEXT_PAGE_SCROLLED_PX', __('Page scrolled (px)', 'ad-inserter'));
136
  define ('AI_TEXT_ELEMENT_VISIBLE', __('Element visible', 'ad-inserter'));
137
 
138
+ define('AI_TEXT_DEFAULT_BKG_REPEAT', _x('Default', 'image repeat', 'ad-inserter'));
139
+ define('AI_TEXT_NO', __('No', 'ad-inserter'));
140
+ define('AI_TEXT_YES', __('Yes', 'ad-inserter'));
141
+ define('AI_TEXT_HORIZONTALY', __('Horizontally', 'ad-inserter'));
142
+ define('AI_TEXT_VERTICALLY', __('Vertically', 'ad-inserter'));
143
+ define('AI_TEXT_SPACE', __('Space', 'ad-inserter'));
144
+ define('AI_TEXT_ROUND', __('Round', 'ad-inserter'));
145
+
146
+ define('AI_TEXT_DEFAULT_BKG_SIZE', _x('Default', 'image size', 'ad-inserter'));
147
+ define('AI_TEXT_COVER', __('Cover', 'ad-inserter'));
148
+ define('AI_TEXT_FIT_BKG_SIZE', _x('Fit', 'image size', 'ad-inserter'));
149
+ define('AI_TEXT_FILL', __('Fill', 'ad-inserter'));
150
+
151
  define ('AI_TEXT_INSERT_IMMEDIATELY', __('Insert immediately', 'ad-inserter'));
152
  define ('AI_TEXT_DELAY_INSERTION', __('Delay insertion', 'ad-inserter'));
153
  define ('AI_TEXT_INSERT_BETWEEN_DATES', __('Insert between dates', 'ad-inserter'));
225
  'delete' => __('Delete', 'ad-inserter'),
226
  'switch' => __('Switch', 'ad-inserter'),
227
  'cancel' => __('Cancel', 'ad-inserter'),
228
+ 'ok' => __('OK', 'ad-inserter'),
229
  'delete_all_statistics' => __('Delete all statistics data?', 'ad-inserter'),
230
+ 'rotation_active' => __('Rotation code editor active. Click on the rotation button to generate code.', 'ad-inserter'),
231
+
232
  // translators: %s: dates
233
  'delete_statistics_between' => sprintf (__('Delete statistics data between %s and %s?', 'ad-inserter'), '{start_date}', '{end_date}'),
234
  'cancel_rearrangement' => __('Cancel block order rearrangement', 'ad-inserter'),